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.
 
 
 

63644 lines
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. }
  2327. //species
  2328. function getSpeciesInfo(speciesList) {
  2329. let result = new Set();
  2330. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2331. result.add(entry)
  2332. });
  2333. return Array.from(result);
  2334. };
  2335. function getSpeciesInfoHelper(species) {
  2336. if (!speciesData[species]) {
  2337. console.warn(species + " doesn't exist");
  2338. return [];
  2339. }
  2340. if (speciesData[species].parents) {
  2341. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2342. } else {
  2343. return [species];
  2344. }
  2345. }
  2346. characterMakers.push(() => makeCharacter(
  2347. {
  2348. name: "Fen",
  2349. species: ["crux"],
  2350. description: {
  2351. title: "Bio",
  2352. text: "Very furry. Sheds on everything."
  2353. },
  2354. tags: [
  2355. "anthro",
  2356. "goo"
  2357. ]
  2358. },
  2359. {
  2360. front: {
  2361. height: math.unit(12, "feet"),
  2362. weight: math.unit(2400, "lb"),
  2363. preyCapacity: math.unit(1, "people"),
  2364. name: "Front",
  2365. image: {
  2366. source: "./media/characters/fen/front.svg",
  2367. extra: 1804/1562,
  2368. bottom: 205/2009
  2369. },
  2370. extraAttributes: {
  2371. pawSize: {
  2372. name: "Paw Size",
  2373. power: 2,
  2374. type: "area",
  2375. base: math.unit(0.35, "m^2")
  2376. }
  2377. }
  2378. },
  2379. diving: {
  2380. height: math.unit(4.9, "meters"),
  2381. weight: math.unit(2400, "lb"),
  2382. name: "Diving",
  2383. image: {
  2384. source: "./media/characters/fen/diving.svg"
  2385. }
  2386. },
  2387. sleeby: {
  2388. height: math.unit(3.45, "meters"),
  2389. weight: math.unit(2400, "lb"),
  2390. name: "Sleeby",
  2391. image: {
  2392. source: "./media/characters/fen/sleeby.svg"
  2393. }
  2394. },
  2395. goo: {
  2396. height: math.unit(12, "feet"),
  2397. weight: math.unit(3600, "lb"),
  2398. volume: math.unit(1000, "liters"),
  2399. preyCapacity: math.unit(6, "people"),
  2400. name: "Goo",
  2401. image: {
  2402. source: "./media/characters/fen/goo.svg",
  2403. extra: 1307/1071,
  2404. bottom: 134/1441
  2405. }
  2406. },
  2407. horror: {
  2408. height: math.unit(13.6, "feet"),
  2409. weight: math.unit(2400, "lb"),
  2410. preyCapacity: math.unit(1, "people"),
  2411. name: "Horror",
  2412. image: {
  2413. source: "./media/characters/fen/horror.svg",
  2414. extra: 893/797,
  2415. bottom: 0/893
  2416. }
  2417. },
  2418. gooNsfw: {
  2419. height: math.unit(12, "feet"),
  2420. weight: math.unit(3750, "lb"),
  2421. volume: math.unit(1000, "liters"),
  2422. preyCapacity: math.unit(6, "people"),
  2423. name: "Goo (NSFW)",
  2424. image: {
  2425. source: "./media/characters/fen/goo-nsfw.svg",
  2426. extra: 1875/1734,
  2427. bottom: 122/1997
  2428. }
  2429. },
  2430. maw: {
  2431. height: math.unit(5.03, "feet"),
  2432. name: "Maw",
  2433. image: {
  2434. source: "./media/characters/fen/maw.svg"
  2435. }
  2436. },
  2437. gooCeiling: {
  2438. height: math.unit(6.6, "feet"),
  2439. weight: math.unit(3000, "lb"),
  2440. volume: math.unit(1000, "liters"),
  2441. preyCapacity: math.unit(6, "people"),
  2442. name: "Maw (Goo)",
  2443. image: {
  2444. source: "./media/characters/fen/goo-maw.svg"
  2445. }
  2446. },
  2447. paw: {
  2448. height: math.unit(3.77, "feet"),
  2449. name: "Paw",
  2450. image: {
  2451. source: "./media/characters/fen/paw.svg"
  2452. },
  2453. extraAttributes: {
  2454. "toeSize": {
  2455. name: "Toe Size",
  2456. power: 2,
  2457. type: "area",
  2458. base: math.unit(0.02875, "m^2")
  2459. },
  2460. "pawSize": {
  2461. name: "Paw Size",
  2462. power: 2,
  2463. type: "area",
  2464. base: math.unit(0.378, "m^2")
  2465. },
  2466. }
  2467. },
  2468. tail: {
  2469. height: math.unit(12.1, "feet"),
  2470. name: "Tail",
  2471. image: {
  2472. source: "./media/characters/fen/tail.svg"
  2473. }
  2474. },
  2475. tailFull: {
  2476. height: math.unit(12.1, "feet"),
  2477. name: "Full Tail",
  2478. image: {
  2479. source: "./media/characters/fen/tail-full.svg"
  2480. }
  2481. },
  2482. back: {
  2483. height: math.unit(12, "feet"),
  2484. weight: math.unit(2400, "lb"),
  2485. name: "Back",
  2486. image: {
  2487. source: "./media/characters/fen/back.svg",
  2488. },
  2489. info: {
  2490. description: {
  2491. mode: "append",
  2492. text: "\n\nHe is not currently looking at you."
  2493. }
  2494. }
  2495. },
  2496. full: {
  2497. height: math.unit(1.85, "meter"),
  2498. weight: math.unit(3200, "lb"),
  2499. preyCapacity: math.unit(3, "people"),
  2500. name: "Full",
  2501. image: {
  2502. source: "./media/characters/fen/full.svg",
  2503. extra: 1133/859,
  2504. bottom: 145/1278
  2505. },
  2506. info: {
  2507. description: {
  2508. mode: "append",
  2509. text: "\n\nMunch."
  2510. }
  2511. }
  2512. },
  2513. gooLounging: {
  2514. height: math.unit(4.53, "feet"),
  2515. weight: math.unit(3000, "lb"),
  2516. preyCapacity: math.unit(6, "people"),
  2517. name: "Goo (Lounging)",
  2518. image: {
  2519. source: "./media/characters/fen/goo-lounging.svg",
  2520. bottom: 116 / 613
  2521. }
  2522. },
  2523. lounging: {
  2524. height: math.unit(10.52, "feet"),
  2525. weight: math.unit(2400, "lb"),
  2526. name: "Lounging",
  2527. image: {
  2528. source: "./media/characters/fen/lounging.svg"
  2529. }
  2530. },
  2531. },
  2532. [
  2533. {
  2534. name: "Small",
  2535. height: math.unit(2.2428, "meter")
  2536. },
  2537. {
  2538. name: "Normal",
  2539. height: math.unit(12, "feet"),
  2540. default: true,
  2541. },
  2542. {
  2543. name: "Big",
  2544. height: math.unit(20, "feet")
  2545. },
  2546. {
  2547. name: "Minimacro",
  2548. height: math.unit(40, "feet"),
  2549. info: {
  2550. description: {
  2551. mode: "append",
  2552. text: "\n\nTOO DAMN BIG"
  2553. }
  2554. }
  2555. },
  2556. {
  2557. name: "Macro",
  2558. height: math.unit(100, "feet"),
  2559. info: {
  2560. description: {
  2561. mode: "append",
  2562. text: "\n\nTOO DAMN BIG"
  2563. }
  2564. }
  2565. },
  2566. {
  2567. name: "Megamacro",
  2568. height: math.unit(2, "miles")
  2569. },
  2570. {
  2571. name: "Gigamacro",
  2572. height: math.unit(10, "earths")
  2573. },
  2574. ]
  2575. ))
  2576. characterMakers.push(() => makeCharacter(
  2577. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2578. {
  2579. front: {
  2580. height: math.unit(183, "cm"),
  2581. weight: math.unit(80, "kg"),
  2582. name: "Front",
  2583. image: {
  2584. source: "./media/characters/sofia-fluttertail/front.svg",
  2585. bottom: 0.01,
  2586. extra: 2154 / 2081
  2587. }
  2588. },
  2589. frontAlt: {
  2590. height: math.unit(183, "cm"),
  2591. weight: math.unit(80, "kg"),
  2592. name: "Front (alt)",
  2593. image: {
  2594. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2595. }
  2596. },
  2597. back: {
  2598. height: math.unit(183, "cm"),
  2599. weight: math.unit(80, "kg"),
  2600. name: "Back",
  2601. image: {
  2602. source: "./media/characters/sofia-fluttertail/back.svg"
  2603. }
  2604. },
  2605. kneeling: {
  2606. height: math.unit(125, "cm"),
  2607. weight: math.unit(80, "kg"),
  2608. name: "Kneeling",
  2609. image: {
  2610. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2611. extra: 1033 / 977,
  2612. bottom: 23.7 / 1057
  2613. }
  2614. },
  2615. maw: {
  2616. height: math.unit(183 / 5, "cm"),
  2617. name: "Maw",
  2618. image: {
  2619. source: "./media/characters/sofia-fluttertail/maw.svg"
  2620. }
  2621. },
  2622. mawcloseup: {
  2623. height: math.unit(183 / 5 * 0.41, "cm"),
  2624. name: "Maw (Closeup)",
  2625. image: {
  2626. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2627. }
  2628. },
  2629. paws: {
  2630. height: math.unit(1.17, "feet"),
  2631. name: "Paws",
  2632. image: {
  2633. source: "./media/characters/sofia-fluttertail/paws.svg",
  2634. extra: 851 / 851,
  2635. bottom: 17 / 868
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Normal",
  2642. height: math.unit(1.83, "meter")
  2643. },
  2644. {
  2645. name: "Size Thief",
  2646. height: math.unit(18, "feet")
  2647. },
  2648. {
  2649. name: "50 Foot Collie",
  2650. height: math.unit(50, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(96, "feet"),
  2655. default: true
  2656. },
  2657. {
  2658. name: "Megamerger",
  2659. height: math.unit(650, "feet")
  2660. },
  2661. ]
  2662. ))
  2663. characterMakers.push(() => makeCharacter(
  2664. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2665. {
  2666. front: {
  2667. height: math.unit(7, "feet"),
  2668. weight: math.unit(100, "kg"),
  2669. name: "Front",
  2670. image: {
  2671. source: "./media/characters/march/front.svg",
  2672. extra: 1992/1851,
  2673. bottom: 39/2031
  2674. }
  2675. },
  2676. foot: {
  2677. height: math.unit(0.9, "feet"),
  2678. name: "Foot",
  2679. image: {
  2680. source: "./media/characters/march/foot.svg"
  2681. }
  2682. },
  2683. },
  2684. [
  2685. {
  2686. name: "Normal",
  2687. height: math.unit(7.9, "feet")
  2688. },
  2689. {
  2690. name: "Macro",
  2691. height: math.unit(220, "meters")
  2692. },
  2693. {
  2694. name: "Megamacro",
  2695. height: math.unit(2.98, "km"),
  2696. default: true
  2697. },
  2698. {
  2699. name: "Gigamacro",
  2700. height: math.unit(15963, "km")
  2701. },
  2702. {
  2703. name: "Teramacro",
  2704. height: math.unit(2980000000, "km")
  2705. },
  2706. {
  2707. name: "Examacro",
  2708. height: math.unit(250, "parsecs")
  2709. },
  2710. ]
  2711. ))
  2712. characterMakers.push(() => makeCharacter(
  2713. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2714. {
  2715. front: {
  2716. height: math.unit(6, "feet"),
  2717. weight: math.unit(60, "kg"),
  2718. name: "Front",
  2719. image: {
  2720. source: "./media/characters/noir/front.svg",
  2721. extra: 1,
  2722. bottom: 0.032
  2723. }
  2724. },
  2725. },
  2726. [
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(6.6, "feet")
  2730. },
  2731. {
  2732. name: "Macro",
  2733. height: math.unit(500, "feet")
  2734. },
  2735. {
  2736. name: "Megamacro",
  2737. height: math.unit(2.5, "km"),
  2738. default: true
  2739. },
  2740. {
  2741. name: "Gigamacro",
  2742. height: math.unit(22500, "km")
  2743. },
  2744. {
  2745. name: "Teramacro",
  2746. height: math.unit(2500000000, "km")
  2747. },
  2748. {
  2749. name: "Examacro",
  2750. height: math.unit(200, "parsecs")
  2751. },
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2756. {
  2757. front: {
  2758. height: math.unit(7, "feet"),
  2759. weight: math.unit(100, "kg"),
  2760. name: "Front",
  2761. image: {
  2762. source: "./media/characters/okuri/front.svg",
  2763. extra: 739/665,
  2764. bottom: 39/778
  2765. }
  2766. },
  2767. back: {
  2768. height: math.unit(7, "feet"),
  2769. weight: math.unit(100, "kg"),
  2770. name: "Back",
  2771. image: {
  2772. source: "./media/characters/okuri/back.svg",
  2773. extra: 734/653,
  2774. bottom: 13/747
  2775. }
  2776. },
  2777. sitting: {
  2778. height: math.unit(2.95, "feet"),
  2779. weight: math.unit(100, "kg"),
  2780. name: "Sitting",
  2781. image: {
  2782. source: "./media/characters/okuri/sitting.svg",
  2783. extra: 370/318,
  2784. bottom: 99/469
  2785. }
  2786. },
  2787. },
  2788. [
  2789. {
  2790. name: "Smallest",
  2791. height: math.unit(5 + 2/12, "feet")
  2792. },
  2793. {
  2794. name: "Smaller",
  2795. height: math.unit(300, "feet")
  2796. },
  2797. {
  2798. name: "Small",
  2799. height: math.unit(1000, "feet")
  2800. },
  2801. {
  2802. name: "Macro",
  2803. height: math.unit(1, "mile")
  2804. },
  2805. {
  2806. name: "Mega Macro (Small)",
  2807. height: math.unit(20, "km")
  2808. },
  2809. {
  2810. name: "Mega Macro (Large)",
  2811. height: math.unit(600, "km")
  2812. },
  2813. {
  2814. name: "Giga Macro",
  2815. height: math.unit(10000, "km")
  2816. },
  2817. {
  2818. name: "Normal",
  2819. height: math.unit(577560, "km"),
  2820. default: true
  2821. },
  2822. {
  2823. name: "Large",
  2824. height: math.unit(4, "galaxies")
  2825. },
  2826. {
  2827. name: "Largest",
  2828. height: math.unit(15, "multiverses")
  2829. },
  2830. ]
  2831. ))
  2832. characterMakers.push(() => makeCharacter(
  2833. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2834. {
  2835. front: {
  2836. height: math.unit(7, "feet"),
  2837. weight: math.unit(100, "kg"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/manny/front.svg",
  2841. extra: 1,
  2842. bottom: 0.06
  2843. }
  2844. },
  2845. back: {
  2846. height: math.unit(7, "feet"),
  2847. weight: math.unit(100, "kg"),
  2848. name: "Back",
  2849. image: {
  2850. source: "./media/characters/manny/back.svg",
  2851. extra: 1,
  2852. bottom: 0.014
  2853. }
  2854. },
  2855. },
  2856. [
  2857. {
  2858. name: "Normal",
  2859. height: math.unit(7, "feet"),
  2860. },
  2861. {
  2862. name: "Macro",
  2863. height: math.unit(78, "feet"),
  2864. default: true
  2865. },
  2866. {
  2867. name: "Macro+",
  2868. height: math.unit(300, "meters")
  2869. },
  2870. {
  2871. name: "Macro++",
  2872. height: math.unit(2400, "meters")
  2873. },
  2874. {
  2875. name: "Megamacro",
  2876. height: math.unit(5167, "meters")
  2877. },
  2878. {
  2879. name: "Gigamacro",
  2880. height: math.unit(41769, "miles")
  2881. },
  2882. ]
  2883. ))
  2884. characterMakers.push(() => makeCharacter(
  2885. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2886. {
  2887. front: {
  2888. height: math.unit(7, "feet"),
  2889. weight: math.unit(100, "kg"),
  2890. name: "Front",
  2891. image: {
  2892. source: "./media/characters/adake/front-1.svg"
  2893. }
  2894. },
  2895. frontAlt: {
  2896. height: math.unit(7, "feet"),
  2897. weight: math.unit(100, "kg"),
  2898. name: "Front (Alt)",
  2899. image: {
  2900. source: "./media/characters/adake/front-2.svg",
  2901. extra: 1,
  2902. bottom: 0.01
  2903. }
  2904. },
  2905. back: {
  2906. height: math.unit(7, "feet"),
  2907. weight: math.unit(100, "kg"),
  2908. name: "Back",
  2909. image: {
  2910. source: "./media/characters/adake/back.svg",
  2911. }
  2912. },
  2913. kneel: {
  2914. height: math.unit(5.385, "feet"),
  2915. weight: math.unit(100, "kg"),
  2916. name: "Kneeling",
  2917. image: {
  2918. source: "./media/characters/adake/kneel.svg",
  2919. bottom: 0.052
  2920. }
  2921. },
  2922. },
  2923. [
  2924. {
  2925. name: "Normal",
  2926. height: math.unit(7, "feet"),
  2927. },
  2928. {
  2929. name: "Macro",
  2930. height: math.unit(78, "feet"),
  2931. default: true
  2932. },
  2933. {
  2934. name: "Macro+",
  2935. height: math.unit(300, "meters")
  2936. },
  2937. {
  2938. name: "Macro++",
  2939. height: math.unit(2400, "meters")
  2940. },
  2941. {
  2942. name: "Megamacro",
  2943. height: math.unit(5167, "meters")
  2944. },
  2945. {
  2946. name: "Gigamacro",
  2947. height: math.unit(41769, "miles")
  2948. },
  2949. ]
  2950. ))
  2951. characterMakers.push(() => makeCharacter(
  2952. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2953. {
  2954. front: {
  2955. height: math.unit(1.65, "meters"),
  2956. weight: math.unit(50, "kg"),
  2957. name: "Front",
  2958. image: {
  2959. source: "./media/characters/elijah/front.svg",
  2960. extra: 858 / 830,
  2961. bottom: 95.5 / 953.8559
  2962. }
  2963. },
  2964. back: {
  2965. height: math.unit(1.65, "meters"),
  2966. weight: math.unit(50, "kg"),
  2967. name: "Back",
  2968. image: {
  2969. source: "./media/characters/elijah/back.svg",
  2970. extra: 895 / 850,
  2971. bottom: 5.3 / 897.956
  2972. }
  2973. },
  2974. frontNsfw: {
  2975. height: math.unit(1.65, "meters"),
  2976. weight: math.unit(50, "kg"),
  2977. name: "Front (NSFW)",
  2978. image: {
  2979. source: "./media/characters/elijah/front-nsfw.svg",
  2980. extra: 858 / 830,
  2981. bottom: 95.5 / 953.8559
  2982. }
  2983. },
  2984. backNsfw: {
  2985. height: math.unit(1.65, "meters"),
  2986. weight: math.unit(50, "kg"),
  2987. name: "Back (NSFW)",
  2988. image: {
  2989. source: "./media/characters/elijah/back-nsfw.svg",
  2990. extra: 895 / 850,
  2991. bottom: 5.3 / 897.956
  2992. }
  2993. },
  2994. dick: {
  2995. height: math.unit(1, "feet"),
  2996. name: "Dick",
  2997. image: {
  2998. source: "./media/characters/elijah/dick.svg"
  2999. }
  3000. },
  3001. beakOpen: {
  3002. height: math.unit(1.25, "feet"),
  3003. name: "Beak (Open)",
  3004. image: {
  3005. source: "./media/characters/elijah/beak-open.svg"
  3006. }
  3007. },
  3008. beakShut: {
  3009. height: math.unit(1.25, "feet"),
  3010. name: "Beak (Shut)",
  3011. image: {
  3012. source: "./media/characters/elijah/beak-shut.svg"
  3013. }
  3014. },
  3015. footFlexing: {
  3016. height: math.unit(1.61, "feet"),
  3017. name: "Foot (Flexing)",
  3018. image: {
  3019. source: "./media/characters/elijah/foot-flexing.svg"
  3020. }
  3021. },
  3022. footStepping: {
  3023. height: math.unit(1.44, "feet"),
  3024. name: "Foot (Stepping)",
  3025. image: {
  3026. source: "./media/characters/elijah/foot-stepping.svg"
  3027. }
  3028. },
  3029. plantigradeLeg: {
  3030. height: math.unit(2.34, "feet"),
  3031. name: "Plantigrade Leg",
  3032. image: {
  3033. source: "./media/characters/elijah/plantigrade-leg.svg"
  3034. }
  3035. },
  3036. plantigradeFootLeft: {
  3037. height: math.unit(0.9, "feet"),
  3038. name: "Plantigrade Foot (Left)",
  3039. image: {
  3040. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3041. }
  3042. },
  3043. plantigradeFootRight: {
  3044. height: math.unit(0.9, "feet"),
  3045. name: "Plantigrade Foot (Right)",
  3046. image: {
  3047. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3048. }
  3049. },
  3050. },
  3051. [
  3052. {
  3053. name: "Normal",
  3054. height: math.unit(1.65, "meters")
  3055. },
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(55, "meters"),
  3059. default: true
  3060. },
  3061. {
  3062. name: "Macro+",
  3063. height: math.unit(105, "meters")
  3064. },
  3065. ]
  3066. ))
  3067. characterMakers.push(() => makeCharacter(
  3068. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3069. {
  3070. front: {
  3071. height: math.unit(7 + 2/12, "feet"),
  3072. weight: math.unit(320, "kg"),
  3073. preyCapacity: math.unit(0.276549935, "people"),
  3074. name: "Front",
  3075. image: {
  3076. source: "./media/characters/rai/front.svg",
  3077. extra: 1802/1696,
  3078. bottom: 68/1870
  3079. },
  3080. form: "anthro",
  3081. default: true
  3082. },
  3083. frontDressed: {
  3084. height: math.unit(7 + 2/12, "feet"),
  3085. weight: math.unit(320, "kg"),
  3086. preyCapacity: math.unit(0.276549935, "people"),
  3087. name: "Front (Dressed)",
  3088. image: {
  3089. source: "./media/characters/rai/front-dressed.svg",
  3090. extra: 1802/1696,
  3091. bottom: 68/1870
  3092. },
  3093. form: "anthro"
  3094. },
  3095. side: {
  3096. height: math.unit(7 + 2/12, "feet"),
  3097. weight: math.unit(320, "kg"),
  3098. preyCapacity: math.unit(0.276549935, "people"),
  3099. name: "Side",
  3100. image: {
  3101. source: "./media/characters/rai/side.svg",
  3102. extra: 1789/1710,
  3103. bottom: 115/1904
  3104. },
  3105. form: "anthro"
  3106. },
  3107. back: {
  3108. height: math.unit(7 + 2/12, "feet"),
  3109. weight: math.unit(320, "kg"),
  3110. preyCapacity: math.unit(0.276549935, "people"),
  3111. name: "Back",
  3112. image: {
  3113. source: "./media/characters/rai/back.svg",
  3114. extra: 1770/1707,
  3115. bottom: 28/1798
  3116. },
  3117. form: "anthro"
  3118. },
  3119. feral: {
  3120. height: math.unit(9.5, "feet"),
  3121. weight: math.unit(640, "kg"),
  3122. preyCapacity: math.unit(4, "people"),
  3123. name: "Feral",
  3124. image: {
  3125. source: "./media/characters/rai/feral.svg",
  3126. extra: 945/553,
  3127. bottom: 176/1121
  3128. },
  3129. form: "feral",
  3130. default: true
  3131. },
  3132. dragon: {
  3133. height: math.unit(23, "feet"),
  3134. weight: math.unit(50000, "lb"),
  3135. name: "Dragon",
  3136. image: {
  3137. source: "./media/characters/rai/dragon.svg",
  3138. extra: 2498 / 2030,
  3139. bottom: 85.2 / 2584
  3140. },
  3141. form: "dragon",
  3142. default: true
  3143. },
  3144. maw: {
  3145. height: math.unit(1.69, "feet"),
  3146. name: "Maw",
  3147. image: {
  3148. source: "./media/characters/rai/maw.svg"
  3149. },
  3150. form: "anthro"
  3151. },
  3152. },
  3153. [
  3154. {
  3155. name: "Normal",
  3156. height: math.unit(7 + 2/12, "feet"),
  3157. form: "anthro"
  3158. },
  3159. {
  3160. name: "Big",
  3161. height: math.unit(11, "feet"),
  3162. form: "anthro"
  3163. },
  3164. {
  3165. name: "Minimacro",
  3166. height: math.unit(77, "feet"),
  3167. form: "anthro"
  3168. },
  3169. {
  3170. name: "Macro",
  3171. height: math.unit(302, "feet"),
  3172. default: true,
  3173. form: "anthro"
  3174. },
  3175. {
  3176. name: "Normal",
  3177. height: math.unit(9.5, "feet"),
  3178. form: "feral",
  3179. default: true
  3180. },
  3181. {
  3182. name: "Normal",
  3183. height: math.unit(23, "feet"),
  3184. form: "dragon",
  3185. default: true
  3186. }
  3187. ],
  3188. {
  3189. "anthro": {
  3190. name: "Anthro",
  3191. default: true
  3192. },
  3193. "feral": {
  3194. name: "Feral",
  3195. },
  3196. "dragon": {
  3197. name: "Dragon",
  3198. },
  3199. }
  3200. ))
  3201. characterMakers.push(() => makeCharacter(
  3202. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3203. {
  3204. frontDressed: {
  3205. height: math.unit(216, "feet"),
  3206. weight: math.unit(7000000, "lb"),
  3207. preyCapacity: math.unit(1321, "people"),
  3208. name: "Front (Dressed)",
  3209. image: {
  3210. source: "./media/characters/jazzy/front-dressed.svg",
  3211. extra: 2738 / 2651,
  3212. bottom: 41.8 / 2786
  3213. }
  3214. },
  3215. backDressed: {
  3216. height: math.unit(216, "feet"),
  3217. weight: math.unit(7000000, "lb"),
  3218. preyCapacity: math.unit(1321, "people"),
  3219. name: "Back (Dressed)",
  3220. image: {
  3221. source: "./media/characters/jazzy/back-dressed.svg",
  3222. extra: 2775 / 2673,
  3223. bottom: 36.8 / 2817
  3224. }
  3225. },
  3226. front: {
  3227. height: math.unit(216, "feet"),
  3228. weight: math.unit(7000000, "lb"),
  3229. preyCapacity: math.unit(1321, "people"),
  3230. name: "Front",
  3231. image: {
  3232. source: "./media/characters/jazzy/front.svg",
  3233. extra: 2738 / 2651,
  3234. bottom: 41.8 / 2786
  3235. }
  3236. },
  3237. back: {
  3238. height: math.unit(216, "feet"),
  3239. weight: math.unit(7000000, "lb"),
  3240. preyCapacity: math.unit(1321, "people"),
  3241. name: "Back",
  3242. image: {
  3243. source: "./media/characters/jazzy/back.svg",
  3244. extra: 2775 / 2673,
  3245. bottom: 36.8 / 2817
  3246. }
  3247. },
  3248. maw: {
  3249. height: math.unit(20, "feet"),
  3250. name: "Maw",
  3251. image: {
  3252. source: "./media/characters/jazzy/maw.svg"
  3253. }
  3254. },
  3255. paws: {
  3256. height: math.unit(27.5, "feet"),
  3257. name: "Paws",
  3258. image: {
  3259. source: "./media/characters/jazzy/paws.svg"
  3260. }
  3261. },
  3262. eye: {
  3263. height: math.unit(4.4, "feet"),
  3264. name: "Eye",
  3265. image: {
  3266. source: "./media/characters/jazzy/eye.svg"
  3267. }
  3268. },
  3269. droneOffense: {
  3270. height: math.unit(9.5, "inches"),
  3271. name: "Drone (Offense)",
  3272. image: {
  3273. source: "./media/characters/jazzy/drone-offense.svg"
  3274. }
  3275. },
  3276. droneRecon: {
  3277. height: math.unit(9.5, "inches"),
  3278. name: "Drone (Recon)",
  3279. image: {
  3280. source: "./media/characters/jazzy/drone-recon.svg"
  3281. }
  3282. },
  3283. droneDefense: {
  3284. height: math.unit(9.5, "inches"),
  3285. name: "Drone (Defense)",
  3286. image: {
  3287. source: "./media/characters/jazzy/drone-defense.svg"
  3288. }
  3289. },
  3290. },
  3291. [
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(216, "feet"),
  3295. default: true
  3296. },
  3297. ]
  3298. ))
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3301. {
  3302. front: {
  3303. height: math.unit(9 + 6/12, "feet"),
  3304. weight: math.unit(700, "lb"),
  3305. name: "Front",
  3306. image: {
  3307. source: "./media/characters/flamm/front.svg",
  3308. extra: 1736/1596,
  3309. bottom: 93/1829
  3310. }
  3311. },
  3312. buff: {
  3313. height: math.unit(9 + 6/12, "feet"),
  3314. weight: math.unit(950, "lb"),
  3315. name: "Buff",
  3316. image: {
  3317. source: "./media/characters/flamm/buff.svg",
  3318. extra: 3018/2874,
  3319. bottom: 221/3239
  3320. }
  3321. },
  3322. },
  3323. [
  3324. {
  3325. name: "Normal",
  3326. height: math.unit(9.5, "feet")
  3327. },
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(200, "feet"),
  3331. default: true
  3332. },
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(5 + 3/12, "feet"),
  3340. weight: math.unit(60, "kg"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/zephiro/front.svg",
  3344. extra: 1873/1761,
  3345. bottom: 147/2020
  3346. }
  3347. },
  3348. side: {
  3349. height: math.unit(5 + 3/12, "feet"),
  3350. weight: math.unit(60, "kg"),
  3351. name: "Side",
  3352. image: {
  3353. source: "./media/characters/zephiro/side.svg",
  3354. extra: 1929/1827,
  3355. bottom: 65/1994
  3356. }
  3357. },
  3358. back: {
  3359. height: math.unit(5 + 3/12, "feet"),
  3360. weight: math.unit(60, "kg"),
  3361. name: "Back",
  3362. image: {
  3363. source: "./media/characters/zephiro/back.svg",
  3364. extra: 1926/1816,
  3365. bottom: 41/1967
  3366. }
  3367. },
  3368. hand: {
  3369. height: math.unit(0.68, "feet"),
  3370. name: "Hand",
  3371. image: {
  3372. source: "./media/characters/zephiro/hand.svg"
  3373. }
  3374. },
  3375. paw: {
  3376. height: math.unit(1, "feet"),
  3377. name: "Paw",
  3378. image: {
  3379. source: "./media/characters/zephiro/paw.svg"
  3380. }
  3381. },
  3382. beans: {
  3383. height: math.unit(0.93, "feet"),
  3384. name: "Beans",
  3385. image: {
  3386. source: "./media/characters/zephiro/beans.svg"
  3387. }
  3388. },
  3389. },
  3390. [
  3391. {
  3392. name: "Micro",
  3393. height: math.unit(3, "inches")
  3394. },
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(5 + 3 / 12, "feet"),
  3398. default: true
  3399. },
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(118, "feet")
  3403. },
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(5, "feet"),
  3411. weight: math.unit(90, "kg"),
  3412. preyCapacity: math.unit(14, "people"),
  3413. name: "Front",
  3414. image: {
  3415. source: "./media/characters/fory/front.svg",
  3416. extra: 2862 / 2674,
  3417. bottom: 180 / 3043.8
  3418. },
  3419. form: "weaselbun",
  3420. default: true,
  3421. extraAttributes: {
  3422. "pawSize": {
  3423. name: "Paw Size",
  3424. power: 2,
  3425. type: "area",
  3426. base: math.unit(0.1596, "m^2")
  3427. },
  3428. "pawLength": {
  3429. name: "Paw Length",
  3430. power: 1,
  3431. type: "length",
  3432. base: math.unit(0.7, "m")
  3433. }
  3434. }
  3435. },
  3436. back: {
  3437. height: math.unit(5, "feet"),
  3438. weight: math.unit(90, "kg"),
  3439. preyCapacity: math.unit(14, "people"),
  3440. name: "Back",
  3441. image: {
  3442. source: "./media/characters/fory/back.svg",
  3443. extra: 1790/1672,
  3444. bottom: 84/1874
  3445. },
  3446. form: "weaselbun",
  3447. extraAttributes: {
  3448. "pawSize": {
  3449. name: "Paw Size",
  3450. power: 2,
  3451. type: "area",
  3452. base: math.unit(0.1596, "m^2")
  3453. },
  3454. "pawLength": {
  3455. name: "Paw Length",
  3456. power: 1,
  3457. type: "length",
  3458. base: math.unit(0.7, "m")
  3459. }
  3460. }
  3461. },
  3462. paw: {
  3463. height: math.unit(2.14, "feet"),
  3464. name: "Paw",
  3465. image: {
  3466. source: "./media/characters/fory/paw.svg"
  3467. },
  3468. form: "weaselbun",
  3469. extraAttributes: {
  3470. "pawSize": {
  3471. name: "Paw Size",
  3472. power: 2,
  3473. type: "area",
  3474. base: math.unit(0.1596, "m^2")
  3475. },
  3476. "pawLength": {
  3477. name: "Paw Length",
  3478. power: 1,
  3479. type: "length",
  3480. base: math.unit(0.48, "m")
  3481. }
  3482. }
  3483. },
  3484. bunBack: {
  3485. height: math.unit(3, "feet"),
  3486. weight: math.unit(20, "kg"),
  3487. preyCapacity: math.unit(3, "people"),
  3488. name: "Back",
  3489. image: {
  3490. source: "./media/characters/fory/bun-back.svg",
  3491. extra: 1749/1564,
  3492. bottom: 246/1995
  3493. },
  3494. form: "bun",
  3495. default: true,
  3496. extraAttributes: {
  3497. "pawSize": {
  3498. name: "Paw Size",
  3499. power: 2,
  3500. type: "area",
  3501. base: math.unit(0.072, "m^2")
  3502. },
  3503. "pawLength": {
  3504. name: "Paw Length",
  3505. power: 1,
  3506. type: "length",
  3507. base: math.unit(0.45, "m")
  3508. }
  3509. }
  3510. },
  3511. },
  3512. [
  3513. {
  3514. name: "Normal",
  3515. height: math.unit(5, "feet"),
  3516. form: "weaselbun"
  3517. },
  3518. {
  3519. name: "Macro",
  3520. height: math.unit(50, "feet"),
  3521. default: true,
  3522. form: "weaselbun"
  3523. },
  3524. {
  3525. name: "Megamacro",
  3526. height: math.unit(10, "miles"),
  3527. form: "weaselbun"
  3528. },
  3529. {
  3530. name: "Gigamacro",
  3531. height: math.unit(5, "earths"),
  3532. form: "weaselbun"
  3533. },
  3534. {
  3535. name: "Normal",
  3536. height: math.unit(3, "feet"),
  3537. default: true,
  3538. form: "bun"
  3539. },
  3540. {
  3541. name: "Fun-Size",
  3542. height: math.unit(12, "feet"),
  3543. form: "bun"
  3544. },
  3545. {
  3546. name: "Macro",
  3547. height: math.unit(100, "feet"),
  3548. form: "bun"
  3549. },
  3550. {
  3551. name: "Planetary",
  3552. height: math.unit(3, "earths"),
  3553. form: "bun"
  3554. },
  3555. ],
  3556. {
  3557. "weaselbun": {
  3558. name: "Weaselbun",
  3559. default: true
  3560. },
  3561. "bun": {
  3562. name: "Bun",
  3563. },
  3564. }
  3565. ))
  3566. characterMakers.push(() => makeCharacter(
  3567. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3568. {
  3569. front: {
  3570. height: math.unit(7, "feet"),
  3571. weight: math.unit(90, "kg"),
  3572. name: "Front",
  3573. image: {
  3574. source: "./media/characters/kurrikage/front.svg",
  3575. extra: 1845/1733,
  3576. bottom: 119/1964
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(7, "feet"),
  3581. weight: math.unit(90, "kg"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/kurrikage/back.svg",
  3585. extra: 1790/1677,
  3586. bottom: 61/1851
  3587. }
  3588. },
  3589. dressed: {
  3590. height: math.unit(7, "feet"),
  3591. weight: math.unit(90, "kg"),
  3592. name: "Dressed",
  3593. image: {
  3594. source: "./media/characters/kurrikage/dressed.svg",
  3595. extra: 1845/1733,
  3596. bottom: 119/1964
  3597. }
  3598. },
  3599. foot: {
  3600. height: math.unit(1.5, "feet"),
  3601. name: "Foot",
  3602. image: {
  3603. source: "./media/characters/kurrikage/foot.svg"
  3604. }
  3605. },
  3606. staff: {
  3607. height: math.unit(6.7, "feet"),
  3608. name: "Staff",
  3609. image: {
  3610. source: "./media/characters/kurrikage/staff.svg"
  3611. }
  3612. },
  3613. peek: {
  3614. height: math.unit(1.05, "feet"),
  3615. name: "Peeking",
  3616. image: {
  3617. source: "./media/characters/kurrikage/peek.svg",
  3618. bottom: 0.08
  3619. }
  3620. },
  3621. },
  3622. [
  3623. {
  3624. name: "Normal",
  3625. height: math.unit(12, "feet"),
  3626. default: true
  3627. },
  3628. {
  3629. name: "Big",
  3630. height: math.unit(20, "feet")
  3631. },
  3632. {
  3633. name: "Macro",
  3634. height: math.unit(500, "feet")
  3635. },
  3636. {
  3637. name: "Megamacro",
  3638. height: math.unit(20, "miles")
  3639. },
  3640. ]
  3641. ))
  3642. characterMakers.push(() => makeCharacter(
  3643. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3644. {
  3645. front: {
  3646. height: math.unit(6, "feet"),
  3647. weight: math.unit(75, "kg"),
  3648. name: "Front",
  3649. image: {
  3650. source: "./media/characters/shingo/front.svg",
  3651. extra: 1900/1825,
  3652. bottom: 82/1982
  3653. }
  3654. },
  3655. side: {
  3656. height: math.unit(6, "feet"),
  3657. weight: math.unit(75, "kg"),
  3658. name: "Side",
  3659. image: {
  3660. source: "./media/characters/shingo/side.svg",
  3661. extra: 1930/1865,
  3662. bottom: 16/1946
  3663. }
  3664. },
  3665. back: {
  3666. height: math.unit(6, "feet"),
  3667. weight: math.unit(75, "kg"),
  3668. name: "Back",
  3669. image: {
  3670. source: "./media/characters/shingo/back.svg",
  3671. extra: 1922/1852,
  3672. bottom: 16/1938
  3673. }
  3674. },
  3675. frontDressed: {
  3676. height: math.unit(6, "feet"),
  3677. weight: math.unit(150, "lb"),
  3678. name: "Front-dressed",
  3679. image: {
  3680. source: "./media/characters/shingo/front-dressed.svg",
  3681. extra: 1900/1825,
  3682. bottom: 82/1982
  3683. }
  3684. },
  3685. paw: {
  3686. height: math.unit(1.29, "feet"),
  3687. name: "Paw",
  3688. image: {
  3689. source: "./media/characters/shingo/paw.svg"
  3690. }
  3691. },
  3692. hand: {
  3693. height: math.unit(1.07, "feet"),
  3694. name: "Hand",
  3695. image: {
  3696. source: "./media/characters/shingo/hand.svg"
  3697. }
  3698. },
  3699. frontAlt: {
  3700. height: math.unit(6, "feet"),
  3701. weight: math.unit(75, "kg"),
  3702. name: "Front (Alt)",
  3703. image: {
  3704. source: "./media/characters/shingo/front-alt.svg",
  3705. extra: 3511 / 3338,
  3706. bottom: 0.005
  3707. }
  3708. },
  3709. frontAlt2: {
  3710. height: math.unit(6, "feet"),
  3711. weight: math.unit(75, "kg"),
  3712. name: "Front (Alt 2)",
  3713. image: {
  3714. source: "./media/characters/shingo/front-alt-2.svg",
  3715. extra: 706/681,
  3716. bottom: 11/717
  3717. }
  3718. },
  3719. pawAlt: {
  3720. height: math.unit(1, "feet"),
  3721. name: "Paw (Alt)",
  3722. image: {
  3723. source: "./media/characters/shingo/paw-alt.svg"
  3724. }
  3725. },
  3726. },
  3727. [
  3728. {
  3729. name: "Micro",
  3730. height: math.unit(4, "inches")
  3731. },
  3732. {
  3733. name: "Normal",
  3734. height: math.unit(6, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro",
  3739. height: math.unit(108, "feet")
  3740. },
  3741. {
  3742. name: "Macro+",
  3743. height: math.unit(1500, "feet")
  3744. },
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3749. {
  3750. side: {
  3751. height: math.unit(6, "feet"),
  3752. weight: math.unit(75, "kg"),
  3753. name: "Side",
  3754. image: {
  3755. source: "./media/characters/aigey/side.svg"
  3756. }
  3757. },
  3758. },
  3759. [
  3760. {
  3761. name: "Macro",
  3762. height: math.unit(200, "feet"),
  3763. default: true
  3764. },
  3765. {
  3766. name: "Megamacro",
  3767. height: math.unit(100, "miles")
  3768. },
  3769. ]
  3770. )
  3771. )
  3772. characterMakers.push(() => makeCharacter(
  3773. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3774. {
  3775. front: {
  3776. height: math.unit(5 + 5 / 12, "feet"),
  3777. weight: math.unit(75, "kg"),
  3778. name: "Front",
  3779. image: {
  3780. source: "./media/characters/natasha/front.svg",
  3781. extra: 859 / 824,
  3782. bottom: 23 / 879.6
  3783. }
  3784. },
  3785. frontNsfw: {
  3786. height: math.unit(5 + 5 / 12, "feet"),
  3787. weight: math.unit(75, "kg"),
  3788. name: "Front (NSFW)",
  3789. image: {
  3790. source: "./media/characters/natasha/front-nsfw.svg",
  3791. extra: 859 / 824,
  3792. bottom: 23 / 879.6
  3793. }
  3794. },
  3795. frontErect: {
  3796. height: math.unit(5 + 5 / 12, "feet"),
  3797. weight: math.unit(75, "kg"),
  3798. name: "Front (Erect)",
  3799. image: {
  3800. source: "./media/characters/natasha/front-erect.svg",
  3801. extra: 859 / 824,
  3802. bottom: 23 / 879.6
  3803. }
  3804. },
  3805. back: {
  3806. height: math.unit(5 + 5 / 12, "feet"),
  3807. weight: math.unit(75, "kg"),
  3808. name: "Back",
  3809. image: {
  3810. source: "./media/characters/natasha/back.svg",
  3811. extra: 887.9 / 852.6,
  3812. bottom: 9.7 / 896.4
  3813. }
  3814. },
  3815. backAlt: {
  3816. height: math.unit(5 + 5 / 12, "feet"),
  3817. weight: math.unit(75, "kg"),
  3818. name: "Back (Alt)",
  3819. image: {
  3820. source: "./media/characters/natasha/back-alt.svg",
  3821. extra: 1236.7 / 1192,
  3822. bottom: 22.3 / 1258.2
  3823. }
  3824. },
  3825. dick: {
  3826. height: math.unit(1.772, "feet"),
  3827. name: "Dick",
  3828. image: {
  3829. source: "./media/characters/natasha/dick.svg"
  3830. }
  3831. },
  3832. paw: {
  3833. height: math.unit(0.250, "meters"),
  3834. name: "Paw",
  3835. image: {
  3836. source: "./media/characters/natasha/paw.svg"
  3837. },
  3838. extraAttributes: {
  3839. "toeSize": {
  3840. name: "Toe Size",
  3841. power: 2,
  3842. type: "area",
  3843. base: math.unit(0.0024, "m^2")
  3844. },
  3845. "padSize": {
  3846. name: "Pad Size",
  3847. power: 2,
  3848. type: "area",
  3849. base: math.unit(0.00889, "m^2")
  3850. },
  3851. "pawSize": {
  3852. name: "Paw Size",
  3853. power: 2,
  3854. type: "area",
  3855. base: math.unit(0.023667, "m^2")
  3856. },
  3857. }
  3858. },
  3859. },
  3860. [
  3861. {
  3862. name: "Shortstack",
  3863. height: math.unit(3, "feet"),
  3864. default: true
  3865. },
  3866. {
  3867. name: "Normal",
  3868. height: math.unit(5 + 5 / 12, "feet")
  3869. },
  3870. {
  3871. name: "Large",
  3872. height: math.unit(12, "feet")
  3873. },
  3874. {
  3875. name: "Macro",
  3876. height: math.unit(100, "feet")
  3877. },
  3878. {
  3879. name: "Macro+",
  3880. height: math.unit(260, "feet")
  3881. },
  3882. {
  3883. name: "Macro++",
  3884. height: math.unit(1, "mile")
  3885. },
  3886. ]
  3887. ))
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(6, "feet"),
  3893. weight: math.unit(75, "kg"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/malik/front.svg",
  3897. extra: 1750/1561,
  3898. bottom: 80/1830
  3899. },
  3900. extraAttributes: {
  3901. "toeSize": {
  3902. name: "Toe Size",
  3903. power: 2,
  3904. type: "area",
  3905. base: math.unit(0.0159, "m^2")
  3906. },
  3907. "pawSize": {
  3908. name: "Paw Size",
  3909. power: 2,
  3910. type: "area",
  3911. base: math.unit(0.09834, "m^2")
  3912. },
  3913. }
  3914. },
  3915. side: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(75, "kg"),
  3918. name: "Side",
  3919. image: {
  3920. source: "./media/characters/malik/side.svg",
  3921. extra: 1802/1685,
  3922. bottom: 42/1844
  3923. },
  3924. extraAttributes: {
  3925. "toeSize": {
  3926. name: "Toe Size",
  3927. power: 2,
  3928. type: "area",
  3929. base: math.unit(0.0159, "m^2")
  3930. },
  3931. "pawSize": {
  3932. name: "Paw Size",
  3933. power: 2,
  3934. type: "area",
  3935. base: math.unit(0.09834, "m^2")
  3936. },
  3937. }
  3938. },
  3939. back: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(75, "kg"),
  3942. name: "Back",
  3943. image: {
  3944. source: "./media/characters/malik/back.svg",
  3945. extra: 1803/1607,
  3946. bottom: 33/1836
  3947. },
  3948. extraAttributes: {
  3949. "toeSize": {
  3950. name: "Toe Size",
  3951. power: 2,
  3952. type: "area",
  3953. base: math.unit(0.0159, "m^2")
  3954. },
  3955. "pawSize": {
  3956. name: "Paw Size",
  3957. power: 2,
  3958. type: "area",
  3959. base: math.unit(0.09834, "m^2")
  3960. },
  3961. }
  3962. },
  3963. },
  3964. [
  3965. {
  3966. name: "Macro",
  3967. height: math.unit(156, "feet"),
  3968. default: true
  3969. },
  3970. {
  3971. name: "Macro+",
  3972. height: math.unit(1188, "feet")
  3973. },
  3974. ]
  3975. ))
  3976. characterMakers.push(() => makeCharacter(
  3977. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3978. {
  3979. front: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(75, "kg"),
  3982. name: "Front",
  3983. image: {
  3984. source: "./media/characters/sefer/front.svg",
  3985. extra: 848 / 659,
  3986. bottom: 28.3 / 876.442
  3987. }
  3988. },
  3989. back: {
  3990. height: math.unit(6, "feet"),
  3991. weight: math.unit(75, "kg"),
  3992. name: "Back",
  3993. image: {
  3994. source: "./media/characters/sefer/back.svg",
  3995. extra: 864 / 695,
  3996. bottom: 10 / 871
  3997. }
  3998. },
  3999. frontDressed: {
  4000. height: math.unit(6, "feet"),
  4001. weight: math.unit(75, "kg"),
  4002. name: "Dressed",
  4003. image: {
  4004. source: "./media/characters/sefer/dressed.svg",
  4005. extra: 839 / 653,
  4006. bottom: 37.6 / 878
  4007. }
  4008. },
  4009. },
  4010. [
  4011. {
  4012. name: "Normal",
  4013. height: math.unit(6, "feet"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Big",
  4018. height: math.unit(8, "meters")
  4019. },
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4024. {
  4025. body: {
  4026. height: math.unit(2.2428, "meter"),
  4027. weight: math.unit(124.738, "kg"),
  4028. name: "Body",
  4029. image: {
  4030. extra: 1225 / 1050,
  4031. source: "./media/characters/north/front.svg"
  4032. }
  4033. }
  4034. },
  4035. [
  4036. {
  4037. name: "Micro",
  4038. height: math.unit(4, "inches")
  4039. },
  4040. {
  4041. name: "Macro",
  4042. height: math.unit(63, "meters")
  4043. },
  4044. {
  4045. name: "Megamacro",
  4046. height: math.unit(101, "miles"),
  4047. default: true
  4048. }
  4049. ]
  4050. ))
  4051. characterMakers.push(() => makeCharacter(
  4052. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4053. {
  4054. angled: {
  4055. height: math.unit(4, "meter"),
  4056. weight: math.unit(150, "kg"),
  4057. name: "Angled",
  4058. image: {
  4059. source: "./media/characters/talan/angled-sfw.svg",
  4060. bottom: 29 / 3734
  4061. }
  4062. },
  4063. angledNsfw: {
  4064. height: math.unit(4, "meter"),
  4065. weight: math.unit(150, "kg"),
  4066. name: "Angled (NSFW)",
  4067. image: {
  4068. source: "./media/characters/talan/angled-nsfw.svg",
  4069. bottom: 29 / 3734
  4070. }
  4071. },
  4072. frontNsfw: {
  4073. height: math.unit(4, "meter"),
  4074. weight: math.unit(150, "kg"),
  4075. name: "Front (NSFW)",
  4076. image: {
  4077. source: "./media/characters/talan/front-nsfw.svg",
  4078. bottom: 29 / 3734
  4079. }
  4080. },
  4081. sideNsfw: {
  4082. height: math.unit(4, "meter"),
  4083. weight: math.unit(150, "kg"),
  4084. name: "Side (NSFW)",
  4085. image: {
  4086. source: "./media/characters/talan/side-nsfw.svg",
  4087. bottom: 29 / 3734
  4088. }
  4089. },
  4090. back: {
  4091. height: math.unit(4, "meter"),
  4092. weight: math.unit(150, "kg"),
  4093. name: "Back",
  4094. image: {
  4095. source: "./media/characters/talan/back.svg"
  4096. }
  4097. },
  4098. dickBottom: {
  4099. height: math.unit(0.621, "meter"),
  4100. name: "Dick (Bottom)",
  4101. image: {
  4102. source: "./media/characters/talan/dick-bottom.svg"
  4103. }
  4104. },
  4105. dickTop: {
  4106. height: math.unit(0.621, "meter"),
  4107. name: "Dick (Top)",
  4108. image: {
  4109. source: "./media/characters/talan/dick-top.svg"
  4110. }
  4111. },
  4112. dickSide: {
  4113. height: math.unit(0.305, "meter"),
  4114. name: "Dick (Side)",
  4115. image: {
  4116. source: "./media/characters/talan/dick-side.svg"
  4117. }
  4118. },
  4119. dickFront: {
  4120. height: math.unit(0.305, "meter"),
  4121. name: "Dick (Front)",
  4122. image: {
  4123. source: "./media/characters/talan/dick-front.svg"
  4124. }
  4125. },
  4126. },
  4127. [
  4128. {
  4129. name: "Normal",
  4130. height: math.unit(4, "meters")
  4131. },
  4132. {
  4133. name: "Macro",
  4134. height: math.unit(100, "meters")
  4135. },
  4136. {
  4137. name: "Megamacro",
  4138. height: math.unit(2, "miles"),
  4139. default: true
  4140. },
  4141. {
  4142. name: "Gigamacro",
  4143. height: math.unit(5000, "miles")
  4144. },
  4145. {
  4146. name: "Teramacro",
  4147. height: math.unit(100, "parsecs")
  4148. }
  4149. ]
  4150. ))
  4151. characterMakers.push(() => makeCharacter(
  4152. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4153. {
  4154. front: {
  4155. height: math.unit(2, "meter"),
  4156. weight: math.unit(90, "kg"),
  4157. name: "Front",
  4158. image: {
  4159. source: "./media/characters/gael'rathus/front.svg"
  4160. }
  4161. },
  4162. frontAlt: {
  4163. height: math.unit(2, "meter"),
  4164. weight: math.unit(90, "kg"),
  4165. name: "Front (alt)",
  4166. image: {
  4167. source: "./media/characters/gael'rathus/front-alt.svg"
  4168. }
  4169. },
  4170. frontAlt2: {
  4171. height: math.unit(2, "meter"),
  4172. weight: math.unit(90, "kg"),
  4173. name: "Front (alt 2)",
  4174. image: {
  4175. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4176. }
  4177. }
  4178. },
  4179. [
  4180. {
  4181. name: "Normal",
  4182. height: math.unit(9, "feet"),
  4183. default: true
  4184. },
  4185. {
  4186. name: "Large",
  4187. height: math.unit(25, "feet")
  4188. },
  4189. {
  4190. name: "Macro",
  4191. height: math.unit(0.25, "miles")
  4192. },
  4193. {
  4194. name: "Megamacro",
  4195. height: math.unit(10, "miles")
  4196. }
  4197. ]
  4198. ))
  4199. characterMakers.push(() => makeCharacter(
  4200. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4201. {
  4202. side: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(140, "kg"),
  4205. name: "Side",
  4206. image: {
  4207. source: "./media/characters/sosha/side.svg",
  4208. extra: 1170/1006,
  4209. bottom: 94/1264
  4210. }
  4211. },
  4212. maw: {
  4213. height: math.unit(2.87, "feet"),
  4214. name: "Maw",
  4215. image: {
  4216. source: "./media/characters/sosha/maw.svg",
  4217. extra: 966/865,
  4218. bottom: 0/966
  4219. }
  4220. },
  4221. cooch: {
  4222. height: math.unit(5.6, "feet"),
  4223. name: "Cooch",
  4224. image: {
  4225. source: "./media/characters/sosha/cooch.svg"
  4226. }
  4227. },
  4228. },
  4229. [
  4230. {
  4231. name: "Normal",
  4232. height: math.unit(12, "feet"),
  4233. default: true
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4239. {
  4240. side: {
  4241. height: math.unit(5 + 5 / 12, "feet"),
  4242. weight: math.unit(170, "kg"),
  4243. name: "Side",
  4244. image: {
  4245. source: "./media/characters/runnola/side.svg",
  4246. extra: 741 / 448,
  4247. bottom: 0.05
  4248. }
  4249. },
  4250. },
  4251. [
  4252. {
  4253. name: "Small",
  4254. height: math.unit(3, "feet")
  4255. },
  4256. {
  4257. name: "Normal",
  4258. height: math.unit(5 + 5 / 12, "feet"),
  4259. default: true
  4260. },
  4261. {
  4262. name: "Big",
  4263. height: math.unit(10, "feet")
  4264. },
  4265. ]
  4266. ))
  4267. characterMakers.push(() => makeCharacter(
  4268. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4269. {
  4270. front: {
  4271. height: math.unit(2, "meter"),
  4272. weight: math.unit(50, "kg"),
  4273. name: "Front",
  4274. image: {
  4275. source: "./media/characters/kurribird/front.svg",
  4276. bottom: 0.015
  4277. }
  4278. },
  4279. frontAlt: {
  4280. height: math.unit(1.5, "meter"),
  4281. weight: math.unit(50, "kg"),
  4282. name: "Front (Alt)",
  4283. image: {
  4284. source: "./media/characters/kurribird/front-alt.svg",
  4285. extra: 1.45
  4286. }
  4287. },
  4288. },
  4289. [
  4290. {
  4291. name: "Normal",
  4292. height: math.unit(7, "feet")
  4293. },
  4294. {
  4295. name: "Big",
  4296. height: math.unit(12, "feet"),
  4297. default: true
  4298. },
  4299. {
  4300. name: "Macro",
  4301. height: math.unit(1500, "feet")
  4302. },
  4303. {
  4304. name: "Megamacro",
  4305. height: math.unit(2, "miles")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(2, "meter"),
  4314. weight: math.unit(80, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/elbial/front.svg",
  4318. extra: 1643 / 1556,
  4319. bottom: 60.2 / 1696
  4320. }
  4321. },
  4322. side: {
  4323. height: math.unit(2, "meter"),
  4324. weight: math.unit(80, "kg"),
  4325. name: "Side",
  4326. image: {
  4327. source: "./media/characters/elbial/side.svg",
  4328. extra: 1601/1528,
  4329. bottom: 97/1698
  4330. }
  4331. },
  4332. back: {
  4333. height: math.unit(2, "meter"),
  4334. weight: math.unit(80, "kg"),
  4335. name: "Back",
  4336. image: {
  4337. source: "./media/characters/elbial/back.svg",
  4338. extra: 1653/1569,
  4339. bottom: 20/1673
  4340. }
  4341. },
  4342. frontDressed: {
  4343. height: math.unit(2, "meter"),
  4344. weight: math.unit(80, "kg"),
  4345. name: "Front (Dressed)",
  4346. image: {
  4347. source: "./media/characters/elbial/front-dressed.svg",
  4348. extra: 1638/1569,
  4349. bottom: 70/1708
  4350. }
  4351. },
  4352. genitals: {
  4353. height: math.unit(2 / 3.367, "meter"),
  4354. name: "Genitals",
  4355. image: {
  4356. source: "./media/characters/elbial/genitals.svg"
  4357. }
  4358. },
  4359. },
  4360. [
  4361. {
  4362. name: "Large",
  4363. height: math.unit(100, "feet")
  4364. },
  4365. {
  4366. name: "Macro",
  4367. height: math.unit(500, "feet"),
  4368. default: true
  4369. },
  4370. {
  4371. name: "Megamacro",
  4372. height: math.unit(10, "miles")
  4373. },
  4374. {
  4375. name: "Gigamacro",
  4376. height: math.unit(25000, "miles")
  4377. },
  4378. {
  4379. name: "Full-Size",
  4380. height: math.unit(8000000, "gigaparsecs")
  4381. }
  4382. ]
  4383. ))
  4384. characterMakers.push(() => makeCharacter(
  4385. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4386. {
  4387. front: {
  4388. height: math.unit(2, "meter"),
  4389. weight: math.unit(60, "kg"),
  4390. name: "Front",
  4391. image: {
  4392. source: "./media/characters/noah/front.svg",
  4393. extra: 1383/1313,
  4394. bottom: 104/1487
  4395. }
  4396. },
  4397. hand: {
  4398. height: math.unit(0.6, "feet"),
  4399. name: "Hand",
  4400. image: {
  4401. source: "./media/characters/noah/hand.svg"
  4402. }
  4403. },
  4404. talons: {
  4405. height: math.unit(1.385, "feet"),
  4406. name: "Talons",
  4407. image: {
  4408. source: "./media/characters/noah/talons.svg"
  4409. }
  4410. },
  4411. beak: {
  4412. height: math.unit(0.43, "feet"),
  4413. name: "Beak",
  4414. image: {
  4415. source: "./media/characters/noah/beak.svg"
  4416. }
  4417. },
  4418. collar: {
  4419. height: math.unit(0.88, "feet"),
  4420. name: "Collar",
  4421. image: {
  4422. source: "./media/characters/noah/collar.svg"
  4423. }
  4424. },
  4425. eyeNarrow: {
  4426. height: math.unit(0.18, "feet"),
  4427. name: "Eye (Narrow)",
  4428. image: {
  4429. source: "./media/characters/noah/eye-narrow.svg"
  4430. }
  4431. },
  4432. eyeNormal: {
  4433. height: math.unit(0.18, "feet"),
  4434. name: "Eye (Normal)",
  4435. image: {
  4436. source: "./media/characters/noah/eye-normal.svg"
  4437. }
  4438. },
  4439. eyeWide: {
  4440. height: math.unit(0.18, "feet"),
  4441. name: "Eye (Wide)",
  4442. image: {
  4443. source: "./media/characters/noah/eye-wide.svg"
  4444. }
  4445. },
  4446. ear: {
  4447. height: math.unit(0.64, "feet"),
  4448. name: "Ear",
  4449. image: {
  4450. source: "./media/characters/noah/ear.svg"
  4451. }
  4452. },
  4453. },
  4454. [
  4455. {
  4456. name: "Large",
  4457. height: math.unit(50, "feet")
  4458. },
  4459. {
  4460. name: "Macro",
  4461. height: math.unit(750, "feet"),
  4462. default: true
  4463. },
  4464. {
  4465. name: "Megamacro",
  4466. height: math.unit(50, "miles")
  4467. },
  4468. {
  4469. name: "Gigamacro",
  4470. height: math.unit(100000, "miles")
  4471. },
  4472. {
  4473. name: "Full-Size",
  4474. height: math.unit(3000000000, "miles")
  4475. }
  4476. ]
  4477. ))
  4478. characterMakers.push(() => makeCharacter(
  4479. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4480. {
  4481. front: {
  4482. height: math.unit(2, "meter"),
  4483. weight: math.unit(80, "kg"),
  4484. name: "Front",
  4485. image: {
  4486. source: "./media/characters/natalya/front.svg"
  4487. }
  4488. },
  4489. back: {
  4490. height: math.unit(2, "meter"),
  4491. weight: math.unit(80, "kg"),
  4492. name: "Back",
  4493. image: {
  4494. source: "./media/characters/natalya/back.svg"
  4495. }
  4496. }
  4497. },
  4498. [
  4499. {
  4500. name: "Normal",
  4501. height: math.unit(150, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(5, "miles")
  4507. },
  4508. {
  4509. name: "Full-Size",
  4510. height: math.unit(600, "kiloparsecs")
  4511. }
  4512. ]
  4513. ))
  4514. characterMakers.push(() => makeCharacter(
  4515. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4516. {
  4517. front: {
  4518. height: math.unit(2, "meter"),
  4519. weight: math.unit(50, "kg"),
  4520. name: "Front",
  4521. image: {
  4522. source: "./media/characters/erestrebah/front.svg",
  4523. extra: 1262/1162,
  4524. bottom: 96/1358
  4525. }
  4526. },
  4527. back: {
  4528. height: math.unit(2, "meter"),
  4529. weight: math.unit(50, "kg"),
  4530. name: "Back",
  4531. image: {
  4532. source: "./media/characters/erestrebah/back.svg",
  4533. extra: 1257/1139,
  4534. bottom: 13/1270
  4535. }
  4536. },
  4537. wing: {
  4538. height: math.unit(2, "meter"),
  4539. weight: math.unit(50, "kg"),
  4540. name: "Wing",
  4541. image: {
  4542. source: "./media/characters/erestrebah/wing.svg",
  4543. extra: 1262/1162,
  4544. bottom: 96/1358
  4545. }
  4546. },
  4547. mouth: {
  4548. height: math.unit(0.39, "feet"),
  4549. name: "Mouth",
  4550. image: {
  4551. source: "./media/characters/erestrebah/mouth.svg"
  4552. }
  4553. }
  4554. },
  4555. [
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(10, "feet")
  4559. },
  4560. {
  4561. name: "Large",
  4562. height: math.unit(50, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(300, "feet")
  4568. },
  4569. {
  4570. name: "Macro+",
  4571. height: math.unit(750, "feet")
  4572. },
  4573. {
  4574. name: "Megamacro",
  4575. height: math.unit(3, "miles")
  4576. }
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(2, "meter"),
  4584. weight: math.unit(80, "kg"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/jennifer/front.svg",
  4588. bottom: 0.11,
  4589. extra: 1.16
  4590. }
  4591. },
  4592. frontAlt: {
  4593. height: math.unit(2, "meter"),
  4594. weight: math.unit(80, "kg"),
  4595. name: "Front (Alt)",
  4596. image: {
  4597. source: "./media/characters/jennifer/front-alt.svg"
  4598. }
  4599. }
  4600. },
  4601. [
  4602. {
  4603. name: "Canon Height",
  4604. height: math.unit(120, "feet"),
  4605. default: true
  4606. },
  4607. {
  4608. name: "Macro+",
  4609. height: math.unit(300, "feet")
  4610. },
  4611. {
  4612. name: "Megamacro",
  4613. height: math.unit(20000, "feet")
  4614. }
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4619. {
  4620. front: {
  4621. height: math.unit(2, "meter"),
  4622. weight: math.unit(50, "kg"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/kalista/front.svg",
  4626. extra: 1314/1145,
  4627. bottom: 101/1415
  4628. }
  4629. },
  4630. back: {
  4631. height: math.unit(2, "meter"),
  4632. weight: math.unit(50, "kg"),
  4633. name: "Back",
  4634. image: {
  4635. source: "./media/characters/kalista/back.svg",
  4636. extra: 1366 / 1156,
  4637. bottom: 33.9 / 1362.78
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Uncomfortably Small",
  4644. height: math.unit(10, "feet")
  4645. },
  4646. {
  4647. name: "Small",
  4648. height: math.unit(30, "feet")
  4649. },
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(100, "feet"),
  4653. default: true
  4654. },
  4655. {
  4656. name: "Macro+",
  4657. height: math.unit(2000, "feet")
  4658. },
  4659. {
  4660. name: "True Form",
  4661. height: math.unit(8924, "miles")
  4662. }
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4667. {
  4668. front: {
  4669. height: math.unit(2, "meter"),
  4670. weight: math.unit(120, "kg"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/ggv/front.svg"
  4674. }
  4675. },
  4676. side: {
  4677. height: math.unit(2, "meter"),
  4678. weight: math.unit(120, "kg"),
  4679. name: "Side",
  4680. image: {
  4681. source: "./media/characters/ggv/side.svg"
  4682. }
  4683. }
  4684. },
  4685. [
  4686. {
  4687. name: "Extremely Puny",
  4688. height: math.unit(9 + 5 / 12, "feet")
  4689. },
  4690. {
  4691. name: "Horribly Small",
  4692. height: math.unit(47.7, "miles"),
  4693. default: true
  4694. },
  4695. {
  4696. name: "Reasonably Sized",
  4697. height: math.unit(25000, "parsecs")
  4698. },
  4699. {
  4700. name: "Slightly Uncompressed",
  4701. height: math.unit(7.77e31, "parsecs")
  4702. },
  4703. {
  4704. name: "Omniversal",
  4705. height: math.unit(1e300, "meters")
  4706. },
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4711. {
  4712. front: {
  4713. height: math.unit(2, "meter"),
  4714. weight: math.unit(75, "lb"),
  4715. name: "Front",
  4716. image: {
  4717. source: "./media/characters/napalm/front.svg"
  4718. }
  4719. },
  4720. back: {
  4721. height: math.unit(2, "meter"),
  4722. weight: math.unit(75, "lb"),
  4723. name: "Back",
  4724. image: {
  4725. source: "./media/characters/napalm/back.svg"
  4726. }
  4727. }
  4728. },
  4729. [
  4730. {
  4731. name: "Standard",
  4732. height: math.unit(55, "feet"),
  4733. default: true
  4734. }
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4739. {
  4740. front: {
  4741. height: math.unit(7 + 5 / 6, "feet"),
  4742. weight: math.unit(325, "lb"),
  4743. name: "Front",
  4744. image: {
  4745. source: "./media/characters/asana/front.svg",
  4746. extra: 1133 / 1060,
  4747. bottom: 15.2 / 1148.6
  4748. }
  4749. },
  4750. back: {
  4751. height: math.unit(7 + 5 / 6, "feet"),
  4752. weight: math.unit(325, "lb"),
  4753. name: "Back",
  4754. image: {
  4755. source: "./media/characters/asana/back.svg",
  4756. extra: 1114 / 1043,
  4757. bottom: 5 / 1120
  4758. }
  4759. },
  4760. dressedDark: {
  4761. height: math.unit(7 + 5 / 6, "feet"),
  4762. weight: math.unit(325, "lb"),
  4763. name: "Dressed (Dark)",
  4764. image: {
  4765. source: "./media/characters/asana/dressed-dark.svg",
  4766. extra: 1133 / 1060,
  4767. bottom: 15.2 / 1148.6
  4768. }
  4769. },
  4770. dressedLight: {
  4771. height: math.unit(7 + 5 / 6, "feet"),
  4772. weight: math.unit(325, "lb"),
  4773. name: "Dressed (Light)",
  4774. image: {
  4775. source: "./media/characters/asana/dressed-light.svg",
  4776. extra: 1133 / 1060,
  4777. bottom: 15.2 / 1148.6
  4778. }
  4779. },
  4780. },
  4781. [
  4782. {
  4783. name: "Standard",
  4784. height: math.unit(7 + 5 / 6, "feet"),
  4785. default: true
  4786. },
  4787. {
  4788. name: "Large",
  4789. height: math.unit(10, "meters")
  4790. },
  4791. {
  4792. name: "Macro",
  4793. height: math.unit(2500, "meters")
  4794. },
  4795. {
  4796. name: "Megamacro",
  4797. height: math.unit(5e6, "meters")
  4798. },
  4799. {
  4800. name: "Examacro",
  4801. height: math.unit(5e12, "lightyears")
  4802. },
  4803. {
  4804. name: "Max Size",
  4805. height: math.unit(1e31, "lightyears")
  4806. }
  4807. ]
  4808. ))
  4809. characterMakers.push(() => makeCharacter(
  4810. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4811. {
  4812. front: {
  4813. height: math.unit(2, "meter"),
  4814. weight: math.unit(60, "kg"),
  4815. name: "Front",
  4816. image: {
  4817. source: "./media/characters/ebony/front.svg",
  4818. bottom: 0.03,
  4819. extra: 1045 / 810 + 0.03
  4820. }
  4821. },
  4822. side: {
  4823. height: math.unit(2, "meter"),
  4824. weight: math.unit(60, "kg"),
  4825. name: "Side",
  4826. image: {
  4827. source: "./media/characters/ebony/side.svg",
  4828. bottom: 0.03,
  4829. extra: 1045 / 810 + 0.03
  4830. }
  4831. },
  4832. back: {
  4833. height: math.unit(2, "meter"),
  4834. weight: math.unit(60, "kg"),
  4835. name: "Back",
  4836. image: {
  4837. source: "./media/characters/ebony/back.svg",
  4838. bottom: 0.01,
  4839. extra: 1045 / 810 + 0.01
  4840. }
  4841. },
  4842. },
  4843. [
  4844. // TODO check why I did this lol
  4845. {
  4846. name: "Standard",
  4847. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Macro",
  4852. height: math.unit(200, "feet")
  4853. },
  4854. {
  4855. name: "Gigamacro",
  4856. height: math.unit(13000, "km")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4862. {
  4863. front: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(175, "lb"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/mountain/front.svg",
  4869. extra: 972 / 955,
  4870. bottom: 64 / 1036.6
  4871. }
  4872. },
  4873. back: {
  4874. height: math.unit(6, "feet"),
  4875. weight: math.unit(175, "lb"),
  4876. name: "Back",
  4877. image: {
  4878. source: "./media/characters/mountain/back.svg",
  4879. extra: 970 / 950,
  4880. bottom: 28.25 / 999
  4881. }
  4882. },
  4883. },
  4884. [
  4885. {
  4886. name: "Large",
  4887. height: math.unit(20, "meters")
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(300, "meters")
  4892. },
  4893. {
  4894. name: "Gigamacro",
  4895. height: math.unit(10000, "km"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Examacro",
  4900. height: math.unit(10e9, "lightyears")
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4906. {
  4907. front: {
  4908. height: math.unit(8, "feet"),
  4909. weight: math.unit(500, "lb"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/rick/front.svg"
  4913. }
  4914. }
  4915. },
  4916. [
  4917. {
  4918. name: "Normal",
  4919. height: math.unit(8, "feet"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(5, "km")
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4930. {
  4931. front: {
  4932. height: math.unit(8, "feet"),
  4933. weight: math.unit(120, "lb"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/ona/front.svg"
  4937. }
  4938. },
  4939. frontAlt: {
  4940. height: math.unit(8, "feet"),
  4941. weight: math.unit(120, "lb"),
  4942. name: "Front (Alt)",
  4943. image: {
  4944. source: "./media/characters/ona/front-alt.svg"
  4945. }
  4946. },
  4947. back: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(120, "lb"),
  4950. name: "Back",
  4951. image: {
  4952. source: "./media/characters/ona/back.svg"
  4953. }
  4954. },
  4955. foot: {
  4956. height: math.unit(1.1, "feet"),
  4957. name: "Foot",
  4958. image: {
  4959. source: "./media/characters/ona/foot.svg"
  4960. }
  4961. }
  4962. },
  4963. [
  4964. {
  4965. name: "Megamacro",
  4966. height: math.unit(70, "km"),
  4967. default: true
  4968. },
  4969. {
  4970. name: "Gigamacro",
  4971. height: math.unit(681818, "miles")
  4972. },
  4973. {
  4974. name: "Examacro",
  4975. height: math.unit(3800000, "lightyears")
  4976. },
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(12, "feet"),
  4984. weight: math.unit(3000, "lb"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/mech/front.svg",
  4988. extra: 2900 / 2770,
  4989. bottom: 110 / 3010
  4990. }
  4991. },
  4992. back: {
  4993. height: math.unit(12, "feet"),
  4994. weight: math.unit(3000, "lb"),
  4995. name: "Back",
  4996. image: {
  4997. source: "./media/characters/mech/back.svg",
  4998. extra: 3011 / 2890,
  4999. bottom: 94 / 3105
  5000. }
  5001. },
  5002. maw: {
  5003. height: math.unit(3.07, "feet"),
  5004. name: "Maw",
  5005. image: {
  5006. source: "./media/characters/mech/maw.svg"
  5007. }
  5008. },
  5009. head: {
  5010. height: math.unit(3.07, "feet"),
  5011. name: "Head",
  5012. image: {
  5013. source: "./media/characters/mech/head.svg"
  5014. }
  5015. },
  5016. dick: {
  5017. height: math.unit(1.43, "feet"),
  5018. name: "Dick",
  5019. image: {
  5020. source: "./media/characters/mech/dick.svg"
  5021. }
  5022. },
  5023. },
  5024. [
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(12, "feet")
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(300, "feet"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Macro+",
  5036. height: math.unit(1500, "feet")
  5037. },
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5042. {
  5043. front: {
  5044. height: math.unit(1.3, "meter"),
  5045. weight: math.unit(30, "kg"),
  5046. name: "Front",
  5047. image: {
  5048. source: "./media/characters/gregory/front.svg",
  5049. }
  5050. }
  5051. },
  5052. [
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(1.3, "meter"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Macro",
  5060. height: math.unit(20, "meter")
  5061. }
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5066. {
  5067. front: {
  5068. height: math.unit(2.8, "meter"),
  5069. weight: math.unit(200, "kg"),
  5070. name: "Front",
  5071. image: {
  5072. source: "./media/characters/elory/front.svg",
  5073. }
  5074. }
  5075. },
  5076. [
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(2.8, "meter"),
  5080. default: true
  5081. },
  5082. {
  5083. name: "Macro",
  5084. height: math.unit(38, "meter")
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(470, "feet"),
  5093. weight: math.unit(924, "tons"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/angelpatamon/front.svg",
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Normal",
  5103. height: math.unit(470, "feet"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Deity Size I",
  5108. height: math.unit(28651.2, "km")
  5109. },
  5110. {
  5111. name: "Deity Size II",
  5112. height: math.unit(171907.2, "km")
  5113. }
  5114. ]
  5115. ))
  5116. characterMakers.push(() => makeCharacter(
  5117. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5118. {
  5119. side: {
  5120. height: math.unit(7.2, "meter"),
  5121. weight: math.unit(8.2, "tons"),
  5122. name: "Side",
  5123. image: {
  5124. source: "./media/characters/cryae/side.svg",
  5125. extra: 3500 / 1500
  5126. }
  5127. }
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(7.2, "meter"),
  5133. default: true
  5134. }
  5135. ]
  5136. ))
  5137. characterMakers.push(() => makeCharacter(
  5138. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5139. {
  5140. front: {
  5141. height: math.unit(6, "feet"),
  5142. weight: math.unit(175, "lb"),
  5143. name: "Front",
  5144. image: {
  5145. source: "./media/characters/xera/front.svg",
  5146. extra: 2377 / 1972,
  5147. bottom: 75.5 / 2452
  5148. }
  5149. },
  5150. side: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(175, "lb"),
  5153. name: "Side",
  5154. image: {
  5155. source: "./media/characters/xera/side.svg",
  5156. extra: 2345 / 2019,
  5157. bottom: 39.7 / 2384
  5158. }
  5159. },
  5160. back: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(175, "lb"),
  5163. name: "Back",
  5164. image: {
  5165. source: "./media/characters/xera/back.svg",
  5166. extra: 2095 / 1984,
  5167. bottom: 67 / 2166
  5168. }
  5169. },
  5170. },
  5171. [
  5172. {
  5173. name: "Small",
  5174. height: math.unit(10, "feet")
  5175. },
  5176. {
  5177. name: "Macro",
  5178. height: math.unit(500, "meters"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro+",
  5183. height: math.unit(10, "km")
  5184. },
  5185. {
  5186. name: "Gigamacro",
  5187. height: math.unit(25000, "km")
  5188. },
  5189. {
  5190. name: "Teramacro",
  5191. height: math.unit(3e6, "km")
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5197. {
  5198. front: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(175, "lb"),
  5201. name: "Front",
  5202. image: {
  5203. source: "./media/characters/nebula/front.svg",
  5204. extra: 2566 / 2362,
  5205. bottom: 81 / 2644
  5206. }
  5207. }
  5208. },
  5209. [
  5210. {
  5211. name: "Small",
  5212. height: math.unit(4.5, "meters")
  5213. },
  5214. {
  5215. name: "Macro",
  5216. height: math.unit(1500, "meters"),
  5217. default: true
  5218. },
  5219. {
  5220. name: "Megamacro",
  5221. height: math.unit(150, "km")
  5222. },
  5223. {
  5224. name: "Gigamacro",
  5225. height: math.unit(27000, "km")
  5226. }
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5231. {
  5232. front: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(225, "lb"),
  5235. name: "Front",
  5236. image: {
  5237. source: "./media/characters/abysgar/front.svg",
  5238. extra: 1739/1614,
  5239. bottom: 71/1810
  5240. }
  5241. },
  5242. frontNsfw: {
  5243. height: math.unit(6, "feet"),
  5244. weight: math.unit(225, "lb"),
  5245. name: "Front (NSFW)",
  5246. image: {
  5247. source: "./media/characters/abysgar/front-nsfw.svg",
  5248. extra: 1739/1614,
  5249. bottom: 71/1810
  5250. }
  5251. },
  5252. back: {
  5253. height: math.unit(4.6, "feet"),
  5254. weight: math.unit(225, "lb"),
  5255. name: "Back",
  5256. image: {
  5257. source: "./media/characters/abysgar/back.svg",
  5258. extra: 1384/1327,
  5259. bottom: 0/1384
  5260. }
  5261. },
  5262. head: {
  5263. height: math.unit(1.25, "feet"),
  5264. name: "Head",
  5265. image: {
  5266. source: "./media/characters/abysgar/head.svg",
  5267. extra: 669/569,
  5268. bottom: 0/669
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Small",
  5275. height: math.unit(4.5, "meters")
  5276. },
  5277. {
  5278. name: "Macro",
  5279. height: math.unit(1250, "meters"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Megamacro",
  5284. height: math.unit(125, "km")
  5285. },
  5286. {
  5287. name: "Gigamacro",
  5288. height: math.unit(26000, "km")
  5289. }
  5290. ]
  5291. ))
  5292. characterMakers.push(() => makeCharacter(
  5293. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5294. {
  5295. front: {
  5296. height: math.unit(6, "feet"),
  5297. weight: math.unit(180, "lb"),
  5298. name: "Front",
  5299. image: {
  5300. source: "./media/characters/yakuz/front.svg"
  5301. }
  5302. }
  5303. },
  5304. [
  5305. {
  5306. name: "Small",
  5307. height: math.unit(5, "meters")
  5308. },
  5309. {
  5310. name: "Macro",
  5311. height: math.unit(1500, "meters"),
  5312. default: true
  5313. },
  5314. {
  5315. name: "Megamacro",
  5316. height: math.unit(200, "km")
  5317. },
  5318. {
  5319. name: "Gigamacro",
  5320. height: math.unit(100000, "km")
  5321. }
  5322. ]
  5323. ))
  5324. characterMakers.push(() => makeCharacter(
  5325. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5326. {
  5327. front: {
  5328. height: math.unit(6, "feet"),
  5329. weight: math.unit(175, "lb"),
  5330. name: "Front",
  5331. image: {
  5332. source: "./media/characters/mirova/front.svg",
  5333. extra: 3334 / 3071,
  5334. bottom: 42 / 3375.6
  5335. }
  5336. }
  5337. },
  5338. [
  5339. {
  5340. name: "Small",
  5341. height: math.unit(5, "meters")
  5342. },
  5343. {
  5344. name: "Macro",
  5345. height: math.unit(900, "meters"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "Megamacro",
  5350. height: math.unit(135, "km")
  5351. },
  5352. {
  5353. name: "Gigamacro",
  5354. height: math.unit(20000, "km")
  5355. }
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5360. {
  5361. side: {
  5362. height: math.unit(28.35, "feet"),
  5363. weight: math.unit(99.75, "tons"),
  5364. name: "Side",
  5365. image: {
  5366. source: "./media/characters/asana-mech/side.svg",
  5367. extra: 923 / 699,
  5368. bottom: 50 / 975
  5369. }
  5370. },
  5371. chaingun: {
  5372. height: math.unit(7, "feet"),
  5373. weight: math.unit(2400, "lb"),
  5374. name: "Chaingun",
  5375. image: {
  5376. source: "./media/characters/asana-mech/chaingun.svg"
  5377. }
  5378. },
  5379. laser: {
  5380. height: math.unit(7.12, "feet"),
  5381. weight: math.unit(2000, "lb"),
  5382. name: "Laser",
  5383. image: {
  5384. source: "./media/characters/asana-mech/laser.svg"
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Normal",
  5391. height: math.unit(28.35, "feet"),
  5392. default: true
  5393. },
  5394. {
  5395. name: "Macro",
  5396. height: math.unit(2500, "feet")
  5397. },
  5398. {
  5399. name: "Megamacro",
  5400. height: math.unit(25, "miles")
  5401. },
  5402. {
  5403. name: "Examacro",
  5404. height: math.unit(6e8, "lightyears")
  5405. },
  5406. ]
  5407. ))
  5408. characterMakers.push(() => makeCharacter(
  5409. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5410. {
  5411. front: {
  5412. height: math.unit(5, "meters"),
  5413. weight: math.unit(1000, "kg"),
  5414. name: "Front",
  5415. image: {
  5416. source: "./media/characters/asche/front.svg",
  5417. extra: 1258 / 1190,
  5418. bottom: 47 / 1305
  5419. }
  5420. },
  5421. frontUnderwear: {
  5422. height: math.unit(5, "meters"),
  5423. weight: math.unit(1000, "kg"),
  5424. name: "Front (Underwear)",
  5425. image: {
  5426. source: "./media/characters/asche/front-underwear.svg",
  5427. extra: 1258 / 1190,
  5428. bottom: 47 / 1305
  5429. }
  5430. },
  5431. frontDressed: {
  5432. height: math.unit(5, "meters"),
  5433. weight: math.unit(1000, "kg"),
  5434. name: "Front (Dressed)",
  5435. image: {
  5436. source: "./media/characters/asche/front-dressed.svg",
  5437. extra: 1258 / 1190,
  5438. bottom: 47 / 1305
  5439. }
  5440. },
  5441. frontArmor: {
  5442. height: math.unit(5, "meters"),
  5443. weight: math.unit(1000, "kg"),
  5444. name: "Front (Armored)",
  5445. image: {
  5446. source: "./media/characters/asche/front-armored.svg",
  5447. extra: 1374 / 1308,
  5448. bottom: 23 / 1397
  5449. }
  5450. },
  5451. mp724: {
  5452. height: math.unit(0.96, "meters"),
  5453. weight: math.unit(38, "kg"),
  5454. name: "H&K MP724",
  5455. image: {
  5456. source: "./media/characters/asche/h&k-mp724.svg"
  5457. }
  5458. },
  5459. side: {
  5460. height: math.unit(5, "meters"),
  5461. weight: math.unit(1000, "kg"),
  5462. name: "Side",
  5463. image: {
  5464. source: "./media/characters/asche/side.svg",
  5465. extra: 1717 / 1609,
  5466. bottom: 0.005
  5467. }
  5468. },
  5469. back: {
  5470. height: math.unit(5, "meters"),
  5471. weight: math.unit(1000, "kg"),
  5472. name: "Back",
  5473. image: {
  5474. source: "./media/characters/asche/back.svg",
  5475. extra: 1570 / 1501
  5476. }
  5477. },
  5478. },
  5479. [
  5480. {
  5481. name: "DEFCON 5",
  5482. height: math.unit(5, "meters")
  5483. },
  5484. {
  5485. name: "DEFCON 4",
  5486. height: math.unit(500, "meters"),
  5487. default: true
  5488. },
  5489. {
  5490. name: "DEFCON 3",
  5491. height: math.unit(5, "km")
  5492. },
  5493. {
  5494. name: "DEFCON 2",
  5495. height: math.unit(500, "km")
  5496. },
  5497. {
  5498. name: "DEFCON 1",
  5499. height: math.unit(500000, "km")
  5500. },
  5501. {
  5502. name: "DEFCON 0",
  5503. height: math.unit(3, "gigaparsecs")
  5504. },
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(7, "feet"),
  5512. weight: math.unit(92.7, "kg"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/gale/front.svg",
  5516. extra: 977/919,
  5517. bottom: 105/1082
  5518. }
  5519. },
  5520. side: {
  5521. height: math.unit(6.7, "feet"),
  5522. weight: math.unit(92.7, "kg"),
  5523. name: "Side",
  5524. image: {
  5525. source: "./media/characters/gale/side.svg",
  5526. extra: 978/922,
  5527. bottom: 140/1118
  5528. }
  5529. },
  5530. back: {
  5531. height: math.unit(7, "feet"),
  5532. weight: math.unit(92.7, "kg"),
  5533. name: "Back",
  5534. image: {
  5535. source: "./media/characters/gale/back.svg",
  5536. extra: 966/920,
  5537. bottom: 61/1027
  5538. }
  5539. },
  5540. maw: {
  5541. height: math.unit(2.23, "feet"),
  5542. name: "Maw",
  5543. image: {
  5544. source: "./media/characters/gale/maw.svg"
  5545. }
  5546. },
  5547. foot: {
  5548. height: math.unit(2.1, "feet"),
  5549. name: "Foot",
  5550. image: {
  5551. source: "./media/characters/gale/foot.svg"
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(7, "feet")
  5559. },
  5560. {
  5561. name: "Macro",
  5562. height: math.unit(150, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Macro+",
  5567. height: math.unit(300, "feet")
  5568. },
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(5 + 10/12, "feet"),
  5576. weight: math.unit(67, "kg"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/draylen/front.svg",
  5580. extra: 832/777,
  5581. bottom: 85/917
  5582. }
  5583. }
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(5 + 10/12, "feet")
  5589. },
  5590. {
  5591. name: "Macro",
  5592. height: math.unit(150, "feet"),
  5593. default: true
  5594. }
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(7 + 9 / 12, "feet"),
  5602. weight: math.unit(379, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/chez/front.svg"
  5606. }
  5607. },
  5608. side: {
  5609. height: math.unit(7 + 9 / 12, "feet"),
  5610. weight: math.unit(379, "lbs"),
  5611. name: "Side",
  5612. image: {
  5613. source: "./media/characters/chez/side.svg"
  5614. }
  5615. }
  5616. },
  5617. [
  5618. {
  5619. name: "Normal",
  5620. height: math.unit(7 + 9 / 12, "feet"),
  5621. default: true
  5622. },
  5623. {
  5624. name: "God King",
  5625. height: math.unit(9750000, "meters")
  5626. }
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5631. {
  5632. front: {
  5633. height: math.unit(6, "feet"),
  5634. weight: math.unit(275, "lbs"),
  5635. name: "Front",
  5636. image: {
  5637. source: "./media/characters/kaylum/front.svg",
  5638. bottom: 0.01,
  5639. extra: 1166 / 1031
  5640. }
  5641. },
  5642. frontWingless: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(275, "lbs"),
  5645. name: "Front (Wingless)",
  5646. image: {
  5647. source: "./media/characters/kaylum/front-wingless.svg",
  5648. bottom: 0.01,
  5649. extra: 1117 / 1031
  5650. }
  5651. }
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(3.05, "meters")
  5657. },
  5658. {
  5659. name: "Master",
  5660. height: math.unit(5.5, "meters")
  5661. },
  5662. {
  5663. name: "Rampage",
  5664. height: math.unit(19, "meters")
  5665. },
  5666. {
  5667. name: "Macro Lite",
  5668. height: math.unit(37, "meters")
  5669. },
  5670. {
  5671. name: "Hyper Predator",
  5672. height: math.unit(61, "meters")
  5673. },
  5674. {
  5675. name: "Macro",
  5676. height: math.unit(138, "meters"),
  5677. default: true
  5678. }
  5679. ]
  5680. ))
  5681. characterMakers.push(() => makeCharacter(
  5682. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5683. {
  5684. front: {
  5685. height: math.unit(5 + 5 / 12, "feet"),
  5686. weight: math.unit(120, "lbs"),
  5687. name: "Front",
  5688. image: {
  5689. source: "./media/characters/geta/front.svg",
  5690. extra: 1003/933,
  5691. bottom: 21/1024
  5692. }
  5693. },
  5694. paw: {
  5695. height: math.unit(0.35, "feet"),
  5696. name: "Paw",
  5697. image: {
  5698. source: "./media/characters/geta/paw.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Micro",
  5705. height: math.unit(3, "inches"),
  5706. default: true
  5707. },
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(5 + 5 / 12, "feet")
  5711. }
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5716. {
  5717. front: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(300, "lbs"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/tyrnn/front.svg"
  5723. }
  5724. }
  5725. },
  5726. [
  5727. {
  5728. name: "Main Height",
  5729. height: math.unit(355, "feet"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Fave. Height",
  5734. height: math.unit(2400, "feet")
  5735. }
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5740. {
  5741. front: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(300, "lbs"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/appledectomy/front.svg"
  5747. }
  5748. }
  5749. },
  5750. [
  5751. {
  5752. name: "Macro",
  5753. height: math.unit(2500, "feet")
  5754. },
  5755. {
  5756. name: "Megamacro",
  5757. height: math.unit(50, "miles"),
  5758. default: true
  5759. },
  5760. {
  5761. name: "Gigamacro",
  5762. height: math.unit(5000, "miles")
  5763. },
  5764. {
  5765. name: "Teramacro",
  5766. height: math.unit(250000, "miles")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(200, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/vulpes/front.svg",
  5779. extra: 573 / 543,
  5780. bottom: 0.033
  5781. }
  5782. },
  5783. side: {
  5784. height: math.unit(6, "feet"),
  5785. weight: math.unit(200, "lbs"),
  5786. name: "Side",
  5787. image: {
  5788. source: "./media/characters/vulpes/side.svg",
  5789. extra: 577 / 549,
  5790. bottom: 11 / 588
  5791. }
  5792. },
  5793. back: {
  5794. height: math.unit(6, "feet"),
  5795. weight: math.unit(200, "lbs"),
  5796. name: "Back",
  5797. image: {
  5798. source: "./media/characters/vulpes/back.svg",
  5799. extra: 573 / 549,
  5800. bottom: 20 / 593
  5801. }
  5802. },
  5803. feet: {
  5804. height: math.unit(1.276, "feet"),
  5805. name: "Feet",
  5806. image: {
  5807. source: "./media/characters/vulpes/feet.svg"
  5808. }
  5809. },
  5810. maw: {
  5811. height: math.unit(1.18, "feet"),
  5812. name: "Maw",
  5813. image: {
  5814. source: "./media/characters/vulpes/maw.svg"
  5815. }
  5816. },
  5817. },
  5818. [
  5819. {
  5820. name: "Micro",
  5821. height: math.unit(2, "inches")
  5822. },
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(6.3, "feet")
  5826. },
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(850, "feet")
  5830. },
  5831. {
  5832. name: "Megamacro",
  5833. height: math.unit(7500, "feet"),
  5834. default: true
  5835. },
  5836. {
  5837. name: "Gigamacro",
  5838. height: math.unit(570000, "miles")
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5844. {
  5845. front: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(210, "lbs"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/rain-fallen/front.svg"
  5851. }
  5852. },
  5853. side: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(210, "lbs"),
  5856. name: "Side",
  5857. image: {
  5858. source: "./media/characters/rain-fallen/side.svg"
  5859. }
  5860. },
  5861. back: {
  5862. height: math.unit(6, "feet"),
  5863. weight: math.unit(210, "lbs"),
  5864. name: "Back",
  5865. image: {
  5866. source: "./media/characters/rain-fallen/back.svg"
  5867. }
  5868. },
  5869. feral: {
  5870. height: math.unit(9, "feet"),
  5871. weight: math.unit(700, "lbs"),
  5872. name: "Feral",
  5873. image: {
  5874. source: "./media/characters/rain-fallen/feral.svg"
  5875. }
  5876. },
  5877. },
  5878. [
  5879. {
  5880. name: "Meddling with Mortals",
  5881. height: math.unit(8 + 8/12, "feet")
  5882. },
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(5, "meter")
  5886. },
  5887. {
  5888. name: "Macro",
  5889. height: math.unit(150, "meter"),
  5890. default: true
  5891. },
  5892. {
  5893. name: "Megamacro",
  5894. height: math.unit(278e6, "meter")
  5895. },
  5896. {
  5897. name: "Gigamacro",
  5898. height: math.unit(2e9, "meter")
  5899. },
  5900. {
  5901. name: "Teramacro",
  5902. height: math.unit(8e12, "meter")
  5903. },
  5904. {
  5905. name: "Devourer",
  5906. height: math.unit(14, "zettameters")
  5907. },
  5908. {
  5909. name: "Scarlet King",
  5910. height: math.unit(18, "yottameters")
  5911. },
  5912. {
  5913. name: "Void",
  5914. height: math.unit(1e88, "yottameters")
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5920. {
  5921. standing: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(180, "lbs"),
  5924. name: "Standing",
  5925. image: {
  5926. source: "./media/characters/zaakira/standing.svg",
  5927. extra: 1599/1504,
  5928. bottom: 39/1638
  5929. }
  5930. },
  5931. laying: {
  5932. height: math.unit(3.3, "feet"),
  5933. weight: math.unit(180, "lbs"),
  5934. name: "Laying",
  5935. image: {
  5936. source: "./media/characters/zaakira/laying.svg"
  5937. }
  5938. },
  5939. },
  5940. [
  5941. {
  5942. name: "Normal",
  5943. height: math.unit(12, "feet")
  5944. },
  5945. {
  5946. name: "Macro",
  5947. height: math.unit(279, "feet"),
  5948. default: true
  5949. }
  5950. ]
  5951. ))
  5952. characterMakers.push(() => makeCharacter(
  5953. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5954. {
  5955. femSfw: {
  5956. height: math.unit(8, "feet"),
  5957. weight: math.unit(350, "lb"),
  5958. name: "Fem",
  5959. image: {
  5960. source: "./media/characters/sigvald/fem-sfw.svg",
  5961. extra: 182 / 164,
  5962. bottom: 8.7 / 190.5
  5963. }
  5964. },
  5965. femNsfw: {
  5966. height: math.unit(8, "feet"),
  5967. weight: math.unit(350, "lb"),
  5968. name: "Fem (NSFW)",
  5969. image: {
  5970. source: "./media/characters/sigvald/fem-nsfw.svg",
  5971. extra: 182 / 164,
  5972. bottom: 8.7 / 190.5
  5973. }
  5974. },
  5975. maleNsfw: {
  5976. height: math.unit(8, "feet"),
  5977. weight: math.unit(350, "lb"),
  5978. name: "Male (NSFW)",
  5979. image: {
  5980. source: "./media/characters/sigvald/male-nsfw.svg",
  5981. extra: 182 / 164,
  5982. bottom: 8.7 / 190.5
  5983. }
  5984. },
  5985. hermNsfw: {
  5986. height: math.unit(8, "feet"),
  5987. weight: math.unit(350, "lb"),
  5988. name: "Herm (NSFW)",
  5989. image: {
  5990. source: "./media/characters/sigvald/herm-nsfw.svg",
  5991. extra: 182 / 164,
  5992. bottom: 8.7 / 190.5
  5993. }
  5994. },
  5995. dick: {
  5996. height: math.unit(2.36, "feet"),
  5997. name: "Dick",
  5998. image: {
  5999. source: "./media/characters/sigvald/dick.svg"
  6000. }
  6001. },
  6002. eye: {
  6003. height: math.unit(0.31, "feet"),
  6004. name: "Eye",
  6005. image: {
  6006. source: "./media/characters/sigvald/eye.svg"
  6007. }
  6008. },
  6009. mouth: {
  6010. height: math.unit(0.92, "feet"),
  6011. name: "Mouth",
  6012. image: {
  6013. source: "./media/characters/sigvald/mouth.svg"
  6014. }
  6015. },
  6016. paws: {
  6017. height: math.unit(2.2, "feet"),
  6018. name: "Paws",
  6019. image: {
  6020. source: "./media/characters/sigvald/paws.svg"
  6021. }
  6022. }
  6023. },
  6024. [
  6025. {
  6026. name: "Normal",
  6027. height: math.unit(8, "feet")
  6028. },
  6029. {
  6030. name: "Large",
  6031. height: math.unit(12, "feet")
  6032. },
  6033. {
  6034. name: "Larger",
  6035. height: math.unit(20, "feet")
  6036. },
  6037. {
  6038. name: "Macro",
  6039. height: math.unit(150, "feet")
  6040. },
  6041. {
  6042. name: "Macro+",
  6043. height: math.unit(200, "feet"),
  6044. default: true
  6045. },
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6050. {
  6051. side: {
  6052. height: math.unit(12, "feet"),
  6053. weight: math.unit(2000, "kg"),
  6054. name: "Side",
  6055. image: {
  6056. source: "./media/characters/scott/side.svg",
  6057. extra: 754 / 724,
  6058. bottom: 0.069
  6059. }
  6060. },
  6061. upright: {
  6062. height: math.unit(12, "feet"),
  6063. weight: math.unit(2000, "kg"),
  6064. name: "Upright",
  6065. image: {
  6066. source: "./media/characters/scott/upright.svg",
  6067. extra: 3881 / 3722,
  6068. bottom: 0.05
  6069. }
  6070. },
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(12, "feet"),
  6076. default: true
  6077. },
  6078. ]
  6079. ))
  6080. characterMakers.push(() => makeCharacter(
  6081. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6082. {
  6083. side: {
  6084. height: math.unit(8, "meters"),
  6085. weight: math.unit(84755, "lbs"),
  6086. name: "Side",
  6087. image: {
  6088. source: "./media/characters/tobias/side.svg",
  6089. extra: 1474 / 1096,
  6090. bottom: 38.9 / 1513.1235
  6091. }
  6092. },
  6093. maw: {
  6094. height: math.unit(2.3, "meters"),
  6095. name: "Maw",
  6096. image: {
  6097. source: "./media/characters/tobias/maw.svg"
  6098. }
  6099. },
  6100. burp: {
  6101. height: math.unit(2.85, "meters"),
  6102. name: "Burp",
  6103. image: {
  6104. source: "./media/characters/tobias/burp.svg"
  6105. }
  6106. },
  6107. },
  6108. [
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(8, "meters"),
  6112. default: true
  6113. },
  6114. ]
  6115. ))
  6116. characterMakers.push(() => makeCharacter(
  6117. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6118. {
  6119. front: {
  6120. height: math.unit(5.5, "feet"),
  6121. weight: math.unit(400, "lbs"),
  6122. name: "Front",
  6123. image: {
  6124. source: "./media/characters/kieran/front.svg",
  6125. extra: 2694 / 2364,
  6126. bottom: 217 / 2908
  6127. }
  6128. },
  6129. side: {
  6130. height: math.unit(5.5, "feet"),
  6131. weight: math.unit(400, "lbs"),
  6132. name: "Side",
  6133. image: {
  6134. source: "./media/characters/kieran/side.svg",
  6135. extra: 875 / 777,
  6136. bottom: 84.6 / 959
  6137. }
  6138. },
  6139. },
  6140. [
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(5.5, "feet"),
  6144. default: true
  6145. },
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6150. {
  6151. side: {
  6152. height: math.unit(2, "meters"),
  6153. weight: math.unit(70, "kg"),
  6154. name: "Side",
  6155. image: {
  6156. source: "./media/characters/sanya/side.svg",
  6157. bottom: 0.02,
  6158. extra: 1.02
  6159. }
  6160. },
  6161. },
  6162. [
  6163. {
  6164. name: "Small",
  6165. height: math.unit(2, "meters")
  6166. },
  6167. {
  6168. name: "Normal",
  6169. height: math.unit(3, "meters")
  6170. },
  6171. {
  6172. name: "Macro",
  6173. height: math.unit(16, "meters"),
  6174. default: true
  6175. },
  6176. ]
  6177. ))
  6178. characterMakers.push(() => makeCharacter(
  6179. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6180. {
  6181. front: {
  6182. height: math.unit(2, "meters"),
  6183. weight: math.unit(120, "kg"),
  6184. name: "Front",
  6185. image: {
  6186. source: "./media/characters/miranda/front.svg",
  6187. extra: 195 / 185,
  6188. bottom: 10.9 / 206.5
  6189. }
  6190. },
  6191. back: {
  6192. height: math.unit(2, "meters"),
  6193. weight: math.unit(120, "kg"),
  6194. name: "Back",
  6195. image: {
  6196. source: "./media/characters/miranda/back.svg",
  6197. extra: 201 / 193,
  6198. bottom: 2.3 / 203.7
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(10, "feet"),
  6206. default: true
  6207. }
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "James", species: ["deer"], tags: ["anthro"] },
  6212. {
  6213. side: {
  6214. height: math.unit(2, "meters"),
  6215. weight: math.unit(100, "kg"),
  6216. name: "Front",
  6217. image: {
  6218. source: "./media/characters/james/front.svg",
  6219. extra: 10 / 8.5
  6220. }
  6221. },
  6222. },
  6223. [
  6224. {
  6225. name: "Normal",
  6226. height: math.unit(8.5, "feet"),
  6227. default: true
  6228. }
  6229. ]
  6230. ))
  6231. characterMakers.push(() => makeCharacter(
  6232. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6233. {
  6234. side: {
  6235. height: math.unit(9.5, "feet"),
  6236. weight: math.unit(2500, "lbs"),
  6237. name: "Side",
  6238. image: {
  6239. source: "./media/characters/heather/side.svg"
  6240. }
  6241. },
  6242. },
  6243. [
  6244. {
  6245. name: "Normal",
  6246. height: math.unit(9.5, "feet"),
  6247. default: true
  6248. }
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6253. {
  6254. side: {
  6255. height: math.unit(6.5, "feet"),
  6256. weight: math.unit(400, "lbs"),
  6257. name: "Side",
  6258. image: {
  6259. source: "./media/characters/lukas/side.svg",
  6260. extra: 7.25 / 6.5
  6261. }
  6262. },
  6263. },
  6264. [
  6265. {
  6266. name: "Normal",
  6267. height: math.unit(6.5, "feet"),
  6268. default: true
  6269. }
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6274. {
  6275. side: {
  6276. height: math.unit(5, "feet"),
  6277. weight: math.unit(3000, "lbs"),
  6278. name: "Side",
  6279. image: {
  6280. source: "./media/characters/louise/side.svg"
  6281. }
  6282. },
  6283. },
  6284. [
  6285. {
  6286. name: "Normal",
  6287. height: math.unit(5, "feet"),
  6288. default: true
  6289. }
  6290. ]
  6291. ))
  6292. characterMakers.push(() => makeCharacter(
  6293. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6294. {
  6295. side: {
  6296. height: math.unit(6, "feet"),
  6297. weight: math.unit(150, "lbs"),
  6298. name: "Side",
  6299. image: {
  6300. source: "./media/characters/ramona/side.svg",
  6301. extra: 871/854,
  6302. bottom: 41/912
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(6 + 4/12, "feet")
  6310. },
  6311. {
  6312. name: "Minimacro",
  6313. height: math.unit(5.3, "meters"),
  6314. default: true
  6315. },
  6316. {
  6317. name: "Macro",
  6318. height: math.unit(20, "stories")
  6319. },
  6320. {
  6321. name: "Macro+",
  6322. height: math.unit(50, "stories")
  6323. },
  6324. ]
  6325. ))
  6326. characterMakers.push(() => makeCharacter(
  6327. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6328. {
  6329. standing: {
  6330. height: math.unit(5.75, "feet"),
  6331. weight: math.unit(160, "lbs"),
  6332. name: "Standing",
  6333. image: {
  6334. source: "./media/characters/deerpuff/standing.svg",
  6335. extra: 682 / 624
  6336. }
  6337. },
  6338. sitting: {
  6339. height: math.unit(5.75 / 1.79, "feet"),
  6340. weight: math.unit(160, "lbs"),
  6341. name: "Sitting",
  6342. image: {
  6343. source: "./media/characters/deerpuff/sitting.svg",
  6344. bottom: 44 / 400,
  6345. extra: 1
  6346. }
  6347. },
  6348. taurLaying: {
  6349. height: math.unit(6, "feet"),
  6350. weight: math.unit(400, "lbs"),
  6351. name: "Taur (Laying)",
  6352. image: {
  6353. source: "./media/characters/deerpuff/taur-laying.svg"
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Puffball",
  6360. height: math.unit(6, "inches")
  6361. },
  6362. {
  6363. name: "Normalpuff",
  6364. height: math.unit(5.75, "feet")
  6365. },
  6366. {
  6367. name: "Macropuff",
  6368. height: math.unit(1500, "feet"),
  6369. default: true
  6370. },
  6371. {
  6372. name: "Megapuff",
  6373. height: math.unit(500, "miles")
  6374. },
  6375. {
  6376. name: "Gigapuff",
  6377. height: math.unit(250000, "miles")
  6378. },
  6379. {
  6380. name: "Omegapuff",
  6381. height: math.unit(1000, "lightyears")
  6382. },
  6383. ]
  6384. ))
  6385. characterMakers.push(() => makeCharacter(
  6386. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6387. {
  6388. stomping: {
  6389. height: math.unit(6, "feet"),
  6390. weight: math.unit(170, "lbs"),
  6391. name: "Stomping",
  6392. image: {
  6393. source: "./media/characters/vivian/stomping.svg"
  6394. }
  6395. },
  6396. sitting: {
  6397. height: math.unit(6 / 1.75, "feet"),
  6398. weight: math.unit(170, "lbs"),
  6399. name: "Sitting",
  6400. image: {
  6401. source: "./media/characters/vivian/sitting.svg",
  6402. bottom: 1 / 6.4,
  6403. extra: 1,
  6404. }
  6405. },
  6406. },
  6407. [
  6408. {
  6409. name: "Normal",
  6410. height: math.unit(7, "feet"),
  6411. default: true
  6412. },
  6413. {
  6414. name: "Macro",
  6415. height: math.unit(10, "stories")
  6416. },
  6417. {
  6418. name: "Macro+",
  6419. height: math.unit(30, "stories")
  6420. },
  6421. {
  6422. name: "Megamacro",
  6423. height: math.unit(10, "miles")
  6424. },
  6425. {
  6426. name: "Megamacro+",
  6427. height: math.unit(2750000, "meters")
  6428. },
  6429. ]
  6430. ))
  6431. characterMakers.push(() => makeCharacter(
  6432. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6433. {
  6434. front: {
  6435. height: math.unit(6, "feet"),
  6436. weight: math.unit(160, "lbs"),
  6437. name: "Front",
  6438. image: {
  6439. source: "./media/characters/prince/front.svg",
  6440. extra: 1938/1682,
  6441. bottom: 45/1983
  6442. }
  6443. },
  6444. back: {
  6445. height: math.unit(6, "feet"),
  6446. weight: math.unit(160, "lbs"),
  6447. name: "Back",
  6448. image: {
  6449. source: "./media/characters/prince/back.svg",
  6450. extra: 1955/1726,
  6451. bottom: 6/1961
  6452. }
  6453. },
  6454. },
  6455. [
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(7.75, "feet"),
  6459. default: true
  6460. },
  6461. {
  6462. name: "Not cute",
  6463. height: math.unit(17, "feet")
  6464. },
  6465. {
  6466. name: "I said NOT",
  6467. height: math.unit(91, "feet")
  6468. },
  6469. {
  6470. name: "Please stop",
  6471. height: math.unit(560, "feet")
  6472. },
  6473. {
  6474. name: "What have you done",
  6475. height: math.unit(2200, "feet")
  6476. },
  6477. {
  6478. name: "Deer God",
  6479. height: math.unit(3.6, "miles")
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6485. {
  6486. standing: {
  6487. height: math.unit(6, "feet"),
  6488. weight: math.unit(300, "lbs"),
  6489. name: "Standing",
  6490. image: {
  6491. source: "./media/characters/psymon/standing.svg",
  6492. extra: 1888 / 1810,
  6493. bottom: 0.05
  6494. }
  6495. },
  6496. slithering: {
  6497. height: math.unit(6, "feet"),
  6498. weight: math.unit(300, "lbs"),
  6499. name: "Slithering",
  6500. image: {
  6501. source: "./media/characters/psymon/slithering.svg",
  6502. extra: 1330 / 1224
  6503. }
  6504. },
  6505. slitheringAlt: {
  6506. height: math.unit(6, "feet"),
  6507. weight: math.unit(300, "lbs"),
  6508. name: "Slithering (Alt)",
  6509. image: {
  6510. source: "./media/characters/psymon/slithering-alt.svg",
  6511. extra: 1330 / 1224
  6512. }
  6513. },
  6514. },
  6515. [
  6516. {
  6517. name: "Normal",
  6518. height: math.unit(11.25, "feet"),
  6519. default: true
  6520. },
  6521. {
  6522. name: "Large",
  6523. height: math.unit(27, "feet")
  6524. },
  6525. {
  6526. name: "Giant",
  6527. height: math.unit(87, "feet")
  6528. },
  6529. {
  6530. name: "Macro",
  6531. height: math.unit(365, "feet")
  6532. },
  6533. {
  6534. name: "Megamacro",
  6535. height: math.unit(3, "miles")
  6536. },
  6537. {
  6538. name: "World Serpent",
  6539. height: math.unit(8000, "miles")
  6540. },
  6541. ]
  6542. ))
  6543. characterMakers.push(() => makeCharacter(
  6544. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6545. {
  6546. front: {
  6547. height: math.unit(6, "feet"),
  6548. weight: math.unit(180, "lbs"),
  6549. name: "Front",
  6550. image: {
  6551. source: "./media/characters/daimos/front.svg",
  6552. extra: 4160 / 3897,
  6553. bottom: 0.021
  6554. }
  6555. }
  6556. },
  6557. [
  6558. {
  6559. name: "Normal",
  6560. height: math.unit(8, "feet"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Big Dog",
  6565. height: math.unit(22, "feet")
  6566. },
  6567. {
  6568. name: "Macro",
  6569. height: math.unit(127, "feet")
  6570. },
  6571. {
  6572. name: "Megamacro",
  6573. height: math.unit(3600, "feet")
  6574. },
  6575. ]
  6576. ))
  6577. characterMakers.push(() => makeCharacter(
  6578. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6579. {
  6580. side: {
  6581. height: math.unit(6, "feet"),
  6582. weight: math.unit(180, "lbs"),
  6583. name: "Side",
  6584. image: {
  6585. source: "./media/characters/blake/side.svg",
  6586. extra: 1212 / 1120,
  6587. bottom: 0.05
  6588. }
  6589. },
  6590. crouched: {
  6591. height: math.unit(6 * 0.57, "feet"),
  6592. weight: math.unit(180, "lbs"),
  6593. name: "Crouched",
  6594. image: {
  6595. source: "./media/characters/blake/crouched.svg",
  6596. extra: 840 / 587,
  6597. bottom: 0.04
  6598. }
  6599. },
  6600. bent: {
  6601. height: math.unit(6 * 0.75, "feet"),
  6602. weight: math.unit(180, "lbs"),
  6603. name: "Bent",
  6604. image: {
  6605. source: "./media/characters/blake/bent.svg",
  6606. extra: 592 / 544,
  6607. bottom: 0.035
  6608. }
  6609. },
  6610. },
  6611. [
  6612. {
  6613. name: "Normal",
  6614. height: math.unit(8 + 1 / 6, "feet"),
  6615. default: true
  6616. },
  6617. {
  6618. name: "Big Backside",
  6619. height: math.unit(37, "feet")
  6620. },
  6621. {
  6622. name: "Subway Shredder",
  6623. height: math.unit(72, "feet")
  6624. },
  6625. {
  6626. name: "City Carver",
  6627. height: math.unit(1675, "feet")
  6628. },
  6629. {
  6630. name: "Tectonic Tweaker",
  6631. height: math.unit(2300, "miles")
  6632. },
  6633. ]
  6634. ))
  6635. characterMakers.push(() => makeCharacter(
  6636. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6637. {
  6638. front: {
  6639. height: math.unit(6, "feet"),
  6640. weight: math.unit(180, "lbs"),
  6641. name: "Front",
  6642. image: {
  6643. source: "./media/characters/guisetto/front.svg",
  6644. extra: 856 / 817,
  6645. bottom: 0.06
  6646. }
  6647. },
  6648. airborne: {
  6649. height: math.unit(6, "feet"),
  6650. weight: math.unit(180, "lbs"),
  6651. name: "Airborne",
  6652. image: {
  6653. source: "./media/characters/guisetto/airborne.svg",
  6654. extra: 584 / 525
  6655. }
  6656. },
  6657. },
  6658. [
  6659. {
  6660. name: "Normal",
  6661. height: math.unit(10 + 11 / 12, "feet"),
  6662. default: true
  6663. },
  6664. {
  6665. name: "Large",
  6666. height: math.unit(35, "feet")
  6667. },
  6668. {
  6669. name: "Macro",
  6670. height: math.unit(475, "feet")
  6671. },
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6676. {
  6677. front: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(180, "lbs"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/luxor/front.svg",
  6683. extra: 2940 / 2152
  6684. }
  6685. },
  6686. back: {
  6687. height: math.unit(6, "feet"),
  6688. weight: math.unit(180, "lbs"),
  6689. name: "Back",
  6690. image: {
  6691. source: "./media/characters/luxor/back.svg",
  6692. extra: 1083 / 960
  6693. }
  6694. },
  6695. },
  6696. [
  6697. {
  6698. name: "Normal",
  6699. height: math.unit(5 + 5 / 6, "feet"),
  6700. default: true
  6701. },
  6702. {
  6703. name: "Lamp",
  6704. height: math.unit(50, "feet")
  6705. },
  6706. {
  6707. name: "Lämp",
  6708. height: math.unit(300, "feet")
  6709. },
  6710. {
  6711. name: "The sun is a lamp",
  6712. height: math.unit(250000, "miles")
  6713. },
  6714. ]
  6715. ))
  6716. characterMakers.push(() => makeCharacter(
  6717. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6718. {
  6719. front: {
  6720. height: math.unit(6, "feet"),
  6721. weight: math.unit(50, "lbs"),
  6722. name: "Front",
  6723. image: {
  6724. source: "./media/characters/huoyan/front.svg"
  6725. }
  6726. },
  6727. side: {
  6728. height: math.unit(6, "feet"),
  6729. weight: math.unit(180, "lbs"),
  6730. name: "Side",
  6731. image: {
  6732. source: "./media/characters/huoyan/side.svg"
  6733. }
  6734. },
  6735. },
  6736. [
  6737. {
  6738. name: "Chef",
  6739. height: math.unit(9, "feet")
  6740. },
  6741. {
  6742. name: "Normal",
  6743. height: math.unit(65, "feet"),
  6744. default: true
  6745. },
  6746. {
  6747. name: "Macro",
  6748. height: math.unit(780, "feet")
  6749. },
  6750. {
  6751. name: "Flaming Mountain",
  6752. height: math.unit(4.8, "miles")
  6753. },
  6754. {
  6755. name: "Celestial",
  6756. height: math.unit(765000, "miles")
  6757. },
  6758. ]
  6759. ))
  6760. characterMakers.push(() => makeCharacter(
  6761. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6762. {
  6763. front: {
  6764. height: math.unit(5 + 3 / 4, "feet"),
  6765. weight: math.unit(120, "lbs"),
  6766. name: "Front",
  6767. image: {
  6768. source: "./media/characters/tails/front.svg"
  6769. }
  6770. }
  6771. },
  6772. [
  6773. {
  6774. name: "Normal",
  6775. height: math.unit(5 + 3 / 4, "feet"),
  6776. default: true
  6777. }
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(4, "feet"),
  6785. weight: math.unit(50, "lbs"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/rainy/front.svg"
  6789. }
  6790. }
  6791. },
  6792. [
  6793. {
  6794. name: "Macro",
  6795. height: math.unit(800, "feet"),
  6796. default: true
  6797. }
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(150, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/rainier/front.svg"
  6809. }
  6810. }
  6811. },
  6812. [
  6813. {
  6814. name: "Micro",
  6815. height: math.unit(2, "mm"),
  6816. default: true
  6817. }
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(8 + 4/12, "feet"),
  6825. weight: math.unit(450, "kilograms"),
  6826. volume: math.unit(5, "cups"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/andy-renard/front.svg",
  6830. extra: 1839/1726,
  6831. bottom: 134/1973
  6832. }
  6833. },
  6834. back: {
  6835. height: math.unit(8 + 4/12, "feet"),
  6836. weight: math.unit(450, "kilograms"),
  6837. volume: math.unit(5, "cups"),
  6838. name: "Back",
  6839. image: {
  6840. source: "./media/characters/andy-renard/back.svg",
  6841. extra: 1838/1710,
  6842. bottom: 105/1943
  6843. }
  6844. },
  6845. },
  6846. [
  6847. {
  6848. name: "Tall",
  6849. height: math.unit(8 + 4/12, "feet")
  6850. },
  6851. {
  6852. name: "Mini Macro",
  6853. height: math.unit(15, "feet"),
  6854. default: true
  6855. },
  6856. {
  6857. name: "Macro",
  6858. height: math.unit(100, "feet")
  6859. },
  6860. {
  6861. name: "Mega Macro",
  6862. height: math.unit(1000, "feet")
  6863. },
  6864. {
  6865. name: "Giga Macro",
  6866. height: math.unit(10, "miles")
  6867. },
  6868. {
  6869. name: "God Macro",
  6870. height: math.unit(1, "multiverse")
  6871. },
  6872. ]
  6873. ))
  6874. characterMakers.push(() => makeCharacter(
  6875. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6876. {
  6877. front: {
  6878. height: math.unit(6, "feet"),
  6879. weight: math.unit(210, "lbs"),
  6880. name: "Front",
  6881. image: {
  6882. source: "./media/characters/cimmaron/front-sfw.svg",
  6883. extra: 701 / 676,
  6884. bottom: 0.046
  6885. }
  6886. },
  6887. back: {
  6888. height: math.unit(6, "feet"),
  6889. weight: math.unit(210, "lbs"),
  6890. name: "Back",
  6891. image: {
  6892. source: "./media/characters/cimmaron/back-sfw.svg",
  6893. extra: 701 / 676,
  6894. bottom: 0.046
  6895. }
  6896. },
  6897. frontNsfw: {
  6898. height: math.unit(6, "feet"),
  6899. weight: math.unit(210, "lbs"),
  6900. name: "Front (NSFW)",
  6901. image: {
  6902. source: "./media/characters/cimmaron/front-nsfw.svg",
  6903. extra: 701 / 676,
  6904. bottom: 0.046
  6905. }
  6906. },
  6907. backNsfw: {
  6908. height: math.unit(6, "feet"),
  6909. weight: math.unit(210, "lbs"),
  6910. name: "Back (NSFW)",
  6911. image: {
  6912. source: "./media/characters/cimmaron/back-nsfw.svg",
  6913. extra: 701 / 676,
  6914. bottom: 0.046
  6915. }
  6916. },
  6917. dick: {
  6918. height: math.unit(1.714, "feet"),
  6919. name: "Dick",
  6920. image: {
  6921. source: "./media/characters/cimmaron/dick.svg"
  6922. }
  6923. },
  6924. },
  6925. [
  6926. {
  6927. name: "Normal",
  6928. height: math.unit(6, "feet"),
  6929. default: true
  6930. },
  6931. {
  6932. name: "Macro Mayor",
  6933. height: math.unit(350, "meters")
  6934. },
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6939. {
  6940. front: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(200, "lbs"),
  6943. name: "Front",
  6944. image: {
  6945. source: "./media/characters/akari/front.svg",
  6946. extra: 962 / 901,
  6947. bottom: 0.04
  6948. }
  6949. }
  6950. },
  6951. [
  6952. {
  6953. name: "Micro",
  6954. height: math.unit(5, "inches"),
  6955. default: true
  6956. },
  6957. {
  6958. name: "Normal",
  6959. height: math.unit(7, "feet")
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(140, "lbs"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/cynosura/front.svg",
  6972. extra: 437/410,
  6973. bottom: 9/446
  6974. }
  6975. },
  6976. back: {
  6977. height: math.unit(6, "feet"),
  6978. weight: math.unit(140, "lbs"),
  6979. name: "Back",
  6980. image: {
  6981. source: "./media/characters/cynosura/back.svg",
  6982. extra: 1304/1160,
  6983. bottom: 71/1375
  6984. }
  6985. },
  6986. },
  6987. [
  6988. {
  6989. name: "Micro",
  6990. height: math.unit(4, "inches")
  6991. },
  6992. {
  6993. name: "Normal",
  6994. height: math.unit(5.75, "feet"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Tall",
  6999. height: math.unit(10, "feet")
  7000. },
  7001. {
  7002. name: "Big",
  7003. height: math.unit(20, "feet")
  7004. },
  7005. {
  7006. name: "Macro",
  7007. height: math.unit(50, "feet")
  7008. },
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7013. {
  7014. front: {
  7015. height: math.unit(13 + 2/12, "feet"),
  7016. weight: math.unit(800, "kg"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/gin/front.svg",
  7020. extra: 1312/1191,
  7021. bottom: 45/1357
  7022. }
  7023. },
  7024. mouth: {
  7025. height: math.unit(2.39 * 1.8, "feet"),
  7026. name: "Mouth",
  7027. image: {
  7028. source: "./media/characters/gin/mouth.svg"
  7029. }
  7030. },
  7031. hand: {
  7032. height: math.unit(1.57 * 2.19, "feet"),
  7033. name: "Hand",
  7034. image: {
  7035. source: "./media/characters/gin/hand.svg"
  7036. }
  7037. },
  7038. foot: {
  7039. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7040. name: "Foot",
  7041. image: {
  7042. source: "./media/characters/gin/foot.svg"
  7043. }
  7044. },
  7045. sole: {
  7046. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7047. name: "Sole",
  7048. image: {
  7049. source: "./media/characters/gin/sole.svg"
  7050. }
  7051. },
  7052. },
  7053. [
  7054. {
  7055. name: "Very Small",
  7056. height: math.unit(13 + 2 / 12, "feet")
  7057. },
  7058. {
  7059. name: "Micro",
  7060. height: math.unit(600, "miles")
  7061. },
  7062. {
  7063. name: "Regular",
  7064. height: math.unit(20, "earths"),
  7065. default: true
  7066. },
  7067. {
  7068. name: "Macro",
  7069. height: math.unit(2.2, "solarradii")
  7070. },
  7071. {
  7072. name: "Teramacro",
  7073. height: math.unit(1.2, "galaxies")
  7074. },
  7075. {
  7076. name: "Omegamacro",
  7077. height: math.unit(200, "universes")
  7078. },
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7083. {
  7084. front: {
  7085. height: math.unit(6 + 1 / 6, "feet"),
  7086. weight: math.unit(178, "lbs"),
  7087. name: "Front",
  7088. image: {
  7089. source: "./media/characters/guy/front.svg"
  7090. }
  7091. }
  7092. },
  7093. [
  7094. {
  7095. name: "Normal",
  7096. height: math.unit(6 + 1 / 6, "feet"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Large",
  7101. height: math.unit(25 + 7 / 12, "feet")
  7102. },
  7103. {
  7104. name: "Macro",
  7105. height: math.unit(60 + 9 / 12, "feet")
  7106. },
  7107. {
  7108. name: "Macro+",
  7109. height: math.unit(246, "feet")
  7110. },
  7111. {
  7112. name: "Macro++",
  7113. height: math.unit(878, "feet")
  7114. }
  7115. ]
  7116. ))
  7117. characterMakers.push(() => makeCharacter(
  7118. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7119. {
  7120. front: {
  7121. height: math.unit(9, "feet"),
  7122. weight: math.unit(800, "lbs"),
  7123. name: "Front",
  7124. image: {
  7125. source: "./media/characters/tiberius/front.svg",
  7126. extra: 2295 / 2071
  7127. }
  7128. },
  7129. back: {
  7130. height: math.unit(9, "feet"),
  7131. weight: math.unit(800, "lbs"),
  7132. name: "Back",
  7133. image: {
  7134. source: "./media/characters/tiberius/back.svg",
  7135. extra: 2373 / 2160
  7136. }
  7137. },
  7138. },
  7139. [
  7140. {
  7141. name: "Normal",
  7142. height: math.unit(9, "feet"),
  7143. default: true
  7144. }
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7149. {
  7150. front: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(600, "lbs"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/surgo/front.svg",
  7156. extra: 3591 / 2227
  7157. }
  7158. },
  7159. back: {
  7160. height: math.unit(6, "feet"),
  7161. weight: math.unit(600, "lbs"),
  7162. name: "Back",
  7163. image: {
  7164. source: "./media/characters/surgo/back.svg",
  7165. extra: 3557 / 2228
  7166. }
  7167. },
  7168. laying: {
  7169. height: math.unit(6 * 0.85, "feet"),
  7170. weight: math.unit(600, "lbs"),
  7171. name: "Laying",
  7172. image: {
  7173. source: "./media/characters/surgo/laying.svg"
  7174. }
  7175. },
  7176. },
  7177. [
  7178. {
  7179. name: "Normal",
  7180. height: math.unit(6, "feet"),
  7181. default: true
  7182. }
  7183. ]
  7184. ))
  7185. characterMakers.push(() => makeCharacter(
  7186. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7187. {
  7188. side: {
  7189. height: math.unit(6, "feet"),
  7190. weight: math.unit(150, "lbs"),
  7191. name: "Side",
  7192. image: {
  7193. source: "./media/characters/cibus/side.svg",
  7194. extra: 800 / 400
  7195. }
  7196. },
  7197. },
  7198. [
  7199. {
  7200. name: "Normal",
  7201. height: math.unit(6, "feet"),
  7202. default: true
  7203. }
  7204. ]
  7205. ))
  7206. characterMakers.push(() => makeCharacter(
  7207. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7208. {
  7209. front: {
  7210. height: math.unit(6, "feet"),
  7211. weight: math.unit(240, "lbs"),
  7212. name: "Front",
  7213. image: {
  7214. source: "./media/characters/nibbles/front.svg"
  7215. }
  7216. },
  7217. side: {
  7218. height: math.unit(6, "feet"),
  7219. weight: math.unit(240, "lbs"),
  7220. name: "Side",
  7221. image: {
  7222. source: "./media/characters/nibbles/side.svg"
  7223. }
  7224. },
  7225. },
  7226. [
  7227. {
  7228. name: "Normal",
  7229. height: math.unit(9, "feet"),
  7230. default: true
  7231. }
  7232. ]
  7233. ))
  7234. characterMakers.push(() => makeCharacter(
  7235. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7236. {
  7237. side: {
  7238. height: math.unit(5 + 1 / 6, "feet"),
  7239. weight: math.unit(130, "lbs"),
  7240. name: "Side",
  7241. image: {
  7242. source: "./media/characters/rikky/side.svg",
  7243. extra: 851 / 801
  7244. }
  7245. },
  7246. },
  7247. [
  7248. {
  7249. name: "Normal",
  7250. height: math.unit(5 + 1 / 6, "feet")
  7251. },
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(152, "feet"),
  7255. default: true
  7256. },
  7257. {
  7258. name: "Megamacro",
  7259. height: math.unit(7, "miles")
  7260. }
  7261. ]
  7262. ))
  7263. characterMakers.push(() => makeCharacter(
  7264. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7265. {
  7266. side: {
  7267. height: math.unit(370, "cm"),
  7268. weight: math.unit(350, "lbs"),
  7269. name: "Side",
  7270. image: {
  7271. source: "./media/characters/malfressa/side.svg"
  7272. }
  7273. },
  7274. walking: {
  7275. height: math.unit(370, "cm"),
  7276. weight: math.unit(350, "lbs"),
  7277. name: "Walking",
  7278. image: {
  7279. source: "./media/characters/malfressa/walking.svg"
  7280. }
  7281. },
  7282. feral: {
  7283. height: math.unit(2500, "cm"),
  7284. weight: math.unit(100000, "lbs"),
  7285. name: "Feral",
  7286. image: {
  7287. source: "./media/characters/malfressa/feral.svg",
  7288. extra: 2108 / 837,
  7289. bottom: 0.02
  7290. }
  7291. },
  7292. },
  7293. [
  7294. {
  7295. name: "Normal",
  7296. height: math.unit(370, "cm")
  7297. },
  7298. {
  7299. name: "Macro",
  7300. height: math.unit(300, "meters"),
  7301. default: true
  7302. }
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7307. {
  7308. front: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(60, "kg"),
  7311. name: "Front",
  7312. image: {
  7313. source: "./media/characters/jaro/front.svg",
  7314. extra: 845/817,
  7315. bottom: 45/890
  7316. }
  7317. },
  7318. back: {
  7319. height: math.unit(6, "feet"),
  7320. weight: math.unit(60, "kg"),
  7321. name: "Back",
  7322. image: {
  7323. source: "./media/characters/jaro/back.svg",
  7324. extra: 847/817,
  7325. bottom: 34/881
  7326. }
  7327. },
  7328. },
  7329. [
  7330. {
  7331. name: "Micro",
  7332. height: math.unit(7, "inches")
  7333. },
  7334. {
  7335. name: "Normal",
  7336. height: math.unit(5.5, "feet"),
  7337. default: true
  7338. },
  7339. {
  7340. name: "Minimacro",
  7341. height: math.unit(20, "feet")
  7342. },
  7343. {
  7344. name: "Macro",
  7345. height: math.unit(200, "meters")
  7346. }
  7347. ]
  7348. ))
  7349. characterMakers.push(() => makeCharacter(
  7350. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7351. {
  7352. front: {
  7353. height: math.unit(6, "feet"),
  7354. weight: math.unit(195, "lb"),
  7355. name: "Front",
  7356. image: {
  7357. source: "./media/characters/rogue/front.svg"
  7358. }
  7359. },
  7360. },
  7361. [
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(90, "feet"),
  7365. default: true
  7366. },
  7367. ]
  7368. ))
  7369. characterMakers.push(() => makeCharacter(
  7370. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7371. {
  7372. standing: {
  7373. height: math.unit(5 + 8 / 12, "feet"),
  7374. weight: math.unit(140, "lb"),
  7375. name: "Standing",
  7376. image: {
  7377. source: "./media/characters/piper/standing.svg",
  7378. extra: 1440/1284,
  7379. bottom: 66/1506
  7380. }
  7381. },
  7382. running: {
  7383. height: math.unit(5 + 8 / 12, "feet"),
  7384. weight: math.unit(140, "lb"),
  7385. name: "Running",
  7386. image: {
  7387. source: "./media/characters/piper/running.svg",
  7388. extra: 3948/3655,
  7389. bottom: 0/3948
  7390. }
  7391. },
  7392. sole: {
  7393. height: math.unit(0.81, "feet"),
  7394. weight: math.unit(2, "kg"),
  7395. name: "Sole",
  7396. image: {
  7397. source: "./media/characters/piper/sole.svg"
  7398. }
  7399. },
  7400. nipple: {
  7401. height: math.unit(0.25, "feet"),
  7402. weight: math.unit(1.5, "lb"),
  7403. name: "Nipple",
  7404. image: {
  7405. source: "./media/characters/piper/nipple.svg"
  7406. }
  7407. },
  7408. head: {
  7409. height: math.unit(1.1, "feet"),
  7410. name: "Head",
  7411. image: {
  7412. source: "./media/characters/piper/head.svg"
  7413. }
  7414. },
  7415. },
  7416. [
  7417. {
  7418. name: "Micro",
  7419. height: math.unit(2, "inches")
  7420. },
  7421. {
  7422. name: "Normal",
  7423. height: math.unit(5 + 8 / 12, "feet")
  7424. },
  7425. {
  7426. name: "Macro",
  7427. height: math.unit(250, "feet"),
  7428. default: true
  7429. },
  7430. {
  7431. name: "Megamacro",
  7432. height: math.unit(7, "miles")
  7433. },
  7434. ]
  7435. ))
  7436. characterMakers.push(() => makeCharacter(
  7437. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7438. {
  7439. front: {
  7440. height: math.unit(6, "feet"),
  7441. weight: math.unit(220, "lb"),
  7442. name: "Front",
  7443. image: {
  7444. source: "./media/characters/gemini/front.svg"
  7445. }
  7446. },
  7447. back: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(220, "lb"),
  7450. name: "Back",
  7451. image: {
  7452. source: "./media/characters/gemini/back.svg"
  7453. }
  7454. },
  7455. kneeling: {
  7456. height: math.unit(6 / 1.5, "feet"),
  7457. weight: math.unit(220, "lb"),
  7458. name: "Kneeling",
  7459. image: {
  7460. source: "./media/characters/gemini/kneeling.svg",
  7461. bottom: 0.02
  7462. }
  7463. },
  7464. },
  7465. [
  7466. {
  7467. name: "Macro",
  7468. height: math.unit(300, "meters"),
  7469. default: true
  7470. },
  7471. {
  7472. name: "Megamacro",
  7473. height: math.unit(6900, "meters")
  7474. },
  7475. ]
  7476. ))
  7477. characterMakers.push(() => makeCharacter(
  7478. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7479. {
  7480. anthro: {
  7481. height: math.unit(2.35, "meters"),
  7482. weight: math.unit(73, "kg"),
  7483. name: "Anthro",
  7484. image: {
  7485. source: "./media/characters/alicia/anthro.svg",
  7486. extra: 2571 / 2385,
  7487. bottom: 75 / 2648
  7488. }
  7489. },
  7490. paw: {
  7491. height: math.unit(1.32, "feet"),
  7492. name: "Paw",
  7493. image: {
  7494. source: "./media/characters/alicia/paw.svg"
  7495. }
  7496. },
  7497. feral: {
  7498. height: math.unit(1.69, "meters"),
  7499. weight: math.unit(73, "kg"),
  7500. name: "Feral",
  7501. image: {
  7502. source: "./media/characters/alicia/feral.svg",
  7503. extra: 2123 / 1715,
  7504. bottom: 222 / 2349
  7505. }
  7506. },
  7507. },
  7508. [
  7509. {
  7510. name: "Normal",
  7511. height: math.unit(2.35, "meters")
  7512. },
  7513. {
  7514. name: "Macro",
  7515. height: math.unit(60, "meters"),
  7516. default: true
  7517. },
  7518. {
  7519. name: "Megamacro",
  7520. height: math.unit(10000, "kilometers")
  7521. },
  7522. ]
  7523. ))
  7524. characterMakers.push(() => makeCharacter(
  7525. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7526. {
  7527. front: {
  7528. height: math.unit(7, "feet"),
  7529. weight: math.unit(250, "lbs"),
  7530. name: "Front",
  7531. image: {
  7532. source: "./media/characters/archy/front.svg"
  7533. }
  7534. }
  7535. },
  7536. [
  7537. {
  7538. name: "Micro",
  7539. height: math.unit(1, "inch")
  7540. },
  7541. {
  7542. name: "Shorty",
  7543. height: math.unit(5, "feet")
  7544. },
  7545. {
  7546. name: "Normal",
  7547. height: math.unit(7, "feet")
  7548. },
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(600, "meters"),
  7552. default: true
  7553. },
  7554. {
  7555. name: "Megamacro",
  7556. height: math.unit(1, "mile")
  7557. },
  7558. ]
  7559. ))
  7560. characterMakers.push(() => makeCharacter(
  7561. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7562. {
  7563. front: {
  7564. height: math.unit(1.65, "meters"),
  7565. weight: math.unit(74, "kg"),
  7566. name: "Front",
  7567. image: {
  7568. source: "./media/characters/berri/front.svg",
  7569. extra: 857 / 837,
  7570. bottom: 18 / 877
  7571. }
  7572. },
  7573. bum: {
  7574. height: math.unit(1.46, "feet"),
  7575. name: "Bum",
  7576. image: {
  7577. source: "./media/characters/berri/bum.svg"
  7578. }
  7579. },
  7580. mouth: {
  7581. height: math.unit(0.44, "feet"),
  7582. name: "Mouth",
  7583. image: {
  7584. source: "./media/characters/berri/mouth.svg"
  7585. }
  7586. },
  7587. paw: {
  7588. height: math.unit(0.826, "feet"),
  7589. name: "Paw",
  7590. image: {
  7591. source: "./media/characters/berri/paw.svg"
  7592. }
  7593. },
  7594. },
  7595. [
  7596. {
  7597. name: "Normal",
  7598. height: math.unit(1.65, "meters")
  7599. },
  7600. {
  7601. name: "Macro",
  7602. height: math.unit(60, "m"),
  7603. default: true
  7604. },
  7605. {
  7606. name: "Megamacro",
  7607. height: math.unit(9.213, "km")
  7608. },
  7609. {
  7610. name: "Planet Eater",
  7611. height: math.unit(489, "megameters")
  7612. },
  7613. {
  7614. name: "Teramacro",
  7615. height: math.unit(2471635000000, "meters")
  7616. },
  7617. {
  7618. name: "Examacro",
  7619. height: math.unit(8.0624e+26, "meters")
  7620. }
  7621. ]
  7622. ))
  7623. characterMakers.push(() => makeCharacter(
  7624. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7625. {
  7626. front: {
  7627. height: math.unit(1.72, "meters"),
  7628. weight: math.unit(68, "kg"),
  7629. name: "Front",
  7630. image: {
  7631. source: "./media/characters/lexi/front.svg"
  7632. }
  7633. }
  7634. },
  7635. [
  7636. {
  7637. name: "Very Smol",
  7638. height: math.unit(10, "mm")
  7639. },
  7640. {
  7641. name: "Micro",
  7642. height: math.unit(6.8, "cm"),
  7643. default: true
  7644. },
  7645. {
  7646. name: "Normal",
  7647. height: math.unit(1.72, "m")
  7648. }
  7649. ]
  7650. ))
  7651. characterMakers.push(() => makeCharacter(
  7652. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7653. {
  7654. front: {
  7655. height: math.unit(1.69, "meters"),
  7656. weight: math.unit(68, "kg"),
  7657. name: "Front",
  7658. image: {
  7659. source: "./media/characters/martin/front.svg",
  7660. extra: 596 / 581
  7661. }
  7662. }
  7663. },
  7664. [
  7665. {
  7666. name: "Micro",
  7667. height: math.unit(6.85, "cm"),
  7668. default: true
  7669. },
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(1.69, "m")
  7673. }
  7674. ]
  7675. ))
  7676. characterMakers.push(() => makeCharacter(
  7677. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7678. {
  7679. front: {
  7680. height: math.unit(1.69, "meters"),
  7681. weight: math.unit(68, "kg"),
  7682. name: "Front",
  7683. image: {
  7684. source: "./media/characters/juno/front.svg"
  7685. }
  7686. }
  7687. },
  7688. [
  7689. {
  7690. name: "Micro",
  7691. height: math.unit(7, "cm")
  7692. },
  7693. {
  7694. name: "Normal",
  7695. height: math.unit(1.89, "m")
  7696. },
  7697. {
  7698. name: "Macro",
  7699. height: math.unit(353, "meters"),
  7700. default: true
  7701. }
  7702. ]
  7703. ))
  7704. characterMakers.push(() => makeCharacter(
  7705. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7706. {
  7707. front: {
  7708. height: math.unit(1.93, "meters"),
  7709. weight: math.unit(83, "kg"),
  7710. name: "Front",
  7711. image: {
  7712. source: "./media/characters/samantha/front.svg"
  7713. }
  7714. },
  7715. frontClothed: {
  7716. height: math.unit(1.93, "meters"),
  7717. weight: math.unit(83, "kg"),
  7718. name: "Front (Clothed)",
  7719. image: {
  7720. source: "./media/characters/samantha/front-clothed.svg"
  7721. }
  7722. },
  7723. back: {
  7724. height: math.unit(1.93, "meters"),
  7725. weight: math.unit(83, "kg"),
  7726. name: "Back",
  7727. image: {
  7728. source: "./media/characters/samantha/back.svg"
  7729. }
  7730. },
  7731. },
  7732. [
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(1.93, "m")
  7736. },
  7737. {
  7738. name: "Macro",
  7739. height: math.unit(74, "meters"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Macro+",
  7744. height: math.unit(223, "meters"),
  7745. },
  7746. {
  7747. name: "Megamacro",
  7748. height: math.unit(8381, "meters"),
  7749. },
  7750. {
  7751. name: "Megamacro+",
  7752. height: math.unit(12000, "kilometers")
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(1.92, "meters"),
  7761. weight: math.unit(80, "kg"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/dr-clay/front.svg"
  7765. }
  7766. },
  7767. frontClothed: {
  7768. height: math.unit(1.92, "meters"),
  7769. weight: math.unit(80, "kg"),
  7770. name: "Front (Clothed)",
  7771. image: {
  7772. source: "./media/characters/dr-clay/front-clothed.svg"
  7773. }
  7774. }
  7775. },
  7776. [
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(1.92, "m")
  7780. },
  7781. {
  7782. name: "Macro",
  7783. height: math.unit(214, "meters"),
  7784. default: true
  7785. },
  7786. {
  7787. name: "Macro+",
  7788. height: math.unit(12.237, "meters"),
  7789. },
  7790. {
  7791. name: "Megamacro",
  7792. height: math.unit(557, "megameters"),
  7793. },
  7794. {
  7795. name: "Unimaginable",
  7796. height: math.unit(120e9, "lightyears")
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(2, "meters"),
  7805. weight: math.unit(80, "kg"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7809. }
  7810. }
  7811. },
  7812. [
  7813. {
  7814. name: "Teramacro",
  7815. height: math.unit(500000, "lightyears"),
  7816. default: true
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7822. {
  7823. crux: {
  7824. height: math.unit(2, "meters"),
  7825. weight: math.unit(150, "kg"),
  7826. name: "Crux",
  7827. image: {
  7828. source: "./media/characters/vemus/crux.svg",
  7829. extra: 1074/936,
  7830. bottom: 23/1097
  7831. }
  7832. },
  7833. skunkTanuki: {
  7834. height: math.unit(2, "meters"),
  7835. weight: math.unit(150, "kg"),
  7836. name: "Skunk-Tanuki",
  7837. image: {
  7838. source: "./media/characters/vemus/skunk-tanuki.svg",
  7839. extra: 926/893,
  7840. bottom: 20/946
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Normal",
  7847. height: math.unit(4, "meters"),
  7848. default: true
  7849. },
  7850. {
  7851. name: "Big",
  7852. height: math.unit(8, "meters")
  7853. },
  7854. {
  7855. name: "Macro",
  7856. height: math.unit(100, "meters")
  7857. },
  7858. {
  7859. name: "Macro+",
  7860. height: math.unit(1500, "meters")
  7861. },
  7862. {
  7863. name: "Stellar",
  7864. height: math.unit(14e8, "meters")
  7865. },
  7866. ]
  7867. ))
  7868. characterMakers.push(() => makeCharacter(
  7869. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7870. {
  7871. front: {
  7872. height: math.unit(2, "meters"),
  7873. weight: math.unit(70, "kg"),
  7874. name: "Front",
  7875. image: {
  7876. source: "./media/characters/beherit/front.svg",
  7877. extra: 1234/1109,
  7878. bottom: 55/1289
  7879. }
  7880. }
  7881. },
  7882. [
  7883. {
  7884. name: "Normal",
  7885. height: math.unit(6, "feet")
  7886. },
  7887. {
  7888. name: "Lorg",
  7889. height: math.unit(25, "feet"),
  7890. default: true
  7891. },
  7892. {
  7893. name: "Lorger",
  7894. height: math.unit(75, "feet")
  7895. },
  7896. {
  7897. name: "Macro",
  7898. height: math.unit(200, "meters")
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(2, "meters"),
  7907. weight: math.unit(150, "kg"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/everett/front.svg",
  7911. extra: 1017/866,
  7912. bottom: 86/1103
  7913. }
  7914. },
  7915. paw: {
  7916. height: math.unit(2 / 3.6, "meters"),
  7917. name: "Paw",
  7918. image: {
  7919. source: "./media/characters/everett/paw.svg"
  7920. }
  7921. },
  7922. },
  7923. [
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(15, "feet"),
  7927. default: true
  7928. },
  7929. {
  7930. name: "Lorg",
  7931. height: math.unit(70, "feet"),
  7932. default: true
  7933. },
  7934. {
  7935. name: "Lorger",
  7936. height: math.unit(250, "feet")
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(500, "meters")
  7941. },
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7946. {
  7947. front: {
  7948. height: math.unit(2, "meters"),
  7949. weight: math.unit(86, "kg"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/rose/front.svg",
  7953. extra: 1785/1636,
  7954. bottom: 30/1815
  7955. },
  7956. form: "liom",
  7957. default: true
  7958. },
  7959. frontSporty: {
  7960. height: math.unit(2, "meters"),
  7961. weight: math.unit(86, "kg"),
  7962. name: "Front (Sporty)",
  7963. image: {
  7964. source: "./media/characters/rose/front-sporty.svg",
  7965. extra: 350/335,
  7966. bottom: 10/360
  7967. },
  7968. form: "liom"
  7969. },
  7970. frontAlt: {
  7971. height: math.unit(1.6, "meters"),
  7972. weight: math.unit(86, "kg"),
  7973. name: "Front (Alt)",
  7974. image: {
  7975. source: "./media/characters/rose/front-alt.svg",
  7976. extra: 299/283,
  7977. bottom: 3/302
  7978. },
  7979. form: "liom"
  7980. },
  7981. plush: {
  7982. height: math.unit(2, "meters"),
  7983. weight: math.unit(86/3, "kg"),
  7984. name: "Plush",
  7985. image: {
  7986. source: "./media/characters/rose/plush.svg",
  7987. extra: 361/337,
  7988. bottom: 11/372
  7989. },
  7990. form: "plush",
  7991. default: true
  7992. },
  7993. faeStanding: {
  7994. height: math.unit(10, "cm"),
  7995. weight: math.unit(10, "grams"),
  7996. name: "Standing",
  7997. image: {
  7998. source: "./media/characters/rose/fae-standing.svg",
  7999. extra: 1189/1060,
  8000. bottom: 27/1216
  8001. },
  8002. form: "fae",
  8003. default: true
  8004. },
  8005. faeSitting: {
  8006. height: math.unit(5, "cm"),
  8007. weight: math.unit(10, "grams"),
  8008. name: "Sitting",
  8009. image: {
  8010. source: "./media/characters/rose/fae-sitting.svg",
  8011. extra: 737/577,
  8012. bottom: 356/1093
  8013. },
  8014. form: "fae"
  8015. },
  8016. faePaw: {
  8017. height: math.unit(1.35, "cm"),
  8018. name: "Paw",
  8019. image: {
  8020. source: "./media/characters/rose/fae-paw.svg"
  8021. },
  8022. form: "fae"
  8023. },
  8024. },
  8025. [
  8026. {
  8027. name: "True Micro",
  8028. height: math.unit(9, "cm"),
  8029. form: "liom"
  8030. },
  8031. {
  8032. name: "Micro",
  8033. height: math.unit(16, "cm"),
  8034. form: "liom"
  8035. },
  8036. {
  8037. name: "Normal",
  8038. height: math.unit(1.85, "meters"),
  8039. default: true,
  8040. form: "liom"
  8041. },
  8042. {
  8043. name: "Mini-Macro",
  8044. height: math.unit(5, "meters"),
  8045. form: "liom"
  8046. },
  8047. {
  8048. name: "Macro",
  8049. height: math.unit(15, "meters"),
  8050. form: "liom"
  8051. },
  8052. {
  8053. name: "True Macro",
  8054. height: math.unit(40, "meters"),
  8055. form: "liom"
  8056. },
  8057. {
  8058. name: "City Scale",
  8059. height: math.unit(1, "km"),
  8060. form: "liom"
  8061. },
  8062. {
  8063. name: "Plushie",
  8064. height: math.unit(9, "cm"),
  8065. form: "plush",
  8066. default: true
  8067. },
  8068. {
  8069. name: "Fae",
  8070. height: math.unit(10, "cm"),
  8071. form: "fae",
  8072. default: true
  8073. },
  8074. ],
  8075. {
  8076. "liom": {
  8077. name: "Liom"
  8078. },
  8079. "plush": {
  8080. name: "Plush"
  8081. },
  8082. "fae": {
  8083. name: "Fae Fox",
  8084. default: true
  8085. }
  8086. }
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8090. {
  8091. front: {
  8092. height: math.unit(2, "meters"),
  8093. weight: math.unit(350, "lbs"),
  8094. name: "Front",
  8095. image: {
  8096. source: "./media/characters/regal/front.svg"
  8097. }
  8098. },
  8099. back: {
  8100. height: math.unit(2, "meters"),
  8101. weight: math.unit(350, "lbs"),
  8102. name: "Back",
  8103. image: {
  8104. source: "./media/characters/regal/back.svg"
  8105. }
  8106. },
  8107. },
  8108. [
  8109. {
  8110. name: "Macro",
  8111. height: math.unit(350, "feet"),
  8112. default: true
  8113. }
  8114. ]
  8115. ))
  8116. characterMakers.push(() => makeCharacter(
  8117. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8118. {
  8119. front: {
  8120. height: math.unit(4 + 11 / 12, "feet"),
  8121. weight: math.unit(100, "lbs"),
  8122. name: "Front",
  8123. image: {
  8124. source: "./media/characters/opal/front.svg"
  8125. }
  8126. },
  8127. frontAlt: {
  8128. height: math.unit(4 + 11 / 12, "feet"),
  8129. weight: math.unit(100, "lbs"),
  8130. name: "Front (Alt)",
  8131. image: {
  8132. source: "./media/characters/opal/front-alt.svg"
  8133. }
  8134. },
  8135. },
  8136. [
  8137. {
  8138. name: "Small",
  8139. height: math.unit(4 + 11 / 12, "feet")
  8140. },
  8141. {
  8142. name: "Normal",
  8143. height: math.unit(20, "feet"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Macro",
  8148. height: math.unit(120, "feet")
  8149. },
  8150. {
  8151. name: "Megamacro",
  8152. height: math.unit(80, "miles")
  8153. },
  8154. {
  8155. name: "True Size",
  8156. height: math.unit(100000, "lightyears")
  8157. },
  8158. ]
  8159. ))
  8160. characterMakers.push(() => makeCharacter(
  8161. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8162. {
  8163. front: {
  8164. height: math.unit(6, "feet"),
  8165. weight: math.unit(200, "lbs"),
  8166. name: "Front",
  8167. image: {
  8168. source: "./media/characters/vector-wuff/front.svg"
  8169. }
  8170. }
  8171. },
  8172. [
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(2.8, "meters")
  8176. },
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(450, "meters"),
  8180. default: true
  8181. },
  8182. {
  8183. name: "Megamacro",
  8184. height: math.unit(15, "kilometers")
  8185. }
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8190. {
  8191. front: {
  8192. height: math.unit(6, "feet"),
  8193. weight: math.unit(256, "lbs"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/dannik/front.svg"
  8197. }
  8198. }
  8199. },
  8200. [
  8201. {
  8202. name: "Macro",
  8203. height: math.unit(69.57, "meters"),
  8204. default: true
  8205. },
  8206. ]
  8207. ))
  8208. characterMakers.push(() => makeCharacter(
  8209. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8210. {
  8211. front: {
  8212. height: math.unit(6, "feet"),
  8213. weight: math.unit(120, "lbs"),
  8214. name: "Front",
  8215. image: {
  8216. source: "./media/characters/azura-saharah/front.svg"
  8217. }
  8218. },
  8219. back: {
  8220. height: math.unit(6, "feet"),
  8221. weight: math.unit(120, "lbs"),
  8222. name: "Back",
  8223. image: {
  8224. source: "./media/characters/azura-saharah/back.svg"
  8225. }
  8226. },
  8227. },
  8228. [
  8229. {
  8230. name: "Macro",
  8231. height: math.unit(100, "feet"),
  8232. default: true
  8233. },
  8234. ]
  8235. ))
  8236. characterMakers.push(() => makeCharacter(
  8237. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8238. {
  8239. side: {
  8240. height: math.unit(5 + 4 / 12, "feet"),
  8241. weight: math.unit(163, "lbs"),
  8242. name: "Side",
  8243. image: {
  8244. source: "./media/characters/kennedy/side.svg"
  8245. }
  8246. }
  8247. },
  8248. [
  8249. {
  8250. name: "Standard Doggo",
  8251. height: math.unit(5 + 4 / 12, "feet")
  8252. },
  8253. {
  8254. name: "Big Doggo",
  8255. height: math.unit(25 + 3 / 12, "feet"),
  8256. default: true
  8257. },
  8258. ]
  8259. ))
  8260. characterMakers.push(() => makeCharacter(
  8261. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8262. {
  8263. front: {
  8264. height: math.unit(5 + 5/12, "feet"),
  8265. weight: math.unit(100, "lbs"),
  8266. name: "Front",
  8267. image: {
  8268. source: "./media/characters/odios-de-lunar/front.svg",
  8269. extra: 1468/1323,
  8270. bottom: 22/1490
  8271. }
  8272. }
  8273. },
  8274. [
  8275. {
  8276. name: "Micro",
  8277. height: math.unit(3, "inches")
  8278. },
  8279. {
  8280. name: "Normal",
  8281. height: math.unit(5.5, "feet"),
  8282. default: true
  8283. },
  8284. {
  8285. name: "Macro",
  8286. height: math.unit(100, "feet")
  8287. },
  8288. ]
  8289. ))
  8290. characterMakers.push(() => makeCharacter(
  8291. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8292. {
  8293. back: {
  8294. height: math.unit(6, "feet"),
  8295. weight: math.unit(220, "lbs"),
  8296. name: "Back",
  8297. image: {
  8298. source: "./media/characters/mandake/back.svg"
  8299. }
  8300. }
  8301. },
  8302. [
  8303. {
  8304. name: "Normal",
  8305. height: math.unit(7, "feet"),
  8306. default: true
  8307. },
  8308. {
  8309. name: "Macro",
  8310. height: math.unit(78, "feet")
  8311. },
  8312. {
  8313. name: "Macro+",
  8314. height: math.unit(300, "meters")
  8315. },
  8316. {
  8317. name: "Macro++",
  8318. height: math.unit(2400, "feet")
  8319. },
  8320. {
  8321. name: "Megamacro",
  8322. height: math.unit(5167, "meters")
  8323. },
  8324. {
  8325. name: "Gigamacro",
  8326. height: math.unit(41769, "miles")
  8327. },
  8328. ]
  8329. ))
  8330. characterMakers.push(() => makeCharacter(
  8331. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8332. {
  8333. front: {
  8334. height: math.unit(6, "feet"),
  8335. weight: math.unit(120, "lbs"),
  8336. name: "Front",
  8337. image: {
  8338. source: "./media/characters/yozey/front.svg"
  8339. }
  8340. },
  8341. frontAlt: {
  8342. height: math.unit(6, "feet"),
  8343. weight: math.unit(120, "lbs"),
  8344. name: "Front (Alt)",
  8345. image: {
  8346. source: "./media/characters/yozey/front-alt.svg"
  8347. }
  8348. },
  8349. side: {
  8350. height: math.unit(6, "feet"),
  8351. weight: math.unit(120, "lbs"),
  8352. name: "Side",
  8353. image: {
  8354. source: "./media/characters/yozey/side.svg"
  8355. }
  8356. },
  8357. },
  8358. [
  8359. {
  8360. name: "Micro",
  8361. height: math.unit(3, "inches"),
  8362. default: true
  8363. },
  8364. {
  8365. name: "Normal",
  8366. height: math.unit(6, "feet")
  8367. }
  8368. ]
  8369. ))
  8370. characterMakers.push(() => makeCharacter(
  8371. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8372. {
  8373. front: {
  8374. height: math.unit(6, "feet"),
  8375. weight: math.unit(103, "lbs"),
  8376. name: "Front",
  8377. image: {
  8378. source: "./media/characters/valeska-voss/front.svg"
  8379. }
  8380. }
  8381. },
  8382. [
  8383. {
  8384. name: "Mini-Sized Sub",
  8385. height: math.unit(3.1, "inches")
  8386. },
  8387. {
  8388. name: "Mid-Sized Sub",
  8389. height: math.unit(6.2, "inches")
  8390. },
  8391. {
  8392. name: "Full-Sized Sub",
  8393. height: math.unit(9.3, "inches")
  8394. },
  8395. {
  8396. name: "Normal",
  8397. height: math.unit(5 + 2 / 12, "foot"),
  8398. default: true
  8399. },
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8404. {
  8405. front: {
  8406. height: math.unit(6, "feet"),
  8407. weight: math.unit(160, "lbs"),
  8408. name: "Front",
  8409. image: {
  8410. source: "./media/characters/gene-zeta/front.svg",
  8411. extra: 3006 / 2826,
  8412. bottom: 182 / 3188
  8413. }
  8414. }
  8415. },
  8416. [
  8417. {
  8418. name: "Micro",
  8419. height: math.unit(6, "inches")
  8420. },
  8421. {
  8422. name: "Normal",
  8423. height: math.unit(5 + 11 / 12, "foot"),
  8424. default: true
  8425. },
  8426. {
  8427. name: "Macro",
  8428. height: math.unit(140, "feet")
  8429. },
  8430. {
  8431. name: "Supercharged",
  8432. height: math.unit(2500, "feet")
  8433. },
  8434. ]
  8435. ))
  8436. characterMakers.push(() => makeCharacter(
  8437. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8438. {
  8439. front: {
  8440. height: math.unit(6, "feet"),
  8441. weight: math.unit(350, "lbs"),
  8442. name: "Front",
  8443. image: {
  8444. source: "./media/characters/razinox/front.svg",
  8445. extra: 1686 / 1548,
  8446. bottom: 28.2 / 1868
  8447. }
  8448. },
  8449. back: {
  8450. height: math.unit(6, "feet"),
  8451. weight: math.unit(350, "lbs"),
  8452. name: "Back",
  8453. image: {
  8454. source: "./media/characters/razinox/back.svg",
  8455. extra: 1660 / 1590,
  8456. bottom: 15 / 1665
  8457. }
  8458. },
  8459. },
  8460. [
  8461. {
  8462. name: "Normal",
  8463. height: math.unit(10 + 8 / 12, "foot")
  8464. },
  8465. {
  8466. name: "Minimacro",
  8467. height: math.unit(15, "foot")
  8468. },
  8469. {
  8470. name: "Macro",
  8471. height: math.unit(60, "foot"),
  8472. default: true
  8473. },
  8474. {
  8475. name: "Megamacro",
  8476. height: math.unit(5, "miles")
  8477. },
  8478. {
  8479. name: "Gigamacro",
  8480. height: math.unit(6000, "miles")
  8481. },
  8482. ]
  8483. ))
  8484. characterMakers.push(() => makeCharacter(
  8485. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8486. {
  8487. front: {
  8488. height: math.unit(6, "feet"),
  8489. weight: math.unit(150, "lbs"),
  8490. name: "Front",
  8491. image: {
  8492. source: "./media/characters/cobalt/front.svg"
  8493. }
  8494. }
  8495. },
  8496. [
  8497. {
  8498. name: "Normal",
  8499. height: math.unit(8 + 1 / 12, "foot")
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(111, "foot"),
  8504. default: true
  8505. },
  8506. {
  8507. name: "Supracosmic",
  8508. height: math.unit(1e42, "feet")
  8509. },
  8510. ]
  8511. ))
  8512. characterMakers.push(() => makeCharacter(
  8513. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8514. {
  8515. front: {
  8516. height: math.unit(5, "inches"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/amanda/front.svg",
  8520. extra: 926/791,
  8521. bottom: 38/964
  8522. }
  8523. },
  8524. back: {
  8525. height: math.unit(5, "inches"),
  8526. name: "Back",
  8527. image: {
  8528. source: "./media/characters/amanda/back.svg",
  8529. extra: 909/805,
  8530. bottom: 43/952
  8531. }
  8532. },
  8533. },
  8534. [
  8535. {
  8536. name: "Micro",
  8537. height: math.unit(5, "inches"),
  8538. default: true
  8539. },
  8540. ]
  8541. ))
  8542. characterMakers.push(() => makeCharacter(
  8543. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8544. {
  8545. front: {
  8546. height: math.unit(2.75, "meters"),
  8547. weight: math.unit(1200, "lb"),
  8548. name: "Front",
  8549. image: {
  8550. source: "./media/characters/teal/front.svg",
  8551. extra: 2463 / 2320,
  8552. bottom: 166 / 2629
  8553. }
  8554. },
  8555. back: {
  8556. height: math.unit(2.75, "meters"),
  8557. weight: math.unit(1200, "lb"),
  8558. name: "Back",
  8559. image: {
  8560. source: "./media/characters/teal/back.svg",
  8561. extra: 2580 / 2489,
  8562. bottom: 151 / 2731
  8563. }
  8564. },
  8565. sitting: {
  8566. height: math.unit(1.9, "meters"),
  8567. weight: math.unit(1200, "lb"),
  8568. name: "Sitting",
  8569. image: {
  8570. source: "./media/characters/teal/sitting.svg",
  8571. extra: 623 / 590,
  8572. bottom: 121 / 744
  8573. }
  8574. },
  8575. standing: {
  8576. height: math.unit(2.75, "meters"),
  8577. weight: math.unit(1200, "lb"),
  8578. name: "Standing",
  8579. image: {
  8580. source: "./media/characters/teal/standing.svg",
  8581. extra: 923 / 893,
  8582. bottom: 60 / 983
  8583. }
  8584. },
  8585. stretching: {
  8586. height: math.unit(3.65, "meters"),
  8587. weight: math.unit(1200, "lb"),
  8588. name: "Stretching",
  8589. image: {
  8590. source: "./media/characters/teal/stretching.svg",
  8591. extra: 1276 / 1244,
  8592. bottom: 0 / 1276
  8593. }
  8594. },
  8595. legged: {
  8596. height: math.unit(1.3, "meters"),
  8597. weight: math.unit(100, "lb"),
  8598. name: "Legged",
  8599. image: {
  8600. source: "./media/characters/teal/legged.svg",
  8601. extra: 462 / 437,
  8602. bottom: 24 / 486
  8603. }
  8604. },
  8605. naga: {
  8606. height: math.unit(5.4, "meters"),
  8607. weight: math.unit(4000, "lb"),
  8608. name: "Naga",
  8609. image: {
  8610. source: "./media/characters/teal/naga.svg",
  8611. extra: 1902 / 1858,
  8612. bottom: 0 / 1902
  8613. }
  8614. },
  8615. hand: {
  8616. height: math.unit(0.52, "meters"),
  8617. name: "Hand",
  8618. image: {
  8619. source: "./media/characters/teal/hand.svg"
  8620. }
  8621. },
  8622. maw: {
  8623. height: math.unit(0.43, "meters"),
  8624. name: "Maw",
  8625. image: {
  8626. source: "./media/characters/teal/maw.svg"
  8627. }
  8628. },
  8629. slit: {
  8630. height: math.unit(0.25, "meters"),
  8631. name: "Slit",
  8632. image: {
  8633. source: "./media/characters/teal/slit.svg"
  8634. }
  8635. },
  8636. },
  8637. [
  8638. {
  8639. name: "Normal",
  8640. height: math.unit(2.75, "meters"),
  8641. default: true
  8642. },
  8643. {
  8644. name: "Macro",
  8645. height: math.unit(300, "feet")
  8646. },
  8647. {
  8648. name: "Macro+",
  8649. height: math.unit(2000, "feet")
  8650. },
  8651. ]
  8652. ))
  8653. characterMakers.push(() => makeCharacter(
  8654. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8655. {
  8656. frontCat: {
  8657. height: math.unit(6, "feet"),
  8658. weight: math.unit(180, "lbs"),
  8659. name: "Front (Cat)",
  8660. image: {
  8661. source: "./media/characters/ravin-amulet/front-cat.svg"
  8662. }
  8663. },
  8664. frontCatAlt: {
  8665. height: math.unit(6, "feet"),
  8666. weight: math.unit(180, "lbs"),
  8667. name: "Front (Alt, Cat)",
  8668. image: {
  8669. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8670. }
  8671. },
  8672. frontWerewolf: {
  8673. height: math.unit(6 * 1.2, "feet"),
  8674. weight: math.unit(225, "lbs"),
  8675. name: "Front (Werewolf)",
  8676. image: {
  8677. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8678. }
  8679. },
  8680. backWerewolf: {
  8681. height: math.unit(6 * 1.2, "feet"),
  8682. weight: math.unit(225, "lbs"),
  8683. name: "Back (Werewolf)",
  8684. image: {
  8685. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8686. }
  8687. },
  8688. },
  8689. [
  8690. {
  8691. name: "Nano",
  8692. height: math.unit(1, "micrometer")
  8693. },
  8694. {
  8695. name: "Micro",
  8696. height: math.unit(1, "inch")
  8697. },
  8698. {
  8699. name: "Normal",
  8700. height: math.unit(6, "feet"),
  8701. default: true
  8702. },
  8703. {
  8704. name: "Macro",
  8705. height: math.unit(60, "feet")
  8706. }
  8707. ]
  8708. ))
  8709. characterMakers.push(() => makeCharacter(
  8710. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8711. {
  8712. front: {
  8713. height: math.unit(6, "feet"),
  8714. weight: math.unit(165, "lbs"),
  8715. name: "Front",
  8716. image: {
  8717. source: "./media/characters/fluoresce/front.svg"
  8718. }
  8719. }
  8720. },
  8721. [
  8722. {
  8723. name: "Micro",
  8724. height: math.unit(6, "cm")
  8725. },
  8726. {
  8727. name: "Normal",
  8728. height: math.unit(5 + 7 / 12, "feet"),
  8729. default: true
  8730. },
  8731. {
  8732. name: "Macro",
  8733. height: math.unit(56, "feet")
  8734. },
  8735. {
  8736. name: "Megamacro",
  8737. height: math.unit(1.9, "miles")
  8738. },
  8739. ]
  8740. ))
  8741. characterMakers.push(() => makeCharacter(
  8742. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8743. {
  8744. front: {
  8745. height: math.unit(9 + 6 / 12, "feet"),
  8746. weight: math.unit(523, "lbs"),
  8747. name: "Side",
  8748. image: {
  8749. source: "./media/characters/aurora/side.svg",
  8750. extra: 474/393,
  8751. bottom: 5/479
  8752. }
  8753. }
  8754. },
  8755. [
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(9 + 6 / 12, "feet")
  8759. },
  8760. {
  8761. name: "Macro",
  8762. height: math.unit(96, "feet"),
  8763. default: true
  8764. },
  8765. {
  8766. name: "Macro+",
  8767. height: math.unit(243, "feet")
  8768. },
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8773. {
  8774. front: {
  8775. height: math.unit(194, "cm"),
  8776. weight: math.unit(90, "kg"),
  8777. name: "Front",
  8778. image: {
  8779. source: "./media/characters/ranek/front.svg",
  8780. extra: 1862/1791,
  8781. bottom: 80/1942
  8782. }
  8783. },
  8784. back: {
  8785. height: math.unit(194, "cm"),
  8786. weight: math.unit(90, "kg"),
  8787. name: "Back",
  8788. image: {
  8789. source: "./media/characters/ranek/back.svg",
  8790. extra: 1853/1787,
  8791. bottom: 74/1927
  8792. }
  8793. },
  8794. feral: {
  8795. height: math.unit(30, "cm"),
  8796. weight: math.unit(1.6, "lbs"),
  8797. name: "Feral",
  8798. image: {
  8799. source: "./media/characters/ranek/feral.svg",
  8800. extra: 990/631,
  8801. bottom: 29/1019
  8802. }
  8803. },
  8804. },
  8805. [
  8806. {
  8807. name: "Normal",
  8808. height: math.unit(194, "cm"),
  8809. default: true
  8810. },
  8811. {
  8812. name: "Macro",
  8813. height: math.unit(100, "meters")
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8819. {
  8820. front: {
  8821. height: math.unit(5 + 6 / 12, "feet"),
  8822. weight: math.unit(153, "lbs"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/andrew-cooper/front.svg"
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Nano",
  8832. height: math.unit(1, "mm")
  8833. },
  8834. {
  8835. name: "Micro",
  8836. height: math.unit(2, "inches")
  8837. },
  8838. {
  8839. name: "Normal",
  8840. height: math.unit(5 + 6 / 12, "feet"),
  8841. default: true
  8842. }
  8843. ]
  8844. ))
  8845. characterMakers.push(() => makeCharacter(
  8846. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8847. {
  8848. front: {
  8849. height: math.unit(6, "feet"),
  8850. weight: math.unit(180, "lbs"),
  8851. name: "Front",
  8852. image: {
  8853. source: "./media/characters/akane-sato/front.svg",
  8854. extra: 1219 / 1140
  8855. }
  8856. },
  8857. back: {
  8858. height: math.unit(6, "feet"),
  8859. weight: math.unit(180, "lbs"),
  8860. name: "Back",
  8861. image: {
  8862. source: "./media/characters/akane-sato/back.svg",
  8863. extra: 1219 / 1170
  8864. }
  8865. },
  8866. },
  8867. [
  8868. {
  8869. name: "Normal",
  8870. height: math.unit(2.5, "meters")
  8871. },
  8872. {
  8873. name: "Macro",
  8874. height: math.unit(250, "meters"),
  8875. default: true
  8876. },
  8877. {
  8878. name: "Megamacro",
  8879. height: math.unit(25, "km")
  8880. },
  8881. ]
  8882. ))
  8883. characterMakers.push(() => makeCharacter(
  8884. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8885. {
  8886. front: {
  8887. height: math.unit(6, "feet"),
  8888. weight: math.unit(65, "kg"),
  8889. name: "Front",
  8890. image: {
  8891. source: "./media/characters/rook/front.svg",
  8892. extra: 960 / 950
  8893. }
  8894. }
  8895. },
  8896. [
  8897. {
  8898. name: "Normal",
  8899. height: math.unit(8.8, "feet")
  8900. },
  8901. {
  8902. name: "Macro",
  8903. height: math.unit(88, "feet"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Megamacro",
  8908. height: math.unit(8, "miles")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(12 + 2 / 12, "feet"),
  8917. weight: math.unit(808, "lbs"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/prodigy/front.svg"
  8921. }
  8922. }
  8923. },
  8924. [
  8925. {
  8926. name: "Normal",
  8927. height: math.unit(12 + 2 / 12, "feet"),
  8928. default: true
  8929. },
  8930. {
  8931. name: "Macro",
  8932. height: math.unit(143, "feet")
  8933. },
  8934. {
  8935. name: "Macro+",
  8936. height: math.unit(400, "feet")
  8937. },
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8942. {
  8943. front: {
  8944. height: math.unit(6, "feet"),
  8945. weight: math.unit(225, "lbs"),
  8946. name: "Front",
  8947. image: {
  8948. source: "./media/characters/daniel/front.svg"
  8949. }
  8950. },
  8951. leaning: {
  8952. height: math.unit(6, "feet"),
  8953. weight: math.unit(225, "lbs"),
  8954. name: "Leaning",
  8955. image: {
  8956. source: "./media/characters/daniel/leaning.svg"
  8957. }
  8958. },
  8959. },
  8960. [
  8961. {
  8962. name: "Macro",
  8963. height: math.unit(1000, "feet"),
  8964. default: true
  8965. },
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8970. {
  8971. front: {
  8972. height: math.unit(6, "feet"),
  8973. weight: math.unit(88, "lbs"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/chiros/front.svg",
  8977. extra: 306 / 226
  8978. }
  8979. },
  8980. side: {
  8981. height: math.unit(6, "feet"),
  8982. weight: math.unit(88, "lbs"),
  8983. name: "Side",
  8984. image: {
  8985. source: "./media/characters/chiros/side.svg",
  8986. extra: 306 / 226
  8987. }
  8988. },
  8989. },
  8990. [
  8991. {
  8992. name: "Normal",
  8993. height: math.unit(6, "cm"),
  8994. default: true
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9000. {
  9001. front: {
  9002. height: math.unit(6, "feet"),
  9003. weight: math.unit(100, "lbs"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/selka/front.svg",
  9007. extra: 947 / 887
  9008. }
  9009. }
  9010. },
  9011. [
  9012. {
  9013. name: "Normal",
  9014. height: math.unit(5, "cm"),
  9015. default: true
  9016. },
  9017. ]
  9018. ))
  9019. characterMakers.push(() => makeCharacter(
  9020. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9021. {
  9022. front: {
  9023. height: math.unit(8 + 3 / 12, "feet"),
  9024. weight: math.unit(424, "lbs"),
  9025. name: "Front",
  9026. image: {
  9027. source: "./media/characters/verin/front.svg",
  9028. extra: 1845 / 1550
  9029. }
  9030. },
  9031. frontArmored: {
  9032. height: math.unit(8 + 3 / 12, "feet"),
  9033. weight: math.unit(424, "lbs"),
  9034. name: "Front (Armored)",
  9035. image: {
  9036. source: "./media/characters/verin/front-armor.svg",
  9037. extra: 1845 / 1550,
  9038. bottom: 0.01
  9039. }
  9040. },
  9041. back: {
  9042. height: math.unit(8 + 3 / 12, "feet"),
  9043. weight: math.unit(424, "lbs"),
  9044. name: "Back",
  9045. image: {
  9046. source: "./media/characters/verin/back.svg",
  9047. bottom: 0.1,
  9048. extra: 1
  9049. }
  9050. },
  9051. foot: {
  9052. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9053. name: "Foot",
  9054. image: {
  9055. source: "./media/characters/verin/foot.svg"
  9056. }
  9057. },
  9058. },
  9059. [
  9060. {
  9061. name: "Normal",
  9062. height: math.unit(8 + 3 / 12, "feet")
  9063. },
  9064. {
  9065. name: "Minimacro",
  9066. height: math.unit(21, "feet"),
  9067. default: true
  9068. },
  9069. {
  9070. name: "Macro",
  9071. height: math.unit(626, "feet")
  9072. },
  9073. ]
  9074. ))
  9075. characterMakers.push(() => makeCharacter(
  9076. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9077. {
  9078. front: {
  9079. height: math.unit(2.718, "meters"),
  9080. weight: math.unit(150, "lbs"),
  9081. name: "Front",
  9082. image: {
  9083. source: "./media/characters/sovrim-terraquian/front.svg",
  9084. extra: 1752/1689,
  9085. bottom: 36/1788
  9086. }
  9087. },
  9088. back: {
  9089. height: math.unit(2.718, "meters"),
  9090. weight: math.unit(150, "lbs"),
  9091. name: "Back",
  9092. image: {
  9093. source: "./media/characters/sovrim-terraquian/back.svg",
  9094. extra: 1698/1657,
  9095. bottom: 58/1756
  9096. }
  9097. },
  9098. tongue: {
  9099. height: math.unit(2.865, "feet"),
  9100. name: "Tongue",
  9101. image: {
  9102. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9103. }
  9104. },
  9105. hand: {
  9106. height: math.unit(1.61, "feet"),
  9107. name: "Hand",
  9108. image: {
  9109. source: "./media/characters/sovrim-terraquian/hand.svg"
  9110. }
  9111. },
  9112. foot: {
  9113. height: math.unit(1.05, "feet"),
  9114. name: "Foot",
  9115. image: {
  9116. source: "./media/characters/sovrim-terraquian/foot.svg"
  9117. }
  9118. },
  9119. footAlt: {
  9120. height: math.unit(0.88, "feet"),
  9121. name: "Foot (Alt)",
  9122. image: {
  9123. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Micro",
  9130. height: math.unit(2, "inches")
  9131. },
  9132. {
  9133. name: "Small",
  9134. height: math.unit(1, "meter")
  9135. },
  9136. {
  9137. name: "Normal",
  9138. height: math.unit(Math.E, "meters"),
  9139. default: true
  9140. },
  9141. {
  9142. name: "Macro",
  9143. height: math.unit(20, "meters")
  9144. },
  9145. {
  9146. name: "Macro+",
  9147. height: math.unit(400, "meters")
  9148. },
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9153. {
  9154. front: {
  9155. height: math.unit(7, "feet"),
  9156. weight: math.unit(489, "lbs"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/reece-silvermane/front.svg",
  9160. bottom: 0.02,
  9161. extra: 1
  9162. }
  9163. },
  9164. },
  9165. [
  9166. {
  9167. name: "Macro",
  9168. height: math.unit(1.5, "miles"),
  9169. default: true
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9175. {
  9176. front: {
  9177. height: math.unit(6, "feet"),
  9178. weight: math.unit(78, "kg"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/kane/front.svg",
  9182. extra: 978 / 899
  9183. }
  9184. },
  9185. back: {
  9186. height: math.unit(6, "feet"),
  9187. weight: math.unit(78, "kg"),
  9188. name: "Back",
  9189. image: {
  9190. source: "./media/characters/kane/back.svg",
  9191. extra: 1966/1800,
  9192. bottom: 0/1966
  9193. }
  9194. },
  9195. head: {
  9196. height: math.unit(1.4, "feet"),
  9197. name: "Head",
  9198. image: {
  9199. source: "./media/characters/kane/head.svg"
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(2.1, "m"),
  9207. },
  9208. {
  9209. name: "Macro",
  9210. height: math.unit(1, "km"),
  9211. default: true
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(6, "feet"),
  9220. weight: math.unit(200, "kg"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/tegon/front.svg",
  9224. bottom: 0.01,
  9225. extra: 1
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Micro",
  9232. height: math.unit(1, "inch")
  9233. },
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(6 + 3 / 12, "feet"),
  9237. default: true
  9238. },
  9239. {
  9240. name: "Macro",
  9241. height: math.unit(300, "feet")
  9242. },
  9243. {
  9244. name: "Megamacro",
  9245. height: math.unit(69, "miles")
  9246. },
  9247. ]
  9248. ))
  9249. characterMakers.push(() => makeCharacter(
  9250. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9251. {
  9252. side: {
  9253. height: math.unit(6, "feet"),
  9254. weight: math.unit(2304, "lbs"),
  9255. name: "Side",
  9256. image: {
  9257. source: "./media/characters/arcturax/side.svg",
  9258. extra: 790 / 376,
  9259. bottom: 0.01
  9260. }
  9261. },
  9262. },
  9263. [
  9264. {
  9265. name: "Micro",
  9266. height: math.unit(2, "inch")
  9267. },
  9268. {
  9269. name: "Normal",
  9270. height: math.unit(6, "feet")
  9271. },
  9272. {
  9273. name: "Macro",
  9274. height: math.unit(39, "feet"),
  9275. default: true
  9276. },
  9277. {
  9278. name: "Megamacro",
  9279. height: math.unit(7, "miles")
  9280. },
  9281. ]
  9282. ))
  9283. characterMakers.push(() => makeCharacter(
  9284. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9285. {
  9286. front: {
  9287. height: math.unit(6, "feet"),
  9288. weight: math.unit(50, "lbs"),
  9289. name: "Front",
  9290. image: {
  9291. source: "./media/characters/sentri/front.svg",
  9292. extra: 1750 / 1570,
  9293. bottom: 0.025
  9294. }
  9295. },
  9296. frontAlt: {
  9297. height: math.unit(6, "feet"),
  9298. weight: math.unit(50, "lbs"),
  9299. name: "Front (Alt)",
  9300. image: {
  9301. source: "./media/characters/sentri/front-alt.svg",
  9302. extra: 1750 / 1570,
  9303. bottom: 0.025
  9304. }
  9305. },
  9306. },
  9307. [
  9308. {
  9309. name: "Normal",
  9310. height: math.unit(15, "feet"),
  9311. default: true
  9312. },
  9313. {
  9314. name: "Macro",
  9315. height: math.unit(2500, "feet")
  9316. }
  9317. ]
  9318. ))
  9319. characterMakers.push(() => makeCharacter(
  9320. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9321. {
  9322. front: {
  9323. height: math.unit(5 + 8 / 12, "feet"),
  9324. weight: math.unit(130, "lbs"),
  9325. name: "Front",
  9326. image: {
  9327. source: "./media/characters/corvin/front.svg",
  9328. extra: 1803 / 1629
  9329. }
  9330. },
  9331. frontShirt: {
  9332. height: math.unit(5 + 8 / 12, "feet"),
  9333. weight: math.unit(130, "lbs"),
  9334. name: "Front (Shirt)",
  9335. image: {
  9336. source: "./media/characters/corvin/front-shirt.svg",
  9337. extra: 1803 / 1629
  9338. }
  9339. },
  9340. frontPoncho: {
  9341. height: math.unit(5 + 8 / 12, "feet"),
  9342. weight: math.unit(130, "lbs"),
  9343. name: "Front (Poncho)",
  9344. image: {
  9345. source: "./media/characters/corvin/front-poncho.svg",
  9346. extra: 1803 / 1629
  9347. }
  9348. },
  9349. side: {
  9350. height: math.unit(5 + 8 / 12, "feet"),
  9351. weight: math.unit(130, "lbs"),
  9352. name: "Side",
  9353. image: {
  9354. source: "./media/characters/corvin/side.svg",
  9355. extra: 1012 / 945
  9356. }
  9357. },
  9358. back: {
  9359. height: math.unit(5 + 8 / 12, "feet"),
  9360. weight: math.unit(130, "lbs"),
  9361. name: "Back",
  9362. image: {
  9363. source: "./media/characters/corvin/back.svg",
  9364. extra: 1803 / 1629
  9365. }
  9366. },
  9367. },
  9368. [
  9369. {
  9370. name: "Micro",
  9371. height: math.unit(3, "inches")
  9372. },
  9373. {
  9374. name: "Normal",
  9375. height: math.unit(5 + 8 / 12, "feet")
  9376. },
  9377. {
  9378. name: "Macro",
  9379. height: math.unit(300, "feet"),
  9380. default: true
  9381. },
  9382. {
  9383. name: "Megamacro",
  9384. height: math.unit(500, "miles")
  9385. }
  9386. ]
  9387. ))
  9388. characterMakers.push(() => makeCharacter(
  9389. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9390. {
  9391. front: {
  9392. height: math.unit(6, "feet"),
  9393. weight: math.unit(135, "lbs"),
  9394. name: "Front",
  9395. image: {
  9396. source: "./media/characters/q/front.svg",
  9397. extra: 854 / 752,
  9398. bottom: 0.005
  9399. }
  9400. },
  9401. back: {
  9402. height: math.unit(6, "feet"),
  9403. weight: math.unit(130, "lbs"),
  9404. name: "Back",
  9405. image: {
  9406. source: "./media/characters/q/back.svg",
  9407. extra: 854 / 752
  9408. }
  9409. },
  9410. },
  9411. [
  9412. {
  9413. name: "Macro",
  9414. height: math.unit(90, "feet"),
  9415. default: true
  9416. },
  9417. {
  9418. name: "Extra Macro",
  9419. height: math.unit(300, "feet"),
  9420. },
  9421. {
  9422. name: "BIG WALF",
  9423. height: math.unit(750, "feet"),
  9424. },
  9425. ]
  9426. ))
  9427. characterMakers.push(() => makeCharacter(
  9428. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9429. {
  9430. front: {
  9431. height: math.unit(3, "feet"),
  9432. weight: math.unit(28, "lbs"),
  9433. name: "Front",
  9434. image: {
  9435. source: "./media/characters/citrine/front.svg"
  9436. }
  9437. }
  9438. },
  9439. [
  9440. {
  9441. name: "Normal",
  9442. height: math.unit(3, "feet"),
  9443. default: true
  9444. }
  9445. ]
  9446. ))
  9447. characterMakers.push(() => makeCharacter(
  9448. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9449. {
  9450. front: {
  9451. height: math.unit(14, "feet"),
  9452. weight: math.unit(1450, "kg"),
  9453. preyCapacity: math.unit(15, "people"),
  9454. name: "Front",
  9455. image: {
  9456. source: "./media/characters/aura-starwind/front.svg",
  9457. extra: 1440/1327,
  9458. bottom: 11/1451
  9459. }
  9460. },
  9461. side: {
  9462. height: math.unit(14, "feet"),
  9463. weight: math.unit(1450, "kg"),
  9464. preyCapacity: math.unit(15, "people"),
  9465. name: "Side",
  9466. image: {
  9467. source: "./media/characters/aura-starwind/side.svg",
  9468. extra: 1654 / 1497
  9469. }
  9470. },
  9471. taur: {
  9472. height: math.unit(18, "feet"),
  9473. weight: math.unit(5500, "kg"),
  9474. preyCapacity: math.unit(50, "people"),
  9475. name: "Taur",
  9476. image: {
  9477. source: "./media/characters/aura-starwind/taur.svg",
  9478. extra: 1760 / 1650
  9479. }
  9480. },
  9481. feral: {
  9482. height: math.unit(46, "feet"),
  9483. weight: math.unit(25000, "kg"),
  9484. preyCapacity: math.unit(120, "people"),
  9485. name: "Feral",
  9486. image: {
  9487. source: "./media/characters/aura-starwind/feral.svg"
  9488. }
  9489. },
  9490. },
  9491. [
  9492. {
  9493. name: "Normal",
  9494. height: math.unit(14, "feet"),
  9495. default: true
  9496. },
  9497. {
  9498. name: "Macro",
  9499. height: math.unit(50, "meters")
  9500. },
  9501. {
  9502. name: "Megamacro",
  9503. height: math.unit(5000, "meters")
  9504. },
  9505. {
  9506. name: "Gigamacro",
  9507. height: math.unit(100000, "kilometers")
  9508. },
  9509. ]
  9510. ))
  9511. characterMakers.push(() => makeCharacter(
  9512. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9513. {
  9514. front: {
  9515. height: math.unit(2 + 7 / 12, "feet"),
  9516. weight: math.unit(32, "lbs"),
  9517. name: "Front",
  9518. image: {
  9519. source: "./media/characters/rivet/front.svg",
  9520. extra: 1716 / 1658,
  9521. bottom: 0.03
  9522. }
  9523. },
  9524. foot: {
  9525. height: math.unit(0.551, "feet"),
  9526. name: "Rivet's Foot",
  9527. image: {
  9528. source: "./media/characters/rivet/foot.svg"
  9529. },
  9530. rename: true
  9531. }
  9532. },
  9533. [
  9534. {
  9535. name: "Micro",
  9536. height: math.unit(1.5, "inches"),
  9537. },
  9538. {
  9539. name: "Normal",
  9540. height: math.unit(2 + 7 / 12, "feet"),
  9541. default: true
  9542. },
  9543. {
  9544. name: "Macro",
  9545. height: math.unit(85, "feet")
  9546. },
  9547. {
  9548. name: "Megamacro",
  9549. height: math.unit(2.2, "km")
  9550. }
  9551. ]
  9552. ))
  9553. characterMakers.push(() => makeCharacter(
  9554. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9555. {
  9556. front: {
  9557. height: math.unit(5 + 9 / 12, "feet"),
  9558. weight: math.unit(150, "lbs"),
  9559. name: "Front",
  9560. image: {
  9561. source: "./media/characters/coffee/front.svg",
  9562. extra: 946/880,
  9563. bottom: 66/1012
  9564. }
  9565. },
  9566. foot: {
  9567. height: math.unit(1.29, "feet"),
  9568. name: "Foot",
  9569. image: {
  9570. source: "./media/characters/coffee/foot.svg"
  9571. }
  9572. },
  9573. },
  9574. [
  9575. {
  9576. name: "Micro",
  9577. height: math.unit(2, "inches"),
  9578. },
  9579. {
  9580. name: "Normal",
  9581. height: math.unit(5 + 9 / 12, "feet"),
  9582. default: true
  9583. },
  9584. {
  9585. name: "Macro",
  9586. height: math.unit(800, "feet")
  9587. },
  9588. {
  9589. name: "Megamacro",
  9590. height: math.unit(25, "miles")
  9591. }
  9592. ]
  9593. ))
  9594. characterMakers.push(() => makeCharacter(
  9595. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9596. {
  9597. front: {
  9598. height: math.unit(6, "feet"),
  9599. weight: math.unit(200, "lbs"),
  9600. name: "Front",
  9601. image: {
  9602. source: "./media/characters/chari-gal/front.svg",
  9603. extra: 735/649,
  9604. bottom: 55/790
  9605. },
  9606. form: "normal",
  9607. default: true
  9608. },
  9609. back: {
  9610. height: math.unit(6, "feet"),
  9611. weight: math.unit(200, "lb"),
  9612. name: "Back",
  9613. image: {
  9614. source: "./media/characters/chari-gal/back.svg",
  9615. extra: 762/666,
  9616. bottom: 31/793
  9617. },
  9618. form: "normal"
  9619. },
  9620. mouth: {
  9621. height: math.unit(1.35, "feet"),
  9622. name: "Mouth",
  9623. image: {
  9624. source: "./media/characters/chari-gal/mouth.svg"
  9625. },
  9626. form: "normal"
  9627. },
  9628. gigantamax: {
  9629. height: math.unit(6 * 16, "feet"),
  9630. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9631. name: "Gigantamax",
  9632. image: {
  9633. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9634. extra: 1507/1149,
  9635. bottom: 254/1761
  9636. },
  9637. form: "gigantamax",
  9638. default: true
  9639. },
  9640. },
  9641. [
  9642. {
  9643. name: "Normal",
  9644. height: math.unit(5 + 7 / 12, "feet"),
  9645. form: "normal",
  9646. },
  9647. {
  9648. name: "Macro",
  9649. height: math.unit(200, "feet"),
  9650. default: true,
  9651. form: "normal"
  9652. },
  9653. {
  9654. name: "Normal",
  9655. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9656. form: "gigantamax",
  9657. },
  9658. {
  9659. name: "Macro",
  9660. height: math.unit(16 * 200, "feet"),
  9661. default: true,
  9662. form: "gigantamax"
  9663. },
  9664. ],
  9665. {
  9666. "normal": {
  9667. name: "Normal",
  9668. default: true
  9669. },
  9670. "gigantamax": {
  9671. name: "Gigantamax",
  9672. },
  9673. }
  9674. ))
  9675. characterMakers.push(() => makeCharacter(
  9676. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9677. {
  9678. front: {
  9679. height: math.unit(6, "feet"),
  9680. weight: math.unit(150, "lbs"),
  9681. name: "Front",
  9682. image: {
  9683. source: "./media/characters/nova/front.svg",
  9684. extra: 5000 / 4722,
  9685. bottom: 0.02
  9686. }
  9687. }
  9688. },
  9689. [
  9690. {
  9691. name: "Micro-",
  9692. height: math.unit(0.8, "inches")
  9693. },
  9694. {
  9695. name: "Micro",
  9696. height: math.unit(2, "inches"),
  9697. default: true
  9698. },
  9699. ]
  9700. ))
  9701. characterMakers.push(() => makeCharacter(
  9702. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9703. {
  9704. koboldFront: {
  9705. height: math.unit(3 + 1 / 12, "feet"),
  9706. weight: math.unit(21.7, "lbs"),
  9707. name: "Front",
  9708. image: {
  9709. source: "./media/characters/argent/kobold-front.svg",
  9710. extra: 1471 / 1331,
  9711. bottom: 100.8 / 1575.5
  9712. },
  9713. form: "kobold",
  9714. default: true
  9715. },
  9716. dragonFront: {
  9717. height: math.unit(75, "inches"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/argent/dragon-front.svg",
  9721. extra: 1389/1248,
  9722. bottom: 54/1443
  9723. },
  9724. form: "dragon",
  9725. },
  9726. dragonBack: {
  9727. height: math.unit(75, "inches"),
  9728. name: "Back",
  9729. image: {
  9730. source: "./media/characters/argent/dragon-back.svg",
  9731. extra: 1399/1271,
  9732. bottom: 23/1422
  9733. },
  9734. form: "dragon",
  9735. },
  9736. dragonDressed: {
  9737. height: math.unit(75, "inches"),
  9738. name: "Dressed",
  9739. image: {
  9740. source: "./media/characters/argent/dragon-dressed.svg",
  9741. extra: 1350/1215,
  9742. bottom: 26/1376
  9743. },
  9744. form: "dragon"
  9745. },
  9746. dragonHead: {
  9747. height: math.unit(23.5, "inches"),
  9748. name: "Head",
  9749. image: {
  9750. source: "./media/characters/argent/dragon-head.svg"
  9751. },
  9752. form: "dragon",
  9753. },
  9754. },
  9755. [
  9756. {
  9757. name: "Micro",
  9758. height: math.unit(2, "inches"),
  9759. form: "kobold",
  9760. },
  9761. {
  9762. name: "Normal",
  9763. height: math.unit(3 + 1 / 12, "feet"),
  9764. form: "kobold",
  9765. default: true
  9766. },
  9767. {
  9768. name: "Macro",
  9769. height: math.unit(120, "feet"),
  9770. form: "kobold",
  9771. },
  9772. {
  9773. name: "Speck",
  9774. height: math.unit(1, "mm"),
  9775. form: "dragon",
  9776. },
  9777. {
  9778. name: "Tiny",
  9779. height: math.unit(1, "cm"),
  9780. form: "dragon",
  9781. },
  9782. {
  9783. name: "Micro",
  9784. height: math.unit(5, "cm"),
  9785. form: "dragon",
  9786. },
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(75, "inches"),
  9790. form: "dragon",
  9791. default: true
  9792. },
  9793. {
  9794. name: "Extra Tall",
  9795. height: math.unit(9, "feet"),
  9796. form: "dragon",
  9797. },
  9798. {
  9799. name: "Inconvenient",
  9800. height: math.unit(5, "meters"),
  9801. form: "dragon",
  9802. },
  9803. {
  9804. name: "Macro",
  9805. height: math.unit(70, "meters"),
  9806. form: "dragon",
  9807. },
  9808. {
  9809. name: "Macro+",
  9810. height: math.unit(250, "meters"),
  9811. form: "dragon",
  9812. },
  9813. {
  9814. name: "Megamacro",
  9815. height: math.unit(20, "km"),
  9816. form: "dragon",
  9817. },
  9818. {
  9819. name: "Mountainous",
  9820. height: math.unit(100, "km"),
  9821. form: "dragon",
  9822. },
  9823. {
  9824. name: "Continental",
  9825. height: math.unit(2, "megameters"),
  9826. form: "dragon",
  9827. },
  9828. {
  9829. name: "Too Big",
  9830. height: math.unit(900, "megameters"),
  9831. form: "dragon",
  9832. },
  9833. ],
  9834. {
  9835. "kobold": {
  9836. name: "Kobold",
  9837. default: true
  9838. },
  9839. "dragon": {
  9840. name: "Dragon",
  9841. },
  9842. }
  9843. ))
  9844. characterMakers.push(() => makeCharacter(
  9845. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9846. {
  9847. lamp: {
  9848. height: math.unit(7 * 1559 / 989, "feet"),
  9849. name: "Magic Lamp",
  9850. image: {
  9851. source: "./media/characters/mira-al-cul/lamp.svg",
  9852. extra: 1617 / 1559
  9853. }
  9854. },
  9855. front: {
  9856. height: math.unit(7, "feet"),
  9857. name: "Front",
  9858. image: {
  9859. source: "./media/characters/mira-al-cul/front.svg",
  9860. extra: 1044 / 990
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Heavily Restricted",
  9867. height: math.unit(7 * 1559 / 989, "feet")
  9868. },
  9869. {
  9870. name: "Freshly Freed",
  9871. height: math.unit(50 * 1559 / 989, "feet")
  9872. },
  9873. {
  9874. name: "World Encompassing",
  9875. height: math.unit(10000 * 1559 / 989, "miles")
  9876. },
  9877. {
  9878. name: "Galactic",
  9879. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9880. },
  9881. {
  9882. name: "Palmed Universe",
  9883. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9884. default: true
  9885. },
  9886. {
  9887. name: "Multiversal Matriarch",
  9888. height: math.unit(8.87e10, "yottameters")
  9889. },
  9890. {
  9891. name: "Void Mother",
  9892. height: math.unit(3.14e110, "yottaparsecs")
  9893. },
  9894. {
  9895. name: "Toying with Transcendence",
  9896. height: math.unit(1e307, "meters")
  9897. },
  9898. ]
  9899. ))
  9900. characterMakers.push(() => makeCharacter(
  9901. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9902. {
  9903. front: {
  9904. height: math.unit(17 + 1 / 12, "feet"),
  9905. weight: math.unit(476.2 * 5, "lbs"),
  9906. name: "Front",
  9907. image: {
  9908. source: "./media/characters/kuro-shi-uchū/front.svg",
  9909. extra: 2329 / 1835,
  9910. bottom: 0.02
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(2, "inches")
  9918. },
  9919. {
  9920. name: "Normal",
  9921. height: math.unit(12, "meters")
  9922. },
  9923. {
  9924. name: "Planetary",
  9925. height: math.unit(0.00929, "AU"),
  9926. default: true
  9927. },
  9928. {
  9929. name: "Universal",
  9930. height: math.unit(20, "gigaparsecs")
  9931. },
  9932. ]
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(5 + 2 / 12, "feet"),
  9939. weight: math.unit(120, "lbs"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/katherine/front.svg",
  9943. extra: 2075 / 1969
  9944. }
  9945. },
  9946. dress: {
  9947. height: math.unit(5 + 2 / 12, "feet"),
  9948. weight: math.unit(120, "lbs"),
  9949. name: "Dress",
  9950. image: {
  9951. source: "./media/characters/katherine/dress.svg",
  9952. extra: 2258 / 2064
  9953. }
  9954. },
  9955. },
  9956. [
  9957. {
  9958. name: "Micro",
  9959. height: math.unit(1, "inches"),
  9960. default: true
  9961. },
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(5 + 2 / 12, "feet")
  9965. },
  9966. {
  9967. name: "Macro",
  9968. height: math.unit(100, "meters")
  9969. },
  9970. {
  9971. name: "Megamacro",
  9972. height: math.unit(80, "miles")
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(7 + 8 / 12, "feet"),
  9981. weight: math.unit(250, "lbs"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/yevis/front.svg",
  9985. extra: 1938 / 1755
  9986. }
  9987. }
  9988. },
  9989. [
  9990. {
  9991. name: "Mortal",
  9992. height: math.unit(7 + 8 / 12, "feet")
  9993. },
  9994. {
  9995. name: "Battle",
  9996. height: math.unit(25 + 11 / 12, "feet")
  9997. },
  9998. {
  9999. name: "Wrath",
  10000. height: math.unit(1654 + 11 / 12, "feet")
  10001. },
  10002. {
  10003. name: "Planet Destroyer",
  10004. height: math.unit(12000, "miles")
  10005. },
  10006. {
  10007. name: "Galaxy Conqueror",
  10008. height: math.unit(1.45, "zettameters"),
  10009. default: true
  10010. },
  10011. {
  10012. name: "Universal War",
  10013. height: math.unit(184, "gigaparsecs")
  10014. },
  10015. {
  10016. name: "Eternity War",
  10017. height: math.unit(1.98e55, "yottaparsecs")
  10018. },
  10019. ]
  10020. ))
  10021. characterMakers.push(() => makeCharacter(
  10022. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10023. {
  10024. front: {
  10025. height: math.unit(5 + 8 / 12, "feet"),
  10026. weight: math.unit(63, "kg"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/xavier/front.svg",
  10030. extra: 944 / 883
  10031. }
  10032. },
  10033. frontStretch: {
  10034. height: math.unit(5 + 8 / 12, "feet"),
  10035. weight: math.unit(63, "kg"),
  10036. name: "Stretching",
  10037. image: {
  10038. source: "./media/characters/xavier/front-stretch.svg",
  10039. extra: 962 / 820
  10040. }
  10041. },
  10042. },
  10043. [
  10044. {
  10045. name: "Normal",
  10046. height: math.unit(5 + 8 / 12, "feet")
  10047. },
  10048. {
  10049. name: "Macro",
  10050. height: math.unit(100, "meters"),
  10051. default: true
  10052. },
  10053. {
  10054. name: "McLargeHuge",
  10055. height: math.unit(10, "miles")
  10056. },
  10057. ]
  10058. ))
  10059. characterMakers.push(() => makeCharacter(
  10060. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10061. {
  10062. front: {
  10063. height: math.unit(5 + 5 / 12, "feet"),
  10064. weight: math.unit(150, "lb"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/joshii/front.svg",
  10068. extra: 765 / 653,
  10069. bottom: 51 / 816
  10070. }
  10071. },
  10072. foot: {
  10073. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10074. name: "Foot",
  10075. image: {
  10076. source: "./media/characters/joshii/foot.svg"
  10077. }
  10078. },
  10079. },
  10080. [
  10081. {
  10082. name: "Micro",
  10083. height: math.unit(2, "inches")
  10084. },
  10085. {
  10086. name: "Normal",
  10087. height: math.unit(5 + 5 / 12, "feet")
  10088. },
  10089. {
  10090. name: "Macro",
  10091. height: math.unit(785, "feet"),
  10092. default: true
  10093. },
  10094. {
  10095. name: "Megamacro",
  10096. height: math.unit(24.5, "miles")
  10097. },
  10098. ]
  10099. ))
  10100. characterMakers.push(() => makeCharacter(
  10101. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10102. {
  10103. front: {
  10104. height: math.unit(6, "feet"),
  10105. weight: math.unit(150, "lb"),
  10106. name: "Front",
  10107. image: {
  10108. source: "./media/characters/goddess-elizabeth/front.svg",
  10109. extra: 1800 / 1525,
  10110. bottom: 0.005
  10111. }
  10112. },
  10113. foot: {
  10114. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10115. name: "Foot",
  10116. image: {
  10117. source: "./media/characters/goddess-elizabeth/foot.svg"
  10118. }
  10119. },
  10120. mouth: {
  10121. height: math.unit(6, "feet"),
  10122. name: "Mouth",
  10123. image: {
  10124. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10125. }
  10126. },
  10127. },
  10128. [
  10129. {
  10130. name: "Micro",
  10131. height: math.unit(12, "feet")
  10132. },
  10133. {
  10134. name: "Normal",
  10135. height: math.unit(80, "miles"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Macro",
  10140. height: math.unit(15000, "parsecs")
  10141. },
  10142. ]
  10143. ))
  10144. characterMakers.push(() => makeCharacter(
  10145. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10146. {
  10147. front: {
  10148. height: math.unit(5 + 9 / 12, "feet"),
  10149. weight: math.unit(144, "lb"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/kara/front.svg"
  10153. }
  10154. },
  10155. feet: {
  10156. height: math.unit(6 / 6.765, "feet"),
  10157. name: "Kara's Feet",
  10158. rename: true,
  10159. image: {
  10160. source: "./media/characters/kara/feet.svg"
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(5 + 9 / 12, "feet")
  10168. },
  10169. {
  10170. name: "Macro",
  10171. height: math.unit(174, "feet"),
  10172. default: true
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(18, "feet"),
  10181. weight: math.unit(4050, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/tyrone/front.svg",
  10185. extra: 2405 / 2270,
  10186. bottom: 182 / 2587
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(18, "feet"),
  10194. default: true
  10195. },
  10196. {
  10197. name: "Macro",
  10198. height: math.unit(300, "feet")
  10199. },
  10200. {
  10201. name: "Megamacro",
  10202. height: math.unit(15, "km")
  10203. },
  10204. {
  10205. name: "Gigamacro",
  10206. height: math.unit(500, "km")
  10207. },
  10208. {
  10209. name: "Teramacro",
  10210. height: math.unit(0.5, "gigameters")
  10211. },
  10212. {
  10213. name: "Omnimacro",
  10214. height: math.unit(1e252, "yottauniverse")
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(7 + 8 / 12, "feet"),
  10223. weight: math.unit(120, "lb"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/danny/front.svg",
  10227. extra: 1490 / 1350
  10228. }
  10229. },
  10230. back: {
  10231. height: math.unit(7 + 8 / 12, "feet"),
  10232. weight: math.unit(120, "lb"),
  10233. name: "Back",
  10234. image: {
  10235. source: "./media/characters/danny/back.svg",
  10236. extra: 1490 / 1350
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Normal",
  10243. height: math.unit(7 + 8 / 12, "feet"),
  10244. default: true
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10250. {
  10251. front: {
  10252. height: math.unit(3.5, "inches"),
  10253. weight: math.unit(19, "grams"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/mallow/front.svg",
  10257. extra: 471 / 431
  10258. }
  10259. },
  10260. back: {
  10261. height: math.unit(3.5, "inches"),
  10262. weight: math.unit(19, "grams"),
  10263. name: "Back",
  10264. image: {
  10265. source: "./media/characters/mallow/back.svg",
  10266. extra: 471 / 431
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Normal",
  10273. height: math.unit(3.5, "inches"),
  10274. default: true
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10280. {
  10281. front: {
  10282. height: math.unit(9, "feet"),
  10283. weight: math.unit(230, "kg"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/starry-aqua/front.svg"
  10287. }
  10288. },
  10289. back: {
  10290. height: math.unit(9, "feet"),
  10291. weight: math.unit(230, "kg"),
  10292. name: "Back",
  10293. image: {
  10294. source: "./media/characters/starry-aqua/back.svg"
  10295. }
  10296. },
  10297. hand: {
  10298. height: math.unit(9 * 0.1168, "feet"),
  10299. name: "Hand",
  10300. image: {
  10301. source: "./media/characters/starry-aqua/hand.svg"
  10302. }
  10303. },
  10304. foot: {
  10305. height: math.unit(9 * 0.18, "feet"),
  10306. name: "Foot",
  10307. image: {
  10308. source: "./media/characters/starry-aqua/foot.svg"
  10309. }
  10310. }
  10311. },
  10312. [
  10313. {
  10314. name: "Micro",
  10315. height: math.unit(3, "inches")
  10316. },
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(9, "feet")
  10320. },
  10321. {
  10322. name: "Macro",
  10323. height: math.unit(300, "feet"),
  10324. default: true
  10325. },
  10326. {
  10327. name: "Megamacro",
  10328. height: math.unit(3200, "feet")
  10329. }
  10330. ]
  10331. ))
  10332. characterMakers.push(() => makeCharacter(
  10333. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10334. {
  10335. front: {
  10336. height: math.unit(15, "feet"),
  10337. weight: math.unit(5026, "lb"),
  10338. name: "Front",
  10339. image: {
  10340. source: "./media/characters/luka-towers/front.svg",
  10341. extra: 1269/1133,
  10342. bottom: 51/1320
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Normal",
  10349. height: math.unit(15, "feet"),
  10350. default: true
  10351. },
  10352. {
  10353. name: "Minimacro",
  10354. height: math.unit(25, "feet")
  10355. },
  10356. {
  10357. name: "Macro",
  10358. height: math.unit(320, "feet")
  10359. },
  10360. {
  10361. name: "Megamacro",
  10362. height: math.unit(35000, "feet")
  10363. },
  10364. {
  10365. name: "Gigamacro",
  10366. height: math.unit(4000, "miles")
  10367. },
  10368. {
  10369. name: "Teramacro",
  10370. height: math.unit(15000, "miles")
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(6, "feet"),
  10379. weight: math.unit(150, "lb"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/natalie-nightring/front.svg",
  10383. extra: 1,
  10384. bottom: 0.06
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Uh Oh",
  10391. height: math.unit(0.1, "mm")
  10392. },
  10393. {
  10394. name: "Small",
  10395. height: math.unit(3, "inches")
  10396. },
  10397. {
  10398. name: "Human Scale",
  10399. height: math.unit(6, "feet")
  10400. },
  10401. {
  10402. name: "Librarian",
  10403. height: math.unit(50, "feet"),
  10404. default: true
  10405. },
  10406. {
  10407. name: "Immense",
  10408. height: math.unit(200, "miles")
  10409. },
  10410. ]
  10411. ))
  10412. characterMakers.push(() => makeCharacter(
  10413. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10414. {
  10415. front: {
  10416. height: math.unit(6, "feet"),
  10417. weight: math.unit(180, "lbs"),
  10418. name: "Front",
  10419. image: {
  10420. source: "./media/characters/danni-rosie/front.svg",
  10421. extra: 1260 / 1128,
  10422. bottom: 0.022
  10423. }
  10424. },
  10425. },
  10426. [
  10427. {
  10428. name: "Micro",
  10429. height: math.unit(2, "inches"),
  10430. default: true
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10436. {
  10437. front: {
  10438. height: math.unit(5 + 9 / 12, "feet"),
  10439. weight: math.unit(220, "lb"),
  10440. name: "Front",
  10441. image: {
  10442. source: "./media/characters/samantha-kruse/front.svg",
  10443. extra: (985 / 935),
  10444. bottom: 0.03
  10445. }
  10446. },
  10447. frontUndressed: {
  10448. height: math.unit(5 + 9 / 12, "feet"),
  10449. weight: math.unit(220, "lb"),
  10450. name: "Front (Undressed)",
  10451. image: {
  10452. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10453. extra: (973 / 923),
  10454. bottom: 0.025
  10455. }
  10456. },
  10457. fat: {
  10458. height: math.unit(5 + 9 / 12, "feet"),
  10459. weight: math.unit(900, "lb"),
  10460. name: "Front (Fat)",
  10461. image: {
  10462. source: "./media/characters/samantha-kruse/fat.svg",
  10463. extra: 2688 / 2561
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Normal",
  10470. height: math.unit(5 + 9 / 12, "feet"),
  10471. default: true
  10472. }
  10473. ]
  10474. ))
  10475. characterMakers.push(() => makeCharacter(
  10476. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10477. {
  10478. back: {
  10479. height: math.unit(5 + 4 / 12, "feet"),
  10480. weight: math.unit(4963, "lb"),
  10481. name: "Back",
  10482. image: {
  10483. source: "./media/characters/amelia-rosie/back.svg",
  10484. extra: 1113 / 963,
  10485. bottom: 0.01
  10486. }
  10487. },
  10488. },
  10489. [
  10490. {
  10491. name: "Level 0",
  10492. height: math.unit(5 + 4 / 12, "feet")
  10493. },
  10494. {
  10495. name: "Level 1",
  10496. height: math.unit(164597, "feet"),
  10497. default: true
  10498. },
  10499. {
  10500. name: "Level 2",
  10501. height: math.unit(956243, "miles")
  10502. },
  10503. {
  10504. name: "Level 3",
  10505. height: math.unit(29421709423, "miles")
  10506. },
  10507. {
  10508. name: "Level 4",
  10509. height: math.unit(154, "lightyears")
  10510. },
  10511. {
  10512. name: "Level 5",
  10513. height: math.unit(4738272, "lightyears")
  10514. },
  10515. {
  10516. name: "Level 6",
  10517. height: math.unit(145787152896, "lightyears")
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(5 + 11 / 12, "feet"),
  10526. weight: math.unit(65, "kg"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/rook-kitara/front.svg",
  10530. extra: 1347 / 1274,
  10531. bottom: 0.005
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Totally Unfair",
  10538. height: math.unit(1.8, "mm")
  10539. },
  10540. {
  10541. name: "Lap Rookie",
  10542. height: math.unit(1.4, "feet")
  10543. },
  10544. {
  10545. name: "Normal",
  10546. height: math.unit(5 + 11 / 12, "feet"),
  10547. default: true
  10548. },
  10549. {
  10550. name: "How Did This Happen",
  10551. height: math.unit(80, "miles")
  10552. }
  10553. ]
  10554. ))
  10555. characterMakers.push(() => makeCharacter(
  10556. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10557. {
  10558. front: {
  10559. height: math.unit(7, "feet"),
  10560. weight: math.unit(300, "lb"),
  10561. name: "Front",
  10562. image: {
  10563. source: "./media/characters/pisces/front.svg",
  10564. extra: 2255 / 2115,
  10565. bottom: 0.03
  10566. }
  10567. },
  10568. back: {
  10569. height: math.unit(7, "feet"),
  10570. weight: math.unit(300, "lb"),
  10571. name: "Back",
  10572. image: {
  10573. source: "./media/characters/pisces/back.svg",
  10574. extra: 2146 / 2055,
  10575. bottom: 0.04
  10576. }
  10577. },
  10578. },
  10579. [
  10580. {
  10581. name: "Normal",
  10582. height: math.unit(7, "feet"),
  10583. default: true
  10584. },
  10585. {
  10586. name: "Swimming Pool",
  10587. height: math.unit(12.2, "meters")
  10588. },
  10589. {
  10590. name: "Olympic Swimming Pool",
  10591. height: math.unit(56.3, "meters")
  10592. },
  10593. {
  10594. name: "Lake Superior",
  10595. height: math.unit(93900, "meters")
  10596. },
  10597. {
  10598. name: "Mediterranean Sea",
  10599. height: math.unit(644457, "meters")
  10600. },
  10601. {
  10602. name: "World's Oceans",
  10603. height: math.unit(4567491, "meters")
  10604. },
  10605. ]
  10606. ))
  10607. characterMakers.push(() => makeCharacter(
  10608. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10609. {
  10610. front: {
  10611. height: math.unit(2.3, "meters"),
  10612. weight: math.unit(120, "kg"),
  10613. name: "Front",
  10614. image: {
  10615. source: "./media/characters/zelas/front.svg"
  10616. }
  10617. },
  10618. side: {
  10619. height: math.unit(2.3, "meters"),
  10620. weight: math.unit(120, "kg"),
  10621. name: "Side",
  10622. image: {
  10623. source: "./media/characters/zelas/side.svg"
  10624. }
  10625. },
  10626. back: {
  10627. height: math.unit(2.3, "meters"),
  10628. weight: math.unit(120, "kg"),
  10629. name: "Back",
  10630. image: {
  10631. source: "./media/characters/zelas/back.svg"
  10632. }
  10633. },
  10634. foot: {
  10635. height: math.unit(1.116, "feet"),
  10636. name: "Foot",
  10637. image: {
  10638. source: "./media/characters/zelas/foot.svg"
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(2.3, "meters")
  10646. },
  10647. {
  10648. name: "Macro",
  10649. height: math.unit(30, "meters"),
  10650. default: true
  10651. },
  10652. ]
  10653. ))
  10654. characterMakers.push(() => makeCharacter(
  10655. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10656. {
  10657. front: {
  10658. height: math.unit(1, "inch"),
  10659. weight: math.unit(0.21, "grams"),
  10660. name: "Front",
  10661. image: {
  10662. source: "./media/characters/talbot/front.svg",
  10663. extra: 594 / 544
  10664. }
  10665. },
  10666. },
  10667. [
  10668. {
  10669. name: "Micro",
  10670. height: math.unit(1, "inch"),
  10671. default: true
  10672. },
  10673. ]
  10674. ))
  10675. characterMakers.push(() => makeCharacter(
  10676. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10677. {
  10678. front: {
  10679. height: math.unit(3 + 3 / 12, "feet"),
  10680. weight: math.unit(51.8, "lb"),
  10681. name: "Front",
  10682. image: {
  10683. source: "./media/characters/fliss/front.svg",
  10684. extra: 840 / 640
  10685. }
  10686. },
  10687. },
  10688. [
  10689. {
  10690. name: "Teeny Tiny",
  10691. height: math.unit(1, "mm")
  10692. },
  10693. {
  10694. name: "Small",
  10695. height: math.unit(1, "inch"),
  10696. default: true
  10697. },
  10698. {
  10699. name: "Standard Sylveon",
  10700. height: math.unit(3 + 3 / 12, "feet")
  10701. },
  10702. {
  10703. name: "Large Nuisance",
  10704. height: math.unit(33, "feet")
  10705. },
  10706. {
  10707. name: "City Filler",
  10708. height: math.unit(3000, "feet")
  10709. },
  10710. {
  10711. name: "New Horizon",
  10712. height: math.unit(6000, "miles")
  10713. },
  10714. ]
  10715. ))
  10716. characterMakers.push(() => makeCharacter(
  10717. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10718. {
  10719. front: {
  10720. height: math.unit(5, "cm"),
  10721. weight: math.unit(1.94, "g"),
  10722. name: "Front",
  10723. image: {
  10724. source: "./media/characters/fleta/front.svg",
  10725. extra: 835 / 803
  10726. }
  10727. },
  10728. back: {
  10729. height: math.unit(5, "cm"),
  10730. weight: math.unit(1.94, "g"),
  10731. name: "Back",
  10732. image: {
  10733. source: "./media/characters/fleta/back.svg",
  10734. extra: 835 / 803
  10735. }
  10736. },
  10737. },
  10738. [
  10739. {
  10740. name: "Micro",
  10741. height: math.unit(5, "cm"),
  10742. default: true
  10743. },
  10744. ]
  10745. ))
  10746. characterMakers.push(() => makeCharacter(
  10747. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10748. {
  10749. front: {
  10750. height: math.unit(6, "feet"),
  10751. weight: math.unit(225, "lb"),
  10752. name: "Front",
  10753. image: {
  10754. source: "./media/characters/dominic/front.svg",
  10755. extra: 1770 / 1620,
  10756. bottom: 0.025
  10757. }
  10758. },
  10759. back: {
  10760. height: math.unit(6, "feet"),
  10761. weight: math.unit(225, "lb"),
  10762. name: "Back",
  10763. image: {
  10764. source: "./media/characters/dominic/back.svg",
  10765. extra: 1745 / 1620,
  10766. bottom: 0.065
  10767. }
  10768. },
  10769. },
  10770. [
  10771. {
  10772. name: "Nano",
  10773. height: math.unit(0.1, "mm")
  10774. },
  10775. {
  10776. name: "Micro-",
  10777. height: math.unit(1, "mm")
  10778. },
  10779. {
  10780. name: "Micro",
  10781. height: math.unit(4, "inches")
  10782. },
  10783. {
  10784. name: "Normal",
  10785. height: math.unit(6 + 4 / 12, "feet"),
  10786. default: true
  10787. },
  10788. {
  10789. name: "Macro",
  10790. height: math.unit(115, "feet")
  10791. },
  10792. {
  10793. name: "Macro+",
  10794. height: math.unit(955, "feet")
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(8990, "feet")
  10799. },
  10800. {
  10801. name: "Gigmacro",
  10802. height: math.unit(9310, "miles")
  10803. },
  10804. {
  10805. name: "Teramacro",
  10806. height: math.unit(1567005010, "miles")
  10807. },
  10808. {
  10809. name: "Examacro",
  10810. height: math.unit(1425, "parsecs")
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(400, "feet"),
  10819. weight: math.unit(44444444, "lb"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/major-colonel/front.svg"
  10823. }
  10824. },
  10825. back: {
  10826. height: math.unit(400, "feet"),
  10827. weight: math.unit(44444444, "lb"),
  10828. name: "Back",
  10829. image: {
  10830. source: "./media/characters/major-colonel/back.svg"
  10831. }
  10832. },
  10833. },
  10834. [
  10835. {
  10836. name: "Macro",
  10837. height: math.unit(400, "feet"),
  10838. default: true
  10839. },
  10840. ]
  10841. ))
  10842. characterMakers.push(() => makeCharacter(
  10843. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10844. {
  10845. catFront: {
  10846. height: math.unit(6, "feet"),
  10847. weight: math.unit(120, "lb"),
  10848. name: "Front (Cat Side)",
  10849. image: {
  10850. source: "./media/characters/axel-lycan/cat-front.svg",
  10851. extra: 430 / 402,
  10852. bottom: 43 / 472.35
  10853. }
  10854. },
  10855. catBack: {
  10856. height: math.unit(6, "feet"),
  10857. weight: math.unit(120, "lb"),
  10858. name: "Back (Cat Side)",
  10859. image: {
  10860. source: "./media/characters/axel-lycan/cat-back.svg",
  10861. extra: 447 / 419,
  10862. bottom: 23.3 / 469
  10863. }
  10864. },
  10865. wolfFront: {
  10866. height: math.unit(6, "feet"),
  10867. weight: math.unit(120, "lb"),
  10868. name: "Front (Wolf Side)",
  10869. image: {
  10870. source: "./media/characters/axel-lycan/wolf-front.svg",
  10871. extra: 485 / 456,
  10872. bottom: 19 / 504
  10873. }
  10874. },
  10875. wolfBack: {
  10876. height: math.unit(6, "feet"),
  10877. weight: math.unit(120, "lb"),
  10878. name: "Back (Wolf Side)",
  10879. image: {
  10880. source: "./media/characters/axel-lycan/wolf-back.svg",
  10881. extra: 475 / 438,
  10882. bottom: 39.2 / 514
  10883. }
  10884. },
  10885. },
  10886. [
  10887. {
  10888. name: "Macro",
  10889. height: math.unit(1, "km"),
  10890. default: true
  10891. },
  10892. ]
  10893. ))
  10894. characterMakers.push(() => makeCharacter(
  10895. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10896. {
  10897. front: {
  10898. height: math.unit(5 + 9 / 12, "feet"),
  10899. weight: math.unit(175, "lb"),
  10900. name: "Front",
  10901. image: {
  10902. source: "./media/characters/vanrel-hyena/front.svg",
  10903. extra: 1086 / 1010,
  10904. bottom: 0.04
  10905. }
  10906. },
  10907. },
  10908. [
  10909. {
  10910. name: "Normal",
  10911. height: math.unit(5 + 9 / 12, "feet"),
  10912. default: true
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(6, "feet"),
  10921. weight: math.unit(103, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/abbott-absol/front.svg",
  10925. extra: 765/694,
  10926. bottom: 47/812
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Megamicro",
  10933. height: math.unit(0.1, "mm")
  10934. },
  10935. {
  10936. name: "Micro",
  10937. height: math.unit(1, "inch")
  10938. },
  10939. {
  10940. name: "Normal",
  10941. height: math.unit(6, "feet"),
  10942. default: true
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(264, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/hector/front.svg",
  10955. extra: 2280 / 2130,
  10956. bottom: 0.07
  10957. }
  10958. },
  10959. },
  10960. [
  10961. {
  10962. name: "Normal",
  10963. height: math.unit(12.25, "foot"),
  10964. default: true
  10965. },
  10966. {
  10967. name: "Macro",
  10968. height: math.unit(160, "feet")
  10969. },
  10970. ]
  10971. ))
  10972. characterMakers.push(() => makeCharacter(
  10973. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10974. {
  10975. front: {
  10976. height: math.unit(6, "feet"),
  10977. weight: math.unit(150, "lb"),
  10978. name: "Front",
  10979. image: {
  10980. source: "./media/characters/sal/front.svg",
  10981. extra: 1846 / 1699,
  10982. bottom: 0.04
  10983. }
  10984. },
  10985. },
  10986. [
  10987. {
  10988. name: "Megamacro",
  10989. height: math.unit(10, "miles"),
  10990. default: true
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10996. {
  10997. front: {
  10998. height: math.unit(3, "meters"),
  10999. weight: math.unit(450, "kg"),
  11000. name: "front",
  11001. image: {
  11002. source: "./media/characters/ranger/front.svg",
  11003. extra: 2401 / 2243,
  11004. bottom: 0.05
  11005. }
  11006. },
  11007. },
  11008. [
  11009. {
  11010. name: "Normal",
  11011. height: math.unit(3, "meters"),
  11012. default: true
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11018. {
  11019. front: {
  11020. height: math.unit(14, "feet"),
  11021. weight: math.unit(800, "kg"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/theresa/front.svg",
  11025. extra: 3575 / 3346,
  11026. bottom: 0.03
  11027. }
  11028. },
  11029. },
  11030. [
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(14, "feet"),
  11034. default: true
  11035. },
  11036. ]
  11037. ))
  11038. characterMakers.push(() => makeCharacter(
  11039. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11040. {
  11041. front: {
  11042. height: math.unit(6, "feet"),
  11043. weight: math.unit(3, "kg"),
  11044. name: "Front",
  11045. image: {
  11046. source: "./media/characters/ine/front.svg",
  11047. extra: 678 / 539,
  11048. bottom: 0.023
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(2.265, "feet"),
  11056. default: true
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(5, "feet"),
  11065. weight: math.unit(30, "kg"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/vial/front.svg",
  11069. extra: 1365 / 1277,
  11070. bottom: 0.04
  11071. }
  11072. },
  11073. },
  11074. [
  11075. {
  11076. name: "Normal",
  11077. height: math.unit(5, "feet"),
  11078. default: true
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11084. {
  11085. side: {
  11086. height: math.unit(3.4, "meters"),
  11087. weight: math.unit(1000, "lb"),
  11088. name: "Side",
  11089. image: {
  11090. source: "./media/characters/rovoska/side.svg",
  11091. extra: 4403 / 1515
  11092. }
  11093. },
  11094. },
  11095. [
  11096. {
  11097. name: "Normal",
  11098. height: math.unit(3.4, "meters"),
  11099. default: true
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(8, "feet"),
  11108. weight: math.unit(315, "lb"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/gunner-rotthbauer/front.svg"
  11112. }
  11113. },
  11114. back: {
  11115. height: math.unit(8, "feet"),
  11116. weight: math.unit(315, "lb"),
  11117. name: "Back",
  11118. image: {
  11119. source: "./media/characters/gunner-rotthbauer/back.svg"
  11120. }
  11121. },
  11122. },
  11123. [
  11124. {
  11125. name: "Micro",
  11126. height: math.unit(3.5, "inches")
  11127. },
  11128. {
  11129. name: "Normal",
  11130. height: math.unit(8, "feet"),
  11131. default: true
  11132. },
  11133. {
  11134. name: "Macro",
  11135. height: math.unit(250, "feet")
  11136. },
  11137. {
  11138. name: "Megamacro",
  11139. height: math.unit(1, "AU")
  11140. },
  11141. ]
  11142. ))
  11143. characterMakers.push(() => makeCharacter(
  11144. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11145. {
  11146. front: {
  11147. height: math.unit(5 + 5 / 12, "feet"),
  11148. weight: math.unit(140, "lb"),
  11149. name: "Front",
  11150. image: {
  11151. source: "./media/characters/allatia/front.svg",
  11152. extra: 1227 / 1180,
  11153. bottom: 0.027
  11154. }
  11155. },
  11156. },
  11157. [
  11158. {
  11159. name: "Normal",
  11160. height: math.unit(5 + 5 / 12, "feet")
  11161. },
  11162. {
  11163. name: "Macro",
  11164. height: math.unit(250, "feet"),
  11165. default: true
  11166. },
  11167. {
  11168. name: "Megamacro",
  11169. height: math.unit(8, "miles")
  11170. }
  11171. ]
  11172. ))
  11173. characterMakers.push(() => makeCharacter(
  11174. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11175. {
  11176. front: {
  11177. height: math.unit(6, "feet"),
  11178. weight: math.unit(120, "lb"),
  11179. name: "Front",
  11180. image: {
  11181. source: "./media/characters/tene/front.svg",
  11182. extra: 814/750,
  11183. bottom: 36/850
  11184. }
  11185. },
  11186. stomping: {
  11187. height: math.unit(2.025, "meters"),
  11188. weight: math.unit(120, "lb"),
  11189. name: "Stomping",
  11190. image: {
  11191. source: "./media/characters/tene/stomping.svg",
  11192. extra: 885/821,
  11193. bottom: 15/900
  11194. }
  11195. },
  11196. sitting: {
  11197. height: math.unit(1, "meter"),
  11198. weight: math.unit(120, "lb"),
  11199. name: "Sitting",
  11200. image: {
  11201. source: "./media/characters/tene/sitting.svg",
  11202. extra: 396/366,
  11203. bottom: 79/475
  11204. }
  11205. },
  11206. smiling: {
  11207. height: math.unit(1.2, "feet"),
  11208. name: "Smiling",
  11209. image: {
  11210. source: "./media/characters/tene/smiling.svg",
  11211. extra: 1364/1071,
  11212. bottom: 0/1364
  11213. }
  11214. },
  11215. smug: {
  11216. height: math.unit(1.3, "feet"),
  11217. name: "Smug",
  11218. image: {
  11219. source: "./media/characters/tene/smug.svg",
  11220. extra: 1323/1082,
  11221. bottom: 0/1323
  11222. }
  11223. },
  11224. feral: {
  11225. height: math.unit(3.9, "feet"),
  11226. weight: math.unit(250, "lb"),
  11227. name: "Feral",
  11228. image: {
  11229. source: "./media/characters/tene/feral.svg",
  11230. extra: 717 / 458,
  11231. bottom: 0.179
  11232. }
  11233. },
  11234. },
  11235. [
  11236. {
  11237. name: "Normal",
  11238. height: math.unit(6, "feet")
  11239. },
  11240. {
  11241. name: "Macro",
  11242. height: math.unit(300, "feet"),
  11243. default: true
  11244. },
  11245. {
  11246. name: "Megamacro",
  11247. height: math.unit(5, "miles")
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11253. {
  11254. side: {
  11255. height: math.unit(6, "feet"),
  11256. name: "Side",
  11257. image: {
  11258. source: "./media/characters/evander/side.svg",
  11259. extra: 877 / 477
  11260. }
  11261. },
  11262. },
  11263. [
  11264. {
  11265. name: "Normal",
  11266. height: math.unit(0.83, "meters"),
  11267. default: true
  11268. },
  11269. ]
  11270. ))
  11271. characterMakers.push(() => makeCharacter(
  11272. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11273. {
  11274. front: {
  11275. height: math.unit(12, "feet"),
  11276. weight: math.unit(1000, "lb"),
  11277. name: "Front",
  11278. image: {
  11279. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11280. extra: 1762 / 1611
  11281. }
  11282. },
  11283. back: {
  11284. height: math.unit(12, "feet"),
  11285. weight: math.unit(1000, "lb"),
  11286. name: "Back",
  11287. image: {
  11288. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11289. extra: 1762 / 1611
  11290. }
  11291. },
  11292. },
  11293. [
  11294. {
  11295. name: "Normal",
  11296. height: math.unit(12, "feet"),
  11297. default: true
  11298. },
  11299. {
  11300. name: "Kaiju",
  11301. height: math.unit(150, "feet")
  11302. },
  11303. ]
  11304. ))
  11305. characterMakers.push(() => makeCharacter(
  11306. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11307. {
  11308. front: {
  11309. height: math.unit(6, "feet"),
  11310. weight: math.unit(150, "lb"),
  11311. name: "Front",
  11312. image: {
  11313. source: "./media/characters/zero-alurus/front.svg"
  11314. }
  11315. },
  11316. back: {
  11317. height: math.unit(6, "feet"),
  11318. weight: math.unit(150, "lb"),
  11319. name: "Back",
  11320. image: {
  11321. source: "./media/characters/zero-alurus/back.svg"
  11322. }
  11323. },
  11324. },
  11325. [
  11326. {
  11327. name: "Normal",
  11328. height: math.unit(5 + 10 / 12, "feet")
  11329. },
  11330. {
  11331. name: "Macro",
  11332. height: math.unit(60, "feet"),
  11333. default: true
  11334. },
  11335. {
  11336. name: "Macro+",
  11337. height: math.unit(450, "feet")
  11338. },
  11339. ]
  11340. ))
  11341. characterMakers.push(() => makeCharacter(
  11342. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11343. {
  11344. front: {
  11345. height: math.unit(6, "feet"),
  11346. weight: math.unit(200, "lb"),
  11347. name: "Front",
  11348. image: {
  11349. source: "./media/characters/mega-shi/front.svg",
  11350. extra: 1279 / 1250,
  11351. bottom: 0.02
  11352. }
  11353. },
  11354. back: {
  11355. height: math.unit(6, "feet"),
  11356. weight: math.unit(200, "lb"),
  11357. name: "Back",
  11358. image: {
  11359. source: "./media/characters/mega-shi/back.svg",
  11360. extra: 1279 / 1250,
  11361. bottom: 0.02
  11362. }
  11363. },
  11364. },
  11365. [
  11366. {
  11367. name: "Micro",
  11368. height: math.unit(16 + 6 / 12, "feet")
  11369. },
  11370. {
  11371. name: "Third Dimension",
  11372. height: math.unit(40, "meters")
  11373. },
  11374. {
  11375. name: "Normal",
  11376. height: math.unit(660, "feet"),
  11377. default: true
  11378. },
  11379. {
  11380. name: "Megamacro",
  11381. height: math.unit(10, "miles")
  11382. },
  11383. {
  11384. name: "Planetary Launch",
  11385. height: math.unit(500, "miles")
  11386. },
  11387. {
  11388. name: "Interstellar",
  11389. height: math.unit(1e9, "miles")
  11390. },
  11391. {
  11392. name: "Leaving the Universe",
  11393. height: math.unit(1, "gigaparsec")
  11394. },
  11395. {
  11396. name: "Travelling Universes",
  11397. height: math.unit(30e15, "parsecs")
  11398. },
  11399. ]
  11400. ))
  11401. characterMakers.push(() => makeCharacter(
  11402. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11403. {
  11404. front: {
  11405. height: math.unit(5 + 4/12, "feet"),
  11406. weight: math.unit(120, "lb"),
  11407. name: "Front",
  11408. image: {
  11409. source: "./media/characters/odyssey/front.svg",
  11410. extra: 1747/1571,
  11411. bottom: 47/1794
  11412. }
  11413. },
  11414. side: {
  11415. height: math.unit(5.1, "feet"),
  11416. weight: math.unit(120, "lb"),
  11417. name: "Side",
  11418. image: {
  11419. source: "./media/characters/odyssey/side.svg",
  11420. extra: 1847/1619,
  11421. bottom: 47/1894
  11422. }
  11423. },
  11424. lounging: {
  11425. height: math.unit(1.464, "feet"),
  11426. weight: math.unit(120, "lb"),
  11427. name: "Lounging",
  11428. image: {
  11429. source: "./media/characters/odyssey/lounging.svg",
  11430. extra: 1235/837,
  11431. bottom: 551/1786
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Normal",
  11438. height: math.unit(5 + 4 / 12, "feet")
  11439. },
  11440. {
  11441. name: "Macro",
  11442. height: math.unit(1, "km")
  11443. },
  11444. {
  11445. name: "Megamacro",
  11446. height: math.unit(3000, "km")
  11447. },
  11448. {
  11449. name: "Gigamacro",
  11450. height: math.unit(1, "AU"),
  11451. default: true
  11452. },
  11453. {
  11454. name: "Omniversal",
  11455. height: math.unit(100e14, "lightyears")
  11456. },
  11457. ]
  11458. ))
  11459. characterMakers.push(() => makeCharacter(
  11460. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11461. {
  11462. front: {
  11463. height: math.unit(5 + 10/12, "feet"),
  11464. name: "Front",
  11465. image: {
  11466. source: "./media/characters/mekuto/front.svg",
  11467. extra: 875/835,
  11468. bottom: 46/921
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Minimicro",
  11475. height: math.unit(0.2, "inches")
  11476. },
  11477. {
  11478. name: "Micro",
  11479. height: math.unit(1.5, "inches")
  11480. },
  11481. {
  11482. name: "Normal",
  11483. height: math.unit(5 + 10 / 12, "feet"),
  11484. default: true
  11485. },
  11486. {
  11487. name: "Minimacro",
  11488. height: math.unit(17 + 9 / 12, "feet")
  11489. },
  11490. {
  11491. name: "Macro",
  11492. height: math.unit(177.5, "feet")
  11493. },
  11494. {
  11495. name: "Megamacro",
  11496. height: math.unit(152, "miles")
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(6.5, "inches"),
  11505. weight: math.unit(13, "oz"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/dafydd-tomos/front.svg",
  11509. extra: 2990 / 2603,
  11510. bottom: 0.03
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Micro",
  11517. height: math.unit(6.5, "inches"),
  11518. default: true
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11524. {
  11525. front: {
  11526. height: math.unit(6, "feet"),
  11527. weight: math.unit(150, "lb"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/splinter/front.svg",
  11531. extra: 2990 / 2882,
  11532. bottom: 0.04
  11533. }
  11534. },
  11535. back: {
  11536. height: math.unit(6, "feet"),
  11537. weight: math.unit(150, "lb"),
  11538. name: "Back",
  11539. image: {
  11540. source: "./media/characters/splinter/back.svg",
  11541. extra: 2990 / 2882,
  11542. bottom: 0.04
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Normal",
  11549. height: math.unit(6, "feet")
  11550. },
  11551. {
  11552. name: "Macro",
  11553. height: math.unit(230, "meters"),
  11554. default: true
  11555. },
  11556. ]
  11557. ))
  11558. characterMakers.push(() => makeCharacter(
  11559. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11560. {
  11561. front: {
  11562. height: math.unit(4 + 10 / 12, "feet"),
  11563. weight: math.unit(480, "lb"),
  11564. name: "Front",
  11565. image: {
  11566. source: "./media/characters/snow-gabumon/front.svg",
  11567. extra: 1140 / 963,
  11568. bottom: 0.058
  11569. }
  11570. },
  11571. back: {
  11572. height: math.unit(4 + 10 / 12, "feet"),
  11573. weight: math.unit(480, "lb"),
  11574. name: "Back",
  11575. image: {
  11576. source: "./media/characters/snow-gabumon/back.svg",
  11577. extra: 1115 / 962,
  11578. bottom: 0.041
  11579. }
  11580. },
  11581. frontUndresed: {
  11582. height: math.unit(4 + 10 / 12, "feet"),
  11583. weight: math.unit(480, "lb"),
  11584. name: "Front (Undressed)",
  11585. image: {
  11586. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11587. extra: 1061 / 960,
  11588. bottom: 0.045
  11589. }
  11590. },
  11591. },
  11592. [
  11593. {
  11594. name: "Micro",
  11595. height: math.unit(1, "inch")
  11596. },
  11597. {
  11598. name: "Normal",
  11599. height: math.unit(4 + 10 / 12, "feet"),
  11600. default: true
  11601. },
  11602. {
  11603. name: "Macro",
  11604. height: math.unit(200, "feet")
  11605. },
  11606. {
  11607. name: "Megamacro",
  11608. height: math.unit(120, "miles")
  11609. },
  11610. {
  11611. name: "Gigamacro",
  11612. height: math.unit(9800, "miles")
  11613. },
  11614. ]
  11615. ))
  11616. characterMakers.push(() => makeCharacter(
  11617. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11618. {
  11619. front: {
  11620. height: math.unit(1.7, "meters"),
  11621. weight: math.unit(140, "lb"),
  11622. name: "Front",
  11623. image: {
  11624. source: "./media/characters/moody/front.svg",
  11625. extra: 3226 / 3007,
  11626. bottom: 0.087
  11627. }
  11628. },
  11629. },
  11630. [
  11631. {
  11632. name: "Micro",
  11633. height: math.unit(1, "mm")
  11634. },
  11635. {
  11636. name: "Normal",
  11637. height: math.unit(1.7, "meters"),
  11638. default: true
  11639. },
  11640. {
  11641. name: "Macro",
  11642. height: math.unit(80, "meters")
  11643. },
  11644. {
  11645. name: "Macro+",
  11646. height: math.unit(500, "meters")
  11647. },
  11648. ]
  11649. ))
  11650. characterMakers.push(() => makeCharacter(
  11651. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11652. {
  11653. front: {
  11654. height: math.unit(6, "feet"),
  11655. weight: math.unit(150, "lb"),
  11656. name: "Front",
  11657. image: {
  11658. source: "./media/characters/zyas/front.svg",
  11659. extra: 1180 / 1120,
  11660. bottom: 0.045
  11661. }
  11662. },
  11663. },
  11664. [
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(10, "feet"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(500, "feet")
  11673. },
  11674. {
  11675. name: "Megamacro",
  11676. height: math.unit(5, "miles")
  11677. },
  11678. {
  11679. name: "Teramacro",
  11680. height: math.unit(150000, "miles")
  11681. },
  11682. ]
  11683. ))
  11684. characterMakers.push(() => makeCharacter(
  11685. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11686. {
  11687. front: {
  11688. height: math.unit(6, "feet"),
  11689. weight: math.unit(150, "lb"),
  11690. name: "Front",
  11691. image: {
  11692. source: "./media/characters/cuon/front.svg",
  11693. extra: 1390 / 1320,
  11694. bottom: 0.008
  11695. }
  11696. },
  11697. },
  11698. [
  11699. {
  11700. name: "Micro",
  11701. height: math.unit(3, "inches")
  11702. },
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(18 + 9 / 12, "feet"),
  11706. default: true
  11707. },
  11708. {
  11709. name: "Macro",
  11710. height: math.unit(360, "feet")
  11711. },
  11712. {
  11713. name: "Megamacro",
  11714. height: math.unit(360, "miles")
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11720. {
  11721. front: {
  11722. height: math.unit(2.4, "meters"),
  11723. weight: math.unit(70, "kg"),
  11724. name: "Front",
  11725. image: {
  11726. source: "./media/characters/nyanuxk/front.svg",
  11727. extra: 1172 / 1084,
  11728. bottom: 0.065
  11729. }
  11730. },
  11731. side: {
  11732. height: math.unit(2.4, "meters"),
  11733. weight: math.unit(70, "kg"),
  11734. name: "Side",
  11735. image: {
  11736. source: "./media/characters/nyanuxk/side.svg",
  11737. extra: 1190 / 1132,
  11738. bottom: 0.007
  11739. }
  11740. },
  11741. back: {
  11742. height: math.unit(2.4, "meters"),
  11743. weight: math.unit(70, "kg"),
  11744. name: "Back",
  11745. image: {
  11746. source: "./media/characters/nyanuxk/back.svg",
  11747. extra: 1200 / 1141,
  11748. bottom: 0.015
  11749. }
  11750. },
  11751. foot: {
  11752. height: math.unit(0.52, "meters"),
  11753. name: "Foot",
  11754. image: {
  11755. source: "./media/characters/nyanuxk/foot.svg"
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Micro",
  11762. height: math.unit(2, "cm")
  11763. },
  11764. {
  11765. name: "Normal",
  11766. height: math.unit(2.4, "meters"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Smaller Macro",
  11771. height: math.unit(120, "meters")
  11772. },
  11773. {
  11774. name: "Bigger Macro",
  11775. height: math.unit(1.2, "km")
  11776. },
  11777. {
  11778. name: "Megamacro",
  11779. height: math.unit(15, "kilometers")
  11780. },
  11781. {
  11782. name: "Gigamacro",
  11783. height: math.unit(2000, "km")
  11784. },
  11785. {
  11786. name: "Teramacro",
  11787. height: math.unit(500000, "km")
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11793. {
  11794. side: {
  11795. height: math.unit(6, "feet"),
  11796. name: "Side",
  11797. image: {
  11798. source: "./media/characters/ailbhe/side.svg",
  11799. extra: 757 / 464,
  11800. bottom: 0.041
  11801. }
  11802. },
  11803. },
  11804. [
  11805. {
  11806. name: "Normal",
  11807. height: math.unit(1.07, "meters"),
  11808. default: true
  11809. },
  11810. ]
  11811. ))
  11812. characterMakers.push(() => makeCharacter(
  11813. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11814. {
  11815. front: {
  11816. height: math.unit(6, "feet"),
  11817. weight: math.unit(120, "kg"),
  11818. name: "Front",
  11819. image: {
  11820. source: "./media/characters/zevulfius/front.svg",
  11821. extra: 965 / 903
  11822. }
  11823. },
  11824. side: {
  11825. height: math.unit(6, "feet"),
  11826. weight: math.unit(120, "kg"),
  11827. name: "Side",
  11828. image: {
  11829. source: "./media/characters/zevulfius/side.svg",
  11830. extra: 939 / 900
  11831. }
  11832. },
  11833. back: {
  11834. height: math.unit(6, "feet"),
  11835. weight: math.unit(120, "kg"),
  11836. name: "Back",
  11837. image: {
  11838. source: "./media/characters/zevulfius/back.svg",
  11839. extra: 918 / 854,
  11840. bottom: 0.005
  11841. }
  11842. },
  11843. foot: {
  11844. height: math.unit(6 / 3.72, "feet"),
  11845. name: "Foot",
  11846. image: {
  11847. source: "./media/characters/zevulfius/foot.svg"
  11848. }
  11849. },
  11850. },
  11851. [
  11852. {
  11853. name: "Macro",
  11854. height: math.unit(750, "meters")
  11855. },
  11856. {
  11857. name: "Megamacro",
  11858. height: math.unit(20, "km"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Gigamacro",
  11863. height: math.unit(2000, "km")
  11864. },
  11865. {
  11866. name: "Teramacro",
  11867. height: math.unit(250000, "km")
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11873. {
  11874. front: {
  11875. height: math.unit(100, "feet"),
  11876. weight: math.unit(350, "kg"),
  11877. name: "Front",
  11878. image: {
  11879. source: "./media/characters/rikes/front.svg",
  11880. extra: 1565 / 1483,
  11881. bottom: 0.017
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Macro",
  11888. height: math.unit(100, "feet"),
  11889. default: true
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11895. {
  11896. front: {
  11897. height: math.unit(8, "feet"),
  11898. weight: math.unit(356, "lb"),
  11899. name: "Front",
  11900. image: {
  11901. source: "./media/characters/adam-silver-mane/front.svg",
  11902. extra: 1036/937,
  11903. bottom: 63/1099
  11904. }
  11905. },
  11906. side: {
  11907. height: math.unit(8, "feet"),
  11908. weight: math.unit(356, "lb"),
  11909. name: "Side",
  11910. image: {
  11911. source: "./media/characters/adam-silver-mane/side.svg",
  11912. extra: 997/901,
  11913. bottom: 59/1056
  11914. }
  11915. },
  11916. frontNsfw: {
  11917. height: math.unit(8, "feet"),
  11918. weight: math.unit(356, "lb"),
  11919. name: "Front (NSFW)",
  11920. image: {
  11921. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11922. extra: 1036/937,
  11923. bottom: 63/1099
  11924. }
  11925. },
  11926. sideNsfw: {
  11927. height: math.unit(8, "feet"),
  11928. weight: math.unit(356, "lb"),
  11929. name: "Side (NSFW)",
  11930. image: {
  11931. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11932. extra: 997/901,
  11933. bottom: 59/1056
  11934. }
  11935. },
  11936. dick: {
  11937. height: math.unit(2.1, "feet"),
  11938. name: "Dick",
  11939. image: {
  11940. source: "./media/characters/adam-silver-mane/dick.svg"
  11941. }
  11942. },
  11943. taur: {
  11944. height: math.unit(16, "feet"),
  11945. weight: math.unit(1500, "kg"),
  11946. name: "Taur",
  11947. image: {
  11948. source: "./media/characters/adam-silver-mane/taur.svg",
  11949. extra: 1713 / 1571,
  11950. bottom: 0.01
  11951. }
  11952. },
  11953. },
  11954. [
  11955. {
  11956. name: "Normal",
  11957. height: math.unit(8, "feet")
  11958. },
  11959. {
  11960. name: "Minimacro",
  11961. height: math.unit(80, "feet")
  11962. },
  11963. {
  11964. name: "MDA",
  11965. height: math.unit(80, "meters")
  11966. },
  11967. {
  11968. name: "Macro",
  11969. height: math.unit(800, "feet"),
  11970. default: true
  11971. },
  11972. {
  11973. name: "Megamacro",
  11974. height: math.unit(8000, "feet")
  11975. },
  11976. {
  11977. name: "Gigamacro",
  11978. height: math.unit(800, "miles")
  11979. },
  11980. {
  11981. name: "Teramacro",
  11982. height: math.unit(80000, "miles")
  11983. },
  11984. {
  11985. name: "Celestial",
  11986. height: math.unit(8e6, "miles")
  11987. },
  11988. {
  11989. name: "Star Dragon",
  11990. height: math.unit(800000, "parsecs")
  11991. },
  11992. {
  11993. name: "Godly",
  11994. height: math.unit(800, "teraparsecs")
  11995. },
  11996. ]
  11997. ))
  11998. characterMakers.push(() => makeCharacter(
  11999. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12000. {
  12001. front: {
  12002. height: math.unit(6, "feet"),
  12003. weight: math.unit(150, "lb"),
  12004. name: "Front",
  12005. image: {
  12006. source: "./media/characters/ky'owin/front.svg",
  12007. extra: 3862/3053,
  12008. bottom: 74/3936
  12009. }
  12010. },
  12011. },
  12012. [
  12013. {
  12014. name: "Normal",
  12015. height: math.unit(6 + 8 / 12, "feet")
  12016. },
  12017. {
  12018. name: "Large",
  12019. height: math.unit(68, "feet")
  12020. },
  12021. {
  12022. name: "Macro",
  12023. height: math.unit(132, "feet")
  12024. },
  12025. {
  12026. name: "Macro+",
  12027. height: math.unit(340, "feet")
  12028. },
  12029. {
  12030. name: "Macro++",
  12031. height: math.unit(680, "feet"),
  12032. default: true
  12033. },
  12034. {
  12035. name: "Megamacro",
  12036. height: math.unit(1, "mile")
  12037. },
  12038. {
  12039. name: "Megamacro+",
  12040. height: math.unit(10, "miles")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(4, "feet"),
  12049. weight: math.unit(50, "lb"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/mal/front.svg",
  12053. extra: 785 / 724,
  12054. bottom: 0.07
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Micro",
  12061. height: math.unit(4, "inches")
  12062. },
  12063. {
  12064. name: "Normal",
  12065. height: math.unit(4, "feet"),
  12066. default: true
  12067. },
  12068. {
  12069. name: "Macro",
  12070. height: math.unit(200, "feet")
  12071. },
  12072. ]
  12073. ))
  12074. characterMakers.push(() => makeCharacter(
  12075. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12076. {
  12077. front: {
  12078. height: math.unit(6, "feet"),
  12079. weight: math.unit(150, "lb"),
  12080. name: "Front",
  12081. image: {
  12082. source: "./media/characters/jordan-deware/front.svg",
  12083. extra: 1191 / 1012
  12084. }
  12085. },
  12086. },
  12087. [
  12088. {
  12089. name: "Nano",
  12090. height: math.unit(0.01, "mm")
  12091. },
  12092. {
  12093. name: "Minimicro",
  12094. height: math.unit(1, "mm")
  12095. },
  12096. {
  12097. name: "Micro",
  12098. height: math.unit(0.5, "inches")
  12099. },
  12100. {
  12101. name: "Normal",
  12102. height: math.unit(4, "feet"),
  12103. default: true
  12104. },
  12105. {
  12106. name: "Minimacro",
  12107. height: math.unit(40, "meters")
  12108. },
  12109. {
  12110. name: "Small Macro",
  12111. height: math.unit(400, "meters")
  12112. },
  12113. {
  12114. name: "Macro",
  12115. height: math.unit(4, "miles")
  12116. },
  12117. {
  12118. name: "Megamacro",
  12119. height: math.unit(40, "miles")
  12120. },
  12121. {
  12122. name: "Megamacro+",
  12123. height: math.unit(400, "miles")
  12124. },
  12125. {
  12126. name: "Gigamacro",
  12127. height: math.unit(400000, "miles")
  12128. },
  12129. ]
  12130. ))
  12131. characterMakers.push(() => makeCharacter(
  12132. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12133. {
  12134. side: {
  12135. height: math.unit(6, "feet"),
  12136. weight: math.unit(150, "lb"),
  12137. name: "Side",
  12138. image: {
  12139. source: "./media/characters/kimiko/side.svg",
  12140. extra: 600 / 358
  12141. }
  12142. },
  12143. },
  12144. [
  12145. {
  12146. name: "Normal",
  12147. height: math.unit(15, "feet"),
  12148. default: true
  12149. },
  12150. {
  12151. name: "Macro",
  12152. height: math.unit(220, "feet")
  12153. },
  12154. {
  12155. name: "Macro+",
  12156. height: math.unit(1450, "feet")
  12157. },
  12158. {
  12159. name: "Megamacro",
  12160. height: math.unit(11500, "feet")
  12161. },
  12162. {
  12163. name: "Gigamacro",
  12164. height: math.unit(9500, "miles")
  12165. },
  12166. {
  12167. name: "Teramacro",
  12168. height: math.unit(2208005005, "miles")
  12169. },
  12170. {
  12171. name: "Examacro",
  12172. height: math.unit(2750, "parsecs")
  12173. },
  12174. {
  12175. name: "Zettamacro",
  12176. height: math.unit(101500, "parsecs")
  12177. },
  12178. ]
  12179. ))
  12180. characterMakers.push(() => makeCharacter(
  12181. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12182. {
  12183. front: {
  12184. height: math.unit(6, "feet"),
  12185. weight: math.unit(70, "kg"),
  12186. name: "Front",
  12187. image: {
  12188. source: "./media/characters/andrew-sleepy/front.svg"
  12189. }
  12190. },
  12191. side: {
  12192. height: math.unit(6, "feet"),
  12193. weight: math.unit(70, "kg"),
  12194. name: "Side",
  12195. image: {
  12196. source: "./media/characters/andrew-sleepy/side.svg"
  12197. }
  12198. },
  12199. },
  12200. [
  12201. {
  12202. name: "Micro",
  12203. height: math.unit(1, "mm"),
  12204. default: true
  12205. },
  12206. ]
  12207. ))
  12208. characterMakers.push(() => makeCharacter(
  12209. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12210. {
  12211. front: {
  12212. height: math.unit(6, "feet"),
  12213. weight: math.unit(150, "lb"),
  12214. name: "Front",
  12215. image: {
  12216. source: "./media/characters/judio/front.svg",
  12217. extra: 1258 / 1110
  12218. }
  12219. },
  12220. },
  12221. [
  12222. {
  12223. name: "Normal",
  12224. height: math.unit(5 + 6 / 12, "feet")
  12225. },
  12226. {
  12227. name: "Macro",
  12228. height: math.unit(1000, "feet"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Megamacro",
  12233. height: math.unit(10, "miles")
  12234. },
  12235. ]
  12236. ))
  12237. characterMakers.push(() => makeCharacter(
  12238. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12239. {
  12240. frontDressed: {
  12241. height: math.unit(6, "feet"),
  12242. weight: math.unit(68, "kg"),
  12243. name: "Front (Dressed)",
  12244. image: {
  12245. source: "./media/characters/nomaxice/front-dressed.svg",
  12246. extra: 1137/824,
  12247. bottom: 74/1211
  12248. }
  12249. },
  12250. frontShorts: {
  12251. height: math.unit(6, "feet"),
  12252. weight: math.unit(68, "kg"),
  12253. name: "Front (Shorts)",
  12254. image: {
  12255. source: "./media/characters/nomaxice/front-shorts.svg",
  12256. extra: 1137/824,
  12257. bottom: 74/1211
  12258. }
  12259. },
  12260. back: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(68, "kg"),
  12263. name: "Back",
  12264. image: {
  12265. source: "./media/characters/nomaxice/back.svg",
  12266. extra: 822/786,
  12267. bottom: 39/861
  12268. }
  12269. },
  12270. hand: {
  12271. height: math.unit(0.565, "feet"),
  12272. name: "Hand",
  12273. image: {
  12274. source: "./media/characters/nomaxice/hand.svg"
  12275. }
  12276. },
  12277. foot: {
  12278. height: math.unit(1, "feet"),
  12279. name: "Foot",
  12280. image: {
  12281. source: "./media/characters/nomaxice/foot.svg"
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Micro",
  12288. height: math.unit(8, "cm")
  12289. },
  12290. {
  12291. name: "Norm",
  12292. height: math.unit(1.82, "m")
  12293. },
  12294. {
  12295. name: "Norm+",
  12296. height: math.unit(8.8, "feet"),
  12297. default: true
  12298. },
  12299. {
  12300. name: "Big",
  12301. height: math.unit(8, "meters")
  12302. },
  12303. {
  12304. name: "Macro",
  12305. height: math.unit(18, "meters")
  12306. },
  12307. {
  12308. name: "Macro+",
  12309. height: math.unit(88, "meters")
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12315. {
  12316. front: {
  12317. height: math.unit(12, "feet"),
  12318. weight: math.unit(1.5, "tons"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/dydros/front.svg",
  12322. extra: 863 / 800,
  12323. bottom: 0.015
  12324. }
  12325. },
  12326. back: {
  12327. height: math.unit(12, "feet"),
  12328. weight: math.unit(1.5, "tons"),
  12329. name: "Back",
  12330. image: {
  12331. source: "./media/characters/dydros/back.svg",
  12332. extra: 900 / 843,
  12333. bottom: 0.005
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(12, "feet"),
  12341. default: true
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12347. {
  12348. front: {
  12349. height: math.unit(6, "feet"),
  12350. weight: math.unit(100, "kg"),
  12351. name: "Front",
  12352. image: {
  12353. source: "./media/characters/riggi/front.svg",
  12354. extra: 5787 / 5303
  12355. }
  12356. },
  12357. hyper: {
  12358. height: math.unit(6 * 5 / 3, "feet"),
  12359. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12360. name: "Hyper",
  12361. image: {
  12362. source: "./media/characters/riggi/hyper.svg",
  12363. extra: 3595 / 3485
  12364. }
  12365. },
  12366. },
  12367. [
  12368. {
  12369. name: "Small Macro",
  12370. height: math.unit(50, "feet")
  12371. },
  12372. {
  12373. name: "Default",
  12374. height: math.unit(200, "feet"),
  12375. default: true
  12376. },
  12377. {
  12378. name: "Loom",
  12379. height: math.unit(10000, "feet")
  12380. },
  12381. {
  12382. name: "Cruising Altitude",
  12383. height: math.unit(30000, "feet")
  12384. },
  12385. {
  12386. name: "Megamacro",
  12387. height: math.unit(100, "miles")
  12388. },
  12389. {
  12390. name: "Continent Sized",
  12391. height: math.unit(2800, "miles")
  12392. },
  12393. {
  12394. name: "Earth Sized",
  12395. height: math.unit(8000, "miles")
  12396. },
  12397. ]
  12398. ))
  12399. characterMakers.push(() => makeCharacter(
  12400. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12401. {
  12402. front: {
  12403. height: math.unit(6, "feet"),
  12404. weight: math.unit(250, "lb"),
  12405. name: "Front",
  12406. image: {
  12407. source: "./media/characters/alexi/front.svg",
  12408. extra: 3483 / 3291,
  12409. bottom: 0.04
  12410. }
  12411. },
  12412. back: {
  12413. height: math.unit(6, "feet"),
  12414. weight: math.unit(250, "lb"),
  12415. name: "Back",
  12416. image: {
  12417. source: "./media/characters/alexi/back.svg",
  12418. extra: 3533 / 3356,
  12419. bottom: 0.021
  12420. }
  12421. },
  12422. frontTransforming: {
  12423. height: math.unit(8.58, "feet"),
  12424. weight: math.unit(1300, "lb"),
  12425. name: "Transforming",
  12426. image: {
  12427. source: "./media/characters/alexi/front-transforming.svg",
  12428. extra: 437 / 409,
  12429. bottom: 19 / 458.66
  12430. }
  12431. },
  12432. frontTransformed: {
  12433. height: math.unit(12.5, "feet"),
  12434. weight: math.unit(4000, "lb"),
  12435. name: "Transformed",
  12436. image: {
  12437. source: "./media/characters/alexi/front-transformed.svg",
  12438. extra: 639 / 614,
  12439. bottom: 30.55 / 671
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(14, "feet"),
  12447. default: true
  12448. },
  12449. {
  12450. name: "Minimacro",
  12451. height: math.unit(30, "meters")
  12452. },
  12453. {
  12454. name: "Macro",
  12455. height: math.unit(500, "meters")
  12456. },
  12457. {
  12458. name: "Megamacro",
  12459. height: math.unit(9000, "km")
  12460. },
  12461. {
  12462. name: "Teramacro",
  12463. height: math.unit(384000, "km")
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12469. {
  12470. front: {
  12471. height: math.unit(6, "feet"),
  12472. weight: math.unit(150, "lb"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/kayroo/front.svg",
  12476. extra: 1153 / 1038,
  12477. bottom: 0.06
  12478. }
  12479. },
  12480. foot: {
  12481. height: math.unit(6, "feet"),
  12482. weight: math.unit(150, "lb"),
  12483. name: "Foot",
  12484. image: {
  12485. source: "./media/characters/kayroo/foot.svg"
  12486. }
  12487. },
  12488. },
  12489. [
  12490. {
  12491. name: "Normal",
  12492. height: math.unit(8, "feet"),
  12493. default: true
  12494. },
  12495. {
  12496. name: "Minimacro",
  12497. height: math.unit(250, "feet")
  12498. },
  12499. {
  12500. name: "Macro",
  12501. height: math.unit(2800, "feet")
  12502. },
  12503. {
  12504. name: "Megamacro",
  12505. height: math.unit(5200, "feet")
  12506. },
  12507. {
  12508. name: "Gigamacro",
  12509. height: math.unit(27000, "feet")
  12510. },
  12511. {
  12512. name: "Omega",
  12513. height: math.unit(45000, "feet")
  12514. },
  12515. ]
  12516. ))
  12517. characterMakers.push(() => makeCharacter(
  12518. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12519. {
  12520. front: {
  12521. height: math.unit(18, "feet"),
  12522. weight: math.unit(5800, "lb"),
  12523. name: "Front",
  12524. image: {
  12525. source: "./media/characters/rhys/front.svg",
  12526. extra: 3386 / 3090,
  12527. bottom: 0.07
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Normal",
  12534. height: math.unit(18, "feet"),
  12535. default: true
  12536. },
  12537. {
  12538. name: "Working Size",
  12539. height: math.unit(200, "feet")
  12540. },
  12541. {
  12542. name: "Demolition Size",
  12543. height: math.unit(2000, "feet")
  12544. },
  12545. {
  12546. name: "Maximum Licensed Size",
  12547. height: math.unit(5, "miles")
  12548. },
  12549. {
  12550. name: "Maximum Observed Size",
  12551. height: math.unit(10, "yottameters")
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12557. {
  12558. front: {
  12559. height: math.unit(6, "feet"),
  12560. weight: math.unit(250, "lb"),
  12561. name: "Front",
  12562. image: {
  12563. source: "./media/characters/toto/front.svg",
  12564. extra: 527 / 479,
  12565. bottom: 0.05
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Micro",
  12572. height: math.unit(3, "feet")
  12573. },
  12574. {
  12575. name: "Normal",
  12576. height: math.unit(10, "feet")
  12577. },
  12578. {
  12579. name: "Macro",
  12580. height: math.unit(150, "feet"),
  12581. default: true
  12582. },
  12583. {
  12584. name: "Megamacro",
  12585. height: math.unit(1200, "feet")
  12586. },
  12587. ]
  12588. ))
  12589. characterMakers.push(() => makeCharacter(
  12590. { name: "King", species: ["lion"], tags: ["anthro"] },
  12591. {
  12592. back: {
  12593. height: math.unit(6, "feet"),
  12594. weight: math.unit(150, "lb"),
  12595. name: "Back",
  12596. image: {
  12597. source: "./media/characters/king/back.svg"
  12598. }
  12599. },
  12600. },
  12601. [
  12602. {
  12603. name: "Micro",
  12604. height: math.unit(2, "inches")
  12605. },
  12606. {
  12607. name: "Normal",
  12608. height: math.unit(8, "feet")
  12609. },
  12610. {
  12611. name: "Macro",
  12612. height: math.unit(200, "feet"),
  12613. default: true
  12614. },
  12615. {
  12616. name: "Megamacro",
  12617. height: math.unit(50, "miles")
  12618. },
  12619. ]
  12620. ))
  12621. characterMakers.push(() => makeCharacter(
  12622. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12623. {
  12624. front: {
  12625. height: math.unit(11, "feet"),
  12626. weight: math.unit(1400, "lb"),
  12627. name: "Front",
  12628. image: {
  12629. source: "./media/characters/cordite/front.svg",
  12630. extra: 1919/1827,
  12631. bottom: 40/1959
  12632. }
  12633. },
  12634. side: {
  12635. height: math.unit(11, "feet"),
  12636. weight: math.unit(1400, "lb"),
  12637. name: "Side",
  12638. image: {
  12639. source: "./media/characters/cordite/side.svg",
  12640. extra: 1908/1793,
  12641. bottom: 38/1946
  12642. }
  12643. },
  12644. back: {
  12645. height: math.unit(11, "feet"),
  12646. weight: math.unit(1400, "lb"),
  12647. name: "Back",
  12648. image: {
  12649. source: "./media/characters/cordite/back.svg",
  12650. extra: 1938/1837,
  12651. bottom: 10/1948
  12652. }
  12653. },
  12654. feral: {
  12655. height: math.unit(2, "feet"),
  12656. weight: math.unit(90, "lb"),
  12657. name: "Feral",
  12658. image: {
  12659. source: "./media/characters/cordite/feral.svg",
  12660. extra: 1260 / 755,
  12661. bottom: 0.05
  12662. }
  12663. },
  12664. },
  12665. [
  12666. {
  12667. name: "Normal",
  12668. height: math.unit(11, "feet"),
  12669. default: true
  12670. },
  12671. ]
  12672. ))
  12673. characterMakers.push(() => makeCharacter(
  12674. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12675. {
  12676. front: {
  12677. height: math.unit(6, "feet"),
  12678. weight: math.unit(150, "lb"),
  12679. name: "Front",
  12680. image: {
  12681. source: "./media/characters/pianostrong/front.svg",
  12682. extra: 6577 / 6254,
  12683. bottom: 0.02
  12684. }
  12685. },
  12686. side: {
  12687. height: math.unit(6, "feet"),
  12688. weight: math.unit(150, "lb"),
  12689. name: "Side",
  12690. image: {
  12691. source: "./media/characters/pianostrong/side.svg",
  12692. extra: 6106 / 5730
  12693. }
  12694. },
  12695. back: {
  12696. height: math.unit(6, "feet"),
  12697. weight: math.unit(150, "lb"),
  12698. name: "Back",
  12699. image: {
  12700. source: "./media/characters/pianostrong/back.svg",
  12701. extra: 6085 / 5733,
  12702. bottom: 0.01
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Macro",
  12709. height: math.unit(100, "feet")
  12710. },
  12711. {
  12712. name: "Macro+",
  12713. height: math.unit(300, "feet"),
  12714. default: true
  12715. },
  12716. {
  12717. name: "Macro++",
  12718. height: math.unit(1000, "feet")
  12719. },
  12720. ]
  12721. ))
  12722. characterMakers.push(() => makeCharacter(
  12723. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12724. {
  12725. front: {
  12726. height: math.unit(6, "feet"),
  12727. weight: math.unit(150, "lb"),
  12728. name: "Front",
  12729. image: {
  12730. source: "./media/characters/kona/front.svg",
  12731. extra: 2960 / 2629,
  12732. bottom: 0.005
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Normal",
  12739. height: math.unit(11 + 8 / 12, "feet")
  12740. },
  12741. {
  12742. name: "Macro",
  12743. height: math.unit(850, "feet"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Macro+",
  12748. height: math.unit(1.5, "km"),
  12749. default: true
  12750. },
  12751. {
  12752. name: "Megamacro",
  12753. height: math.unit(80, "miles")
  12754. },
  12755. {
  12756. name: "Gigamacro",
  12757. height: math.unit(3500, "miles")
  12758. },
  12759. ]
  12760. ))
  12761. characterMakers.push(() => makeCharacter(
  12762. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12763. {
  12764. side: {
  12765. height: math.unit(1.9, "meters"),
  12766. weight: math.unit(326, "kg"),
  12767. name: "Side",
  12768. image: {
  12769. source: "./media/characters/levi/side.svg",
  12770. extra: 1704 / 1334,
  12771. bottom: 0.02
  12772. }
  12773. },
  12774. },
  12775. [
  12776. {
  12777. name: "Normal",
  12778. height: math.unit(1.9, "meters"),
  12779. default: true
  12780. },
  12781. {
  12782. name: "Macro",
  12783. height: math.unit(20, "meters")
  12784. },
  12785. {
  12786. name: "Macro+",
  12787. height: math.unit(200, "meters")
  12788. },
  12789. {
  12790. name: "Megamacro",
  12791. height: math.unit(2, "km")
  12792. },
  12793. {
  12794. name: "Megamacro+",
  12795. height: math.unit(20, "km")
  12796. },
  12797. {
  12798. name: "Gigamacro",
  12799. height: math.unit(2500, "km")
  12800. },
  12801. {
  12802. name: "Gigamacro+",
  12803. height: math.unit(120000, "km")
  12804. },
  12805. {
  12806. name: "Teramacro",
  12807. height: math.unit(7.77e6, "km")
  12808. },
  12809. ]
  12810. ))
  12811. characterMakers.push(() => makeCharacter(
  12812. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12813. {
  12814. front: {
  12815. height: math.unit(6 + 4/12, "feet"),
  12816. weight: math.unit(190, "lb"),
  12817. name: "Front",
  12818. image: {
  12819. source: "./media/characters/bmc/front.svg",
  12820. extra: 1626/1472,
  12821. bottom: 79/1705
  12822. }
  12823. },
  12824. back: {
  12825. height: math.unit(6 + 4/12, "feet"),
  12826. weight: math.unit(190, "lb"),
  12827. name: "Back",
  12828. image: {
  12829. source: "./media/characters/bmc/back.svg",
  12830. extra: 1640/1479,
  12831. bottom: 45/1685
  12832. }
  12833. },
  12834. frontArmor: {
  12835. height: math.unit(6 + 4/12, "feet"),
  12836. weight: math.unit(190, "lb"),
  12837. name: "Front-armor",
  12838. image: {
  12839. source: "./media/characters/bmc/front-armor.svg",
  12840. extra: 1538/1468,
  12841. bottom: 79/1617
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Human-sized",
  12848. height: math.unit(6 + 4 / 12, "feet")
  12849. },
  12850. {
  12851. name: "Interactive Size",
  12852. height: math.unit(25, "feet")
  12853. },
  12854. {
  12855. name: "Small",
  12856. height: math.unit(250, "feet")
  12857. },
  12858. {
  12859. name: "Normal",
  12860. height: math.unit(1250, "feet"),
  12861. default: true
  12862. },
  12863. {
  12864. name: "Good Day",
  12865. height: math.unit(88, "miles")
  12866. },
  12867. {
  12868. name: "Largest Measured Size",
  12869. height: math.unit(105.960, "galaxies")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(20, "feet"),
  12878. weight: math.unit(2016, "kg"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/sven-the-kaiju/front.svg",
  12882. extra: 1277/1250,
  12883. bottom: 35/1312
  12884. }
  12885. },
  12886. mouth: {
  12887. height: math.unit(1.85, "feet"),
  12888. name: "Mouth",
  12889. image: {
  12890. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12891. }
  12892. },
  12893. },
  12894. [
  12895. {
  12896. name: "Fairy",
  12897. height: math.unit(6, "inches")
  12898. },
  12899. {
  12900. name: "Normal",
  12901. height: math.unit(20, "feet"),
  12902. default: true
  12903. },
  12904. {
  12905. name: "Rampage",
  12906. height: math.unit(200, "feet")
  12907. },
  12908. {
  12909. name: "Archfey Forest Guardian",
  12910. height: math.unit(1, "mile")
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12916. {
  12917. front: {
  12918. height: math.unit(4, "meters"),
  12919. weight: math.unit(2, "tons"),
  12920. name: "Front",
  12921. image: {
  12922. source: "./media/characters/marik/front.svg",
  12923. extra: 1057 / 1003,
  12924. bottom: 0.08
  12925. }
  12926. },
  12927. },
  12928. [
  12929. {
  12930. name: "Normal",
  12931. height: math.unit(4, "meters"),
  12932. default: true
  12933. },
  12934. {
  12935. name: "Macro",
  12936. height: math.unit(20, "meters")
  12937. },
  12938. {
  12939. name: "Megamacro",
  12940. height: math.unit(50, "km")
  12941. },
  12942. {
  12943. name: "Gigamacro",
  12944. height: math.unit(100, "km")
  12945. },
  12946. {
  12947. name: "Alpha Macro",
  12948. height: math.unit(7.88e7, "yottameters")
  12949. },
  12950. ]
  12951. ))
  12952. characterMakers.push(() => makeCharacter(
  12953. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12954. {
  12955. front: {
  12956. height: math.unit(6, "feet"),
  12957. weight: math.unit(110, "lb"),
  12958. name: "Front",
  12959. image: {
  12960. source: "./media/characters/mel/front.svg",
  12961. extra: 736 / 617,
  12962. bottom: 0.017
  12963. }
  12964. },
  12965. },
  12966. [
  12967. {
  12968. name: "Pico",
  12969. height: math.unit(3, "pm")
  12970. },
  12971. {
  12972. name: "Nano",
  12973. height: math.unit(3, "nm")
  12974. },
  12975. {
  12976. name: "Micro",
  12977. height: math.unit(0.3, "mm"),
  12978. default: true
  12979. },
  12980. {
  12981. name: "Micro+",
  12982. height: math.unit(3, "mm")
  12983. },
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(5 + 10.5 / 12, "feet")
  12987. },
  12988. ]
  12989. ))
  12990. characterMakers.push(() => makeCharacter(
  12991. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12992. {
  12993. kaiju: {
  12994. height: math.unit(1.75, "meters"),
  12995. weight: math.unit(55, "kg"),
  12996. name: "Kaiju",
  12997. image: {
  12998. source: "./media/characters/lykonous/kaiju.svg",
  12999. extra: 1055 / 946,
  13000. bottom: 0.135
  13001. }
  13002. },
  13003. },
  13004. [
  13005. {
  13006. name: "Normal",
  13007. height: math.unit(2.5, "meters"),
  13008. default: true
  13009. },
  13010. {
  13011. name: "Kaiju Dragon",
  13012. height: math.unit(60, "meters")
  13013. },
  13014. {
  13015. name: "Mega Kaiju",
  13016. height: math.unit(120, "km")
  13017. },
  13018. {
  13019. name: "Giga Kaiju",
  13020. height: math.unit(200, "megameters")
  13021. },
  13022. {
  13023. name: "Terra Kaiju",
  13024. height: math.unit(400, "gigameters")
  13025. },
  13026. {
  13027. name: "Kaiju Dragon God",
  13028. height: math.unit(13000, "exaparsecs")
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13034. {
  13035. front: {
  13036. height: math.unit(6, "feet"),
  13037. weight: math.unit(150, "lb"),
  13038. name: "Front",
  13039. image: {
  13040. source: "./media/characters/blü/front.svg",
  13041. extra: 1883 / 1564,
  13042. bottom: 0.031
  13043. }
  13044. },
  13045. },
  13046. [
  13047. {
  13048. name: "Normal",
  13049. height: math.unit(13, "feet"),
  13050. default: true
  13051. },
  13052. {
  13053. name: "Big Boi",
  13054. height: math.unit(150, "meters")
  13055. },
  13056. {
  13057. name: "Mini Stomper",
  13058. height: math.unit(300, "meters")
  13059. },
  13060. {
  13061. name: "Macro",
  13062. height: math.unit(1000, "meters")
  13063. },
  13064. {
  13065. name: "Megamacro",
  13066. height: math.unit(11000, "meters")
  13067. },
  13068. {
  13069. name: "Gigamacro",
  13070. height: math.unit(11000, "km")
  13071. },
  13072. {
  13073. name: "Teramacro",
  13074. height: math.unit(420000, "km")
  13075. },
  13076. {
  13077. name: "Examacro",
  13078. height: math.unit(120, "parsecs")
  13079. },
  13080. {
  13081. name: "God Tho",
  13082. height: math.unit(98000000000, "parsecs")
  13083. },
  13084. ]
  13085. ))
  13086. characterMakers.push(() => makeCharacter(
  13087. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13088. {
  13089. taurFront: {
  13090. height: math.unit(6, "feet"),
  13091. weight: math.unit(200, "lb"),
  13092. name: "Taur (Front)",
  13093. image: {
  13094. source: "./media/characters/scales/taur-front.svg",
  13095. extra: 1,
  13096. bottom: 0.05
  13097. }
  13098. },
  13099. taurBack: {
  13100. height: math.unit(6, "feet"),
  13101. weight: math.unit(200, "lb"),
  13102. name: "Taur (Back)",
  13103. image: {
  13104. source: "./media/characters/scales/taur-back.svg",
  13105. extra: 1,
  13106. bottom: 0.08
  13107. }
  13108. },
  13109. anthro: {
  13110. height: math.unit(6 * 7 / 12, "feet"),
  13111. weight: math.unit(100, "lb"),
  13112. name: "Anthro",
  13113. image: {
  13114. source: "./media/characters/scales/anthro.svg",
  13115. extra: 1,
  13116. bottom: 0.06
  13117. }
  13118. },
  13119. },
  13120. [
  13121. {
  13122. name: "Normal",
  13123. height: math.unit(12, "feet"),
  13124. default: true
  13125. },
  13126. ]
  13127. ))
  13128. characterMakers.push(() => makeCharacter(
  13129. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13130. {
  13131. front: {
  13132. height: math.unit(6, "feet"),
  13133. weight: math.unit(150, "lb"),
  13134. name: "Front",
  13135. image: {
  13136. source: "./media/characters/koragos/front.svg",
  13137. extra: 841 / 794,
  13138. bottom: 0.035
  13139. }
  13140. },
  13141. back: {
  13142. height: math.unit(6, "feet"),
  13143. weight: math.unit(150, "lb"),
  13144. name: "Back",
  13145. image: {
  13146. source: "./media/characters/koragos/back.svg",
  13147. extra: 841 / 810,
  13148. bottom: 0.022
  13149. }
  13150. },
  13151. },
  13152. [
  13153. {
  13154. name: "Normal",
  13155. height: math.unit(6 + 11 / 12, "feet"),
  13156. default: true
  13157. },
  13158. {
  13159. name: "Macro",
  13160. height: math.unit(490, "feet")
  13161. },
  13162. {
  13163. name: "Megamacro",
  13164. height: math.unit(10, "miles")
  13165. },
  13166. {
  13167. name: "Gigamacro",
  13168. height: math.unit(50, "miles")
  13169. },
  13170. ]
  13171. ))
  13172. characterMakers.push(() => makeCharacter(
  13173. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13174. {
  13175. front: {
  13176. height: math.unit(6, "feet"),
  13177. weight: math.unit(250, "lb"),
  13178. name: "Front",
  13179. image: {
  13180. source: "./media/characters/xylrem/front.svg",
  13181. extra: 3323 / 3050,
  13182. bottom: 0.065
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Micro",
  13189. height: math.unit(4, "feet")
  13190. },
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(16, "feet"),
  13194. default: true
  13195. },
  13196. {
  13197. name: "Macro",
  13198. height: math.unit(2720, "feet")
  13199. },
  13200. {
  13201. name: "Megamacro",
  13202. height: math.unit(25000, "miles")
  13203. },
  13204. ]
  13205. ))
  13206. characterMakers.push(() => makeCharacter(
  13207. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13208. {
  13209. front: {
  13210. height: math.unit(8, "feet"),
  13211. weight: math.unit(250, "kg"),
  13212. name: "Front",
  13213. image: {
  13214. source: "./media/characters/ikideru/front.svg",
  13215. extra: 930 / 870,
  13216. bottom: 0.087
  13217. }
  13218. },
  13219. back: {
  13220. height: math.unit(8, "feet"),
  13221. weight: math.unit(250, "kg"),
  13222. name: "Back",
  13223. image: {
  13224. source: "./media/characters/ikideru/back.svg",
  13225. extra: 919 / 852,
  13226. bottom: 0.055
  13227. }
  13228. },
  13229. },
  13230. [
  13231. {
  13232. name: "Rare",
  13233. height: math.unit(8, "feet"),
  13234. default: true
  13235. },
  13236. {
  13237. name: "Playful Loom",
  13238. height: math.unit(80, "feet")
  13239. },
  13240. {
  13241. name: "City Leaner",
  13242. height: math.unit(230, "feet")
  13243. },
  13244. {
  13245. name: "Megamacro",
  13246. height: math.unit(2500, "feet")
  13247. },
  13248. {
  13249. name: "Gigamacro",
  13250. height: math.unit(26400, "feet")
  13251. },
  13252. {
  13253. name: "Tectonic Shifter",
  13254. height: math.unit(1.7, "megameters")
  13255. },
  13256. {
  13257. name: "Planet Carer",
  13258. height: math.unit(21, "megameters")
  13259. },
  13260. {
  13261. name: "God",
  13262. height: math.unit(11157.22, "parsecs")
  13263. },
  13264. ]
  13265. ))
  13266. characterMakers.push(() => makeCharacter(
  13267. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13268. {
  13269. front: {
  13270. height: math.unit(6, "feet"),
  13271. weight: math.unit(120, "lb"),
  13272. name: "Front",
  13273. image: {
  13274. source: "./media/characters/neo/front.svg"
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Micro",
  13281. height: math.unit(2, "inches"),
  13282. default: true
  13283. },
  13284. {
  13285. name: "Human Size",
  13286. height: math.unit(5 + 8 / 12, "feet")
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13292. {
  13293. front: {
  13294. height: math.unit(13 + 10 / 12, "feet"),
  13295. weight: math.unit(5320, "lb"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/chauncey-chantz/front.svg",
  13299. extra: 1587 / 1435,
  13300. bottom: 0.02
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(13 + 10 / 12, "feet"),
  13308. default: true
  13309. },
  13310. {
  13311. name: "Macro",
  13312. height: math.unit(45, "feet")
  13313. },
  13314. {
  13315. name: "Megamacro",
  13316. height: math.unit(250, "miles")
  13317. },
  13318. {
  13319. name: "Planetary",
  13320. height: math.unit(10000, "miles")
  13321. },
  13322. {
  13323. name: "Galactic",
  13324. height: math.unit(40000, "parsecs")
  13325. },
  13326. {
  13327. name: "Universal",
  13328. height: math.unit(1, "yottameter")
  13329. },
  13330. ]
  13331. ))
  13332. characterMakers.push(() => makeCharacter(
  13333. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13334. {
  13335. front: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(150, "lb"),
  13338. name: "Front",
  13339. image: {
  13340. source: "./media/characters/epifox/front.svg",
  13341. extra: 1,
  13342. bottom: 0.075
  13343. }
  13344. },
  13345. },
  13346. [
  13347. {
  13348. name: "Micro",
  13349. height: math.unit(6, "inches")
  13350. },
  13351. {
  13352. name: "Normal",
  13353. height: math.unit(12, "feet"),
  13354. default: true
  13355. },
  13356. {
  13357. name: "Macro",
  13358. height: math.unit(3810, "feet")
  13359. },
  13360. {
  13361. name: "Megamacro",
  13362. height: math.unit(500, "miles")
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(1.8796, "m"),
  13371. weight: math.unit(230, "lb"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/colin-t/front.svg",
  13375. extra: 1272 / 1193,
  13376. bottom: 0.07
  13377. }
  13378. },
  13379. },
  13380. [
  13381. {
  13382. name: "Micro",
  13383. height: math.unit(0.571, "meters")
  13384. },
  13385. {
  13386. name: "Normal",
  13387. height: math.unit(1.8796, "meters"),
  13388. default: true
  13389. },
  13390. {
  13391. name: "Tall",
  13392. height: math.unit(4, "meters")
  13393. },
  13394. {
  13395. name: "Macro",
  13396. height: math.unit(67.241, "meters")
  13397. },
  13398. {
  13399. name: "Megamacro",
  13400. height: math.unit(371.856, "meters")
  13401. },
  13402. {
  13403. name: "Planetary",
  13404. height: math.unit(12631.5689, "km")
  13405. },
  13406. ]
  13407. ))
  13408. characterMakers.push(() => makeCharacter(
  13409. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13410. {
  13411. front: {
  13412. height: math.unit(1.85, "meters"),
  13413. weight: math.unit(80, "kg"),
  13414. name: "Front",
  13415. image: {
  13416. source: "./media/characters/matvei/front.svg",
  13417. extra: 456/447,
  13418. bottom: 8/464
  13419. }
  13420. },
  13421. back: {
  13422. height: math.unit(1.85, "meters"),
  13423. weight: math.unit(80, "kg"),
  13424. name: "Back",
  13425. image: {
  13426. source: "./media/characters/matvei/back.svg",
  13427. extra: 434/427,
  13428. bottom: 11/445
  13429. }
  13430. },
  13431. },
  13432. [
  13433. {
  13434. name: "Normal",
  13435. height: math.unit(1.85, "meters"),
  13436. default: true
  13437. },
  13438. ]
  13439. ))
  13440. characterMakers.push(() => makeCharacter(
  13441. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13442. {
  13443. front: {
  13444. height: math.unit(5 + 9 / 12, "feet"),
  13445. weight: math.unit(70, "lb"),
  13446. name: "Front",
  13447. image: {
  13448. source: "./media/characters/quincy/front.svg",
  13449. extra: 3041 / 2751
  13450. }
  13451. },
  13452. back: {
  13453. height: math.unit(5 + 9 / 12, "feet"),
  13454. weight: math.unit(70, "lb"),
  13455. name: "Back",
  13456. image: {
  13457. source: "./media/characters/quincy/back.svg",
  13458. extra: 3041 / 2751
  13459. }
  13460. },
  13461. flying: {
  13462. height: math.unit(5 + 4 / 12, "feet"),
  13463. weight: math.unit(70, "lb"),
  13464. name: "Flying",
  13465. image: {
  13466. source: "./media/characters/quincy/flying.svg",
  13467. extra: 1044 / 930
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Micro",
  13474. height: math.unit(3, "cm")
  13475. },
  13476. {
  13477. name: "Normal",
  13478. height: math.unit(5 + 9 / 12, "feet")
  13479. },
  13480. {
  13481. name: "Macro",
  13482. height: math.unit(200, "meters"),
  13483. default: true
  13484. },
  13485. {
  13486. name: "Megamacro",
  13487. height: math.unit(1000, "meters")
  13488. },
  13489. ]
  13490. ))
  13491. characterMakers.push(() => makeCharacter(
  13492. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13493. {
  13494. front: {
  13495. height: math.unit(3 + 11/12, "feet"),
  13496. weight: math.unit(50, "lb"),
  13497. name: "Front",
  13498. image: {
  13499. source: "./media/characters/vanrel/front.svg",
  13500. extra: 1104/949,
  13501. bottom: 52/1156
  13502. }
  13503. },
  13504. back: {
  13505. height: math.unit(3 + 11/12, "feet"),
  13506. weight: math.unit(50, "lb"),
  13507. name: "Back",
  13508. image: {
  13509. source: "./media/characters/vanrel/back.svg",
  13510. extra: 1119/976,
  13511. bottom: 37/1156
  13512. }
  13513. },
  13514. tome: {
  13515. height: math.unit(1.35, "feet"),
  13516. weight: math.unit(10, "lb"),
  13517. name: "Vanrel's Tome",
  13518. rename: true,
  13519. image: {
  13520. source: "./media/characters/vanrel/tome.svg"
  13521. }
  13522. },
  13523. beans: {
  13524. height: math.unit(0.89, "feet"),
  13525. name: "Beans",
  13526. image: {
  13527. source: "./media/characters/vanrel/beans.svg"
  13528. }
  13529. },
  13530. },
  13531. [
  13532. {
  13533. name: "Normal",
  13534. height: math.unit(3 + 11/12, "feet"),
  13535. default: true
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(7 + 5 / 12, "feet"),
  13544. name: "Front",
  13545. image: {
  13546. source: "./media/characters/kuiper-vanrel/front.svg",
  13547. extra: 1219/1169,
  13548. bottom: 69/1288
  13549. }
  13550. },
  13551. back: {
  13552. height: math.unit(7 + 5 / 12, "feet"),
  13553. name: "Back",
  13554. image: {
  13555. source: "./media/characters/kuiper-vanrel/back.svg",
  13556. extra: 1236/1193,
  13557. bottom: 27/1263
  13558. }
  13559. },
  13560. foot: {
  13561. height: math.unit(0.55, "meters"),
  13562. name: "Foot",
  13563. image: {
  13564. source: "./media/characters/kuiper-vanrel/foot.svg",
  13565. }
  13566. },
  13567. battle: {
  13568. height: math.unit(6.824, "feet"),
  13569. name: "Battle",
  13570. image: {
  13571. source: "./media/characters/kuiper-vanrel/battle.svg",
  13572. extra: 1466 / 1327,
  13573. bottom: 29 / 1492.5
  13574. }
  13575. },
  13576. meerkui: {
  13577. height: math.unit(18, "inches"),
  13578. name: "Meerkui",
  13579. image: {
  13580. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13581. extra: 1354/1289,
  13582. bottom: 69/1423
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Normal",
  13589. height: math.unit(7 + 5 / 12, "feet"),
  13590. default: true
  13591. },
  13592. ]
  13593. ))
  13594. characterMakers.push(() => makeCharacter(
  13595. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13596. {
  13597. front: {
  13598. height: math.unit(8 + 5 / 12, "feet"),
  13599. name: "Front",
  13600. image: {
  13601. source: "./media/characters/keset-vanrel/front.svg",
  13602. extra: 1231/1148,
  13603. bottom: 82/1313
  13604. }
  13605. },
  13606. back: {
  13607. height: math.unit(8 + 5 / 12, "feet"),
  13608. name: "Back",
  13609. image: {
  13610. source: "./media/characters/keset-vanrel/back.svg",
  13611. extra: 1240/1174,
  13612. bottom: 33/1273
  13613. }
  13614. },
  13615. hand: {
  13616. height: math.unit(0.6, "meters"),
  13617. name: "Hand",
  13618. image: {
  13619. source: "./media/characters/keset-vanrel/hand.svg"
  13620. }
  13621. },
  13622. foot: {
  13623. height: math.unit(0.94978, "meters"),
  13624. name: "Foot",
  13625. image: {
  13626. source: "./media/characters/keset-vanrel/foot.svg"
  13627. }
  13628. },
  13629. battle: {
  13630. height: math.unit(7.408, "feet"),
  13631. name: "Battle",
  13632. image: {
  13633. source: "./media/characters/keset-vanrel/battle.svg",
  13634. extra: 1890 / 1386,
  13635. bottom: 73.28 / 1970
  13636. }
  13637. },
  13638. },
  13639. [
  13640. {
  13641. name: "Normal",
  13642. height: math.unit(8 + 5 / 12, "feet"),
  13643. default: true
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13649. {
  13650. front: {
  13651. height: math.unit(6, "feet"),
  13652. weight: math.unit(150, "lb"),
  13653. name: "Front",
  13654. image: {
  13655. source: "./media/characters/neos/front.svg",
  13656. extra: 1696 / 992,
  13657. bottom: 0.14
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Normal",
  13664. height: math.unit(54, "cm"),
  13665. default: true
  13666. },
  13667. {
  13668. name: "Macro",
  13669. height: math.unit(100, "m")
  13670. },
  13671. {
  13672. name: "Megamacro",
  13673. height: math.unit(10, "km")
  13674. },
  13675. {
  13676. name: "Megamacro+",
  13677. height: math.unit(100, "km")
  13678. },
  13679. {
  13680. name: "Gigamacro",
  13681. height: math.unit(100, "Mm")
  13682. },
  13683. {
  13684. name: "Teramacro",
  13685. height: math.unit(100, "Gm")
  13686. },
  13687. {
  13688. name: "Examacro",
  13689. height: math.unit(100, "Em")
  13690. },
  13691. {
  13692. name: "Godly",
  13693. height: math.unit(10000, "Ym")
  13694. },
  13695. {
  13696. name: "Beyond Godly",
  13697. height: math.unit(25, "multiverses")
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13703. {
  13704. feminine: {
  13705. height: math.unit(5, "feet"),
  13706. weight: math.unit(100, "lb"),
  13707. name: "Feminine",
  13708. image: {
  13709. source: "./media/characters/sammy-mouse/feminine.svg",
  13710. extra: 2526 / 2425,
  13711. bottom: 0.123
  13712. }
  13713. },
  13714. masculine: {
  13715. height: math.unit(5, "feet"),
  13716. weight: math.unit(100, "lb"),
  13717. name: "Masculine",
  13718. image: {
  13719. source: "./media/characters/sammy-mouse/masculine.svg",
  13720. extra: 2526 / 2425,
  13721. bottom: 0.123
  13722. }
  13723. },
  13724. },
  13725. [
  13726. {
  13727. name: "Micro",
  13728. height: math.unit(5, "inches")
  13729. },
  13730. {
  13731. name: "Normal",
  13732. height: math.unit(5, "feet"),
  13733. default: true
  13734. },
  13735. {
  13736. name: "Macro",
  13737. height: math.unit(60, "feet")
  13738. },
  13739. ]
  13740. ))
  13741. characterMakers.push(() => makeCharacter(
  13742. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13743. {
  13744. front: {
  13745. height: math.unit(4, "feet"),
  13746. weight: math.unit(50, "lb"),
  13747. name: "Front",
  13748. image: {
  13749. source: "./media/characters/kole/front.svg",
  13750. extra: 1423 / 1303,
  13751. bottom: 0.025
  13752. }
  13753. },
  13754. back: {
  13755. height: math.unit(4, "feet"),
  13756. weight: math.unit(50, "lb"),
  13757. name: "Back",
  13758. image: {
  13759. source: "./media/characters/kole/back.svg",
  13760. extra: 1426 / 1280,
  13761. bottom: 0.02
  13762. }
  13763. },
  13764. },
  13765. [
  13766. {
  13767. name: "Normal",
  13768. height: math.unit(4, "feet"),
  13769. default: true
  13770. },
  13771. ]
  13772. ))
  13773. characterMakers.push(() => makeCharacter(
  13774. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13775. {
  13776. front: {
  13777. height: math.unit(2.5, "feet"),
  13778. weight: math.unit(32, "lb"),
  13779. name: "Front",
  13780. image: {
  13781. source: "./media/characters/rufran/front.svg",
  13782. extra: 1313/885,
  13783. bottom: 94/1407
  13784. }
  13785. },
  13786. side: {
  13787. height: math.unit(2.5, "feet"),
  13788. weight: math.unit(32, "lb"),
  13789. name: "Side",
  13790. image: {
  13791. source: "./media/characters/rufran/side.svg",
  13792. extra: 1109/852,
  13793. bottom: 118/1227
  13794. }
  13795. },
  13796. back: {
  13797. height: math.unit(2.5, "feet"),
  13798. weight: math.unit(32, "lb"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/rufran/back.svg",
  13802. extra: 1280/878,
  13803. bottom: 131/1411
  13804. }
  13805. },
  13806. mouth: {
  13807. height: math.unit(1.13, "feet"),
  13808. name: "Mouth",
  13809. image: {
  13810. source: "./media/characters/rufran/mouth.svg"
  13811. }
  13812. },
  13813. foot: {
  13814. height: math.unit(1.33, "feet"),
  13815. name: "Foot",
  13816. image: {
  13817. source: "./media/characters/rufran/foot.svg"
  13818. }
  13819. },
  13820. koboldFront: {
  13821. height: math.unit(2 + 6 / 12, "feet"),
  13822. weight: math.unit(20, "lb"),
  13823. name: "Front (Kobold)",
  13824. image: {
  13825. source: "./media/characters/rufran/kobold-front.svg",
  13826. extra: 2041 / 1839,
  13827. bottom: 0.055
  13828. }
  13829. },
  13830. koboldBack: {
  13831. height: math.unit(2 + 6 / 12, "feet"),
  13832. weight: math.unit(20, "lb"),
  13833. name: "Back (Kobold)",
  13834. image: {
  13835. source: "./media/characters/rufran/kobold-back.svg",
  13836. extra: 2054 / 1839,
  13837. bottom: 0.01
  13838. }
  13839. },
  13840. koboldHand: {
  13841. height: math.unit(0.2166, "meters"),
  13842. name: "Hand (Kobold)",
  13843. image: {
  13844. source: "./media/characters/rufran/kobold-hand.svg"
  13845. }
  13846. },
  13847. koboldFoot: {
  13848. height: math.unit(0.185, "meters"),
  13849. name: "Foot (Kobold)",
  13850. image: {
  13851. source: "./media/characters/rufran/kobold-foot.svg"
  13852. }
  13853. },
  13854. },
  13855. [
  13856. {
  13857. name: "Micro",
  13858. height: math.unit(1, "inch")
  13859. },
  13860. {
  13861. name: "Normal",
  13862. height: math.unit(2 + 6 / 12, "feet"),
  13863. default: true
  13864. },
  13865. {
  13866. name: "Big",
  13867. height: math.unit(60, "feet")
  13868. },
  13869. {
  13870. name: "Macro",
  13871. height: math.unit(325, "feet")
  13872. },
  13873. ]
  13874. ))
  13875. characterMakers.push(() => makeCharacter(
  13876. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13877. {
  13878. front: {
  13879. height: math.unit(0.3, "meters"),
  13880. weight: math.unit(3.5, "kg"),
  13881. name: "Front",
  13882. image: {
  13883. source: "./media/characters/chip/front.svg",
  13884. extra: 748 / 674
  13885. }
  13886. },
  13887. },
  13888. [
  13889. {
  13890. name: "Micro",
  13891. height: math.unit(1, "inch"),
  13892. default: true
  13893. },
  13894. ]
  13895. ))
  13896. characterMakers.push(() => makeCharacter(
  13897. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13898. {
  13899. side: {
  13900. height: math.unit(2.3, "meters"),
  13901. weight: math.unit(3500, "lb"),
  13902. name: "Side",
  13903. image: {
  13904. source: "./media/characters/torvid/side.svg",
  13905. extra: 1972 / 722,
  13906. bottom: 0.035
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Normal",
  13913. height: math.unit(2.3, "meters"),
  13914. default: true
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13920. {
  13921. front: {
  13922. height: math.unit(2, "meters"),
  13923. weight: math.unit(150.5, "kg"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/susan/front.svg",
  13927. extra: 693 / 635,
  13928. bottom: 0.05
  13929. }
  13930. },
  13931. },
  13932. [
  13933. {
  13934. name: "Megamacro",
  13935. height: math.unit(505, "miles"),
  13936. default: true
  13937. },
  13938. ]
  13939. ))
  13940. characterMakers.push(() => makeCharacter(
  13941. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13942. {
  13943. front: {
  13944. height: math.unit(6, "feet"),
  13945. weight: math.unit(150, "lb"),
  13946. name: "Front",
  13947. image: {
  13948. source: "./media/characters/raindrops/front.svg",
  13949. extra: 2655 / 2461,
  13950. bottom: 49 / 2705
  13951. }
  13952. },
  13953. back: {
  13954. height: math.unit(6, "feet"),
  13955. weight: math.unit(150, "lb"),
  13956. name: "Back",
  13957. image: {
  13958. source: "./media/characters/raindrops/back.svg",
  13959. extra: 2574 / 2400,
  13960. bottom: 65 / 2634
  13961. }
  13962. },
  13963. },
  13964. [
  13965. {
  13966. name: "Micro",
  13967. height: math.unit(6, "inches")
  13968. },
  13969. {
  13970. name: "Normal",
  13971. height: math.unit(6 + 2 / 12, "feet")
  13972. },
  13973. {
  13974. name: "Macro",
  13975. height: math.unit(131, "feet"),
  13976. default: true
  13977. },
  13978. {
  13979. name: "Megamacro",
  13980. height: math.unit(15, "miles")
  13981. },
  13982. {
  13983. name: "Gigamacro",
  13984. height: math.unit(4000, "miles")
  13985. },
  13986. {
  13987. name: "Teramacro",
  13988. height: math.unit(315000, "miles")
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13994. {
  13995. front: {
  13996. height: math.unit(2.794, "meters"),
  13997. weight: math.unit(325, "kg"),
  13998. name: "Front",
  13999. image: {
  14000. source: "./media/characters/tezwa/front.svg",
  14001. extra: 2083 / 1906,
  14002. bottom: 0.031
  14003. }
  14004. },
  14005. foot: {
  14006. height: math.unit(0.687, "meters"),
  14007. name: "Foot",
  14008. image: {
  14009. source: "./media/characters/tezwa/foot.svg"
  14010. }
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Normal",
  14016. height: math.unit(9 + 2 / 12, "feet"),
  14017. default: true
  14018. },
  14019. ]
  14020. ))
  14021. characterMakers.push(() => makeCharacter(
  14022. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14023. {
  14024. front: {
  14025. height: math.unit(58, "feet"),
  14026. weight: math.unit(89000, "lb"),
  14027. name: "Front",
  14028. image: {
  14029. source: "./media/characters/typhus/front.svg",
  14030. extra: 816 / 800,
  14031. bottom: 0.065
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Macro",
  14038. height: math.unit(58, "feet"),
  14039. default: true
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14045. {
  14046. front: {
  14047. height: math.unit(12, "feet"),
  14048. weight: math.unit(6, "tonnes"),
  14049. name: "Front",
  14050. image: {
  14051. source: "./media/characters/lyra-von-wulf/front.svg",
  14052. extra: 1,
  14053. bottom: 0.10
  14054. }
  14055. },
  14056. frontMecha: {
  14057. height: math.unit(12, "feet"),
  14058. weight: math.unit(12, "tonnes"),
  14059. name: "Front (Mecha)",
  14060. image: {
  14061. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14062. extra: 1,
  14063. bottom: 0.042
  14064. }
  14065. },
  14066. maw: {
  14067. height: math.unit(2.2, "feet"),
  14068. name: "Maw",
  14069. image: {
  14070. source: "./media/characters/lyra-von-wulf/maw.svg"
  14071. }
  14072. },
  14073. },
  14074. [
  14075. {
  14076. name: "Normal",
  14077. height: math.unit(12, "feet"),
  14078. default: true
  14079. },
  14080. {
  14081. name: "Classic",
  14082. height: math.unit(50, "feet")
  14083. },
  14084. {
  14085. name: "Macro",
  14086. height: math.unit(500, "feet")
  14087. },
  14088. {
  14089. name: "Megamacro",
  14090. height: math.unit(1, "mile")
  14091. },
  14092. {
  14093. name: "Gigamacro",
  14094. height: math.unit(400, "miles")
  14095. },
  14096. {
  14097. name: "Teramacro",
  14098. height: math.unit(22000, "miles")
  14099. },
  14100. {
  14101. name: "Solarmacro",
  14102. height: math.unit(8600000, "miles")
  14103. },
  14104. {
  14105. name: "Galactic",
  14106. height: math.unit(1057000, "lightyears")
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14112. {
  14113. front: {
  14114. height: math.unit(6 + 10 / 12, "feet"),
  14115. weight: math.unit(150, "lb"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/dixon/front.svg",
  14119. extra: 3361 / 3209,
  14120. bottom: 0.01
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(6 + 10 / 12, "feet"),
  14128. default: true
  14129. },
  14130. {
  14131. name: "Big",
  14132. height: math.unit(12, "meters")
  14133. },
  14134. {
  14135. name: "Macro",
  14136. height: math.unit(500, "meters")
  14137. },
  14138. {
  14139. name: "Megamacro",
  14140. height: math.unit(2, "km")
  14141. },
  14142. ]
  14143. ))
  14144. characterMakers.push(() => makeCharacter(
  14145. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14146. {
  14147. front: {
  14148. height: math.unit(185, "cm"),
  14149. weight: math.unit(68, "kg"),
  14150. name: "Front",
  14151. image: {
  14152. source: "./media/characters/kauko/front.svg",
  14153. extra: 1455 / 1421,
  14154. bottom: 0.03
  14155. }
  14156. },
  14157. back: {
  14158. height: math.unit(185, "cm"),
  14159. weight: math.unit(68, "kg"),
  14160. name: "Back",
  14161. image: {
  14162. source: "./media/characters/kauko/back.svg",
  14163. extra: 1455 / 1421,
  14164. bottom: 0.004
  14165. }
  14166. },
  14167. },
  14168. [
  14169. {
  14170. name: "Normal",
  14171. height: math.unit(185, "cm"),
  14172. default: true
  14173. },
  14174. ]
  14175. ))
  14176. characterMakers.push(() => makeCharacter(
  14177. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14178. {
  14179. frontSfw: {
  14180. height: math.unit(5, "meters"),
  14181. weight: math.unit(4250, "lb"),
  14182. name: "Front",
  14183. image: {
  14184. source: "./media/characters/varg/front-sfw.svg",
  14185. extra: 1103/1010,
  14186. bottom: 50/1153
  14187. },
  14188. form: "anthro",
  14189. default: true
  14190. },
  14191. backSfw: {
  14192. height: math.unit(5, "meters"),
  14193. weight: math.unit(4250, "lb"),
  14194. name: "Back",
  14195. image: {
  14196. source: "./media/characters/varg/back-sfw.svg",
  14197. extra: 1038/1022,
  14198. bottom: 36/1074
  14199. },
  14200. form: "anthro"
  14201. },
  14202. frontNsfw: {
  14203. height: math.unit(5, "meters"),
  14204. weight: math.unit(4250, "lb"),
  14205. name: "Front (NSFW)",
  14206. image: {
  14207. source: "./media/characters/varg/front-nsfw.svg",
  14208. extra: 1103/1010,
  14209. bottom: 50/1153
  14210. },
  14211. form: "anthro"
  14212. },
  14213. sheath: {
  14214. height: math.unit(3.8, "feet"),
  14215. weight: math.unit(90, "kilograms"),
  14216. name: "Sheath",
  14217. image: {
  14218. source: "./media/characters/varg/sheath.svg"
  14219. },
  14220. form: "anthro"
  14221. },
  14222. dick: {
  14223. height: math.unit(4.6, "feet"),
  14224. weight: math.unit(451, "kilograms"),
  14225. name: "Dick",
  14226. image: {
  14227. source: "./media/characters/varg/dick.svg"
  14228. },
  14229. form: "anthro"
  14230. },
  14231. feralSfw: {
  14232. height: math.unit(5, "meters"),
  14233. weight: math.unit(100000, "lb"),
  14234. name: "Side",
  14235. image: {
  14236. source: "./media/characters/varg/feral-sfw.svg",
  14237. extra: 1065/511,
  14238. bottom: 211/1276
  14239. },
  14240. form: "feral",
  14241. default: true
  14242. },
  14243. feralNsfw: {
  14244. height: math.unit(5, "meters"),
  14245. weight: math.unit(100000, "lb"),
  14246. name: "Side (NSFW)",
  14247. image: {
  14248. source: "./media/characters/varg/feral-nsfw.svg",
  14249. extra: 1065/511,
  14250. bottom: 211/1276
  14251. },
  14252. form: "feral",
  14253. },
  14254. feralSheath: {
  14255. height: math.unit(9.8, "feet"),
  14256. weight: math.unit(2000, "kilograms"),
  14257. name: "Sheath",
  14258. image: {
  14259. source: "./media/characters/varg/sheath.svg"
  14260. },
  14261. form: "feral"
  14262. },
  14263. feralDick: {
  14264. height: math.unit(13.11, "feet"),
  14265. weight: math.unit(10440, "kilograms"),
  14266. name: "Dick",
  14267. image: {
  14268. source: "./media/characters/varg/dick.svg"
  14269. },
  14270. form: "feral"
  14271. },
  14272. },
  14273. [
  14274. {
  14275. name: "Normal",
  14276. height: math.unit(5, "meters"),
  14277. form: "anthro"
  14278. },
  14279. {
  14280. name: "Macro",
  14281. height: math.unit(200, "meters"),
  14282. form: "anthro"
  14283. },
  14284. {
  14285. name: "Megamacro",
  14286. height: math.unit(20, "kilometers"),
  14287. form: "anthro"
  14288. },
  14289. {
  14290. name: "True Size",
  14291. height: math.unit(211, "km"),
  14292. form: "anthro",
  14293. default: true
  14294. },
  14295. {
  14296. name: "Gigamacro",
  14297. height: math.unit(1000, "km"),
  14298. form: "anthro"
  14299. },
  14300. {
  14301. name: "Gigamacro+",
  14302. height: math.unit(8000, "km"),
  14303. form: "anthro"
  14304. },
  14305. {
  14306. name: "Teramacro",
  14307. height: math.unit(1000000, "km"),
  14308. form: "anthro"
  14309. },
  14310. {
  14311. name: "Normal",
  14312. height: math.unit(5, "meters"),
  14313. form: "feral"
  14314. },
  14315. {
  14316. name: "Macro",
  14317. height: math.unit(200, "meters"),
  14318. form: "feral"
  14319. },
  14320. {
  14321. name: "Megamacro",
  14322. height: math.unit(20, "kilometers"),
  14323. form: "feral"
  14324. },
  14325. {
  14326. name: "True Size",
  14327. height: math.unit(211, "km"),
  14328. form: "feral",
  14329. default: true
  14330. },
  14331. {
  14332. name: "Gigamacro",
  14333. height: math.unit(1000, "km"),
  14334. form: "feral"
  14335. },
  14336. {
  14337. name: "Gigamacro+",
  14338. height: math.unit(8000, "km"),
  14339. form: "feral"
  14340. },
  14341. {
  14342. name: "Teramacro",
  14343. height: math.unit(1000000, "km"),
  14344. form: "feral"
  14345. },
  14346. ],
  14347. {
  14348. "anthro": {
  14349. name: "Anthro",
  14350. default: true
  14351. },
  14352. "feral": {
  14353. name: "Feral",
  14354. },
  14355. }
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14359. {
  14360. front: {
  14361. height: math.unit(7 + 7 / 12, "feet"),
  14362. weight: math.unit(267, "lb"),
  14363. name: "Front",
  14364. image: {
  14365. source: "./media/characters/dayza/front.svg",
  14366. extra: 1262 / 1200,
  14367. bottom: 0.035
  14368. }
  14369. },
  14370. side: {
  14371. height: math.unit(7 + 7 / 12, "feet"),
  14372. weight: math.unit(267, "lb"),
  14373. name: "Side",
  14374. image: {
  14375. source: "./media/characters/dayza/side.svg",
  14376. extra: 1295 / 1245,
  14377. bottom: 0.05
  14378. }
  14379. },
  14380. back: {
  14381. height: math.unit(7 + 7 / 12, "feet"),
  14382. weight: math.unit(267, "lb"),
  14383. name: "Back",
  14384. image: {
  14385. source: "./media/characters/dayza/back.svg",
  14386. extra: 1241 / 1170
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Normal",
  14393. height: math.unit(7 + 7 / 12, "feet"),
  14394. default: true
  14395. },
  14396. {
  14397. name: "Macro",
  14398. height: math.unit(155, "feet")
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14404. {
  14405. front: {
  14406. height: math.unit(6 + 5 / 12, "feet"),
  14407. weight: math.unit(160, "lb"),
  14408. name: "Front",
  14409. image: {
  14410. source: "./media/characters/xanthos/front.svg",
  14411. extra: 1,
  14412. bottom: 0.04
  14413. }
  14414. },
  14415. back: {
  14416. height: math.unit(6 + 5 / 12, "feet"),
  14417. weight: math.unit(160, "lb"),
  14418. name: "Back",
  14419. image: {
  14420. source: "./media/characters/xanthos/back.svg",
  14421. extra: 1,
  14422. bottom: 0.03
  14423. }
  14424. },
  14425. hand: {
  14426. height: math.unit(0.928, "feet"),
  14427. name: "Hand",
  14428. image: {
  14429. source: "./media/characters/xanthos/hand.svg"
  14430. }
  14431. },
  14432. foot: {
  14433. height: math.unit(1.286, "feet"),
  14434. name: "Foot",
  14435. image: {
  14436. source: "./media/characters/xanthos/foot.svg"
  14437. }
  14438. },
  14439. },
  14440. [
  14441. {
  14442. name: "Normal",
  14443. height: math.unit(6 + 5 / 12, "feet"),
  14444. default: true
  14445. },
  14446. {
  14447. name: "Normal+",
  14448. height: math.unit(6, "meters")
  14449. },
  14450. {
  14451. name: "Macro",
  14452. height: math.unit(40, "feet")
  14453. },
  14454. {
  14455. name: "Macro+",
  14456. height: math.unit(200, "meters")
  14457. },
  14458. {
  14459. name: "Megamacro",
  14460. height: math.unit(20, "km")
  14461. },
  14462. {
  14463. name: "Megamacro+",
  14464. height: math.unit(100, "km")
  14465. },
  14466. {
  14467. name: "Gigamacro",
  14468. height: math.unit(200, "megameters")
  14469. },
  14470. {
  14471. name: "Gigamacro+",
  14472. height: math.unit(1.5, "gigameters")
  14473. },
  14474. ]
  14475. ))
  14476. characterMakers.push(() => makeCharacter(
  14477. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14478. {
  14479. front: {
  14480. height: math.unit(6 + 3 / 12, "feet"),
  14481. weight: math.unit(215, "lb"),
  14482. name: "Front",
  14483. image: {
  14484. source: "./media/characters/grynn/front.svg",
  14485. extra: 4627 / 4209,
  14486. bottom: 0.047
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Micro",
  14493. height: math.unit(6, "inches")
  14494. },
  14495. {
  14496. name: "Normal",
  14497. height: math.unit(6 + 3 / 12, "feet"),
  14498. default: true
  14499. },
  14500. {
  14501. name: "Big",
  14502. height: math.unit(104, "feet")
  14503. },
  14504. {
  14505. name: "Macro",
  14506. height: math.unit(944, "feet")
  14507. },
  14508. {
  14509. name: "Macro+",
  14510. height: math.unit(9480, "feet")
  14511. },
  14512. {
  14513. name: "Megamacro",
  14514. height: math.unit(78752, "feet")
  14515. },
  14516. {
  14517. name: "Megamacro+",
  14518. height: math.unit(630128, "feet")
  14519. },
  14520. {
  14521. name: "Megamacro++",
  14522. height: math.unit(3150695, "feet")
  14523. },
  14524. ]
  14525. ))
  14526. characterMakers.push(() => makeCharacter(
  14527. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14528. {
  14529. front: {
  14530. height: math.unit(7 + 5 / 12, "feet"),
  14531. weight: math.unit(450, "lb"),
  14532. name: "Front",
  14533. image: {
  14534. source: "./media/characters/mocha-aura/front.svg",
  14535. extra: 1907 / 1817,
  14536. bottom: 0.04
  14537. }
  14538. },
  14539. back: {
  14540. height: math.unit(7 + 5 / 12, "feet"),
  14541. weight: math.unit(450, "lb"),
  14542. name: "Back",
  14543. image: {
  14544. source: "./media/characters/mocha-aura/back.svg",
  14545. extra: 1900 / 1825,
  14546. bottom: 0.045
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Nano",
  14553. height: math.unit(1, "nm")
  14554. },
  14555. {
  14556. name: "Megamicro",
  14557. height: math.unit(1, "mm")
  14558. },
  14559. {
  14560. name: "Micro",
  14561. height: math.unit(3, "inches")
  14562. },
  14563. {
  14564. name: "Normal",
  14565. height: math.unit(7 + 5 / 12, "feet"),
  14566. default: true
  14567. },
  14568. {
  14569. name: "Macro",
  14570. height: math.unit(30, "feet")
  14571. },
  14572. {
  14573. name: "Megamacro",
  14574. height: math.unit(3500, "feet")
  14575. },
  14576. {
  14577. name: "Teramacro",
  14578. height: math.unit(500000, "miles")
  14579. },
  14580. {
  14581. name: "Petamacro",
  14582. height: math.unit(50000000000000000, "parsecs")
  14583. },
  14584. ]
  14585. ))
  14586. characterMakers.push(() => makeCharacter(
  14587. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14588. {
  14589. front: {
  14590. height: math.unit(6, "feet"),
  14591. weight: math.unit(150, "lb"),
  14592. name: "Front",
  14593. image: {
  14594. source: "./media/characters/ilisha-devya/front.svg",
  14595. extra: 1053/1049,
  14596. bottom: 270/1323
  14597. }
  14598. },
  14599. back: {
  14600. height: math.unit(6, "feet"),
  14601. weight: math.unit(150, "lb"),
  14602. name: "Back",
  14603. image: {
  14604. source: "./media/characters/ilisha-devya/back.svg",
  14605. extra: 1131/1128,
  14606. bottom: 39/1170
  14607. }
  14608. },
  14609. },
  14610. [
  14611. {
  14612. name: "Macro",
  14613. height: math.unit(500, "feet"),
  14614. default: true
  14615. },
  14616. {
  14617. name: "Megamacro",
  14618. height: math.unit(10, "miles")
  14619. },
  14620. {
  14621. name: "Gigamacro",
  14622. height: math.unit(100000, "miles")
  14623. },
  14624. {
  14625. name: "Examacro",
  14626. height: math.unit(1e9, "lightyears")
  14627. },
  14628. {
  14629. name: "Omniversal",
  14630. height: math.unit(1e33, "lightyears")
  14631. },
  14632. {
  14633. name: "Beyond Infinite",
  14634. height: math.unit(1e100, "lightyears")
  14635. },
  14636. ]
  14637. ))
  14638. characterMakers.push(() => makeCharacter(
  14639. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14640. {
  14641. Side: {
  14642. height: math.unit(6, "feet"),
  14643. weight: math.unit(150, "lb"),
  14644. name: "Side",
  14645. image: {
  14646. source: "./media/characters/mira/side.svg",
  14647. extra: 900 / 799,
  14648. bottom: 0.02
  14649. }
  14650. },
  14651. },
  14652. [
  14653. {
  14654. name: "Human Size",
  14655. height: math.unit(6, "feet")
  14656. },
  14657. {
  14658. name: "Macro",
  14659. height: math.unit(100, "feet"),
  14660. default: true
  14661. },
  14662. {
  14663. name: "Megamacro",
  14664. height: math.unit(10, "miles")
  14665. },
  14666. {
  14667. name: "Gigamacro",
  14668. height: math.unit(25000, "miles")
  14669. },
  14670. {
  14671. name: "Teramacro",
  14672. height: math.unit(300, "AU")
  14673. },
  14674. {
  14675. name: "Full Size",
  14676. height: math.unit(4.5e10, "lightyears")
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(6, "feet"),
  14685. weight: math.unit(150, "lb"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/holly/front.svg",
  14689. extra: 639 / 606
  14690. }
  14691. },
  14692. back: {
  14693. height: math.unit(6, "feet"),
  14694. weight: math.unit(150, "lb"),
  14695. name: "Back",
  14696. image: {
  14697. source: "./media/characters/holly/back.svg",
  14698. extra: 623 / 598
  14699. }
  14700. },
  14701. frontWorking: {
  14702. height: math.unit(6, "feet"),
  14703. weight: math.unit(150, "lb"),
  14704. name: "Front (Working)",
  14705. image: {
  14706. source: "./media/characters/holly/front-working.svg",
  14707. extra: 607 / 577,
  14708. bottom: 0.048
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Normal",
  14715. height: math.unit(12 + 3 / 12, "feet"),
  14716. default: true
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(6, "feet"),
  14725. weight: math.unit(150, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/porter/front.svg",
  14729. extra: 1,
  14730. bottom: 0.01
  14731. }
  14732. },
  14733. frontRobes: {
  14734. height: math.unit(6, "feet"),
  14735. weight: math.unit(150, "lb"),
  14736. name: "Front (Robes)",
  14737. image: {
  14738. source: "./media/characters/porter/front-robes.svg",
  14739. extra: 1.01,
  14740. bottom: 0.01
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Normal",
  14747. height: math.unit(11 + 9 / 12, "feet"),
  14748. default: true
  14749. },
  14750. ]
  14751. ))
  14752. characterMakers.push(() => makeCharacter(
  14753. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14754. {
  14755. legendary: {
  14756. height: math.unit(6, "feet"),
  14757. weight: math.unit(150, "lb"),
  14758. name: "Legendary",
  14759. image: {
  14760. source: "./media/characters/lucy/legendary.svg",
  14761. extra: 1355 / 1100,
  14762. bottom: 0.045
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Legendary",
  14769. height: math.unit(86882 * 2, "miles"),
  14770. default: true
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(6, "feet"),
  14779. weight: math.unit(150, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/drusilla/front.svg",
  14783. extra: 678 / 635,
  14784. bottom: 0.03
  14785. }
  14786. },
  14787. back: {
  14788. height: math.unit(6, "feet"),
  14789. weight: math.unit(150, "lb"),
  14790. name: "Back",
  14791. image: {
  14792. source: "./media/characters/drusilla/back.svg",
  14793. extra: 678 / 635,
  14794. bottom: 0.005
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Macro",
  14801. height: math.unit(100, "feet")
  14802. },
  14803. {
  14804. name: "Canon Height",
  14805. height: math.unit(2000, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(180, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/renard-thatch/front.svg",
  14819. extra: 2411 / 2275,
  14820. bottom: 0.01
  14821. }
  14822. },
  14823. frontPosing: {
  14824. height: math.unit(6, "feet"),
  14825. weight: math.unit(180, "lb"),
  14826. name: "Front (Posing)",
  14827. image: {
  14828. source: "./media/characters/renard-thatch/front-posing.svg",
  14829. extra: 2381 / 2261,
  14830. bottom: 0.01
  14831. }
  14832. },
  14833. back: {
  14834. height: math.unit(6, "feet"),
  14835. weight: math.unit(180, "lb"),
  14836. name: "Back",
  14837. image: {
  14838. source: "./media/characters/renard-thatch/back.svg",
  14839. extra: 2428 / 2288
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Micro",
  14846. height: math.unit(3, "inches")
  14847. },
  14848. {
  14849. name: "Default",
  14850. height: math.unit(6, "feet"),
  14851. default: true
  14852. },
  14853. {
  14854. name: "Macro",
  14855. height: math.unit(75, "feet")
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(1450, "feet"),
  14864. weight: math.unit(1.21e6, "tons"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/sekvra/front.svg",
  14868. extra: 1193/1190,
  14869. bottom: 78/1271
  14870. }
  14871. },
  14872. side: {
  14873. height: math.unit(1450, "feet"),
  14874. weight: math.unit(1.21e6, "tons"),
  14875. name: "Side",
  14876. image: {
  14877. source: "./media/characters/sekvra/side.svg",
  14878. extra: 1193/1190,
  14879. bottom: 52/1245
  14880. }
  14881. },
  14882. back: {
  14883. height: math.unit(1450, "feet"),
  14884. weight: math.unit(1.21e6, "tons"),
  14885. name: "Back",
  14886. image: {
  14887. source: "./media/characters/sekvra/back.svg",
  14888. extra: 1219/1216,
  14889. bottom: 21/1240
  14890. }
  14891. },
  14892. frontClothed: {
  14893. height: math.unit(1450, "feet"),
  14894. weight: math.unit(1.21e6, "tons"),
  14895. name: "Front (Clothed)",
  14896. image: {
  14897. source: "./media/characters/sekvra/front-clothed.svg",
  14898. extra: 1192/1189,
  14899. bottom: 79/1271
  14900. }
  14901. },
  14902. },
  14903. [
  14904. {
  14905. name: "Macro",
  14906. height: math.unit(1450, "feet"),
  14907. default: true
  14908. },
  14909. {
  14910. name: "Megamacro",
  14911. height: math.unit(15000, "feet")
  14912. },
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(6, "feet"),
  14920. weight: math.unit(150, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/carmine/front.svg",
  14924. extra: 1557/1538,
  14925. bottom: 68/1625
  14926. }
  14927. },
  14928. frontArmor: {
  14929. height: math.unit(6, "feet"),
  14930. weight: math.unit(150, "lb"),
  14931. name: "Front (Armor)",
  14932. image: {
  14933. source: "./media/characters/carmine/front-armor.svg",
  14934. extra: 1549/1530,
  14935. bottom: 82/1631
  14936. }
  14937. },
  14938. mouth: {
  14939. height: math.unit(0.55, "feet"),
  14940. name: "Mouth",
  14941. image: {
  14942. source: "./media/characters/carmine/mouth.svg"
  14943. }
  14944. },
  14945. hand: {
  14946. height: math.unit(1.05, "feet"),
  14947. name: "Hand",
  14948. image: {
  14949. source: "./media/characters/carmine/hand.svg"
  14950. }
  14951. },
  14952. foot: {
  14953. height: math.unit(0.6, "feet"),
  14954. name: "Foot",
  14955. image: {
  14956. source: "./media/characters/carmine/foot.svg"
  14957. }
  14958. },
  14959. },
  14960. [
  14961. {
  14962. name: "Large",
  14963. height: math.unit(1, "mile")
  14964. },
  14965. {
  14966. name: "Huge",
  14967. height: math.unit(40, "miles"),
  14968. default: true
  14969. },
  14970. {
  14971. name: "Colossal",
  14972. height: math.unit(2500, "miles")
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14978. {
  14979. front: {
  14980. height: math.unit(6, "feet"),
  14981. weight: math.unit(150, "lb"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/elyssia/front.svg",
  14985. extra: 2201 / 2035,
  14986. bottom: 0.05
  14987. }
  14988. },
  14989. frontClothed: {
  14990. height: math.unit(6, "feet"),
  14991. weight: math.unit(150, "lb"),
  14992. name: "Front (Clothed)",
  14993. image: {
  14994. source: "./media/characters/elyssia/front-clothed.svg",
  14995. extra: 2201 / 2035,
  14996. bottom: 0.05
  14997. }
  14998. },
  14999. back: {
  15000. height: math.unit(6, "feet"),
  15001. weight: math.unit(150, "lb"),
  15002. name: "Back",
  15003. image: {
  15004. source: "./media/characters/elyssia/back.svg",
  15005. extra: 2201 / 2035,
  15006. bottom: 0.013
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Smaller",
  15013. height: math.unit(150, "feet")
  15014. },
  15015. {
  15016. name: "Standard",
  15017. height: math.unit(1400, "feet"),
  15018. default: true
  15019. },
  15020. {
  15021. name: "Distracted",
  15022. height: math.unit(15000, "feet")
  15023. },
  15024. ]
  15025. ))
  15026. characterMakers.push(() => makeCharacter(
  15027. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15028. {
  15029. front: {
  15030. height: math.unit(7 + 4/12, "feet"),
  15031. weight: math.unit(690, "lb"),
  15032. name: "Front",
  15033. image: {
  15034. source: "./media/characters/geno-maxwell/front.svg",
  15035. extra: 984/856,
  15036. bottom: 87/1071
  15037. }
  15038. },
  15039. back: {
  15040. height: math.unit(7 + 4/12, "feet"),
  15041. weight: math.unit(690, "lb"),
  15042. name: "Back",
  15043. image: {
  15044. source: "./media/characters/geno-maxwell/back.svg",
  15045. extra: 981/854,
  15046. bottom: 57/1038
  15047. }
  15048. },
  15049. frontCostume: {
  15050. height: math.unit(7 + 4/12, "feet"),
  15051. weight: math.unit(690, "lb"),
  15052. name: "Front (Costume)",
  15053. image: {
  15054. source: "./media/characters/geno-maxwell/front-costume.svg",
  15055. extra: 984/856,
  15056. bottom: 87/1071
  15057. }
  15058. },
  15059. backcostume: {
  15060. height: math.unit(7 + 4/12, "feet"),
  15061. weight: math.unit(690, "lb"),
  15062. name: "Back (Costume)",
  15063. image: {
  15064. source: "./media/characters/geno-maxwell/back-costume.svg",
  15065. extra: 981/854,
  15066. bottom: 57/1038
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Micro",
  15073. height: math.unit(3, "inches")
  15074. },
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(7 + 4 / 12, "feet"),
  15078. default: true
  15079. },
  15080. {
  15081. name: "Macro",
  15082. height: math.unit(220, "feet")
  15083. },
  15084. {
  15085. name: "Megamacro",
  15086. height: math.unit(11, "miles")
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(7 + 4/12, "feet"),
  15095. weight: math.unit(750, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/regena-maxwell/front.svg",
  15099. extra: 984/856,
  15100. bottom: 87/1071
  15101. }
  15102. },
  15103. back: {
  15104. height: math.unit(7 + 4/12, "feet"),
  15105. weight: math.unit(750, "lb"),
  15106. name: "Back",
  15107. image: {
  15108. source: "./media/characters/regena-maxwell/back.svg",
  15109. extra: 981/854,
  15110. bottom: 57/1038
  15111. }
  15112. },
  15113. frontCostume: {
  15114. height: math.unit(7 + 4/12, "feet"),
  15115. weight: math.unit(750, "lb"),
  15116. name: "Front (Costume)",
  15117. image: {
  15118. source: "./media/characters/regena-maxwell/front-costume.svg",
  15119. extra: 984/856,
  15120. bottom: 87/1071
  15121. }
  15122. },
  15123. backcostume: {
  15124. height: math.unit(7 + 4/12, "feet"),
  15125. weight: math.unit(750, "lb"),
  15126. name: "Back (Costume)",
  15127. image: {
  15128. source: "./media/characters/regena-maxwell/back-costume.svg",
  15129. extra: 981/854,
  15130. bottom: 57/1038
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(7 + 4 / 12, "feet"),
  15138. default: true
  15139. },
  15140. {
  15141. name: "Macro",
  15142. height: math.unit(220, "feet")
  15143. },
  15144. {
  15145. name: "Megamacro",
  15146. height: math.unit(11, "miles")
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(150, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15159. extra: 860 / 690,
  15160. bottom: 0.03
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(1.7, "meters"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15174. {
  15175. front: {
  15176. height: math.unit(6, "feet"),
  15177. weight: math.unit(150, "lb"),
  15178. name: "Front",
  15179. image: {
  15180. source: "./media/characters/quilly/front.svg",
  15181. extra: 890 / 776
  15182. }
  15183. },
  15184. },
  15185. [
  15186. {
  15187. name: "Gigamacro",
  15188. height: math.unit(404090, "miles"),
  15189. default: true
  15190. },
  15191. ]
  15192. ))
  15193. characterMakers.push(() => makeCharacter(
  15194. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15195. {
  15196. front: {
  15197. height: math.unit(7 + 8 / 12, "feet"),
  15198. weight: math.unit(350, "lb"),
  15199. name: "Front",
  15200. image: {
  15201. source: "./media/characters/tempest/front.svg",
  15202. extra: 1175 / 1086,
  15203. bottom: 0.02
  15204. }
  15205. },
  15206. },
  15207. [
  15208. {
  15209. name: "Normal",
  15210. height: math.unit(7 + 8 / 12, "feet"),
  15211. default: true
  15212. },
  15213. ]
  15214. ))
  15215. characterMakers.push(() => makeCharacter(
  15216. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15217. {
  15218. side: {
  15219. height: math.unit(4 + 5 / 12, "feet"),
  15220. weight: math.unit(80, "lb"),
  15221. name: "Side",
  15222. image: {
  15223. source: "./media/characters/rodger/side.svg",
  15224. extra: 1235 / 1118
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Micro",
  15231. height: math.unit(1, "inch")
  15232. },
  15233. {
  15234. name: "Normal",
  15235. height: math.unit(4 + 5 / 12, "feet"),
  15236. default: true
  15237. },
  15238. {
  15239. name: "Macro",
  15240. height: math.unit(120, "feet")
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(6, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/danyel/front.svg",
  15253. extra: 1185 / 1123,
  15254. bottom: 0.05
  15255. }
  15256. },
  15257. },
  15258. [
  15259. {
  15260. name: "Shrunken",
  15261. height: math.unit(0.5, "mm")
  15262. },
  15263. {
  15264. name: "Micro",
  15265. height: math.unit(1, "mm"),
  15266. default: true
  15267. },
  15268. {
  15269. name: "Upsized",
  15270. height: math.unit(5 + 5 / 12, "feet")
  15271. },
  15272. ]
  15273. ))
  15274. characterMakers.push(() => makeCharacter(
  15275. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15276. {
  15277. front: {
  15278. height: math.unit(5 + 6 / 12, "feet"),
  15279. weight: math.unit(200, "lb"),
  15280. name: "Front",
  15281. image: {
  15282. source: "./media/characters/vivian-bijoux/front.svg",
  15283. extra: 1217/1209,
  15284. bottom: 76/1293
  15285. }
  15286. },
  15287. back: {
  15288. height: math.unit(5 + 6 / 12, "feet"),
  15289. weight: math.unit(200, "lb"),
  15290. name: "Back",
  15291. image: {
  15292. source: "./media/characters/vivian-bijoux/back.svg",
  15293. extra: 1214/1208,
  15294. bottom: 51/1265
  15295. }
  15296. },
  15297. dressed: {
  15298. height: math.unit(5 + 6 / 12, "feet"),
  15299. weight: math.unit(200, "lb"),
  15300. name: "Dressed",
  15301. image: {
  15302. source: "./media/characters/vivian-bijoux/dressed.svg",
  15303. extra: 1217/1209,
  15304. bottom: 76/1293
  15305. }
  15306. },
  15307. },
  15308. [
  15309. {
  15310. name: "Normal",
  15311. height: math.unit(5 + 6 / 12, "feet"),
  15312. default: true
  15313. },
  15314. {
  15315. name: "Bad Dream",
  15316. height: math.unit(500, "feet")
  15317. },
  15318. {
  15319. name: "Nightmare",
  15320. height: math.unit(500, "miles")
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15326. {
  15327. front: {
  15328. height: math.unit(6 + 1 / 12, "feet"),
  15329. weight: math.unit(260, "lb"),
  15330. name: "Front",
  15331. image: {
  15332. source: "./media/characters/zeta/front.svg",
  15333. extra: 1968 / 1889,
  15334. bottom: 0.06
  15335. }
  15336. },
  15337. back: {
  15338. height: math.unit(6 + 1 / 12, "feet"),
  15339. weight: math.unit(260, "lb"),
  15340. name: "Back",
  15341. image: {
  15342. source: "./media/characters/zeta/back.svg",
  15343. extra: 1944 / 1858,
  15344. bottom: 0.03
  15345. }
  15346. },
  15347. hand: {
  15348. height: math.unit(1.112, "feet"),
  15349. name: "Hand",
  15350. image: {
  15351. source: "./media/characters/zeta/hand.svg"
  15352. }
  15353. },
  15354. foot: {
  15355. height: math.unit(1.48, "feet"),
  15356. name: "Foot",
  15357. image: {
  15358. source: "./media/characters/zeta/foot.svg"
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Micro",
  15365. height: math.unit(6, "inches")
  15366. },
  15367. {
  15368. name: "Normal",
  15369. height: math.unit(6 + 1 / 12, "feet"),
  15370. default: true
  15371. },
  15372. {
  15373. name: "Macro",
  15374. height: math.unit(20, "feet")
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15380. {
  15381. front: {
  15382. height: math.unit(6, "feet"),
  15383. weight: math.unit(150, "lb"),
  15384. name: "Front",
  15385. image: {
  15386. source: "./media/characters/jamie-larsen/front.svg",
  15387. extra: 962 / 933,
  15388. bottom: 0.02
  15389. }
  15390. },
  15391. back: {
  15392. height: math.unit(6, "feet"),
  15393. weight: math.unit(150, "lb"),
  15394. name: "Back",
  15395. image: {
  15396. source: "./media/characters/jamie-larsen/back.svg",
  15397. extra: 997 / 946
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Macro",
  15404. height: math.unit(28 + 7 / 12, "feet"),
  15405. default: true
  15406. },
  15407. {
  15408. name: "Macro+",
  15409. height: math.unit(180, "feet")
  15410. },
  15411. {
  15412. name: "Megamacro",
  15413. height: math.unit(10, "miles")
  15414. },
  15415. {
  15416. name: "Gigamacro",
  15417. height: math.unit(200000, "miles")
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15423. {
  15424. front: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(120, "lb"),
  15427. name: "Front",
  15428. image: {
  15429. source: "./media/characters/vance/front.svg",
  15430. extra: 1980 / 1890,
  15431. bottom: 0.09
  15432. }
  15433. },
  15434. back: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(120, "lb"),
  15437. name: "Back",
  15438. image: {
  15439. source: "./media/characters/vance/back.svg",
  15440. extra: 2081 / 1994,
  15441. bottom: 0.014
  15442. }
  15443. },
  15444. hand: {
  15445. height: math.unit(0.88, "feet"),
  15446. name: "Hand",
  15447. image: {
  15448. source: "./media/characters/vance/hand.svg"
  15449. }
  15450. },
  15451. foot: {
  15452. height: math.unit(0.64, "feet"),
  15453. name: "Foot",
  15454. image: {
  15455. source: "./media/characters/vance/foot.svg"
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Small",
  15462. height: math.unit(90, "feet"),
  15463. default: true
  15464. },
  15465. {
  15466. name: "Macro",
  15467. height: math.unit(100, "meters")
  15468. },
  15469. {
  15470. name: "Megamacro",
  15471. height: math.unit(15, "miles")
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(6, "feet"),
  15480. weight: math.unit(180, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/xochitl/front.svg",
  15484. extra: 2297 / 2261,
  15485. bottom: 0.065
  15486. }
  15487. },
  15488. back: {
  15489. height: math.unit(6, "feet"),
  15490. weight: math.unit(180, "lb"),
  15491. name: "Back",
  15492. image: {
  15493. source: "./media/characters/xochitl/back.svg",
  15494. extra: 2386 / 2354,
  15495. bottom: 0.01
  15496. }
  15497. },
  15498. foot: {
  15499. height: math.unit(6 / 5 * 1.15, "feet"),
  15500. weight: math.unit(150, "lb"),
  15501. name: "Foot",
  15502. image: {
  15503. source: "./media/characters/xochitl/foot.svg"
  15504. }
  15505. },
  15506. },
  15507. [
  15508. {
  15509. name: "Macro",
  15510. height: math.unit(80, "feet")
  15511. },
  15512. {
  15513. name: "Macro+",
  15514. height: math.unit(400, "feet"),
  15515. default: true
  15516. },
  15517. {
  15518. name: "Gigamacro",
  15519. height: math.unit(80000, "miles")
  15520. },
  15521. {
  15522. name: "Gigamacro+",
  15523. height: math.unit(400000, "miles")
  15524. },
  15525. {
  15526. name: "Teramacro",
  15527. height: math.unit(300, "AU")
  15528. },
  15529. ]
  15530. ))
  15531. characterMakers.push(() => makeCharacter(
  15532. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15533. {
  15534. front: {
  15535. height: math.unit(6, "feet"),
  15536. weight: math.unit(150, "lb"),
  15537. name: "Front",
  15538. image: {
  15539. source: "./media/characters/vincent/front.svg",
  15540. extra: 1130 / 1080,
  15541. bottom: 0.055
  15542. }
  15543. },
  15544. beak: {
  15545. height: math.unit(6 * 0.1, "feet"),
  15546. name: "Beak",
  15547. image: {
  15548. source: "./media/characters/vincent/beak.svg"
  15549. }
  15550. },
  15551. hand: {
  15552. height: math.unit(6 * 0.85, "feet"),
  15553. weight: math.unit(150, "lb"),
  15554. name: "Hand",
  15555. image: {
  15556. source: "./media/characters/vincent/hand.svg"
  15557. }
  15558. },
  15559. foot: {
  15560. height: math.unit(6 * 0.19, "feet"),
  15561. weight: math.unit(150, "lb"),
  15562. name: "Foot",
  15563. image: {
  15564. source: "./media/characters/vincent/foot.svg"
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Base",
  15571. height: math.unit(6 + 5 / 12, "feet"),
  15572. default: true
  15573. },
  15574. {
  15575. name: "Macro",
  15576. height: math.unit(300, "feet")
  15577. },
  15578. {
  15579. name: "Megamacro",
  15580. height: math.unit(2, "miles")
  15581. },
  15582. {
  15583. name: "Gigamacro",
  15584. height: math.unit(1000, "miles")
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(2, "meters"),
  15593. weight: math.unit(500, "kg"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/coatl/front.svg",
  15597. extra: 3948 / 3500,
  15598. bottom: 0.082
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Normal",
  15605. height: math.unit(4, "meters")
  15606. },
  15607. {
  15608. name: "Macro",
  15609. height: math.unit(100, "meters"),
  15610. default: true
  15611. },
  15612. {
  15613. name: "Macro+",
  15614. height: math.unit(300, "meters")
  15615. },
  15616. {
  15617. name: "Megamacro",
  15618. height: math.unit(3, "gigameters")
  15619. },
  15620. {
  15621. name: "Megamacro+",
  15622. height: math.unit(300, "terameters")
  15623. },
  15624. {
  15625. name: "Megamacro++",
  15626. height: math.unit(3, "lightyears")
  15627. },
  15628. ]
  15629. ))
  15630. characterMakers.push(() => makeCharacter(
  15631. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15632. {
  15633. front: {
  15634. height: math.unit(6, "feet"),
  15635. weight: math.unit(50, "kg"),
  15636. name: "front",
  15637. image: {
  15638. source: "./media/characters/shiroryu/front.svg",
  15639. extra: 1990 / 1935
  15640. }
  15641. },
  15642. },
  15643. [
  15644. {
  15645. name: "Mortal Mingling",
  15646. height: math.unit(3, "meters")
  15647. },
  15648. {
  15649. name: "Kaiju-ish",
  15650. height: math.unit(250, "meters")
  15651. },
  15652. {
  15653. name: "Somewhat Godly",
  15654. height: math.unit(400, "km"),
  15655. default: true
  15656. },
  15657. {
  15658. name: "Planetary",
  15659. height: math.unit(300, "megameters")
  15660. },
  15661. {
  15662. name: "Galaxy-dwarfing",
  15663. height: math.unit(450, "kiloparsecs")
  15664. },
  15665. {
  15666. name: "Universe Eater",
  15667. height: math.unit(150, "gigaparsecs")
  15668. },
  15669. {
  15670. name: "Almost Immeasurable",
  15671. height: math.unit(1.3e266, "yottaparsecs")
  15672. },
  15673. ]
  15674. ))
  15675. characterMakers.push(() => makeCharacter(
  15676. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15677. {
  15678. front: {
  15679. height: math.unit(6, "feet"),
  15680. weight: math.unit(150, "lb"),
  15681. name: "Front",
  15682. image: {
  15683. source: "./media/characters/umeko/front.svg",
  15684. extra: 1,
  15685. bottom: 0.019
  15686. }
  15687. },
  15688. frontArmored: {
  15689. height: math.unit(6, "feet"),
  15690. weight: math.unit(150, "lb"),
  15691. name: "Front (Armored)",
  15692. image: {
  15693. source: "./media/characters/umeko/front-armored.svg",
  15694. extra: 1,
  15695. bottom: 0.021
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Macro",
  15702. height: math.unit(220, "feet"),
  15703. default: true
  15704. },
  15705. {
  15706. name: "Guardian Dragon",
  15707. height: math.unit(50, "miles")
  15708. },
  15709. {
  15710. name: "Cosmic",
  15711. height: math.unit(800000, "miles")
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15717. {
  15718. front: {
  15719. height: math.unit(6, "feet"),
  15720. weight: math.unit(150, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/cassidy/front.svg",
  15724. extra: 810/808,
  15725. bottom: 41/851
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Canon Height",
  15732. height: math.unit(120, "feet"),
  15733. default: true
  15734. },
  15735. {
  15736. name: "Macro+",
  15737. height: math.unit(400, "feet")
  15738. },
  15739. {
  15740. name: "Macro++",
  15741. height: math.unit(4000, "feet")
  15742. },
  15743. {
  15744. name: "Megamacro",
  15745. height: math.unit(3, "miles")
  15746. },
  15747. ]
  15748. ))
  15749. characterMakers.push(() => makeCharacter(
  15750. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15751. {
  15752. front: {
  15753. height: math.unit(6, "feet"),
  15754. weight: math.unit(150, "lb"),
  15755. name: "Front",
  15756. image: {
  15757. source: "./media/characters/isaac/front.svg",
  15758. extra: 896 / 815,
  15759. bottom: 0.11
  15760. }
  15761. },
  15762. },
  15763. [
  15764. {
  15765. name: "Human Size",
  15766. height: math.unit(8, "feet"),
  15767. default: true
  15768. },
  15769. {
  15770. name: "Macro",
  15771. height: math.unit(400, "feet")
  15772. },
  15773. {
  15774. name: "Megamacro",
  15775. height: math.unit(50, "miles")
  15776. },
  15777. {
  15778. name: "Canon Height",
  15779. height: math.unit(200, "AU")
  15780. },
  15781. ]
  15782. ))
  15783. characterMakers.push(() => makeCharacter(
  15784. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15785. {
  15786. front: {
  15787. height: math.unit(6, "feet"),
  15788. weight: math.unit(72, "kg"),
  15789. name: "Front",
  15790. image: {
  15791. source: "./media/characters/sleekit/front.svg",
  15792. extra: 4693 / 4487,
  15793. bottom: 0.012
  15794. }
  15795. },
  15796. },
  15797. [
  15798. {
  15799. name: "Minimum Height",
  15800. height: math.unit(10, "meters")
  15801. },
  15802. {
  15803. name: "Smaller",
  15804. height: math.unit(25, "meters")
  15805. },
  15806. {
  15807. name: "Larger",
  15808. height: math.unit(38, "meters"),
  15809. default: true
  15810. },
  15811. {
  15812. name: "Maximum height",
  15813. height: math.unit(100, "meters")
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(6, "feet"),
  15822. weight: math.unit(150, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/nillia/front.svg",
  15826. extra: 719/665,
  15827. bottom: 6/725
  15828. }
  15829. },
  15830. back: {
  15831. height: math.unit(6, "feet"),
  15832. weight: math.unit(150, "lb"),
  15833. name: "Back",
  15834. image: {
  15835. source: "./media/characters/nillia/back.svg",
  15836. extra: 705/651,
  15837. bottom: 5/710
  15838. }
  15839. },
  15840. },
  15841. [
  15842. {
  15843. name: "Canon Height",
  15844. height: math.unit(489, "feet"),
  15845. default: true
  15846. }
  15847. ]
  15848. ))
  15849. characterMakers.push(() => makeCharacter(
  15850. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15851. {
  15852. front: {
  15853. height: math.unit(6, "feet"),
  15854. weight: math.unit(150, "lb"),
  15855. name: "Front",
  15856. image: {
  15857. source: "./media/characters/mesmyriza/front.svg",
  15858. extra: 1541/1291,
  15859. bottom: 87/1628
  15860. }
  15861. },
  15862. foot: {
  15863. height: math.unit(6 / (250 / 35), "feet"),
  15864. name: "Foot",
  15865. image: {
  15866. source: "./media/characters/mesmyriza/foot.svg"
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Macro",
  15873. height: math.unit(457, "meters"),
  15874. default: true
  15875. },
  15876. {
  15877. name: "Megamacro",
  15878. height: math.unit(8, "megameters")
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(6, "feet"),
  15887. weight: math.unit(250, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/saudade/front.svg",
  15891. extra: 1172 / 1139,
  15892. bottom: 0.035
  15893. }
  15894. },
  15895. },
  15896. [
  15897. {
  15898. name: "Micro",
  15899. height: math.unit(3, "inches")
  15900. },
  15901. {
  15902. name: "Normal",
  15903. height: math.unit(6, "feet"),
  15904. default: true
  15905. },
  15906. {
  15907. name: "Macro",
  15908. height: math.unit(50, "feet")
  15909. },
  15910. {
  15911. name: "Megamacro",
  15912. height: math.unit(2800, "feet")
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15918. {
  15919. front: {
  15920. height: math.unit(5 + 4 / 12, "feet"),
  15921. weight: math.unit(100, "lb"),
  15922. name: "Front",
  15923. image: {
  15924. source: "./media/characters/keireer/front.svg",
  15925. extra: 716 / 666,
  15926. bottom: 0.05
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Normal",
  15933. height: math.unit(5 + 4 / 12, "feet"),
  15934. default: true
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15940. {
  15941. front: {
  15942. height: math.unit(5.5, "feet"),
  15943. weight: math.unit(90, "kg"),
  15944. name: "Front",
  15945. image: {
  15946. source: "./media/characters/mirja/front.svg",
  15947. extra: 1452/1262,
  15948. bottom: 67/1519
  15949. }
  15950. },
  15951. frontDressed: {
  15952. height: math.unit(5.5, "feet"),
  15953. weight: math.unit(90, "lb"),
  15954. name: "Front (Dressed)",
  15955. image: {
  15956. source: "./media/characters/mirja/dressed.svg",
  15957. extra: 1452/1262,
  15958. bottom: 67/1519
  15959. }
  15960. },
  15961. back: {
  15962. height: math.unit(6, "feet"),
  15963. weight: math.unit(90, "lb"),
  15964. name: "Back",
  15965. image: {
  15966. source: "./media/characters/mirja/back.svg",
  15967. extra: 1892/1795,
  15968. bottom: 48/1940
  15969. }
  15970. },
  15971. maw: {
  15972. height: math.unit(1.312, "feet"),
  15973. name: "Maw",
  15974. image: {
  15975. source: "./media/characters/mirja/maw.svg"
  15976. }
  15977. },
  15978. paw: {
  15979. height: math.unit(1.15, "feet"),
  15980. name: "Paw",
  15981. image: {
  15982. source: "./media/characters/mirja/paw.svg"
  15983. }
  15984. },
  15985. },
  15986. [
  15987. {
  15988. name: "\"Incognito\"",
  15989. height: math.unit(3, "meters")
  15990. },
  15991. {
  15992. name: "Strolling Size",
  15993. height: math.unit(15, "km")
  15994. },
  15995. {
  15996. name: "Larger Strolling Size",
  15997. height: math.unit(400, "km")
  15998. },
  15999. {
  16000. name: "Preferred Size",
  16001. height: math.unit(5000, "km"),
  16002. default: true
  16003. },
  16004. {
  16005. name: "True Size",
  16006. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16007. },
  16008. ]
  16009. ))
  16010. characterMakers.push(() => makeCharacter(
  16011. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16012. {
  16013. front: {
  16014. height: math.unit(15, "feet"),
  16015. weight: math.unit(880, "kg"),
  16016. name: "Front",
  16017. image: {
  16018. source: "./media/characters/nightraver/front.svg",
  16019. extra: 2444 / 2160,
  16020. bottom: 0.027
  16021. }
  16022. },
  16023. back: {
  16024. height: math.unit(15, "feet"),
  16025. weight: math.unit(880, "kg"),
  16026. name: "Back",
  16027. image: {
  16028. source: "./media/characters/nightraver/back.svg",
  16029. extra: 2309 / 2180,
  16030. bottom: 0.005
  16031. }
  16032. },
  16033. sole: {
  16034. height: math.unit(2.878, "feet"),
  16035. name: "Sole",
  16036. image: {
  16037. source: "./media/characters/nightraver/sole.svg"
  16038. }
  16039. },
  16040. foot: {
  16041. height: math.unit(2.285, "feet"),
  16042. name: "Foot",
  16043. image: {
  16044. source: "./media/characters/nightraver/foot.svg"
  16045. }
  16046. },
  16047. maw: {
  16048. height: math.unit(2.67, "feet"),
  16049. name: "Maw",
  16050. image: {
  16051. source: "./media/characters/nightraver/maw.svg"
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Micro",
  16058. height: math.unit(1, "cm")
  16059. },
  16060. {
  16061. name: "Normal",
  16062. height: math.unit(15, "feet"),
  16063. default: true
  16064. },
  16065. {
  16066. name: "Macro",
  16067. height: math.unit(300, "feet")
  16068. },
  16069. {
  16070. name: "Megamacro",
  16071. height: math.unit(300, "miles")
  16072. },
  16073. {
  16074. name: "Gigamacro",
  16075. height: math.unit(10000, "miles")
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16081. {
  16082. side: {
  16083. height: math.unit(2, "inches"),
  16084. weight: math.unit(5, "grams"),
  16085. name: "Side",
  16086. image: {
  16087. source: "./media/characters/arc/side.svg"
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Micro",
  16094. height: math.unit(2, "inches"),
  16095. default: true
  16096. },
  16097. ]
  16098. ))
  16099. characterMakers.push(() => makeCharacter(
  16100. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16101. {
  16102. front: {
  16103. height: math.unit(1.1938, "meters"),
  16104. weight: math.unit(54, "kg"),
  16105. name: "Front",
  16106. image: {
  16107. source: "./media/characters/nebula-shahar/front.svg",
  16108. extra: 1642 / 1436,
  16109. bottom: 0.06
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Megamicro",
  16116. height: math.unit(0.3, "mm")
  16117. },
  16118. {
  16119. name: "Micro",
  16120. height: math.unit(3, "cm")
  16121. },
  16122. {
  16123. name: "Normal",
  16124. height: math.unit(138, "cm"),
  16125. default: true
  16126. },
  16127. {
  16128. name: "Macro",
  16129. height: math.unit(30, "m")
  16130. },
  16131. ]
  16132. ))
  16133. characterMakers.push(() => makeCharacter(
  16134. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16135. {
  16136. front: {
  16137. height: math.unit(5.24, "feet"),
  16138. weight: math.unit(150, "lb"),
  16139. name: "Front",
  16140. image: {
  16141. source: "./media/characters/shayla/front.svg",
  16142. extra: 1512 / 1414,
  16143. bottom: 0.01
  16144. }
  16145. },
  16146. back: {
  16147. height: math.unit(5.24, "feet"),
  16148. weight: math.unit(150, "lb"),
  16149. name: "Back",
  16150. image: {
  16151. source: "./media/characters/shayla/back.svg",
  16152. extra: 1512 / 1414
  16153. }
  16154. },
  16155. hand: {
  16156. height: math.unit(0.7781496062992126, "feet"),
  16157. name: "Hand",
  16158. image: {
  16159. source: "./media/characters/shayla/hand.svg"
  16160. }
  16161. },
  16162. foot: {
  16163. height: math.unit(1.4206036745406823, "feet"),
  16164. name: "Foot",
  16165. image: {
  16166. source: "./media/characters/shayla/foot.svg"
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Micro",
  16173. height: math.unit(0.32, "feet")
  16174. },
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(5.24, "feet"),
  16178. default: true
  16179. },
  16180. {
  16181. name: "Macro",
  16182. height: math.unit(492.12, "feet")
  16183. },
  16184. {
  16185. name: "Megamacro",
  16186. height: math.unit(186.41, "miles")
  16187. },
  16188. ]
  16189. ))
  16190. characterMakers.push(() => makeCharacter(
  16191. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16192. {
  16193. front: {
  16194. height: math.unit(2.2, "m"),
  16195. weight: math.unit(120, "kg"),
  16196. name: "Front",
  16197. image: {
  16198. source: "./media/characters/pia-jr/front.svg",
  16199. extra: 1000 / 970,
  16200. bottom: 0.035
  16201. }
  16202. },
  16203. hand: {
  16204. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16205. name: "Hand",
  16206. image: {
  16207. source: "./media/characters/pia-jr/hand.svg"
  16208. }
  16209. },
  16210. paw: {
  16211. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16212. name: "Paw",
  16213. image: {
  16214. source: "./media/characters/pia-jr/paw.svg"
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Micro",
  16221. height: math.unit(1.2, "cm")
  16222. },
  16223. {
  16224. name: "Normal",
  16225. height: math.unit(2.2, "m"),
  16226. default: true
  16227. },
  16228. {
  16229. name: "Macro",
  16230. height: math.unit(180, "m")
  16231. },
  16232. {
  16233. name: "Megamacro",
  16234. height: math.unit(420, "km")
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16240. {
  16241. front: {
  16242. height: math.unit(2, "m"),
  16243. weight: math.unit(115, "kg"),
  16244. name: "Front",
  16245. image: {
  16246. source: "./media/characters/pia-sr/front.svg",
  16247. extra: 760 / 730,
  16248. bottom: 0.015
  16249. }
  16250. },
  16251. back: {
  16252. height: math.unit(2, "m"),
  16253. weight: math.unit(115, "kg"),
  16254. name: "Back",
  16255. image: {
  16256. source: "./media/characters/pia-sr/back.svg",
  16257. extra: 760 / 730,
  16258. bottom: 0.01
  16259. }
  16260. },
  16261. hand: {
  16262. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16263. name: "Hand",
  16264. image: {
  16265. source: "./media/characters/pia-sr/hand.svg"
  16266. }
  16267. },
  16268. foot: {
  16269. height: math.unit(1.83, "feet"),
  16270. name: "Foot",
  16271. image: {
  16272. source: "./media/characters/pia-sr/foot.svg"
  16273. }
  16274. },
  16275. },
  16276. [
  16277. {
  16278. name: "Micro",
  16279. height: math.unit(88, "mm")
  16280. },
  16281. {
  16282. name: "Normal",
  16283. height: math.unit(2, "m"),
  16284. default: true
  16285. },
  16286. {
  16287. name: "Macro",
  16288. height: math.unit(200, "m")
  16289. },
  16290. {
  16291. name: "Megamacro",
  16292. height: math.unit(420, "km")
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16298. {
  16299. front: {
  16300. height: math.unit(8 + 2 / 12, "feet"),
  16301. weight: math.unit(300, "lb"),
  16302. name: "Front",
  16303. image: {
  16304. source: "./media/characters/kibibyte/front.svg",
  16305. extra: 2221 / 2098,
  16306. bottom: 0.04
  16307. }
  16308. },
  16309. },
  16310. [
  16311. {
  16312. name: "Normal",
  16313. height: math.unit(8 + 2 / 12, "feet"),
  16314. default: true
  16315. },
  16316. {
  16317. name: "Socialable Macro",
  16318. height: math.unit(50, "feet")
  16319. },
  16320. {
  16321. name: "Macro",
  16322. height: math.unit(300, "feet")
  16323. },
  16324. {
  16325. name: "Megamacro",
  16326. height: math.unit(500, "miles")
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16332. {
  16333. front: {
  16334. height: math.unit(6, "feet"),
  16335. weight: math.unit(150, "lb"),
  16336. name: "Front",
  16337. image: {
  16338. source: "./media/characters/felix/front.svg",
  16339. extra: 762 / 722,
  16340. bottom: 0.02
  16341. }
  16342. },
  16343. frontClothed: {
  16344. height: math.unit(6, "feet"),
  16345. weight: math.unit(150, "lb"),
  16346. name: "Front (Clothed)",
  16347. image: {
  16348. source: "./media/characters/felix/front-clothed.svg",
  16349. extra: 762 / 722,
  16350. bottom: 0.02
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(6 + 8 / 12, "feet"),
  16358. default: true
  16359. },
  16360. {
  16361. name: "Macro",
  16362. height: math.unit(2600, "feet")
  16363. },
  16364. {
  16365. name: "Megamacro",
  16366. height: math.unit(450, "miles")
  16367. },
  16368. ]
  16369. ))
  16370. characterMakers.push(() => makeCharacter(
  16371. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16372. {
  16373. front: {
  16374. height: math.unit(6 + 1 / 12, "feet"),
  16375. weight: math.unit(250, "lb"),
  16376. name: "Front",
  16377. image: {
  16378. source: "./media/characters/tobo/front.svg",
  16379. extra: 608 / 586,
  16380. bottom: 0.023
  16381. }
  16382. },
  16383. back: {
  16384. height: math.unit(6 + 1 / 12, "feet"),
  16385. weight: math.unit(250, "lb"),
  16386. name: "Back",
  16387. image: {
  16388. source: "./media/characters/tobo/back.svg",
  16389. extra: 608 / 586
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Nano",
  16396. height: math.unit(2, "nm")
  16397. },
  16398. {
  16399. name: "Megamicro",
  16400. height: math.unit(0.1, "mm")
  16401. },
  16402. {
  16403. name: "Micro",
  16404. height: math.unit(1, "inch"),
  16405. default: true
  16406. },
  16407. {
  16408. name: "Human-sized",
  16409. height: math.unit(6 + 1 / 12, "feet")
  16410. },
  16411. {
  16412. name: "Macro",
  16413. height: math.unit(250, "feet")
  16414. },
  16415. {
  16416. name: "Megamacro",
  16417. height: math.unit(75, "miles")
  16418. },
  16419. {
  16420. name: "Texas-sized",
  16421. height: math.unit(750, "miles")
  16422. },
  16423. {
  16424. name: "Teramacro",
  16425. height: math.unit(50000, "miles")
  16426. },
  16427. ]
  16428. ))
  16429. characterMakers.push(() => makeCharacter(
  16430. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16431. {
  16432. front: {
  16433. height: math.unit(6, "feet"),
  16434. weight: math.unit(269, "lb"),
  16435. name: "Front",
  16436. image: {
  16437. source: "./media/characters/danny-kapowsky/front.svg",
  16438. extra: 766 / 736,
  16439. bottom: 0.044
  16440. }
  16441. },
  16442. back: {
  16443. height: math.unit(6, "feet"),
  16444. weight: math.unit(269, "lb"),
  16445. name: "Back",
  16446. image: {
  16447. source: "./media/characters/danny-kapowsky/back.svg",
  16448. extra: 797 / 760,
  16449. bottom: 0.025
  16450. }
  16451. },
  16452. },
  16453. [
  16454. {
  16455. name: "Macro",
  16456. height: math.unit(150, "feet"),
  16457. default: true
  16458. },
  16459. {
  16460. name: "Macro+",
  16461. height: math.unit(200, "feet")
  16462. },
  16463. {
  16464. name: "Macro++",
  16465. height: math.unit(300, "feet")
  16466. },
  16467. {
  16468. name: "Macro+++",
  16469. height: math.unit(400, "feet")
  16470. },
  16471. ]
  16472. ))
  16473. characterMakers.push(() => makeCharacter(
  16474. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16475. {
  16476. side: {
  16477. height: math.unit(6, "feet"),
  16478. weight: math.unit(170, "lb"),
  16479. name: "Side",
  16480. image: {
  16481. source: "./media/characters/finn/side.svg",
  16482. extra: 1953 / 1807,
  16483. bottom: 0.057
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Megamacro",
  16490. height: math.unit(14445, "feet"),
  16491. default: true
  16492. },
  16493. ]
  16494. ))
  16495. characterMakers.push(() => makeCharacter(
  16496. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16497. {
  16498. front: {
  16499. height: math.unit(5 + 6 / 12, "feet"),
  16500. weight: math.unit(125, "lb"),
  16501. name: "Front",
  16502. image: {
  16503. source: "./media/characters/roy/front.svg",
  16504. extra: 1,
  16505. bottom: 0.11
  16506. }
  16507. },
  16508. },
  16509. [
  16510. {
  16511. name: "Micro",
  16512. height: math.unit(3, "inches"),
  16513. default: true
  16514. },
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(5 + 6 / 12, "feet")
  16518. },
  16519. {
  16520. name: "Lesser Macro",
  16521. height: math.unit(60, "feet")
  16522. },
  16523. {
  16524. name: "Greater Macro",
  16525. height: math.unit(120, "feet")
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16531. {
  16532. front: {
  16533. height: math.unit(6, "feet"),
  16534. weight: math.unit(100, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/aevsivs/front.svg",
  16538. extra: 1,
  16539. bottom: 0.03
  16540. }
  16541. },
  16542. back: {
  16543. height: math.unit(6, "feet"),
  16544. weight: math.unit(100, "lb"),
  16545. name: "Back",
  16546. image: {
  16547. source: "./media/characters/aevsivs/back.svg"
  16548. }
  16549. },
  16550. },
  16551. [
  16552. {
  16553. name: "Micro",
  16554. height: math.unit(2, "inches"),
  16555. default: true
  16556. },
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(5, "feet")
  16560. },
  16561. ]
  16562. ))
  16563. characterMakers.push(() => makeCharacter(
  16564. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16565. {
  16566. front: {
  16567. height: math.unit(5 + 7 / 12, "feet"),
  16568. weight: math.unit(159, "lb"),
  16569. name: "Front",
  16570. image: {
  16571. source: "./media/characters/hildegard/front.svg",
  16572. extra: 289 / 269,
  16573. bottom: 7.63 / 297.8
  16574. }
  16575. },
  16576. back: {
  16577. height: math.unit(5 + 7 / 12, "feet"),
  16578. weight: math.unit(159, "lb"),
  16579. name: "Back",
  16580. image: {
  16581. source: "./media/characters/hildegard/back.svg",
  16582. extra: 280 / 260,
  16583. bottom: 2.3 / 282
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "Normal",
  16590. height: math.unit(5 + 7 / 12, "feet"),
  16591. default: true
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16597. {
  16598. bernard: {
  16599. height: math.unit(2 + 7 / 12, "feet"),
  16600. weight: math.unit(66, "lb"),
  16601. name: "Bernard",
  16602. rename: true,
  16603. image: {
  16604. source: "./media/characters/bernard-wilder/bernard.svg",
  16605. extra: 192 / 128,
  16606. bottom: 0.05
  16607. }
  16608. },
  16609. wilder: {
  16610. height: math.unit(5 + 8 / 12, "feet"),
  16611. weight: math.unit(143, "lb"),
  16612. name: "Wilder",
  16613. rename: true,
  16614. image: {
  16615. source: "./media/characters/bernard-wilder/wilder.svg",
  16616. extra: 361 / 312,
  16617. bottom: 0.02
  16618. }
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Normal",
  16624. height: math.unit(2 + 7 / 12, "feet"),
  16625. default: true
  16626. },
  16627. ]
  16628. ))
  16629. characterMakers.push(() => makeCharacter(
  16630. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16631. {
  16632. anthro: {
  16633. height: math.unit(6 + 1 / 12, "feet"),
  16634. weight: math.unit(155, "lb"),
  16635. name: "Anthro",
  16636. image: {
  16637. source: "./media/characters/hearth/anthro.svg",
  16638. extra: 1178/1136,
  16639. bottom: 28/1206
  16640. }
  16641. },
  16642. feral: {
  16643. height: math.unit(3.78, "feet"),
  16644. weight: math.unit(35, "kg"),
  16645. name: "Feral",
  16646. image: {
  16647. source: "./media/characters/hearth/feral.svg",
  16648. extra: 153 / 135,
  16649. bottom: 0.03
  16650. }
  16651. },
  16652. },
  16653. [
  16654. {
  16655. name: "Normal",
  16656. height: math.unit(6 + 1 / 12, "feet"),
  16657. default: true
  16658. },
  16659. ]
  16660. ))
  16661. characterMakers.push(() => makeCharacter(
  16662. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16663. {
  16664. front: {
  16665. height: math.unit(6, "feet"),
  16666. weight: math.unit(182, "lb"),
  16667. name: "Front",
  16668. image: {
  16669. source: "./media/characters/ingrid/front.svg",
  16670. extra: 294 / 268,
  16671. bottom: 0.027
  16672. }
  16673. },
  16674. },
  16675. [
  16676. {
  16677. name: "Normal",
  16678. height: math.unit(6, "feet"),
  16679. default: true
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16685. {
  16686. eevee: {
  16687. height: math.unit(2 + 10 / 12, "feet"),
  16688. weight: math.unit(86, "lb"),
  16689. name: "Malgam",
  16690. image: {
  16691. source: "./media/characters/malgam/eevee.svg",
  16692. extra: 952/784,
  16693. bottom: 38/990
  16694. }
  16695. },
  16696. sylveon: {
  16697. height: math.unit(4, "feet"),
  16698. weight: math.unit(101, "lb"),
  16699. name: "Future Malgam",
  16700. rename: true,
  16701. image: {
  16702. source: "./media/characters/malgam/sylveon.svg",
  16703. extra: 371 / 325,
  16704. bottom: 0.015
  16705. }
  16706. },
  16707. gigantamax: {
  16708. height: math.unit(50, "feet"),
  16709. name: "Gigantamax Malgam",
  16710. rename: true,
  16711. image: {
  16712. source: "./media/characters/malgam/gigantamax.svg"
  16713. }
  16714. },
  16715. },
  16716. [
  16717. {
  16718. name: "Normal",
  16719. height: math.unit(2 + 10 / 12, "feet"),
  16720. default: true
  16721. },
  16722. ]
  16723. ))
  16724. characterMakers.push(() => makeCharacter(
  16725. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16726. {
  16727. front: {
  16728. height: math.unit(5 + 11 / 12, "feet"),
  16729. weight: math.unit(188, "lb"),
  16730. name: "Front",
  16731. image: {
  16732. source: "./media/characters/fleur/front.svg",
  16733. extra: 309 / 283,
  16734. bottom: 0.007
  16735. }
  16736. },
  16737. },
  16738. [
  16739. {
  16740. name: "Normal",
  16741. height: math.unit(5 + 11 / 12, "feet"),
  16742. default: true
  16743. },
  16744. ]
  16745. ))
  16746. characterMakers.push(() => makeCharacter(
  16747. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16748. {
  16749. front: {
  16750. height: math.unit(5 + 4 / 12, "feet"),
  16751. weight: math.unit(122, "lb"),
  16752. name: "Front",
  16753. image: {
  16754. source: "./media/characters/jude/front.svg",
  16755. extra: 288 / 273,
  16756. bottom: 0.03
  16757. }
  16758. },
  16759. },
  16760. [
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(5 + 4 / 12, "feet"),
  16764. default: true
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16770. {
  16771. front: {
  16772. height: math.unit(5 + 11 / 12, "feet"),
  16773. weight: math.unit(190, "lb"),
  16774. name: "Front",
  16775. image: {
  16776. source: "./media/characters/seara/front.svg",
  16777. extra: 1,
  16778. bottom: 0.05
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Normal",
  16785. height: math.unit(5 + 11 / 12, "feet"),
  16786. default: true
  16787. },
  16788. ]
  16789. ))
  16790. characterMakers.push(() => makeCharacter(
  16791. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16792. {
  16793. front: {
  16794. height: math.unit(16 + 5 / 12, "feet"),
  16795. weight: math.unit(524, "lb"),
  16796. name: "Front",
  16797. image: {
  16798. source: "./media/characters/caspian-lugia/front.svg",
  16799. extra: 1,
  16800. bottom: 0.04
  16801. }
  16802. },
  16803. },
  16804. [
  16805. {
  16806. name: "Normal",
  16807. height: math.unit(16 + 5 / 12, "feet"),
  16808. default: true
  16809. },
  16810. ]
  16811. ))
  16812. characterMakers.push(() => makeCharacter(
  16813. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16814. {
  16815. front: {
  16816. height: math.unit(5 + 7 / 12, "feet"),
  16817. weight: math.unit(170, "lb"),
  16818. name: "Front",
  16819. image: {
  16820. source: "./media/characters/mika/front.svg",
  16821. extra: 1,
  16822. bottom: 0.016
  16823. }
  16824. },
  16825. },
  16826. [
  16827. {
  16828. name: "Normal",
  16829. height: math.unit(5 + 7 / 12, "feet"),
  16830. default: true
  16831. },
  16832. ]
  16833. ))
  16834. characterMakers.push(() => makeCharacter(
  16835. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16836. {
  16837. front: {
  16838. height: math.unit(6 + 2 / 12, "feet"),
  16839. weight: math.unit(268, "lb"),
  16840. name: "Front",
  16841. image: {
  16842. source: "./media/characters/sol/front.svg",
  16843. extra: 247 / 231,
  16844. bottom: 0.05
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Normal",
  16851. height: math.unit(6 + 2 / 12, "feet"),
  16852. default: true
  16853. },
  16854. ]
  16855. ))
  16856. characterMakers.push(() => makeCharacter(
  16857. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16858. {
  16859. buizel: {
  16860. height: math.unit(2 + 5 / 12, "feet"),
  16861. weight: math.unit(87, "lb"),
  16862. name: "Front",
  16863. image: {
  16864. source: "./media/characters/umiko/buizel.svg",
  16865. extra: 172 / 157,
  16866. bottom: 0.01
  16867. },
  16868. form: "buizel",
  16869. default: true
  16870. },
  16871. floatzel: {
  16872. height: math.unit(5 + 9 / 12, "feet"),
  16873. weight: math.unit(250, "lb"),
  16874. name: "Front",
  16875. image: {
  16876. source: "./media/characters/umiko/floatzel.svg",
  16877. extra: 1076/1006,
  16878. bottom: 15/1091
  16879. },
  16880. form: "floatzel",
  16881. default: true
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Normal",
  16887. height: math.unit(2 + 5 / 12, "feet"),
  16888. form: "buizel",
  16889. default: true
  16890. },
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(5 + 9 / 12, "feet"),
  16894. form: "floatzel",
  16895. default: true
  16896. },
  16897. ],
  16898. {
  16899. "buizel": {
  16900. name: "Buizel"
  16901. },
  16902. "floatzel": {
  16903. name: "Floatzel",
  16904. default: true
  16905. }
  16906. }
  16907. ))
  16908. characterMakers.push(() => makeCharacter(
  16909. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16910. {
  16911. front: {
  16912. height: math.unit(6 + 2 / 12, "feet"),
  16913. weight: math.unit(146, "lb"),
  16914. name: "Front",
  16915. image: {
  16916. source: "./media/characters/iliac/front.svg",
  16917. extra: 389 / 365,
  16918. bottom: 0.035
  16919. }
  16920. },
  16921. },
  16922. [
  16923. {
  16924. name: "Normal",
  16925. height: math.unit(6 + 2 / 12, "feet"),
  16926. default: true
  16927. },
  16928. ]
  16929. ))
  16930. characterMakers.push(() => makeCharacter(
  16931. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16932. {
  16933. front: {
  16934. height: math.unit(6, "feet"),
  16935. weight: math.unit(170, "lb"),
  16936. name: "Front",
  16937. image: {
  16938. source: "./media/characters/topaz/front.svg",
  16939. extra: 317 / 303,
  16940. bottom: 0.055
  16941. }
  16942. },
  16943. },
  16944. [
  16945. {
  16946. name: "Normal",
  16947. height: math.unit(6, "feet"),
  16948. default: true
  16949. },
  16950. ]
  16951. ))
  16952. characterMakers.push(() => makeCharacter(
  16953. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16954. {
  16955. front: {
  16956. height: math.unit(5 + 11 / 12, "feet"),
  16957. weight: math.unit(144, "lb"),
  16958. name: "Front",
  16959. image: {
  16960. source: "./media/characters/gabriel/front.svg",
  16961. extra: 285 / 262,
  16962. bottom: 0.004
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(5 + 11 / 12, "feet"),
  16970. default: true
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16976. {
  16977. side: {
  16978. height: math.unit(6 + 5 / 12, "feet"),
  16979. weight: math.unit(300, "lb"),
  16980. name: "Side",
  16981. image: {
  16982. source: "./media/characters/tempest-suicune/side.svg",
  16983. extra: 195 / 154,
  16984. bottom: 0.04
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(6 + 5 / 12, "feet"),
  16992. default: true
  16993. },
  16994. ]
  16995. ))
  16996. characterMakers.push(() => makeCharacter(
  16997. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16998. {
  16999. front: {
  17000. height: math.unit(7 + 2 / 12, "feet"),
  17001. weight: math.unit(322, "lb"),
  17002. name: "Front",
  17003. image: {
  17004. source: "./media/characters/vulcan/front.svg",
  17005. extra: 154 / 147,
  17006. bottom: 0.04
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(7 + 2 / 12, "feet"),
  17014. default: true
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17020. {
  17021. front: {
  17022. height: math.unit(5 + 10 / 12, "feet"),
  17023. weight: math.unit(264, "lb"),
  17024. name: "Front",
  17025. image: {
  17026. source: "./media/characters/gault/front.svg",
  17027. extra: 161 / 140,
  17028. bottom: 0.028
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(5 + 10 / 12, "feet"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(6, "feet"),
  17045. weight: math.unit(150, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/shard/front.svg",
  17049. extra: 273 / 238,
  17050. bottom: 0.02
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(3 + 6 / 12, "feet"),
  17058. default: true
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17064. {
  17065. front: {
  17066. height: math.unit(5 + 11 / 12, "feet"),
  17067. weight: math.unit(146, "lb"),
  17068. name: "Front",
  17069. image: {
  17070. source: "./media/characters/ashe/front.svg",
  17071. extra: 400 / 373,
  17072. bottom: 0.01
  17073. }
  17074. },
  17075. },
  17076. [
  17077. {
  17078. name: "Normal",
  17079. height: math.unit(5 + 11 / 12, "feet"),
  17080. default: true
  17081. },
  17082. ]
  17083. ))
  17084. characterMakers.push(() => makeCharacter(
  17085. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17086. {
  17087. front: {
  17088. height: math.unit(5 + 5 / 12, "feet"),
  17089. weight: math.unit(135, "lb"),
  17090. name: "Front",
  17091. image: {
  17092. source: "./media/characters/beatrix/front.svg",
  17093. extra: 392 / 379,
  17094. bottom: 0.01
  17095. }
  17096. },
  17097. },
  17098. [
  17099. {
  17100. name: "Normal",
  17101. height: math.unit(6, "feet"),
  17102. default: true
  17103. },
  17104. ]
  17105. ))
  17106. characterMakers.push(() => makeCharacter(
  17107. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17108. {
  17109. front: {
  17110. height: math.unit(6 + 2/12, "feet"),
  17111. weight: math.unit(135, "lb"),
  17112. name: "Front",
  17113. image: {
  17114. source: "./media/characters/ignatius/front.svg",
  17115. extra: 1380/1259,
  17116. bottom: 27/1407
  17117. }
  17118. },
  17119. },
  17120. [
  17121. {
  17122. name: "Normal",
  17123. height: math.unit(6 + 2/12, "feet"),
  17124. default: true
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17130. {
  17131. front: {
  17132. height: math.unit(6 + 2 / 12, "feet"),
  17133. weight: math.unit(138, "lb"),
  17134. name: "Front",
  17135. image: {
  17136. source: "./media/characters/mei-li/front.svg",
  17137. extra: 237 / 229,
  17138. bottom: 0.03
  17139. }
  17140. },
  17141. },
  17142. [
  17143. {
  17144. name: "Normal",
  17145. height: math.unit(6 + 2 / 12, "feet"),
  17146. default: true
  17147. },
  17148. ]
  17149. ))
  17150. characterMakers.push(() => makeCharacter(
  17151. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17152. {
  17153. front: {
  17154. height: math.unit(2 + 4 / 12, "feet"),
  17155. weight: math.unit(62, "lb"),
  17156. name: "Front",
  17157. image: {
  17158. source: "./media/characters/puru/front.svg",
  17159. extra: 206 / 149,
  17160. bottom: 0.06
  17161. }
  17162. },
  17163. },
  17164. [
  17165. {
  17166. name: "Normal",
  17167. height: math.unit(2 + 4 / 12, "feet"),
  17168. default: true
  17169. },
  17170. ]
  17171. ))
  17172. characterMakers.push(() => makeCharacter(
  17173. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17174. {
  17175. anthro: {
  17176. height: math.unit(5 + 8/12, "feet"),
  17177. weight: math.unit(200, "lb"),
  17178. energyNeed: math.unit(2000, "kcal"),
  17179. name: "Anthro",
  17180. image: {
  17181. source: "./media/characters/kee/anthro.svg",
  17182. extra: 3251/3184,
  17183. bottom: 250/3501
  17184. }
  17185. },
  17186. taur: {
  17187. height: math.unit(11, "feet"),
  17188. weight: math.unit(500, "lb"),
  17189. energyNeed: math.unit(5000, "kcal"),
  17190. name: "Taur",
  17191. image: {
  17192. source: "./media/characters/kee/taur.svg",
  17193. extra: 1362/1320,
  17194. bottom: 83/1445
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(5 + 8/12, "feet"),
  17202. default: true
  17203. },
  17204. {
  17205. name: "Macro",
  17206. height: math.unit(35, "feet")
  17207. },
  17208. ]
  17209. ))
  17210. characterMakers.push(() => makeCharacter(
  17211. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17212. {
  17213. anthro: {
  17214. height: math.unit(7, "feet"),
  17215. weight: math.unit(190, "lb"),
  17216. name: "Anthro",
  17217. image: {
  17218. source: "./media/characters/cobalt-dracha/anthro.svg",
  17219. extra: 231 / 225,
  17220. bottom: 0.04
  17221. }
  17222. },
  17223. feral: {
  17224. height: math.unit(9 + 7 / 12, "feet"),
  17225. weight: math.unit(294, "lb"),
  17226. name: "Feral",
  17227. image: {
  17228. source: "./media/characters/cobalt-dracha/feral.svg",
  17229. extra: 692 / 633,
  17230. bottom: 0.05
  17231. }
  17232. },
  17233. },
  17234. [
  17235. {
  17236. name: "Normal",
  17237. height: math.unit(7, "feet"),
  17238. default: true
  17239. },
  17240. ]
  17241. ))
  17242. characterMakers.push(() => makeCharacter(
  17243. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17244. {
  17245. fallen: {
  17246. height: math.unit(11 + 8 / 12, "feet"),
  17247. weight: math.unit(485, "lb"),
  17248. name: "Java (Fallen)",
  17249. rename: true,
  17250. image: {
  17251. source: "./media/characters/java/fallen.svg",
  17252. extra: 226 / 208,
  17253. bottom: 0.005
  17254. }
  17255. },
  17256. godkin: {
  17257. height: math.unit(10 + 6 / 12, "feet"),
  17258. weight: math.unit(328, "lb"),
  17259. name: "Java (Godkin)",
  17260. rename: true,
  17261. image: {
  17262. source: "./media/characters/java/godkin.svg",
  17263. extra: 1104/1068,
  17264. bottom: 36/1140
  17265. }
  17266. },
  17267. },
  17268. [
  17269. {
  17270. name: "Normal",
  17271. height: math.unit(11 + 8 / 12, "feet"),
  17272. default: true
  17273. },
  17274. ]
  17275. ))
  17276. characterMakers.push(() => makeCharacter(
  17277. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17278. {
  17279. front: {
  17280. height: math.unit(5 + 9 / 12, "feet"),
  17281. weight: math.unit(170, "lb"),
  17282. name: "Front",
  17283. image: {
  17284. source: "./media/characters/purna/front.svg",
  17285. extra: 239 / 229,
  17286. bottom: 0.01
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Normal",
  17293. height: math.unit(5 + 9 / 12, "feet"),
  17294. default: true
  17295. },
  17296. ]
  17297. ))
  17298. characterMakers.push(() => makeCharacter(
  17299. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17300. {
  17301. front: {
  17302. height: math.unit(5 + 9 / 12, "feet"),
  17303. weight: math.unit(142, "lb"),
  17304. name: "Front",
  17305. image: {
  17306. source: "./media/characters/kuva/front.svg",
  17307. extra: 281 / 271,
  17308. bottom: 0.006
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Normal",
  17315. height: math.unit(5 + 9 / 12, "feet"),
  17316. default: true
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17322. {
  17323. anthro: {
  17324. height: math.unit(9 + 2 / 12, "feet"),
  17325. weight: math.unit(270, "lb"),
  17326. name: "Anthro",
  17327. image: {
  17328. source: "./media/characters/embra/anthro.svg",
  17329. extra: 200 / 187,
  17330. bottom: 0.02
  17331. }
  17332. },
  17333. feral: {
  17334. height: math.unit(18 + 8 / 12, "feet"),
  17335. weight: math.unit(576, "lb"),
  17336. name: "Feral",
  17337. image: {
  17338. source: "./media/characters/embra/feral.svg",
  17339. extra: 152 / 137,
  17340. bottom: 0.037
  17341. }
  17342. },
  17343. },
  17344. [
  17345. {
  17346. name: "Normal",
  17347. height: math.unit(9 + 2 / 12, "feet"),
  17348. default: true
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17354. {
  17355. anthro: {
  17356. height: math.unit(10 + 9 / 12, "feet"),
  17357. weight: math.unit(224, "lb"),
  17358. name: "Anthro",
  17359. image: {
  17360. source: "./media/characters/grottos/anthro.svg",
  17361. extra: 350 / 332,
  17362. bottom: 0.045
  17363. }
  17364. },
  17365. feral: {
  17366. height: math.unit(20 + 7 / 12, "feet"),
  17367. weight: math.unit(629, "lb"),
  17368. name: "Feral",
  17369. image: {
  17370. source: "./media/characters/grottos/feral.svg",
  17371. extra: 207 / 190,
  17372. bottom: 0.05
  17373. }
  17374. },
  17375. },
  17376. [
  17377. {
  17378. name: "Normal",
  17379. height: math.unit(10 + 9 / 12, "feet"),
  17380. default: true
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17386. {
  17387. anthro: {
  17388. height: math.unit(9 + 6 / 12, "feet"),
  17389. weight: math.unit(298, "lb"),
  17390. name: "Anthro",
  17391. image: {
  17392. source: "./media/characters/frifna/anthro.svg",
  17393. extra: 282 / 269,
  17394. bottom: 0.015
  17395. }
  17396. },
  17397. feral: {
  17398. height: math.unit(16 + 2 / 12, "feet"),
  17399. weight: math.unit(624, "lb"),
  17400. name: "Feral",
  17401. image: {
  17402. source: "./media/characters/frifna/feral.svg"
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Normal",
  17409. height: math.unit(9 + 6 / 12, "feet"),
  17410. default: true
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17416. {
  17417. front: {
  17418. height: math.unit(6 + 2 / 12, "feet"),
  17419. weight: math.unit(168, "lb"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/elise/front.svg",
  17423. extra: 276 / 271
  17424. }
  17425. },
  17426. },
  17427. [
  17428. {
  17429. name: "Normal",
  17430. height: math.unit(6 + 2 / 12, "feet"),
  17431. default: true
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(5 + 10 / 12, "feet"),
  17440. weight: math.unit(210, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/glade/front.svg",
  17444. extra: 258 / 247,
  17445. bottom: 0.008
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(5 + 10 / 12, "feet"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(5 + 10 / 12, "feet"),
  17462. weight: math.unit(129, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/rina/front.svg",
  17466. extra: 266 / 255,
  17467. bottom: 0.005
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(5 + 10 / 12, "feet"),
  17475. default: true
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17481. {
  17482. front: {
  17483. height: math.unit(6 + 1 / 12, "feet"),
  17484. weight: math.unit(192, "lb"),
  17485. name: "Front",
  17486. image: {
  17487. source: "./media/characters/veronica/front.svg",
  17488. extra: 319 / 309,
  17489. bottom: 0.005
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(6 + 1 / 12, "feet"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17503. {
  17504. front: {
  17505. height: math.unit(9 + 3 / 12, "feet"),
  17506. weight: math.unit(1100, "lb"),
  17507. name: "Front",
  17508. image: {
  17509. source: "./media/characters/braxton/front.svg",
  17510. extra: 1057 / 984,
  17511. bottom: 0.05
  17512. }
  17513. },
  17514. },
  17515. [
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(9 + 3 / 12, "feet")
  17519. },
  17520. {
  17521. name: "Giant",
  17522. height: math.unit(300, "feet"),
  17523. default: true
  17524. },
  17525. {
  17526. name: "Macro",
  17527. height: math.unit(700, "feet")
  17528. },
  17529. {
  17530. name: "Megamacro",
  17531. height: math.unit(6000, "feet")
  17532. },
  17533. ]
  17534. ))
  17535. characterMakers.push(() => makeCharacter(
  17536. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17537. {
  17538. front: {
  17539. height: math.unit(6 + 7 / 12, "feet"),
  17540. weight: math.unit(150, "lb"),
  17541. name: "Front",
  17542. image: {
  17543. source: "./media/characters/blue-feyonics/front.svg",
  17544. extra: 1403 / 1306,
  17545. bottom: 0.047
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Normal",
  17552. height: math.unit(6 + 7 / 12, "feet"),
  17553. default: true
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17559. {
  17560. front: {
  17561. height: math.unit(1.8, "meters"),
  17562. weight: math.unit(60, "kg"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/maxwell/front.svg",
  17566. extra: 2060 / 1873
  17567. }
  17568. },
  17569. },
  17570. [
  17571. {
  17572. name: "Micro",
  17573. height: math.unit(1, "mm")
  17574. },
  17575. {
  17576. name: "Normal",
  17577. height: math.unit(1.8, "meter"),
  17578. default: true
  17579. },
  17580. {
  17581. name: "Macro",
  17582. height: math.unit(30, "meters")
  17583. },
  17584. {
  17585. name: "Megamacro",
  17586. height: math.unit(10, "km")
  17587. },
  17588. ]
  17589. ))
  17590. characterMakers.push(() => makeCharacter(
  17591. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17592. {
  17593. front: {
  17594. height: math.unit(6, "feet"),
  17595. weight: math.unit(150, "lb"),
  17596. name: "Front",
  17597. image: {
  17598. source: "./media/characters/jack/front.svg",
  17599. extra: 1754 / 1640,
  17600. bottom: 0.01
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(80000, "feet"),
  17608. default: true
  17609. },
  17610. {
  17611. name: "Max size",
  17612. height: math.unit(10, "lightyears")
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17618. {
  17619. urban: {
  17620. height: math.unit(5, "feet"),
  17621. weight: math.unit(240, "lb"),
  17622. name: "Urban",
  17623. image: {
  17624. source: "./media/characters/cafat/urban.svg",
  17625. extra: 1223/1126,
  17626. bottom: 205/1428
  17627. }
  17628. },
  17629. summer: {
  17630. height: math.unit(5, "feet"),
  17631. weight: math.unit(240, "lb"),
  17632. name: "Summer",
  17633. image: {
  17634. source: "./media/characters/cafat/summer.svg",
  17635. extra: 1223/1126,
  17636. bottom: 205/1428
  17637. }
  17638. },
  17639. winter: {
  17640. height: math.unit(5, "feet"),
  17641. weight: math.unit(240, "lb"),
  17642. name: "Winter",
  17643. image: {
  17644. source: "./media/characters/cafat/winter.svg",
  17645. extra: 1223/1126,
  17646. bottom: 205/1428
  17647. }
  17648. },
  17649. lingerie: {
  17650. height: math.unit(5, "feet"),
  17651. weight: math.unit(240, "lb"),
  17652. name: "Lingerie",
  17653. image: {
  17654. source: "./media/characters/cafat/lingerie.svg",
  17655. extra: 1223/1126,
  17656. bottom: 205/1428
  17657. }
  17658. },
  17659. upright: {
  17660. height: math.unit(6.3, "feet"),
  17661. weight: math.unit(240, "lb"),
  17662. name: "Upright",
  17663. image: {
  17664. source: "./media/characters/cafat/upright.svg",
  17665. bottom: 0.01
  17666. }
  17667. },
  17668. uprightFull: {
  17669. height: math.unit(6.3, "feet"),
  17670. weight: math.unit(240, "lb"),
  17671. name: "Upright (Full)",
  17672. image: {
  17673. source: "./media/characters/cafat/upright-full.svg",
  17674. bottom: 0.01
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Small",
  17681. height: math.unit(5, "feet"),
  17682. default: true
  17683. },
  17684. {
  17685. name: "Large",
  17686. height: math.unit(13, "feet")
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17692. {
  17693. front: {
  17694. height: math.unit(6, "feet"),
  17695. weight: math.unit(150, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/verin-raharra/front.svg",
  17699. extra: 5019 / 4835,
  17700. bottom: 0.023
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(7 + 5 / 12, "feet"),
  17708. default: true
  17709. },
  17710. {
  17711. name: "Upsized",
  17712. height: math.unit(20, "feet")
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17718. {
  17719. front: {
  17720. height: math.unit(7, "feet"),
  17721. weight: math.unit(230, "lb"),
  17722. name: "Front",
  17723. image: {
  17724. source: "./media/characters/nakata/front.svg",
  17725. extra: 1.005,
  17726. bottom: 0.01
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Normal",
  17733. height: math.unit(7, "feet"),
  17734. default: true
  17735. },
  17736. {
  17737. name: "Big",
  17738. height: math.unit(14, "feet")
  17739. },
  17740. {
  17741. name: "Macro",
  17742. height: math.unit(400, "feet")
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17748. {
  17749. front: {
  17750. height: math.unit(4.91, "feet"),
  17751. weight: math.unit(100, "lb"),
  17752. name: "Front",
  17753. image: {
  17754. source: "./media/characters/lily/front.svg",
  17755. extra: 1585 / 1415,
  17756. bottom: 0.02
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(4.91, "feet"),
  17764. default: true
  17765. },
  17766. ]
  17767. ))
  17768. characterMakers.push(() => makeCharacter(
  17769. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17770. {
  17771. laying: {
  17772. height: math.unit(4 + 4 / 12, "feet"),
  17773. weight: math.unit(600, "lb"),
  17774. name: "Laying",
  17775. image: {
  17776. source: "./media/characters/sheila/laying.svg",
  17777. extra: 1333 / 1265,
  17778. bottom: 0.16
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(4 + 4 / 12, "feet"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17792. {
  17793. front: {
  17794. height: math.unit(6, "feet"),
  17795. weight: math.unit(190, "lb"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/sax/front.svg",
  17799. extra: 1187 / 973,
  17800. bottom: 0.042
  17801. }
  17802. },
  17803. },
  17804. [
  17805. {
  17806. name: "Micro",
  17807. height: math.unit(4, "inches"),
  17808. default: true
  17809. },
  17810. ]
  17811. ))
  17812. characterMakers.push(() => makeCharacter(
  17813. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17814. {
  17815. front: {
  17816. height: math.unit(6, "feet"),
  17817. weight: math.unit(150, "lb"),
  17818. name: "Front",
  17819. image: {
  17820. source: "./media/characters/pandora/front.svg",
  17821. extra: 2720 / 2556,
  17822. bottom: 0.015
  17823. }
  17824. },
  17825. back: {
  17826. height: math.unit(6, "feet"),
  17827. weight: math.unit(150, "lb"),
  17828. name: "Back",
  17829. image: {
  17830. source: "./media/characters/pandora/back.svg",
  17831. extra: 2720 / 2556,
  17832. bottom: 0.01
  17833. }
  17834. },
  17835. beans: {
  17836. height: math.unit(6 / 8, "feet"),
  17837. name: "Beans",
  17838. image: {
  17839. source: "./media/characters/pandora/beans.svg"
  17840. }
  17841. },
  17842. collar: {
  17843. height: math.unit(0.31, "feet"),
  17844. name: "Collar",
  17845. image: {
  17846. source: "./media/characters/pandora/collar.svg"
  17847. }
  17848. },
  17849. skirt: {
  17850. height: math.unit(6, "feet"),
  17851. weight: math.unit(150, "lb"),
  17852. name: "Skirt",
  17853. image: {
  17854. source: "./media/characters/pandora/skirt.svg",
  17855. extra: 1622 / 1525,
  17856. bottom: 0.015
  17857. }
  17858. },
  17859. hoodie: {
  17860. height: math.unit(6, "feet"),
  17861. weight: math.unit(150, "lb"),
  17862. name: "Hoodie",
  17863. image: {
  17864. source: "./media/characters/pandora/hoodie.svg",
  17865. extra: 1622 / 1525,
  17866. bottom: 0.015
  17867. }
  17868. },
  17869. casual: {
  17870. height: math.unit(6, "feet"),
  17871. weight: math.unit(150, "lb"),
  17872. name: "Casual",
  17873. image: {
  17874. source: "./media/characters/pandora/casual.svg",
  17875. extra: 1622 / 1525,
  17876. bottom: 0.015
  17877. }
  17878. },
  17879. },
  17880. [
  17881. {
  17882. name: "Normal",
  17883. height: math.unit(6, "feet")
  17884. },
  17885. {
  17886. name: "Big Steppy",
  17887. height: math.unit(1, "km"),
  17888. default: true
  17889. },
  17890. {
  17891. name: "Galactic Steppy",
  17892. height: math.unit(2, "gigameters")
  17893. },
  17894. ]
  17895. ))
  17896. characterMakers.push(() => makeCharacter(
  17897. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17898. {
  17899. side: {
  17900. height: math.unit(10, "feet"),
  17901. weight: math.unit(800, "kg"),
  17902. name: "Side",
  17903. image: {
  17904. source: "./media/characters/venio-darcony/side.svg",
  17905. extra: 1373 / 1003,
  17906. bottom: 0.037
  17907. }
  17908. },
  17909. front: {
  17910. height: math.unit(19, "feet"),
  17911. weight: math.unit(800, "kg"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/venio-darcony/front.svg"
  17915. }
  17916. },
  17917. back: {
  17918. height: math.unit(19, "feet"),
  17919. weight: math.unit(800, "kg"),
  17920. name: "Back",
  17921. image: {
  17922. source: "./media/characters/venio-darcony/back.svg"
  17923. }
  17924. },
  17925. sideNsfw: {
  17926. height: math.unit(10, "feet"),
  17927. weight: math.unit(800, "kg"),
  17928. name: "Side (NSFW)",
  17929. image: {
  17930. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17931. extra: 1373 / 1003,
  17932. bottom: 0.037
  17933. }
  17934. },
  17935. frontNsfw: {
  17936. height: math.unit(19, "feet"),
  17937. weight: math.unit(800, "kg"),
  17938. name: "Front (NSFW)",
  17939. image: {
  17940. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17941. }
  17942. },
  17943. backNsfw: {
  17944. height: math.unit(19, "feet"),
  17945. weight: math.unit(800, "kg"),
  17946. name: "Back (NSFW)",
  17947. image: {
  17948. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17949. }
  17950. },
  17951. sideArmored: {
  17952. height: math.unit(10, "feet"),
  17953. weight: math.unit(800, "kg"),
  17954. name: "Side (Armored)",
  17955. image: {
  17956. source: "./media/characters/venio-darcony/side-armored.svg",
  17957. extra: 1373 / 1003,
  17958. bottom: 0.037
  17959. }
  17960. },
  17961. frontArmored: {
  17962. height: math.unit(19, "feet"),
  17963. weight: math.unit(900, "kg"),
  17964. name: "Front (Armored)",
  17965. image: {
  17966. source: "./media/characters/venio-darcony/front-armored.svg"
  17967. }
  17968. },
  17969. backArmored: {
  17970. height: math.unit(19, "feet"),
  17971. weight: math.unit(900, "kg"),
  17972. name: "Back (Armored)",
  17973. image: {
  17974. source: "./media/characters/venio-darcony/back-armored.svg"
  17975. }
  17976. },
  17977. sword: {
  17978. height: math.unit(10, "feet"),
  17979. weight: math.unit(50, "lb"),
  17980. name: "Sword",
  17981. image: {
  17982. source: "./media/characters/venio-darcony/sword.svg"
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Normal",
  17989. height: math.unit(10, "feet")
  17990. },
  17991. {
  17992. name: "Macro",
  17993. height: math.unit(130, "feet"),
  17994. default: true
  17995. },
  17996. {
  17997. name: "Macro+",
  17998. height: math.unit(240, "feet")
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18004. {
  18005. front: {
  18006. height: math.unit(6, "feet"),
  18007. weight: math.unit(150, "lb"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/veski/front.svg",
  18011. extra: 1299 / 1225,
  18012. bottom: 0.04
  18013. }
  18014. },
  18015. back: {
  18016. height: math.unit(6, "feet"),
  18017. weight: math.unit(150, "lb"),
  18018. name: "Back",
  18019. image: {
  18020. source: "./media/characters/veski/back.svg",
  18021. extra: 1299 / 1225,
  18022. bottom: 0.008
  18023. }
  18024. },
  18025. maw: {
  18026. height: math.unit(1.5 * 1.21, "feet"),
  18027. name: "Maw",
  18028. image: {
  18029. source: "./media/characters/veski/maw.svg"
  18030. }
  18031. },
  18032. },
  18033. [
  18034. {
  18035. name: "Macro",
  18036. height: math.unit(2, "km"),
  18037. default: true
  18038. },
  18039. ]
  18040. ))
  18041. characterMakers.push(() => makeCharacter(
  18042. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18043. {
  18044. front: {
  18045. height: math.unit(5 + 7 / 12, "feet"),
  18046. name: "Front",
  18047. image: {
  18048. source: "./media/characters/isabelle/front.svg",
  18049. extra: 2130 / 1976,
  18050. bottom: 0.05
  18051. }
  18052. },
  18053. },
  18054. [
  18055. {
  18056. name: "Supermicro",
  18057. height: math.unit(10, "micrometers")
  18058. },
  18059. {
  18060. name: "Micro",
  18061. height: math.unit(1, "inch")
  18062. },
  18063. {
  18064. name: "Tiny",
  18065. height: math.unit(5, "inches")
  18066. },
  18067. {
  18068. name: "Standard",
  18069. height: math.unit(5 + 7 / 12, "inches")
  18070. },
  18071. {
  18072. name: "Macro",
  18073. height: math.unit(80, "meters"),
  18074. default: true
  18075. },
  18076. {
  18077. name: "Megamacro",
  18078. height: math.unit(250, "meters")
  18079. },
  18080. {
  18081. name: "Gigamacro",
  18082. height: math.unit(5, "km")
  18083. },
  18084. {
  18085. name: "Cosmic",
  18086. height: math.unit(2.5e6, "miles")
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18092. {
  18093. front: {
  18094. height: math.unit(6, "feet"),
  18095. weight: math.unit(150, "lb"),
  18096. name: "Front",
  18097. image: {
  18098. source: "./media/characters/hanzo/front.svg",
  18099. extra: 374 / 344,
  18100. bottom: 0.02
  18101. }
  18102. },
  18103. },
  18104. [
  18105. {
  18106. name: "Normal",
  18107. height: math.unit(8, "feet"),
  18108. default: true
  18109. },
  18110. ]
  18111. ))
  18112. characterMakers.push(() => makeCharacter(
  18113. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18114. {
  18115. front: {
  18116. height: math.unit(7, "feet"),
  18117. weight: math.unit(130, "lb"),
  18118. name: "Front",
  18119. image: {
  18120. source: "./media/characters/anna/front.svg",
  18121. extra: 169 / 145,
  18122. bottom: 0.06
  18123. }
  18124. },
  18125. full: {
  18126. height: math.unit(4.96, "feet"),
  18127. weight: math.unit(220, "lb"),
  18128. name: "Full",
  18129. image: {
  18130. source: "./media/characters/anna/full.svg",
  18131. extra: 138 / 114,
  18132. bottom: 0.15
  18133. }
  18134. },
  18135. tongue: {
  18136. height: math.unit(2.53, "feet"),
  18137. name: "Tongue",
  18138. image: {
  18139. source: "./media/characters/anna/tongue.svg"
  18140. }
  18141. },
  18142. },
  18143. [
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(7, "feet"),
  18147. default: true
  18148. },
  18149. ]
  18150. ))
  18151. characterMakers.push(() => makeCharacter(
  18152. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18153. {
  18154. front: {
  18155. height: math.unit(7, "feet"),
  18156. weight: math.unit(150, "lb"),
  18157. name: "Front",
  18158. image: {
  18159. source: "./media/characters/ian-corvid/front.svg",
  18160. extra: 150 / 142,
  18161. bottom: 0.02
  18162. }
  18163. },
  18164. back: {
  18165. height: math.unit(7, "feet"),
  18166. weight: math.unit(150, "lb"),
  18167. name: "Back",
  18168. image: {
  18169. source: "./media/characters/ian-corvid/back.svg",
  18170. extra: 150 / 143,
  18171. bottom: 0.01
  18172. }
  18173. },
  18174. stomping: {
  18175. height: math.unit(7, "feet"),
  18176. weight: math.unit(150, "lb"),
  18177. name: "Stomping",
  18178. image: {
  18179. source: "./media/characters/ian-corvid/stomping.svg",
  18180. extra: 76 / 72
  18181. }
  18182. },
  18183. sitting: {
  18184. height: math.unit(7 / 1.8, "feet"),
  18185. weight: math.unit(150, "lb"),
  18186. name: "Sitting",
  18187. image: {
  18188. source: "./media/characters/ian-corvid/sitting.svg",
  18189. extra: 1400 / 1269,
  18190. bottom: 0.15
  18191. }
  18192. },
  18193. },
  18194. [
  18195. {
  18196. name: "Tiny Microw",
  18197. height: math.unit(1, "inch")
  18198. },
  18199. {
  18200. name: "Microw",
  18201. height: math.unit(6, "inches")
  18202. },
  18203. {
  18204. name: "Crow",
  18205. height: math.unit(7 + 1 / 12, "feet"),
  18206. default: true
  18207. },
  18208. {
  18209. name: "Macrow",
  18210. height: math.unit(176, "feet")
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18216. {
  18217. front: {
  18218. height: math.unit(5 + 7 / 12, "feet"),
  18219. weight: math.unit(147, "lb"),
  18220. name: "Front",
  18221. image: {
  18222. source: "./media/characters/natalie-kellon/front.svg",
  18223. extra: 1214 / 1141,
  18224. bottom: 0.02
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Micro",
  18231. height: math.unit(1 / 16, "inch")
  18232. },
  18233. {
  18234. name: "Tiny",
  18235. height: math.unit(4, "inches")
  18236. },
  18237. {
  18238. name: "Normal",
  18239. height: math.unit(5 + 7 / 12, "feet"),
  18240. default: true
  18241. },
  18242. {
  18243. name: "Amazon",
  18244. height: math.unit(12, "feet")
  18245. },
  18246. {
  18247. name: "Giantess",
  18248. height: math.unit(160, "meters")
  18249. },
  18250. {
  18251. name: "Titaness",
  18252. height: math.unit(800, "meters")
  18253. },
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18258. {
  18259. front: {
  18260. height: math.unit(6, "feet"),
  18261. weight: math.unit(150, "lb"),
  18262. name: "Front",
  18263. image: {
  18264. source: "./media/characters/alluria/front.svg",
  18265. extra: 806 / 738,
  18266. bottom: 0.01
  18267. }
  18268. },
  18269. side: {
  18270. height: math.unit(6, "feet"),
  18271. weight: math.unit(150, "lb"),
  18272. name: "Side",
  18273. image: {
  18274. source: "./media/characters/alluria/side.svg",
  18275. extra: 800 / 750,
  18276. }
  18277. },
  18278. back: {
  18279. height: math.unit(6, "feet"),
  18280. weight: math.unit(150, "lb"),
  18281. name: "Back",
  18282. image: {
  18283. source: "./media/characters/alluria/back.svg",
  18284. extra: 806 / 738,
  18285. }
  18286. },
  18287. frontMaid: {
  18288. height: math.unit(6, "feet"),
  18289. weight: math.unit(150, "lb"),
  18290. name: "Front (Maid)",
  18291. image: {
  18292. source: "./media/characters/alluria/front-maid.svg",
  18293. extra: 806 / 738,
  18294. bottom: 0.01
  18295. }
  18296. },
  18297. sideMaid: {
  18298. height: math.unit(6, "feet"),
  18299. weight: math.unit(150, "lb"),
  18300. name: "Side (Maid)",
  18301. image: {
  18302. source: "./media/characters/alluria/side-maid.svg",
  18303. extra: 800 / 750,
  18304. bottom: 0.005
  18305. }
  18306. },
  18307. backMaid: {
  18308. height: math.unit(6, "feet"),
  18309. weight: math.unit(150, "lb"),
  18310. name: "Back (Maid)",
  18311. image: {
  18312. source: "./media/characters/alluria/back-maid.svg",
  18313. extra: 806 / 738,
  18314. }
  18315. },
  18316. },
  18317. [
  18318. {
  18319. name: "Micro",
  18320. height: math.unit(6, "inches"),
  18321. default: true
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18327. {
  18328. front: {
  18329. height: math.unit(6, "feet"),
  18330. weight: math.unit(150, "lb"),
  18331. name: "Front",
  18332. image: {
  18333. source: "./media/characters/kyle/front.svg",
  18334. extra: 1069 / 962,
  18335. bottom: 77.228 / 1727.45
  18336. }
  18337. },
  18338. },
  18339. [
  18340. {
  18341. name: "Macro",
  18342. height: math.unit(150, "feet"),
  18343. default: true
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18349. {
  18350. front: {
  18351. height: math.unit(6, "feet"),
  18352. weight: math.unit(300, "lb"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/duncan/front.svg",
  18356. extra: 1650 / 1482,
  18357. bottom: 0.05
  18358. }
  18359. },
  18360. },
  18361. [
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(100, "feet"),
  18365. default: true
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18371. {
  18372. front: {
  18373. height: math.unit(5 + 4 / 12, "feet"),
  18374. weight: math.unit(220, "lb"),
  18375. name: "Front",
  18376. image: {
  18377. source: "./media/characters/memory/front.svg",
  18378. extra: 3641 / 3545,
  18379. bottom: 0.03
  18380. }
  18381. },
  18382. back: {
  18383. height: math.unit(5 + 4 / 12, "feet"),
  18384. weight: math.unit(220, "lb"),
  18385. name: "Back",
  18386. image: {
  18387. source: "./media/characters/memory/back.svg",
  18388. extra: 3641 / 3545,
  18389. bottom: 0.025
  18390. }
  18391. },
  18392. frontSkirt: {
  18393. height: math.unit(5 + 4 / 12, "feet"),
  18394. weight: math.unit(220, "lb"),
  18395. name: "Front (Skirt)",
  18396. image: {
  18397. source: "./media/characters/memory/front-skirt.svg",
  18398. extra: 3641 / 3545,
  18399. bottom: 0.03
  18400. }
  18401. },
  18402. frontDress: {
  18403. height: math.unit(5 + 4 / 12, "feet"),
  18404. weight: math.unit(220, "lb"),
  18405. name: "Front (Dress)",
  18406. image: {
  18407. source: "./media/characters/memory/front-dress.svg",
  18408. extra: 3641 / 3545,
  18409. bottom: 0.03
  18410. }
  18411. },
  18412. },
  18413. [
  18414. {
  18415. name: "Micro",
  18416. height: math.unit(6, "inches"),
  18417. default: true
  18418. },
  18419. {
  18420. name: "Normal",
  18421. height: math.unit(5 + 4 / 12, "feet")
  18422. },
  18423. ]
  18424. ))
  18425. characterMakers.push(() => makeCharacter(
  18426. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18427. {
  18428. front: {
  18429. height: math.unit(4 + 11 / 12, "feet"),
  18430. weight: math.unit(100, "lb"),
  18431. name: "Front",
  18432. image: {
  18433. source: "./media/characters/luno/front.svg",
  18434. extra: 1535 / 1487,
  18435. bottom: 0.03
  18436. }
  18437. },
  18438. },
  18439. [
  18440. {
  18441. name: "Micro",
  18442. height: math.unit(3, "inches")
  18443. },
  18444. {
  18445. name: "Normal",
  18446. height: math.unit(4 + 11 / 12, "feet"),
  18447. default: true
  18448. },
  18449. {
  18450. name: "Macro",
  18451. height: math.unit(300, "feet")
  18452. },
  18453. {
  18454. name: "Megamacro",
  18455. height: math.unit(700, "miles")
  18456. },
  18457. ]
  18458. ))
  18459. characterMakers.push(() => makeCharacter(
  18460. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18461. {
  18462. front: {
  18463. height: math.unit(6 + 2 / 12, "feet"),
  18464. weight: math.unit(170, "lb"),
  18465. name: "Front",
  18466. image: {
  18467. source: "./media/characters/jamesy/front.svg",
  18468. extra: 440 / 382,
  18469. bottom: 0.005
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Micro",
  18476. height: math.unit(3, "inches")
  18477. },
  18478. {
  18479. name: "Normal",
  18480. height: math.unit(6 + 2 / 12, "feet"),
  18481. default: true
  18482. },
  18483. {
  18484. name: "Macro",
  18485. height: math.unit(300, "feet")
  18486. },
  18487. {
  18488. name: "Megamacro",
  18489. height: math.unit(700, "miles")
  18490. },
  18491. ]
  18492. ))
  18493. characterMakers.push(() => makeCharacter(
  18494. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18495. {
  18496. front: {
  18497. height: math.unit(6, "feet"),
  18498. weight: math.unit(160, "lb"),
  18499. name: "Front",
  18500. image: {
  18501. source: "./media/characters/mark/front.svg",
  18502. extra: 3300 / 3100,
  18503. bottom: 136.42 / 3440.47
  18504. }
  18505. },
  18506. },
  18507. [
  18508. {
  18509. name: "Macro",
  18510. height: math.unit(120, "meters")
  18511. },
  18512. {
  18513. name: "Bigger Macro",
  18514. height: math.unit(350, "meters")
  18515. },
  18516. {
  18517. name: "Megamacro",
  18518. height: math.unit(8, "km"),
  18519. default: true
  18520. },
  18521. {
  18522. name: "Continental",
  18523. height: math.unit(4550, "km")
  18524. },
  18525. {
  18526. name: "Planetary",
  18527. height: math.unit(65000, "km")
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(6, "feet"),
  18536. weight: math.unit(400, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/mac/front.svg",
  18540. extra: 1048 / 987.7,
  18541. bottom: 60 / 1107.6,
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Macro",
  18548. height: math.unit(500, "feet"),
  18549. default: true
  18550. },
  18551. ]
  18552. ))
  18553. characterMakers.push(() => makeCharacter(
  18554. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18555. {
  18556. front: {
  18557. height: math.unit(5 + 2 / 12, "feet"),
  18558. weight: math.unit(190, "lb"),
  18559. name: "Front",
  18560. image: {
  18561. source: "./media/characters/bari/front.svg",
  18562. extra: 3156 / 2880,
  18563. bottom: 0.03
  18564. }
  18565. },
  18566. back: {
  18567. height: math.unit(5 + 2 / 12, "feet"),
  18568. weight: math.unit(190, "lb"),
  18569. name: "Back",
  18570. image: {
  18571. source: "./media/characters/bari/back.svg",
  18572. extra: 3260 / 2834,
  18573. bottom: 0.025
  18574. }
  18575. },
  18576. frontPlush: {
  18577. height: math.unit(5 + 2 / 12, "feet"),
  18578. weight: math.unit(190, "lb"),
  18579. name: "Front (Plush)",
  18580. image: {
  18581. source: "./media/characters/bari/front-plush.svg",
  18582. extra: 1112 / 1061,
  18583. bottom: 0.002
  18584. }
  18585. },
  18586. },
  18587. [
  18588. {
  18589. name: "Micro",
  18590. height: math.unit(3, "inches")
  18591. },
  18592. {
  18593. name: "Normal",
  18594. height: math.unit(5 + 2 / 12, "feet"),
  18595. default: true
  18596. },
  18597. {
  18598. name: "Macro",
  18599. height: math.unit(20, "feet")
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18605. {
  18606. front: {
  18607. height: math.unit(6 + 1 / 12, "feet"),
  18608. weight: math.unit(275, "lb"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/hunter-misha-raven/front.svg"
  18612. }
  18613. },
  18614. },
  18615. [
  18616. {
  18617. name: "Mortal",
  18618. height: math.unit(6 + 1 / 12, "feet")
  18619. },
  18620. {
  18621. name: "Divine",
  18622. height: math.unit(1.12134e34, "parsecs"),
  18623. default: true
  18624. },
  18625. ]
  18626. ))
  18627. characterMakers.push(() => makeCharacter(
  18628. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18629. {
  18630. front: {
  18631. height: math.unit(6 + 3 / 12, "feet"),
  18632. weight: math.unit(220, "lb"),
  18633. name: "Front",
  18634. image: {
  18635. source: "./media/characters/max-calore/front.svg",
  18636. extra: 1700 / 1648,
  18637. bottom: 0.01
  18638. }
  18639. },
  18640. back: {
  18641. height: math.unit(6 + 3 / 12, "feet"),
  18642. weight: math.unit(220, "lb"),
  18643. name: "Back",
  18644. image: {
  18645. source: "./media/characters/max-calore/back.svg",
  18646. extra: 1700 / 1648,
  18647. bottom: 0.01
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(6 + 3 / 12, "feet"),
  18655. default: true
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18661. {
  18662. side: {
  18663. height: math.unit(2 + 8 / 12, "feet"),
  18664. weight: math.unit(99, "lb"),
  18665. name: "Side",
  18666. image: {
  18667. source: "./media/characters/aspen/side.svg",
  18668. extra: 152 / 138,
  18669. bottom: 0.032
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(2 + 8 / 12, "feet"),
  18677. default: true
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18683. {
  18684. side: {
  18685. height: math.unit(3 + 2 / 12, "feet"),
  18686. weight: math.unit(224, "lb"),
  18687. name: "Side",
  18688. image: {
  18689. source: "./media/characters/sheila-feral-wolf/side.svg",
  18690. extra: 179 / 166,
  18691. bottom: 0.03
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Normal",
  18698. height: math.unit(3 + 2 / 12, "feet"),
  18699. default: true
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18705. {
  18706. side: {
  18707. height: math.unit(1 + 9 / 12, "feet"),
  18708. weight: math.unit(38, "lb"),
  18709. name: "Side",
  18710. image: {
  18711. source: "./media/characters/michelle/side.svg",
  18712. extra: 147 / 136.7,
  18713. bottom: 0.03
  18714. }
  18715. },
  18716. },
  18717. [
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(1 + 9 / 12, "feet"),
  18721. default: true
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(1.54, "feet"),
  18730. weight: math.unit(50, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/nino/front.svg"
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(1.54, "feet"),
  18741. default: true
  18742. },
  18743. ]
  18744. ))
  18745. characterMakers.push(() => makeCharacter(
  18746. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18747. {
  18748. front: {
  18749. height: math.unit(1.49, "feet"),
  18750. weight: math.unit(45, "lb"),
  18751. name: "Front",
  18752. image: {
  18753. source: "./media/characters/viola/front.svg"
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(1.49, "feet"),
  18761. default: true
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18767. {
  18768. front: {
  18769. height: math.unit(6 + 5 / 12, "feet"),
  18770. weight: math.unit(580, "lb"),
  18771. name: "Front",
  18772. image: {
  18773. source: "./media/characters/atlas/front.svg",
  18774. extra: 298.5 / 290,
  18775. bottom: 0.015
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(6 + 5 / 12, "feet"),
  18783. default: true
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18789. {
  18790. side: {
  18791. height: math.unit(15.6, "inches"),
  18792. weight: math.unit(10, "lb"),
  18793. name: "Side",
  18794. image: {
  18795. source: "./media/characters/davy/side.svg",
  18796. extra: 200 / 170,
  18797. bottom: 0.01
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(15.6, "inches"),
  18805. default: true
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18811. {
  18812. side: {
  18813. height: math.unit(4 + 8 / 12, "feet"),
  18814. weight: math.unit(166, "lb"),
  18815. name: "Side",
  18816. image: {
  18817. source: "./media/characters/fiona/side.svg",
  18818. extra: 232 / 220,
  18819. bottom: 0.03
  18820. }
  18821. },
  18822. },
  18823. [
  18824. {
  18825. name: "Normal",
  18826. height: math.unit(4 + 8 / 12, "feet"),
  18827. default: true
  18828. },
  18829. ]
  18830. ))
  18831. characterMakers.push(() => makeCharacter(
  18832. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18833. {
  18834. front: {
  18835. height: math.unit(26, "inches"),
  18836. weight: math.unit(35, "lb"),
  18837. name: "Front",
  18838. image: {
  18839. source: "./media/characters/lyla/front.svg",
  18840. bottom: 0.1
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Normal",
  18847. height: math.unit(3, "feet"),
  18848. default: true
  18849. },
  18850. ]
  18851. ))
  18852. characterMakers.push(() => makeCharacter(
  18853. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18854. {
  18855. side: {
  18856. height: math.unit(1.8, "feet"),
  18857. weight: math.unit(44, "lb"),
  18858. name: "Side",
  18859. image: {
  18860. source: "./media/characters/perseus/side.svg",
  18861. bottom: 0.21
  18862. }
  18863. },
  18864. },
  18865. [
  18866. {
  18867. name: "Normal",
  18868. height: math.unit(1.8, "feet"),
  18869. default: true
  18870. },
  18871. ]
  18872. ))
  18873. characterMakers.push(() => makeCharacter(
  18874. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18875. {
  18876. side: {
  18877. height: math.unit(4 + 2 / 12, "feet"),
  18878. weight: math.unit(20, "lb"),
  18879. name: "Side",
  18880. image: {
  18881. source: "./media/characters/remus/side.svg"
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Normal",
  18888. height: math.unit(4 + 2 / 12, "feet"),
  18889. default: true
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18895. {
  18896. front: {
  18897. height: math.unit(4 + 11 / 12, "feet"),
  18898. weight: math.unit(114, "lb"),
  18899. name: "Front",
  18900. image: {
  18901. source: "./media/characters/raf/front.svg",
  18902. extra: 1504/1339,
  18903. bottom: 26/1530
  18904. }
  18905. },
  18906. side: {
  18907. height: math.unit(4 + 11 / 12, "feet"),
  18908. weight: math.unit(114, "lb"),
  18909. name: "Side",
  18910. image: {
  18911. source: "./media/characters/raf/side.svg",
  18912. extra: 1466/1316,
  18913. bottom: 29/1495
  18914. }
  18915. },
  18916. paw: {
  18917. height: math.unit(1.45, "feet"),
  18918. name: "Paw",
  18919. image: {
  18920. source: "./media/characters/raf/paw.svg"
  18921. },
  18922. extraAttributes: {
  18923. "toeSize": {
  18924. name: "Toe Size",
  18925. power: 2,
  18926. type: "area",
  18927. base: math.unit(0.004, "m^2")
  18928. },
  18929. "padSize": {
  18930. name: "Pad Size",
  18931. power: 2,
  18932. type: "area",
  18933. base: math.unit(0.04, "m^2")
  18934. },
  18935. "footSize": {
  18936. name: "Foot Size",
  18937. power: 2,
  18938. type: "area",
  18939. base: math.unit(0.08, "m^2")
  18940. },
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Micro",
  18947. height: math.unit(2, "inches")
  18948. },
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(4 + 11 / 12, "feet"),
  18952. default: true
  18953. },
  18954. {
  18955. name: "Macro",
  18956. height: math.unit(70, "feet")
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(1.5, "meters"),
  18965. weight: math.unit(68, "kg"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/liam-einarr/front.svg",
  18969. extra: 2822 / 2666
  18970. }
  18971. },
  18972. back: {
  18973. height: math.unit(1.5, "meters"),
  18974. weight: math.unit(68, "kg"),
  18975. name: "Back",
  18976. image: {
  18977. source: "./media/characters/liam-einarr/back.svg",
  18978. extra: 2822 / 2666,
  18979. bottom: 0.015
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Normal",
  18986. height: math.unit(1.5, "meters"),
  18987. default: true
  18988. },
  18989. {
  18990. name: "Macro",
  18991. height: math.unit(150, "meters")
  18992. },
  18993. {
  18994. name: "Megamacro",
  18995. height: math.unit(35, "km")
  18996. },
  18997. ]
  18998. ))
  18999. characterMakers.push(() => makeCharacter(
  19000. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19001. {
  19002. front: {
  19003. height: math.unit(6, "feet"),
  19004. weight: math.unit(75, "kg"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/linda/front.svg",
  19008. extra: 930 / 874,
  19009. bottom: 0.004
  19010. }
  19011. },
  19012. },
  19013. [
  19014. {
  19015. name: "Normal",
  19016. height: math.unit(6, "feet"),
  19017. default: true
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19023. {
  19024. front: {
  19025. height: math.unit(6 + 8 / 12, "feet"),
  19026. weight: math.unit(220, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/caylex/front.svg",
  19030. extra: 821 / 772,
  19031. bottom: 0.07
  19032. }
  19033. },
  19034. back: {
  19035. height: math.unit(6 + 8 / 12, "feet"),
  19036. weight: math.unit(220, "lb"),
  19037. name: "Back",
  19038. image: {
  19039. source: "./media/characters/caylex/back.svg",
  19040. extra: 821 / 772,
  19041. bottom: 0.022
  19042. }
  19043. },
  19044. hand: {
  19045. height: math.unit(1.25, "feet"),
  19046. name: "Hand",
  19047. image: {
  19048. source: "./media/characters/caylex/hand.svg"
  19049. }
  19050. },
  19051. foot: {
  19052. height: math.unit(1.6, "feet"),
  19053. name: "Foot",
  19054. image: {
  19055. source: "./media/characters/caylex/foot.svg"
  19056. }
  19057. },
  19058. armored: {
  19059. height: math.unit(6 + 8 / 12, "feet"),
  19060. weight: math.unit(250, "lb"),
  19061. name: "Armored",
  19062. image: {
  19063. source: "./media/characters/caylex/armored.svg",
  19064. extra: 1420 / 1310,
  19065. bottom: 0.045
  19066. }
  19067. },
  19068. },
  19069. [
  19070. {
  19071. name: "Normal",
  19072. height: math.unit(6 + 8 / 12, "feet"),
  19073. default: true
  19074. },
  19075. {
  19076. name: "Normal+",
  19077. height: math.unit(12, "feet")
  19078. },
  19079. ]
  19080. ))
  19081. characterMakers.push(() => makeCharacter(
  19082. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19083. {
  19084. front: {
  19085. height: math.unit(7 + 6 / 12, "feet"),
  19086. weight: math.unit(288, "lb"),
  19087. name: "Front",
  19088. image: {
  19089. source: "./media/characters/alana/front.svg",
  19090. extra: 679 / 653,
  19091. bottom: 22.5 / 701
  19092. }
  19093. },
  19094. },
  19095. [
  19096. {
  19097. name: "Normal",
  19098. height: math.unit(7 + 6 / 12, "feet")
  19099. },
  19100. {
  19101. name: "Large",
  19102. height: math.unit(50, "feet")
  19103. },
  19104. {
  19105. name: "Macro",
  19106. height: math.unit(100, "feet"),
  19107. default: true
  19108. },
  19109. {
  19110. name: "Macro+",
  19111. height: math.unit(200, "feet")
  19112. },
  19113. ]
  19114. ))
  19115. characterMakers.push(() => makeCharacter(
  19116. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19117. {
  19118. front: {
  19119. height: math.unit(6 + 1 / 12, "feet"),
  19120. weight: math.unit(210, "lb"),
  19121. name: "Front",
  19122. image: {
  19123. source: "./media/characters/hasani/front.svg",
  19124. extra: 244 / 232,
  19125. bottom: 0.01
  19126. }
  19127. },
  19128. back: {
  19129. height: math.unit(6 + 1 / 12, "feet"),
  19130. weight: math.unit(210, "lb"),
  19131. name: "Back",
  19132. image: {
  19133. source: "./media/characters/hasani/back.svg",
  19134. extra: 244 / 232,
  19135. bottom: 0.01
  19136. }
  19137. },
  19138. },
  19139. [
  19140. {
  19141. name: "Normal",
  19142. height: math.unit(6 + 1 / 12, "feet")
  19143. },
  19144. {
  19145. name: "Macro",
  19146. height: math.unit(175, "feet"),
  19147. default: true
  19148. },
  19149. ]
  19150. ))
  19151. characterMakers.push(() => makeCharacter(
  19152. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19153. {
  19154. front: {
  19155. height: math.unit(1.82, "meters"),
  19156. weight: math.unit(140, "lb"),
  19157. name: "Front",
  19158. image: {
  19159. source: "./media/characters/nita/front.svg",
  19160. extra: 2473 / 2363,
  19161. bottom: 0.01
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Normal",
  19168. height: math.unit(1.82, "m")
  19169. },
  19170. {
  19171. name: "Macro",
  19172. height: math.unit(300, "m")
  19173. },
  19174. {
  19175. name: "Mistake Canon",
  19176. height: math.unit(0.5, "miles"),
  19177. default: true
  19178. },
  19179. {
  19180. name: "Big Mistake",
  19181. height: math.unit(13, "miles")
  19182. },
  19183. {
  19184. name: "Playing God",
  19185. height: math.unit(2450, "miles")
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19191. {
  19192. front: {
  19193. height: math.unit(4, "feet"),
  19194. weight: math.unit(120, "lb"),
  19195. name: "Front",
  19196. image: {
  19197. source: "./media/characters/shiriko/front.svg",
  19198. extra: 970/934,
  19199. bottom: 5/975
  19200. }
  19201. },
  19202. },
  19203. [
  19204. {
  19205. name: "Normal",
  19206. height: math.unit(4, "feet"),
  19207. default: true
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19213. {
  19214. front: {
  19215. height: math.unit(6, "feet"),
  19216. name: "front",
  19217. image: {
  19218. source: "./media/characters/deja/front.svg",
  19219. extra: 926 / 840,
  19220. bottom: 0.07
  19221. }
  19222. },
  19223. },
  19224. [
  19225. {
  19226. name: "Planck Length",
  19227. height: math.unit(1.6e-35, "meters")
  19228. },
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(30.48, "meters"),
  19232. default: true
  19233. },
  19234. {
  19235. name: "Universal",
  19236. height: math.unit(8.8e26, "meters")
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19242. {
  19243. side: {
  19244. height: math.unit(8, "feet"),
  19245. weight: math.unit(6300, "lb"),
  19246. name: "Side",
  19247. image: {
  19248. source: "./media/characters/anima/side.svg",
  19249. bottom: 0.035
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(8, "feet"),
  19257. default: true
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(8, "feet"),
  19266. weight: math.unit(350, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/bianca/front.svg",
  19270. extra: 234 / 225,
  19271. bottom: 0.03
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(8, "feet"),
  19279. default: true
  19280. },
  19281. ]
  19282. ))
  19283. characterMakers.push(() => makeCharacter(
  19284. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19285. {
  19286. front: {
  19287. height: math.unit(11 + 5/12, "feet"),
  19288. weight: math.unit(1200, "lb"),
  19289. name: "Front",
  19290. image: {
  19291. source: "./media/characters/adinia/front.svg",
  19292. extra: 1767/1641,
  19293. bottom: 44/1811
  19294. },
  19295. extraAttributes: {
  19296. "energyIntake": {
  19297. name: "Energy Intake",
  19298. power: 3,
  19299. type: "energy",
  19300. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19301. },
  19302. }
  19303. },
  19304. back: {
  19305. height: math.unit(11 + 5/12, "feet"),
  19306. weight: math.unit(1200, "lb"),
  19307. name: "Back",
  19308. image: {
  19309. source: "./media/characters/adinia/back.svg",
  19310. extra: 1834/1684,
  19311. bottom: 14/1848
  19312. },
  19313. extraAttributes: {
  19314. "energyIntake": {
  19315. name: "Energy Intake",
  19316. power: 3,
  19317. type: "energy",
  19318. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19319. },
  19320. }
  19321. },
  19322. maw: {
  19323. height: math.unit(3.79, "feet"),
  19324. name: "Maw",
  19325. image: {
  19326. source: "./media/characters/adinia/maw.svg"
  19327. }
  19328. },
  19329. rump: {
  19330. height: math.unit(4.6, "feet"),
  19331. name: "Rump",
  19332. image: {
  19333. source: "./media/characters/adinia/rump.svg"
  19334. }
  19335. },
  19336. },
  19337. [
  19338. {
  19339. name: "Normal",
  19340. height: math.unit(11 + 5 / 12, "feet"),
  19341. default: true
  19342. },
  19343. ]
  19344. ))
  19345. characterMakers.push(() => makeCharacter(
  19346. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19347. {
  19348. front: {
  19349. height: math.unit(3, "meters"),
  19350. weight: math.unit(200, "kg"),
  19351. name: "Front",
  19352. image: {
  19353. source: "./media/characters/lykasa/front.svg",
  19354. extra: 1076 / 976,
  19355. bottom: 0.06
  19356. }
  19357. },
  19358. },
  19359. [
  19360. {
  19361. name: "Normal",
  19362. height: math.unit(3, "meters")
  19363. },
  19364. {
  19365. name: "Kaiju",
  19366. height: math.unit(120, "meters"),
  19367. default: true
  19368. },
  19369. {
  19370. name: "Mega Kaiju",
  19371. height: math.unit(240, "km")
  19372. },
  19373. {
  19374. name: "Giga Kaiju",
  19375. height: math.unit(400, "megameters")
  19376. },
  19377. {
  19378. name: "Tera Kaiju",
  19379. height: math.unit(800, "gigameters")
  19380. },
  19381. {
  19382. name: "Kaiju Dragon Goddess",
  19383. height: math.unit(26, "zettaparsecs")
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19389. {
  19390. side: {
  19391. height: math.unit(283 / 124 * 6, "feet"),
  19392. weight: math.unit(35000, "lb"),
  19393. name: "Side",
  19394. image: {
  19395. source: "./media/characters/malfaren/side.svg",
  19396. extra: 1310/529,
  19397. bottom: 24/1334
  19398. }
  19399. },
  19400. front: {
  19401. height: math.unit(22.36, "feet"),
  19402. weight: math.unit(35000, "lb"),
  19403. name: "Front",
  19404. image: {
  19405. source: "./media/characters/malfaren/front.svg",
  19406. extra: 1237/1115,
  19407. bottom: 32/1269
  19408. }
  19409. },
  19410. maw: {
  19411. height: math.unit(6.9, "feet"),
  19412. name: "Maw",
  19413. image: {
  19414. source: "./media/characters/malfaren/maw.svg"
  19415. }
  19416. },
  19417. dick: {
  19418. height: math.unit(6.19, "feet"),
  19419. name: "Dick",
  19420. image: {
  19421. source: "./media/characters/malfaren/dick.svg"
  19422. }
  19423. },
  19424. eye: {
  19425. height: math.unit(0.69, "feet"),
  19426. name: "Eye",
  19427. image: {
  19428. source: "./media/characters/malfaren/eye.svg"
  19429. }
  19430. },
  19431. },
  19432. [
  19433. {
  19434. name: "Big",
  19435. height: math.unit(283 / 162 * 6, "feet"),
  19436. },
  19437. {
  19438. name: "Bigger",
  19439. height: math.unit(283 / 124 * 6, "feet")
  19440. },
  19441. {
  19442. name: "Massive",
  19443. height: math.unit(283 / 92 * 6, "feet"),
  19444. default: true
  19445. },
  19446. {
  19447. name: "👀💦",
  19448. height: math.unit(283 / 73 * 6, "feet"),
  19449. },
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19454. {
  19455. front: {
  19456. height: math.unit(1.7, "m"),
  19457. weight: math.unit(70, "kg"),
  19458. name: "Front",
  19459. image: {
  19460. source: "./media/characters/kernel/front.svg",
  19461. extra: 222 / 210,
  19462. bottom: 0.007
  19463. }
  19464. },
  19465. },
  19466. [
  19467. {
  19468. name: "Nano",
  19469. height: math.unit(17, "micrometers")
  19470. },
  19471. {
  19472. name: "Micro",
  19473. height: math.unit(1.7, "mm")
  19474. },
  19475. {
  19476. name: "Small",
  19477. height: math.unit(1.7, "cm")
  19478. },
  19479. {
  19480. name: "Normal",
  19481. height: math.unit(1.7, "m"),
  19482. default: true
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19488. {
  19489. front: {
  19490. height: math.unit(1.75, "meters"),
  19491. weight: math.unit(65, "kg"),
  19492. name: "Front",
  19493. image: {
  19494. source: "./media/characters/jayne-folest/front.svg",
  19495. extra: 2115 / 2007,
  19496. bottom: 0.02
  19497. }
  19498. },
  19499. back: {
  19500. height: math.unit(1.75, "meters"),
  19501. weight: math.unit(65, "kg"),
  19502. name: "Back",
  19503. image: {
  19504. source: "./media/characters/jayne-folest/back.svg",
  19505. extra: 2115 / 2007,
  19506. bottom: 0.005
  19507. }
  19508. },
  19509. frontClothed: {
  19510. height: math.unit(1.75, "meters"),
  19511. weight: math.unit(65, "kg"),
  19512. name: "Front (Clothed)",
  19513. image: {
  19514. source: "./media/characters/jayne-folest/front-clothed.svg",
  19515. extra: 2115 / 2007,
  19516. bottom: 0.035
  19517. }
  19518. },
  19519. hand: {
  19520. height: math.unit(1 / 1.260, "feet"),
  19521. name: "Hand",
  19522. image: {
  19523. source: "./media/characters/jayne-folest/hand.svg"
  19524. }
  19525. },
  19526. foot: {
  19527. height: math.unit(1 / 0.918, "feet"),
  19528. name: "Foot",
  19529. image: {
  19530. source: "./media/characters/jayne-folest/foot.svg"
  19531. }
  19532. },
  19533. },
  19534. [
  19535. {
  19536. name: "Micro",
  19537. height: math.unit(4, "cm")
  19538. },
  19539. {
  19540. name: "Normal",
  19541. height: math.unit(1.75, "meters")
  19542. },
  19543. {
  19544. name: "Macro",
  19545. height: math.unit(47.5, "meters"),
  19546. default: true
  19547. },
  19548. ]
  19549. ))
  19550. characterMakers.push(() => makeCharacter(
  19551. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19552. {
  19553. front: {
  19554. height: math.unit(180, "cm"),
  19555. weight: math.unit(70, "kg"),
  19556. name: "Front",
  19557. image: {
  19558. source: "./media/characters/algier/front.svg",
  19559. extra: 596 / 572,
  19560. bottom: 0.04
  19561. }
  19562. },
  19563. back: {
  19564. height: math.unit(180, "cm"),
  19565. weight: math.unit(70, "kg"),
  19566. name: "Back",
  19567. image: {
  19568. source: "./media/characters/algier/back.svg",
  19569. extra: 596 / 572,
  19570. bottom: 0.025
  19571. }
  19572. },
  19573. frontdressed: {
  19574. height: math.unit(180, "cm"),
  19575. weight: math.unit(150, "kg"),
  19576. name: "Front-dressed",
  19577. image: {
  19578. source: "./media/characters/algier/front-dressed.svg",
  19579. extra: 596 / 572,
  19580. bottom: 0.038
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Micro",
  19587. height: math.unit(5, "cm")
  19588. },
  19589. {
  19590. name: "Normal",
  19591. height: math.unit(180, "cm"),
  19592. default: true
  19593. },
  19594. {
  19595. name: "Macro",
  19596. height: math.unit(64, "m")
  19597. },
  19598. ]
  19599. ))
  19600. characterMakers.push(() => makeCharacter(
  19601. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19602. {
  19603. upright: {
  19604. height: math.unit(7, "feet"),
  19605. weight: math.unit(300, "lb"),
  19606. name: "Upright",
  19607. image: {
  19608. source: "./media/characters/pretzel/upright.svg",
  19609. extra: 534 / 522,
  19610. bottom: 0.065
  19611. }
  19612. },
  19613. sprawling: {
  19614. height: math.unit(3.75, "feet"),
  19615. weight: math.unit(300, "lb"),
  19616. name: "Sprawling",
  19617. image: {
  19618. source: "./media/characters/pretzel/sprawling.svg",
  19619. extra: 314 / 281,
  19620. bottom: 0.1
  19621. }
  19622. },
  19623. tongue: {
  19624. height: math.unit(2, "feet"),
  19625. name: "Tongue",
  19626. image: {
  19627. source: "./media/characters/pretzel/tongue.svg"
  19628. }
  19629. },
  19630. },
  19631. [
  19632. {
  19633. name: "Normal",
  19634. height: math.unit(7, "feet"),
  19635. default: true
  19636. },
  19637. {
  19638. name: "Oversized",
  19639. height: math.unit(15, "feet")
  19640. },
  19641. {
  19642. name: "Huge",
  19643. height: math.unit(30, "feet")
  19644. },
  19645. {
  19646. name: "Macro",
  19647. height: math.unit(250, "feet")
  19648. },
  19649. ]
  19650. ))
  19651. characterMakers.push(() => makeCharacter(
  19652. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19653. {
  19654. sideFront: {
  19655. height: math.unit(5 + 2 / 12, "feet"),
  19656. weight: math.unit(120, "lb"),
  19657. name: "Front Side",
  19658. image: {
  19659. source: "./media/characters/roxi/side-front.svg",
  19660. extra: 2924 / 2717,
  19661. bottom: 0.08
  19662. }
  19663. },
  19664. sideBack: {
  19665. height: math.unit(5 + 2 / 12, "feet"),
  19666. weight: math.unit(120, "lb"),
  19667. name: "Back Side",
  19668. image: {
  19669. source: "./media/characters/roxi/side-back.svg",
  19670. extra: 2904 / 2693,
  19671. bottom: 0.06
  19672. }
  19673. },
  19674. front: {
  19675. height: math.unit(5 + 2 / 12, "feet"),
  19676. weight: math.unit(120, "lb"),
  19677. name: "Front",
  19678. image: {
  19679. source: "./media/characters/roxi/front.svg",
  19680. extra: 2028 / 1907,
  19681. bottom: 0.01
  19682. }
  19683. },
  19684. frontAlt: {
  19685. height: math.unit(5 + 2 / 12, "feet"),
  19686. weight: math.unit(120, "lb"),
  19687. name: "Front (Alt)",
  19688. image: {
  19689. source: "./media/characters/roxi/front-alt.svg",
  19690. extra: 1828 / 1798,
  19691. bottom: 0.01
  19692. }
  19693. },
  19694. sitting: {
  19695. height: math.unit(2.8, "feet"),
  19696. weight: math.unit(120, "lb"),
  19697. name: "Sitting",
  19698. image: {
  19699. source: "./media/characters/roxi/sitting.svg",
  19700. extra: 2660 / 2462,
  19701. bottom: 0.1
  19702. }
  19703. },
  19704. },
  19705. [
  19706. {
  19707. name: "Normal",
  19708. height: math.unit(5 + 2 / 12, "feet"),
  19709. default: true
  19710. },
  19711. ]
  19712. ))
  19713. characterMakers.push(() => makeCharacter(
  19714. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19715. {
  19716. side: {
  19717. height: math.unit(55, "feet"),
  19718. weight: math.unit(153, "tons"),
  19719. name: "Side",
  19720. image: {
  19721. source: "./media/characters/shadow/side.svg",
  19722. extra: 701 / 628,
  19723. bottom: 0.02
  19724. }
  19725. },
  19726. flying: {
  19727. height: math.unit(145, "feet"),
  19728. weight: math.unit(153, "tons"),
  19729. name: "Flying",
  19730. image: {
  19731. source: "./media/characters/shadow/flying.svg"
  19732. }
  19733. },
  19734. },
  19735. [
  19736. {
  19737. name: "Normal",
  19738. height: math.unit(55, "feet"),
  19739. default: true
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19745. {
  19746. front: {
  19747. height: math.unit(6, "feet"),
  19748. weight: math.unit(200, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/marcie/front.svg",
  19752. extra: 960 / 876,
  19753. bottom: 58 / 1017.87
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Macro",
  19760. height: math.unit(1, "mile"),
  19761. default: true
  19762. },
  19763. ]
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19767. {
  19768. front: {
  19769. height: math.unit(7, "feet"),
  19770. weight: math.unit(200, "lb"),
  19771. name: "Front",
  19772. image: {
  19773. source: "./media/characters/kachina/front.svg",
  19774. extra: 1290.68 / 1119,
  19775. bottom: 36.5 / 1327.18
  19776. }
  19777. },
  19778. },
  19779. [
  19780. {
  19781. name: "Normal",
  19782. height: math.unit(7, "feet"),
  19783. default: true
  19784. },
  19785. ]
  19786. ))
  19787. characterMakers.push(() => makeCharacter(
  19788. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19789. {
  19790. looking: {
  19791. height: math.unit(2, "meters"),
  19792. weight: math.unit(300, "kg"),
  19793. name: "Looking",
  19794. image: {
  19795. source: "./media/characters/kash/looking.svg",
  19796. extra: 474 / 344,
  19797. bottom: 0.03
  19798. }
  19799. },
  19800. side: {
  19801. height: math.unit(2, "meters"),
  19802. weight: math.unit(300, "kg"),
  19803. name: "Side",
  19804. image: {
  19805. source: "./media/characters/kash/side.svg",
  19806. extra: 302 / 251,
  19807. bottom: 0.03
  19808. }
  19809. },
  19810. front: {
  19811. height: math.unit(2, "meters"),
  19812. weight: math.unit(300, "kg"),
  19813. name: "Front",
  19814. image: {
  19815. source: "./media/characters/kash/front.svg",
  19816. extra: 495 / 360,
  19817. bottom: 0.015
  19818. }
  19819. },
  19820. },
  19821. [
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(2, "meters"),
  19825. default: true
  19826. },
  19827. {
  19828. name: "Big",
  19829. height: math.unit(3, "meters")
  19830. },
  19831. {
  19832. name: "Large",
  19833. height: math.unit(5, "meters")
  19834. },
  19835. ]
  19836. ))
  19837. characterMakers.push(() => makeCharacter(
  19838. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19839. {
  19840. feeding: {
  19841. height: math.unit(6.7, "feet"),
  19842. weight: math.unit(350, "lb"),
  19843. name: "Feeding",
  19844. image: {
  19845. source: "./media/characters/lalim/feeding.svg",
  19846. }
  19847. },
  19848. },
  19849. [
  19850. {
  19851. name: "Normal",
  19852. height: math.unit(6.7, "feet"),
  19853. default: true
  19854. },
  19855. ]
  19856. ))
  19857. characterMakers.push(() => makeCharacter(
  19858. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19859. {
  19860. front: {
  19861. height: math.unit(9.5, "feet"),
  19862. weight: math.unit(600, "lb"),
  19863. name: "Front",
  19864. image: {
  19865. source: "./media/characters/de'vout/front.svg",
  19866. extra: 1443 / 1328,
  19867. bottom: 0.025
  19868. }
  19869. },
  19870. back: {
  19871. height: math.unit(9.5, "feet"),
  19872. weight: math.unit(600, "lb"),
  19873. name: "Back",
  19874. image: {
  19875. source: "./media/characters/de'vout/back.svg",
  19876. extra: 1443 / 1328
  19877. }
  19878. },
  19879. frontDressed: {
  19880. height: math.unit(9.5, "feet"),
  19881. weight: math.unit(600, "lb"),
  19882. name: "Front (Dressed",
  19883. image: {
  19884. source: "./media/characters/de'vout/front-dressed.svg",
  19885. extra: 1443 / 1328,
  19886. bottom: 0.025
  19887. }
  19888. },
  19889. backDressed: {
  19890. height: math.unit(9.5, "feet"),
  19891. weight: math.unit(600, "lb"),
  19892. name: "Back (Dressed",
  19893. image: {
  19894. source: "./media/characters/de'vout/back-dressed.svg",
  19895. extra: 1443 / 1328
  19896. }
  19897. },
  19898. },
  19899. [
  19900. {
  19901. name: "Normal",
  19902. height: math.unit(9.5, "feet"),
  19903. default: true
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19909. {
  19910. front: {
  19911. height: math.unit(8, "feet"),
  19912. weight: math.unit(225, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/talana/front.svg",
  19916. extra: 1410 / 1300,
  19917. bottom: 0.015
  19918. }
  19919. },
  19920. frontDressed: {
  19921. height: math.unit(8, "feet"),
  19922. weight: math.unit(225, "lb"),
  19923. name: "Front (Dressed",
  19924. image: {
  19925. source: "./media/characters/talana/front-dressed.svg",
  19926. extra: 1410 / 1300,
  19927. bottom: 0.015
  19928. }
  19929. },
  19930. },
  19931. [
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(8, "feet"),
  19935. default: true
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19941. {
  19942. side: {
  19943. height: math.unit(7.2, "feet"),
  19944. weight: math.unit(150, "lb"),
  19945. name: "Side",
  19946. image: {
  19947. source: "./media/characters/xeauvok/side.svg",
  19948. extra: 1975 / 1523,
  19949. bottom: 0.07
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(7.2, "feet"),
  19957. default: true
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19963. {
  19964. side: {
  19965. height: math.unit(4, "meters"),
  19966. weight: math.unit(2200, "kg"),
  19967. name: "Side",
  19968. image: {
  19969. source: "./media/characters/zara/side.svg",
  19970. extra: 765/744,
  19971. bottom: 156/921
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Normal",
  19978. height: math.unit(4, "meters"),
  19979. default: true
  19980. },
  19981. ]
  19982. ))
  19983. characterMakers.push(() => makeCharacter(
  19984. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19985. {
  19986. side: {
  19987. height: math.unit(6, "feet"),
  19988. weight: math.unit(150, "lb"),
  19989. name: "Side",
  19990. image: {
  19991. source: "./media/characters/richard-dragon/side.svg",
  19992. extra: 845 / 340,
  19993. bottom: 0.017
  19994. }
  19995. },
  19996. maw: {
  19997. height: math.unit(2.97, "feet"),
  19998. name: "Maw",
  19999. image: {
  20000. source: "./media/characters/richard-dragon/maw.svg"
  20001. }
  20002. },
  20003. },
  20004. [
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20009. {
  20010. front: {
  20011. height: math.unit(4, "feet"),
  20012. weight: math.unit(100, "lb"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/richard-smeargle/front.svg",
  20016. extra: 2952 / 2820,
  20017. bottom: 0.028
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(4, "feet"),
  20025. default: true
  20026. },
  20027. {
  20028. name: "Dynamax",
  20029. height: math.unit(20, "meters")
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(6, "feet"),
  20038. weight: math.unit(110, "lb"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/klay/front.svg",
  20042. extra: 962 / 883,
  20043. bottom: 0.04
  20044. }
  20045. },
  20046. back: {
  20047. height: math.unit(6, "feet"),
  20048. weight: math.unit(110, "lb"),
  20049. name: "Back",
  20050. image: {
  20051. source: "./media/characters/klay/back.svg",
  20052. extra: 962 / 883
  20053. }
  20054. },
  20055. beans: {
  20056. height: math.unit(1.15, "feet"),
  20057. name: "Beans",
  20058. image: {
  20059. source: "./media/characters/klay/beans.svg"
  20060. }
  20061. },
  20062. },
  20063. [
  20064. {
  20065. name: "Micro",
  20066. height: math.unit(6, "inches")
  20067. },
  20068. {
  20069. name: "Mini",
  20070. height: math.unit(3, "feet")
  20071. },
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(6, "feet"),
  20075. default: true
  20076. },
  20077. {
  20078. name: "Big",
  20079. height: math.unit(25, "feet")
  20080. },
  20081. {
  20082. name: "Macro",
  20083. height: math.unit(100, "feet")
  20084. },
  20085. {
  20086. name: "Megamacro",
  20087. height: math.unit(400, "feet")
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20093. {
  20094. front: {
  20095. height: math.unit(6, "feet"),
  20096. weight: math.unit(160, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/marcus/front.svg",
  20100. extra: 734 / 676,
  20101. bottom: 0.03
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Little",
  20108. height: math.unit(6, "feet")
  20109. },
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(110, "feet"),
  20113. default: true
  20114. },
  20115. {
  20116. name: "Macro",
  20117. height: math.unit(250, "feet")
  20118. },
  20119. {
  20120. name: "Megamacro",
  20121. height: math.unit(1000, "feet")
  20122. },
  20123. ]
  20124. ))
  20125. characterMakers.push(() => makeCharacter(
  20126. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20127. {
  20128. front: {
  20129. height: math.unit(7, "feet"),
  20130. weight: math.unit(275, "lb"),
  20131. name: "Front",
  20132. image: {
  20133. source: "./media/characters/claude-delroute/front.svg",
  20134. extra: 902/827,
  20135. bottom: 26/928
  20136. }
  20137. },
  20138. side: {
  20139. height: math.unit(7, "feet"),
  20140. weight: math.unit(275, "lb"),
  20141. name: "Side",
  20142. image: {
  20143. source: "./media/characters/claude-delroute/side.svg",
  20144. extra: 908/853,
  20145. bottom: 16/924
  20146. }
  20147. },
  20148. back: {
  20149. height: math.unit(7, "feet"),
  20150. weight: math.unit(275, "lb"),
  20151. name: "Back",
  20152. image: {
  20153. source: "./media/characters/claude-delroute/back.svg",
  20154. extra: 911/829,
  20155. bottom: 18/929
  20156. }
  20157. },
  20158. maw: {
  20159. height: math.unit(0.6407, "meters"),
  20160. name: "Maw",
  20161. image: {
  20162. source: "./media/characters/claude-delroute/maw.svg"
  20163. }
  20164. },
  20165. },
  20166. [
  20167. {
  20168. name: "Normal",
  20169. height: math.unit(7, "feet"),
  20170. default: true
  20171. },
  20172. {
  20173. name: "Lorge",
  20174. height: math.unit(20, "feet")
  20175. },
  20176. ]
  20177. ))
  20178. characterMakers.push(() => makeCharacter(
  20179. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20180. {
  20181. front: {
  20182. height: math.unit(8 + 4 / 12, "feet"),
  20183. weight: math.unit(600, "lb"),
  20184. name: "Front",
  20185. image: {
  20186. source: "./media/characters/dragonien/front.svg",
  20187. extra: 100 / 94,
  20188. bottom: 3.3 / 103.3445
  20189. }
  20190. },
  20191. back: {
  20192. height: math.unit(8 + 4 / 12, "feet"),
  20193. weight: math.unit(600, "lb"),
  20194. name: "Back",
  20195. image: {
  20196. source: "./media/characters/dragonien/back.svg",
  20197. extra: 776 / 746,
  20198. bottom: 6.4 / 782.0616
  20199. }
  20200. },
  20201. foot: {
  20202. height: math.unit(1.54, "feet"),
  20203. name: "Foot",
  20204. image: {
  20205. source: "./media/characters/dragonien/foot.svg",
  20206. }
  20207. },
  20208. },
  20209. [
  20210. {
  20211. name: "Normal",
  20212. height: math.unit(8 + 4 / 12, "feet"),
  20213. default: true
  20214. },
  20215. {
  20216. name: "Macro",
  20217. height: math.unit(200, "feet")
  20218. },
  20219. {
  20220. name: "Megamacro",
  20221. height: math.unit(1, "mile")
  20222. },
  20223. {
  20224. name: "Gigamacro",
  20225. height: math.unit(1000, "miles")
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(5 + 2 / 12, "feet"),
  20234. weight: math.unit(110, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/desta/front.svg",
  20238. extra: 767 / 726,
  20239. bottom: 11.7 / 779
  20240. }
  20241. },
  20242. back: {
  20243. height: math.unit(5 + 2 / 12, "feet"),
  20244. weight: math.unit(110, "lb"),
  20245. name: "Back",
  20246. image: {
  20247. source: "./media/characters/desta/back.svg",
  20248. extra: 777 / 728,
  20249. bottom: 6 / 784
  20250. }
  20251. },
  20252. frontAlt: {
  20253. height: math.unit(5 + 2 / 12, "feet"),
  20254. weight: math.unit(110, "lb"),
  20255. name: "Front",
  20256. image: {
  20257. source: "./media/characters/desta/front-alt.svg",
  20258. extra: 1482 / 1417
  20259. }
  20260. },
  20261. side: {
  20262. height: math.unit(5 + 2 / 12, "feet"),
  20263. weight: math.unit(110, "lb"),
  20264. name: "Side",
  20265. image: {
  20266. source: "./media/characters/desta/side.svg",
  20267. extra: 2579 / 2491,
  20268. bottom: 0.053
  20269. }
  20270. },
  20271. },
  20272. [
  20273. {
  20274. name: "Micro",
  20275. height: math.unit(6, "inches")
  20276. },
  20277. {
  20278. name: "Normal",
  20279. height: math.unit(5 + 2 / 12, "feet"),
  20280. default: true
  20281. },
  20282. {
  20283. name: "Macro",
  20284. height: math.unit(62, "feet")
  20285. },
  20286. {
  20287. name: "Megamacro",
  20288. height: math.unit(1800, "feet")
  20289. },
  20290. ]
  20291. ))
  20292. characterMakers.push(() => makeCharacter(
  20293. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20294. {
  20295. front: {
  20296. height: math.unit(10, "feet"),
  20297. weight: math.unit(700, "lb"),
  20298. name: "Front",
  20299. image: {
  20300. source: "./media/characters/storm-alystar/front.svg",
  20301. extra: 2112 / 1898,
  20302. bottom: 0.034
  20303. }
  20304. },
  20305. },
  20306. [
  20307. {
  20308. name: "Micro",
  20309. height: math.unit(3.5, "inches")
  20310. },
  20311. {
  20312. name: "Normal",
  20313. height: math.unit(10, "feet"),
  20314. default: true
  20315. },
  20316. {
  20317. name: "Macro",
  20318. height: math.unit(400, "feet")
  20319. },
  20320. {
  20321. name: "Deific",
  20322. height: math.unit(60, "miles")
  20323. },
  20324. ]
  20325. ))
  20326. characterMakers.push(() => makeCharacter(
  20327. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20328. {
  20329. front: {
  20330. height: math.unit(2.35, "meters"),
  20331. weight: math.unit(119, "kg"),
  20332. name: "Front",
  20333. image: {
  20334. source: "./media/characters/ilia/front.svg",
  20335. extra: 1285 / 1255,
  20336. bottom: 0.06
  20337. }
  20338. },
  20339. },
  20340. [
  20341. {
  20342. name: "Normal",
  20343. height: math.unit(2.35, "meters")
  20344. },
  20345. {
  20346. name: "Macro",
  20347. height: math.unit(140, "meters"),
  20348. default: true
  20349. },
  20350. {
  20351. name: "Megamacro",
  20352. height: math.unit(100, "miles")
  20353. },
  20354. ]
  20355. ))
  20356. characterMakers.push(() => makeCharacter(
  20357. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20358. {
  20359. front: {
  20360. height: math.unit(6 + 5 / 12, "feet"),
  20361. weight: math.unit(190, "lb"),
  20362. name: "Front",
  20363. image: {
  20364. source: "./media/characters/kingdead/front.svg",
  20365. extra: 1228 / 1177
  20366. }
  20367. },
  20368. },
  20369. [
  20370. {
  20371. name: "Micro",
  20372. height: math.unit(7, "inches")
  20373. },
  20374. {
  20375. name: "Normal",
  20376. height: math.unit(6 + 5 / 12, "feet")
  20377. },
  20378. {
  20379. name: "Macro",
  20380. height: math.unit(150, "feet"),
  20381. default: true
  20382. },
  20383. {
  20384. name: "Megamacro",
  20385. height: math.unit(200, "miles")
  20386. },
  20387. ]
  20388. ))
  20389. characterMakers.push(() => makeCharacter(
  20390. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20391. {
  20392. front: {
  20393. height: math.unit(8, "feet"),
  20394. weight: math.unit(600, "lb"),
  20395. name: "Front",
  20396. image: {
  20397. source: "./media/characters/kyrehx/front.svg",
  20398. extra: 1195 / 1095,
  20399. bottom: 0.034
  20400. }
  20401. },
  20402. },
  20403. [
  20404. {
  20405. name: "Micro",
  20406. height: math.unit(2, "inches")
  20407. },
  20408. {
  20409. name: "Normal",
  20410. height: math.unit(8, "feet"),
  20411. default: true
  20412. },
  20413. {
  20414. name: "Macro",
  20415. height: math.unit(255, "feet")
  20416. },
  20417. ]
  20418. ))
  20419. characterMakers.push(() => makeCharacter(
  20420. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20421. {
  20422. front: {
  20423. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20424. weight: math.unit(184, "lb"),
  20425. name: "Front",
  20426. image: {
  20427. source: "./media/characters/xang/front.svg",
  20428. extra: 845 / 755
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20436. default: true
  20437. },
  20438. {
  20439. name: "Macro",
  20440. height: math.unit(0.935 * 146, "feet")
  20441. },
  20442. {
  20443. name: "Megamacro",
  20444. height: math.unit(0.935 * 3, "miles")
  20445. },
  20446. ]
  20447. ))
  20448. characterMakers.push(() => makeCharacter(
  20449. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20450. {
  20451. frontDressed: {
  20452. height: math.unit(5 + 7 / 12, "feet"),
  20453. weight: math.unit(140, "lb"),
  20454. name: "Front (Dressed)",
  20455. image: {
  20456. source: "./media/characters/doc-weardno/front-dressed.svg",
  20457. extra: 263 / 234
  20458. }
  20459. },
  20460. backDressed: {
  20461. height: math.unit(5 + 7 / 12, "feet"),
  20462. weight: math.unit(140, "lb"),
  20463. name: "Back (Dressed)",
  20464. image: {
  20465. source: "./media/characters/doc-weardno/back-dressed.svg",
  20466. extra: 266 / 238
  20467. }
  20468. },
  20469. front: {
  20470. height: math.unit(5 + 7 / 12, "feet"),
  20471. weight: math.unit(140, "lb"),
  20472. name: "Front",
  20473. image: {
  20474. source: "./media/characters/doc-weardno/front.svg",
  20475. extra: 254 / 233
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Micro",
  20482. height: math.unit(3, "inches")
  20483. },
  20484. {
  20485. name: "Normal",
  20486. height: math.unit(5 + 7 / 12, "feet"),
  20487. default: true
  20488. },
  20489. {
  20490. name: "Macro",
  20491. height: math.unit(25, "feet")
  20492. },
  20493. {
  20494. name: "Megamacro",
  20495. height: math.unit(2, "miles")
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20501. {
  20502. front: {
  20503. height: math.unit(6 + 2 / 12, "feet"),
  20504. weight: math.unit(153, "lb"),
  20505. name: "Front",
  20506. image: {
  20507. source: "./media/characters/seth-whilst/front.svg",
  20508. bottom: 0.07
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "Micro",
  20515. height: math.unit(5, "inches")
  20516. },
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(6 + 2 / 12, "feet"),
  20520. default: true
  20521. },
  20522. ]
  20523. ))
  20524. characterMakers.push(() => makeCharacter(
  20525. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20526. {
  20527. front: {
  20528. height: math.unit(3, "inches"),
  20529. weight: math.unit(8, "grams"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/pocket-jabari/front.svg",
  20533. extra: 1024 / 974,
  20534. bottom: 0.039
  20535. }
  20536. },
  20537. },
  20538. [
  20539. {
  20540. name: "Minimicro",
  20541. height: math.unit(8, "mm")
  20542. },
  20543. {
  20544. name: "Micro",
  20545. height: math.unit(3, "inches"),
  20546. default: true
  20547. },
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(3, "feet")
  20551. },
  20552. ]
  20553. ))
  20554. characterMakers.push(() => makeCharacter(
  20555. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20556. {
  20557. frontDressed: {
  20558. height: math.unit(15, "feet"),
  20559. weight: math.unit(3280, "lb"),
  20560. name: "Front (Dressed)",
  20561. image: {
  20562. source: "./media/characters/sapphy/front-dressed.svg",
  20563. extra: 1951/1654,
  20564. bottom: 194/2145
  20565. },
  20566. form: "anthro",
  20567. default: true
  20568. },
  20569. backDressed: {
  20570. height: math.unit(15, "feet"),
  20571. weight: math.unit(3280, "lb"),
  20572. name: "Back (Dressed)",
  20573. image: {
  20574. source: "./media/characters/sapphy/back-dressed.svg",
  20575. extra: 2058/1918,
  20576. bottom: 125/2183
  20577. },
  20578. form: "anthro"
  20579. },
  20580. frontNude: {
  20581. height: math.unit(15, "feet"),
  20582. weight: math.unit(3280, "lb"),
  20583. name: "Front (Nude)",
  20584. image: {
  20585. source: "./media/characters/sapphy/front-nude.svg",
  20586. extra: 1951/1654,
  20587. bottom: 194/2145
  20588. },
  20589. form: "anthro"
  20590. },
  20591. backNude: {
  20592. height: math.unit(15, "feet"),
  20593. weight: math.unit(3280, "lb"),
  20594. name: "Back (Nude)",
  20595. image: {
  20596. source: "./media/characters/sapphy/back-nude.svg",
  20597. extra: 2058/1918,
  20598. bottom: 125/2183
  20599. },
  20600. form: "anthro"
  20601. },
  20602. full: {
  20603. height: math.unit(15, "feet"),
  20604. weight: math.unit(3280, "lb"),
  20605. name: "Full",
  20606. image: {
  20607. source: "./media/characters/sapphy/full.svg",
  20608. extra: 1396/1317,
  20609. bottom: 44/1440
  20610. },
  20611. form: "anthro"
  20612. },
  20613. dick: {
  20614. height: math.unit(3.8, "feet"),
  20615. name: "Dick",
  20616. image: {
  20617. source: "./media/characters/sapphy/dick.svg"
  20618. },
  20619. form: "anthro"
  20620. },
  20621. feral: {
  20622. height: math.unit(35, "feet"),
  20623. weight: math.unit(160, "tons"),
  20624. name: "Feral",
  20625. image: {
  20626. source: "./media/characters/sapphy/feral.svg",
  20627. extra: 1050/573,
  20628. bottom: 60/1110
  20629. },
  20630. form: "feral",
  20631. default: true
  20632. },
  20633. },
  20634. [
  20635. {
  20636. name: "Normal",
  20637. height: math.unit(15, "feet"),
  20638. form: "anthro"
  20639. },
  20640. {
  20641. name: "Casual Macro",
  20642. height: math.unit(120, "feet"),
  20643. form: "anthro"
  20644. },
  20645. {
  20646. name: "Macro",
  20647. height: math.unit(2150, "feet"),
  20648. default: true,
  20649. form: "anthro"
  20650. },
  20651. {
  20652. name: "Megamacro",
  20653. height: math.unit(8, "miles"),
  20654. form: "anthro"
  20655. },
  20656. {
  20657. name: "Galaxy Mom",
  20658. height: math.unit(6, "megalightyears"),
  20659. form: "anthro"
  20660. },
  20661. {
  20662. name: "Normal",
  20663. height: math.unit(35, "feet"),
  20664. form: "feral",
  20665. default: true
  20666. },
  20667. {
  20668. name: "Macro",
  20669. height: math.unit(300, "feet"),
  20670. form: "feral"
  20671. },
  20672. {
  20673. name: "Galaxy Mom",
  20674. height: math.unit(10, "megalightyears"),
  20675. form: "feral"
  20676. },
  20677. ],
  20678. {
  20679. "anthro": {
  20680. name: "Anthro",
  20681. default: true
  20682. },
  20683. "feral": {
  20684. name: "Feral"
  20685. }
  20686. }
  20687. ))
  20688. characterMakers.push(() => makeCharacter(
  20689. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20690. {
  20691. hyenaFront: {
  20692. height: math.unit(6, "feet"),
  20693. weight: math.unit(190, "lb"),
  20694. name: "Front",
  20695. image: {
  20696. source: "./media/characters/kiro/hyena-front.svg",
  20697. extra: 927/839,
  20698. bottom: 91/1018
  20699. },
  20700. form: "hyena",
  20701. default: true
  20702. },
  20703. front: {
  20704. height: math.unit(6, "feet"),
  20705. weight: math.unit(170, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/kiro/front.svg",
  20709. extra: 1064 / 1012,
  20710. bottom: 0.052
  20711. },
  20712. form: "folf",
  20713. default: true
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Micro",
  20719. height: math.unit(6, "inches"),
  20720. form: "folf"
  20721. },
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(6, "feet"),
  20725. form: "folf",
  20726. default: true
  20727. },
  20728. {
  20729. name: "Macro",
  20730. height: math.unit(72, "feet"),
  20731. form: "folf"
  20732. },
  20733. {
  20734. name: "Micro",
  20735. height: math.unit(6, "inches"),
  20736. form: "hyena"
  20737. },
  20738. {
  20739. name: "Normal",
  20740. height: math.unit(6, "feet"),
  20741. form: "hyena",
  20742. default: true
  20743. },
  20744. {
  20745. name: "Macro",
  20746. height: math.unit(72, "feet"),
  20747. form: "hyena"
  20748. },
  20749. ],
  20750. {
  20751. "hyena": {
  20752. name: "Hyena",
  20753. default: true
  20754. },
  20755. "folf": {
  20756. name: "Folf",
  20757. },
  20758. }
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20762. {
  20763. front: {
  20764. height: math.unit(5 + 9 / 12, "feet"),
  20765. weight: math.unit(175, "lb"),
  20766. name: "Front",
  20767. image: {
  20768. source: "./media/characters/irishfox/front.svg",
  20769. extra: 1912 / 1680,
  20770. bottom: 0.02
  20771. }
  20772. },
  20773. },
  20774. [
  20775. {
  20776. name: "Nano",
  20777. height: math.unit(1, "mm")
  20778. },
  20779. {
  20780. name: "Micro",
  20781. height: math.unit(2, "inches")
  20782. },
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(5 + 9 / 12, "feet"),
  20786. default: true
  20787. },
  20788. {
  20789. name: "Macro",
  20790. height: math.unit(45, "feet")
  20791. },
  20792. ]
  20793. ))
  20794. characterMakers.push(() => makeCharacter(
  20795. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20796. {
  20797. front: {
  20798. height: math.unit(6 + 1 / 12, "feet"),
  20799. weight: math.unit(75, "lb"),
  20800. name: "Front",
  20801. image: {
  20802. source: "./media/characters/aronai-sieyes/front.svg",
  20803. extra: 1532/1450,
  20804. bottom: 42/1574
  20805. }
  20806. },
  20807. side: {
  20808. height: math.unit(6 + 1 / 12, "feet"),
  20809. weight: math.unit(75, "lb"),
  20810. name: "Side",
  20811. image: {
  20812. source: "./media/characters/aronai-sieyes/side.svg",
  20813. extra: 1422/1365,
  20814. bottom: 148/1570
  20815. }
  20816. },
  20817. back: {
  20818. height: math.unit(6 + 1 / 12, "feet"),
  20819. weight: math.unit(75, "lb"),
  20820. name: "Back",
  20821. image: {
  20822. source: "./media/characters/aronai-sieyes/back.svg",
  20823. extra: 1526/1464,
  20824. bottom: 51/1577
  20825. }
  20826. },
  20827. dressed: {
  20828. height: math.unit(6 + 1 / 12, "feet"),
  20829. weight: math.unit(75, "lb"),
  20830. name: "Dressed",
  20831. image: {
  20832. source: "./media/characters/aronai-sieyes/dressed.svg",
  20833. extra: 1559/1483,
  20834. bottom: 39/1598
  20835. }
  20836. },
  20837. slit: {
  20838. height: math.unit(1.3, "feet"),
  20839. name: "Slit",
  20840. image: {
  20841. source: "./media/characters/aronai-sieyes/slit.svg"
  20842. }
  20843. },
  20844. slitSpread: {
  20845. height: math.unit(0.9, "feet"),
  20846. name: "Slit (Spread)",
  20847. image: {
  20848. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20849. }
  20850. },
  20851. rump: {
  20852. height: math.unit(1.3, "feet"),
  20853. name: "Rump",
  20854. image: {
  20855. source: "./media/characters/aronai-sieyes/rump.svg"
  20856. }
  20857. },
  20858. maw: {
  20859. height: math.unit(1.25, "feet"),
  20860. name: "Maw",
  20861. image: {
  20862. source: "./media/characters/aronai-sieyes/maw.svg"
  20863. }
  20864. },
  20865. feral: {
  20866. height: math.unit(18, "feet"),
  20867. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20868. name: "Feral",
  20869. image: {
  20870. source: "./media/characters/aronai-sieyes/feral.svg",
  20871. extra: 1530 / 1240,
  20872. bottom: 0.035
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Micro",
  20879. height: math.unit(2, "inches")
  20880. },
  20881. {
  20882. name: "Normal",
  20883. height: math.unit(6 + 1 / 12, "feet"),
  20884. default: true
  20885. }
  20886. ]
  20887. ))
  20888. characterMakers.push(() => makeCharacter(
  20889. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20890. {
  20891. front: {
  20892. height: math.unit(12, "feet"),
  20893. weight: math.unit(410, "kg"),
  20894. name: "Front",
  20895. image: {
  20896. source: "./media/characters/xuna/front.svg",
  20897. extra: 2184 / 1980
  20898. }
  20899. },
  20900. side: {
  20901. height: math.unit(12, "feet"),
  20902. weight: math.unit(410, "kg"),
  20903. name: "Side",
  20904. image: {
  20905. source: "./media/characters/xuna/side.svg",
  20906. extra: 2184 / 1980
  20907. }
  20908. },
  20909. back: {
  20910. height: math.unit(12, "feet"),
  20911. weight: math.unit(410, "kg"),
  20912. name: "Back",
  20913. image: {
  20914. source: "./media/characters/xuna/back.svg",
  20915. extra: 2184 / 1980
  20916. }
  20917. },
  20918. },
  20919. [
  20920. {
  20921. name: "Nano glow",
  20922. height: math.unit(10, "nm")
  20923. },
  20924. {
  20925. name: "Micro floof",
  20926. height: math.unit(0.3, "m")
  20927. },
  20928. {
  20929. name: "Huggable softy boi",
  20930. height: math.unit(3.6576, "m"),
  20931. default: true
  20932. },
  20933. {
  20934. name: "Admirable floof",
  20935. height: math.unit(80, "meters")
  20936. },
  20937. {
  20938. name: "Gentle macro",
  20939. height: math.unit(300, "meters")
  20940. },
  20941. {
  20942. name: "Very careful floof",
  20943. height: math.unit(3200, "meters")
  20944. },
  20945. {
  20946. name: "The mega floof",
  20947. height: math.unit(36000, "meters")
  20948. },
  20949. {
  20950. name: "Giga-fur-Wicker",
  20951. height: math.unit(4800000, "meters")
  20952. },
  20953. {
  20954. name: "Licky world",
  20955. height: math.unit(20000000, "meters")
  20956. },
  20957. {
  20958. name: "Floofy cyan sun",
  20959. height: math.unit(1500000000, "meters")
  20960. },
  20961. {
  20962. name: "Milky Wicker",
  20963. height: math.unit(1000000000000000000000, "meters")
  20964. },
  20965. {
  20966. name: "The observing Wicker",
  20967. height: math.unit(999999999999999999999999999, "meters")
  20968. },
  20969. ]
  20970. ))
  20971. characterMakers.push(() => makeCharacter(
  20972. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20973. {
  20974. front: {
  20975. height: math.unit(5 + 9 / 12, "feet"),
  20976. weight: math.unit(150, "lb"),
  20977. name: "Front",
  20978. image: {
  20979. source: "./media/characters/arokha-sieyes/front.svg",
  20980. extra: 1425 / 1284,
  20981. bottom: 0.05
  20982. }
  20983. },
  20984. },
  20985. [
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(5 + 9 / 12, "feet")
  20989. },
  20990. {
  20991. name: "Macro",
  20992. height: math.unit(30, "meters"),
  20993. default: true
  20994. },
  20995. ]
  20996. ))
  20997. characterMakers.push(() => makeCharacter(
  20998. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20999. {
  21000. front: {
  21001. height: math.unit(6, "feet"),
  21002. weight: math.unit(180, "lb"),
  21003. name: "Front",
  21004. image: {
  21005. source: "./media/characters/arokh-sieyes/front.svg",
  21006. extra: 1830 / 1769,
  21007. bottom: 0.01
  21008. }
  21009. },
  21010. },
  21011. [
  21012. {
  21013. name: "Normal",
  21014. height: math.unit(6, "feet")
  21015. },
  21016. {
  21017. name: "Macro",
  21018. height: math.unit(30, "meters"),
  21019. default: true
  21020. },
  21021. ]
  21022. ))
  21023. characterMakers.push(() => makeCharacter(
  21024. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21025. {
  21026. side: {
  21027. height: math.unit(13 + 1 / 12, "feet"),
  21028. weight: math.unit(8.5, "tonnes"),
  21029. preyCapacity: math.unit(36, "people"),
  21030. name: "Side",
  21031. image: {
  21032. source: "./media/characters/goldeneye/side.svg",
  21033. extra: 1139/741,
  21034. bottom: 98/1237
  21035. }
  21036. },
  21037. front: {
  21038. height: math.unit(5.1, "feet"),
  21039. weight: math.unit(8.5, "tonnes"),
  21040. preyCapacity: math.unit(36, "people"),
  21041. name: "Front",
  21042. image: {
  21043. source: "./media/characters/goldeneye/front.svg",
  21044. extra: 635/365,
  21045. bottom: 598/1233
  21046. }
  21047. },
  21048. maw: {
  21049. height: math.unit(6.6, "feet"),
  21050. name: "Maw",
  21051. image: {
  21052. source: "./media/characters/goldeneye/maw.svg"
  21053. }
  21054. },
  21055. headFront: {
  21056. height: math.unit(8, "feet"),
  21057. name: "Head (Front)",
  21058. image: {
  21059. source: "./media/characters/goldeneye/head-front.svg"
  21060. }
  21061. },
  21062. headSide: {
  21063. height: math.unit(6, "feet"),
  21064. name: "Head (Side)",
  21065. image: {
  21066. source: "./media/characters/goldeneye/head-side.svg"
  21067. }
  21068. },
  21069. headBack: {
  21070. height: math.unit(8, "feet"),
  21071. name: "Head (Back)",
  21072. image: {
  21073. source: "./media/characters/goldeneye/head-back.svg"
  21074. }
  21075. },
  21076. paw: {
  21077. height: math.unit(3.4, "feet"),
  21078. name: "Paw",
  21079. image: {
  21080. source: "./media/characters/goldeneye/paw.svg"
  21081. }
  21082. },
  21083. toering: {
  21084. height: math.unit(0.45, "feet"),
  21085. name: "Toering",
  21086. image: {
  21087. source: "./media/characters/goldeneye/toering.svg"
  21088. }
  21089. },
  21090. eyes: {
  21091. height: math.unit(0.5, "feet"),
  21092. name: "Eyes",
  21093. image: {
  21094. source: "./media/characters/goldeneye/eyes.svg"
  21095. }
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(13 + 1 / 12, "feet"),
  21102. default: true
  21103. },
  21104. ]
  21105. ))
  21106. characterMakers.push(() => makeCharacter(
  21107. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21108. {
  21109. front: {
  21110. height: math.unit(6 + 1 / 12, "feet"),
  21111. weight: math.unit(210, "lb"),
  21112. name: "Front",
  21113. image: {
  21114. source: "./media/characters/leonardo-lycheborne/front.svg",
  21115. extra: 776/723,
  21116. bottom: 34/810
  21117. }
  21118. },
  21119. side: {
  21120. height: math.unit(6 + 1 / 12, "feet"),
  21121. weight: math.unit(210, "lb"),
  21122. name: "Side",
  21123. image: {
  21124. source: "./media/characters/leonardo-lycheborne/side.svg",
  21125. extra: 780/728,
  21126. bottom: 12/792
  21127. }
  21128. },
  21129. back: {
  21130. height: math.unit(6 + 1 / 12, "feet"),
  21131. weight: math.unit(210, "lb"),
  21132. name: "Back",
  21133. image: {
  21134. source: "./media/characters/leonardo-lycheborne/back.svg",
  21135. extra: 775/721,
  21136. bottom: 17/792
  21137. }
  21138. },
  21139. hand: {
  21140. height: math.unit(1.08, "feet"),
  21141. name: "Hand",
  21142. image: {
  21143. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21144. }
  21145. },
  21146. foot: {
  21147. height: math.unit(1.32, "feet"),
  21148. name: "Foot",
  21149. image: {
  21150. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21151. }
  21152. },
  21153. maw: {
  21154. height: math.unit(1, "feet"),
  21155. name: "Maw",
  21156. image: {
  21157. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21158. }
  21159. },
  21160. were: {
  21161. height: math.unit(20, "feet"),
  21162. weight: math.unit(7800, "lb"),
  21163. name: "Were",
  21164. image: {
  21165. source: "./media/characters/leonardo-lycheborne/were.svg",
  21166. extra: 1224/1165,
  21167. bottom: 72/1296
  21168. }
  21169. },
  21170. feral: {
  21171. height: math.unit(7.5, "feet"),
  21172. weight: math.unit(600, "lb"),
  21173. name: "Feral",
  21174. image: {
  21175. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21176. extra: 797/702,
  21177. bottom: 139/936
  21178. }
  21179. },
  21180. taur: {
  21181. height: math.unit(11, "feet"),
  21182. weight: math.unit(3300, "lb"),
  21183. name: "Taur",
  21184. image: {
  21185. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21186. extra: 1271/1197,
  21187. bottom: 47/1318
  21188. }
  21189. },
  21190. barghest: {
  21191. height: math.unit(11, "feet"),
  21192. weight: math.unit(1300, "lb"),
  21193. name: "Barghest",
  21194. image: {
  21195. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21196. extra: 1291/1204,
  21197. bottom: 37/1328
  21198. }
  21199. },
  21200. dick: {
  21201. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21202. name: "Dick",
  21203. image: {
  21204. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21205. }
  21206. },
  21207. dickWere: {
  21208. height: math.unit((20) / 3.8, "feet"),
  21209. name: "Dick (Were)",
  21210. image: {
  21211. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21212. }
  21213. },
  21214. },
  21215. [
  21216. {
  21217. name: "Normal",
  21218. height: math.unit(6 + 1 / 12, "feet"),
  21219. default: true
  21220. },
  21221. ]
  21222. ))
  21223. characterMakers.push(() => makeCharacter(
  21224. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21225. {
  21226. front: {
  21227. height: math.unit(10, "feet"),
  21228. weight: math.unit(350, "lb"),
  21229. name: "Front",
  21230. image: {
  21231. source: "./media/characters/jet/front.svg",
  21232. extra: 2050 / 1980,
  21233. bottom: 0.013
  21234. }
  21235. },
  21236. back: {
  21237. height: math.unit(10, "feet"),
  21238. weight: math.unit(350, "lb"),
  21239. name: "Back",
  21240. image: {
  21241. source: "./media/characters/jet/back.svg",
  21242. extra: 2050 / 1980,
  21243. bottom: 0.013
  21244. }
  21245. },
  21246. },
  21247. [
  21248. {
  21249. name: "Micro",
  21250. height: math.unit(6, "inches")
  21251. },
  21252. {
  21253. name: "Normal",
  21254. height: math.unit(10, "feet"),
  21255. default: true
  21256. },
  21257. {
  21258. name: "Macro",
  21259. height: math.unit(100, "feet")
  21260. },
  21261. ]
  21262. ))
  21263. characterMakers.push(() => makeCharacter(
  21264. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21265. {
  21266. front: {
  21267. height: math.unit(15, "feet"),
  21268. weight: math.unit(2800, "lb"),
  21269. name: "Front",
  21270. image: {
  21271. source: "./media/characters/tanarath/front.svg",
  21272. extra: 2392 / 2220,
  21273. bottom: 0.03
  21274. }
  21275. },
  21276. back: {
  21277. height: math.unit(15, "feet"),
  21278. weight: math.unit(2800, "lb"),
  21279. name: "Back",
  21280. image: {
  21281. source: "./media/characters/tanarath/back.svg",
  21282. extra: 2392 / 2220,
  21283. bottom: 0.03
  21284. }
  21285. },
  21286. },
  21287. [
  21288. {
  21289. name: "Normal",
  21290. height: math.unit(15, "feet"),
  21291. default: true
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21297. {
  21298. front: {
  21299. height: math.unit(7 + 1 / 12, "feet"),
  21300. weight: math.unit(175, "lb"),
  21301. name: "Front",
  21302. image: {
  21303. source: "./media/characters/patty-cattybatty/front.svg",
  21304. extra: 908 / 874,
  21305. bottom: 0.025
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Micro",
  21312. height: math.unit(1, "inch")
  21313. },
  21314. {
  21315. name: "Normal",
  21316. height: math.unit(7 + 1 / 12, "feet")
  21317. },
  21318. {
  21319. name: "Mini Macro",
  21320. height: math.unit(155, "feet")
  21321. },
  21322. {
  21323. name: "Macro",
  21324. height: math.unit(1077, "feet")
  21325. },
  21326. {
  21327. name: "Mega Macro",
  21328. height: math.unit(47650, "feet"),
  21329. default: true
  21330. },
  21331. {
  21332. name: "Giga Macro",
  21333. height: math.unit(440, "miles")
  21334. },
  21335. {
  21336. name: "Tera Macro",
  21337. height: math.unit(8700, "miles")
  21338. },
  21339. {
  21340. name: "Planetary Macro",
  21341. height: math.unit(32700, "miles")
  21342. },
  21343. {
  21344. name: "Solar Macro",
  21345. height: math.unit(550000, "miles")
  21346. },
  21347. {
  21348. name: "Celestial Macro",
  21349. height: math.unit(2.5, "AU")
  21350. },
  21351. ]
  21352. ))
  21353. characterMakers.push(() => makeCharacter(
  21354. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21355. {
  21356. front: {
  21357. height: math.unit(4 + 5 / 12, "feet"),
  21358. weight: math.unit(90, "lb"),
  21359. name: "Front",
  21360. image: {
  21361. source: "./media/characters/cappu/front.svg",
  21362. extra: 1247 / 1152,
  21363. bottom: 0.012
  21364. }
  21365. },
  21366. },
  21367. [
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(4 + 5 / 12, "feet"),
  21371. default: true
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21377. {
  21378. frontDressed: {
  21379. height: math.unit(70, "cm"),
  21380. weight: math.unit(6, "kg"),
  21381. name: "Front (Dressed)",
  21382. image: {
  21383. source: "./media/characters/sebi/front-dressed.svg",
  21384. extra: 713.5 / 686.5,
  21385. bottom: 0.003
  21386. }
  21387. },
  21388. front: {
  21389. height: math.unit(70, "cm"),
  21390. weight: math.unit(5, "kg"),
  21391. name: "Front",
  21392. image: {
  21393. source: "./media/characters/sebi/front.svg",
  21394. extra: 713.5 / 686.5,
  21395. bottom: 0.003
  21396. }
  21397. }
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(70, "cm"),
  21403. default: true
  21404. },
  21405. {
  21406. name: "Macro",
  21407. height: math.unit(8, "meters")
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21413. {
  21414. front: {
  21415. height: math.unit(6, "feet"),
  21416. weight: math.unit(150, "lb"),
  21417. name: "Front",
  21418. image: {
  21419. source: "./media/characters/typhek/front.svg",
  21420. extra: 1948 / 1929,
  21421. bottom: 0.025
  21422. }
  21423. },
  21424. side: {
  21425. height: math.unit(6, "feet"),
  21426. weight: math.unit(150, "lb"),
  21427. name: "Side",
  21428. image: {
  21429. source: "./media/characters/typhek/side.svg",
  21430. extra: 2034 / 2010,
  21431. bottom: 0.003
  21432. }
  21433. },
  21434. back: {
  21435. height: math.unit(6, "feet"),
  21436. weight: math.unit(150, "lb"),
  21437. name: "Back",
  21438. image: {
  21439. source: "./media/characters/typhek/back.svg",
  21440. extra: 2005 / 1978,
  21441. bottom: 0.004
  21442. }
  21443. },
  21444. palm: {
  21445. height: math.unit(1.2, "feet"),
  21446. name: "Palm",
  21447. image: {
  21448. source: "./media/characters/typhek/palm.svg"
  21449. }
  21450. },
  21451. fist: {
  21452. height: math.unit(1.1, "feet"),
  21453. name: "Fist",
  21454. image: {
  21455. source: "./media/characters/typhek/fist.svg"
  21456. }
  21457. },
  21458. foot: {
  21459. height: math.unit(1.57, "feet"),
  21460. name: "Foot",
  21461. image: {
  21462. source: "./media/characters/typhek/foot.svg"
  21463. }
  21464. },
  21465. sole: {
  21466. height: math.unit(2.05, "feet"),
  21467. name: "Sole",
  21468. image: {
  21469. source: "./media/characters/typhek/sole.svg"
  21470. }
  21471. },
  21472. },
  21473. [
  21474. {
  21475. name: "Macro",
  21476. height: math.unit(40, "stories"),
  21477. default: true
  21478. },
  21479. {
  21480. name: "Megamacro",
  21481. height: math.unit(1, "mile")
  21482. },
  21483. {
  21484. name: "Gigamacro",
  21485. height: math.unit(4000, "solarradii")
  21486. },
  21487. {
  21488. name: "Universal",
  21489. height: math.unit(1.1, "universes")
  21490. }
  21491. ]
  21492. ))
  21493. characterMakers.push(() => makeCharacter(
  21494. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21495. {
  21496. side: {
  21497. height: math.unit(5 + 7 / 12, "feet"),
  21498. weight: math.unit(150, "lb"),
  21499. name: "Side",
  21500. image: {
  21501. source: "./media/characters/kassy/side.svg",
  21502. extra: 1280 / 1225,
  21503. bottom: 0.002
  21504. }
  21505. },
  21506. front: {
  21507. height: math.unit(5 + 7 / 12, "feet"),
  21508. weight: math.unit(150, "lb"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/kassy/front.svg",
  21512. extra: 1280 / 1225,
  21513. bottom: 0.025
  21514. }
  21515. },
  21516. back: {
  21517. height: math.unit(5 + 7 / 12, "feet"),
  21518. weight: math.unit(150, "lb"),
  21519. name: "Back",
  21520. image: {
  21521. source: "./media/characters/kassy/back.svg",
  21522. extra: 1280 / 1225,
  21523. bottom: 0.002
  21524. }
  21525. },
  21526. foot: {
  21527. height: math.unit(1.266, "feet"),
  21528. name: "Foot",
  21529. image: {
  21530. source: "./media/characters/kassy/foot.svg"
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Normal",
  21537. height: math.unit(5 + 7 / 12, "feet")
  21538. },
  21539. {
  21540. name: "Macro",
  21541. height: math.unit(137, "feet"),
  21542. default: true
  21543. },
  21544. {
  21545. name: "Megamacro",
  21546. height: math.unit(1, "mile")
  21547. },
  21548. ]
  21549. ))
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21552. {
  21553. front: {
  21554. height: math.unit(6 + 1 / 12, "feet"),
  21555. weight: math.unit(200, "lb"),
  21556. name: "Front",
  21557. image: {
  21558. source: "./media/characters/neil/front.svg",
  21559. extra: 1326 / 1250,
  21560. bottom: 0.023
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "Normal",
  21567. height: math.unit(6 + 1 / 12, "feet"),
  21568. default: true
  21569. },
  21570. {
  21571. name: "Macro",
  21572. height: math.unit(200, "feet")
  21573. },
  21574. ]
  21575. ))
  21576. characterMakers.push(() => makeCharacter(
  21577. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21578. {
  21579. front: {
  21580. height: math.unit(5 + 9 / 12, "feet"),
  21581. weight: math.unit(190, "lb"),
  21582. name: "Front",
  21583. image: {
  21584. source: "./media/characters/atticus/front.svg",
  21585. extra: 2934 / 2785,
  21586. bottom: 0.025
  21587. }
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Normal",
  21593. height: math.unit(5 + 9 / 12, "feet"),
  21594. default: true
  21595. },
  21596. {
  21597. name: "Macro",
  21598. height: math.unit(180, "feet")
  21599. },
  21600. ]
  21601. ))
  21602. characterMakers.push(() => makeCharacter(
  21603. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21604. {
  21605. side: {
  21606. height: math.unit(9, "feet"),
  21607. weight: math.unit(650, "lb"),
  21608. name: "Side",
  21609. image: {
  21610. source: "./media/characters/milo/side.svg",
  21611. extra: 2644 / 2310,
  21612. bottom: 0.032
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(9, "feet"),
  21620. default: true
  21621. },
  21622. {
  21623. name: "Macro",
  21624. height: math.unit(300, "feet")
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21630. {
  21631. side: {
  21632. height: math.unit(8, "meters"),
  21633. weight: math.unit(90000, "kg"),
  21634. name: "Side",
  21635. image: {
  21636. source: "./media/characters/ijzer/side.svg",
  21637. extra: 2756 / 1600,
  21638. bottom: 0.01
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Small",
  21645. height: math.unit(3, "meters")
  21646. },
  21647. {
  21648. name: "Normal",
  21649. height: math.unit(8, "meters"),
  21650. default: true
  21651. },
  21652. {
  21653. name: "Normal+",
  21654. height: math.unit(10, "meters")
  21655. },
  21656. {
  21657. name: "Bigger",
  21658. height: math.unit(24, "meters")
  21659. },
  21660. {
  21661. name: "Huge",
  21662. height: math.unit(80, "meters")
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21668. {
  21669. front: {
  21670. height: math.unit(6 + 2 / 12, "feet"),
  21671. weight: math.unit(153, "lb"),
  21672. name: "Front",
  21673. image: {
  21674. source: "./media/characters/luca-cervicum/front.svg",
  21675. extra: 370 / 327,
  21676. bottom: 0.015
  21677. }
  21678. },
  21679. back: {
  21680. height: math.unit(6 + 2 / 12, "feet"),
  21681. weight: math.unit(153, "lb"),
  21682. name: "Back",
  21683. image: {
  21684. source: "./media/characters/luca-cervicum/back.svg",
  21685. extra: 367 / 333,
  21686. bottom: 0.005
  21687. }
  21688. },
  21689. frontGear: {
  21690. height: math.unit(6 + 2 / 12, "feet"),
  21691. weight: math.unit(173, "lb"),
  21692. name: "Front (Gear)",
  21693. image: {
  21694. source: "./media/characters/luca-cervicum/front-gear.svg",
  21695. extra: 377 / 333,
  21696. bottom: 0.006
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Normal",
  21703. height: math.unit(6 + 2 / 12, "feet"),
  21704. default: true
  21705. },
  21706. ]
  21707. ))
  21708. characterMakers.push(() => makeCharacter(
  21709. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21710. {
  21711. front: {
  21712. height: math.unit(6 + 1 / 12, "feet"),
  21713. weight: math.unit(304, "lb"),
  21714. name: "Front",
  21715. image: {
  21716. source: "./media/characters/oliver/front.svg",
  21717. extra: 157 / 143,
  21718. bottom: 0.08
  21719. }
  21720. },
  21721. },
  21722. [
  21723. {
  21724. name: "Normal",
  21725. height: math.unit(6 + 1 / 12, "feet"),
  21726. default: true
  21727. },
  21728. ]
  21729. ))
  21730. characterMakers.push(() => makeCharacter(
  21731. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21732. {
  21733. front: {
  21734. height: math.unit(5 + 7 / 12, "feet"),
  21735. weight: math.unit(140, "lb"),
  21736. name: "Front",
  21737. image: {
  21738. source: "./media/characters/shane/front.svg",
  21739. extra: 304 / 289,
  21740. bottom: 0.005
  21741. }
  21742. },
  21743. },
  21744. [
  21745. {
  21746. name: "Normal",
  21747. height: math.unit(5 + 7 / 12, "feet"),
  21748. default: true
  21749. },
  21750. ]
  21751. ))
  21752. characterMakers.push(() => makeCharacter(
  21753. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21754. {
  21755. front: {
  21756. height: math.unit(5 + 9 / 12, "feet"),
  21757. weight: math.unit(178, "lb"),
  21758. name: "Front",
  21759. image: {
  21760. source: "./media/characters/shin/front.svg",
  21761. extra: 159 / 151,
  21762. bottom: 0.015
  21763. }
  21764. },
  21765. },
  21766. [
  21767. {
  21768. name: "Normal",
  21769. height: math.unit(5 + 9 / 12, "feet"),
  21770. default: true
  21771. },
  21772. ]
  21773. ))
  21774. characterMakers.push(() => makeCharacter(
  21775. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21776. {
  21777. front: {
  21778. height: math.unit(5 + 10 / 12, "feet"),
  21779. weight: math.unit(168, "lb"),
  21780. name: "Front",
  21781. image: {
  21782. source: "./media/characters/xerxes/front.svg",
  21783. extra: 282 / 260,
  21784. bottom: 0.045
  21785. }
  21786. },
  21787. },
  21788. [
  21789. {
  21790. name: "Normal",
  21791. height: math.unit(5 + 10 / 12, "feet"),
  21792. default: true
  21793. },
  21794. ]
  21795. ))
  21796. characterMakers.push(() => makeCharacter(
  21797. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21798. {
  21799. front: {
  21800. height: math.unit(6 + 7 / 12, "feet"),
  21801. weight: math.unit(208, "lb"),
  21802. name: "Front",
  21803. image: {
  21804. source: "./media/characters/chaska/front.svg",
  21805. extra: 332 / 319,
  21806. bottom: 0.015
  21807. }
  21808. },
  21809. },
  21810. [
  21811. {
  21812. name: "Normal",
  21813. height: math.unit(6 + 7 / 12, "feet"),
  21814. default: true
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21820. {
  21821. front: {
  21822. height: math.unit(5 + 8 / 12, "feet"),
  21823. weight: math.unit(208, "lb"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/enuk/front.svg",
  21827. extra: 437 / 406,
  21828. bottom: 0.02
  21829. }
  21830. },
  21831. },
  21832. [
  21833. {
  21834. name: "Normal",
  21835. height: math.unit(5 + 8 / 12, "feet"),
  21836. default: true
  21837. },
  21838. ]
  21839. ))
  21840. characterMakers.push(() => makeCharacter(
  21841. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21842. {
  21843. front: {
  21844. height: math.unit(5 + 10 / 12, "feet"),
  21845. weight: math.unit(252, "lb"),
  21846. name: "Front",
  21847. image: {
  21848. source: "./media/characters/bruun/front.svg",
  21849. extra: 197 / 187,
  21850. bottom: 0.012
  21851. }
  21852. },
  21853. },
  21854. [
  21855. {
  21856. name: "Normal",
  21857. height: math.unit(5 + 10 / 12, "feet"),
  21858. default: true
  21859. },
  21860. ]
  21861. ))
  21862. characterMakers.push(() => makeCharacter(
  21863. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21864. {
  21865. front: {
  21866. height: math.unit(6 + 10 / 12, "feet"),
  21867. weight: math.unit(255, "lb"),
  21868. name: "Front",
  21869. image: {
  21870. source: "./media/characters/alexeev/front.svg",
  21871. extra: 213 / 200,
  21872. bottom: 0.05
  21873. }
  21874. },
  21875. },
  21876. [
  21877. {
  21878. name: "Normal",
  21879. height: math.unit(6 + 10 / 12, "feet"),
  21880. default: true
  21881. },
  21882. ]
  21883. ))
  21884. characterMakers.push(() => makeCharacter(
  21885. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21886. {
  21887. front: {
  21888. height: math.unit(2 + 8 / 12, "feet"),
  21889. weight: math.unit(22, "lb"),
  21890. name: "Front",
  21891. image: {
  21892. source: "./media/characters/evelyn/front.svg",
  21893. extra: 208 / 180
  21894. }
  21895. },
  21896. },
  21897. [
  21898. {
  21899. name: "Normal",
  21900. height: math.unit(2 + 8 / 12, "feet"),
  21901. default: true
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21907. {
  21908. front: {
  21909. height: math.unit(5 + 9 / 12, "feet"),
  21910. weight: math.unit(139, "lb"),
  21911. name: "Front",
  21912. image: {
  21913. source: "./media/characters/inca/front.svg",
  21914. extra: 294 / 291,
  21915. bottom: 0.03
  21916. }
  21917. },
  21918. },
  21919. [
  21920. {
  21921. name: "Normal",
  21922. height: math.unit(5 + 9 / 12, "feet"),
  21923. default: true
  21924. },
  21925. ]
  21926. ))
  21927. characterMakers.push(() => makeCharacter(
  21928. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21929. {
  21930. front: {
  21931. height: math.unit(6 + 3 / 12, "feet"),
  21932. weight: math.unit(185, "lb"),
  21933. name: "Front",
  21934. image: {
  21935. source: "./media/characters/mera/front.svg",
  21936. extra: 291 / 277,
  21937. bottom: 0.03
  21938. }
  21939. },
  21940. },
  21941. [
  21942. {
  21943. name: "Normal",
  21944. height: math.unit(6 + 3 / 12, "feet"),
  21945. default: true
  21946. },
  21947. ]
  21948. ))
  21949. characterMakers.push(() => makeCharacter(
  21950. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21951. {
  21952. front: {
  21953. height: math.unit(6 + 7 / 12, "feet"),
  21954. weight: math.unit(160, "lb"),
  21955. name: "Front",
  21956. image: {
  21957. source: "./media/characters/ceres/front.svg",
  21958. extra: 1023 / 950,
  21959. bottom: 0.027
  21960. }
  21961. },
  21962. back: {
  21963. height: math.unit(6 + 7 / 12, "feet"),
  21964. weight: math.unit(160, "lb"),
  21965. name: "Back",
  21966. image: {
  21967. source: "./media/characters/ceres/back.svg",
  21968. extra: 1023 / 950
  21969. }
  21970. },
  21971. },
  21972. [
  21973. {
  21974. name: "Normal",
  21975. height: math.unit(6 + 7 / 12, "feet"),
  21976. default: true
  21977. },
  21978. ]
  21979. ))
  21980. characterMakers.push(() => makeCharacter(
  21981. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21982. {
  21983. front: {
  21984. height: math.unit(5 + 10 / 12, "feet"),
  21985. weight: math.unit(150, "lb"),
  21986. name: "Front",
  21987. image: {
  21988. source: "./media/characters/kris/front.svg",
  21989. extra: 885 / 803,
  21990. bottom: 0.03
  21991. }
  21992. },
  21993. },
  21994. [
  21995. {
  21996. name: "Normal",
  21997. height: math.unit(5 + 10 / 12, "feet"),
  21998. default: true
  21999. },
  22000. ]
  22001. ))
  22002. characterMakers.push(() => makeCharacter(
  22003. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22004. {
  22005. dragon_front: {
  22006. height: math.unit(5, "feet"),
  22007. name: "Front",
  22008. image: {
  22009. source: "./media/characters/taluthus/dragon-front.svg",
  22010. extra: 1203/1098,
  22011. bottom: 46/1249
  22012. },
  22013. form: "dragon",
  22014. default: true
  22015. },
  22016. dragon_maw: {
  22017. height: math.unit(2.35, "feet"),
  22018. name: "Maw",
  22019. image: {
  22020. source: "./media/characters/taluthus/dragon-maw.svg"
  22021. },
  22022. form: "dragon",
  22023. },
  22024. kitsune_front: {
  22025. height: math.unit(7, "feet"),
  22026. name: "Front",
  22027. image: {
  22028. source: "./media/characters/taluthus/kitsune-front.svg",
  22029. extra: 900/841,
  22030. bottom: 65/965
  22031. },
  22032. form: "kitsune",
  22033. default: true
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(5, "feet"),
  22040. form: "dragon",
  22041. default: true,
  22042. },
  22043. {
  22044. name: "Normal",
  22045. height: math.unit(7, "feet"),
  22046. form: "kitsune",
  22047. default: true
  22048. },
  22049. {
  22050. name: "Macro",
  22051. height: math.unit(300, "feet"),
  22052. allForms: true
  22053. },
  22054. ],
  22055. {
  22056. "dragon": {
  22057. name: "Dragon",
  22058. default: true
  22059. },
  22060. "kitsune": {
  22061. name: "Kitsune",
  22062. },
  22063. }
  22064. ))
  22065. characterMakers.push(() => makeCharacter(
  22066. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22067. {
  22068. front: {
  22069. height: math.unit(5 + 9 / 12, "feet"),
  22070. weight: math.unit(145, "lb"),
  22071. name: "Front",
  22072. image: {
  22073. source: "./media/characters/dawn/front.svg",
  22074. extra: 2094 / 2016,
  22075. bottom: 0.025
  22076. }
  22077. },
  22078. back: {
  22079. height: math.unit(5 + 9 / 12, "feet"),
  22080. weight: math.unit(160, "lb"),
  22081. name: "Back",
  22082. image: {
  22083. source: "./media/characters/dawn/back.svg",
  22084. extra: 2112 / 2080,
  22085. bottom: 0.005
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Normal",
  22092. height: math.unit(6 + 7 / 12, "feet"),
  22093. default: true
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22099. {
  22100. anthro: {
  22101. height: math.unit(8 + 3 / 12, "feet"),
  22102. weight: math.unit(450, "lb"),
  22103. name: "Anthro",
  22104. image: {
  22105. source: "./media/characters/arador/anthro.svg",
  22106. extra: 1835 / 1718,
  22107. bottom: 0.025
  22108. }
  22109. },
  22110. feral: {
  22111. height: math.unit(4, "feet"),
  22112. weight: math.unit(200, "lb"),
  22113. name: "Feral",
  22114. image: {
  22115. source: "./media/characters/arador/feral.svg",
  22116. extra: 1683 / 1514,
  22117. bottom: 0.07
  22118. }
  22119. },
  22120. },
  22121. [
  22122. {
  22123. name: "Normal",
  22124. height: math.unit(8 + 3 / 12, "feet")
  22125. },
  22126. {
  22127. name: "Macro",
  22128. height: math.unit(82.5, "feet"),
  22129. default: true
  22130. },
  22131. ]
  22132. ))
  22133. characterMakers.push(() => makeCharacter(
  22134. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22135. {
  22136. front: {
  22137. height: math.unit(5 + 10 / 12, "feet"),
  22138. weight: math.unit(125, "lb"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/dharsi/front.svg",
  22142. extra: 716 / 630,
  22143. bottom: 0.035
  22144. }
  22145. },
  22146. },
  22147. [
  22148. {
  22149. name: "Nano",
  22150. height: math.unit(100, "nm")
  22151. },
  22152. {
  22153. name: "Micro",
  22154. height: math.unit(2, "inches")
  22155. },
  22156. {
  22157. name: "Normal",
  22158. height: math.unit(5 + 10 / 12, "feet"),
  22159. default: true
  22160. },
  22161. {
  22162. name: "Macro",
  22163. height: math.unit(1000, "feet")
  22164. },
  22165. {
  22166. name: "Megamacro",
  22167. height: math.unit(10, "miles")
  22168. },
  22169. {
  22170. name: "Gigamacro",
  22171. height: math.unit(3000, "miles")
  22172. },
  22173. {
  22174. name: "Teramacro",
  22175. height: math.unit(500000, "miles")
  22176. },
  22177. {
  22178. name: "Teramacro+",
  22179. height: math.unit(30, "galaxies")
  22180. },
  22181. ]
  22182. ))
  22183. characterMakers.push(() => makeCharacter(
  22184. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22185. {
  22186. front: {
  22187. height: math.unit(6, "feet"),
  22188. weight: math.unit(150, "lb"),
  22189. name: "Front",
  22190. image: {
  22191. source: "./media/characters/deathy/front.svg",
  22192. extra: 1552 / 1463,
  22193. bottom: 0.025
  22194. }
  22195. },
  22196. side: {
  22197. height: math.unit(6, "feet"),
  22198. weight: math.unit(150, "lb"),
  22199. name: "Side",
  22200. image: {
  22201. source: "./media/characters/deathy/side.svg",
  22202. extra: 1604 / 1455,
  22203. bottom: 0.025
  22204. }
  22205. },
  22206. back: {
  22207. height: math.unit(6, "feet"),
  22208. weight: math.unit(150, "lb"),
  22209. name: "Back",
  22210. image: {
  22211. source: "./media/characters/deathy/back.svg",
  22212. extra: 1580 / 1463,
  22213. bottom: 0.005
  22214. }
  22215. },
  22216. },
  22217. [
  22218. {
  22219. name: "Micro",
  22220. height: math.unit(5, "millimeters")
  22221. },
  22222. {
  22223. name: "Normal",
  22224. height: math.unit(6 + 5 / 12, "feet"),
  22225. default: true
  22226. },
  22227. ]
  22228. ))
  22229. characterMakers.push(() => makeCharacter(
  22230. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22231. {
  22232. front: {
  22233. height: math.unit(16, "feet"),
  22234. weight: math.unit(4000, "lb"),
  22235. name: "Front",
  22236. image: {
  22237. source: "./media/characters/juniper/front.svg",
  22238. bottom: 0.04
  22239. }
  22240. },
  22241. },
  22242. [
  22243. {
  22244. name: "Normal",
  22245. height: math.unit(16, "feet"),
  22246. default: true
  22247. },
  22248. ]
  22249. ))
  22250. characterMakers.push(() => makeCharacter(
  22251. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22252. {
  22253. front: {
  22254. height: math.unit(6, "feet"),
  22255. weight: math.unit(150, "lb"),
  22256. name: "Front",
  22257. image: {
  22258. source: "./media/characters/hipster/front.svg",
  22259. extra: 1312 / 1209,
  22260. bottom: 0.025
  22261. }
  22262. },
  22263. back: {
  22264. height: math.unit(6, "feet"),
  22265. weight: math.unit(150, "lb"),
  22266. name: "Back",
  22267. image: {
  22268. source: "./media/characters/hipster/back.svg",
  22269. extra: 1281 / 1196,
  22270. bottom: 0.01
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Micro",
  22277. height: math.unit(1, "mm")
  22278. },
  22279. {
  22280. name: "Normal",
  22281. height: math.unit(4, "inches"),
  22282. default: true
  22283. },
  22284. {
  22285. name: "Macro",
  22286. height: math.unit(500, "feet")
  22287. },
  22288. {
  22289. name: "Megamacro",
  22290. height: math.unit(1000, "miles")
  22291. },
  22292. ]
  22293. ))
  22294. characterMakers.push(() => makeCharacter(
  22295. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22296. {
  22297. front: {
  22298. height: math.unit(6, "feet"),
  22299. weight: math.unit(150, "lb"),
  22300. name: "Front",
  22301. image: {
  22302. source: "./media/characters/tendirmuldr/front.svg",
  22303. extra: 1878 / 1772,
  22304. bottom: 0.015
  22305. }
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Megamacro",
  22311. height: math.unit(1500, "miles"),
  22312. default: true
  22313. },
  22314. ]
  22315. ))
  22316. characterMakers.push(() => makeCharacter(
  22317. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22318. {
  22319. front: {
  22320. height: math.unit(14, "feet"),
  22321. weight: math.unit(12000, "lb"),
  22322. name: "Front",
  22323. image: {
  22324. source: "./media/characters/mort/front.svg",
  22325. extra: 365 / 318,
  22326. bottom: 0.01
  22327. }
  22328. },
  22329. side: {
  22330. height: math.unit(14, "feet"),
  22331. weight: math.unit(12000, "lb"),
  22332. name: "Side",
  22333. image: {
  22334. source: "./media/characters/mort/side.svg",
  22335. extra: 365 / 318,
  22336. bottom: 0.052
  22337. },
  22338. default: true
  22339. },
  22340. back: {
  22341. height: math.unit(14, "feet"),
  22342. weight: math.unit(12000, "lb"),
  22343. name: "Back",
  22344. image: {
  22345. source: "./media/characters/mort/back.svg",
  22346. extra: 371 / 332,
  22347. bottom: 0.18
  22348. }
  22349. },
  22350. },
  22351. [
  22352. {
  22353. name: "Normal",
  22354. height: math.unit(14, "feet"),
  22355. default: true
  22356. },
  22357. ]
  22358. ))
  22359. characterMakers.push(() => makeCharacter(
  22360. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22361. {
  22362. front: {
  22363. height: math.unit(8, "feet"),
  22364. weight: math.unit(1, "ton"),
  22365. name: "Front",
  22366. image: {
  22367. source: "./media/characters/lycoa/front.svg",
  22368. extra: 1836/1728,
  22369. bottom: 81/1917
  22370. }
  22371. },
  22372. back: {
  22373. height: math.unit(8, "feet"),
  22374. weight: math.unit(1, "ton"),
  22375. name: "Back",
  22376. image: {
  22377. source: "./media/characters/lycoa/back.svg",
  22378. extra: 1785/1720,
  22379. bottom: 91/1876
  22380. }
  22381. },
  22382. head: {
  22383. height: math.unit(1.6243, "feet"),
  22384. name: "Head",
  22385. image: {
  22386. source: "./media/characters/lycoa/head.svg",
  22387. extra: 1011/782,
  22388. bottom: 0/1011
  22389. }
  22390. },
  22391. tailmaw: {
  22392. height: math.unit(1.9, "feet"),
  22393. name: "Tailmaw",
  22394. image: {
  22395. source: "./media/characters/lycoa/tailmaw.svg"
  22396. }
  22397. },
  22398. tentacles: {
  22399. height: math.unit(2.1, "feet"),
  22400. name: "Tentacles",
  22401. image: {
  22402. source: "./media/characters/lycoa/tentacles.svg"
  22403. }
  22404. },
  22405. dick: {
  22406. height: math.unit(1.73, "feet"),
  22407. name: "Dick",
  22408. image: {
  22409. source: "./media/characters/lycoa/dick.svg"
  22410. }
  22411. },
  22412. },
  22413. [
  22414. {
  22415. name: "Normal",
  22416. height: math.unit(8, "feet"),
  22417. default: true
  22418. },
  22419. {
  22420. name: "Macro",
  22421. height: math.unit(30, "feet")
  22422. },
  22423. ]
  22424. ))
  22425. characterMakers.push(() => makeCharacter(
  22426. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22427. {
  22428. front: {
  22429. height: math.unit(4 + 2 / 12, "feet"),
  22430. weight: math.unit(70, "lb"),
  22431. name: "Front",
  22432. image: {
  22433. source: "./media/characters/naldara/front.svg",
  22434. extra: 1664/1387,
  22435. bottom: 81/1745
  22436. },
  22437. form: "anthro",
  22438. default: true
  22439. },
  22440. naga: {
  22441. height: math.unit(20, "feet"),
  22442. weight: math.unit(15000, "kg"),
  22443. name: "Front",
  22444. image: {
  22445. source: "./media/characters/naldara/naga.svg",
  22446. extra: 1590/1396,
  22447. bottom: 285/1875
  22448. },
  22449. form: "naga",
  22450. default: true
  22451. },
  22452. },
  22453. [
  22454. {
  22455. name: "Normal",
  22456. height: math.unit(4 + 2 / 12, "feet"),
  22457. form: "anthro",
  22458. default: true
  22459. },
  22460. {
  22461. name: "Normal",
  22462. height: math.unit(20, "feet"),
  22463. form: "naga",
  22464. default: true
  22465. },
  22466. ],
  22467. {
  22468. "anthro": {
  22469. name: "Anthro",
  22470. default: true
  22471. },
  22472. "naga": {
  22473. name: "Naga"
  22474. }
  22475. }
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22479. {
  22480. front: {
  22481. height: math.unit(13 + 7 / 12, "feet"),
  22482. weight: math.unit(1500, "lb"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/briar/front.svg",
  22486. extra: 1223/1157,
  22487. bottom: 123/1346
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "Normal",
  22494. height: math.unit(13 + 7 / 12, "feet"),
  22495. default: true
  22496. },
  22497. ]
  22498. ))
  22499. characterMakers.push(() => makeCharacter(
  22500. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22501. {
  22502. side: {
  22503. height: math.unit(16, "feet"),
  22504. weight: math.unit(500, "lb"),
  22505. name: "Side",
  22506. image: {
  22507. source: "./media/characters/vanguard/side.svg",
  22508. extra: 1022/914,
  22509. bottom: 30/1052
  22510. }
  22511. },
  22512. sideAlt: {
  22513. height: math.unit(10, "feet"),
  22514. weight: math.unit(500, "lb"),
  22515. name: "Side (Alt)",
  22516. image: {
  22517. source: "./media/characters/vanguard/side-alt.svg",
  22518. extra: 502 / 425,
  22519. bottom: 0.087
  22520. }
  22521. },
  22522. },
  22523. [
  22524. {
  22525. name: "Normal",
  22526. height: math.unit(17.71, "feet"),
  22527. default: true
  22528. },
  22529. ]
  22530. ))
  22531. characterMakers.push(() => makeCharacter(
  22532. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22533. {
  22534. front: {
  22535. height: math.unit(7.5, "feet"),
  22536. weight: math.unit(2, "lb"),
  22537. name: "Front",
  22538. image: {
  22539. source: "./media/characters/artemis/work-safe-front.svg",
  22540. extra: 1192 / 1075,
  22541. bottom: 0.07
  22542. },
  22543. form: "work-safe",
  22544. default: true
  22545. },
  22546. frontNsfw: {
  22547. height: math.unit(7.5, "feet"),
  22548. weight: math.unit(2, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/artemis/calibrating-front.svg",
  22552. extra: 1192 / 1075,
  22553. bottom: 0.07
  22554. },
  22555. form: "calibrating",
  22556. default: true
  22557. },
  22558. frontNsfwer: {
  22559. height: math.unit(7.5, "feet"),
  22560. weight: math.unit(2, "lb"),
  22561. name: "Front",
  22562. image: {
  22563. source: "./media/characters/artemis/oversize-load-front.svg",
  22564. extra: 1192 / 1075,
  22565. bottom: 0.07
  22566. },
  22567. form: "oversize-load",
  22568. default: true
  22569. },
  22570. side: {
  22571. height: math.unit(7.5, "feet"),
  22572. weight: math.unit(2, "lb"),
  22573. name: "Side",
  22574. image: {
  22575. source: "./media/characters/artemis/work-safe-side.svg",
  22576. extra: 1192 / 1075,
  22577. bottom: 0.07
  22578. },
  22579. form: "work-safe"
  22580. },
  22581. sideNsfw: {
  22582. height: math.unit(7.5, "feet"),
  22583. weight: math.unit(2, "lb"),
  22584. name: "Side",
  22585. image: {
  22586. source: "./media/characters/artemis/calibrating-side.svg",
  22587. extra: 1192 / 1075,
  22588. bottom: 0.07
  22589. },
  22590. form: "calibrating"
  22591. },
  22592. sideNsfwer: {
  22593. height: math.unit(7.5, "feet"),
  22594. weight: math.unit(2, "lb"),
  22595. name: "Side",
  22596. image: {
  22597. source: "./media/characters/artemis/oversize-load-side.svg",
  22598. extra: 1192 / 1075,
  22599. bottom: 0.07
  22600. },
  22601. form: "oversize-load"
  22602. },
  22603. maw: {
  22604. height: math.unit(1.1, "feet"),
  22605. name: "Maw",
  22606. image: {
  22607. source: "./media/characters/artemis/maw.svg"
  22608. },
  22609. form: "work-safe"
  22610. },
  22611. stomach: {
  22612. height: math.unit(0.95, "feet"),
  22613. name: "Stomach",
  22614. image: {
  22615. source: "./media/characters/artemis/stomach.svg"
  22616. },
  22617. form: "work-safe"
  22618. },
  22619. dickCanine: {
  22620. height: math.unit(1, "feet"),
  22621. name: "Dick (Canine)",
  22622. image: {
  22623. source: "./media/characters/artemis/dick-canine.svg"
  22624. },
  22625. form: "calibrating"
  22626. },
  22627. dickEquine: {
  22628. height: math.unit(0.85, "feet"),
  22629. name: "Dick (Equine)",
  22630. image: {
  22631. source: "./media/characters/artemis/dick-equine.svg"
  22632. },
  22633. form: "calibrating"
  22634. },
  22635. dickExotic: {
  22636. height: math.unit(0.85, "feet"),
  22637. name: "Dick (Exotic)",
  22638. image: {
  22639. source: "./media/characters/artemis/dick-exotic.svg"
  22640. },
  22641. form: "calibrating"
  22642. },
  22643. dickCanineBigger: {
  22644. height: math.unit(1 * 1.33, "feet"),
  22645. name: "Dick (Canine)",
  22646. image: {
  22647. source: "./media/characters/artemis/dick-canine.svg"
  22648. },
  22649. form: "oversize-load"
  22650. },
  22651. dickEquineBigger: {
  22652. height: math.unit(0.85 * 1.33, "feet"),
  22653. name: "Dick (Equine)",
  22654. image: {
  22655. source: "./media/characters/artemis/dick-equine.svg"
  22656. },
  22657. form: "oversize-load"
  22658. },
  22659. dickExoticBigger: {
  22660. height: math.unit(0.85 * 1.33, "feet"),
  22661. name: "Dick (Exotic)",
  22662. image: {
  22663. source: "./media/characters/artemis/dick-exotic.svg"
  22664. },
  22665. form: "oversize-load"
  22666. },
  22667. },
  22668. [
  22669. {
  22670. name: "Normal",
  22671. height: math.unit(7.5, "feet"),
  22672. form: "work-safe",
  22673. default: true
  22674. },
  22675. {
  22676. name: "Normal",
  22677. height: math.unit(7.5, "feet"),
  22678. form: "calibrating",
  22679. default: true
  22680. },
  22681. {
  22682. name: "Normal",
  22683. height: math.unit(7.5, "feet"),
  22684. form: "oversize-load",
  22685. default: true
  22686. },
  22687. {
  22688. name: "Enlarged",
  22689. height: math.unit(12, "feet"),
  22690. form: "work-safe",
  22691. },
  22692. {
  22693. name: "Enlarged",
  22694. height: math.unit(12, "feet"),
  22695. form: "calibrating",
  22696. },
  22697. {
  22698. name: "Enlarged",
  22699. height: math.unit(12, "feet"),
  22700. form: "oversize-load",
  22701. },
  22702. ],
  22703. {
  22704. "work-safe": {
  22705. name: "Work-Safe",
  22706. default: true
  22707. },
  22708. "calibrating": {
  22709. name: "Calibrating"
  22710. },
  22711. "oversize-load": {
  22712. name: "Oversize Load"
  22713. }
  22714. }
  22715. ))
  22716. characterMakers.push(() => makeCharacter(
  22717. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22718. {
  22719. front: {
  22720. height: math.unit(5 + 3 / 12, "feet"),
  22721. weight: math.unit(160, "lb"),
  22722. name: "Front",
  22723. image: {
  22724. source: "./media/characters/kira/front.svg",
  22725. extra: 906 / 786,
  22726. bottom: 0.01
  22727. }
  22728. },
  22729. back: {
  22730. height: math.unit(5 + 3 / 12, "feet"),
  22731. weight: math.unit(160, "lb"),
  22732. name: "Back",
  22733. image: {
  22734. source: "./media/characters/kira/back.svg",
  22735. extra: 882 / 757,
  22736. bottom: 0.005
  22737. }
  22738. },
  22739. frontDressed: {
  22740. height: math.unit(5 + 3 / 12, "feet"),
  22741. weight: math.unit(160, "lb"),
  22742. name: "Front (Dressed)",
  22743. image: {
  22744. source: "./media/characters/kira/front-dressed.svg",
  22745. extra: 906 / 786,
  22746. bottom: 0.01
  22747. }
  22748. },
  22749. beans: {
  22750. height: math.unit(0.92, "feet"),
  22751. name: "Beans",
  22752. image: {
  22753. source: "./media/characters/kira/beans.svg"
  22754. }
  22755. },
  22756. },
  22757. [
  22758. {
  22759. name: "Normal",
  22760. height: math.unit(5 + 3 / 12, "feet"),
  22761. default: true
  22762. },
  22763. ]
  22764. ))
  22765. characterMakers.push(() => makeCharacter(
  22766. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22767. {
  22768. front: {
  22769. height: math.unit(5 + 4 / 12, "feet"),
  22770. weight: math.unit(145, "lb"),
  22771. name: "Front",
  22772. image: {
  22773. source: "./media/characters/scramble/front.svg",
  22774. extra: 763 / 727,
  22775. bottom: 0.05
  22776. }
  22777. },
  22778. back: {
  22779. height: math.unit(5 + 4 / 12, "feet"),
  22780. weight: math.unit(145, "lb"),
  22781. name: "Back",
  22782. image: {
  22783. source: "./media/characters/scramble/back.svg",
  22784. extra: 826 / 737,
  22785. bottom: 0.002
  22786. }
  22787. },
  22788. },
  22789. [
  22790. {
  22791. name: "Normal",
  22792. height: math.unit(5 + 4 / 12, "feet"),
  22793. default: true
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22799. {
  22800. side: {
  22801. height: math.unit(6 + 2 / 12, "feet"),
  22802. weight: math.unit(190, "lb"),
  22803. name: "Side",
  22804. image: {
  22805. source: "./media/characters/biscuit/side.svg",
  22806. extra: 858 / 791,
  22807. bottom: 0.044
  22808. }
  22809. },
  22810. },
  22811. [
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(6 + 2 / 12, "feet"),
  22815. default: true
  22816. },
  22817. ]
  22818. ))
  22819. characterMakers.push(() => makeCharacter(
  22820. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22821. {
  22822. front: {
  22823. height: math.unit(5 + 2 / 12, "feet"),
  22824. weight: math.unit(120, "lb"),
  22825. name: "Front",
  22826. image: {
  22827. source: "./media/characters/poffin/front.svg",
  22828. extra: 786 / 680,
  22829. bottom: 0.005
  22830. }
  22831. },
  22832. },
  22833. [
  22834. {
  22835. name: "Normal",
  22836. height: math.unit(5 + 2 / 12, "feet"),
  22837. default: true
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22843. {
  22844. front: {
  22845. height: math.unit(6 + 3 / 12, "feet"),
  22846. weight: math.unit(519, "lb"),
  22847. name: "Front",
  22848. image: {
  22849. source: "./media/characters/dhari/front.svg",
  22850. extra: 1048 / 946,
  22851. bottom: 0.015
  22852. }
  22853. },
  22854. back: {
  22855. height: math.unit(6 + 3 / 12, "feet"),
  22856. weight: math.unit(519, "lb"),
  22857. name: "Back",
  22858. image: {
  22859. source: "./media/characters/dhari/back.svg",
  22860. extra: 1048 / 931,
  22861. bottom: 0.005
  22862. }
  22863. },
  22864. frontDressed: {
  22865. height: math.unit(6 + 3 / 12, "feet"),
  22866. weight: math.unit(519, "lb"),
  22867. name: "Front (Dressed)",
  22868. image: {
  22869. source: "./media/characters/dhari/front-dressed.svg",
  22870. extra: 1713 / 1546,
  22871. bottom: 0.02
  22872. }
  22873. },
  22874. backDressed: {
  22875. height: math.unit(6 + 3 / 12, "feet"),
  22876. weight: math.unit(519, "lb"),
  22877. name: "Back (Dressed)",
  22878. image: {
  22879. source: "./media/characters/dhari/back-dressed.svg",
  22880. extra: 1699 / 1537,
  22881. bottom: 0.01
  22882. }
  22883. },
  22884. maw: {
  22885. height: math.unit(0.95, "feet"),
  22886. name: "Maw",
  22887. image: {
  22888. source: "./media/characters/dhari/maw.svg"
  22889. }
  22890. },
  22891. wereFront: {
  22892. height: math.unit(12 + 8 / 12, "feet"),
  22893. weight: math.unit(4000, "lb"),
  22894. name: "Front (Were)",
  22895. image: {
  22896. source: "./media/characters/dhari/were-front.svg",
  22897. extra: 1065 / 969,
  22898. bottom: 0.015
  22899. }
  22900. },
  22901. wereBack: {
  22902. height: math.unit(12 + 8 / 12, "feet"),
  22903. weight: math.unit(4000, "lb"),
  22904. name: "Back (Were)",
  22905. image: {
  22906. source: "./media/characters/dhari/were-back.svg",
  22907. extra: 1065 / 969,
  22908. bottom: 0.012
  22909. }
  22910. },
  22911. wereMaw: {
  22912. height: math.unit(0.625, "meters"),
  22913. name: "Maw (Were)",
  22914. image: {
  22915. source: "./media/characters/dhari/were-maw.svg"
  22916. }
  22917. },
  22918. },
  22919. [
  22920. {
  22921. name: "Normal",
  22922. height: math.unit(6 + 3 / 12, "feet"),
  22923. default: true
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22929. {
  22930. anthro: {
  22931. height: math.unit(5 + 7 / 12, "feet"),
  22932. weight: math.unit(175, "lb"),
  22933. name: "Anthro",
  22934. image: {
  22935. source: "./media/characters/rena-dyne/anthro.svg",
  22936. extra: 1849 / 1785,
  22937. bottom: 0.005
  22938. }
  22939. },
  22940. taur: {
  22941. height: math.unit(15 + 6 / 12, "feet"),
  22942. weight: math.unit(8000, "lb"),
  22943. name: "Taur",
  22944. image: {
  22945. source: "./media/characters/rena-dyne/taur.svg",
  22946. extra: 2315 / 2234,
  22947. bottom: 0.033
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Normal",
  22954. height: math.unit(5 + 7 / 12, "feet"),
  22955. default: true
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22961. {
  22962. front: {
  22963. height: math.unit(8, "feet"),
  22964. weight: math.unit(600, "lb"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/weremeep/front.svg",
  22968. extra: 970/849,
  22969. bottom: 7/977
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Normal",
  22976. height: math.unit(8, "feet"),
  22977. default: true
  22978. },
  22979. {
  22980. name: "Lorg",
  22981. height: math.unit(12, "feet")
  22982. },
  22983. {
  22984. name: "Oh Lawd She Comin'",
  22985. height: math.unit(20, "feet")
  22986. },
  22987. ]
  22988. ))
  22989. characterMakers.push(() => makeCharacter(
  22990. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22991. {
  22992. front: {
  22993. height: math.unit(4, "feet"),
  22994. weight: math.unit(90, "lb"),
  22995. name: "Front",
  22996. image: {
  22997. source: "./media/characters/reza/front.svg",
  22998. extra: 1183 / 1111,
  22999. bottom: 0.017
  23000. }
  23001. },
  23002. back: {
  23003. height: math.unit(4, "feet"),
  23004. weight: math.unit(90, "lb"),
  23005. name: "Back",
  23006. image: {
  23007. source: "./media/characters/reza/back.svg",
  23008. extra: 1183 / 1111,
  23009. bottom: 0.01
  23010. }
  23011. },
  23012. drake: {
  23013. height: math.unit(30, "feet"),
  23014. weight: math.unit(246960, "lb"),
  23015. name: "Drake",
  23016. image: {
  23017. source: "./media/characters/reza/drake.svg",
  23018. extra: 2350 / 2024,
  23019. bottom: 60.7 / 2403
  23020. }
  23021. },
  23022. },
  23023. [
  23024. {
  23025. name: "Normal",
  23026. height: math.unit(4, "feet"),
  23027. default: true
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23033. {
  23034. side: {
  23035. height: math.unit(15, "feet"),
  23036. weight: math.unit(14, "tons"),
  23037. name: "Side",
  23038. image: {
  23039. source: "./media/characters/athea/side.svg",
  23040. extra: 960 / 540,
  23041. bottom: 0.003
  23042. }
  23043. },
  23044. sitting: {
  23045. height: math.unit(6 * 2.85, "feet"),
  23046. weight: math.unit(14, "tons"),
  23047. name: "Sitting",
  23048. image: {
  23049. source: "./media/characters/athea/sitting.svg",
  23050. extra: 621 / 581,
  23051. bottom: 0.075
  23052. }
  23053. },
  23054. maw: {
  23055. height: math.unit(7.59498031496063, "feet"),
  23056. name: "Maw",
  23057. image: {
  23058. source: "./media/characters/athea/maw.svg"
  23059. }
  23060. },
  23061. },
  23062. [
  23063. {
  23064. name: "Lap Cat",
  23065. height: math.unit(2.5, "feet")
  23066. },
  23067. {
  23068. name: "Minimacro",
  23069. height: math.unit(15, "feet"),
  23070. default: true
  23071. },
  23072. {
  23073. name: "Macro",
  23074. height: math.unit(120, "feet")
  23075. },
  23076. {
  23077. name: "Macro+",
  23078. height: math.unit(640, "feet")
  23079. },
  23080. {
  23081. name: "Colossus",
  23082. height: math.unit(2.2, "miles")
  23083. },
  23084. ]
  23085. ))
  23086. characterMakers.push(() => makeCharacter(
  23087. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23088. {
  23089. front: {
  23090. height: math.unit(8 + 8 / 12, "feet"),
  23091. weight: math.unit(130, "kg"),
  23092. name: "Front",
  23093. image: {
  23094. source: "./media/characters/seroko/front.svg",
  23095. extra: 1385 / 1280,
  23096. bottom: 0.025
  23097. }
  23098. },
  23099. back: {
  23100. height: math.unit(8 + 8 / 12, "feet"),
  23101. weight: math.unit(130, "kg"),
  23102. name: "Back",
  23103. image: {
  23104. source: "./media/characters/seroko/back.svg",
  23105. extra: 1369 / 1238,
  23106. bottom: 0.018
  23107. }
  23108. },
  23109. frontDressed: {
  23110. height: math.unit(8 + 8 / 12, "feet"),
  23111. weight: math.unit(130, "kg"),
  23112. name: "Front (Dressed)",
  23113. image: {
  23114. source: "./media/characters/seroko/front-dressed.svg",
  23115. extra: 1366 / 1275,
  23116. bottom: 0.03
  23117. }
  23118. },
  23119. },
  23120. [
  23121. {
  23122. name: "Normal",
  23123. height: math.unit(8 + 8 / 12, "feet"),
  23124. default: true
  23125. },
  23126. ]
  23127. ))
  23128. characterMakers.push(() => makeCharacter(
  23129. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23130. {
  23131. front: {
  23132. height: math.unit(5.5, "feet"),
  23133. weight: math.unit(160, "lb"),
  23134. name: "Front",
  23135. image: {
  23136. source: "./media/characters/quatzi/front.svg",
  23137. extra: 2346 / 2242,
  23138. bottom: 0.015
  23139. }
  23140. },
  23141. },
  23142. [
  23143. {
  23144. name: "Normal",
  23145. height: math.unit(5.5, "feet"),
  23146. default: true
  23147. },
  23148. {
  23149. name: "Big",
  23150. height: math.unit(7.7, "feet")
  23151. },
  23152. ]
  23153. ))
  23154. characterMakers.push(() => makeCharacter(
  23155. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23156. {
  23157. front: {
  23158. height: math.unit(5 + 11 / 12, "feet"),
  23159. weight: math.unit(180, "lb"),
  23160. name: "Front",
  23161. image: {
  23162. source: "./media/characters/sen/front.svg",
  23163. extra: 1321 / 1254,
  23164. bottom: 0.015
  23165. }
  23166. },
  23167. side: {
  23168. height: math.unit(5 + 11 / 12, "feet"),
  23169. weight: math.unit(180, "lb"),
  23170. name: "Side",
  23171. image: {
  23172. source: "./media/characters/sen/side.svg",
  23173. extra: 1321 / 1254,
  23174. bottom: 0.007
  23175. }
  23176. },
  23177. back: {
  23178. height: math.unit(5 + 11 / 12, "feet"),
  23179. weight: math.unit(180, "lb"),
  23180. name: "Back",
  23181. image: {
  23182. source: "./media/characters/sen/back.svg",
  23183. extra: 1321 / 1254
  23184. }
  23185. },
  23186. },
  23187. [
  23188. {
  23189. name: "Normal",
  23190. height: math.unit(5 + 11 / 12, "feet"),
  23191. default: true
  23192. },
  23193. ]
  23194. ))
  23195. characterMakers.push(() => makeCharacter(
  23196. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23197. {
  23198. front: {
  23199. height: math.unit(166.6, "cm"),
  23200. weight: math.unit(66.6, "kg"),
  23201. name: "Front",
  23202. image: {
  23203. source: "./media/characters/fruity/front.svg",
  23204. extra: 1510 / 1386,
  23205. bottom: 0.04
  23206. }
  23207. },
  23208. back: {
  23209. height: math.unit(166.6, "cm"),
  23210. weight: math.unit(66.6, "lb"),
  23211. name: "Back",
  23212. image: {
  23213. source: "./media/characters/fruity/back.svg",
  23214. extra: 1563 / 1435,
  23215. bottom: 0.005
  23216. }
  23217. },
  23218. },
  23219. [
  23220. {
  23221. name: "Normal",
  23222. height: math.unit(166.6, "cm"),
  23223. default: true
  23224. },
  23225. {
  23226. name: "Demonic",
  23227. height: math.unit(166.6, "feet")
  23228. },
  23229. ]
  23230. ))
  23231. characterMakers.push(() => makeCharacter(
  23232. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23233. {
  23234. side: {
  23235. height: math.unit(10, "feet"),
  23236. weight: math.unit(500, "lb"),
  23237. name: "Side",
  23238. image: {
  23239. source: "./media/characters/zost/side.svg",
  23240. extra: 2870/2533,
  23241. bottom: 252/3122
  23242. }
  23243. },
  23244. mawFront: {
  23245. height: math.unit(1.08, "meters"),
  23246. name: "Maw (Front)",
  23247. image: {
  23248. source: "./media/characters/zost/maw-front.svg"
  23249. }
  23250. },
  23251. mawSide: {
  23252. height: math.unit(2.66, "feet"),
  23253. name: "Maw (Side)",
  23254. image: {
  23255. source: "./media/characters/zost/maw-side.svg"
  23256. }
  23257. },
  23258. wingspan: {
  23259. height: math.unit(7.4, "feet"),
  23260. name: "Wingspan",
  23261. image: {
  23262. source: "./media/characters/zost/wingspan.svg"
  23263. }
  23264. },
  23265. },
  23266. [
  23267. {
  23268. name: "Normal",
  23269. height: math.unit(10, "feet"),
  23270. default: true
  23271. },
  23272. ]
  23273. ))
  23274. characterMakers.push(() => makeCharacter(
  23275. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23276. {
  23277. front: {
  23278. height: math.unit(5 + 4 / 12, "feet"),
  23279. weight: math.unit(120, "lb"),
  23280. name: "Front",
  23281. image: {
  23282. source: "./media/characters/luci/front.svg",
  23283. extra: 1985 / 1884,
  23284. bottom: 0.04
  23285. }
  23286. },
  23287. back: {
  23288. height: math.unit(5 + 4 / 12, "feet"),
  23289. weight: math.unit(120, "lb"),
  23290. name: "Back",
  23291. image: {
  23292. source: "./media/characters/luci/back.svg",
  23293. extra: 1892 / 1791,
  23294. bottom: 0.002
  23295. }
  23296. },
  23297. },
  23298. [
  23299. {
  23300. name: "Normal",
  23301. height: math.unit(5 + 4 / 12, "feet"),
  23302. default: true
  23303. },
  23304. ]
  23305. ))
  23306. characterMakers.push(() => makeCharacter(
  23307. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23308. {
  23309. front: {
  23310. height: math.unit(1500, "feet"),
  23311. weight: math.unit(3.8e6, "tons"),
  23312. name: "Front",
  23313. image: {
  23314. source: "./media/characters/2th/front.svg",
  23315. extra: 3489 / 3350,
  23316. bottom: 0.1
  23317. }
  23318. },
  23319. foot: {
  23320. height: math.unit(461, "feet"),
  23321. name: "Foot",
  23322. image: {
  23323. source: "./media/characters/2th/foot.svg"
  23324. }
  23325. },
  23326. },
  23327. [
  23328. {
  23329. name: "\"Micro\"",
  23330. height: math.unit(15 + 7 / 12, "feet")
  23331. },
  23332. {
  23333. name: "Normal",
  23334. height: math.unit(1500, "feet"),
  23335. default: true
  23336. },
  23337. {
  23338. name: "Macro",
  23339. height: math.unit(5000, "feet")
  23340. },
  23341. {
  23342. name: "Megamacro",
  23343. height: math.unit(15, "miles")
  23344. },
  23345. {
  23346. name: "Gigamacro",
  23347. height: math.unit(4000, "miles")
  23348. },
  23349. {
  23350. name: "Galactic",
  23351. height: math.unit(50, "AU")
  23352. },
  23353. ]
  23354. ))
  23355. characterMakers.push(() => makeCharacter(
  23356. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23357. {
  23358. front: {
  23359. height: math.unit(5 + 6 / 12, "feet"),
  23360. weight: math.unit(220, "lb"),
  23361. name: "Front",
  23362. image: {
  23363. source: "./media/characters/amethyst/front.svg",
  23364. extra: 2078 / 2040,
  23365. bottom: 0.045
  23366. }
  23367. },
  23368. back: {
  23369. height: math.unit(5 + 6 / 12, "feet"),
  23370. weight: math.unit(220, "lb"),
  23371. name: "Back",
  23372. image: {
  23373. source: "./media/characters/amethyst/back.svg",
  23374. extra: 2021 / 1989,
  23375. bottom: 0.02
  23376. }
  23377. },
  23378. },
  23379. [
  23380. {
  23381. name: "Normal",
  23382. height: math.unit(5 + 6 / 12, "feet"),
  23383. default: true
  23384. },
  23385. ]
  23386. ))
  23387. characterMakers.push(() => makeCharacter(
  23388. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23389. {
  23390. front: {
  23391. height: math.unit(4 + 11 / 12, "feet"),
  23392. weight: math.unit(120, "lb"),
  23393. name: "Front",
  23394. image: {
  23395. source: "./media/characters/yumi-akiyama/front.svg",
  23396. extra: 1327 / 1235,
  23397. bottom: 0.02
  23398. }
  23399. },
  23400. back: {
  23401. height: math.unit(4 + 11 / 12, "feet"),
  23402. weight: math.unit(120, "lb"),
  23403. name: "Back",
  23404. image: {
  23405. source: "./media/characters/yumi-akiyama/back.svg",
  23406. extra: 1287 / 1245,
  23407. bottom: 0.002
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Galactic",
  23414. height: math.unit(50, "galaxies"),
  23415. default: true
  23416. },
  23417. {
  23418. name: "Universal",
  23419. height: math.unit(100, "universes")
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23425. {
  23426. front: {
  23427. height: math.unit(8, "feet"),
  23428. weight: math.unit(500, "lb"),
  23429. name: "Front",
  23430. image: {
  23431. source: "./media/characters/rifter-yrmori/front.svg",
  23432. extra: 1180 / 1125,
  23433. bottom: 0.02
  23434. }
  23435. },
  23436. back: {
  23437. height: math.unit(8, "feet"),
  23438. weight: math.unit(500, "lb"),
  23439. name: "Back",
  23440. image: {
  23441. source: "./media/characters/rifter-yrmori/back.svg",
  23442. extra: 1190 / 1145,
  23443. bottom: 0.001
  23444. }
  23445. },
  23446. wings: {
  23447. height: math.unit(7.75, "feet"),
  23448. weight: math.unit(500, "lb"),
  23449. name: "Wings",
  23450. image: {
  23451. source: "./media/characters/rifter-yrmori/wings.svg",
  23452. extra: 1357 / 1285
  23453. }
  23454. },
  23455. maw: {
  23456. height: math.unit(0.8, "feet"),
  23457. name: "Maw",
  23458. image: {
  23459. source: "./media/characters/rifter-yrmori/maw.svg"
  23460. }
  23461. },
  23462. mawfront: {
  23463. height: math.unit(1.45, "feet"),
  23464. name: "Maw (Front)",
  23465. image: {
  23466. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23467. }
  23468. },
  23469. },
  23470. [
  23471. {
  23472. name: "Normal",
  23473. height: math.unit(8, "feet"),
  23474. default: true
  23475. },
  23476. {
  23477. name: "Macro",
  23478. height: math.unit(42, "meters")
  23479. },
  23480. ]
  23481. ))
  23482. characterMakers.push(() => makeCharacter(
  23483. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23484. {
  23485. were: {
  23486. height: math.unit(25 + 6 / 12, "feet"),
  23487. weight: math.unit(10000, "lb"),
  23488. name: "Were",
  23489. image: {
  23490. source: "./media/characters/tahajin/were.svg",
  23491. extra: 801 / 770,
  23492. bottom: 0.042
  23493. }
  23494. },
  23495. aquatic: {
  23496. height: math.unit(6 + 4 / 12, "feet"),
  23497. weight: math.unit(160, "lb"),
  23498. name: "Aquatic",
  23499. image: {
  23500. source: "./media/characters/tahajin/aquatic.svg",
  23501. extra: 572 / 542,
  23502. bottom: 0.04
  23503. }
  23504. },
  23505. chow: {
  23506. height: math.unit(8 + 11 / 12, "feet"),
  23507. weight: math.unit(450, "lb"),
  23508. name: "Chow",
  23509. image: {
  23510. source: "./media/characters/tahajin/chow.svg",
  23511. extra: 660 / 640,
  23512. bottom: 0.015
  23513. }
  23514. },
  23515. demiNaga: {
  23516. height: math.unit(6 + 8 / 12, "feet"),
  23517. weight: math.unit(300, "lb"),
  23518. name: "Demi Naga",
  23519. image: {
  23520. source: "./media/characters/tahajin/demi-naga.svg",
  23521. extra: 643 / 615,
  23522. bottom: 0.1
  23523. }
  23524. },
  23525. data: {
  23526. height: math.unit(5, "inches"),
  23527. weight: math.unit(0.1, "lb"),
  23528. name: "Data",
  23529. image: {
  23530. source: "./media/characters/tahajin/data.svg"
  23531. }
  23532. },
  23533. fluu: {
  23534. height: math.unit(5 + 7 / 12, "feet"),
  23535. weight: math.unit(140, "lb"),
  23536. name: "Fluu",
  23537. image: {
  23538. source: "./media/characters/tahajin/fluu.svg",
  23539. extra: 628 / 592,
  23540. bottom: 0.02
  23541. }
  23542. },
  23543. starWarrior: {
  23544. height: math.unit(4 + 5 / 12, "feet"),
  23545. weight: math.unit(50, "lb"),
  23546. name: "Star Warrior",
  23547. image: {
  23548. source: "./media/characters/tahajin/star-warrior.svg"
  23549. }
  23550. },
  23551. },
  23552. [
  23553. {
  23554. name: "Normal",
  23555. height: math.unit(25 + 6 / 12, "feet"),
  23556. default: true
  23557. },
  23558. ]
  23559. ))
  23560. characterMakers.push(() => makeCharacter(
  23561. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23562. {
  23563. front: {
  23564. height: math.unit(8, "feet"),
  23565. weight: math.unit(350, "lb"),
  23566. name: "Front",
  23567. image: {
  23568. source: "./media/characters/gabira/front.svg",
  23569. extra: 1261/1154,
  23570. bottom: 51/1312
  23571. }
  23572. },
  23573. back: {
  23574. height: math.unit(8, "feet"),
  23575. weight: math.unit(350, "lb"),
  23576. name: "Back",
  23577. image: {
  23578. source: "./media/characters/gabira/back.svg",
  23579. extra: 1265/1163,
  23580. bottom: 46/1311
  23581. }
  23582. },
  23583. head: {
  23584. height: math.unit(2.85, "feet"),
  23585. name: "Head",
  23586. image: {
  23587. source: "./media/characters/gabira/head.svg"
  23588. }
  23589. },
  23590. },
  23591. [
  23592. {
  23593. name: "Normal",
  23594. height: math.unit(8, "feet"),
  23595. default: true
  23596. },
  23597. ]
  23598. ))
  23599. characterMakers.push(() => makeCharacter(
  23600. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23601. {
  23602. front: {
  23603. height: math.unit(5 + 3 / 12, "feet"),
  23604. weight: math.unit(137, "lb"),
  23605. name: "Front",
  23606. image: {
  23607. source: "./media/characters/sasha-katraine/front.svg",
  23608. extra: 1745/1694,
  23609. bottom: 37/1782
  23610. }
  23611. },
  23612. back: {
  23613. height: math.unit(5 + 3 / 12, "feet"),
  23614. weight: math.unit(137, "lb"),
  23615. name: "Back",
  23616. image: {
  23617. source: "./media/characters/sasha-katraine/back.svg",
  23618. extra: 1776/1699,
  23619. bottom: 26/1802
  23620. }
  23621. },
  23622. },
  23623. [
  23624. {
  23625. name: "Micro",
  23626. height: math.unit(5, "inches")
  23627. },
  23628. {
  23629. name: "Normal",
  23630. height: math.unit(5 + 3 / 12, "feet"),
  23631. default: true
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23637. {
  23638. side: {
  23639. height: math.unit(4, "inches"),
  23640. weight: math.unit(200, "grams"),
  23641. name: "Side",
  23642. image: {
  23643. source: "./media/characters/der/side.svg",
  23644. extra: 719 / 400,
  23645. bottom: 30.6 / 749.9187
  23646. }
  23647. },
  23648. },
  23649. [
  23650. {
  23651. name: "Micro",
  23652. height: math.unit(4, "inches"),
  23653. default: true
  23654. },
  23655. ]
  23656. ))
  23657. characterMakers.push(() => makeCharacter(
  23658. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23659. {
  23660. side: {
  23661. height: math.unit(30, "meters"),
  23662. weight: math.unit(700, "tonnes"),
  23663. name: "Side",
  23664. image: {
  23665. source: "./media/characters/fixerdragon/side.svg",
  23666. extra: (1293.0514 - 116.03) / 1106.86,
  23667. bottom: 116.03 / 1293.0514
  23668. }
  23669. },
  23670. },
  23671. [
  23672. {
  23673. name: "Planck",
  23674. height: math.unit(1.6e-35, "meters")
  23675. },
  23676. {
  23677. name: "Micro",
  23678. height: math.unit(0.4, "meters")
  23679. },
  23680. {
  23681. name: "Normal",
  23682. height: math.unit(30, "meters"),
  23683. default: true
  23684. },
  23685. {
  23686. name: "Megamacro",
  23687. height: math.unit(1.2, "megameters")
  23688. },
  23689. {
  23690. name: "Teramacro",
  23691. height: math.unit(130, "terameters")
  23692. },
  23693. {
  23694. name: "Yottamacro",
  23695. height: math.unit(6200, "yottameters")
  23696. },
  23697. ]
  23698. ));
  23699. characterMakers.push(() => makeCharacter(
  23700. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23701. {
  23702. front: {
  23703. height: math.unit(8, "feet"),
  23704. weight: math.unit(250, "lb"),
  23705. name: "Front",
  23706. image: {
  23707. source: "./media/characters/kite/front.svg",
  23708. extra: 2796 / 2659,
  23709. bottom: 0.002
  23710. }
  23711. },
  23712. },
  23713. [
  23714. {
  23715. name: "Normal",
  23716. height: math.unit(8, "feet"),
  23717. default: true
  23718. },
  23719. {
  23720. name: "Macro",
  23721. height: math.unit(360, "feet")
  23722. },
  23723. {
  23724. name: "Megamacro",
  23725. height: math.unit(1500, "feet")
  23726. },
  23727. ]
  23728. ))
  23729. characterMakers.push(() => makeCharacter(
  23730. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23731. {
  23732. anthro_front: {
  23733. height: math.unit(5 + 11/12, "feet"),
  23734. weight: math.unit(170, "lb"),
  23735. name: "Front",
  23736. image: {
  23737. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23738. extra: 1735/1585,
  23739. bottom: 96/1831
  23740. },
  23741. form: "anthro",
  23742. default: true
  23743. },
  23744. anthro_back: {
  23745. height: math.unit(5 + 11/12, "feet"),
  23746. weight: math.unit(170, "lb"),
  23747. name: "Back",
  23748. image: {
  23749. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23750. extra: 1749/1607,
  23751. bottom: 28/1777
  23752. },
  23753. form: "anthro"
  23754. },
  23755. anthro_male: {
  23756. height: math.unit(5 + 11/12, "feet"),
  23757. weight: math.unit(170, "lb"),
  23758. name: "Male",
  23759. image: {
  23760. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23761. extra: 1855/1713,
  23762. bottom: 63/1918
  23763. },
  23764. form: "anthro"
  23765. },
  23766. taur_front: {
  23767. height: math.unit(5 + 7/12, "feet"),
  23768. weight: math.unit(170, "lb"),
  23769. name: "Front",
  23770. image: {
  23771. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23772. extra: 1151/1059,
  23773. bottom: 356/1507
  23774. },
  23775. form: "taur",
  23776. default: true
  23777. },
  23778. anthro_frontDressed: {
  23779. height: math.unit(5 + 11/12, "feet"),
  23780. weight: math.unit(170, "lb"),
  23781. name: "Front (Dressed)",
  23782. image: {
  23783. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23784. extra: 1735/1585,
  23785. bottom: 96/1831
  23786. },
  23787. form: "anthro"
  23788. },
  23789. anthro_backDressed: {
  23790. height: math.unit(5 + 11/12, "feet"),
  23791. weight: math.unit(170, "lb"),
  23792. name: "Back (Dressed)",
  23793. image: {
  23794. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23795. extra: 1749/1607,
  23796. bottom: 28/1777
  23797. },
  23798. form: "anthro"
  23799. },
  23800. anthro_maleDressed: {
  23801. height: math.unit(5 + 11/12, "feet"),
  23802. weight: math.unit(170, "lb"),
  23803. name: "Male (Dressed)",
  23804. image: {
  23805. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23806. extra: 1855/1713,
  23807. bottom: 63/1918
  23808. },
  23809. form: "anthro"
  23810. },
  23811. taur_frontDressed: {
  23812. height: math.unit(5 + 7/12, "feet"),
  23813. weight: math.unit(170, "lb"),
  23814. name: "Front (Dressed)",
  23815. image: {
  23816. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23817. extra: 1151/1059,
  23818. bottom: 356/1507
  23819. },
  23820. form: "taur"
  23821. },
  23822. maw: {
  23823. height: math.unit(1.46, "feet"),
  23824. name: "Maw",
  23825. image: {
  23826. source: "./media/characters/poojawa-vynar/maw.svg"
  23827. },
  23828. allForms: true
  23829. },
  23830. head: {
  23831. height: math.unit(2.34, "feet"),
  23832. name: "Head",
  23833. image: {
  23834. source: "./media/characters/poojawa-vynar/head.svg"
  23835. },
  23836. allForms: true
  23837. },
  23838. leftPaw: {
  23839. height: math.unit(1.72, "feet"),
  23840. name: "Left Paw",
  23841. image: {
  23842. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23843. },
  23844. allForms: true
  23845. },
  23846. rightPaw: {
  23847. height: math.unit(1.61, "feet"),
  23848. name: "Right Paw",
  23849. image: {
  23850. source: "./media/characters/poojawa-vynar/paw-right.svg"
  23851. },
  23852. allForms: true
  23853. },
  23854. toering: {
  23855. height: math.unit(2.9, "inches"),
  23856. name: "Toering",
  23857. image: {
  23858. source: "./media/characters/poojawa-vynar/toering.svg"
  23859. },
  23860. allForms: true
  23861. },
  23862. shaft: {
  23863. height: math.unit(0.625, "feet"),
  23864. name: "Shaft",
  23865. image: {
  23866. source: "./media/characters/poojawa-vynar/shaft.svg"
  23867. },
  23868. allForms: true
  23869. },
  23870. spade: {
  23871. height: math.unit(0.42, "feet"),
  23872. name: "Spade",
  23873. image: {
  23874. source: "./media/characters/poojawa-vynar/spade.svg"
  23875. },
  23876. allForms: true
  23877. },
  23878. },
  23879. [
  23880. {
  23881. name: "Shortstack",
  23882. height: math.unit(4, "feet"),
  23883. form: "anthro"
  23884. },
  23885. {
  23886. name: "Normal",
  23887. height: math.unit(5 + 11 / 12, "feet"),
  23888. form: "anthro",
  23889. default: true
  23890. },
  23891. {
  23892. name: "Tauric",
  23893. height: math.unit(4, "meters"),
  23894. form: "taur",
  23895. default: true
  23896. },
  23897. ],
  23898. {
  23899. "anthro": {
  23900. name: "Anthro",
  23901. default: true
  23902. },
  23903. "taur": {
  23904. name: "Taur",
  23905. },
  23906. }
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23910. {
  23911. front: {
  23912. height: math.unit(293, "meters"),
  23913. weight: math.unit(70400, "tons"),
  23914. name: "Front",
  23915. image: {
  23916. source: "./media/characters/violette/front.svg",
  23917. extra: 1227 / 1180,
  23918. bottom: 0.005
  23919. }
  23920. },
  23921. back: {
  23922. height: math.unit(293, "meters"),
  23923. weight: math.unit(70400, "tons"),
  23924. name: "Back",
  23925. image: {
  23926. source: "./media/characters/violette/back.svg",
  23927. extra: 1227 / 1180,
  23928. bottom: 0.005
  23929. }
  23930. },
  23931. },
  23932. [
  23933. {
  23934. name: "Macro",
  23935. height: math.unit(293, "meters"),
  23936. default: true
  23937. },
  23938. ]
  23939. ))
  23940. characterMakers.push(() => makeCharacter(
  23941. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23942. {
  23943. front: {
  23944. height: math.unit(1050, "feet"),
  23945. weight: math.unit(200000, "tons"),
  23946. name: "Front",
  23947. image: {
  23948. source: "./media/characters/alessandra/front.svg",
  23949. extra: 960 / 912,
  23950. bottom: 0.06
  23951. }
  23952. },
  23953. },
  23954. [
  23955. {
  23956. name: "Macro",
  23957. height: math.unit(1050, "feet")
  23958. },
  23959. {
  23960. name: "Macro+",
  23961. height: math.unit(900, "meters"),
  23962. default: true
  23963. },
  23964. ]
  23965. ))
  23966. characterMakers.push(() => makeCharacter(
  23967. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23968. {
  23969. front: {
  23970. height: math.unit(5, "feet"),
  23971. weight: math.unit(187, "lb"),
  23972. name: "Front",
  23973. image: {
  23974. source: "./media/characters/person/front.svg",
  23975. extra: 3087 / 2945,
  23976. bottom: 91 / 3181
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Micro",
  23983. height: math.unit(3, "inches")
  23984. },
  23985. {
  23986. name: "Normal",
  23987. height: math.unit(5, "feet"),
  23988. default: true
  23989. },
  23990. {
  23991. name: "Macro",
  23992. height: math.unit(90, "feet")
  23993. },
  23994. {
  23995. name: "Max Size",
  23996. height: math.unit(280, "feet")
  23997. },
  23998. ]
  23999. ))
  24000. characterMakers.push(() => makeCharacter(
  24001. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24002. {
  24003. front: {
  24004. height: math.unit(4.5, "meters"),
  24005. weight: math.unit(3200, "lb"),
  24006. name: "Front",
  24007. image: {
  24008. source: "./media/characters/ty/front.svg",
  24009. extra: 1038 / 960,
  24010. bottom: 31.156 / 1068
  24011. }
  24012. },
  24013. back: {
  24014. height: math.unit(4.5, "meters"),
  24015. weight: math.unit(3200, "lb"),
  24016. name: "Back",
  24017. image: {
  24018. source: "./media/characters/ty/back.svg",
  24019. extra: 1044 / 966,
  24020. bottom: 7.48 / 1049
  24021. }
  24022. },
  24023. },
  24024. [
  24025. {
  24026. name: "Normal",
  24027. height: math.unit(4.5, "meters"),
  24028. default: true
  24029. },
  24030. ]
  24031. ))
  24032. characterMakers.push(() => makeCharacter(
  24033. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24034. {
  24035. front: {
  24036. height: math.unit(5 + 4 / 12, "feet"),
  24037. weight: math.unit(115, "lb"),
  24038. name: "Front",
  24039. image: {
  24040. source: "./media/characters/rocky/front.svg",
  24041. extra: 1012 / 975,
  24042. bottom: 54 / 1066
  24043. }
  24044. },
  24045. },
  24046. [
  24047. {
  24048. name: "Normal",
  24049. height: math.unit(5 + 4 / 12, "feet"),
  24050. default: true
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24056. {
  24057. upright: {
  24058. height: math.unit(6, "meters"),
  24059. weight: math.unit(4000, "kg"),
  24060. name: "Upright",
  24061. image: {
  24062. source: "./media/characters/ruin/upright.svg",
  24063. extra: 668 / 661,
  24064. bottom: 42 / 799.8396
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "Normal",
  24071. height: math.unit(6, "meters"),
  24072. default: true
  24073. },
  24074. ]
  24075. ))
  24076. characterMakers.push(() => makeCharacter(
  24077. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24078. {
  24079. front: {
  24080. height: math.unit(5, "feet"),
  24081. weight: math.unit(106, "lb"),
  24082. name: "Front",
  24083. image: {
  24084. source: "./media/characters/robin/front.svg",
  24085. extra: 862 / 799,
  24086. bottom: 42.4 / 914.8856
  24087. }
  24088. },
  24089. },
  24090. [
  24091. {
  24092. name: "Normal",
  24093. height: math.unit(5, "feet"),
  24094. default: true
  24095. },
  24096. ]
  24097. ))
  24098. characterMakers.push(() => makeCharacter(
  24099. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24100. {
  24101. side: {
  24102. height: math.unit(3, "feet"),
  24103. weight: math.unit(225, "lb"),
  24104. name: "Side",
  24105. image: {
  24106. source: "./media/characters/saian/side.svg",
  24107. extra: 566 / 356,
  24108. bottom: 79.7 / 643
  24109. }
  24110. },
  24111. maw: {
  24112. height: math.unit(2.85, "feet"),
  24113. name: "Maw",
  24114. image: {
  24115. source: "./media/characters/saian/maw.svg"
  24116. }
  24117. },
  24118. },
  24119. [
  24120. {
  24121. name: "Normal",
  24122. height: math.unit(3, "feet"),
  24123. default: true
  24124. },
  24125. ]
  24126. ))
  24127. characterMakers.push(() => makeCharacter(
  24128. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24129. {
  24130. side: {
  24131. height: math.unit(8, "feet"),
  24132. weight: math.unit(300, "lb"),
  24133. name: "Side",
  24134. image: {
  24135. source: "./media/characters/equus-silvermane/side.svg",
  24136. extra: 2176 / 2050,
  24137. bottom: 65.7 / 2245
  24138. }
  24139. },
  24140. front: {
  24141. height: math.unit(8, "feet"),
  24142. weight: math.unit(300, "lb"),
  24143. name: "Front",
  24144. image: {
  24145. source: "./media/characters/equus-silvermane/front.svg",
  24146. extra: 4633 / 4400,
  24147. bottom: 71.3 / 4706.915
  24148. }
  24149. },
  24150. sideStepping: {
  24151. height: math.unit(8, "feet"),
  24152. weight: math.unit(300, "lb"),
  24153. name: "Side (Stepping)",
  24154. image: {
  24155. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24156. extra: 1968 / 1860,
  24157. bottom: 16.4 / 1989
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Normal",
  24164. height: math.unit(8, "feet")
  24165. },
  24166. {
  24167. name: "Minimacro",
  24168. height: math.unit(75, "feet"),
  24169. default: true
  24170. },
  24171. {
  24172. name: "Macro",
  24173. height: math.unit(150, "feet")
  24174. },
  24175. {
  24176. name: "Macro+",
  24177. height: math.unit(1000, "feet")
  24178. },
  24179. {
  24180. name: "Megamacro",
  24181. height: math.unit(1, "mile")
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24187. {
  24188. side: {
  24189. height: math.unit(20, "feet"),
  24190. weight: math.unit(30000, "kg"),
  24191. name: "Side",
  24192. image: {
  24193. source: "./media/characters/windar/side.svg",
  24194. extra: 1491 / 1248,
  24195. bottom: 82.56 / 1568
  24196. }
  24197. },
  24198. },
  24199. [
  24200. {
  24201. name: "Normal",
  24202. height: math.unit(20, "feet"),
  24203. default: true
  24204. },
  24205. ]
  24206. ))
  24207. characterMakers.push(() => makeCharacter(
  24208. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24209. {
  24210. side: {
  24211. height: math.unit(15.66, "feet"),
  24212. weight: math.unit(150, "lb"),
  24213. name: "Side",
  24214. image: {
  24215. source: "./media/characters/melody/side.svg",
  24216. extra: 1097 / 944,
  24217. bottom: 11.8 / 1109
  24218. }
  24219. },
  24220. sideOutfit: {
  24221. height: math.unit(15.66, "feet"),
  24222. weight: math.unit(150, "lb"),
  24223. name: "Side (Outfit)",
  24224. image: {
  24225. source: "./media/characters/melody/side-outfit.svg",
  24226. extra: 1097 / 944,
  24227. bottom: 11.8 / 1109
  24228. }
  24229. },
  24230. },
  24231. [
  24232. {
  24233. name: "Normal",
  24234. height: math.unit(15.66, "feet"),
  24235. default: true
  24236. },
  24237. ]
  24238. ))
  24239. characterMakers.push(() => makeCharacter(
  24240. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24241. {
  24242. armoredFront: {
  24243. height: math.unit(8, "feet"),
  24244. weight: math.unit(325, "lb"),
  24245. name: "Front",
  24246. image: {
  24247. source: "./media/characters/windera/armored-front.svg",
  24248. extra: 1830/1598,
  24249. bottom: 151/1981
  24250. },
  24251. form: "armored",
  24252. default: true
  24253. },
  24254. macroFront: {
  24255. height: math.unit(70, "feet"),
  24256. weight: math.unit(315453, "lb"),
  24257. name: "Front",
  24258. image: {
  24259. source: "./media/characters/windera/macro-front.svg",
  24260. extra: 963/883,
  24261. bottom: 23/986
  24262. },
  24263. form: "macro",
  24264. default: true
  24265. },
  24266. },
  24267. [
  24268. {
  24269. name: "Normal",
  24270. height: math.unit(8, "feet"),
  24271. default: true,
  24272. form: "armored"
  24273. },
  24274. {
  24275. name: "Normal",
  24276. height: math.unit(70, "feet"),
  24277. default: true,
  24278. form: "macro"
  24279. },
  24280. ],
  24281. {
  24282. "armored": {
  24283. name: "Armored",
  24284. default: true
  24285. },
  24286. "macro": {
  24287. name: "Macro",
  24288. },
  24289. }
  24290. ))
  24291. characterMakers.push(() => makeCharacter(
  24292. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24293. {
  24294. front: {
  24295. height: math.unit(28.75, "feet"),
  24296. weight: math.unit(2000, "kg"),
  24297. name: "Front",
  24298. image: {
  24299. source: "./media/characters/sonear/front.svg",
  24300. extra: 1041.1 / 964.9,
  24301. bottom: 53.7 / 1096.6
  24302. }
  24303. },
  24304. },
  24305. [
  24306. {
  24307. name: "Normal",
  24308. height: math.unit(28.75, "feet"),
  24309. default: true
  24310. },
  24311. ]
  24312. ))
  24313. characterMakers.push(() => makeCharacter(
  24314. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24315. {
  24316. side: {
  24317. height: math.unit(25.5, "feet"),
  24318. weight: math.unit(23000, "kg"),
  24319. name: "Side",
  24320. image: {
  24321. source: "./media/characters/kanara/side.svg"
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(25.5, "feet"),
  24329. default: true
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24335. {
  24336. side: {
  24337. height: math.unit(10, "feet"),
  24338. weight: math.unit(1000, "kg"),
  24339. name: "Side",
  24340. image: {
  24341. source: "./media/characters/ereus/side.svg",
  24342. extra: 1157 / 959,
  24343. bottom: 153 / 1312.5
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "Normal",
  24350. height: math.unit(10, "feet"),
  24351. default: true
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24357. {
  24358. side: {
  24359. height: math.unit(4.5, "feet"),
  24360. weight: math.unit(500, "lb"),
  24361. name: "Side",
  24362. image: {
  24363. source: "./media/characters/e-ter/side.svg",
  24364. extra: 1550 / 1248,
  24365. bottom: 146 / 1694
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Normal",
  24372. height: math.unit(4.5, "feet"),
  24373. default: true
  24374. },
  24375. ]
  24376. ))
  24377. characterMakers.push(() => makeCharacter(
  24378. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24379. {
  24380. side: {
  24381. height: math.unit(9.7, "feet"),
  24382. weight: math.unit(4000, "kg"),
  24383. name: "Side",
  24384. image: {
  24385. source: "./media/characters/yamie/side.svg"
  24386. }
  24387. },
  24388. },
  24389. [
  24390. {
  24391. name: "Normal",
  24392. height: math.unit(9.7, "feet"),
  24393. default: true
  24394. },
  24395. ]
  24396. ))
  24397. characterMakers.push(() => makeCharacter(
  24398. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24399. {
  24400. front: {
  24401. height: math.unit(50, "feet"),
  24402. weight: math.unit(50000, "kg"),
  24403. name: "Front",
  24404. image: {
  24405. source: "./media/characters/anders/front.svg",
  24406. extra: 570 / 539,
  24407. bottom: 14.7 / 586.7
  24408. }
  24409. },
  24410. },
  24411. [
  24412. {
  24413. name: "Large",
  24414. height: math.unit(50, "feet")
  24415. },
  24416. {
  24417. name: "Macro",
  24418. height: math.unit(2000, "feet"),
  24419. default: true
  24420. },
  24421. {
  24422. name: "Megamacro",
  24423. height: math.unit(12, "miles")
  24424. },
  24425. ]
  24426. ))
  24427. characterMakers.push(() => makeCharacter(
  24428. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24429. {
  24430. front: {
  24431. height: math.unit(7 + 2 / 12, "feet"),
  24432. weight: math.unit(300, "lb"),
  24433. name: "Front",
  24434. image: {
  24435. source: "./media/characters/reban/front.svg",
  24436. extra: 1287/1212,
  24437. bottom: 148/1435
  24438. }
  24439. },
  24440. head: {
  24441. height: math.unit(1.95, "feet"),
  24442. name: "Head",
  24443. image: {
  24444. source: "./media/characters/reban/head.svg"
  24445. }
  24446. },
  24447. maw: {
  24448. height: math.unit(0.95, "feet"),
  24449. name: "Maw",
  24450. image: {
  24451. source: "./media/characters/reban/maw.svg"
  24452. }
  24453. },
  24454. foot: {
  24455. height: math.unit(1.65, "feet"),
  24456. name: "Foot",
  24457. image: {
  24458. source: "./media/characters/reban/foot.svg"
  24459. }
  24460. },
  24461. dick: {
  24462. height: math.unit(7 / 5, "feet"),
  24463. name: "Dick",
  24464. image: {
  24465. source: "./media/characters/reban/dick.svg"
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Natural Height",
  24472. height: math.unit(7 + 2 / 12, "feet")
  24473. },
  24474. {
  24475. name: "Macro",
  24476. height: math.unit(500, "feet"),
  24477. default: true
  24478. },
  24479. {
  24480. name: "Canon Height",
  24481. height: math.unit(50, "AU")
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24487. {
  24488. front: {
  24489. height: math.unit(6, "feet"),
  24490. weight: math.unit(150, "lb"),
  24491. name: "Front",
  24492. image: {
  24493. source: "./media/characters/terrance-keayes/front.svg",
  24494. extra: 1.005,
  24495. bottom: 151 / 1615
  24496. }
  24497. },
  24498. side: {
  24499. height: math.unit(6, "feet"),
  24500. weight: math.unit(150, "lb"),
  24501. name: "Side",
  24502. image: {
  24503. source: "./media/characters/terrance-keayes/side.svg",
  24504. extra: 1.005,
  24505. bottom: 129.4 / 1544
  24506. }
  24507. },
  24508. back: {
  24509. height: math.unit(6, "feet"),
  24510. weight: math.unit(150, "lb"),
  24511. name: "Back",
  24512. image: {
  24513. source: "./media/characters/terrance-keayes/back.svg",
  24514. extra: 1.005,
  24515. bottom: 58.4 / 1557.3
  24516. }
  24517. },
  24518. dick: {
  24519. height: math.unit(6 * 0.208, "feet"),
  24520. name: "Dick",
  24521. image: {
  24522. source: "./media/characters/terrance-keayes/dick.svg"
  24523. }
  24524. },
  24525. },
  24526. [
  24527. {
  24528. name: "Canon Height",
  24529. height: math.unit(35, "miles"),
  24530. default: true
  24531. },
  24532. ]
  24533. ))
  24534. characterMakers.push(() => makeCharacter(
  24535. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24536. {
  24537. front: {
  24538. height: math.unit(6, "feet"),
  24539. weight: math.unit(150, "lb"),
  24540. name: "Front",
  24541. image: {
  24542. source: "./media/characters/ofelia/front.svg",
  24543. extra: 1130/1117,
  24544. bottom: 91/1221
  24545. }
  24546. },
  24547. back: {
  24548. height: math.unit(6, "feet"),
  24549. weight: math.unit(150, "lb"),
  24550. name: "Back",
  24551. image: {
  24552. source: "./media/characters/ofelia/back.svg",
  24553. extra: 1172/1159,
  24554. bottom: 28/1200
  24555. }
  24556. },
  24557. maw: {
  24558. height: math.unit(1, "feet"),
  24559. name: "Maw",
  24560. image: {
  24561. source: "./media/characters/ofelia/maw.svg"
  24562. }
  24563. },
  24564. foot: {
  24565. height: math.unit(1.949, "feet"),
  24566. name: "Foot",
  24567. image: {
  24568. source: "./media/characters/ofelia/foot.svg"
  24569. }
  24570. },
  24571. },
  24572. [
  24573. {
  24574. name: "Canon Height",
  24575. height: math.unit(2000, "miles"),
  24576. default: true
  24577. },
  24578. ]
  24579. ))
  24580. characterMakers.push(() => makeCharacter(
  24581. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24582. {
  24583. front: {
  24584. height: math.unit(6, "feet"),
  24585. weight: math.unit(150, "lb"),
  24586. name: "Front",
  24587. image: {
  24588. source: "./media/characters/samuel/front.svg",
  24589. extra: 265 / 258,
  24590. bottom: 2 / 266.1566
  24591. }
  24592. },
  24593. },
  24594. [
  24595. {
  24596. name: "Macro",
  24597. height: math.unit(100, "feet"),
  24598. default: true
  24599. },
  24600. {
  24601. name: "Full Size",
  24602. height: math.unit(1000, "miles")
  24603. },
  24604. ]
  24605. ))
  24606. characterMakers.push(() => makeCharacter(
  24607. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24608. {
  24609. front: {
  24610. height: math.unit(6, "feet"),
  24611. weight: math.unit(300, "lb"),
  24612. name: "Front",
  24613. image: {
  24614. source: "./media/characters/beishir-kiel/front.svg",
  24615. extra: 569 / 547,
  24616. bottom: 41.9 / 609
  24617. }
  24618. },
  24619. maw: {
  24620. height: math.unit(6 * 0.202, "feet"),
  24621. name: "Maw",
  24622. image: {
  24623. source: "./media/characters/beishir-kiel/maw.svg"
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Macro",
  24630. height: math.unit(300, "feet"),
  24631. default: true
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24637. {
  24638. front: {
  24639. height: math.unit(5 + 7/12, "feet"),
  24640. weight: math.unit(120, "lb"),
  24641. name: "Front",
  24642. image: {
  24643. source: "./media/characters/logan-grey/front.svg",
  24644. extra: 1836/1738,
  24645. bottom: 108/1944
  24646. }
  24647. },
  24648. back: {
  24649. height: math.unit(5 + 7/12, "feet"),
  24650. weight: math.unit(120, "lb"),
  24651. name: "Back",
  24652. image: {
  24653. source: "./media/characters/logan-grey/back.svg",
  24654. extra: 1880/1794,
  24655. bottom: 24/1904
  24656. }
  24657. },
  24658. frontSfw: {
  24659. height: math.unit(5 + 7/12, "feet"),
  24660. weight: math.unit(120, "lb"),
  24661. name: "Front (SFW)",
  24662. image: {
  24663. source: "./media/characters/logan-grey/front-sfw.svg",
  24664. extra: 1836/1738,
  24665. bottom: 108/1944
  24666. }
  24667. },
  24668. backSfw: {
  24669. height: math.unit(5 + 7/12, "feet"),
  24670. weight: math.unit(120, "lb"),
  24671. name: "Back (SFW)",
  24672. image: {
  24673. source: "./media/characters/logan-grey/back-sfw.svg",
  24674. extra: 1880/1794,
  24675. bottom: 24/1904
  24676. }
  24677. },
  24678. hands: {
  24679. height: math.unit(0.84, "feet"),
  24680. name: "Hands",
  24681. image: {
  24682. source: "./media/characters/logan-grey/hands.svg"
  24683. }
  24684. },
  24685. paws: {
  24686. height: math.unit(0.72, "feet"),
  24687. name: "Paws",
  24688. image: {
  24689. source: "./media/characters/logan-grey/paws.svg"
  24690. }
  24691. },
  24692. cock: {
  24693. height: math.unit(1.45, "feet"),
  24694. name: "Cock",
  24695. image: {
  24696. source: "./media/characters/logan-grey/cock.svg"
  24697. }
  24698. },
  24699. cockAlt: {
  24700. height: math.unit(1.437, "feet"),
  24701. name: "Cock (alt)",
  24702. image: {
  24703. source: "./media/characters/logan-grey/cock-alt.svg"
  24704. }
  24705. },
  24706. },
  24707. [
  24708. {
  24709. name: "Normal",
  24710. height: math.unit(5 + 8 / 12, "feet")
  24711. },
  24712. {
  24713. name: "The 500 Foot Femboy",
  24714. height: math.unit(500, "feet"),
  24715. default: true
  24716. },
  24717. {
  24718. name: "Megmacro",
  24719. height: math.unit(20, "miles")
  24720. },
  24721. ]
  24722. ))
  24723. characterMakers.push(() => makeCharacter(
  24724. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24725. {
  24726. front: {
  24727. height: math.unit(8 + 2 / 12, "feet"),
  24728. weight: math.unit(275, "lb"),
  24729. name: "Front",
  24730. image: {
  24731. source: "./media/characters/draganta/front.svg",
  24732. extra: 1177 / 1135,
  24733. bottom: 33.46 / 1212.1
  24734. }
  24735. },
  24736. },
  24737. [
  24738. {
  24739. name: "Normal",
  24740. height: math.unit(8 + 6 / 12, "feet"),
  24741. default: true
  24742. },
  24743. {
  24744. name: "Macro",
  24745. height: math.unit(150, "feet")
  24746. },
  24747. {
  24748. name: "Megamacro",
  24749. height: math.unit(1000, "miles")
  24750. },
  24751. ]
  24752. ))
  24753. characterMakers.push(() => makeCharacter(
  24754. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24755. {
  24756. front: {
  24757. height: math.unit(1.72, "m"),
  24758. weight: math.unit(80, "lb"),
  24759. name: "Front",
  24760. image: {
  24761. source: "./media/characters/voski/front.svg",
  24762. extra: 2076.22 / 2022.4,
  24763. bottom: 102.7 / 2177.3866
  24764. }
  24765. },
  24766. frontFlaccid: {
  24767. height: math.unit(1.72, "m"),
  24768. weight: math.unit(80, "lb"),
  24769. name: "Front (Flaccid)",
  24770. image: {
  24771. source: "./media/characters/voski/front-flaccid.svg",
  24772. extra: 2076.22 / 2022.4,
  24773. bottom: 102.7 / 2177.3866
  24774. }
  24775. },
  24776. frontErect: {
  24777. height: math.unit(1.72, "m"),
  24778. weight: math.unit(80, "lb"),
  24779. name: "Front (Erect)",
  24780. image: {
  24781. source: "./media/characters/voski/front-erect.svg",
  24782. extra: 2076.22 / 2022.4,
  24783. bottom: 102.7 / 2177.3866
  24784. }
  24785. },
  24786. back: {
  24787. height: math.unit(1.72, "m"),
  24788. weight: math.unit(80, "lb"),
  24789. name: "Back",
  24790. image: {
  24791. source: "./media/characters/voski/back.svg",
  24792. extra: 2104 / 2051,
  24793. bottom: 10.45 / 2113.63
  24794. }
  24795. },
  24796. },
  24797. [
  24798. {
  24799. name: "Normal",
  24800. height: math.unit(1.72, "m")
  24801. },
  24802. {
  24803. name: "Macro",
  24804. height: math.unit(55, "m"),
  24805. default: true
  24806. },
  24807. {
  24808. name: "Macro+",
  24809. height: math.unit(300, "m")
  24810. },
  24811. {
  24812. name: "Macro++",
  24813. height: math.unit(700, "m")
  24814. },
  24815. {
  24816. name: "Macro+++",
  24817. height: math.unit(4500, "m")
  24818. },
  24819. {
  24820. name: "Macro++++",
  24821. height: math.unit(45, "km")
  24822. },
  24823. {
  24824. name: "Macro+++++",
  24825. height: math.unit(1220, "km")
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24831. {
  24832. front: {
  24833. height: math.unit(2.3, "m"),
  24834. weight: math.unit(304, "kg"),
  24835. name: "Front",
  24836. image: {
  24837. source: "./media/characters/icowom-lee/front.svg",
  24838. extra: 985 / 955,
  24839. bottom: 25.4 / 1012
  24840. }
  24841. },
  24842. fronttentacles: {
  24843. height: math.unit(2.3, "m"),
  24844. weight: math.unit(304, "kg"),
  24845. name: "Front-tentacles",
  24846. image: {
  24847. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24848. extra: 985 / 955,
  24849. bottom: 25.4 / 1012
  24850. }
  24851. },
  24852. back: {
  24853. height: math.unit(2.3, "m"),
  24854. weight: math.unit(304, "kg"),
  24855. name: "Back",
  24856. image: {
  24857. source: "./media/characters/icowom-lee/back.svg",
  24858. extra: 975 / 954,
  24859. bottom: 9.5 / 985
  24860. }
  24861. },
  24862. backtentacles: {
  24863. height: math.unit(2.3, "m"),
  24864. weight: math.unit(304, "kg"),
  24865. name: "Back-tentacles",
  24866. image: {
  24867. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24868. extra: 975 / 954,
  24869. bottom: 9.5 / 985
  24870. }
  24871. },
  24872. frontDressed: {
  24873. height: math.unit(2.3, "m"),
  24874. weight: math.unit(304, "kg"),
  24875. name: "Front (Dressed)",
  24876. image: {
  24877. source: "./media/characters/icowom-lee/front-dressed.svg",
  24878. extra: 3076 / 2933,
  24879. bottom: 51.4 / 3125.1889
  24880. }
  24881. },
  24882. rump: {
  24883. height: math.unit(0.776, "meters"),
  24884. name: "Rump",
  24885. image: {
  24886. source: "./media/characters/icowom-lee/rump.svg"
  24887. }
  24888. },
  24889. genitals: {
  24890. height: math.unit(0.78, "meters"),
  24891. name: "Genitals",
  24892. image: {
  24893. source: "./media/characters/icowom-lee/genitals.svg"
  24894. }
  24895. },
  24896. },
  24897. [
  24898. {
  24899. name: "Normal",
  24900. height: math.unit(2.3, "meters"),
  24901. default: true
  24902. },
  24903. {
  24904. name: "Macro",
  24905. height: math.unit(94, "meters"),
  24906. default: true
  24907. },
  24908. ]
  24909. ))
  24910. characterMakers.push(() => makeCharacter(
  24911. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24912. {
  24913. front: {
  24914. height: math.unit(22, "meters"),
  24915. weight: math.unit(21000, "kg"),
  24916. name: "Front",
  24917. image: {
  24918. source: "./media/characters/shock-diamond/front.svg",
  24919. extra: 2204 / 2053,
  24920. bottom: 65 / 2239.47
  24921. }
  24922. },
  24923. frontNude: {
  24924. height: math.unit(22, "meters"),
  24925. weight: math.unit(21000, "kg"),
  24926. name: "Front (Nude)",
  24927. image: {
  24928. source: "./media/characters/shock-diamond/front-nude.svg",
  24929. extra: 2514 / 2285,
  24930. bottom: 13 / 2527.56
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Normal",
  24937. height: math.unit(3, "meters")
  24938. },
  24939. {
  24940. name: "Macro",
  24941. height: math.unit(22, "meters"),
  24942. default: true
  24943. },
  24944. ]
  24945. ))
  24946. characterMakers.push(() => makeCharacter(
  24947. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24948. {
  24949. front: {
  24950. height: math.unit(5 + 4/12, "feet"),
  24951. weight: math.unit(125, "lb"),
  24952. name: "Front",
  24953. image: {
  24954. source: "./media/characters/rory/front.svg",
  24955. extra: 1790/1681,
  24956. bottom: 66/1856
  24957. },
  24958. form: "normal",
  24959. default: true
  24960. },
  24961. back: {
  24962. height: math.unit(5 + 4/12, "feet"),
  24963. weight: math.unit(125, "lb"),
  24964. name: "Back",
  24965. image: {
  24966. source: "./media/characters/rory/back.svg",
  24967. extra: 1805/1690,
  24968. bottom: 56/1861
  24969. },
  24970. form: "normal"
  24971. },
  24972. frontDressed: {
  24973. height: math.unit(5 + 4/12, "feet"),
  24974. weight: math.unit(125, "lb"),
  24975. name: "Front (Dressed)",
  24976. image: {
  24977. source: "./media/characters/rory/front-dressed.svg",
  24978. extra: 1790/1681,
  24979. bottom: 66/1856
  24980. },
  24981. form: "normal"
  24982. },
  24983. backDressed: {
  24984. height: math.unit(5 + 4/12, "feet"),
  24985. weight: math.unit(125, "lb"),
  24986. name: "Back (Dressed)",
  24987. image: {
  24988. source: "./media/characters/rory/back-dressed.svg",
  24989. extra: 1805/1690,
  24990. bottom: 56/1861
  24991. },
  24992. form: "normal"
  24993. },
  24994. frontNsfw: {
  24995. height: math.unit(5 + 4/12, "feet"),
  24996. weight: math.unit(125, "lb"),
  24997. name: "Front (NSFW)",
  24998. image: {
  24999. source: "./media/characters/rory/front-nsfw.svg",
  25000. extra: 1790/1681,
  25001. bottom: 66/1856
  25002. },
  25003. form: "normal"
  25004. },
  25005. backNsfw: {
  25006. height: math.unit(5 + 4/12, "feet"),
  25007. weight: math.unit(125, "lb"),
  25008. name: "Back (NSFW)",
  25009. image: {
  25010. source: "./media/characters/rory/back-nsfw.svg",
  25011. extra: 1805/1690,
  25012. bottom: 56/1861
  25013. },
  25014. form: "normal"
  25015. },
  25016. dick: {
  25017. height: math.unit(0.8, "feet"),
  25018. name: "Dick",
  25019. image: {
  25020. source: "./media/characters/rory/dick.svg"
  25021. },
  25022. form: "normal"
  25023. },
  25024. thicc_front: {
  25025. height: math.unit(5 + 4/12, "feet"),
  25026. weight: math.unit(195, "lb"),
  25027. name: "Front",
  25028. image: {
  25029. source: "./media/characters/rory/thicc-front.svg",
  25030. extra: 1220/1100,
  25031. bottom: 103/1323
  25032. },
  25033. form: "thicc",
  25034. default: true
  25035. },
  25036. thicc_back: {
  25037. height: math.unit(5 + 4/12, "feet"),
  25038. weight: math.unit(195, "lb"),
  25039. name: "Back",
  25040. image: {
  25041. source: "./media/characters/rory/thicc-back.svg",
  25042. extra: 1166/1086,
  25043. bottom: 35/1201
  25044. },
  25045. form: "thicc"
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Micro",
  25051. height: math.unit(3, "inches"),
  25052. allForms: true
  25053. },
  25054. {
  25055. name: "Normal",
  25056. height: math.unit(5 + 4/12, "feet"),
  25057. allForms: true,
  25058. default: true
  25059. },
  25060. {
  25061. name: "Macro",
  25062. height: math.unit(90, "feet"),
  25063. allForms: true
  25064. },
  25065. {
  25066. name: "Supercharged",
  25067. height: math.unit(270, "feet"),
  25068. allForms: true
  25069. },
  25070. ],
  25071. {
  25072. "normal": {
  25073. name: "Normal",
  25074. default: true
  25075. },
  25076. "thicc": {
  25077. name: "Thicc",
  25078. },
  25079. }
  25080. ))
  25081. characterMakers.push(() => makeCharacter(
  25082. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25083. {
  25084. front: {
  25085. height: math.unit(5 + 9 / 12, "feet"),
  25086. weight: math.unit(190, "lb"),
  25087. name: "Front",
  25088. image: {
  25089. source: "./media/characters/sprisk/front.svg",
  25090. extra: 1225 / 1180,
  25091. bottom: 42.7 / 1266.4
  25092. }
  25093. },
  25094. frontNsfw: {
  25095. height: math.unit(5 + 9 / 12, "feet"),
  25096. weight: math.unit(190, "lb"),
  25097. name: "Front (NSFW)",
  25098. image: {
  25099. source: "./media/characters/sprisk/front-nsfw.svg",
  25100. extra: 1225 / 1180,
  25101. bottom: 42.7 / 1266.4
  25102. }
  25103. },
  25104. back: {
  25105. height: math.unit(5 + 9 / 12, "feet"),
  25106. weight: math.unit(190, "lb"),
  25107. name: "Back",
  25108. image: {
  25109. source: "./media/characters/sprisk/back.svg",
  25110. extra: 1247 / 1200,
  25111. bottom: 5.6 / 1253.04
  25112. }
  25113. },
  25114. },
  25115. [
  25116. {
  25117. name: "Tiny",
  25118. height: math.unit(2, "inches")
  25119. },
  25120. {
  25121. name: "Normal",
  25122. height: math.unit(5 + 9 / 12, "feet"),
  25123. default: true
  25124. },
  25125. {
  25126. name: "Mini Macro",
  25127. height: math.unit(18, "feet")
  25128. },
  25129. {
  25130. name: "Macro",
  25131. height: math.unit(100, "feet")
  25132. },
  25133. {
  25134. name: "MACRO",
  25135. height: math.unit(50, "miles")
  25136. },
  25137. {
  25138. name: "M A C R O",
  25139. height: math.unit(300, "miles")
  25140. },
  25141. ]
  25142. ))
  25143. characterMakers.push(() => makeCharacter(
  25144. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25145. {
  25146. side: {
  25147. height: math.unit(15.6, "meters"),
  25148. weight: math.unit(700000, "kg"),
  25149. name: "Side",
  25150. image: {
  25151. source: "./media/characters/bunsen/side.svg",
  25152. extra: 1644 / 358
  25153. }
  25154. },
  25155. foot: {
  25156. height: math.unit(1.611 * 1644 / 358, "meter"),
  25157. name: "Foot",
  25158. image: {
  25159. source: "./media/characters/bunsen/foot.svg"
  25160. }
  25161. },
  25162. },
  25163. [
  25164. {
  25165. name: "Small",
  25166. height: math.unit(10, "feet")
  25167. },
  25168. {
  25169. name: "Normal",
  25170. height: math.unit(15.6, "meters"),
  25171. default: true
  25172. },
  25173. ]
  25174. ))
  25175. characterMakers.push(() => makeCharacter(
  25176. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25177. {
  25178. front: {
  25179. height: math.unit(4 + 11 / 12, "feet"),
  25180. weight: math.unit(140, "lb"),
  25181. name: "Front",
  25182. image: {
  25183. source: "./media/characters/sesh/front.svg",
  25184. extra: 3420 / 3231,
  25185. bottom: 72 / 3949.5
  25186. }
  25187. },
  25188. },
  25189. [
  25190. {
  25191. name: "Normal",
  25192. height: math.unit(4 + 11 / 12, "feet")
  25193. },
  25194. {
  25195. name: "Grown",
  25196. height: math.unit(15, "feet"),
  25197. default: true
  25198. },
  25199. {
  25200. name: "Macro",
  25201. height: math.unit(1500, "feet")
  25202. },
  25203. {
  25204. name: "Megamacro",
  25205. height: math.unit(30, "miles")
  25206. },
  25207. {
  25208. name: "Continental",
  25209. height: math.unit(3000, "miles")
  25210. },
  25211. {
  25212. name: "Gravity Mass",
  25213. height: math.unit(300000, "miles")
  25214. },
  25215. {
  25216. name: "Planet Buster",
  25217. height: math.unit(30000000, "miles")
  25218. },
  25219. {
  25220. name: "Big",
  25221. height: math.unit(3000000000, "miles")
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25227. {
  25228. front: {
  25229. height: math.unit(9, "feet"),
  25230. weight: math.unit(350, "lb"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/pepper/front.svg",
  25234. extra: 1448 / 1312,
  25235. bottom: 9.4 / 1457.88
  25236. }
  25237. },
  25238. back: {
  25239. height: math.unit(9, "feet"),
  25240. weight: math.unit(350, "lb"),
  25241. name: "Back",
  25242. image: {
  25243. source: "./media/characters/pepper/back.svg",
  25244. extra: 1423 / 1300,
  25245. bottom: 4.6 / 1429
  25246. }
  25247. },
  25248. maw: {
  25249. height: math.unit(0.932, "feet"),
  25250. name: "Maw",
  25251. image: {
  25252. source: "./media/characters/pepper/maw.svg"
  25253. }
  25254. },
  25255. },
  25256. [
  25257. {
  25258. name: "Normal",
  25259. height: math.unit(9, "feet"),
  25260. default: true
  25261. },
  25262. ]
  25263. ))
  25264. characterMakers.push(() => makeCharacter(
  25265. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25266. {
  25267. front: {
  25268. height: math.unit(6, "feet"),
  25269. weight: math.unit(150, "lb"),
  25270. name: "Front",
  25271. image: {
  25272. source: "./media/characters/maelstrom/front.svg",
  25273. extra: 2100 / 1883,
  25274. bottom: 94 / 2196.7
  25275. }
  25276. },
  25277. },
  25278. [
  25279. {
  25280. name: "Less Kaiju",
  25281. height: math.unit(200, "feet")
  25282. },
  25283. {
  25284. name: "Kaiju",
  25285. height: math.unit(400, "feet"),
  25286. default: true
  25287. },
  25288. {
  25289. name: "Kaiju-er",
  25290. height: math.unit(600, "feet")
  25291. },
  25292. ]
  25293. ))
  25294. characterMakers.push(() => makeCharacter(
  25295. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25296. {
  25297. front: {
  25298. height: math.unit(6 + 5 / 12, "feet"),
  25299. weight: math.unit(180, "lb"),
  25300. name: "Front",
  25301. image: {
  25302. source: "./media/characters/lexir/front.svg",
  25303. extra: 180 / 172,
  25304. bottom: 12 / 192
  25305. }
  25306. },
  25307. back: {
  25308. height: math.unit(6 + 5 / 12, "feet"),
  25309. weight: math.unit(180, "lb"),
  25310. name: "Back",
  25311. image: {
  25312. source: "./media/characters/lexir/back.svg",
  25313. extra: 1273/1201,
  25314. bottom: 39/1312
  25315. }
  25316. },
  25317. },
  25318. [
  25319. {
  25320. name: "Very Smal",
  25321. height: math.unit(1, "nm")
  25322. },
  25323. {
  25324. name: "Normal",
  25325. height: math.unit(6 + 5 / 12, "feet"),
  25326. default: true
  25327. },
  25328. {
  25329. name: "Macro",
  25330. height: math.unit(1, "mile")
  25331. },
  25332. {
  25333. name: "Megamacro",
  25334. height: math.unit(50, "miles")
  25335. },
  25336. ]
  25337. ))
  25338. characterMakers.push(() => makeCharacter(
  25339. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25340. {
  25341. front: {
  25342. height: math.unit(1.5, "meters"),
  25343. weight: math.unit(100, "lb"),
  25344. name: "Front",
  25345. image: {
  25346. source: "./media/characters/maksio/front.svg",
  25347. extra: 1549 / 1531,
  25348. bottom: 123.7 / 1674.5429
  25349. }
  25350. },
  25351. back: {
  25352. height: math.unit(1.5, "meters"),
  25353. weight: math.unit(100, "lb"),
  25354. name: "Back",
  25355. image: {
  25356. source: "./media/characters/maksio/back.svg",
  25357. extra: 1541 / 1509,
  25358. bottom: 97 / 1639
  25359. }
  25360. },
  25361. hand: {
  25362. height: math.unit(0.621, "feet"),
  25363. name: "Hand",
  25364. image: {
  25365. source: "./media/characters/maksio/hand.svg"
  25366. }
  25367. },
  25368. foot: {
  25369. height: math.unit(1.611, "feet"),
  25370. name: "Foot",
  25371. image: {
  25372. source: "./media/characters/maksio/foot.svg"
  25373. }
  25374. },
  25375. },
  25376. [
  25377. {
  25378. name: "Shrunken",
  25379. height: math.unit(10, "cm")
  25380. },
  25381. {
  25382. name: "Normal",
  25383. height: math.unit(150, "cm"),
  25384. default: true
  25385. },
  25386. ]
  25387. ))
  25388. characterMakers.push(() => makeCharacter(
  25389. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25390. {
  25391. front: {
  25392. height: math.unit(100, "feet"),
  25393. name: "Front",
  25394. image: {
  25395. source: "./media/characters/erza-bear/front.svg",
  25396. extra: 2449 / 2390,
  25397. bottom: 46 / 2494
  25398. }
  25399. },
  25400. back: {
  25401. height: math.unit(100, "feet"),
  25402. name: "Back",
  25403. image: {
  25404. source: "./media/characters/erza-bear/back.svg",
  25405. extra: 2489 / 2430,
  25406. bottom: 85.4 / 2480
  25407. }
  25408. },
  25409. tail: {
  25410. height: math.unit(42, "feet"),
  25411. name: "Tail",
  25412. image: {
  25413. source: "./media/characters/erza-bear/tail.svg"
  25414. }
  25415. },
  25416. tongue: {
  25417. height: math.unit(8, "feet"),
  25418. name: "Tongue",
  25419. image: {
  25420. source: "./media/characters/erza-bear/tongue.svg"
  25421. }
  25422. },
  25423. dick: {
  25424. height: math.unit(10.5, "feet"),
  25425. name: "Dick",
  25426. image: {
  25427. source: "./media/characters/erza-bear/dick.svg"
  25428. }
  25429. },
  25430. dickVertical: {
  25431. height: math.unit(16.9, "feet"),
  25432. name: "Dick (Vertical)",
  25433. image: {
  25434. source: "./media/characters/erza-bear/dick-vertical.svg"
  25435. }
  25436. },
  25437. },
  25438. [
  25439. {
  25440. name: "Macro",
  25441. height: math.unit(100, "feet"),
  25442. default: true
  25443. },
  25444. ]
  25445. ))
  25446. characterMakers.push(() => makeCharacter(
  25447. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25448. {
  25449. front: {
  25450. height: math.unit(172, "cm"),
  25451. weight: math.unit(73, "kg"),
  25452. name: "Front",
  25453. image: {
  25454. source: "./media/characters/violet-flor/front.svg",
  25455. extra: 1530 / 1442,
  25456. bottom: 61.9 / 1588.8
  25457. }
  25458. },
  25459. back: {
  25460. height: math.unit(180, "cm"),
  25461. weight: math.unit(73, "kg"),
  25462. name: "Back",
  25463. image: {
  25464. source: "./media/characters/violet-flor/back.svg",
  25465. extra: 1692 / 1630,
  25466. bottom: 20 / 1712
  25467. }
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Normal",
  25473. height: math.unit(172, "cm"),
  25474. default: true
  25475. },
  25476. ]
  25477. ))
  25478. characterMakers.push(() => makeCharacter(
  25479. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25480. {
  25481. front: {
  25482. height: math.unit(6, "feet"),
  25483. weight: math.unit(220, "lb"),
  25484. name: "Front",
  25485. image: {
  25486. source: "./media/characters/lynn-rhea/front.svg",
  25487. extra: 310 / 273
  25488. }
  25489. },
  25490. back: {
  25491. height: math.unit(6, "feet"),
  25492. weight: math.unit(220, "lb"),
  25493. name: "Back",
  25494. image: {
  25495. source: "./media/characters/lynn-rhea/back.svg",
  25496. extra: 310 / 273
  25497. }
  25498. },
  25499. dicks: {
  25500. height: math.unit(0.9, "feet"),
  25501. name: "Dicks",
  25502. image: {
  25503. source: "./media/characters/lynn-rhea/dicks.svg"
  25504. }
  25505. },
  25506. slit: {
  25507. height: math.unit(0.4, "feet"),
  25508. name: "Slit",
  25509. image: {
  25510. source: "./media/characters/lynn-rhea/slit.svg"
  25511. }
  25512. },
  25513. },
  25514. [
  25515. {
  25516. name: "Micro",
  25517. height: math.unit(1, "inch")
  25518. },
  25519. {
  25520. name: "Macro",
  25521. height: math.unit(60, "feet"),
  25522. default: true
  25523. },
  25524. {
  25525. name: "Megamacro",
  25526. height: math.unit(2, "miles")
  25527. },
  25528. {
  25529. name: "Gigamacro",
  25530. height: math.unit(3, "earths")
  25531. },
  25532. {
  25533. name: "Galactic",
  25534. height: math.unit(0.8, "galaxies")
  25535. },
  25536. ]
  25537. ))
  25538. characterMakers.push(() => makeCharacter(
  25539. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25540. {
  25541. front: {
  25542. height: math.unit(1600, "feet"),
  25543. weight: math.unit(85758785169, "kg"),
  25544. name: "Front",
  25545. image: {
  25546. source: "./media/characters/valathos/front.svg",
  25547. extra: 1451 / 1339
  25548. }
  25549. },
  25550. },
  25551. [
  25552. {
  25553. name: "Macro",
  25554. height: math.unit(1600, "feet"),
  25555. default: true
  25556. },
  25557. ]
  25558. ))
  25559. characterMakers.push(() => makeCharacter(
  25560. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25561. {
  25562. front: {
  25563. height: math.unit(7 + 5 / 12, "feet"),
  25564. weight: math.unit(300, "lb"),
  25565. name: "Front",
  25566. image: {
  25567. source: "./media/characters/azula/front.svg",
  25568. extra: 3208 / 2880,
  25569. bottom: 80.2 / 3277
  25570. }
  25571. },
  25572. back: {
  25573. height: math.unit(7 + 5 / 12, "feet"),
  25574. weight: math.unit(300, "lb"),
  25575. name: "Back",
  25576. image: {
  25577. source: "./media/characters/azula/back.svg",
  25578. extra: 3169 / 2822,
  25579. bottom: 150.6 / 3321
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Normal",
  25586. height: math.unit(7 + 5 / 12, "feet"),
  25587. default: true
  25588. },
  25589. {
  25590. name: "Big",
  25591. height: math.unit(20, "feet")
  25592. },
  25593. ]
  25594. ))
  25595. characterMakers.push(() => makeCharacter(
  25596. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25597. {
  25598. front: {
  25599. height: math.unit(5 + 1 / 12, "feet"),
  25600. weight: math.unit(110, "lb"),
  25601. name: "Front",
  25602. image: {
  25603. source: "./media/characters/rupert/front.svg",
  25604. extra: 1549 / 1495,
  25605. bottom: 54.2 / 1604.4
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Normal",
  25612. height: math.unit(5 + 1 / 12, "feet"),
  25613. default: true
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25619. {
  25620. front: {
  25621. height: math.unit(8 + 4 / 12, "feet"),
  25622. weight: math.unit(350, "lb"),
  25623. name: "Front",
  25624. image: {
  25625. source: "./media/characters/sheera-castellar/front.svg",
  25626. extra: 1957 / 1894,
  25627. bottom: 26.97 / 1975.017
  25628. }
  25629. },
  25630. side: {
  25631. height: math.unit(8 + 4 / 12, "feet"),
  25632. weight: math.unit(350, "lb"),
  25633. name: "Side",
  25634. image: {
  25635. source: "./media/characters/sheera-castellar/side.svg",
  25636. extra: 1957 / 1894
  25637. }
  25638. },
  25639. back: {
  25640. height: math.unit(8 + 4 / 12, "feet"),
  25641. weight: math.unit(350, "lb"),
  25642. name: "Back",
  25643. image: {
  25644. source: "./media/characters/sheera-castellar/back.svg",
  25645. extra: 1957 / 1894
  25646. }
  25647. },
  25648. angled: {
  25649. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25650. weight: math.unit(350, "lb"),
  25651. name: "Angled",
  25652. image: {
  25653. source: "./media/characters/sheera-castellar/angled.svg",
  25654. extra: 1807 / 1707,
  25655. bottom: 68 / 1875
  25656. }
  25657. },
  25658. genitals: {
  25659. height: math.unit(2.2, "feet"),
  25660. name: "Genitals",
  25661. image: {
  25662. source: "./media/characters/sheera-castellar/genitals.svg"
  25663. }
  25664. },
  25665. taur: {
  25666. height: math.unit(10 + 6/12, "feet"),
  25667. name: "Taur",
  25668. image: {
  25669. source: "./media/characters/sheera-castellar/taur.svg",
  25670. extra: 2017/1909,
  25671. bottom: 185/2202
  25672. }
  25673. },
  25674. },
  25675. [
  25676. {
  25677. name: "Normal",
  25678. height: math.unit(8 + 4 / 12, "feet")
  25679. },
  25680. {
  25681. name: "Macro",
  25682. height: math.unit(150, "feet"),
  25683. default: true
  25684. },
  25685. {
  25686. name: "Macro+",
  25687. height: math.unit(800, "feet")
  25688. },
  25689. ]
  25690. ))
  25691. characterMakers.push(() => makeCharacter(
  25692. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25693. {
  25694. front: {
  25695. height: math.unit(6, "feet"),
  25696. weight: math.unit(150, "lb"),
  25697. name: "Front",
  25698. image: {
  25699. source: "./media/characters/jaipur/front.svg",
  25700. extra: 3860 / 3731,
  25701. bottom: 287 / 4140
  25702. }
  25703. },
  25704. back: {
  25705. height: math.unit(6, "feet"),
  25706. weight: math.unit(150, "lb"),
  25707. name: "Back",
  25708. image: {
  25709. source: "./media/characters/jaipur/back.svg",
  25710. extra: 1637/1561,
  25711. bottom: 154/1791
  25712. }
  25713. },
  25714. },
  25715. [
  25716. {
  25717. name: "Normal",
  25718. height: math.unit(1.85, "meters"),
  25719. default: true
  25720. },
  25721. {
  25722. name: "Macro",
  25723. height: math.unit(150, "meters")
  25724. },
  25725. {
  25726. name: "Macro+",
  25727. height: math.unit(0.5, "miles")
  25728. },
  25729. {
  25730. name: "Macro++",
  25731. height: math.unit(2.5, "miles")
  25732. },
  25733. {
  25734. name: "Macro+++",
  25735. height: math.unit(12, "miles")
  25736. },
  25737. {
  25738. name: "Macro++++",
  25739. height: math.unit(120, "miles")
  25740. },
  25741. {
  25742. name: "Macro+++++",
  25743. height: math.unit(1200, "miles")
  25744. },
  25745. ]
  25746. ))
  25747. characterMakers.push(() => makeCharacter(
  25748. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25749. {
  25750. front: {
  25751. height: math.unit(6, "feet"),
  25752. weight: math.unit(150, "lb"),
  25753. name: "Front",
  25754. image: {
  25755. source: "./media/characters/sheila-wolf/front.svg",
  25756. extra: 1931 / 1808,
  25757. bottom: 29.5 / 1960
  25758. }
  25759. },
  25760. dick: {
  25761. height: math.unit(1.464, "feet"),
  25762. name: "Dick",
  25763. image: {
  25764. source: "./media/characters/sheila-wolf/dick.svg"
  25765. }
  25766. },
  25767. muzzle: {
  25768. height: math.unit(0.513, "feet"),
  25769. name: "Muzzle",
  25770. image: {
  25771. source: "./media/characters/sheila-wolf/muzzle.svg"
  25772. }
  25773. },
  25774. },
  25775. [
  25776. {
  25777. name: "Macro",
  25778. height: math.unit(70, "feet"),
  25779. default: true
  25780. },
  25781. ]
  25782. ))
  25783. characterMakers.push(() => makeCharacter(
  25784. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25785. {
  25786. front: {
  25787. height: math.unit(32, "meters"),
  25788. weight: math.unit(300000, "kg"),
  25789. name: "Front",
  25790. image: {
  25791. source: "./media/characters/almor/front.svg",
  25792. extra: 1408 / 1322,
  25793. bottom: 94.6 / 1506.5
  25794. }
  25795. },
  25796. },
  25797. [
  25798. {
  25799. name: "Macro",
  25800. height: math.unit(32, "meters"),
  25801. default: true
  25802. },
  25803. ]
  25804. ))
  25805. characterMakers.push(() => makeCharacter(
  25806. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25807. {
  25808. front: {
  25809. height: math.unit(7, "feet"),
  25810. weight: math.unit(200, "lb"),
  25811. name: "Front",
  25812. image: {
  25813. source: "./media/characters/silver/front.svg",
  25814. extra: 472.1 / 450.5,
  25815. bottom: 26.5 / 499.424
  25816. }
  25817. },
  25818. },
  25819. [
  25820. {
  25821. name: "Normal",
  25822. height: math.unit(7, "feet"),
  25823. default: true
  25824. },
  25825. {
  25826. name: "Macro",
  25827. height: math.unit(800, "feet")
  25828. },
  25829. {
  25830. name: "Megamacro",
  25831. height: math.unit(250, "miles")
  25832. },
  25833. ]
  25834. ))
  25835. characterMakers.push(() => makeCharacter(
  25836. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25837. {
  25838. front: {
  25839. height: math.unit(6, "feet"),
  25840. weight: math.unit(150, "lb"),
  25841. name: "Front",
  25842. image: {
  25843. source: "./media/characters/pliskin/front.svg",
  25844. extra: 1469 / 1359,
  25845. bottom: 70 / 1540
  25846. }
  25847. },
  25848. },
  25849. [
  25850. {
  25851. name: "Micro",
  25852. height: math.unit(3, "inches")
  25853. },
  25854. {
  25855. name: "Normal",
  25856. height: math.unit(5 + 11 / 12, "feet"),
  25857. default: true
  25858. },
  25859. {
  25860. name: "Macro",
  25861. height: math.unit(120, "feet")
  25862. },
  25863. ]
  25864. ))
  25865. characterMakers.push(() => makeCharacter(
  25866. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25867. {
  25868. front: {
  25869. height: math.unit(6, "feet"),
  25870. weight: math.unit(150, "lb"),
  25871. name: "Front",
  25872. image: {
  25873. source: "./media/characters/sammy/front.svg",
  25874. extra: 1193 / 1089,
  25875. bottom: 30.5 / 1226
  25876. }
  25877. },
  25878. },
  25879. [
  25880. {
  25881. name: "Macro",
  25882. height: math.unit(1700, "feet"),
  25883. default: true
  25884. },
  25885. {
  25886. name: "Examacro",
  25887. height: math.unit(2.5e9, "lightyears")
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25893. {
  25894. front: {
  25895. height: math.unit(21, "meters"),
  25896. weight: math.unit(12, "tonnes"),
  25897. name: "Front",
  25898. image: {
  25899. source: "./media/characters/kuru/front.svg",
  25900. extra: 4301 / 3785,
  25901. bottom: 371.3 / 4691
  25902. }
  25903. },
  25904. },
  25905. [
  25906. {
  25907. name: "Macro",
  25908. height: math.unit(21, "meters"),
  25909. default: true
  25910. },
  25911. ]
  25912. ))
  25913. characterMakers.push(() => makeCharacter(
  25914. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25915. {
  25916. front: {
  25917. height: math.unit(23, "meters"),
  25918. weight: math.unit(12.2, "tonnes"),
  25919. name: "Front",
  25920. image: {
  25921. source: "./media/characters/rakka/front.svg",
  25922. extra: 4670 / 4169,
  25923. bottom: 301 / 4968.7
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Macro",
  25930. height: math.unit(23, "meters"),
  25931. default: true
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(6, "feet"),
  25940. weight: math.unit(150, "lb"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/rhys-feline/front.svg",
  25944. extra: 2488 / 2308,
  25945. bottom: 35.67 / 2519.19
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Really Small",
  25952. height: math.unit(1, "nm")
  25953. },
  25954. {
  25955. name: "Micro",
  25956. height: math.unit(4, "inches")
  25957. },
  25958. {
  25959. name: "Normal",
  25960. height: math.unit(4 + 10 / 12, "feet"),
  25961. default: true
  25962. },
  25963. {
  25964. name: "Macro",
  25965. height: math.unit(100, "feet")
  25966. },
  25967. {
  25968. name: "Megamacto",
  25969. height: math.unit(50, "miles")
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25975. {
  25976. side: {
  25977. height: math.unit(30, "feet"),
  25978. weight: math.unit(35000, "kg"),
  25979. name: "Side",
  25980. image: {
  25981. source: "./media/characters/alydar/side.svg",
  25982. extra: 234 / 222,
  25983. bottom: 6.5 / 241
  25984. }
  25985. },
  25986. front: {
  25987. height: math.unit(30, "feet"),
  25988. weight: math.unit(35000, "kg"),
  25989. name: "Front",
  25990. image: {
  25991. source: "./media/characters/alydar/front.svg",
  25992. extra: 223.37 / 210.2,
  25993. bottom: 22.3 / 246.76
  25994. }
  25995. },
  25996. top: {
  25997. height: math.unit(64.54, "feet"),
  25998. weight: math.unit(35000, "kg"),
  25999. name: "Top",
  26000. image: {
  26001. source: "./media/characters/alydar/top.svg"
  26002. }
  26003. },
  26004. anthro: {
  26005. height: math.unit(30, "feet"),
  26006. weight: math.unit(9000, "kg"),
  26007. name: "Anthro",
  26008. image: {
  26009. source: "./media/characters/alydar/anthro.svg",
  26010. extra: 432 / 421,
  26011. bottom: 7.18 / 440
  26012. }
  26013. },
  26014. maw: {
  26015. height: math.unit(11.693, "feet"),
  26016. name: "Maw",
  26017. image: {
  26018. source: "./media/characters/alydar/maw.svg"
  26019. }
  26020. },
  26021. head: {
  26022. height: math.unit(11.693, "feet"),
  26023. name: "Head",
  26024. image: {
  26025. source: "./media/characters/alydar/head.svg"
  26026. }
  26027. },
  26028. headAlt: {
  26029. height: math.unit(12.861, "feet"),
  26030. name: "Head (Alt)",
  26031. image: {
  26032. source: "./media/characters/alydar/head-alt.svg"
  26033. }
  26034. },
  26035. wing: {
  26036. height: math.unit(20.712, "feet"),
  26037. name: "Wing",
  26038. image: {
  26039. source: "./media/characters/alydar/wing.svg"
  26040. }
  26041. },
  26042. wingFeather: {
  26043. height: math.unit(9.662, "feet"),
  26044. name: "Wing Feather",
  26045. image: {
  26046. source: "./media/characters/alydar/wing-feather.svg"
  26047. }
  26048. },
  26049. countourFeather: {
  26050. height: math.unit(4.154, "feet"),
  26051. name: "Contour Feather",
  26052. image: {
  26053. source: "./media/characters/alydar/contour-feather.svg"
  26054. }
  26055. },
  26056. },
  26057. [
  26058. {
  26059. name: "Diplomatic",
  26060. height: math.unit(13, "feet"),
  26061. default: true
  26062. },
  26063. {
  26064. name: "Small",
  26065. height: math.unit(30, "feet")
  26066. },
  26067. {
  26068. name: "Normal",
  26069. height: math.unit(95, "feet"),
  26070. default: true
  26071. },
  26072. {
  26073. name: "Large",
  26074. height: math.unit(285, "feet")
  26075. },
  26076. {
  26077. name: "Incomprehensible",
  26078. height: math.unit(450, "megameters")
  26079. },
  26080. ]
  26081. ))
  26082. characterMakers.push(() => makeCharacter(
  26083. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26084. {
  26085. side: {
  26086. height: math.unit(11, "feet"),
  26087. weight: math.unit(1750, "kg"),
  26088. name: "Side",
  26089. image: {
  26090. source: "./media/characters/selicia/side.svg",
  26091. extra: 440 / 396,
  26092. bottom: 24.8 / 465.979
  26093. }
  26094. },
  26095. maw: {
  26096. height: math.unit(4.665, "feet"),
  26097. name: "Maw",
  26098. image: {
  26099. source: "./media/characters/selicia/maw.svg"
  26100. }
  26101. },
  26102. },
  26103. [
  26104. {
  26105. name: "Normal",
  26106. height: math.unit(11, "feet"),
  26107. default: true
  26108. },
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26113. {
  26114. side: {
  26115. height: math.unit(2 + 6 / 12, "feet"),
  26116. weight: math.unit(30, "lb"),
  26117. name: "Side",
  26118. image: {
  26119. source: "./media/characters/layla/side.svg",
  26120. extra: 244 / 188,
  26121. bottom: 18.2 / 262.1
  26122. }
  26123. },
  26124. back: {
  26125. height: math.unit(2 + 6 / 12, "feet"),
  26126. weight: math.unit(30, "lb"),
  26127. name: "Back",
  26128. image: {
  26129. source: "./media/characters/layla/back.svg",
  26130. extra: 308 / 241.5,
  26131. bottom: 8.9 / 316.8
  26132. }
  26133. },
  26134. cumming: {
  26135. height: math.unit(2 + 6 / 12, "feet"),
  26136. weight: math.unit(30, "lb"),
  26137. name: "Cumming",
  26138. image: {
  26139. source: "./media/characters/layla/cumming.svg",
  26140. extra: 342 / 279,
  26141. bottom: 595 / 938
  26142. }
  26143. },
  26144. dickFlaccid: {
  26145. height: math.unit(2.595, "feet"),
  26146. name: "Flaccid Genitals",
  26147. image: {
  26148. source: "./media/characters/layla/dick-flaccid.svg"
  26149. }
  26150. },
  26151. dickErect: {
  26152. height: math.unit(2.359, "feet"),
  26153. name: "Erect Genitals",
  26154. image: {
  26155. source: "./media/characters/layla/dick-erect.svg"
  26156. }
  26157. },
  26158. dragon: {
  26159. height: math.unit(40, "feet"),
  26160. name: "Dragon",
  26161. image: {
  26162. source: "./media/characters/layla/dragon.svg",
  26163. extra: 610/535,
  26164. bottom: 367/977
  26165. }
  26166. },
  26167. taur: {
  26168. height: math.unit(30, "feet"),
  26169. name: "Taur",
  26170. image: {
  26171. source: "./media/characters/layla/taur.svg",
  26172. extra: 1268/1199,
  26173. bottom: 112/1380
  26174. }
  26175. },
  26176. },
  26177. [
  26178. {
  26179. name: "Micro",
  26180. height: math.unit(1, "inch")
  26181. },
  26182. {
  26183. name: "Small",
  26184. height: math.unit(1, "foot")
  26185. },
  26186. {
  26187. name: "Normal",
  26188. height: math.unit(2 + 6 / 12, "feet"),
  26189. default: true
  26190. },
  26191. {
  26192. name: "Macro",
  26193. height: math.unit(200, "feet")
  26194. },
  26195. {
  26196. name: "Megamacro",
  26197. height: math.unit(1000, "miles")
  26198. },
  26199. {
  26200. name: "Planetary",
  26201. height: math.unit(8000, "miles")
  26202. },
  26203. {
  26204. name: "True Layla",
  26205. height: math.unit(200000 * 7, "multiverses")
  26206. },
  26207. ]
  26208. ))
  26209. characterMakers.push(() => makeCharacter(
  26210. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26211. {
  26212. back: {
  26213. height: math.unit(10.5, "feet"),
  26214. weight: math.unit(800, "lb"),
  26215. name: "Back",
  26216. image: {
  26217. source: "./media/characters/knox/back.svg",
  26218. extra: 1486 / 1089,
  26219. bottom: 107 / 1601.4
  26220. }
  26221. },
  26222. side: {
  26223. height: math.unit(10.5, "feet"),
  26224. weight: math.unit(800, "lb"),
  26225. name: "Side",
  26226. image: {
  26227. source: "./media/characters/knox/side.svg",
  26228. extra: 244 / 218,
  26229. bottom: 14 / 260
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Compact",
  26236. height: math.unit(10.5, "feet"),
  26237. default: true
  26238. },
  26239. {
  26240. name: "Dynamax",
  26241. height: math.unit(210, "feet")
  26242. },
  26243. {
  26244. name: "Full Macro",
  26245. height: math.unit(850, "feet")
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26251. {
  26252. front: {
  26253. height: math.unit(28, "feet"),
  26254. weight: math.unit(10500, "lb"),
  26255. name: "Front",
  26256. image: {
  26257. source: "./media/characters/kayda/front.svg",
  26258. extra: 1536 / 1428,
  26259. bottom: 68.7 / 1603
  26260. }
  26261. },
  26262. back: {
  26263. height: math.unit(28, "feet"),
  26264. weight: math.unit(10500, "lb"),
  26265. name: "Back",
  26266. image: {
  26267. source: "./media/characters/kayda/back.svg",
  26268. extra: 1557 / 1464,
  26269. bottom: 39.5 / 1597.49
  26270. }
  26271. },
  26272. dick: {
  26273. height: math.unit(3.858, "feet"),
  26274. name: "Dick",
  26275. image: {
  26276. source: "./media/characters/kayda/dick.svg"
  26277. }
  26278. },
  26279. },
  26280. [
  26281. {
  26282. name: "Macro",
  26283. height: math.unit(28, "feet"),
  26284. default: true
  26285. },
  26286. ]
  26287. ))
  26288. characterMakers.push(() => makeCharacter(
  26289. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26290. {
  26291. front: {
  26292. height: math.unit(10 + 11 / 12, "feet"),
  26293. weight: math.unit(1400, "lb"),
  26294. name: "Front",
  26295. image: {
  26296. source: "./media/characters/brian/front.svg",
  26297. extra: 737 / 692,
  26298. bottom: 55.4 / 785
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Normal",
  26305. height: math.unit(10 + 11 / 12, "feet"),
  26306. default: true
  26307. },
  26308. ]
  26309. ))
  26310. characterMakers.push(() => makeCharacter(
  26311. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26312. {
  26313. front: {
  26314. height: math.unit(5 + 8 / 12, "feet"),
  26315. weight: math.unit(140, "lb"),
  26316. name: "Front",
  26317. image: {
  26318. source: "./media/characters/khemri/front.svg",
  26319. extra: 4780 / 4059,
  26320. bottom: 80.1 / 4859.25
  26321. }
  26322. },
  26323. },
  26324. [
  26325. {
  26326. name: "Micro",
  26327. height: math.unit(6, "inches")
  26328. },
  26329. {
  26330. name: "Normal",
  26331. height: math.unit(5 + 8 / 12, "feet"),
  26332. default: true
  26333. },
  26334. ]
  26335. ))
  26336. characterMakers.push(() => makeCharacter(
  26337. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26338. {
  26339. front: {
  26340. height: math.unit(13, "feet"),
  26341. weight: math.unit(1700, "lb"),
  26342. name: "Front",
  26343. image: {
  26344. source: "./media/characters/felix-braveheart/front.svg",
  26345. extra: 1222 / 1157,
  26346. bottom: 53.2 / 1280
  26347. }
  26348. },
  26349. back: {
  26350. height: math.unit(13, "feet"),
  26351. weight: math.unit(1700, "lb"),
  26352. name: "Back",
  26353. image: {
  26354. source: "./media/characters/felix-braveheart/back.svg",
  26355. extra: 1277 / 1203,
  26356. bottom: 50.2 / 1327
  26357. }
  26358. },
  26359. feral: {
  26360. height: math.unit(6, "feet"),
  26361. weight: math.unit(400, "lb"),
  26362. name: "Feral",
  26363. image: {
  26364. source: "./media/characters/felix-braveheart/feral.svg",
  26365. extra: 682 / 625,
  26366. bottom: 6.9 / 688
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(13, "feet"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26380. {
  26381. side: {
  26382. height: math.unit(5 + 11 / 12, "feet"),
  26383. weight: math.unit(1400, "lb"),
  26384. name: "Side",
  26385. image: {
  26386. source: "./media/characters/shadow-blade/side.svg",
  26387. extra: 1726 / 1267,
  26388. bottom: 58.4 / 1785
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Normal",
  26395. height: math.unit(5 + 11 / 12, "feet"),
  26396. default: true
  26397. },
  26398. ]
  26399. ))
  26400. characterMakers.push(() => makeCharacter(
  26401. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26402. {
  26403. front: {
  26404. height: math.unit(1 + 6 / 12, "feet"),
  26405. weight: math.unit(25, "lb"),
  26406. name: "Front",
  26407. image: {
  26408. source: "./media/characters/karla-halldor/front.svg",
  26409. extra: 1459 / 1383,
  26410. bottom: 12 / 1472
  26411. }
  26412. },
  26413. },
  26414. [
  26415. {
  26416. name: "Normal",
  26417. height: math.unit(1 + 6 / 12, "feet"),
  26418. default: true
  26419. },
  26420. ]
  26421. ))
  26422. characterMakers.push(() => makeCharacter(
  26423. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26424. {
  26425. front: {
  26426. height: math.unit(6 + 2 / 12, "feet"),
  26427. weight: math.unit(160, "lb"),
  26428. name: "Front",
  26429. image: {
  26430. source: "./media/characters/ariam/front.svg",
  26431. extra: 1073/976,
  26432. bottom: 52/1125
  26433. }
  26434. },
  26435. back: {
  26436. height: math.unit(6 + 2/12, "feet"),
  26437. weight: math.unit(160, "lb"),
  26438. name: "Back",
  26439. image: {
  26440. source: "./media/characters/ariam/back.svg",
  26441. extra: 1103/1023,
  26442. bottom: 9/1112
  26443. }
  26444. },
  26445. dressed: {
  26446. height: math.unit(6 + 2/12, "feet"),
  26447. weight: math.unit(160, "lb"),
  26448. name: "Dressed",
  26449. image: {
  26450. source: "./media/characters/ariam/dressed.svg",
  26451. extra: 1099/1009,
  26452. bottom: 25/1124
  26453. }
  26454. },
  26455. squatting: {
  26456. height: math.unit(4.1, "feet"),
  26457. weight: math.unit(160, "lb"),
  26458. name: "Squatting",
  26459. image: {
  26460. source: "./media/characters/ariam/squatting.svg",
  26461. extra: 2617 / 2112,
  26462. bottom: 61.2 / 2681,
  26463. }
  26464. },
  26465. },
  26466. [
  26467. {
  26468. name: "Normal",
  26469. height: math.unit(6 + 2 / 12, "feet"),
  26470. default: true
  26471. },
  26472. {
  26473. name: "Normal+",
  26474. height: math.unit(4, "meters")
  26475. },
  26476. {
  26477. name: "Macro",
  26478. height: math.unit(50, "meters")
  26479. },
  26480. {
  26481. name: "Macro+",
  26482. height: math.unit(100, "meters")
  26483. },
  26484. {
  26485. name: "Megamacro",
  26486. height: math.unit(20, "km")
  26487. },
  26488. {
  26489. name: "Caretaker",
  26490. height: math.unit(444, "megameters")
  26491. },
  26492. ]
  26493. ))
  26494. characterMakers.push(() => makeCharacter(
  26495. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26496. {
  26497. front: {
  26498. height: math.unit(1.67, "meters"),
  26499. weight: math.unit(140, "lb"),
  26500. name: "Front",
  26501. image: {
  26502. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26503. extra: 438 / 410,
  26504. bottom: 0.75 / 439
  26505. }
  26506. },
  26507. },
  26508. [
  26509. {
  26510. name: "Shrunken",
  26511. height: math.unit(7.6, "cm")
  26512. },
  26513. {
  26514. name: "Human Scale",
  26515. height: math.unit(1.67, "meters")
  26516. },
  26517. {
  26518. name: "Wolxi Scale",
  26519. height: math.unit(36.7, "meters"),
  26520. default: true
  26521. },
  26522. ]
  26523. ))
  26524. characterMakers.push(() => makeCharacter(
  26525. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26526. {
  26527. front: {
  26528. height: math.unit(1.73, "meters"),
  26529. weight: math.unit(240, "lb"),
  26530. name: "Front",
  26531. image: {
  26532. source: "./media/characters/izue-two-mothers/front.svg",
  26533. extra: 469 / 437,
  26534. bottom: 1.24 / 470.6
  26535. }
  26536. },
  26537. },
  26538. [
  26539. {
  26540. name: "Shrunken",
  26541. height: math.unit(7.86, "cm")
  26542. },
  26543. {
  26544. name: "Human Scale",
  26545. height: math.unit(1.73, "meters")
  26546. },
  26547. {
  26548. name: "Wolxi Scale",
  26549. height: math.unit(38, "meters"),
  26550. default: true
  26551. },
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26556. {
  26557. front: {
  26558. height: math.unit(1.55, "meters"),
  26559. weight: math.unit(120, "lb"),
  26560. name: "Front",
  26561. image: {
  26562. source: "./media/characters/teeku-love-shack/front.svg",
  26563. extra: 387 / 362,
  26564. bottom: 1.51 / 388
  26565. }
  26566. },
  26567. },
  26568. [
  26569. {
  26570. name: "Shrunken",
  26571. height: math.unit(7, "cm")
  26572. },
  26573. {
  26574. name: "Human Scale",
  26575. height: math.unit(1.55, "meters")
  26576. },
  26577. {
  26578. name: "Wolxi Scale",
  26579. height: math.unit(34.1, "meters"),
  26580. default: true
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26586. {
  26587. front: {
  26588. height: math.unit(1.83, "meters"),
  26589. weight: math.unit(135, "lb"),
  26590. name: "Front",
  26591. image: {
  26592. source: "./media/characters/dejma-the-red/front.svg",
  26593. extra: 480 / 458,
  26594. bottom: 1.8 / 482
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Shrunken",
  26601. height: math.unit(8.3, "cm")
  26602. },
  26603. {
  26604. name: "Human Scale",
  26605. height: math.unit(1.83, "meters")
  26606. },
  26607. {
  26608. name: "Wolxi Scale",
  26609. height: math.unit(40, "meters"),
  26610. default: true
  26611. },
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26616. {
  26617. front: {
  26618. height: math.unit(1.78, "meters"),
  26619. weight: math.unit(65, "kg"),
  26620. name: "Front",
  26621. image: {
  26622. source: "./media/characters/aki/front.svg",
  26623. extra: 452 / 415
  26624. }
  26625. },
  26626. frontNsfw: {
  26627. height: math.unit(1.78, "meters"),
  26628. weight: math.unit(65, "kg"),
  26629. name: "Front (NSFW)",
  26630. image: {
  26631. source: "./media/characters/aki/front-nsfw.svg",
  26632. extra: 452 / 415
  26633. }
  26634. },
  26635. back: {
  26636. height: math.unit(1.78, "meters"),
  26637. weight: math.unit(65, "kg"),
  26638. name: "Back",
  26639. image: {
  26640. source: "./media/characters/aki/back.svg",
  26641. extra: 452 / 415
  26642. }
  26643. },
  26644. rump: {
  26645. height: math.unit(2.05, "feet"),
  26646. name: "Rump",
  26647. image: {
  26648. source: "./media/characters/aki/rump.svg"
  26649. }
  26650. },
  26651. dick: {
  26652. height: math.unit(0.95, "feet"),
  26653. name: "Dick",
  26654. image: {
  26655. source: "./media/characters/aki/dick.svg"
  26656. }
  26657. },
  26658. },
  26659. [
  26660. {
  26661. name: "Micro",
  26662. height: math.unit(15, "cm")
  26663. },
  26664. {
  26665. name: "Normal",
  26666. height: math.unit(178, "cm"),
  26667. default: true
  26668. },
  26669. {
  26670. name: "Macro",
  26671. height: math.unit(214, "m")
  26672. },
  26673. {
  26674. name: "Macro+",
  26675. height: math.unit(534, "m")
  26676. },
  26677. ]
  26678. ))
  26679. characterMakers.push(() => makeCharacter(
  26680. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26681. {
  26682. front: {
  26683. height: math.unit(5 + 5 / 12, "feet"),
  26684. weight: math.unit(120, "lb"),
  26685. name: "Front",
  26686. image: {
  26687. source: "./media/characters/ari/front.svg",
  26688. extra: 1550/1471,
  26689. bottom: 39/1589
  26690. }
  26691. },
  26692. },
  26693. [
  26694. {
  26695. name: "Normal",
  26696. height: math.unit(5 + 5 / 12, "feet")
  26697. },
  26698. {
  26699. name: "Macro",
  26700. height: math.unit(100, "feet"),
  26701. default: true
  26702. },
  26703. {
  26704. name: "Megamacro",
  26705. height: math.unit(100, "miles")
  26706. },
  26707. {
  26708. name: "Gigamacro",
  26709. height: math.unit(80000, "miles")
  26710. },
  26711. ]
  26712. ))
  26713. characterMakers.push(() => makeCharacter(
  26714. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26715. {
  26716. side: {
  26717. height: math.unit(9, "feet"),
  26718. weight: math.unit(400, "kg"),
  26719. name: "Side",
  26720. image: {
  26721. source: "./media/characters/bolt/side.svg",
  26722. extra: 1126 / 896,
  26723. bottom: 60 / 1187.3,
  26724. }
  26725. },
  26726. },
  26727. [
  26728. {
  26729. name: "Micro",
  26730. height: math.unit(5, "inches")
  26731. },
  26732. {
  26733. name: "Normal",
  26734. height: math.unit(9, "feet"),
  26735. default: true
  26736. },
  26737. {
  26738. name: "Macro",
  26739. height: math.unit(700, "feet")
  26740. },
  26741. {
  26742. name: "Max Size",
  26743. height: math.unit(1.52e22, "yottameters")
  26744. },
  26745. ]
  26746. ))
  26747. characterMakers.push(() => makeCharacter(
  26748. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26749. {
  26750. front: {
  26751. height: math.unit(4.3, "meters"),
  26752. weight: math.unit(3, "tons"),
  26753. name: "Front",
  26754. image: {
  26755. source: "./media/characters/draekon-sylviar/front.svg",
  26756. extra: 2072/1512,
  26757. bottom: 74/2146
  26758. }
  26759. },
  26760. back: {
  26761. height: math.unit(4.3, "meters"),
  26762. weight: math.unit(3, "tons"),
  26763. name: "Back",
  26764. image: {
  26765. source: "./media/characters/draekon-sylviar/back.svg",
  26766. extra: 1639/1483,
  26767. bottom: 41/1680
  26768. }
  26769. },
  26770. feral: {
  26771. height: math.unit(1.15, "meters"),
  26772. weight: math.unit(3, "tons"),
  26773. name: "Feral",
  26774. image: {
  26775. source: "./media/characters/draekon-sylviar/feral.svg",
  26776. extra: 1033/395,
  26777. bottom: 130/1163
  26778. }
  26779. },
  26780. maw: {
  26781. height: math.unit(1.3, "meters"),
  26782. name: "Maw",
  26783. image: {
  26784. source: "./media/characters/draekon-sylviar/maw.svg"
  26785. }
  26786. },
  26787. mawSeparated: {
  26788. height: math.unit(1.53, "meters"),
  26789. name: "Separated Maw",
  26790. image: {
  26791. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26792. }
  26793. },
  26794. tail: {
  26795. height: math.unit(1.15, "meters"),
  26796. name: "Tail",
  26797. image: {
  26798. source: "./media/characters/draekon-sylviar/tail.svg"
  26799. }
  26800. },
  26801. tailDick: {
  26802. height: math.unit(1.15, "meters"),
  26803. name: "Tail (Dick)",
  26804. image: {
  26805. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26806. }
  26807. },
  26808. tailDickSeparated: {
  26809. height: math.unit(1.19, "meters"),
  26810. name: "Tail (Separated Dick)",
  26811. image: {
  26812. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26813. }
  26814. },
  26815. slit: {
  26816. height: math.unit(1, "meters"),
  26817. name: "Slit",
  26818. image: {
  26819. source: "./media/characters/draekon-sylviar/slit.svg"
  26820. }
  26821. },
  26822. dick: {
  26823. height: math.unit(1.15, "meters"),
  26824. name: "Dick",
  26825. image: {
  26826. source: "./media/characters/draekon-sylviar/dick.svg"
  26827. }
  26828. },
  26829. dickSeparated: {
  26830. height: math.unit(1.1, "meters"),
  26831. name: "Separated Dick",
  26832. image: {
  26833. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26834. }
  26835. },
  26836. sheath: {
  26837. height: math.unit(1.15, "meters"),
  26838. name: "Sheath",
  26839. image: {
  26840. source: "./media/characters/draekon-sylviar/sheath.svg"
  26841. }
  26842. },
  26843. },
  26844. [
  26845. {
  26846. name: "Small",
  26847. height: math.unit(4.53 / 2, "meters"),
  26848. default: true
  26849. },
  26850. {
  26851. name: "Normal",
  26852. height: math.unit(4.53, "meters"),
  26853. default: true
  26854. },
  26855. {
  26856. name: "Large",
  26857. height: math.unit(4.53 * 2, "meters"),
  26858. },
  26859. ]
  26860. ))
  26861. characterMakers.push(() => makeCharacter(
  26862. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26863. {
  26864. front: {
  26865. height: math.unit(6 + 2 / 12, "feet"),
  26866. weight: math.unit(180, "lb"),
  26867. name: "Front",
  26868. image: {
  26869. source: "./media/characters/brawler/front.svg",
  26870. extra: 3301 / 3027,
  26871. bottom: 138 / 3439
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(6 + 2 / 12, "feet"),
  26879. default: true
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26885. {
  26886. front: {
  26887. height: math.unit(11, "feet"),
  26888. weight: math.unit(1000, "lb"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/alex/front.svg",
  26892. bottom: 44.5 / 620
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Micro",
  26899. height: math.unit(5, "inches")
  26900. },
  26901. {
  26902. name: "Normal",
  26903. height: math.unit(11, "feet"),
  26904. default: true
  26905. },
  26906. {
  26907. name: "Macro",
  26908. height: math.unit(9.5e9, "feet")
  26909. },
  26910. {
  26911. name: "Max Size",
  26912. height: math.unit(1.4e283, "yottameters")
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26918. {
  26919. female: {
  26920. height: math.unit(29.9, "m"),
  26921. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26922. name: "Female",
  26923. image: {
  26924. source: "./media/characters/zenari/female.svg",
  26925. extra: 3281.6 / 3217,
  26926. bottom: 72.2 / 3353
  26927. }
  26928. },
  26929. male: {
  26930. height: math.unit(27.7, "m"),
  26931. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26932. name: "Male",
  26933. image: {
  26934. source: "./media/characters/zenari/male.svg",
  26935. extra: 3008 / 2991,
  26936. bottom: 54.6 / 3069
  26937. }
  26938. },
  26939. },
  26940. [
  26941. {
  26942. name: "Macro",
  26943. height: math.unit(29.7, "meters"),
  26944. default: true
  26945. },
  26946. ]
  26947. ))
  26948. characterMakers.push(() => makeCharacter(
  26949. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26950. {
  26951. female: {
  26952. height: math.unit(23.8, "m"),
  26953. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26954. name: "Female",
  26955. image: {
  26956. source: "./media/characters/mactarian/female.svg",
  26957. extra: 2662 / 2569,
  26958. bottom: 73 / 2736
  26959. }
  26960. },
  26961. male: {
  26962. height: math.unit(23.8, "m"),
  26963. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26964. name: "Male",
  26965. image: {
  26966. source: "./media/characters/mactarian/male.svg",
  26967. extra: 2673 / 2600,
  26968. bottom: 76 / 2750
  26969. }
  26970. },
  26971. },
  26972. [
  26973. {
  26974. name: "Macro",
  26975. height: math.unit(23.8, "meters"),
  26976. default: true
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26982. {
  26983. female: {
  26984. height: math.unit(19.3, "m"),
  26985. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26986. name: "Female",
  26987. image: {
  26988. source: "./media/characters/umok/female.svg",
  26989. extra: 2186 / 2078,
  26990. bottom: 87 / 2277
  26991. }
  26992. },
  26993. male: {
  26994. height: math.unit(19.5, "m"),
  26995. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26996. name: "Male",
  26997. image: {
  26998. source: "./media/characters/umok/male.svg",
  26999. extra: 2233 / 2140,
  27000. bottom: 24.4 / 2258
  27001. }
  27002. },
  27003. },
  27004. [
  27005. {
  27006. name: "Macro",
  27007. height: math.unit(19.3, "meters"),
  27008. default: true
  27009. },
  27010. ]
  27011. ))
  27012. characterMakers.push(() => makeCharacter(
  27013. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27014. {
  27015. female: {
  27016. height: math.unit(26.15, "m"),
  27017. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27018. name: "Female",
  27019. image: {
  27020. source: "./media/characters/joraxian/female.svg",
  27021. extra: 2912 / 2824,
  27022. bottom: 36 / 2956
  27023. }
  27024. },
  27025. male: {
  27026. height: math.unit(25.4, "m"),
  27027. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27028. name: "Male",
  27029. image: {
  27030. source: "./media/characters/joraxian/male.svg",
  27031. extra: 2877 / 2721,
  27032. bottom: 82 / 2967
  27033. }
  27034. },
  27035. },
  27036. [
  27037. {
  27038. name: "Macro",
  27039. height: math.unit(26.15, "meters"),
  27040. default: true
  27041. },
  27042. ]
  27043. ))
  27044. characterMakers.push(() => makeCharacter(
  27045. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27046. {
  27047. female: {
  27048. height: math.unit(21.6, "m"),
  27049. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27050. name: "Female",
  27051. image: {
  27052. source: "./media/characters/sthara/female.svg",
  27053. extra: 2516 / 2347,
  27054. bottom: 21.5 / 2537
  27055. }
  27056. },
  27057. male: {
  27058. height: math.unit(24, "m"),
  27059. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27060. name: "Male",
  27061. image: {
  27062. source: "./media/characters/sthara/male.svg",
  27063. extra: 2732 / 2607,
  27064. bottom: 23 / 2732
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Macro",
  27071. height: math.unit(21.6, "meters"),
  27072. default: true
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27078. {
  27079. front: {
  27080. height: math.unit(6 + 4 / 12, "feet"),
  27081. weight: math.unit(175, "lb"),
  27082. name: "Front",
  27083. image: {
  27084. source: "./media/characters/luka-bryzant/front.svg",
  27085. extra: 311 / 289,
  27086. bottom: 4 / 315
  27087. }
  27088. },
  27089. back: {
  27090. height: math.unit(6 + 4 / 12, "feet"),
  27091. weight: math.unit(175, "lb"),
  27092. name: "Back",
  27093. image: {
  27094. source: "./media/characters/luka-bryzant/back.svg",
  27095. extra: 311 / 289,
  27096. bottom: 3.8 / 313.7
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Micro",
  27103. height: math.unit(10, "inches")
  27104. },
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(6 + 4 / 12, "feet"),
  27108. default: true
  27109. },
  27110. {
  27111. name: "Large",
  27112. height: math.unit(12, "feet")
  27113. },
  27114. ]
  27115. ))
  27116. characterMakers.push(() => makeCharacter(
  27117. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27118. {
  27119. front: {
  27120. height: math.unit(5 + 7 / 12, "feet"),
  27121. weight: math.unit(185, "lb"),
  27122. name: "Front",
  27123. image: {
  27124. source: "./media/characters/aman-aquila/front.svg",
  27125. extra: 1013 / 976,
  27126. bottom: 45.6 / 1057
  27127. }
  27128. },
  27129. side: {
  27130. height: math.unit(5 + 7 / 12, "feet"),
  27131. weight: math.unit(185, "lb"),
  27132. name: "Side",
  27133. image: {
  27134. source: "./media/characters/aman-aquila/side.svg",
  27135. extra: 1054 / 1011,
  27136. bottom: 15 / 1070
  27137. }
  27138. },
  27139. back: {
  27140. height: math.unit(5 + 7 / 12, "feet"),
  27141. weight: math.unit(185, "lb"),
  27142. name: "Back",
  27143. image: {
  27144. source: "./media/characters/aman-aquila/back.svg",
  27145. extra: 1026 / 970,
  27146. bottom: 12 / 1039
  27147. }
  27148. },
  27149. head: {
  27150. height: math.unit(1.211, "feet"),
  27151. name: "Head",
  27152. image: {
  27153. source: "./media/characters/aman-aquila/head.svg",
  27154. }
  27155. },
  27156. },
  27157. [
  27158. {
  27159. name: "Minimicro",
  27160. height: math.unit(0.057, "inches")
  27161. },
  27162. {
  27163. name: "Micro",
  27164. height: math.unit(7, "inches")
  27165. },
  27166. {
  27167. name: "Mini",
  27168. height: math.unit(3 + 7 / 12, "feet")
  27169. },
  27170. {
  27171. name: "Normal",
  27172. height: math.unit(5 + 7 / 12, "feet"),
  27173. default: true
  27174. },
  27175. {
  27176. name: "Macro",
  27177. height: math.unit(157 + 7 / 12, "feet")
  27178. },
  27179. {
  27180. name: "Megamacro",
  27181. height: math.unit(1557 + 7 / 12, "feet")
  27182. },
  27183. {
  27184. name: "Gigamacro",
  27185. height: math.unit(15557 + 7 / 12, "feet")
  27186. },
  27187. ]
  27188. ))
  27189. characterMakers.push(() => makeCharacter(
  27190. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27191. {
  27192. front: {
  27193. height: math.unit(3 + 2 / 12, "inches"),
  27194. weight: math.unit(0.3, "ounces"),
  27195. name: "Front",
  27196. image: {
  27197. source: "./media/characters/hiphae/front.svg",
  27198. extra: 1931 / 1683,
  27199. bottom: 24 / 1955
  27200. }
  27201. },
  27202. },
  27203. [
  27204. {
  27205. name: "Normal",
  27206. height: math.unit(3 + 1 / 2, "inches"),
  27207. default: true
  27208. },
  27209. ]
  27210. ))
  27211. characterMakers.push(() => makeCharacter(
  27212. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27213. {
  27214. front: {
  27215. height: math.unit(5 + 10 / 12, "feet"),
  27216. weight: math.unit(165, "lb"),
  27217. name: "Front",
  27218. image: {
  27219. source: "./media/characters/nicky/front.svg",
  27220. extra: 3144 / 2886,
  27221. bottom: 45.6 / 3192
  27222. }
  27223. },
  27224. back: {
  27225. height: math.unit(5 + 10 / 12, "feet"),
  27226. weight: math.unit(165, "lb"),
  27227. name: "Back",
  27228. image: {
  27229. source: "./media/characters/nicky/back.svg",
  27230. extra: 3055 / 2804,
  27231. bottom: 28.4 / 3087
  27232. }
  27233. },
  27234. frontclothed: {
  27235. height: math.unit(5 + 10 / 12, "feet"),
  27236. weight: math.unit(165, "lb"),
  27237. name: "Front-clothed",
  27238. image: {
  27239. source: "./media/characters/nicky/front-clothed.svg",
  27240. extra: 3184.9 / 2926.9,
  27241. bottom: 86.5 / 3239.9
  27242. }
  27243. },
  27244. foot: {
  27245. height: math.unit(1.16, "feet"),
  27246. name: "Foot",
  27247. image: {
  27248. source: "./media/characters/nicky/foot.svg"
  27249. }
  27250. },
  27251. feet: {
  27252. height: math.unit(1.34, "feet"),
  27253. name: "Feet",
  27254. image: {
  27255. source: "./media/characters/nicky/feet.svg"
  27256. }
  27257. },
  27258. maw: {
  27259. height: math.unit(0.9, "feet"),
  27260. name: "Maw",
  27261. image: {
  27262. source: "./media/characters/nicky/maw.svg"
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Normal",
  27269. height: math.unit(5 + 10 / 12, "feet"),
  27270. default: true
  27271. },
  27272. {
  27273. name: "Macro",
  27274. height: math.unit(60, "feet")
  27275. },
  27276. {
  27277. name: "Megamacro",
  27278. height: math.unit(1, "mile")
  27279. },
  27280. ]
  27281. ))
  27282. characterMakers.push(() => makeCharacter(
  27283. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27284. {
  27285. side: {
  27286. height: math.unit(10, "feet"),
  27287. weight: math.unit(600, "lb"),
  27288. name: "Side",
  27289. image: {
  27290. source: "./media/characters/blair/side.svg",
  27291. bottom: 16.6 / 475,
  27292. extra: 458 / 431
  27293. }
  27294. },
  27295. },
  27296. [
  27297. {
  27298. name: "Micro",
  27299. height: math.unit(8, "inches")
  27300. },
  27301. {
  27302. name: "Normal",
  27303. height: math.unit(10, "feet"),
  27304. default: true
  27305. },
  27306. {
  27307. name: "Macro",
  27308. height: math.unit(180, "feet")
  27309. },
  27310. ]
  27311. ))
  27312. characterMakers.push(() => makeCharacter(
  27313. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27314. {
  27315. front: {
  27316. height: math.unit(5 + 4 / 12, "feet"),
  27317. weight: math.unit(125, "lb"),
  27318. name: "Front",
  27319. image: {
  27320. source: "./media/characters/fisher/front.svg",
  27321. extra: 444 / 390,
  27322. bottom: 2 / 444.8
  27323. }
  27324. },
  27325. },
  27326. [
  27327. {
  27328. name: "Micro",
  27329. height: math.unit(4, "inches")
  27330. },
  27331. {
  27332. name: "Normal",
  27333. height: math.unit(5 + 4 / 12, "feet"),
  27334. default: true
  27335. },
  27336. {
  27337. name: "Macro",
  27338. height: math.unit(100, "feet")
  27339. },
  27340. ]
  27341. ))
  27342. characterMakers.push(() => makeCharacter(
  27343. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27344. {
  27345. front: {
  27346. height: math.unit(6.71, "feet"),
  27347. weight: math.unit(200, "lb"),
  27348. preyCapacity: math.unit(1000000, "people"),
  27349. name: "Front",
  27350. image: {
  27351. source: "./media/characters/gliss/front.svg",
  27352. extra: 2347 / 2231,
  27353. bottom: 113 / 2462
  27354. }
  27355. },
  27356. hammerspaceSize: {
  27357. height: math.unit(6.71 * 717, "feet"),
  27358. weight: math.unit(200, "lb"),
  27359. preyCapacity: math.unit(1000000, "people"),
  27360. name: "Hammerspace Size",
  27361. image: {
  27362. source: "./media/characters/gliss/front.svg",
  27363. extra: 2347 / 2231,
  27364. bottom: 113 / 2462
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Normal",
  27371. height: math.unit(6.71, "feet"),
  27372. default: true
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27378. {
  27379. side: {
  27380. height: math.unit(1.44, "m"),
  27381. weight: math.unit(80, "kg"),
  27382. name: "Side",
  27383. image: {
  27384. source: "./media/characters/dune-anderson/side.svg",
  27385. bottom: 49 / 1426
  27386. }
  27387. },
  27388. },
  27389. [
  27390. {
  27391. name: "Wolf-sized",
  27392. height: math.unit(1.44, "meters")
  27393. },
  27394. {
  27395. name: "Normal",
  27396. height: math.unit(5.05, "meters"),
  27397. default: true
  27398. },
  27399. {
  27400. name: "Big",
  27401. height: math.unit(14.4, "meters")
  27402. },
  27403. {
  27404. name: "Huge",
  27405. height: math.unit(144, "meters")
  27406. },
  27407. ]
  27408. ))
  27409. characterMakers.push(() => makeCharacter(
  27410. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27411. {
  27412. front: {
  27413. height: math.unit(7, "feet"),
  27414. weight: math.unit(425, "lb"),
  27415. name: "Front",
  27416. image: {
  27417. source: "./media/characters/hind/front.svg",
  27418. extra: 2091 / 1860,
  27419. bottom: 129 / 2220
  27420. }
  27421. },
  27422. back: {
  27423. height: math.unit(7, "feet"),
  27424. weight: math.unit(425, "lb"),
  27425. name: "Back",
  27426. image: {
  27427. source: "./media/characters/hind/back.svg",
  27428. extra: 2091 / 1860,
  27429. bottom: 24.6 / 2309
  27430. }
  27431. },
  27432. tail: {
  27433. height: math.unit(2.8, "feet"),
  27434. name: "Tail",
  27435. image: {
  27436. source: "./media/characters/hind/tail.svg"
  27437. }
  27438. },
  27439. head: {
  27440. height: math.unit(2.55, "feet"),
  27441. name: "Head",
  27442. image: {
  27443. source: "./media/characters/hind/head.svg"
  27444. }
  27445. },
  27446. },
  27447. [
  27448. {
  27449. name: "XS",
  27450. height: math.unit(0.7, "feet")
  27451. },
  27452. {
  27453. name: "Normal",
  27454. height: math.unit(7, "feet"),
  27455. default: true
  27456. },
  27457. {
  27458. name: "XL",
  27459. height: math.unit(70, "feet")
  27460. },
  27461. ]
  27462. ))
  27463. characterMakers.push(() => makeCharacter(
  27464. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27465. {
  27466. front: {
  27467. height: math.unit(2.1, "meters"),
  27468. weight: math.unit(150, "lb"),
  27469. name: "Front",
  27470. image: {
  27471. source: "./media/characters/tharquench-sizestealer/front.svg",
  27472. extra: 1605/1470,
  27473. bottom: 36/1641
  27474. }
  27475. },
  27476. frontAlt: {
  27477. height: math.unit(2.1, "meters"),
  27478. weight: math.unit(150, "lb"),
  27479. name: "Front (Alt)",
  27480. image: {
  27481. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27482. extra: 2318 / 2063,
  27483. bottom: 93.4 / 2410
  27484. }
  27485. },
  27486. },
  27487. [
  27488. {
  27489. name: "Nano",
  27490. height: math.unit(1, "mm")
  27491. },
  27492. {
  27493. name: "Micro",
  27494. height: math.unit(1, "cm")
  27495. },
  27496. {
  27497. name: "Normal",
  27498. height: math.unit(2.1, "meters"),
  27499. default: true
  27500. },
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27505. {
  27506. front: {
  27507. height: math.unit(7 + 5 / 12, "feet"),
  27508. weight: math.unit(357, "lb"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/solex-draconov/front.svg",
  27512. extra: 1993 / 1865,
  27513. bottom: 117 / 2111
  27514. }
  27515. },
  27516. },
  27517. [
  27518. {
  27519. name: "Natural Height",
  27520. height: math.unit(7 + 5 / 12, "feet"),
  27521. default: true
  27522. },
  27523. {
  27524. name: "Macro",
  27525. height: math.unit(350, "feet")
  27526. },
  27527. {
  27528. name: "Macro+",
  27529. height: math.unit(1000, "feet")
  27530. },
  27531. {
  27532. name: "Megamacro",
  27533. height: math.unit(20, "km")
  27534. },
  27535. {
  27536. name: "Megamacro+",
  27537. height: math.unit(1000, "km")
  27538. },
  27539. {
  27540. name: "Gigamacro",
  27541. height: math.unit(2.5, "Gm")
  27542. },
  27543. {
  27544. name: "Teramacro",
  27545. height: math.unit(15, "Tm")
  27546. },
  27547. {
  27548. name: "Galactic",
  27549. height: math.unit(30, "Zm")
  27550. },
  27551. {
  27552. name: "Universal",
  27553. height: math.unit(21000, "Ym")
  27554. },
  27555. {
  27556. name: "Omniversal",
  27557. height: math.unit(9.861e50, "Ym")
  27558. },
  27559. {
  27560. name: "Existential",
  27561. height: math.unit(1e300, "meters")
  27562. },
  27563. ]
  27564. ))
  27565. characterMakers.push(() => makeCharacter(
  27566. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27567. {
  27568. side: {
  27569. height: math.unit(25, "feet"),
  27570. weight: math.unit(90000, "lb"),
  27571. name: "Side",
  27572. image: {
  27573. source: "./media/characters/mandarax/side.svg",
  27574. extra: 614 / 332,
  27575. bottom: 55 / 630
  27576. }
  27577. },
  27578. lounging: {
  27579. height: math.unit(15.4, "feet"),
  27580. weight: math.unit(90000, "lb"),
  27581. name: "Lounging",
  27582. image: {
  27583. source: "./media/characters/mandarax/lounging.svg",
  27584. extra: 817/609,
  27585. bottom: 685/1502
  27586. }
  27587. },
  27588. head: {
  27589. height: math.unit(11.4, "feet"),
  27590. name: "Head",
  27591. image: {
  27592. source: "./media/characters/mandarax/head.svg"
  27593. }
  27594. },
  27595. belly: {
  27596. height: math.unit(33, "feet"),
  27597. name: "Belly",
  27598. preyCapacity: math.unit(500, "people"),
  27599. image: {
  27600. source: "./media/characters/mandarax/belly.svg"
  27601. }
  27602. },
  27603. dick: {
  27604. height: math.unit(8.46, "feet"),
  27605. name: "Dick",
  27606. image: {
  27607. source: "./media/characters/mandarax/dick.svg"
  27608. }
  27609. },
  27610. top: {
  27611. height: math.unit(28, "meters"),
  27612. name: "Top",
  27613. image: {
  27614. source: "./media/characters/mandarax/top.svg"
  27615. }
  27616. },
  27617. },
  27618. [
  27619. {
  27620. name: "Normal",
  27621. height: math.unit(25, "feet"),
  27622. default: true
  27623. },
  27624. ]
  27625. ))
  27626. characterMakers.push(() => makeCharacter(
  27627. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27628. {
  27629. front: {
  27630. height: math.unit(5, "feet"),
  27631. weight: math.unit(90, "lb"),
  27632. name: "Front",
  27633. image: {
  27634. source: "./media/characters/pixil/front.svg",
  27635. extra: 2000 / 1618,
  27636. bottom: 12.3 / 2011
  27637. }
  27638. },
  27639. },
  27640. [
  27641. {
  27642. name: "Normal",
  27643. height: math.unit(5, "feet"),
  27644. default: true
  27645. },
  27646. {
  27647. name: "Megamacro",
  27648. height: math.unit(10, "miles"),
  27649. },
  27650. ]
  27651. ))
  27652. characterMakers.push(() => makeCharacter(
  27653. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27654. {
  27655. front: {
  27656. height: math.unit(7 + 2 / 12, "feet"),
  27657. weight: math.unit(200, "lb"),
  27658. name: "Front",
  27659. image: {
  27660. source: "./media/characters/angel/front.svg",
  27661. extra: 1946/1840,
  27662. bottom: 30/1976
  27663. }
  27664. },
  27665. },
  27666. [
  27667. {
  27668. name: "Normal",
  27669. height: math.unit(7 + 2 / 12, "feet"),
  27670. default: true
  27671. },
  27672. {
  27673. name: "Macro",
  27674. height: math.unit(1000, "feet")
  27675. },
  27676. {
  27677. name: "Megamacro",
  27678. height: math.unit(2, "miles")
  27679. },
  27680. {
  27681. name: "Gigamacro",
  27682. height: math.unit(20, "earths")
  27683. },
  27684. ]
  27685. ))
  27686. characterMakers.push(() => makeCharacter(
  27687. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27688. {
  27689. front: {
  27690. height: math.unit(5, "feet"),
  27691. weight: math.unit(180, "lb"),
  27692. name: "Front",
  27693. image: {
  27694. source: "./media/characters/mekana/front.svg",
  27695. extra: 1671 / 1605,
  27696. bottom: 3.5 / 1691
  27697. }
  27698. },
  27699. side: {
  27700. height: math.unit(5, "feet"),
  27701. weight: math.unit(180, "lb"),
  27702. name: "Side",
  27703. image: {
  27704. source: "./media/characters/mekana/side.svg",
  27705. extra: 1671 / 1605,
  27706. bottom: 3.5 / 1691
  27707. }
  27708. },
  27709. back: {
  27710. height: math.unit(5, "feet"),
  27711. weight: math.unit(180, "lb"),
  27712. name: "Back",
  27713. image: {
  27714. source: "./media/characters/mekana/back.svg",
  27715. extra: 1671 / 1605,
  27716. bottom: 3.5 / 1691
  27717. }
  27718. },
  27719. },
  27720. [
  27721. {
  27722. name: "Normal",
  27723. height: math.unit(5, "feet"),
  27724. default: true
  27725. },
  27726. ]
  27727. ))
  27728. characterMakers.push(() => makeCharacter(
  27729. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27730. {
  27731. front: {
  27732. height: math.unit(4 + 6 / 12, "feet"),
  27733. weight: math.unit(80, "lb"),
  27734. name: "Front",
  27735. image: {
  27736. source: "./media/characters/pixie/front.svg",
  27737. extra: 1924 / 1825,
  27738. bottom: 22.4 / 1946
  27739. }
  27740. },
  27741. },
  27742. [
  27743. {
  27744. name: "Normal",
  27745. height: math.unit(4 + 6 / 12, "feet"),
  27746. default: true
  27747. },
  27748. {
  27749. name: "Macro",
  27750. height: math.unit(40, "feet")
  27751. },
  27752. ]
  27753. ))
  27754. characterMakers.push(() => makeCharacter(
  27755. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27756. {
  27757. front: {
  27758. height: math.unit(2.1, "meters"),
  27759. weight: math.unit(200, "lb"),
  27760. name: "Front",
  27761. image: {
  27762. source: "./media/characters/the-lascivious/front.svg",
  27763. extra: 1 / 0.893,
  27764. bottom: 3.5 / 573.7
  27765. }
  27766. },
  27767. },
  27768. [
  27769. {
  27770. name: "Human Scale",
  27771. height: math.unit(2.1, "meters")
  27772. },
  27773. {
  27774. name: "Wolxi Scale",
  27775. height: math.unit(46.2, "m"),
  27776. default: true
  27777. },
  27778. {
  27779. name: "Boinker of Buildings",
  27780. height: math.unit(10, "km")
  27781. },
  27782. {
  27783. name: "Shagger of Skyscrapers",
  27784. height: math.unit(40, "km")
  27785. },
  27786. {
  27787. name: "Banger of Boroughs",
  27788. height: math.unit(4000, "km")
  27789. },
  27790. {
  27791. name: "Screwer of States",
  27792. height: math.unit(100000, "km")
  27793. },
  27794. {
  27795. name: "Pounder of Planets",
  27796. height: math.unit(2000000, "km")
  27797. },
  27798. ]
  27799. ))
  27800. characterMakers.push(() => makeCharacter(
  27801. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27802. {
  27803. front: {
  27804. height: math.unit(6, "feet"),
  27805. weight: math.unit(150, "lb"),
  27806. name: "Front",
  27807. image: {
  27808. source: "./media/characters/aj/front.svg",
  27809. extra: 2039 / 1562,
  27810. bottom: 40 / 2079
  27811. }
  27812. },
  27813. },
  27814. [
  27815. {
  27816. name: "Normal",
  27817. height: math.unit(11 + 6 / 12, "feet"),
  27818. default: true
  27819. },
  27820. {
  27821. name: "Megamacro",
  27822. height: math.unit(60, "megameters")
  27823. },
  27824. ]
  27825. ))
  27826. characterMakers.push(() => makeCharacter(
  27827. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27828. {
  27829. side: {
  27830. height: math.unit(31 + 8 / 12, "feet"),
  27831. weight: math.unit(75000, "kg"),
  27832. name: "Side",
  27833. image: {
  27834. source: "./media/characters/koros/side.svg",
  27835. extra: 1442 / 1297,
  27836. bottom: 122.7 / 1562
  27837. }
  27838. },
  27839. dicksKingsCrown: {
  27840. height: math.unit(6, "feet"),
  27841. name: "Dicks (King's Crown)",
  27842. image: {
  27843. source: "./media/characters/koros/dicks-kings-crown.svg"
  27844. }
  27845. },
  27846. dicksTailSet: {
  27847. height: math.unit(3, "feet"),
  27848. name: "Dicks (Tail Set)",
  27849. image: {
  27850. source: "./media/characters/koros/dicks-tail-set.svg"
  27851. }
  27852. },
  27853. dickCumming: {
  27854. height: math.unit(7.98, "feet"),
  27855. name: "Dick (Cumming)",
  27856. image: {
  27857. source: "./media/characters/koros/dick-cumming.svg"
  27858. }
  27859. },
  27860. dicksBack: {
  27861. height: math.unit(5.9, "feet"),
  27862. name: "Dicks (Back)",
  27863. image: {
  27864. source: "./media/characters/koros/dicks-back.svg"
  27865. }
  27866. },
  27867. dicksFront: {
  27868. height: math.unit(3.72, "feet"),
  27869. name: "Dicks (Front)",
  27870. image: {
  27871. source: "./media/characters/koros/dicks-front.svg"
  27872. }
  27873. },
  27874. dicksPeeking: {
  27875. height: math.unit(3.0, "feet"),
  27876. name: "Dicks (Peeking)",
  27877. image: {
  27878. source: "./media/characters/koros/dicks-peeking.svg"
  27879. }
  27880. },
  27881. eye: {
  27882. height: math.unit(1.7, "feet"),
  27883. name: "Eye",
  27884. image: {
  27885. source: "./media/characters/koros/eye.svg"
  27886. }
  27887. },
  27888. headFront: {
  27889. height: math.unit(11.69, "feet"),
  27890. name: "Head (Front)",
  27891. image: {
  27892. source: "./media/characters/koros/head-front.svg"
  27893. }
  27894. },
  27895. headSide: {
  27896. height: math.unit(14, "feet"),
  27897. name: "Head (Side)",
  27898. image: {
  27899. source: "./media/characters/koros/head-side.svg"
  27900. }
  27901. },
  27902. leg: {
  27903. height: math.unit(17, "feet"),
  27904. name: "Leg",
  27905. image: {
  27906. source: "./media/characters/koros/leg.svg"
  27907. }
  27908. },
  27909. mawSide: {
  27910. height: math.unit(12.8, "feet"),
  27911. name: "Maw (Side)",
  27912. image: {
  27913. source: "./media/characters/koros/maw-side.svg"
  27914. }
  27915. },
  27916. mawSpitting: {
  27917. height: math.unit(17, "feet"),
  27918. name: "Maw (Spitting)",
  27919. image: {
  27920. source: "./media/characters/koros/maw-spitting.svg"
  27921. }
  27922. },
  27923. slit: {
  27924. height: math.unit(2.8, "feet"),
  27925. name: "Slit",
  27926. image: {
  27927. source: "./media/characters/koros/slit.svg"
  27928. }
  27929. },
  27930. stomach: {
  27931. height: math.unit(6.8, "feet"),
  27932. preyCapacity: math.unit(20, "people"),
  27933. name: "Stomach",
  27934. image: {
  27935. source: "./media/characters/koros/stomach.svg"
  27936. }
  27937. },
  27938. wingspanBottom: {
  27939. height: math.unit(114, "feet"),
  27940. name: "Wingspan (Bottom)",
  27941. image: {
  27942. source: "./media/characters/koros/wingspan-bottom.svg"
  27943. }
  27944. },
  27945. wingspanTop: {
  27946. height: math.unit(104, "feet"),
  27947. name: "Wingspan (Top)",
  27948. image: {
  27949. source: "./media/characters/koros/wingspan-top.svg"
  27950. }
  27951. },
  27952. },
  27953. [
  27954. {
  27955. name: "Normal",
  27956. height: math.unit(31 + 8 / 12, "feet"),
  27957. default: true
  27958. },
  27959. ]
  27960. ))
  27961. characterMakers.push(() => makeCharacter(
  27962. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27963. {
  27964. front: {
  27965. height: math.unit(18 + 5 / 12, "feet"),
  27966. weight: math.unit(3750, "kg"),
  27967. name: "Front",
  27968. image: {
  27969. source: "./media/characters/vexx/front.svg",
  27970. extra: 426 / 396,
  27971. bottom: 31.5 / 458
  27972. }
  27973. },
  27974. maw: {
  27975. height: math.unit(6, "feet"),
  27976. name: "Maw",
  27977. image: {
  27978. source: "./media/characters/vexx/maw.svg"
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Normal",
  27985. height: math.unit(18 + 5 / 12, "feet"),
  27986. default: true
  27987. },
  27988. ]
  27989. ))
  27990. characterMakers.push(() => makeCharacter(
  27991. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27992. {
  27993. front: {
  27994. height: math.unit(17 + 6 / 12, "feet"),
  27995. weight: math.unit(150, "lb"),
  27996. name: "Front",
  27997. image: {
  27998. source: "./media/characters/baadra/front.svg",
  27999. extra: 1694/1553,
  28000. bottom: 179/1873
  28001. }
  28002. },
  28003. frontAlt: {
  28004. height: math.unit(17 + 6 / 12, "feet"),
  28005. weight: math.unit(150, "lb"),
  28006. name: "Front (Alt)",
  28007. image: {
  28008. source: "./media/characters/baadra/front-alt.svg",
  28009. extra: 3137 / 2890,
  28010. bottom: 168.4 / 3305
  28011. }
  28012. },
  28013. back: {
  28014. height: math.unit(17 + 6 / 12, "feet"),
  28015. weight: math.unit(150, "lb"),
  28016. name: "Back",
  28017. image: {
  28018. source: "./media/characters/baadra/back.svg",
  28019. extra: 3142 / 2890,
  28020. bottom: 220 / 3371
  28021. }
  28022. },
  28023. head: {
  28024. height: math.unit(5.45, "feet"),
  28025. name: "Head",
  28026. image: {
  28027. source: "./media/characters/baadra/head.svg"
  28028. }
  28029. },
  28030. headAngry: {
  28031. height: math.unit(4.95, "feet"),
  28032. name: "Head (Angry)",
  28033. image: {
  28034. source: "./media/characters/baadra/head-angry.svg"
  28035. }
  28036. },
  28037. headOpen: {
  28038. height: math.unit(6, "feet"),
  28039. name: "Head (Open)",
  28040. image: {
  28041. source: "./media/characters/baadra/head-open.svg"
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Normal",
  28048. height: math.unit(17 + 6 / 12, "feet"),
  28049. default: true
  28050. },
  28051. ]
  28052. ))
  28053. characterMakers.push(() => makeCharacter(
  28054. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28055. {
  28056. front: {
  28057. height: math.unit(7 + 3 / 12, "feet"),
  28058. weight: math.unit(180, "lb"),
  28059. name: "Front",
  28060. image: {
  28061. source: "./media/characters/juri/front.svg",
  28062. extra: 1401 / 1237,
  28063. bottom: 18.5 / 1418
  28064. }
  28065. },
  28066. side: {
  28067. height: math.unit(7 + 3 / 12, "feet"),
  28068. weight: math.unit(180, "lb"),
  28069. name: "Side",
  28070. image: {
  28071. source: "./media/characters/juri/side.svg",
  28072. extra: 1424 / 1242,
  28073. bottom: 18.5 / 1447
  28074. }
  28075. },
  28076. sitting: {
  28077. height: math.unit(6, "feet"),
  28078. weight: math.unit(180, "lb"),
  28079. name: "Sitting",
  28080. image: {
  28081. source: "./media/characters/juri/sitting.svg",
  28082. extra: 1270 / 1143,
  28083. bottom: 100 / 1343
  28084. }
  28085. },
  28086. back: {
  28087. height: math.unit(7 + 3 / 12, "feet"),
  28088. weight: math.unit(180, "lb"),
  28089. name: "Back",
  28090. image: {
  28091. source: "./media/characters/juri/back.svg",
  28092. extra: 1377 / 1240,
  28093. bottom: 23.7 / 1405
  28094. }
  28095. },
  28096. maw: {
  28097. height: math.unit(2.8, "feet"),
  28098. name: "Maw",
  28099. image: {
  28100. source: "./media/characters/juri/maw.svg"
  28101. }
  28102. },
  28103. stomach: {
  28104. height: math.unit(0.89, "feet"),
  28105. preyCapacity: math.unit(4, "liters"),
  28106. name: "Stomach",
  28107. image: {
  28108. source: "./media/characters/juri/stomach.svg"
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(7 + 3 / 12, "feet"),
  28116. default: true
  28117. },
  28118. ]
  28119. ))
  28120. characterMakers.push(() => makeCharacter(
  28121. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28122. {
  28123. fox: {
  28124. height: math.unit(5 + 6 / 12, "feet"),
  28125. weight: math.unit(140, "lb"),
  28126. name: "Fox",
  28127. image: {
  28128. source: "./media/characters/maxene-sita/fox.svg",
  28129. extra: 146 / 138,
  28130. bottom: 2.1 / 148.19
  28131. }
  28132. },
  28133. foxLaying: {
  28134. height: math.unit(1.70, "feet"),
  28135. weight: math.unit(140, "lb"),
  28136. name: "Fox (Laying)",
  28137. image: {
  28138. source: "./media/characters/maxene-sita/fox-laying.svg",
  28139. extra: 910 / 572,
  28140. bottom: 71 / 981
  28141. }
  28142. },
  28143. kitsune: {
  28144. height: math.unit(10, "feet"),
  28145. weight: math.unit(800, "lb"),
  28146. name: "Kitsune",
  28147. image: {
  28148. source: "./media/characters/maxene-sita/kitsune.svg",
  28149. extra: 185 / 176,
  28150. bottom: 4.7 / 189.9
  28151. }
  28152. },
  28153. hellhound: {
  28154. height: math.unit(10, "feet"),
  28155. weight: math.unit(700, "lb"),
  28156. name: "Hellhound",
  28157. image: {
  28158. source: "./media/characters/maxene-sita/hellhound.svg",
  28159. extra: 1600 / 1545,
  28160. bottom: 81 / 1681
  28161. }
  28162. },
  28163. },
  28164. [
  28165. {
  28166. name: "Normal",
  28167. height: math.unit(5 + 6 / 12, "feet"),
  28168. default: true
  28169. },
  28170. ]
  28171. ))
  28172. characterMakers.push(() => makeCharacter(
  28173. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28174. {
  28175. front: {
  28176. height: math.unit(3 + 4 / 12, "feet"),
  28177. weight: math.unit(70, "lb"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/maia/front.svg",
  28181. extra: 227 / 219.5,
  28182. bottom: 40 / 267
  28183. }
  28184. },
  28185. back: {
  28186. height: math.unit(3 + 4 / 12, "feet"),
  28187. weight: math.unit(70, "lb"),
  28188. name: "Back",
  28189. image: {
  28190. source: "./media/characters/maia/back.svg",
  28191. extra: 237 / 225
  28192. }
  28193. },
  28194. },
  28195. [
  28196. {
  28197. name: "Normal",
  28198. height: math.unit(3 + 4 / 12, "feet"),
  28199. default: true
  28200. },
  28201. ]
  28202. ))
  28203. characterMakers.push(() => makeCharacter(
  28204. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28205. {
  28206. front: {
  28207. height: math.unit(5 + 10 / 12, "feet"),
  28208. weight: math.unit(197, "lb"),
  28209. name: "Front",
  28210. image: {
  28211. source: "./media/characters/jabaro/front.svg",
  28212. extra: 225 / 216,
  28213. bottom: 5.06 / 230
  28214. }
  28215. },
  28216. back: {
  28217. height: math.unit(5 + 10 / 12, "feet"),
  28218. weight: math.unit(197, "lb"),
  28219. name: "Back",
  28220. image: {
  28221. source: "./media/characters/jabaro/back.svg",
  28222. extra: 225 / 219,
  28223. bottom: 1.9 / 227
  28224. }
  28225. },
  28226. },
  28227. [
  28228. {
  28229. name: "Normal",
  28230. height: math.unit(5 + 10 / 12, "feet"),
  28231. default: true
  28232. },
  28233. ]
  28234. ))
  28235. characterMakers.push(() => makeCharacter(
  28236. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28237. {
  28238. front: {
  28239. height: math.unit(5 + 8 / 12, "feet"),
  28240. weight: math.unit(139, "lb"),
  28241. name: "Front",
  28242. image: {
  28243. source: "./media/characters/risa/front.svg",
  28244. extra: 270 / 260,
  28245. bottom: 11.2 / 282
  28246. }
  28247. },
  28248. back: {
  28249. height: math.unit(5 + 8 / 12, "feet"),
  28250. weight: math.unit(139, "lb"),
  28251. name: "Back",
  28252. image: {
  28253. source: "./media/characters/risa/back.svg",
  28254. extra: 264 / 255,
  28255. bottom: 4 / 268
  28256. }
  28257. },
  28258. },
  28259. [
  28260. {
  28261. name: "Normal",
  28262. height: math.unit(5 + 8 / 12, "feet"),
  28263. default: true
  28264. },
  28265. ]
  28266. ))
  28267. characterMakers.push(() => makeCharacter(
  28268. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28269. {
  28270. front: {
  28271. height: math.unit(2 + 11 / 12, "feet"),
  28272. weight: math.unit(30, "lb"),
  28273. name: "Front",
  28274. image: {
  28275. source: "./media/characters/weatley/front.svg",
  28276. bottom: 10.7 / 414,
  28277. extra: 403.5 / 362
  28278. }
  28279. },
  28280. back: {
  28281. height: math.unit(2 + 11 / 12, "feet"),
  28282. weight: math.unit(30, "lb"),
  28283. name: "Back",
  28284. image: {
  28285. source: "./media/characters/weatley/back.svg",
  28286. bottom: 10.7 / 414,
  28287. extra: 403.5 / 362
  28288. }
  28289. },
  28290. },
  28291. [
  28292. {
  28293. name: "Normal",
  28294. height: math.unit(2 + 11 / 12, "feet"),
  28295. default: true
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(5 + 2 / 12, "feet"),
  28304. weight: math.unit(50, "kg"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/mercury-crescent/front.svg",
  28308. extra: 1088 / 1033,
  28309. bottom: 18.9 / 1109
  28310. }
  28311. },
  28312. },
  28313. [
  28314. {
  28315. name: "Normal",
  28316. height: math.unit(5 + 2 / 12, "feet"),
  28317. default: true
  28318. },
  28319. ]
  28320. ))
  28321. characterMakers.push(() => makeCharacter(
  28322. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28323. {
  28324. front: {
  28325. height: math.unit(2, "feet"),
  28326. weight: math.unit(15, "kg"),
  28327. name: "Front",
  28328. image: {
  28329. source: "./media/characters/diamond-jones/front.svg",
  28330. extra: 727/723,
  28331. bottom: 46/773
  28332. }
  28333. },
  28334. },
  28335. [
  28336. {
  28337. name: "Normal",
  28338. height: math.unit(2, "feet"),
  28339. default: true
  28340. },
  28341. ]
  28342. ))
  28343. characterMakers.push(() => makeCharacter(
  28344. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28345. {
  28346. front: {
  28347. height: math.unit(3, "feet"),
  28348. weight: math.unit(30, "kg"),
  28349. name: "Front",
  28350. image: {
  28351. source: "./media/characters/sweet-bit/front.svg",
  28352. extra: 675 / 567,
  28353. bottom: 27.7 / 703
  28354. }
  28355. },
  28356. },
  28357. [
  28358. {
  28359. name: "Normal",
  28360. height: math.unit(3, "feet"),
  28361. default: true
  28362. },
  28363. ]
  28364. ))
  28365. characterMakers.push(() => makeCharacter(
  28366. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28367. {
  28368. side: {
  28369. height: math.unit(9.178, "feet"),
  28370. weight: math.unit(500, "lb"),
  28371. name: "Side",
  28372. image: {
  28373. source: "./media/characters/umbrazen/side.svg",
  28374. extra: 1730 / 1473,
  28375. bottom: 34.6 / 1765
  28376. }
  28377. },
  28378. },
  28379. [
  28380. {
  28381. name: "Normal",
  28382. height: math.unit(9.178, "feet"),
  28383. default: true
  28384. },
  28385. ]
  28386. ))
  28387. characterMakers.push(() => makeCharacter(
  28388. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28389. {
  28390. front: {
  28391. height: math.unit(10, "feet"),
  28392. weight: math.unit(750, "lb"),
  28393. name: "Front",
  28394. image: {
  28395. source: "./media/characters/arlist/front.svg",
  28396. extra: 961 / 778,
  28397. bottom: 6.2 / 986
  28398. }
  28399. },
  28400. },
  28401. [
  28402. {
  28403. name: "Normal",
  28404. height: math.unit(10, "feet"),
  28405. default: true
  28406. },
  28407. ]
  28408. ))
  28409. characterMakers.push(() => makeCharacter(
  28410. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28411. {
  28412. front: {
  28413. height: math.unit(5 + 1 / 12, "feet"),
  28414. weight: math.unit(110, "lb"),
  28415. name: "Front",
  28416. image: {
  28417. source: "./media/characters/aradel/front.svg",
  28418. extra: 324 / 303,
  28419. bottom: 3.6 / 329.4
  28420. }
  28421. },
  28422. },
  28423. [
  28424. {
  28425. name: "Normal",
  28426. height: math.unit(5 + 1 / 12, "feet"),
  28427. default: true
  28428. },
  28429. ]
  28430. ))
  28431. characterMakers.push(() => makeCharacter(
  28432. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28433. {
  28434. dressed: {
  28435. height: math.unit(3 + 8 / 12, "feet"),
  28436. weight: math.unit(50, "lb"),
  28437. name: "Dressed",
  28438. image: {
  28439. source: "./media/characters/serryn/dressed.svg",
  28440. extra: 1792 / 1656,
  28441. bottom: 43.5 / 1840
  28442. }
  28443. },
  28444. nude: {
  28445. height: math.unit(3 + 8 / 12, "feet"),
  28446. weight: math.unit(50, "lb"),
  28447. name: "Nude",
  28448. image: {
  28449. source: "./media/characters/serryn/nude.svg",
  28450. extra: 1792 / 1656,
  28451. bottom: 43.5 / 1840
  28452. }
  28453. },
  28454. },
  28455. [
  28456. {
  28457. name: "Normal",
  28458. height: math.unit(3 + 8 / 12, "feet"),
  28459. default: true
  28460. },
  28461. ]
  28462. ))
  28463. characterMakers.push(() => makeCharacter(
  28464. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28465. {
  28466. front: {
  28467. height: math.unit(7 + 10 / 12, "feet"),
  28468. weight: math.unit(255, "lb"),
  28469. name: "Front",
  28470. image: {
  28471. source: "./media/characters/xavier-thyme/front.svg",
  28472. extra: 3733 / 3642,
  28473. bottom: 131 / 3869
  28474. }
  28475. },
  28476. frontRaven: {
  28477. height: math.unit(7 + 10 / 12, "feet"),
  28478. weight: math.unit(255, "lb"),
  28479. name: "Front (Raven)",
  28480. image: {
  28481. source: "./media/characters/xavier-thyme/front-raven.svg",
  28482. extra: 4385 / 3642,
  28483. bottom: 131 / 4517
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Normal",
  28490. height: math.unit(7 + 10 / 12, "feet"),
  28491. default: true
  28492. },
  28493. ]
  28494. ))
  28495. characterMakers.push(() => makeCharacter(
  28496. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28497. {
  28498. front: {
  28499. height: math.unit(1.6, "m"),
  28500. weight: math.unit(50, "kg"),
  28501. name: "Front",
  28502. image: {
  28503. source: "./media/characters/kiki/front.svg",
  28504. extra: 4682 / 3610,
  28505. bottom: 115 / 4777
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(1.6, "meters"),
  28513. default: true
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28519. {
  28520. front: {
  28521. height: math.unit(50, "m"),
  28522. weight: math.unit(500, "tonnes"),
  28523. name: "Front",
  28524. image: {
  28525. source: "./media/characters/ryoko/front.svg",
  28526. extra: 4632 / 3926,
  28527. bottom: 193 / 4823
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Normal",
  28534. height: math.unit(50, "meters"),
  28535. default: true
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(30, "m"),
  28544. weight: math.unit(22, "tonnes"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/elio/front.svg",
  28548. extra: 4582 / 3720,
  28549. bottom: 236 / 4828
  28550. }
  28551. },
  28552. },
  28553. [
  28554. {
  28555. name: "Normal",
  28556. height: math.unit(30, "meters"),
  28557. default: true
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28563. {
  28564. front: {
  28565. height: math.unit(6 + 3 / 12, "feet"),
  28566. weight: math.unit(120, "lb"),
  28567. name: "Front",
  28568. image: {
  28569. source: "./media/characters/azura/front.svg",
  28570. extra: 1149 / 1135,
  28571. bottom: 45 / 1194
  28572. }
  28573. },
  28574. frontClothed: {
  28575. height: math.unit(6 + 3 / 12, "feet"),
  28576. weight: math.unit(120, "lb"),
  28577. name: "Front (Clothed)",
  28578. image: {
  28579. source: "./media/characters/azura/front-clothed.svg",
  28580. extra: 1149 / 1135,
  28581. bottom: 45 / 1194
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Normal",
  28588. height: math.unit(6 + 3 / 12, "feet"),
  28589. default: true
  28590. },
  28591. {
  28592. name: "Macro",
  28593. height: math.unit(20 + 6 / 12, "feet")
  28594. },
  28595. {
  28596. name: "Megamacro",
  28597. height: math.unit(12, "miles")
  28598. },
  28599. {
  28600. name: "Gigamacro",
  28601. height: math.unit(10000, "miles")
  28602. },
  28603. {
  28604. name: "Teramacro",
  28605. height: math.unit(900000, "miles")
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(12, "feet"),
  28614. weight: math.unit(1, "ton"),
  28615. capacity: math.unit(660000, "gallons"),
  28616. name: "Front",
  28617. image: {
  28618. source: "./media/characters/zeus/front.svg",
  28619. extra: 5005 / 4717,
  28620. bottom: 363 / 5388
  28621. }
  28622. },
  28623. },
  28624. [
  28625. {
  28626. name: "Normal",
  28627. height: math.unit(12, "feet")
  28628. },
  28629. {
  28630. name: "Preferred Size",
  28631. height: math.unit(0.5, "miles"),
  28632. default: true
  28633. },
  28634. {
  28635. name: "Giga Horse",
  28636. height: math.unit(300, "miles")
  28637. },
  28638. {
  28639. name: "Riding Planets",
  28640. height: math.unit(30, "megameters")
  28641. },
  28642. {
  28643. name: "Cosmic Giant",
  28644. height: math.unit(3, "zettameters")
  28645. },
  28646. {
  28647. name: "Breeding God",
  28648. height: math.unit(9.92e22, "yottameters")
  28649. },
  28650. ]
  28651. ))
  28652. characterMakers.push(() => makeCharacter(
  28653. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28654. {
  28655. side: {
  28656. height: math.unit(9, "feet"),
  28657. weight: math.unit(1500, "kg"),
  28658. name: "Side",
  28659. image: {
  28660. source: "./media/characters/fang/side.svg",
  28661. extra: 924 / 866,
  28662. bottom: 47.5 / 972.3
  28663. }
  28664. },
  28665. },
  28666. [
  28667. {
  28668. name: "Normal",
  28669. height: math.unit(9, "feet"),
  28670. default: true
  28671. },
  28672. {
  28673. name: "Macro",
  28674. height: math.unit(75 + 6 / 12, "feet")
  28675. },
  28676. {
  28677. name: "Teramacro",
  28678. height: math.unit(50000, "miles")
  28679. },
  28680. ]
  28681. ))
  28682. characterMakers.push(() => makeCharacter(
  28683. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28684. {
  28685. front: {
  28686. height: math.unit(10, "feet"),
  28687. weight: math.unit(2, "tons"),
  28688. name: "Front",
  28689. image: {
  28690. source: "./media/characters/rekhit/front.svg",
  28691. extra: 2796 / 2590,
  28692. bottom: 225 / 3022
  28693. }
  28694. },
  28695. },
  28696. [
  28697. {
  28698. name: "Normal",
  28699. height: math.unit(10, "feet"),
  28700. default: true
  28701. },
  28702. {
  28703. name: "Macro",
  28704. height: math.unit(500, "feet")
  28705. },
  28706. ]
  28707. ))
  28708. characterMakers.push(() => makeCharacter(
  28709. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28710. {
  28711. front: {
  28712. height: math.unit(7 + 6.451 / 12, "feet"),
  28713. weight: math.unit(310, "lb"),
  28714. name: "Front",
  28715. image: {
  28716. source: "./media/characters/dahlia-verrick/front.svg",
  28717. extra: 1488 / 1365,
  28718. bottom: 6.2 / 1495
  28719. }
  28720. },
  28721. back: {
  28722. height: math.unit(7 + 6.451 / 12, "feet"),
  28723. weight: math.unit(310, "lb"),
  28724. name: "Back",
  28725. image: {
  28726. source: "./media/characters/dahlia-verrick/back.svg",
  28727. extra: 1472 / 1351,
  28728. bottom: 5.28 / 1477
  28729. }
  28730. },
  28731. frontBusiness: {
  28732. height: math.unit(7 + 6.451 / 12, "feet"),
  28733. weight: math.unit(200, "lb"),
  28734. name: "Front (Business)",
  28735. image: {
  28736. source: "./media/characters/dahlia-verrick/front-business.svg",
  28737. extra: 1478 / 1381,
  28738. bottom: 5.5 / 1484
  28739. }
  28740. },
  28741. frontCasual: {
  28742. height: math.unit(7 + 6.451 / 12, "feet"),
  28743. weight: math.unit(200, "lb"),
  28744. name: "Front (Casual)",
  28745. image: {
  28746. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28747. extra: 1478 / 1381,
  28748. bottom: 5.5 / 1484
  28749. }
  28750. },
  28751. },
  28752. [
  28753. {
  28754. name: "Travel-Sized",
  28755. height: math.unit(7.45, "inches")
  28756. },
  28757. {
  28758. name: "Normal",
  28759. height: math.unit(7 + 6.451 / 12, "feet"),
  28760. default: true
  28761. },
  28762. {
  28763. name: "Hitting the Town",
  28764. height: math.unit(37 + 8 / 12, "feet")
  28765. },
  28766. {
  28767. name: "Stomp in the Suburbs",
  28768. height: math.unit(964 + 9.728 / 12, "feet")
  28769. },
  28770. {
  28771. name: "Sit on the City",
  28772. height: math.unit(61747 + 10.592 / 12, "feet")
  28773. },
  28774. {
  28775. name: "Glomp the Globe",
  28776. height: math.unit(252919327 + 4.832 / 12, "feet")
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(6 + 4 / 12, "feet"),
  28785. weight: math.unit(320, "lb"),
  28786. name: "Front",
  28787. image: {
  28788. source: "./media/characters/balina-mahigan/front.svg",
  28789. extra: 447 / 428,
  28790. bottom: 18 / 466
  28791. }
  28792. },
  28793. back: {
  28794. height: math.unit(6 + 4 / 12, "feet"),
  28795. weight: math.unit(320, "lb"),
  28796. name: "Back",
  28797. image: {
  28798. source: "./media/characters/balina-mahigan/back.svg",
  28799. extra: 445 / 428,
  28800. bottom: 4.07 / 448
  28801. }
  28802. },
  28803. arm: {
  28804. height: math.unit(1.88, "feet"),
  28805. name: "Arm",
  28806. image: {
  28807. source: "./media/characters/balina-mahigan/arm.svg"
  28808. }
  28809. },
  28810. backPort: {
  28811. height: math.unit(0.685, "feet"),
  28812. name: "Back Port",
  28813. image: {
  28814. source: "./media/characters/balina-mahigan/back-port.svg"
  28815. }
  28816. },
  28817. hoofpaw: {
  28818. height: math.unit(1.41, "feet"),
  28819. name: "Hoofpaw",
  28820. image: {
  28821. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28822. }
  28823. },
  28824. leftHandBack: {
  28825. height: math.unit(0.938, "feet"),
  28826. name: "Left Hand (Back)",
  28827. image: {
  28828. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28829. }
  28830. },
  28831. leftHandFront: {
  28832. height: math.unit(0.938, "feet"),
  28833. name: "Left Hand (Front)",
  28834. image: {
  28835. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28836. }
  28837. },
  28838. rightHandBack: {
  28839. height: math.unit(0.95, "feet"),
  28840. name: "Right Hand (Back)",
  28841. image: {
  28842. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28843. }
  28844. },
  28845. rightHandFront: {
  28846. height: math.unit(0.95, "feet"),
  28847. name: "Right Hand (Front)",
  28848. image: {
  28849. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Normal",
  28856. height: math.unit(6 + 4 / 12, "feet"),
  28857. default: true
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28863. {
  28864. front: {
  28865. height: math.unit(6, "feet"),
  28866. weight: math.unit(320, "lb"),
  28867. name: "Front",
  28868. image: {
  28869. source: "./media/characters/balina-mejeri/front.svg",
  28870. extra: 517 / 488,
  28871. bottom: 44.2 / 561
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(6 + 4 / 12, "feet")
  28879. },
  28880. {
  28881. name: "Business",
  28882. height: math.unit(155, "feet"),
  28883. default: true
  28884. },
  28885. ]
  28886. ))
  28887. characterMakers.push(() => makeCharacter(
  28888. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28889. {
  28890. kneeling: {
  28891. height: math.unit(6 + 4 / 12, "feet"),
  28892. weight: math.unit(300 * 20, "lb"),
  28893. name: "Kneeling",
  28894. image: {
  28895. source: "./media/characters/balbarian/kneeling.svg",
  28896. extra: 922 / 862,
  28897. bottom: 42.4 / 965
  28898. }
  28899. },
  28900. },
  28901. [
  28902. {
  28903. name: "Normal",
  28904. height: math.unit(6 + 4 / 12, "feet")
  28905. },
  28906. {
  28907. name: "Treasured",
  28908. height: math.unit(18 + 9 / 12, "feet"),
  28909. default: true
  28910. },
  28911. {
  28912. name: "Macro",
  28913. height: math.unit(900, "feet")
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28919. {
  28920. front: {
  28921. height: math.unit(6 + 4 / 12, "feet"),
  28922. weight: math.unit(325, "lb"),
  28923. name: "Front",
  28924. image: {
  28925. source: "./media/characters/balina-amarini/front.svg",
  28926. extra: 415 / 403,
  28927. bottom: 19 / 433.4
  28928. }
  28929. },
  28930. back: {
  28931. height: math.unit(6 + 4 / 12, "feet"),
  28932. weight: math.unit(325, "lb"),
  28933. name: "Back",
  28934. image: {
  28935. source: "./media/characters/balina-amarini/back.svg",
  28936. extra: 415 / 403,
  28937. bottom: 13.5 / 432
  28938. }
  28939. },
  28940. overdrive: {
  28941. height: math.unit(6 + 4 / 12, "feet"),
  28942. weight: math.unit(400, "lb"),
  28943. name: "Overdrive",
  28944. image: {
  28945. source: "./media/characters/balina-amarini/overdrive.svg",
  28946. extra: 269 / 259,
  28947. bottom: 12 / 282
  28948. }
  28949. },
  28950. },
  28951. [
  28952. {
  28953. name: "Boom",
  28954. height: math.unit(9 + 10 / 12, "feet"),
  28955. default: true
  28956. },
  28957. {
  28958. name: "Macro",
  28959. height: math.unit(280, "feet")
  28960. },
  28961. ]
  28962. ))
  28963. characterMakers.push(() => makeCharacter(
  28964. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28965. {
  28966. goddess: {
  28967. height: math.unit(600, "feet"),
  28968. weight: math.unit(2000000, "tons"),
  28969. name: "Goddess",
  28970. image: {
  28971. source: "./media/characters/lady-kubwa/goddess.svg",
  28972. extra: 1240.5 / 1223,
  28973. bottom: 22 / 1263
  28974. }
  28975. },
  28976. goddesser: {
  28977. height: math.unit(900, "feet"),
  28978. weight: math.unit(20000000, "lb"),
  28979. name: "Goddess-er",
  28980. image: {
  28981. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28982. extra: 899 / 888,
  28983. bottom: 12.6 / 912
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Macro",
  28990. height: math.unit(600, "feet"),
  28991. default: true
  28992. },
  28993. {
  28994. name: "Megamacro",
  28995. height: math.unit(250, "miles")
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29001. {
  29002. front: {
  29003. height: math.unit(7 + 7 / 12, "feet"),
  29004. weight: math.unit(250, "lb"),
  29005. name: "Front",
  29006. image: {
  29007. source: "./media/characters/tala-grovehorn/front.svg",
  29008. extra: 2636 / 2525,
  29009. bottom: 147 / 2781
  29010. }
  29011. },
  29012. back: {
  29013. height: math.unit(7 + 7 / 12, "feet"),
  29014. weight: math.unit(250, "lb"),
  29015. name: "Back",
  29016. image: {
  29017. source: "./media/characters/tala-grovehorn/back.svg",
  29018. extra: 2635 / 2539,
  29019. bottom: 100 / 2732.8
  29020. }
  29021. },
  29022. mouth: {
  29023. height: math.unit(1.15, "feet"),
  29024. name: "Mouth",
  29025. image: {
  29026. source: "./media/characters/tala-grovehorn/mouth.svg"
  29027. }
  29028. },
  29029. dick: {
  29030. height: math.unit(2.36, "feet"),
  29031. name: "Dick",
  29032. image: {
  29033. source: "./media/characters/tala-grovehorn/dick.svg"
  29034. }
  29035. },
  29036. slit: {
  29037. height: math.unit(0.61, "feet"),
  29038. name: "Slit",
  29039. image: {
  29040. source: "./media/characters/tala-grovehorn/slit.svg"
  29041. }
  29042. },
  29043. },
  29044. [
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29049. {
  29050. front: {
  29051. height: math.unit(7 + 7 / 12, "feet"),
  29052. weight: math.unit(225, "lb"),
  29053. name: "Front",
  29054. image: {
  29055. source: "./media/characters/epona/front.svg",
  29056. extra: 2445 / 2290,
  29057. bottom: 251 / 2696
  29058. }
  29059. },
  29060. back: {
  29061. height: math.unit(7 + 7 / 12, "feet"),
  29062. weight: math.unit(225, "lb"),
  29063. name: "Back",
  29064. image: {
  29065. source: "./media/characters/epona/back.svg",
  29066. extra: 2546 / 2408,
  29067. bottom: 44 / 2589
  29068. }
  29069. },
  29070. genitals: {
  29071. height: math.unit(1.5, "feet"),
  29072. name: "Genitals",
  29073. image: {
  29074. source: "./media/characters/epona/genitals.svg"
  29075. }
  29076. },
  29077. },
  29078. [
  29079. {
  29080. name: "Normal",
  29081. height: math.unit(7 + 7 / 12, "feet"),
  29082. default: true
  29083. },
  29084. ]
  29085. ))
  29086. characterMakers.push(() => makeCharacter(
  29087. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29088. {
  29089. front: {
  29090. height: math.unit(7, "feet"),
  29091. weight: math.unit(518, "lb"),
  29092. name: "Front",
  29093. image: {
  29094. source: "./media/characters/avia-bloodbourn/front.svg",
  29095. extra: 1466 / 1350,
  29096. bottom: 65 / 1527
  29097. }
  29098. },
  29099. },
  29100. [
  29101. ]
  29102. ))
  29103. characterMakers.push(() => makeCharacter(
  29104. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29105. {
  29106. front: {
  29107. height: math.unit(9.35, "feet"),
  29108. weight: math.unit(600, "lb"),
  29109. name: "Front",
  29110. image: {
  29111. source: "./media/characters/amera/front.svg",
  29112. extra: 891 / 818,
  29113. bottom: 30 / 922.7
  29114. }
  29115. },
  29116. back: {
  29117. height: math.unit(9.35, "feet"),
  29118. weight: math.unit(600, "lb"),
  29119. name: "Back",
  29120. image: {
  29121. source: "./media/characters/amera/back.svg",
  29122. extra: 876 / 824,
  29123. bottom: 6.8 / 884
  29124. }
  29125. },
  29126. dick: {
  29127. height: math.unit(2.14, "feet"),
  29128. name: "Dick",
  29129. image: {
  29130. source: "./media/characters/amera/dick.svg"
  29131. }
  29132. },
  29133. },
  29134. [
  29135. {
  29136. name: "Normal",
  29137. height: math.unit(9.35, "feet"),
  29138. default: true
  29139. },
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29144. {
  29145. kneeling: {
  29146. height: math.unit(3 + 4 / 12, "feet"),
  29147. weight: math.unit(90, "lb"),
  29148. name: "Kneeling",
  29149. image: {
  29150. source: "./media/characters/rosewen/kneeling.svg",
  29151. extra: 1835 / 1571,
  29152. bottom: 27.7 / 1862
  29153. }
  29154. },
  29155. },
  29156. [
  29157. {
  29158. name: "Normal",
  29159. height: math.unit(3 + 4 / 12, "feet"),
  29160. default: true
  29161. },
  29162. ]
  29163. ))
  29164. characterMakers.push(() => makeCharacter(
  29165. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29166. {
  29167. front: {
  29168. height: math.unit(5 + 10 / 12, "feet"),
  29169. weight: math.unit(200, "lb"),
  29170. name: "Front",
  29171. image: {
  29172. source: "./media/characters/sabah/front.svg",
  29173. extra: 849 / 763,
  29174. bottom: 33.9 / 881
  29175. }
  29176. },
  29177. },
  29178. [
  29179. {
  29180. name: "Normal",
  29181. height: math.unit(5 + 10 / 12, "feet"),
  29182. default: true
  29183. },
  29184. ]
  29185. ))
  29186. characterMakers.push(() => makeCharacter(
  29187. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29188. {
  29189. front: {
  29190. height: math.unit(3 + 5 / 12, "feet"),
  29191. weight: math.unit(40, "kg"),
  29192. name: "Front",
  29193. image: {
  29194. source: "./media/characters/purple-flame/front.svg",
  29195. extra: 1577 / 1412,
  29196. bottom: 97 / 1694
  29197. }
  29198. },
  29199. frontDressed: {
  29200. height: math.unit(3 + 5 / 12, "feet"),
  29201. weight: math.unit(40, "kg"),
  29202. name: "Front (Dressed)",
  29203. image: {
  29204. source: "./media/characters/purple-flame/front-dressed.svg",
  29205. extra: 1577 / 1412,
  29206. bottom: 97 / 1694
  29207. }
  29208. },
  29209. headphones: {
  29210. height: math.unit(0.85, "feet"),
  29211. name: "Headphones",
  29212. image: {
  29213. source: "./media/characters/purple-flame/headphones.svg"
  29214. }
  29215. },
  29216. },
  29217. [
  29218. {
  29219. name: "Really Small",
  29220. height: math.unit(5, "cm")
  29221. },
  29222. {
  29223. name: "Micro",
  29224. height: math.unit(1 + 5 / 12, "feet")
  29225. },
  29226. {
  29227. name: "Normal",
  29228. height: math.unit(3 + 5 / 12, "feet"),
  29229. default: true
  29230. },
  29231. {
  29232. name: "Minimacro",
  29233. height: math.unit(125, "feet")
  29234. },
  29235. {
  29236. name: "Macro",
  29237. height: math.unit(0.5, "miles")
  29238. },
  29239. {
  29240. name: "Megamacro",
  29241. height: math.unit(50, "miles")
  29242. },
  29243. {
  29244. name: "Gigantic",
  29245. height: math.unit(750, "miles")
  29246. },
  29247. {
  29248. name: "Planetary",
  29249. height: math.unit(15000, "miles")
  29250. },
  29251. ]
  29252. ))
  29253. characterMakers.push(() => makeCharacter(
  29254. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29255. {
  29256. front: {
  29257. height: math.unit(14, "feet"),
  29258. weight: math.unit(959, "lb"),
  29259. name: "Front",
  29260. image: {
  29261. source: "./media/characters/arsenal/front.svg",
  29262. extra: 2357 / 2157,
  29263. bottom: 93 / 2458
  29264. }
  29265. },
  29266. },
  29267. [
  29268. {
  29269. name: "Normal",
  29270. height: math.unit(14, "feet"),
  29271. default: true
  29272. },
  29273. ]
  29274. ))
  29275. characterMakers.push(() => makeCharacter(
  29276. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29277. {
  29278. front: {
  29279. height: math.unit(6, "feet"),
  29280. weight: math.unit(150, "lb"),
  29281. name: "Front",
  29282. image: {
  29283. source: "./media/characters/adira/front.svg",
  29284. extra: 1078 / 1029,
  29285. bottom: 87 / 1166
  29286. }
  29287. },
  29288. },
  29289. [
  29290. {
  29291. name: "Micro",
  29292. height: math.unit(4, "inches"),
  29293. default: true
  29294. },
  29295. {
  29296. name: "Macro",
  29297. height: math.unit(50, "feet")
  29298. },
  29299. ]
  29300. ))
  29301. characterMakers.push(() => makeCharacter(
  29302. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29303. {
  29304. front: {
  29305. height: math.unit(16, "feet"),
  29306. weight: math.unit(1000, "lb"),
  29307. name: "Front",
  29308. image: {
  29309. source: "./media/characters/grim/front.svg",
  29310. extra: 622 / 614,
  29311. bottom: 18.1 / 642
  29312. }
  29313. },
  29314. back: {
  29315. height: math.unit(16, "feet"),
  29316. weight: math.unit(1000, "lb"),
  29317. name: "Back",
  29318. image: {
  29319. source: "./media/characters/grim/back.svg",
  29320. extra: 610.6 / 602,
  29321. bottom: 40.8 / 652
  29322. }
  29323. },
  29324. hunched: {
  29325. height: math.unit(9.75, "feet"),
  29326. weight: math.unit(1000, "lb"),
  29327. name: "Hunched",
  29328. image: {
  29329. source: "./media/characters/grim/hunched.svg",
  29330. extra: 304 / 297,
  29331. bottom: 35.4 / 394
  29332. }
  29333. },
  29334. },
  29335. [
  29336. {
  29337. name: "Normal",
  29338. height: math.unit(16, "feet"),
  29339. default: true
  29340. },
  29341. ]
  29342. ))
  29343. characterMakers.push(() => makeCharacter(
  29344. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29345. {
  29346. front: {
  29347. height: math.unit(2.3, "meters"),
  29348. weight: math.unit(300, "lb"),
  29349. name: "Front",
  29350. image: {
  29351. source: "./media/characters/sinja/front-sfw.svg",
  29352. extra: 1393 / 1294,
  29353. bottom: 70 / 1463
  29354. }
  29355. },
  29356. frontNsfw: {
  29357. height: math.unit(2.3, "meters"),
  29358. weight: math.unit(300, "lb"),
  29359. name: "Front (NSFW)",
  29360. image: {
  29361. source: "./media/characters/sinja/front-nsfw.svg",
  29362. extra: 1393 / 1294,
  29363. bottom: 70 / 1463
  29364. }
  29365. },
  29366. back: {
  29367. height: math.unit(2.3, "meters"),
  29368. weight: math.unit(300, "lb"),
  29369. name: "Back",
  29370. image: {
  29371. source: "./media/characters/sinja/back.svg",
  29372. extra: 1393 / 1294,
  29373. bottom: 70 / 1463
  29374. }
  29375. },
  29376. head: {
  29377. height: math.unit(1.771, "feet"),
  29378. name: "Head",
  29379. image: {
  29380. source: "./media/characters/sinja/head.svg"
  29381. }
  29382. },
  29383. slit: {
  29384. height: math.unit(0.8, "feet"),
  29385. name: "Slit",
  29386. image: {
  29387. source: "./media/characters/sinja/slit.svg"
  29388. }
  29389. },
  29390. },
  29391. [
  29392. {
  29393. name: "Normal",
  29394. height: math.unit(2.3, "meters")
  29395. },
  29396. {
  29397. name: "Macro",
  29398. height: math.unit(91, "meters"),
  29399. default: true
  29400. },
  29401. {
  29402. name: "Megamacro",
  29403. height: math.unit(91440, "meters")
  29404. },
  29405. {
  29406. name: "Gigamacro",
  29407. height: math.unit(60960000, "meters")
  29408. },
  29409. {
  29410. name: "Teramacro",
  29411. height: math.unit(9144000000, "meters")
  29412. },
  29413. ]
  29414. ))
  29415. characterMakers.push(() => makeCharacter(
  29416. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29417. {
  29418. front: {
  29419. height: math.unit(1.7, "meters"),
  29420. weight: math.unit(130, "lb"),
  29421. name: "Front",
  29422. image: {
  29423. source: "./media/characters/kyu/front.svg",
  29424. extra: 415 / 395,
  29425. bottom: 5 / 420
  29426. }
  29427. },
  29428. head: {
  29429. height: math.unit(1.75, "feet"),
  29430. name: "Head",
  29431. image: {
  29432. source: "./media/characters/kyu/head.svg"
  29433. }
  29434. },
  29435. foot: {
  29436. height: math.unit(0.81, "feet"),
  29437. name: "Foot",
  29438. image: {
  29439. source: "./media/characters/kyu/foot.svg"
  29440. }
  29441. },
  29442. },
  29443. [
  29444. {
  29445. name: "Normal",
  29446. height: math.unit(1.7, "meters")
  29447. },
  29448. {
  29449. name: "Macro",
  29450. height: math.unit(131, "feet"),
  29451. default: true
  29452. },
  29453. {
  29454. name: "Megamacro",
  29455. height: math.unit(91440, "meters")
  29456. },
  29457. {
  29458. name: "Gigamacro",
  29459. height: math.unit(60960000, "meters")
  29460. },
  29461. {
  29462. name: "Teramacro",
  29463. height: math.unit(9144000000, "meters")
  29464. },
  29465. ]
  29466. ))
  29467. characterMakers.push(() => makeCharacter(
  29468. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29469. {
  29470. front: {
  29471. height: math.unit(7 + 1 / 12, "feet"),
  29472. weight: math.unit(250, "lb"),
  29473. name: "Front",
  29474. image: {
  29475. source: "./media/characters/joey/front.svg",
  29476. extra: 1791 / 1537,
  29477. bottom: 28 / 1816
  29478. }
  29479. },
  29480. },
  29481. [
  29482. {
  29483. name: "Micro",
  29484. height: math.unit(3, "inches")
  29485. },
  29486. {
  29487. name: "Normal",
  29488. height: math.unit(7 + 1 / 12, "feet"),
  29489. default: true
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(165, "cm"),
  29498. weight: math.unit(140, "lb"),
  29499. name: "Front",
  29500. image: {
  29501. source: "./media/characters/sam-evans/front.svg",
  29502. extra: 3417 / 3230,
  29503. bottom: 41.3 / 3417
  29504. }
  29505. },
  29506. frontSixTails: {
  29507. height: math.unit(165, "cm"),
  29508. weight: math.unit(140, "lb"),
  29509. name: "Front-six-tails",
  29510. image: {
  29511. source: "./media/characters/sam-evans/front-six-tails.svg",
  29512. extra: 3417 / 3230,
  29513. bottom: 41.3 / 3417
  29514. }
  29515. },
  29516. back: {
  29517. height: math.unit(165, "cm"),
  29518. weight: math.unit(140, "lb"),
  29519. name: "Back",
  29520. image: {
  29521. source: "./media/characters/sam-evans/back.svg",
  29522. extra: 3227 / 3032,
  29523. bottom: 6.8 / 3234
  29524. }
  29525. },
  29526. face: {
  29527. height: math.unit(0.68, "feet"),
  29528. name: "Face",
  29529. image: {
  29530. source: "./media/characters/sam-evans/face.svg"
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Normal",
  29537. height: math.unit(165, "cm"),
  29538. default: true
  29539. },
  29540. {
  29541. name: "Macro",
  29542. height: math.unit(100, "meters")
  29543. },
  29544. {
  29545. name: "Macro+",
  29546. height: math.unit(800, "meters")
  29547. },
  29548. {
  29549. name: "Macro++",
  29550. height: math.unit(3, "km")
  29551. },
  29552. {
  29553. name: "Macro+++",
  29554. height: math.unit(30, "km")
  29555. },
  29556. ]
  29557. ))
  29558. characterMakers.push(() => makeCharacter(
  29559. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29560. {
  29561. front: {
  29562. height: math.unit(10, "feet"),
  29563. weight: math.unit(750, "lb"),
  29564. name: "Front",
  29565. image: {
  29566. source: "./media/characters/juliet-a/front.svg",
  29567. extra: 1766 / 1720,
  29568. bottom: 43 / 1809
  29569. }
  29570. },
  29571. back: {
  29572. height: math.unit(10, "feet"),
  29573. weight: math.unit(750, "lb"),
  29574. name: "Back",
  29575. image: {
  29576. source: "./media/characters/juliet-a/back.svg",
  29577. extra: 1781 / 1734,
  29578. bottom: 35 / 1810,
  29579. }
  29580. },
  29581. },
  29582. [
  29583. {
  29584. name: "Normal",
  29585. height: math.unit(10, "feet"),
  29586. default: true
  29587. },
  29588. {
  29589. name: "Dragon Form",
  29590. height: math.unit(250, "feet")
  29591. },
  29592. {
  29593. name: "Macro",
  29594. height: math.unit(1000, "feet")
  29595. },
  29596. {
  29597. name: "Megamacro",
  29598. height: math.unit(10000, "feet")
  29599. }
  29600. ]
  29601. ))
  29602. characterMakers.push(() => makeCharacter(
  29603. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29604. {
  29605. regular: {
  29606. height: math.unit(7 + 3 / 12, "feet"),
  29607. weight: math.unit(260, "lb"),
  29608. name: "Regular",
  29609. image: {
  29610. source: "./media/characters/wild/regular.svg",
  29611. extra: 97.45 / 92,
  29612. bottom: 6.8 / 104.3
  29613. }
  29614. },
  29615. biggums: {
  29616. height: math.unit(8 + 6 / 12, "feet"),
  29617. weight: math.unit(425, "lb"),
  29618. name: "Biggums",
  29619. image: {
  29620. source: "./media/characters/wild/biggums.svg",
  29621. extra: 97.45 / 92,
  29622. bottom: 7.5 / 132.34
  29623. }
  29624. },
  29625. mawRegular: {
  29626. height: math.unit(1.24, "feet"),
  29627. name: "Maw (Regular)",
  29628. image: {
  29629. source: "./media/characters/wild/maw.svg"
  29630. }
  29631. },
  29632. mawBiggums: {
  29633. height: math.unit(1.47, "feet"),
  29634. name: "Maw (Biggums)",
  29635. image: {
  29636. source: "./media/characters/wild/maw.svg"
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Normal",
  29643. height: math.unit(7 + 3 / 12, "feet"),
  29644. default: true
  29645. },
  29646. ]
  29647. ))
  29648. characterMakers.push(() => makeCharacter(
  29649. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29650. {
  29651. front: {
  29652. height: math.unit(2.5, "meters"),
  29653. weight: math.unit(200, "kg"),
  29654. name: "Front",
  29655. image: {
  29656. source: "./media/characters/vidar/front.svg",
  29657. extra: 2994 / 2795,
  29658. bottom: 56 / 3061
  29659. }
  29660. },
  29661. back: {
  29662. height: math.unit(2.5, "meters"),
  29663. weight: math.unit(200, "kg"),
  29664. name: "Back",
  29665. image: {
  29666. source: "./media/characters/vidar/back.svg",
  29667. extra: 3131 / 2928,
  29668. bottom: 13.5 / 3141.5
  29669. }
  29670. },
  29671. feral: {
  29672. height: math.unit(2.5, "meters"),
  29673. weight: math.unit(2000, "kg"),
  29674. name: "Feral",
  29675. image: {
  29676. source: "./media/characters/vidar/feral.svg",
  29677. extra: 2790 / 1765,
  29678. bottom: 6 / 2796
  29679. }
  29680. },
  29681. },
  29682. [
  29683. {
  29684. name: "Normal",
  29685. height: math.unit(2.5, "meters"),
  29686. default: true
  29687. },
  29688. {
  29689. name: "Macro",
  29690. height: math.unit(100, "meters")
  29691. },
  29692. ]
  29693. ))
  29694. characterMakers.push(() => makeCharacter(
  29695. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29696. {
  29697. front: {
  29698. height: math.unit(5 + 9 / 12, "feet"),
  29699. weight: math.unit(120, "lb"),
  29700. name: "Front",
  29701. image: {
  29702. source: "./media/characters/ash/front.svg",
  29703. extra: 2189 / 1961,
  29704. bottom: 5.2 / 2194
  29705. }
  29706. },
  29707. },
  29708. [
  29709. {
  29710. name: "Normal",
  29711. height: math.unit(5 + 9 / 12, "feet"),
  29712. default: true
  29713. },
  29714. ]
  29715. ))
  29716. characterMakers.push(() => makeCharacter(
  29717. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29718. {
  29719. front: {
  29720. height: math.unit(9, "feet"),
  29721. weight: math.unit(10000, "lb"),
  29722. name: "Front",
  29723. image: {
  29724. source: "./media/characters/gygabite/front.svg",
  29725. bottom: 31.7 / 537.8,
  29726. extra: 505 / 370
  29727. }
  29728. },
  29729. },
  29730. [
  29731. {
  29732. name: "Normal",
  29733. height: math.unit(9, "feet"),
  29734. default: true
  29735. },
  29736. ]
  29737. ))
  29738. characterMakers.push(() => makeCharacter(
  29739. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29740. {
  29741. front: {
  29742. height: math.unit(12, "feet"),
  29743. weight: math.unit(4000, "lb"),
  29744. name: "Front",
  29745. image: {
  29746. source: "./media/characters/p0tat0/front.svg",
  29747. extra: 1065 / 921,
  29748. bottom: 55.7 / 1121.25
  29749. }
  29750. },
  29751. },
  29752. [
  29753. {
  29754. name: "Normal",
  29755. height: math.unit(12, "feet"),
  29756. default: true
  29757. },
  29758. ]
  29759. ))
  29760. characterMakers.push(() => makeCharacter(
  29761. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29762. {
  29763. side: {
  29764. height: math.unit(6.5, "feet"),
  29765. weight: math.unit(800, "lb"),
  29766. name: "Side",
  29767. image: {
  29768. source: "./media/characters/dusk/side.svg",
  29769. extra: 615 / 373,
  29770. bottom: 53 / 664
  29771. }
  29772. },
  29773. sitting: {
  29774. height: math.unit(7, "feet"),
  29775. weight: math.unit(800, "lb"),
  29776. name: "Sitting",
  29777. image: {
  29778. source: "./media/characters/dusk/sitting.svg",
  29779. extra: 753 / 425,
  29780. bottom: 33 / 774
  29781. }
  29782. },
  29783. head: {
  29784. height: math.unit(6.1, "feet"),
  29785. name: "Head",
  29786. image: {
  29787. source: "./media/characters/dusk/head.svg"
  29788. }
  29789. },
  29790. },
  29791. [
  29792. {
  29793. name: "Normal",
  29794. height: math.unit(7, "feet"),
  29795. default: true
  29796. },
  29797. ]
  29798. ))
  29799. characterMakers.push(() => makeCharacter(
  29800. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29801. {
  29802. front: {
  29803. height: math.unit(15, "feet"),
  29804. weight: math.unit(7000, "lb"),
  29805. name: "Front",
  29806. image: {
  29807. source: "./media/characters/jay-direwolf/front.svg",
  29808. extra: 1810 / 1732,
  29809. bottom: 66 / 1892
  29810. }
  29811. },
  29812. },
  29813. [
  29814. {
  29815. name: "Normal",
  29816. height: math.unit(15, "feet"),
  29817. default: true
  29818. },
  29819. ]
  29820. ))
  29821. characterMakers.push(() => makeCharacter(
  29822. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29823. {
  29824. front: {
  29825. height: math.unit(4 + 9 / 12, "feet"),
  29826. weight: math.unit(130, "lb"),
  29827. name: "Front",
  29828. image: {
  29829. source: "./media/characters/anchovie/front.svg",
  29830. extra: 382 / 350,
  29831. bottom: 25 / 409
  29832. }
  29833. },
  29834. back: {
  29835. height: math.unit(4 + 9 / 12, "feet"),
  29836. weight: math.unit(130, "lb"),
  29837. name: "Back",
  29838. image: {
  29839. source: "./media/characters/anchovie/back.svg",
  29840. extra: 385 / 352,
  29841. bottom: 16.6 / 402
  29842. }
  29843. },
  29844. frontDressed: {
  29845. height: math.unit(4 + 9 / 12, "feet"),
  29846. weight: math.unit(130, "lb"),
  29847. name: "Front (Dressed)",
  29848. image: {
  29849. source: "./media/characters/anchovie/front-dressed.svg",
  29850. extra: 382 / 350,
  29851. bottom: 25 / 409
  29852. }
  29853. },
  29854. backDressed: {
  29855. height: math.unit(4 + 9 / 12, "feet"),
  29856. weight: math.unit(130, "lb"),
  29857. name: "Back (Dressed)",
  29858. image: {
  29859. source: "./media/characters/anchovie/back-dressed.svg",
  29860. extra: 385 / 352,
  29861. bottom: 16.6 / 402
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Micro",
  29868. height: math.unit(6.4, "inches")
  29869. },
  29870. {
  29871. name: "Normal",
  29872. height: math.unit(4 + 9 / 12, "feet"),
  29873. default: true
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(2, "meters"),
  29882. weight: math.unit(180, "lb"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/acidrenamon/front.svg",
  29886. extra: 987 / 890,
  29887. bottom: 22.8 / 1009
  29888. }
  29889. },
  29890. back: {
  29891. height: math.unit(2, "meters"),
  29892. weight: math.unit(180, "lb"),
  29893. name: "Back",
  29894. image: {
  29895. source: "./media/characters/acidrenamon/back.svg",
  29896. extra: 983 / 891,
  29897. bottom: 8.4 / 992
  29898. }
  29899. },
  29900. head: {
  29901. height: math.unit(1.92, "feet"),
  29902. name: "Head",
  29903. image: {
  29904. source: "./media/characters/acidrenamon/head.svg"
  29905. }
  29906. },
  29907. rump: {
  29908. height: math.unit(1.72, "feet"),
  29909. name: "Rump",
  29910. image: {
  29911. source: "./media/characters/acidrenamon/rump.svg"
  29912. }
  29913. },
  29914. tail: {
  29915. height: math.unit(4.2, "feet"),
  29916. name: "Tail",
  29917. image: {
  29918. source: "./media/characters/acidrenamon/tail.svg"
  29919. }
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Normal",
  29925. height: math.unit(2, "meters"),
  29926. default: true
  29927. },
  29928. {
  29929. name: "Minimacro",
  29930. height: math.unit(7, "meters")
  29931. },
  29932. {
  29933. name: "Macro",
  29934. height: math.unit(200, "meters")
  29935. },
  29936. {
  29937. name: "Gigamacro",
  29938. height: math.unit(0.2, "earths")
  29939. },
  29940. ]
  29941. ))
  29942. characterMakers.push(() => makeCharacter(
  29943. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29944. {
  29945. front: {
  29946. height: math.unit(152, "feet"),
  29947. name: "Front",
  29948. image: {
  29949. source: "./media/characters/kenzie-lee/front.svg",
  29950. extra: 1869/1774,
  29951. bottom: 128/1997
  29952. }
  29953. },
  29954. side: {
  29955. height: math.unit(86, "feet"),
  29956. name: "Side",
  29957. image: {
  29958. source: "./media/characters/kenzie-lee/side.svg",
  29959. extra: 930/815,
  29960. bottom: 177/1107
  29961. }
  29962. },
  29963. paw: {
  29964. height: math.unit(15, "feet"),
  29965. name: "Paw",
  29966. image: {
  29967. source: "./media/characters/kenzie-lee/paw.svg"
  29968. }
  29969. },
  29970. },
  29971. [
  29972. {
  29973. name: "Kenzie Flea",
  29974. height: math.unit(2, "mm"),
  29975. default: true
  29976. },
  29977. {
  29978. name: "Micro",
  29979. height: math.unit(2, "inches")
  29980. },
  29981. {
  29982. name: "Normal",
  29983. height: math.unit(152, "feet")
  29984. },
  29985. {
  29986. name: "Megamacro",
  29987. height: math.unit(7, "miles")
  29988. },
  29989. {
  29990. name: "Gigamacro",
  29991. height: math.unit(8000, "miles")
  29992. },
  29993. ]
  29994. ))
  29995. characterMakers.push(() => makeCharacter(
  29996. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29997. {
  29998. front: {
  29999. height: math.unit(6, "feet"),
  30000. name: "Front",
  30001. image: {
  30002. source: "./media/characters/withers/front.svg",
  30003. extra: 1935/1760,
  30004. bottom: 72/2007
  30005. }
  30006. },
  30007. back: {
  30008. height: math.unit(6, "feet"),
  30009. name: "Back",
  30010. image: {
  30011. source: "./media/characters/withers/back.svg",
  30012. extra: 1944/1792,
  30013. bottom: 12/1956
  30014. }
  30015. },
  30016. dressed: {
  30017. height: math.unit(6, "feet"),
  30018. name: "Dressed",
  30019. image: {
  30020. source: "./media/characters/withers/dressed.svg",
  30021. extra: 1937/1765,
  30022. bottom: 73/2010
  30023. }
  30024. },
  30025. phase1: {
  30026. height: math.unit(1.1, "feet"),
  30027. name: "Phase 1",
  30028. image: {
  30029. source: "./media/characters/withers/phase-1.svg",
  30030. extra: 1885/1232,
  30031. bottom: 0/1885
  30032. }
  30033. },
  30034. phase2: {
  30035. height: math.unit(1.05, "feet"),
  30036. name: "Phase 2",
  30037. image: {
  30038. source: "./media/characters/withers/phase-2.svg",
  30039. extra: 1792/1090,
  30040. bottom: 0/1792
  30041. }
  30042. },
  30043. partyWipe: {
  30044. height: math.unit(1.1, "feet"),
  30045. name: "Party Wipe",
  30046. image: {
  30047. source: "./media/characters/withers/party-wipe.svg",
  30048. extra: 1864/1207,
  30049. bottom: 0/1864
  30050. }
  30051. },
  30052. },
  30053. [
  30054. {
  30055. name: "Macro",
  30056. height: math.unit(167, "feet"),
  30057. default: true
  30058. },
  30059. {
  30060. name: "Megamacro",
  30061. height: math.unit(15, "miles")
  30062. }
  30063. ]
  30064. ))
  30065. characterMakers.push(() => makeCharacter(
  30066. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30067. {
  30068. front: {
  30069. height: math.unit(6 + 7 / 12, "feet"),
  30070. weight: math.unit(250, "lb"),
  30071. name: "Front",
  30072. image: {
  30073. source: "./media/characters/nemoskii/front.svg",
  30074. extra: 2270 / 1734,
  30075. bottom: 86 / 2354
  30076. }
  30077. },
  30078. back: {
  30079. height: math.unit(6 + 7 / 12, "feet"),
  30080. weight: math.unit(250, "lb"),
  30081. name: "Back",
  30082. image: {
  30083. source: "./media/characters/nemoskii/back.svg",
  30084. extra: 1845 / 1788,
  30085. bottom: 10.5 / 1852
  30086. }
  30087. },
  30088. head: {
  30089. height: math.unit(1.31, "feet"),
  30090. name: "Head",
  30091. image: {
  30092. source: "./media/characters/nemoskii/head.svg"
  30093. }
  30094. },
  30095. },
  30096. [
  30097. {
  30098. name: "Micro",
  30099. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30100. },
  30101. {
  30102. name: "Normal",
  30103. height: math.unit(6 + 7 / 12, "feet"),
  30104. default: true
  30105. },
  30106. {
  30107. name: "Macro",
  30108. height: math.unit((6 + 7 / 12) * 150, "feet")
  30109. },
  30110. {
  30111. name: "Macro+",
  30112. height: math.unit((6 + 7 / 12) * 500, "feet")
  30113. },
  30114. {
  30115. name: "Megamacro",
  30116. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30117. },
  30118. ]
  30119. ))
  30120. characterMakers.push(() => makeCharacter(
  30121. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30122. {
  30123. front: {
  30124. height: math.unit(1, "mile"),
  30125. weight: math.unit(265261.9, "lb"),
  30126. name: "Front",
  30127. image: {
  30128. source: "./media/characters/shui/front.svg",
  30129. extra: 1633 / 1564,
  30130. bottom: 91.5 / 1726
  30131. }
  30132. },
  30133. },
  30134. [
  30135. {
  30136. name: "Macro",
  30137. height: math.unit(1, "mile"),
  30138. default: true
  30139. },
  30140. ]
  30141. ))
  30142. characterMakers.push(() => makeCharacter(
  30143. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30144. {
  30145. front: {
  30146. height: math.unit(12 + 6 / 12, "feet"),
  30147. weight: math.unit(1342, "lb"),
  30148. name: "Front",
  30149. image: {
  30150. source: "./media/characters/arokh-takakura/front.svg",
  30151. extra: 1089 / 1043,
  30152. bottom: 77.4 / 1176.7
  30153. }
  30154. },
  30155. back: {
  30156. height: math.unit(12 + 6 / 12, "feet"),
  30157. weight: math.unit(1342, "lb"),
  30158. name: "Back",
  30159. image: {
  30160. source: "./media/characters/arokh-takakura/back.svg",
  30161. extra: 1046 / 1019,
  30162. bottom: 102 / 1150
  30163. }
  30164. },
  30165. },
  30166. [
  30167. {
  30168. name: "Big",
  30169. height: math.unit(12 + 6 / 12, "feet"),
  30170. default: true
  30171. },
  30172. ]
  30173. ))
  30174. characterMakers.push(() => makeCharacter(
  30175. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30176. {
  30177. front: {
  30178. height: math.unit(5 + 6 / 12, "feet"),
  30179. weight: math.unit(150, "lb"),
  30180. name: "Front",
  30181. image: {
  30182. source: "./media/characters/theo/front.svg",
  30183. extra: 1184 / 1131,
  30184. bottom: 7.4 / 1191
  30185. }
  30186. },
  30187. },
  30188. [
  30189. {
  30190. name: "Micro",
  30191. height: math.unit(5, "inches")
  30192. },
  30193. {
  30194. name: "Normal",
  30195. height: math.unit(5 + 6 / 12, "feet"),
  30196. default: true
  30197. },
  30198. ]
  30199. ))
  30200. characterMakers.push(() => makeCharacter(
  30201. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30202. {
  30203. front: {
  30204. height: math.unit(5 + 9 / 12, "feet"),
  30205. weight: math.unit(130, "lb"),
  30206. name: "Front",
  30207. image: {
  30208. source: "./media/characters/cecelia-swift/front.svg",
  30209. extra: 502 / 484,
  30210. bottom: 23 / 523
  30211. }
  30212. },
  30213. back: {
  30214. height: math.unit(5 + 9 / 12, "feet"),
  30215. weight: math.unit(130, "lb"),
  30216. name: "Back",
  30217. image: {
  30218. source: "./media/characters/cecelia-swift/back.svg",
  30219. extra: 499 / 485,
  30220. bottom: 12 / 511
  30221. }
  30222. },
  30223. head: {
  30224. height: math.unit(0.90, "feet"),
  30225. name: "Head",
  30226. image: {
  30227. source: "./media/characters/cecelia-swift/head.svg"
  30228. }
  30229. },
  30230. rump: {
  30231. height: math.unit(1.75, "feet"),
  30232. name: "Rump",
  30233. image: {
  30234. source: "./media/characters/cecelia-swift/rump.svg"
  30235. }
  30236. },
  30237. },
  30238. [
  30239. {
  30240. name: "Normal",
  30241. height: math.unit(5 + 9 / 12, "feet"),
  30242. default: true
  30243. },
  30244. {
  30245. name: "Big",
  30246. height: math.unit(50, "feet")
  30247. },
  30248. {
  30249. name: "Macro",
  30250. height: math.unit(100, "feet")
  30251. },
  30252. {
  30253. name: "Macro+",
  30254. height: math.unit(500, "feet")
  30255. },
  30256. {
  30257. name: "Macro++",
  30258. height: math.unit(1000, "feet")
  30259. },
  30260. ]
  30261. ))
  30262. characterMakers.push(() => makeCharacter(
  30263. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30264. {
  30265. front: {
  30266. height: math.unit(6, "feet"),
  30267. weight: math.unit(150, "lb"),
  30268. name: "Front",
  30269. image: {
  30270. source: "./media/characters/kaunan/front.svg",
  30271. extra: 2890 / 2523,
  30272. bottom: 49 / 2939
  30273. }
  30274. },
  30275. },
  30276. [
  30277. {
  30278. name: "Macro",
  30279. height: math.unit(150, "feet"),
  30280. default: true
  30281. },
  30282. ]
  30283. ))
  30284. characterMakers.push(() => makeCharacter(
  30285. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30286. {
  30287. dressed: {
  30288. height: math.unit(175, "cm"),
  30289. weight: math.unit(60, "kg"),
  30290. name: "Dressed",
  30291. image: {
  30292. source: "./media/characters/fei/dressed.svg",
  30293. extra: 1402/1278,
  30294. bottom: 27/1429
  30295. }
  30296. },
  30297. nude: {
  30298. height: math.unit(175, "cm"),
  30299. weight: math.unit(60, "kg"),
  30300. name: "Nude",
  30301. image: {
  30302. source: "./media/characters/fei/nude.svg",
  30303. extra: 1402/1278,
  30304. bottom: 27/1429
  30305. }
  30306. },
  30307. heels: {
  30308. height: math.unit(0.466, "feet"),
  30309. name: "Heels",
  30310. image: {
  30311. source: "./media/characters/fei/heels.svg",
  30312. extra: 156/152,
  30313. bottom: 28/184
  30314. }
  30315. },
  30316. },
  30317. [
  30318. {
  30319. name: "Mortal",
  30320. height: math.unit(175, "cm")
  30321. },
  30322. {
  30323. name: "Normal",
  30324. height: math.unit(3500, "m")
  30325. },
  30326. {
  30327. name: "Stroll",
  30328. height: math.unit(18.4, "km"),
  30329. default: true
  30330. },
  30331. {
  30332. name: "Showoff",
  30333. height: math.unit(175, "km")
  30334. },
  30335. ]
  30336. ))
  30337. characterMakers.push(() => makeCharacter(
  30338. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30339. {
  30340. front: {
  30341. height: math.unit(7, "feet"),
  30342. weight: math.unit(1000, "kg"),
  30343. name: "Front",
  30344. image: {
  30345. source: "./media/characters/edrax/front.svg",
  30346. extra: 2838 / 2550,
  30347. bottom: 130 / 2968
  30348. }
  30349. },
  30350. },
  30351. [
  30352. {
  30353. name: "Small",
  30354. height: math.unit(7, "feet")
  30355. },
  30356. {
  30357. name: "Normal",
  30358. height: math.unit(1500, "meters")
  30359. },
  30360. {
  30361. name: "Mega",
  30362. height: math.unit(12000000, "km"),
  30363. default: true
  30364. },
  30365. {
  30366. name: "Megamacro",
  30367. height: math.unit(10600000, "lightyears")
  30368. },
  30369. {
  30370. name: "Hypermacro",
  30371. height: math.unit(256, "yottameters")
  30372. },
  30373. ]
  30374. ))
  30375. characterMakers.push(() => makeCharacter(
  30376. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30377. {
  30378. front: {
  30379. height: math.unit(10, "feet"),
  30380. weight: math.unit(750, "lb"),
  30381. name: "Front",
  30382. image: {
  30383. source: "./media/characters/clove/front.svg",
  30384. extra: 1918/1751,
  30385. bottom: 52/1970
  30386. }
  30387. },
  30388. back: {
  30389. height: math.unit(10, "feet"),
  30390. weight: math.unit(750, "lb"),
  30391. name: "Back",
  30392. image: {
  30393. source: "./media/characters/clove/back.svg",
  30394. extra: 1912/1747,
  30395. bottom: 50/1962
  30396. }
  30397. },
  30398. },
  30399. [
  30400. {
  30401. name: "Normal",
  30402. height: math.unit(10, "feet"),
  30403. default: true
  30404. },
  30405. ]
  30406. ))
  30407. characterMakers.push(() => makeCharacter(
  30408. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30409. {
  30410. front: {
  30411. height: math.unit(4, "feet"),
  30412. weight: math.unit(50, "lb"),
  30413. name: "Front",
  30414. image: {
  30415. source: "./media/characters/alex-rabbit/front.svg",
  30416. extra: 507 / 458,
  30417. bottom: 18.5 / 527
  30418. }
  30419. },
  30420. back: {
  30421. height: math.unit(4, "feet"),
  30422. weight: math.unit(50, "lb"),
  30423. name: "Back",
  30424. image: {
  30425. source: "./media/characters/alex-rabbit/back.svg",
  30426. extra: 502 / 460,
  30427. bottom: 18.9 / 521
  30428. }
  30429. },
  30430. },
  30431. [
  30432. {
  30433. name: "Normal",
  30434. height: math.unit(4, "feet"),
  30435. default: true
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30441. {
  30442. front: {
  30443. height: math.unit(1 + 3 / 12, "feet"),
  30444. weight: math.unit(80, "lb"),
  30445. name: "Front",
  30446. image: {
  30447. source: "./media/characters/zander-rose/front.svg",
  30448. extra: 916 / 797,
  30449. bottom: 17 / 933
  30450. }
  30451. },
  30452. back: {
  30453. height: math.unit(1 + 3 / 12, "feet"),
  30454. weight: math.unit(80, "lb"),
  30455. name: "Back",
  30456. image: {
  30457. source: "./media/characters/zander-rose/back.svg",
  30458. extra: 903 / 779,
  30459. bottom: 31 / 934
  30460. }
  30461. },
  30462. },
  30463. [
  30464. {
  30465. name: "Normal",
  30466. height: math.unit(1 + 3 / 12, "feet"),
  30467. default: true
  30468. },
  30469. ]
  30470. ))
  30471. characterMakers.push(() => makeCharacter(
  30472. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30473. {
  30474. anthro: {
  30475. height: math.unit(6, "feet"),
  30476. weight: math.unit(150, "lb"),
  30477. name: "Anthro",
  30478. image: {
  30479. source: "./media/characters/razz/anthro.svg",
  30480. extra: 1437 / 1343,
  30481. bottom: 48 / 1485
  30482. }
  30483. },
  30484. feral: {
  30485. height: math.unit(6, "feet"),
  30486. weight: math.unit(150, "lb"),
  30487. name: "Feral",
  30488. image: {
  30489. source: "./media/characters/razz/feral.svg",
  30490. extra: 2569 / 1385,
  30491. bottom: 95 / 2664
  30492. }
  30493. },
  30494. },
  30495. [
  30496. {
  30497. name: "Normal",
  30498. height: math.unit(6, "feet"),
  30499. default: true
  30500. },
  30501. ]
  30502. ))
  30503. characterMakers.push(() => makeCharacter(
  30504. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30505. {
  30506. front: {
  30507. height: math.unit(9 + 4 / 12, "feet"),
  30508. weight: math.unit(500, "lb"),
  30509. name: "Front",
  30510. image: {
  30511. source: "./media/characters/morrigan/front.svg",
  30512. extra: 2707 / 2579,
  30513. bottom: 156 / 2863
  30514. }
  30515. },
  30516. },
  30517. [
  30518. {
  30519. name: "Normal",
  30520. height: math.unit(9 + 4 / 12, "feet"),
  30521. default: true
  30522. },
  30523. ]
  30524. ))
  30525. characterMakers.push(() => makeCharacter(
  30526. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30527. {
  30528. front: {
  30529. height: math.unit(5, "stories"),
  30530. weight: math.unit(4000, "lb"),
  30531. name: "Front",
  30532. image: {
  30533. source: "./media/characters/jenene/front.svg",
  30534. extra: 1780 / 1710,
  30535. bottom: 57 / 1837
  30536. }
  30537. },
  30538. },
  30539. [
  30540. {
  30541. name: "Normal",
  30542. height: math.unit(5, "stories"),
  30543. default: true
  30544. },
  30545. ]
  30546. ))
  30547. characterMakers.push(() => makeCharacter(
  30548. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30549. {
  30550. taurSfw: {
  30551. height: math.unit(10, "meters"),
  30552. weight: math.unit(17500, "kg"),
  30553. name: "Taur",
  30554. image: {
  30555. source: "./media/characters/faey/taur-sfw.svg",
  30556. extra: 1200 / 968,
  30557. bottom: 41 / 1241
  30558. }
  30559. },
  30560. chestmaw: {
  30561. height: math.unit(2.01, "meters"),
  30562. name: "Chestmaw",
  30563. image: {
  30564. source: "./media/characters/faey/chestmaw.svg"
  30565. }
  30566. },
  30567. foot: {
  30568. height: math.unit(2.43, "meters"),
  30569. name: "Foot",
  30570. image: {
  30571. source: "./media/characters/faey/foot.svg"
  30572. }
  30573. },
  30574. jaws: {
  30575. height: math.unit(1.66, "meters"),
  30576. name: "Jaws",
  30577. image: {
  30578. source: "./media/characters/faey/jaws.svg"
  30579. }
  30580. },
  30581. tongues: {
  30582. height: math.unit(2.01, "meters"),
  30583. name: "Tongues",
  30584. image: {
  30585. source: "./media/characters/faey/tongues.svg"
  30586. }
  30587. },
  30588. },
  30589. [
  30590. {
  30591. name: "Small",
  30592. height: math.unit(10, "meters"),
  30593. default: true
  30594. },
  30595. {
  30596. name: "Big",
  30597. height: math.unit(500000, "km")
  30598. },
  30599. ]
  30600. ))
  30601. characterMakers.push(() => makeCharacter(
  30602. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30603. {
  30604. front: {
  30605. height: math.unit(7, "feet"),
  30606. weight: math.unit(275, "lb"),
  30607. name: "Front",
  30608. image: {
  30609. source: "./media/characters/roku/front.svg",
  30610. extra: 903 / 878,
  30611. bottom: 37 / 940
  30612. }
  30613. },
  30614. },
  30615. [
  30616. {
  30617. name: "Normal",
  30618. height: math.unit(7, "feet"),
  30619. default: true
  30620. },
  30621. {
  30622. name: "Macro",
  30623. height: math.unit(500, "feet")
  30624. },
  30625. {
  30626. name: "Megamacro",
  30627. height: math.unit(200, "miles")
  30628. },
  30629. ]
  30630. ))
  30631. characterMakers.push(() => makeCharacter(
  30632. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30633. {
  30634. front: {
  30635. height: math.unit(6 + 2 / 12, "feet"),
  30636. weight: math.unit(150, "lb"),
  30637. name: "Front",
  30638. image: {
  30639. source: "./media/characters/lira/front.svg",
  30640. extra: 1727 / 1605,
  30641. bottom: 26 / 1753
  30642. }
  30643. },
  30644. back: {
  30645. height: math.unit(6 + 2 / 12, "feet"),
  30646. weight: math.unit(150, "lb"),
  30647. name: "Back",
  30648. image: {
  30649. source: "./media/characters/lira/back.svg",
  30650. extra: 1713/1621,
  30651. bottom: 20/1733
  30652. }
  30653. },
  30654. hand: {
  30655. height: math.unit(0.75, "feet"),
  30656. name: "Hand",
  30657. image: {
  30658. source: "./media/characters/lira/hand.svg"
  30659. }
  30660. },
  30661. maw: {
  30662. height: math.unit(0.65, "feet"),
  30663. name: "Maw",
  30664. image: {
  30665. source: "./media/characters/lira/maw.svg"
  30666. }
  30667. },
  30668. pawDigi: {
  30669. height: math.unit(1.6, "feet"),
  30670. name: "Paw Digi",
  30671. image: {
  30672. source: "./media/characters/lira/paw-digi.svg"
  30673. }
  30674. },
  30675. pawPlanti: {
  30676. height: math.unit(1.4, "feet"),
  30677. name: "Paw Planti",
  30678. image: {
  30679. source: "./media/characters/lira/paw-planti.svg"
  30680. }
  30681. },
  30682. },
  30683. [
  30684. {
  30685. name: "Normal",
  30686. height: math.unit(6 + 2 / 12, "feet"),
  30687. default: true
  30688. },
  30689. {
  30690. name: "Macro",
  30691. height: math.unit(100, "feet")
  30692. },
  30693. {
  30694. name: "Macro²",
  30695. height: math.unit(1600, "feet")
  30696. },
  30697. {
  30698. name: "Planetary",
  30699. height: math.unit(20, "earths")
  30700. },
  30701. ]
  30702. ))
  30703. characterMakers.push(() => makeCharacter(
  30704. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30705. {
  30706. front: {
  30707. height: math.unit(6, "feet"),
  30708. weight: math.unit(150, "lb"),
  30709. name: "Front",
  30710. image: {
  30711. source: "./media/characters/hadjet/front.svg",
  30712. extra: 1480 / 1346,
  30713. bottom: 26 / 1506
  30714. }
  30715. },
  30716. frontNsfw: {
  30717. height: math.unit(6, "feet"),
  30718. weight: math.unit(150, "lb"),
  30719. name: "Front (NSFW)",
  30720. image: {
  30721. source: "./media/characters/hadjet/front-nsfw.svg",
  30722. extra: 1440 / 1358,
  30723. bottom: 52 / 1492
  30724. }
  30725. },
  30726. },
  30727. [
  30728. {
  30729. name: "Macro",
  30730. height: math.unit(10, "stories"),
  30731. default: true
  30732. },
  30733. {
  30734. name: "Megamacro",
  30735. height: math.unit(1.5, "miles")
  30736. },
  30737. {
  30738. name: "Megamacro+",
  30739. height: math.unit(5, "miles")
  30740. },
  30741. ]
  30742. ))
  30743. characterMakers.push(() => makeCharacter(
  30744. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30745. {
  30746. side: {
  30747. height: math.unit(106, "feet"),
  30748. weight: math.unit(500, "tonnes"),
  30749. name: "Side",
  30750. image: {
  30751. source: "./media/characters/kodran/side.svg",
  30752. extra: 553 / 480,
  30753. bottom: 33 / 586
  30754. }
  30755. },
  30756. front: {
  30757. height: math.unit(132, "feet"),
  30758. weight: math.unit(500, "tonnes"),
  30759. name: "Front",
  30760. image: {
  30761. source: "./media/characters/kodran/front.svg",
  30762. extra: 667 / 643,
  30763. bottom: 42 / 709
  30764. }
  30765. },
  30766. flying: {
  30767. height: math.unit(350, "feet"),
  30768. weight: math.unit(500, "tonnes"),
  30769. name: "Flying",
  30770. image: {
  30771. source: "./media/characters/kodran/flying.svg"
  30772. }
  30773. },
  30774. foot: {
  30775. height: math.unit(33, "feet"),
  30776. name: "Foot",
  30777. image: {
  30778. source: "./media/characters/kodran/foot.svg"
  30779. }
  30780. },
  30781. footFront: {
  30782. height: math.unit(19, "feet"),
  30783. name: "Foot (Front)",
  30784. image: {
  30785. source: "./media/characters/kodran/foot-front.svg",
  30786. extra: 261 / 261,
  30787. bottom: 91 / 352
  30788. }
  30789. },
  30790. headFront: {
  30791. height: math.unit(53, "feet"),
  30792. name: "Head (Front)",
  30793. image: {
  30794. source: "./media/characters/kodran/head-front.svg"
  30795. }
  30796. },
  30797. headSide: {
  30798. height: math.unit(65, "feet"),
  30799. name: "Head (Side)",
  30800. image: {
  30801. source: "./media/characters/kodran/head-side.svg"
  30802. }
  30803. },
  30804. throat: {
  30805. height: math.unit(79, "feet"),
  30806. name: "Throat",
  30807. image: {
  30808. source: "./media/characters/kodran/throat.svg"
  30809. }
  30810. },
  30811. },
  30812. [
  30813. {
  30814. name: "Large",
  30815. height: math.unit(106, "feet"),
  30816. default: true
  30817. },
  30818. ]
  30819. ))
  30820. characterMakers.push(() => makeCharacter(
  30821. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30822. {
  30823. side: {
  30824. height: math.unit(11, "feet"),
  30825. weight: math.unit(150, "lb"),
  30826. name: "Side",
  30827. image: {
  30828. source: "./media/characters/pyxaron/side.svg",
  30829. extra: 305 / 195,
  30830. bottom: 17 / 322
  30831. }
  30832. },
  30833. },
  30834. [
  30835. {
  30836. name: "Normal",
  30837. height: math.unit(11, "feet"),
  30838. default: true
  30839. },
  30840. ]
  30841. ))
  30842. characterMakers.push(() => makeCharacter(
  30843. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30844. {
  30845. front: {
  30846. height: math.unit(6, "feet"),
  30847. weight: math.unit(150, "lb"),
  30848. name: "Front",
  30849. image: {
  30850. source: "./media/characters/meep/front.svg",
  30851. extra: 88 / 80,
  30852. bottom: 6 / 94
  30853. }
  30854. },
  30855. },
  30856. [
  30857. {
  30858. name: "Fun Sized",
  30859. height: math.unit(2, "inches"),
  30860. default: true
  30861. },
  30862. {
  30863. name: "Friend Sized",
  30864. height: math.unit(8, "inches")
  30865. },
  30866. ]
  30867. ))
  30868. characterMakers.push(() => makeCharacter(
  30869. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30870. {
  30871. front: {
  30872. height: math.unit(15, "feet"),
  30873. weight: math.unit(2500, "lb"),
  30874. name: "Front",
  30875. image: {
  30876. source: "./media/characters/holly-rabbit/front.svg",
  30877. extra: 1433 / 1233,
  30878. bottom: 125 / 1558
  30879. }
  30880. },
  30881. dick: {
  30882. height: math.unit(4.6, "feet"),
  30883. name: "Dick",
  30884. image: {
  30885. source: "./media/characters/holly-rabbit/dick.svg"
  30886. }
  30887. },
  30888. },
  30889. [
  30890. {
  30891. name: "Normal",
  30892. height: math.unit(15, "feet"),
  30893. default: true
  30894. },
  30895. {
  30896. name: "Macro",
  30897. height: math.unit(250, "feet")
  30898. },
  30899. {
  30900. name: "Macro+",
  30901. height: math.unit(2500, "feet")
  30902. },
  30903. ]
  30904. ))
  30905. characterMakers.push(() => makeCharacter(
  30906. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30907. {
  30908. front: {
  30909. height: math.unit(3.02, "meters"),
  30910. weight: math.unit(500, "kg"),
  30911. name: "Front",
  30912. image: {
  30913. source: "./media/characters/drena/front.svg",
  30914. extra: 282 / 243,
  30915. bottom: 8 / 290
  30916. }
  30917. },
  30918. side: {
  30919. height: math.unit(3.02, "meters"),
  30920. weight: math.unit(500, "kg"),
  30921. name: "Side",
  30922. image: {
  30923. source: "./media/characters/drena/side.svg",
  30924. extra: 280 / 245,
  30925. bottom: 10 / 290
  30926. }
  30927. },
  30928. back: {
  30929. height: math.unit(3.02, "meters"),
  30930. weight: math.unit(500, "kg"),
  30931. name: "Back",
  30932. image: {
  30933. source: "./media/characters/drena/back.svg",
  30934. extra: 278 / 243,
  30935. bottom: 2 / 280
  30936. }
  30937. },
  30938. foot: {
  30939. height: math.unit(0.75, "meters"),
  30940. name: "Foot",
  30941. image: {
  30942. source: "./media/characters/drena/foot.svg"
  30943. }
  30944. },
  30945. maw: {
  30946. height: math.unit(0.82, "meters"),
  30947. name: "Maw",
  30948. image: {
  30949. source: "./media/characters/drena/maw.svg"
  30950. }
  30951. },
  30952. eating: {
  30953. height: math.unit(0.75, "meters"),
  30954. name: "Eating",
  30955. image: {
  30956. source: "./media/characters/drena/eating.svg"
  30957. }
  30958. },
  30959. rump: {
  30960. height: math.unit(0.93, "meters"),
  30961. name: "Rump",
  30962. image: {
  30963. source: "./media/characters/drena/rump.svg"
  30964. }
  30965. },
  30966. },
  30967. [
  30968. {
  30969. name: "Normal",
  30970. height: math.unit(3.02, "meters"),
  30971. default: true
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(6 + 4 / 12, "feet"),
  30980. weight: math.unit(250, "lb"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/remmyzilla/front.svg",
  30984. extra: 4033 / 3588,
  30985. bottom: 123 / 4156
  30986. }
  30987. },
  30988. back: {
  30989. height: math.unit(6 + 4 / 12, "feet"),
  30990. weight: math.unit(250, "lb"),
  30991. name: "Back",
  30992. image: {
  30993. source: "./media/characters/remmyzilla/back.svg",
  30994. extra: 2687 / 2555,
  30995. bottom: 48 / 2735
  30996. }
  30997. },
  30998. paw: {
  30999. height: math.unit(1.73, "feet"),
  31000. name: "Paw",
  31001. image: {
  31002. source: "./media/characters/remmyzilla/paw.svg"
  31003. },
  31004. extraAttributes: {
  31005. "toeSize": {
  31006. name: "Toe Size",
  31007. power: 2,
  31008. type: "area",
  31009. base: math.unit(0.0035, "m^2")
  31010. },
  31011. "padSize": {
  31012. name: "Pad Size",
  31013. power: 2,
  31014. type: "area",
  31015. base: math.unit(0.015, "m^2")
  31016. },
  31017. "pawsize": {
  31018. name: "Paw Size",
  31019. power: 2,
  31020. type: "area",
  31021. base: math.unit(0.072, "m^2")
  31022. },
  31023. }
  31024. },
  31025. maw: {
  31026. height: math.unit(1.73, "feet"),
  31027. name: "Maw",
  31028. image: {
  31029. source: "./media/characters/remmyzilla/maw.svg"
  31030. }
  31031. },
  31032. },
  31033. [
  31034. {
  31035. name: "Normal",
  31036. height: math.unit(6 + 4 / 12, "feet")
  31037. },
  31038. {
  31039. name: "Minimacro",
  31040. height: math.unit(12 + 8 / 12, "feet")
  31041. },
  31042. {
  31043. name: "Normal",
  31044. height: math.unit(640, "feet"),
  31045. default: true
  31046. },
  31047. {
  31048. name: "Megamacro",
  31049. height: math.unit(6400, "feet")
  31050. },
  31051. {
  31052. name: "Gigamacro",
  31053. height: math.unit(64000, "miles")
  31054. },
  31055. ]
  31056. ))
  31057. characterMakers.push(() => makeCharacter(
  31058. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31059. {
  31060. front: {
  31061. height: math.unit(2.5, "meters"),
  31062. weight: math.unit(300, "lb"),
  31063. name: "Front",
  31064. image: {
  31065. source: "./media/characters/lawrence/front.svg",
  31066. extra: 357 / 335,
  31067. bottom: 30 / 387
  31068. }
  31069. },
  31070. back: {
  31071. height: math.unit(2.5, "meters"),
  31072. weight: math.unit(300, "lb"),
  31073. name: "Back",
  31074. image: {
  31075. source: "./media/characters/lawrence/back.svg",
  31076. extra: 357 / 338,
  31077. bottom: 16 / 373
  31078. }
  31079. },
  31080. head: {
  31081. height: math.unit(0.9, "meter"),
  31082. name: "Head",
  31083. image: {
  31084. source: "./media/characters/lawrence/head.svg"
  31085. }
  31086. },
  31087. maw: {
  31088. height: math.unit(0.7, "meter"),
  31089. name: "Maw",
  31090. image: {
  31091. source: "./media/characters/lawrence/maw.svg"
  31092. }
  31093. },
  31094. footBottom: {
  31095. height: math.unit(0.5, "meter"),
  31096. name: "Foot (Bottom)",
  31097. image: {
  31098. source: "./media/characters/lawrence/foot-bottom.svg"
  31099. }
  31100. },
  31101. footTop: {
  31102. height: math.unit(0.5, "meter"),
  31103. name: "Foot (Top)",
  31104. image: {
  31105. source: "./media/characters/lawrence/foot-top.svg"
  31106. }
  31107. },
  31108. },
  31109. [
  31110. {
  31111. name: "Normal",
  31112. height: math.unit(2.5, "meters"),
  31113. default: true
  31114. },
  31115. {
  31116. name: "Macro",
  31117. height: math.unit(95, "meters")
  31118. },
  31119. {
  31120. name: "Megamacro",
  31121. height: math.unit(150, "km")
  31122. },
  31123. ]
  31124. ))
  31125. characterMakers.push(() => makeCharacter(
  31126. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31127. {
  31128. front: {
  31129. height: math.unit(4.2, "meters"),
  31130. preyCapacity: math.unit(50, "m^3"),
  31131. weight: math.unit(30, "tonnes"),
  31132. name: "Front",
  31133. image: {
  31134. source: "./media/characters/sydney/front.svg",
  31135. extra: 1177/1129,
  31136. bottom: 197/1374
  31137. },
  31138. extraAttributes: {
  31139. "length": {
  31140. name: "Length",
  31141. power: 1,
  31142. type: "length",
  31143. base: math.unit(21, "meters")
  31144. },
  31145. }
  31146. },
  31147. },
  31148. [
  31149. {
  31150. name: "Normal",
  31151. height: math.unit(4.2, "meters"),
  31152. default: true
  31153. },
  31154. ]
  31155. ))
  31156. characterMakers.push(() => makeCharacter(
  31157. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31158. {
  31159. back: {
  31160. height: math.unit(201, "feet"),
  31161. name: "Back",
  31162. image: {
  31163. source: "./media/characters/jessica/back.svg",
  31164. extra: 273 / 259,
  31165. bottom: 7 / 280
  31166. }
  31167. },
  31168. },
  31169. [
  31170. {
  31171. name: "Normal",
  31172. height: math.unit(201, "feet"),
  31173. default: true
  31174. },
  31175. {
  31176. name: "Megamacro",
  31177. height: math.unit(8, "miles")
  31178. },
  31179. ]
  31180. ))
  31181. characterMakers.push(() => makeCharacter(
  31182. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31183. {
  31184. side: {
  31185. height: math.unit(5.6, "m"),
  31186. weight: math.unit(8000, "kg"),
  31187. name: "Side",
  31188. image: {
  31189. source: "./media/characters/victoria/side.svg",
  31190. extra: 1542/1229,
  31191. bottom: 124/1666
  31192. }
  31193. },
  31194. maw: {
  31195. height: math.unit(7.14, "feet"),
  31196. name: "Maw",
  31197. image: {
  31198. source: "./media/characters/victoria/maw.svg"
  31199. }
  31200. },
  31201. },
  31202. [
  31203. {
  31204. name: "Normal",
  31205. height: math.unit(5.6, "m"),
  31206. default: true
  31207. },
  31208. ]
  31209. ))
  31210. characterMakers.push(() => makeCharacter(
  31211. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31212. {
  31213. front: {
  31214. height: math.unit(5 + 6 / 12, "feet"),
  31215. name: "Front",
  31216. image: {
  31217. source: "./media/characters/cat/front.svg",
  31218. extra: 1449/1295,
  31219. bottom: 34/1483
  31220. },
  31221. form: "cat",
  31222. default: true
  31223. },
  31224. back: {
  31225. height: math.unit(5 + 6 / 12, "feet"),
  31226. name: "Back",
  31227. image: {
  31228. source: "./media/characters/cat/back.svg",
  31229. extra: 1466/1301,
  31230. bottom: 19/1485
  31231. },
  31232. form: "cat"
  31233. },
  31234. taur: {
  31235. height: math.unit(7, "feet"),
  31236. name: "Taur",
  31237. image: {
  31238. source: "./media/characters/cat/taur.svg",
  31239. extra: 1389/1233,
  31240. bottom: 83/1472
  31241. },
  31242. form: "taur",
  31243. default: true
  31244. },
  31245. lucarioFront: {
  31246. height: math.unit(4, "feet"),
  31247. name: "Lucario (Front)",
  31248. image: {
  31249. source: "./media/characters/cat/lucario-front.svg",
  31250. extra: 1149/1019,
  31251. bottom: 84/1233
  31252. },
  31253. form: "lucario",
  31254. default: true
  31255. },
  31256. lucarioBack: {
  31257. height: math.unit(4, "feet"),
  31258. name: "Lucario (Back)",
  31259. image: {
  31260. source: "./media/characters/cat/lucario-back.svg",
  31261. extra: 1190/1059,
  31262. bottom: 33/1223
  31263. },
  31264. form: "lucario"
  31265. },
  31266. megaLucario: {
  31267. height: math.unit(4, "feet"),
  31268. name: "Mega Lucario",
  31269. image: {
  31270. source: "./media/characters/cat/mega-lucario.svg",
  31271. extra: 1515 / 1319,
  31272. bottom: 63 / 1578
  31273. },
  31274. form: "lucario"
  31275. },
  31276. nickit: {
  31277. height: math.unit(2, "feet"),
  31278. name: "Nickit",
  31279. image: {
  31280. source: "./media/characters/cat/nickit.svg",
  31281. extra: 1980 / 1585,
  31282. bottom: 102 / 2082
  31283. },
  31284. form: "nickit",
  31285. default: true
  31286. },
  31287. lopunnyFront: {
  31288. height: math.unit(5, "feet"),
  31289. name: "Lopunny (Front)",
  31290. image: {
  31291. source: "./media/characters/cat/lopunny-front.svg",
  31292. extra: 1782 / 1469,
  31293. bottom: 38 / 1820
  31294. },
  31295. form: "lopunny",
  31296. default: true
  31297. },
  31298. lopunnyBack: {
  31299. height: math.unit(5, "feet"),
  31300. name: "Lopunny (Back)",
  31301. image: {
  31302. source: "./media/characters/cat/lopunny-back.svg",
  31303. extra: 1660 / 1490,
  31304. bottom: 25 / 1685
  31305. },
  31306. form: "lopunny"
  31307. },
  31308. },
  31309. [
  31310. {
  31311. name: "Really small",
  31312. height: math.unit(1, "nm")
  31313. },
  31314. {
  31315. name: "Micro",
  31316. height: math.unit(5, "inches")
  31317. },
  31318. {
  31319. name: "Normal",
  31320. height: math.unit(5 + 6 / 12, "feet"),
  31321. default: true
  31322. },
  31323. {
  31324. name: "Macro",
  31325. height: math.unit(50, "feet")
  31326. },
  31327. {
  31328. name: "Macro+",
  31329. height: math.unit(150, "feet")
  31330. },
  31331. {
  31332. name: "Megamacro",
  31333. height: math.unit(100, "miles")
  31334. },
  31335. ]
  31336. ))
  31337. characterMakers.push(() => makeCharacter(
  31338. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31339. {
  31340. front: {
  31341. height: math.unit(63.4, "meters"),
  31342. weight: math.unit(3.28349e+6, "kilograms"),
  31343. name: "Front",
  31344. image: {
  31345. source: "./media/characters/kirina-violet/front.svg",
  31346. extra: 2812 / 2725,
  31347. bottom: 0 / 2812
  31348. }
  31349. },
  31350. back: {
  31351. height: math.unit(63.4, "meters"),
  31352. weight: math.unit(3.28349e+6, "kilograms"),
  31353. name: "Back",
  31354. image: {
  31355. source: "./media/characters/kirina-violet/back.svg",
  31356. extra: 2812 / 2725,
  31357. bottom: 0 / 2812
  31358. }
  31359. },
  31360. mouth: {
  31361. height: math.unit(4.35, "meters"),
  31362. name: "Mouth",
  31363. image: {
  31364. source: "./media/characters/kirina-violet/mouth.svg"
  31365. }
  31366. },
  31367. paw: {
  31368. height: math.unit(5.6, "meters"),
  31369. name: "Paw",
  31370. image: {
  31371. source: "./media/characters/kirina-violet/paw.svg"
  31372. }
  31373. },
  31374. tail: {
  31375. height: math.unit(18, "meters"),
  31376. name: "Tail",
  31377. image: {
  31378. source: "./media/characters/kirina-violet/tail.svg"
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Macro",
  31385. height: math.unit(63.4, "meters"),
  31386. default: true
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31392. {
  31393. front: {
  31394. height: math.unit(75, "feet"),
  31395. name: "Front",
  31396. image: {
  31397. source: "./media/characters/cat-gigachu/front.svg",
  31398. extra: 1239/1027,
  31399. bottom: 32/1271
  31400. }
  31401. },
  31402. back: {
  31403. height: math.unit(75, "feet"),
  31404. name: "Back",
  31405. image: {
  31406. source: "./media/characters/cat-gigachu/back.svg",
  31407. extra: 1229/1030,
  31408. bottom: 9/1238
  31409. }
  31410. },
  31411. },
  31412. [
  31413. {
  31414. name: "Dynamax",
  31415. height: math.unit(75, "feet"),
  31416. default: true
  31417. },
  31418. ]
  31419. ))
  31420. characterMakers.push(() => makeCharacter(
  31421. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31422. {
  31423. front: {
  31424. height: math.unit(6, "feet"),
  31425. weight: math.unit(150, "lb"),
  31426. name: "Front",
  31427. image: {
  31428. source: "./media/characters/sfaiyan/front.svg",
  31429. extra: 999 / 978,
  31430. bottom: 5 / 1004
  31431. }
  31432. },
  31433. },
  31434. [
  31435. {
  31436. name: "Normal",
  31437. height: math.unit(1.82, "meters")
  31438. },
  31439. {
  31440. name: "Giant",
  31441. height: math.unit(2.27, "km"),
  31442. default: true
  31443. },
  31444. ]
  31445. ))
  31446. characterMakers.push(() => makeCharacter(
  31447. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31448. {
  31449. front: {
  31450. height: math.unit(179, "cm"),
  31451. weight: math.unit(100, "kg"),
  31452. name: "Front",
  31453. image: {
  31454. source: "./media/characters/raunehkeli/front.svg",
  31455. extra: 1934 / 1926,
  31456. bottom: 0 / 1934
  31457. }
  31458. },
  31459. },
  31460. [
  31461. {
  31462. name: "Normal",
  31463. height: math.unit(179, "cm")
  31464. },
  31465. {
  31466. name: "Maximum",
  31467. height: math.unit(575, "meters"),
  31468. default: true
  31469. },
  31470. ]
  31471. ))
  31472. characterMakers.push(() => makeCharacter(
  31473. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31474. {
  31475. front: {
  31476. height: math.unit(6, "feet"),
  31477. weight: math.unit(150, "lb"),
  31478. name: "Front",
  31479. image: {
  31480. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31481. extra: 2625 / 2518,
  31482. bottom: 60 / 2685
  31483. }
  31484. },
  31485. },
  31486. [
  31487. {
  31488. name: "Normal",
  31489. height: math.unit(6 + 2 / 12, "feet")
  31490. },
  31491. {
  31492. name: "Macro",
  31493. height: math.unit(1180, "feet"),
  31494. default: true
  31495. },
  31496. ]
  31497. ))
  31498. characterMakers.push(() => makeCharacter(
  31499. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31500. {
  31501. front: {
  31502. height: math.unit(5 + 6 / 12, "feet"),
  31503. weight: math.unit(108, "lb"),
  31504. name: "Front",
  31505. image: {
  31506. source: "./media/characters/lilith-zott/front.svg",
  31507. extra: 2510 / 2238,
  31508. bottom: 100 / 2610
  31509. }
  31510. },
  31511. frontDressed: {
  31512. height: math.unit(5 + 6 / 12, "feet"),
  31513. weight: math.unit(108, "lb"),
  31514. name: "Front (Dressed)",
  31515. image: {
  31516. source: "./media/characters/lilith-zott/front-dressed.svg",
  31517. extra: 2510 / 2238,
  31518. bottom: 100 / 2610
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Normal",
  31525. height: math.unit(5 + 6 / 12, "feet")
  31526. },
  31527. {
  31528. name: "Macro",
  31529. height: math.unit(1030, "feet"),
  31530. default: true
  31531. },
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31536. {
  31537. front: {
  31538. height: math.unit(6, "feet"),
  31539. weight: math.unit(150, "lb"),
  31540. name: "Front",
  31541. image: {
  31542. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31543. extra: 2567 / 2435,
  31544. bottom: 39 / 2606
  31545. }
  31546. },
  31547. frontSuper: {
  31548. height: math.unit(6, "feet"),
  31549. name: "Front (Super)",
  31550. image: {
  31551. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31552. extra: 2567 / 2435,
  31553. bottom: 39 / 2606
  31554. }
  31555. },
  31556. },
  31557. [
  31558. {
  31559. name: "Normal",
  31560. height: math.unit(5 + 10 / 12, "feet")
  31561. },
  31562. {
  31563. name: "Macro",
  31564. height: math.unit(1100, "feet"),
  31565. default: true
  31566. },
  31567. ]
  31568. ))
  31569. characterMakers.push(() => makeCharacter(
  31570. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31571. {
  31572. front: {
  31573. height: math.unit(100, "miles"),
  31574. name: "Front",
  31575. image: {
  31576. source: "./media/characters/sona/front.svg",
  31577. extra: 2433 / 2201,
  31578. bottom: 53 / 2486
  31579. }
  31580. },
  31581. foot: {
  31582. height: math.unit(16.1, "miles"),
  31583. name: "Foot",
  31584. image: {
  31585. source: "./media/characters/sona/foot.svg"
  31586. }
  31587. },
  31588. },
  31589. [
  31590. {
  31591. name: "Macro",
  31592. height: math.unit(100, "miles"),
  31593. default: true
  31594. },
  31595. ]
  31596. ))
  31597. characterMakers.push(() => makeCharacter(
  31598. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31599. {
  31600. front: {
  31601. height: math.unit(6, "feet"),
  31602. weight: math.unit(150, "lb"),
  31603. name: "Front",
  31604. image: {
  31605. source: "./media/characters/bailey/front.svg",
  31606. extra: 1778 / 1724,
  31607. bottom: 30 / 1808
  31608. }
  31609. },
  31610. },
  31611. [
  31612. {
  31613. name: "Micro",
  31614. height: math.unit(4, "inches")
  31615. },
  31616. {
  31617. name: "Normal",
  31618. height: math.unit(5 + 5 / 12, "feet"),
  31619. default: true
  31620. },
  31621. {
  31622. name: "Macro",
  31623. height: math.unit(250, "feet")
  31624. },
  31625. {
  31626. name: "Megamacro",
  31627. height: math.unit(100, "miles")
  31628. },
  31629. ]
  31630. ))
  31631. characterMakers.push(() => makeCharacter(
  31632. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31633. {
  31634. front: {
  31635. height: math.unit(5 + 2 / 12, "feet"),
  31636. weight: math.unit(120, "lb"),
  31637. name: "Front",
  31638. image: {
  31639. source: "./media/characters/snaps/front.svg",
  31640. extra: 2370 / 2177,
  31641. bottom: 48 / 2418
  31642. }
  31643. },
  31644. back: {
  31645. height: math.unit(5 + 2 / 12, "feet"),
  31646. weight: math.unit(120, "lb"),
  31647. name: "Back",
  31648. image: {
  31649. source: "./media/characters/snaps/back.svg",
  31650. extra: 2408 / 2258,
  31651. bottom: 15 / 2423
  31652. }
  31653. },
  31654. },
  31655. [
  31656. {
  31657. name: "Micro",
  31658. height: math.unit(9, "inches")
  31659. },
  31660. {
  31661. name: "Normal",
  31662. height: math.unit(5 + 2 / 12, "feet"),
  31663. default: true
  31664. },
  31665. {
  31666. name: "Mini Macro",
  31667. height: math.unit(10, "feet")
  31668. },
  31669. ]
  31670. ))
  31671. characterMakers.push(() => makeCharacter(
  31672. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31673. {
  31674. front: {
  31675. height: math.unit(1.8, "meters"),
  31676. weight: math.unit(85, "kg"),
  31677. name: "Front",
  31678. image: {
  31679. source: "./media/characters/azteck/front.svg",
  31680. extra: 2815 / 2625,
  31681. bottom: 89 / 2904
  31682. }
  31683. },
  31684. back: {
  31685. height: math.unit(1.8, "meters"),
  31686. weight: math.unit(85, "kg"),
  31687. name: "Back",
  31688. image: {
  31689. source: "./media/characters/azteck/back.svg",
  31690. extra: 2856 / 2648,
  31691. bottom: 85 / 2941
  31692. }
  31693. },
  31694. frontDressed: {
  31695. height: math.unit(1.8, "meters"),
  31696. weight: math.unit(85, "kg"),
  31697. name: "Front (Dressed)",
  31698. image: {
  31699. source: "./media/characters/azteck/front-dressed.svg",
  31700. extra: 2147 / 2003,
  31701. bottom: 68 / 2215
  31702. }
  31703. },
  31704. head: {
  31705. height: math.unit(0.47, "meters"),
  31706. weight: math.unit(85, "kg"),
  31707. name: "Head",
  31708. image: {
  31709. source: "./media/characters/azteck/head.svg"
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Bite sized",
  31716. height: math.unit(16, "cm")
  31717. },
  31718. {
  31719. name: "Normal",
  31720. height: math.unit(1.8, "meters"),
  31721. default: true
  31722. },
  31723. ]
  31724. ))
  31725. characterMakers.push(() => makeCharacter(
  31726. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31727. {
  31728. front: {
  31729. height: math.unit(6, "feet"),
  31730. weight: math.unit(150, "lb"),
  31731. name: "Front",
  31732. image: {
  31733. source: "./media/characters/pidge/front.svg",
  31734. extra: 1936/1820,
  31735. bottom: 0/1936
  31736. }
  31737. },
  31738. back: {
  31739. height: math.unit(6, "feet"),
  31740. weight: math.unit(150, "lb"),
  31741. name: "Back",
  31742. image: {
  31743. source: "./media/characters/pidge/back.svg",
  31744. extra: 1938/1843,
  31745. bottom: 0/1938
  31746. }
  31747. },
  31748. casual: {
  31749. height: math.unit(6, "feet"),
  31750. weight: math.unit(150, "lb"),
  31751. name: "Casual",
  31752. image: {
  31753. source: "./media/characters/pidge/casual.svg",
  31754. extra: 1936/1820,
  31755. bottom: 0/1936
  31756. }
  31757. },
  31758. tech: {
  31759. height: math.unit(6, "feet"),
  31760. weight: math.unit(150, "lb"),
  31761. name: "Tech",
  31762. image: {
  31763. source: "./media/characters/pidge/tech.svg",
  31764. extra: 1802/1682,
  31765. bottom: 0/1802
  31766. }
  31767. },
  31768. head: {
  31769. height: math.unit(1.61, "feet"),
  31770. name: "Head",
  31771. image: {
  31772. source: "./media/characters/pidge/head.svg"
  31773. }
  31774. },
  31775. collar: {
  31776. height: math.unit(0.82, "feet"),
  31777. name: "Collar",
  31778. image: {
  31779. source: "./media/characters/pidge/collar.svg"
  31780. }
  31781. },
  31782. },
  31783. [
  31784. {
  31785. name: "Macro",
  31786. height: math.unit(2, "mile"),
  31787. default: true
  31788. },
  31789. {
  31790. name: "PUPPY",
  31791. height: math.unit(20, "miles")
  31792. },
  31793. ]
  31794. ))
  31795. characterMakers.push(() => makeCharacter(
  31796. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31797. {
  31798. front: {
  31799. height: math.unit(6, "feet"),
  31800. weight: math.unit(150, "lb"),
  31801. name: "Front",
  31802. image: {
  31803. source: "./media/characters/en/front.svg",
  31804. extra: 1697 / 1563,
  31805. bottom: 103 / 1800
  31806. }
  31807. },
  31808. back: {
  31809. height: math.unit(6, "feet"),
  31810. weight: math.unit(150, "lb"),
  31811. name: "Back",
  31812. image: {
  31813. source: "./media/characters/en/back.svg",
  31814. extra: 1700 / 1570,
  31815. bottom: 51 / 1751
  31816. }
  31817. },
  31818. frontDressed: {
  31819. height: math.unit(6, "feet"),
  31820. weight: math.unit(150, "lb"),
  31821. name: "Front (Dressed)",
  31822. image: {
  31823. source: "./media/characters/en/front-dressed.svg",
  31824. extra: 1697 / 1563,
  31825. bottom: 103 / 1800
  31826. }
  31827. },
  31828. backDressed: {
  31829. height: math.unit(6, "feet"),
  31830. weight: math.unit(150, "lb"),
  31831. name: "Back (Dressed)",
  31832. image: {
  31833. source: "./media/characters/en/back-dressed.svg",
  31834. extra: 1700 / 1570,
  31835. bottom: 51 / 1751
  31836. }
  31837. },
  31838. },
  31839. [
  31840. {
  31841. name: "Macro",
  31842. height: math.unit(210, "feet"),
  31843. default: true
  31844. },
  31845. ]
  31846. ))
  31847. characterMakers.push(() => makeCharacter(
  31848. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31849. {
  31850. front: {
  31851. height: math.unit(6, "feet"),
  31852. weight: math.unit(150, "lb"),
  31853. name: "Front",
  31854. image: {
  31855. source: "./media/characters/haze-orris/front.svg",
  31856. extra: 3975 / 3525,
  31857. bottom: 137 / 4112
  31858. }
  31859. },
  31860. },
  31861. [
  31862. {
  31863. name: "Micro",
  31864. height: math.unit(150, "mm"),
  31865. default: true
  31866. },
  31867. ]
  31868. ))
  31869. characterMakers.push(() => makeCharacter(
  31870. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31871. {
  31872. front: {
  31873. height: math.unit(6, "feet"),
  31874. weight: math.unit(150, "lb"),
  31875. name: "Front",
  31876. image: {
  31877. source: "./media/characters/casselene-yaro/front.svg",
  31878. extra: 4721 / 4541,
  31879. bottom: 82 / 4803
  31880. }
  31881. },
  31882. back: {
  31883. height: math.unit(6, "feet"),
  31884. weight: math.unit(150, "lb"),
  31885. name: "Back",
  31886. image: {
  31887. source: "./media/characters/casselene-yaro/back.svg",
  31888. extra: 4569 / 4377,
  31889. bottom: 69 / 4638
  31890. }
  31891. },
  31892. dressed: {
  31893. height: math.unit(6, "feet"),
  31894. weight: math.unit(150, "lb"),
  31895. name: "Dressed",
  31896. image: {
  31897. source: "./media/characters/casselene-yaro/dressed.svg",
  31898. extra: 4721 / 4541,
  31899. bottom: 82 / 4803
  31900. }
  31901. },
  31902. maw: {
  31903. height: math.unit(1, "feet"),
  31904. name: "Maw",
  31905. image: {
  31906. source: "./media/characters/casselene-yaro/maw.svg"
  31907. }
  31908. },
  31909. },
  31910. [
  31911. {
  31912. name: "Macro",
  31913. height: math.unit(190, "feet"),
  31914. default: true
  31915. },
  31916. ]
  31917. ))
  31918. characterMakers.push(() => makeCharacter(
  31919. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31920. {
  31921. front: {
  31922. height: math.unit(10, "feet"),
  31923. weight: math.unit(15015, "lb"),
  31924. name: "Front",
  31925. image: {
  31926. source: "./media/characters/platine/front.svg",
  31927. extra: 1741/1650,
  31928. bottom: 84/1825
  31929. }
  31930. },
  31931. side: {
  31932. height: math.unit(10, "feet"),
  31933. weight: math.unit(15015, "lb"),
  31934. name: "Side",
  31935. image: {
  31936. source: "./media/characters/platine/side.svg",
  31937. extra: 1790/1705,
  31938. bottom: 29/1819
  31939. }
  31940. },
  31941. },
  31942. [
  31943. {
  31944. name: "Normal",
  31945. height: math.unit(10, "feet"),
  31946. default: true
  31947. },
  31948. {
  31949. name: "Macro",
  31950. height: math.unit(100, "feet")
  31951. },
  31952. {
  31953. name: "Megamacro",
  31954. height: math.unit(1000, "feet")
  31955. },
  31956. ]
  31957. ))
  31958. characterMakers.push(() => makeCharacter(
  31959. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31960. {
  31961. front: {
  31962. height: math.unit(15 + 5 / 12, "feet"),
  31963. weight: math.unit(4600, "lb"),
  31964. name: "Front",
  31965. image: {
  31966. source: "./media/characters/neapolitan-ananassa/front.svg",
  31967. extra: 2903 / 2736,
  31968. bottom: 0 / 2903
  31969. }
  31970. },
  31971. side: {
  31972. height: math.unit(15 + 5 / 12, "feet"),
  31973. weight: math.unit(4600, "lb"),
  31974. name: "Side",
  31975. image: {
  31976. source: "./media/characters/neapolitan-ananassa/side.svg",
  31977. extra: 2925 / 2719,
  31978. bottom: 0 / 2925
  31979. }
  31980. },
  31981. back: {
  31982. height: math.unit(15 + 5 / 12, "feet"),
  31983. weight: math.unit(4600, "lb"),
  31984. name: "Back",
  31985. image: {
  31986. source: "./media/characters/neapolitan-ananassa/back.svg",
  31987. extra: 2903 / 2736,
  31988. bottom: 0 / 2903
  31989. }
  31990. },
  31991. },
  31992. [
  31993. {
  31994. name: "Normal",
  31995. height: math.unit(15 + 5 / 12, "feet"),
  31996. default: true
  31997. },
  31998. {
  31999. name: "Post-Millenium",
  32000. height: math.unit(35 + 5 / 12, "feet")
  32001. },
  32002. {
  32003. name: "Post-Era",
  32004. height: math.unit(450 + 5 / 12, "feet")
  32005. },
  32006. ]
  32007. ))
  32008. characterMakers.push(() => makeCharacter(
  32009. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32010. {
  32011. front: {
  32012. height: math.unit(300, "meters"),
  32013. weight: math.unit(125000, "tonnes"),
  32014. name: "Front",
  32015. image: {
  32016. source: "./media/characters/pazuzu/front.svg",
  32017. extra: 877 / 794,
  32018. bottom: 47 / 924
  32019. }
  32020. },
  32021. },
  32022. [
  32023. {
  32024. name: "Macro",
  32025. height: math.unit(300, "meters"),
  32026. default: true
  32027. },
  32028. ]
  32029. ))
  32030. characterMakers.push(() => makeCharacter(
  32031. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32032. {
  32033. side: {
  32034. height: math.unit(10 + 7 / 12, "feet"),
  32035. weight: math.unit(2.5, "tons"),
  32036. name: "Side",
  32037. image: {
  32038. source: "./media/characters/aasha/side.svg",
  32039. extra: 1345 / 1245,
  32040. bottom: 111 / 1456
  32041. }
  32042. },
  32043. back: {
  32044. height: math.unit(10 + 7 / 12, "feet"),
  32045. weight: math.unit(2.5, "tons"),
  32046. name: "Back",
  32047. image: {
  32048. source: "./media/characters/aasha/back.svg",
  32049. extra: 1133 / 1057,
  32050. bottom: 257 / 1390
  32051. }
  32052. },
  32053. },
  32054. [
  32055. {
  32056. name: "Normal",
  32057. height: math.unit(10 + 7 / 12, "feet"),
  32058. default: true
  32059. },
  32060. ]
  32061. ))
  32062. characterMakers.push(() => makeCharacter(
  32063. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32064. {
  32065. front: {
  32066. height: math.unit(6 + 3 / 12, "feet"),
  32067. name: "Front",
  32068. image: {
  32069. source: "./media/characters/nevan/front.svg",
  32070. extra: 704 / 704,
  32071. bottom: 28 / 732
  32072. }
  32073. },
  32074. back: {
  32075. height: math.unit(6 + 3 / 12, "feet"),
  32076. name: "Back",
  32077. image: {
  32078. source: "./media/characters/nevan/back.svg",
  32079. extra: 714 / 714,
  32080. bottom: 21 / 735
  32081. }
  32082. },
  32083. frontFlaccid: {
  32084. height: math.unit(6 + 3 / 12, "feet"),
  32085. name: "Front (Flaccid)",
  32086. image: {
  32087. source: "./media/characters/nevan/front-flaccid.svg",
  32088. extra: 704 / 704,
  32089. bottom: 28 / 732
  32090. }
  32091. },
  32092. frontErect: {
  32093. height: math.unit(6 + 3 / 12, "feet"),
  32094. name: "Front (Erect)",
  32095. image: {
  32096. source: "./media/characters/nevan/front-erect.svg",
  32097. extra: 704 / 704,
  32098. bottom: 28 / 732
  32099. }
  32100. },
  32101. backFlaccid: {
  32102. height: math.unit(6 + 3 / 12, "feet"),
  32103. name: "Back (Flaccid)",
  32104. image: {
  32105. source: "./media/characters/nevan/back-flaccid.svg",
  32106. extra: 714 / 714,
  32107. bottom: 21 / 735
  32108. }
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Normal",
  32114. height: math.unit(6 + 3 / 12, "feet"),
  32115. default: true
  32116. },
  32117. ]
  32118. ))
  32119. characterMakers.push(() => makeCharacter(
  32120. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32121. {
  32122. front: {
  32123. height: math.unit(4, "feet"),
  32124. name: "Front",
  32125. image: {
  32126. source: "./media/characters/arhan/front.svg",
  32127. extra: 3368 / 3133,
  32128. bottom: 0 / 3368
  32129. }
  32130. },
  32131. side: {
  32132. height: math.unit(4, "feet"),
  32133. name: "Side",
  32134. image: {
  32135. source: "./media/characters/arhan/side.svg",
  32136. extra: 3347 / 3105,
  32137. bottom: 0 / 3347
  32138. }
  32139. },
  32140. tongue: {
  32141. height: math.unit(1.42, "feet"),
  32142. name: "Tongue",
  32143. image: {
  32144. source: "./media/characters/arhan/tongue.svg"
  32145. }
  32146. },
  32147. head: {
  32148. height: math.unit(0.85, "feet"),
  32149. name: "Head",
  32150. image: {
  32151. source: "./media/characters/arhan/head.svg"
  32152. }
  32153. },
  32154. },
  32155. [
  32156. {
  32157. name: "Normal",
  32158. height: math.unit(4, "feet"),
  32159. default: true
  32160. },
  32161. ]
  32162. ))
  32163. characterMakers.push(() => makeCharacter(
  32164. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32165. {
  32166. front: {
  32167. height: math.unit(5 + 7.5 / 12, "feet"),
  32168. weight: math.unit(120, "lb"),
  32169. name: "Front",
  32170. image: {
  32171. source: "./media/characters/digi-duncan/front.svg",
  32172. extra: 330 / 326,
  32173. bottom: 16 / 346
  32174. }
  32175. },
  32176. side: {
  32177. height: math.unit(5 + 7.5 / 12, "feet"),
  32178. weight: math.unit(120, "lb"),
  32179. name: "Side",
  32180. image: {
  32181. source: "./media/characters/digi-duncan/side.svg",
  32182. extra: 341 / 337,
  32183. bottom: 1 / 342
  32184. }
  32185. },
  32186. back: {
  32187. height: math.unit(5 + 7.5 / 12, "feet"),
  32188. weight: math.unit(120, "lb"),
  32189. name: "Back",
  32190. image: {
  32191. source: "./media/characters/digi-duncan/back.svg",
  32192. extra: 330 / 326,
  32193. bottom: 12 / 342
  32194. }
  32195. },
  32196. },
  32197. [
  32198. {
  32199. name: "Speck",
  32200. height: math.unit(0.25, "mm")
  32201. },
  32202. {
  32203. name: "Micro",
  32204. height: math.unit(5, "mm")
  32205. },
  32206. {
  32207. name: "Tiny",
  32208. height: math.unit(0.5, "inches"),
  32209. default: true
  32210. },
  32211. {
  32212. name: "Human",
  32213. height: math.unit(5 + 7.5 / 12, "feet")
  32214. },
  32215. {
  32216. name: "Minigiant",
  32217. height: math.unit(8 + 5.25, "feet")
  32218. },
  32219. {
  32220. name: "Giant",
  32221. height: math.unit(2000, "feet")
  32222. },
  32223. {
  32224. name: "Mega",
  32225. height: math.unit(371.1, "miles")
  32226. },
  32227. ]
  32228. ))
  32229. characterMakers.push(() => makeCharacter(
  32230. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32231. {
  32232. front: {
  32233. height: math.unit(2, "meters"),
  32234. weight: math.unit(350, "kg"),
  32235. name: "Front",
  32236. image: {
  32237. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32238. extra: 898 / 838,
  32239. bottom: 9 / 907
  32240. }
  32241. },
  32242. },
  32243. [
  32244. {
  32245. name: "Micro",
  32246. height: math.unit(8, "meters")
  32247. },
  32248. {
  32249. name: "Normal",
  32250. height: math.unit(50, "meters"),
  32251. default: true
  32252. },
  32253. {
  32254. name: "Macro",
  32255. height: math.unit(500, "meters")
  32256. },
  32257. ]
  32258. ))
  32259. characterMakers.push(() => makeCharacter(
  32260. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32261. {
  32262. front: {
  32263. height: math.unit(6 + 6 / 12, "feet"),
  32264. name: "Front",
  32265. image: {
  32266. source: "./media/characters/khardesh/front.svg",
  32267. extra: 1788/1596,
  32268. bottom: 66/1854
  32269. }
  32270. },
  32271. back: {
  32272. height: math.unit(6 + 6 / 12, "feet"),
  32273. name: "Back",
  32274. image: {
  32275. source: "./media/characters/khardesh/back.svg",
  32276. extra: 1781/1584,
  32277. bottom: 68/1849
  32278. }
  32279. },
  32280. },
  32281. [
  32282. {
  32283. name: "Normal",
  32284. height: math.unit(6 + 6 / 12, "feet"),
  32285. default: true
  32286. },
  32287. {
  32288. name: "Normal+",
  32289. height: math.unit(4, "meters")
  32290. },
  32291. {
  32292. name: "Macro",
  32293. height: math.unit(50, "meters")
  32294. },
  32295. {
  32296. name: "Macro+",
  32297. height: math.unit(100, "meters")
  32298. },
  32299. {
  32300. name: "Megamacro",
  32301. height: math.unit(20, "km")
  32302. },
  32303. ]
  32304. ))
  32305. characterMakers.push(() => makeCharacter(
  32306. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32307. {
  32308. front: {
  32309. height: math.unit(6, "feet"),
  32310. weight: math.unit(150, "lb"),
  32311. name: "Front",
  32312. image: {
  32313. source: "./media/characters/kosho/front.svg",
  32314. extra: 1847 / 1847,
  32315. bottom: 86 / 1933
  32316. }
  32317. },
  32318. },
  32319. [
  32320. {
  32321. name: "Second-stage micro",
  32322. height: math.unit(0.5, "inches")
  32323. },
  32324. {
  32325. name: "First-stage micro",
  32326. height: math.unit(6, "inches")
  32327. },
  32328. {
  32329. name: "Normal",
  32330. height: math.unit(6, "feet"),
  32331. default: true
  32332. },
  32333. {
  32334. name: "First-stage macro",
  32335. height: math.unit(72, "feet")
  32336. },
  32337. {
  32338. name: "Second-stage macro",
  32339. height: math.unit(864, "feet")
  32340. },
  32341. ]
  32342. ))
  32343. characterMakers.push(() => makeCharacter(
  32344. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32345. {
  32346. normal: {
  32347. height: math.unit(4 + 6 / 12, "feet"),
  32348. name: "Normal",
  32349. image: {
  32350. source: "./media/characters/hydra/normal.svg",
  32351. extra: 2833 / 2634,
  32352. bottom: 68 / 2901
  32353. }
  32354. },
  32355. smol: {
  32356. height: math.unit(0.705, "inches"),
  32357. name: "Smol",
  32358. image: {
  32359. source: "./media/characters/hydra/smol.svg",
  32360. extra: 2715 / 2540,
  32361. bottom: 0 / 2715
  32362. }
  32363. },
  32364. },
  32365. [
  32366. {
  32367. name: "Normal",
  32368. height: math.unit(4 + 6 / 12, "feet"),
  32369. default: true
  32370. }
  32371. ]
  32372. ))
  32373. characterMakers.push(() => makeCharacter(
  32374. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32375. {
  32376. front: {
  32377. height: math.unit(0.6, "cm"),
  32378. name: "Front",
  32379. image: {
  32380. source: "./media/characters/daz/front.svg",
  32381. extra: 1682 / 1164,
  32382. bottom: 42 / 1724
  32383. }
  32384. },
  32385. },
  32386. [
  32387. {
  32388. name: "Normal",
  32389. height: math.unit(0.6, "cm"),
  32390. default: true
  32391. },
  32392. ]
  32393. ))
  32394. characterMakers.push(() => makeCharacter(
  32395. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32396. {
  32397. front: {
  32398. height: math.unit(6, "feet"),
  32399. weight: math.unit(235, "lb"),
  32400. name: "Front",
  32401. image: {
  32402. source: "./media/characters/theo-pangolin/front.svg",
  32403. extra: 1996 / 1969,
  32404. bottom: 115 / 2111
  32405. }
  32406. },
  32407. back: {
  32408. height: math.unit(6, "feet"),
  32409. weight: math.unit(235, "lb"),
  32410. name: "Back",
  32411. image: {
  32412. source: "./media/characters/theo-pangolin/back.svg",
  32413. extra: 1979 / 1979,
  32414. bottom: 40 / 2019
  32415. }
  32416. },
  32417. feral: {
  32418. height: math.unit(2, "feet"),
  32419. weight: math.unit(30, "lb"),
  32420. name: "Feral",
  32421. image: {
  32422. source: "./media/characters/theo-pangolin/feral.svg",
  32423. extra: 803 / 791,
  32424. bottom: 181 / 984
  32425. }
  32426. },
  32427. footFive: {
  32428. height: math.unit(1.43, "feet"),
  32429. name: "Foot (Five Toes)",
  32430. image: {
  32431. source: "./media/characters/theo-pangolin/foot-five.svg"
  32432. }
  32433. },
  32434. footFour: {
  32435. height: math.unit(1.43, "feet"),
  32436. name: "Foot (Four Toes)",
  32437. image: {
  32438. source: "./media/characters/theo-pangolin/foot-four.svg"
  32439. }
  32440. },
  32441. handFour: {
  32442. height: math.unit(0.81, "feet"),
  32443. name: "Hand (Four Fingers)",
  32444. image: {
  32445. source: "./media/characters/theo-pangolin/hand-four.svg"
  32446. }
  32447. },
  32448. handThree: {
  32449. height: math.unit(0.81, "feet"),
  32450. name: "Hand (Three Fingers)",
  32451. image: {
  32452. source: "./media/characters/theo-pangolin/hand-three.svg"
  32453. }
  32454. },
  32455. headFront: {
  32456. height: math.unit(1.37, "feet"),
  32457. name: "Head (Front)",
  32458. image: {
  32459. source: "./media/characters/theo-pangolin/head-front.svg"
  32460. }
  32461. },
  32462. headSide: {
  32463. height: math.unit(1.43, "feet"),
  32464. name: "Head (Side)",
  32465. image: {
  32466. source: "./media/characters/theo-pangolin/head-side.svg"
  32467. }
  32468. },
  32469. tongue: {
  32470. height: math.unit(2.29, "feet"),
  32471. name: "Tongue",
  32472. image: {
  32473. source: "./media/characters/theo-pangolin/tongue.svg"
  32474. }
  32475. },
  32476. },
  32477. [
  32478. {
  32479. name: "Normal",
  32480. height: math.unit(6, "feet")
  32481. },
  32482. {
  32483. name: "Macro",
  32484. height: math.unit(400, "feet"),
  32485. default: true
  32486. },
  32487. ]
  32488. ))
  32489. characterMakers.push(() => makeCharacter(
  32490. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32491. {
  32492. front: {
  32493. height: math.unit(6, "inches"),
  32494. weight: math.unit(0.036, "kg"),
  32495. name: "Front",
  32496. image: {
  32497. source: "./media/characters/renée/front.svg",
  32498. extra: 900 / 886,
  32499. bottom: 8 / 908
  32500. }
  32501. },
  32502. },
  32503. [
  32504. {
  32505. name: "Nano",
  32506. height: math.unit(1, "nm")
  32507. },
  32508. {
  32509. name: "Micro",
  32510. height: math.unit(1, "mm")
  32511. },
  32512. {
  32513. name: "Normal",
  32514. height: math.unit(6, "inches")
  32515. },
  32516. {
  32517. name: "Macro",
  32518. height: math.unit(2000, "feet"),
  32519. default: true
  32520. },
  32521. {
  32522. name: "Megamacro",
  32523. height: math.unit(2, "km")
  32524. },
  32525. {
  32526. name: "Gigamacro",
  32527. height: math.unit(2000, "km")
  32528. },
  32529. {
  32530. name: "Teramacro",
  32531. height: math.unit(250000, "km")
  32532. },
  32533. ]
  32534. ))
  32535. characterMakers.push(() => makeCharacter(
  32536. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32537. {
  32538. front: {
  32539. height: math.unit(4, "meters"),
  32540. weight: math.unit(150, "kg"),
  32541. name: "Front",
  32542. image: {
  32543. source: "./media/characters/caledvwlch/front.svg",
  32544. extra: 1757/1537,
  32545. bottom: 31/1788
  32546. }
  32547. },
  32548. side: {
  32549. height: math.unit(4, "meters"),
  32550. weight: math.unit(150, "kg"),
  32551. name: "Side",
  32552. image: {
  32553. source: "./media/characters/caledvwlch/side.svg",
  32554. extra: 1605 / 1536,
  32555. bottom: 31 / 1636
  32556. }
  32557. },
  32558. back: {
  32559. height: math.unit(4, "meters"),
  32560. weight: math.unit(150, "kg"),
  32561. name: "Back",
  32562. image: {
  32563. source: "./media/characters/caledvwlch/back.svg",
  32564. extra: 1635 / 1565,
  32565. bottom: 27 / 1662
  32566. }
  32567. },
  32568. },
  32569. [
  32570. {
  32571. name: "\"Incognito\"",
  32572. height: math.unit(4, "meters")
  32573. },
  32574. {
  32575. name: "Small rampage",
  32576. height: math.unit(600, "meters")
  32577. },
  32578. {
  32579. name: "Mega",
  32580. height: math.unit(30, "km")
  32581. },
  32582. {
  32583. name: "Home-size",
  32584. height: math.unit(50, "km"),
  32585. default: true
  32586. },
  32587. {
  32588. name: "Giga",
  32589. height: math.unit(300, "km")
  32590. },
  32591. {
  32592. name: "Lounging",
  32593. height: math.unit(11000, "km")
  32594. },
  32595. {
  32596. name: "Planet snacking",
  32597. height: math.unit(2000000, "km")
  32598. },
  32599. ]
  32600. ))
  32601. characterMakers.push(() => makeCharacter(
  32602. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32603. {
  32604. front: {
  32605. height: math.unit(6, "feet"),
  32606. weight: math.unit(215, "lb"),
  32607. name: "Front",
  32608. image: {
  32609. source: "./media/characters/sapphire-svell/front.svg",
  32610. extra: 495 / 455,
  32611. bottom: 20 / 515
  32612. }
  32613. },
  32614. back: {
  32615. height: math.unit(6, "feet"),
  32616. weight: math.unit(216, "lb"),
  32617. name: "Back",
  32618. image: {
  32619. source: "./media/characters/sapphire-svell/back.svg",
  32620. extra: 497 / 477,
  32621. bottom: 7 / 504
  32622. }
  32623. },
  32624. maw: {
  32625. height: math.unit(1.57, "feet"),
  32626. name: "Maw",
  32627. image: {
  32628. source: "./media/characters/sapphire-svell/maw.svg"
  32629. }
  32630. },
  32631. foot: {
  32632. height: math.unit(1.07, "feet"),
  32633. name: "Foot",
  32634. image: {
  32635. source: "./media/characters/sapphire-svell/foot.svg"
  32636. }
  32637. },
  32638. toering: {
  32639. height: math.unit(1.7, "inch"),
  32640. name: "Toering",
  32641. image: {
  32642. source: "./media/characters/sapphire-svell/toering.svg"
  32643. }
  32644. },
  32645. },
  32646. [
  32647. {
  32648. name: "Normal",
  32649. height: math.unit(300, "feet"),
  32650. default: true
  32651. },
  32652. {
  32653. name: "Augmented",
  32654. height: math.unit(1250, "feet")
  32655. },
  32656. {
  32657. name: "Unleashed",
  32658. height: math.unit(3000, "feet")
  32659. },
  32660. ]
  32661. ))
  32662. characterMakers.push(() => makeCharacter(
  32663. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32664. {
  32665. side: {
  32666. height: math.unit(2 + 3 / 12, "feet"),
  32667. weight: math.unit(110, "lb"),
  32668. name: "Side",
  32669. image: {
  32670. source: "./media/characters/glitch-flux/side.svg",
  32671. extra: 997 / 805,
  32672. bottom: 20 / 1017
  32673. }
  32674. },
  32675. },
  32676. [
  32677. {
  32678. name: "Normal",
  32679. height: math.unit(2 + 3 / 12, "feet"),
  32680. default: true
  32681. },
  32682. ]
  32683. ))
  32684. characterMakers.push(() => makeCharacter(
  32685. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32686. {
  32687. front: {
  32688. height: math.unit(4, "meters"),
  32689. name: "Front",
  32690. image: {
  32691. source: "./media/characters/mid/front.svg",
  32692. extra: 507 / 476,
  32693. bottom: 17 / 524
  32694. }
  32695. },
  32696. back: {
  32697. height: math.unit(4, "meters"),
  32698. name: "Back",
  32699. image: {
  32700. source: "./media/characters/mid/back.svg",
  32701. extra: 519 / 487,
  32702. bottom: 7 / 526
  32703. }
  32704. },
  32705. stuck: {
  32706. height: math.unit(2.2, "meters"),
  32707. name: "Stuck",
  32708. image: {
  32709. source: "./media/characters/mid/stuck.svg",
  32710. extra: 1951 / 1869,
  32711. bottom: 88 / 2039
  32712. }
  32713. }
  32714. },
  32715. [
  32716. {
  32717. name: "Normal",
  32718. height: math.unit(4, "meters"),
  32719. default: true
  32720. },
  32721. {
  32722. name: "Big",
  32723. height: math.unit(10, "meters")
  32724. },
  32725. {
  32726. name: "Macro",
  32727. height: math.unit(800, "meters")
  32728. },
  32729. {
  32730. name: "Megamacro",
  32731. height: math.unit(100, "km")
  32732. },
  32733. {
  32734. name: "Overgrown",
  32735. height: math.unit(1, "parsec")
  32736. },
  32737. ]
  32738. ))
  32739. characterMakers.push(() => makeCharacter(
  32740. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32741. {
  32742. front: {
  32743. height: math.unit(2.5, "meters"),
  32744. weight: math.unit(225, "kg"),
  32745. name: "Front",
  32746. image: {
  32747. source: "./media/characters/iris/front.svg",
  32748. extra: 3348 / 3251,
  32749. bottom: 205 / 3553
  32750. }
  32751. },
  32752. maw: {
  32753. height: math.unit(0.56, "meter"),
  32754. name: "Maw",
  32755. image: {
  32756. source: "./media/characters/iris/maw.svg"
  32757. }
  32758. },
  32759. },
  32760. [
  32761. {
  32762. name: "Mewter cat",
  32763. height: math.unit(1.2, "meters")
  32764. },
  32765. {
  32766. name: "Normal",
  32767. height: math.unit(2.5, "meters"),
  32768. default: true
  32769. },
  32770. {
  32771. name: "Minimacro",
  32772. height: math.unit(18, "feet")
  32773. },
  32774. {
  32775. name: "Macro",
  32776. height: math.unit(140, "feet")
  32777. },
  32778. {
  32779. name: "Macro+",
  32780. height: math.unit(180, "meters")
  32781. },
  32782. {
  32783. name: "Megamacro",
  32784. height: math.unit(2746, "meters")
  32785. },
  32786. ]
  32787. ))
  32788. characterMakers.push(() => makeCharacter(
  32789. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32790. {
  32791. front: {
  32792. height: math.unit(6, "feet"),
  32793. weight: math.unit(135, "lb"),
  32794. name: "Front",
  32795. image: {
  32796. source: "./media/characters/axel/front.svg",
  32797. extra: 908 / 908,
  32798. bottom: 58 / 966
  32799. }
  32800. },
  32801. side: {
  32802. height: math.unit(6, "feet"),
  32803. weight: math.unit(135, "lb"),
  32804. name: "Side",
  32805. image: {
  32806. source: "./media/characters/axel/side.svg",
  32807. extra: 958 / 958,
  32808. bottom: 11 / 969
  32809. }
  32810. },
  32811. back: {
  32812. height: math.unit(6, "feet"),
  32813. weight: math.unit(135, "lb"),
  32814. name: "Back",
  32815. image: {
  32816. source: "./media/characters/axel/back.svg",
  32817. extra: 887 / 887,
  32818. bottom: 34 / 921
  32819. }
  32820. },
  32821. head: {
  32822. height: math.unit(1.07, "feet"),
  32823. name: "Head",
  32824. image: {
  32825. source: "./media/characters/axel/head.svg"
  32826. }
  32827. },
  32828. beak: {
  32829. height: math.unit(1.4, "feet"),
  32830. name: "Beak",
  32831. image: {
  32832. source: "./media/characters/axel/beak.svg"
  32833. }
  32834. },
  32835. beakSide: {
  32836. height: math.unit(1.4, "feet"),
  32837. name: "Beak Side",
  32838. image: {
  32839. source: "./media/characters/axel/beak-side.svg"
  32840. }
  32841. },
  32842. sheath: {
  32843. height: math.unit(0.5, "feet"),
  32844. name: "Sheath",
  32845. image: {
  32846. source: "./media/characters/axel/sheath.svg"
  32847. }
  32848. },
  32849. dick: {
  32850. height: math.unit(0.98, "feet"),
  32851. name: "Dick",
  32852. image: {
  32853. source: "./media/characters/axel/dick.svg"
  32854. }
  32855. },
  32856. },
  32857. [
  32858. {
  32859. name: "Macro",
  32860. height: math.unit(68, "meters"),
  32861. default: true
  32862. },
  32863. ]
  32864. ))
  32865. characterMakers.push(() => makeCharacter(
  32866. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32867. {
  32868. front: {
  32869. height: math.unit(3.5, "meters"),
  32870. weight: math.unit(1200, "kg"),
  32871. name: "Front",
  32872. image: {
  32873. source: "./media/characters/joanna/front.svg",
  32874. extra: 1596 / 1488,
  32875. bottom: 29 / 1625
  32876. }
  32877. },
  32878. back: {
  32879. height: math.unit(3.5, "meters"),
  32880. weight: math.unit(1200, "kg"),
  32881. name: "Back",
  32882. image: {
  32883. source: "./media/characters/joanna/back.svg",
  32884. extra: 1594 / 1495,
  32885. bottom: 26 / 1620
  32886. }
  32887. },
  32888. frontShorts: {
  32889. height: math.unit(3.5, "meters"),
  32890. weight: math.unit(1200, "kg"),
  32891. name: "Front (Shorts)",
  32892. image: {
  32893. source: "./media/characters/joanna/front-shorts.svg",
  32894. extra: 1596 / 1488,
  32895. bottom: 29 / 1625
  32896. }
  32897. },
  32898. frontBiker: {
  32899. height: math.unit(3.5, "meters"),
  32900. weight: math.unit(1200, "kg"),
  32901. name: "Front (Biker)",
  32902. image: {
  32903. source: "./media/characters/joanna/front-biker.svg",
  32904. extra: 1596 / 1488,
  32905. bottom: 29 / 1625
  32906. }
  32907. },
  32908. backBiker: {
  32909. height: math.unit(3.5, "meters"),
  32910. weight: math.unit(1200, "kg"),
  32911. name: "Back (Biker)",
  32912. image: {
  32913. source: "./media/characters/joanna/back-biker.svg",
  32914. extra: 1594 / 1495,
  32915. bottom: 88 / 1682
  32916. }
  32917. },
  32918. bikeLeft: {
  32919. height: math.unit(2.4, "meters"),
  32920. weight: math.unit(1600, "kg"),
  32921. name: "Bike (Left)",
  32922. image: {
  32923. source: "./media/characters/joanna/bike-left.svg",
  32924. extra: 720 / 720,
  32925. bottom: 8 / 728
  32926. }
  32927. },
  32928. bikeRight: {
  32929. height: math.unit(2.4, "meters"),
  32930. weight: math.unit(1600, "kg"),
  32931. name: "Bike (Right)",
  32932. image: {
  32933. source: "./media/characters/joanna/bike-right.svg",
  32934. extra: 720 / 720,
  32935. bottom: 8 / 728
  32936. }
  32937. },
  32938. },
  32939. [
  32940. {
  32941. name: "Incognito",
  32942. height: math.unit(3.5, "meters")
  32943. },
  32944. {
  32945. name: "Casual Big",
  32946. height: math.unit(200, "meters")
  32947. },
  32948. {
  32949. name: "Macro",
  32950. height: math.unit(600, "meters")
  32951. },
  32952. {
  32953. name: "Original",
  32954. height: math.unit(20, "km"),
  32955. default: true
  32956. },
  32957. {
  32958. name: "Giga",
  32959. height: math.unit(400, "km")
  32960. },
  32961. {
  32962. name: "Lounging",
  32963. height: math.unit(1500, "km")
  32964. },
  32965. {
  32966. name: "Planetary",
  32967. height: math.unit(200000, "km")
  32968. },
  32969. ]
  32970. ))
  32971. characterMakers.push(() => makeCharacter(
  32972. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32973. {
  32974. front: {
  32975. height: math.unit(6, "feet"),
  32976. weight: math.unit(150, "lb"),
  32977. name: "Front",
  32978. image: {
  32979. source: "./media/characters/hugo-sigil/front.svg",
  32980. extra: 522 / 500,
  32981. bottom: 2 / 524
  32982. }
  32983. },
  32984. back: {
  32985. height: math.unit(6, "feet"),
  32986. weight: math.unit(150, "lb"),
  32987. name: "Back",
  32988. image: {
  32989. source: "./media/characters/hugo-sigil/back.svg",
  32990. extra: 519 / 495,
  32991. bottom: 5 / 524
  32992. }
  32993. },
  32994. maw: {
  32995. height: math.unit(1.4, "feet"),
  32996. weight: math.unit(150, "lb"),
  32997. name: "Maw",
  32998. image: {
  32999. source: "./media/characters/hugo-sigil/maw.svg"
  33000. }
  33001. },
  33002. feet: {
  33003. height: math.unit(1.56, "feet"),
  33004. weight: math.unit(150, "lb"),
  33005. name: "Feet",
  33006. image: {
  33007. source: "./media/characters/hugo-sigil/feet.svg",
  33008. extra: 177 / 177,
  33009. bottom: 12 / 189
  33010. }
  33011. },
  33012. },
  33013. [
  33014. {
  33015. name: "Normal",
  33016. height: math.unit(6, "feet")
  33017. },
  33018. {
  33019. name: "Macro",
  33020. height: math.unit(200, "feet"),
  33021. default: true
  33022. },
  33023. ]
  33024. ))
  33025. characterMakers.push(() => makeCharacter(
  33026. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33027. {
  33028. front: {
  33029. height: math.unit(6, "feet"),
  33030. weight: math.unit(150, "lb"),
  33031. name: "Front",
  33032. image: {
  33033. source: "./media/characters/peri/front.svg",
  33034. extra: 2354 / 2233,
  33035. bottom: 49 / 2403
  33036. }
  33037. },
  33038. },
  33039. [
  33040. {
  33041. name: "Really Small",
  33042. height: math.unit(1, "nm")
  33043. },
  33044. {
  33045. name: "Micro",
  33046. height: math.unit(4, "inches")
  33047. },
  33048. {
  33049. name: "Normal",
  33050. height: math.unit(7, "inches"),
  33051. default: true
  33052. },
  33053. {
  33054. name: "Macro",
  33055. height: math.unit(400, "feet")
  33056. },
  33057. {
  33058. name: "Megamacro",
  33059. height: math.unit(100, "miles")
  33060. },
  33061. ]
  33062. ))
  33063. characterMakers.push(() => makeCharacter(
  33064. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33065. {
  33066. frontSlim: {
  33067. height: math.unit(7, "feet"),
  33068. name: "Front (Slim)",
  33069. image: {
  33070. source: "./media/characters/issilora/front-slim.svg",
  33071. extra: 529 / 449,
  33072. bottom: 53 / 582
  33073. }
  33074. },
  33075. sideSlim: {
  33076. height: math.unit(7, "feet"),
  33077. name: "Side (Slim)",
  33078. image: {
  33079. source: "./media/characters/issilora/side-slim.svg",
  33080. extra: 570 / 480,
  33081. bottom: 30 / 600
  33082. }
  33083. },
  33084. backSlim: {
  33085. height: math.unit(7, "feet"),
  33086. name: "Back (Slim)",
  33087. image: {
  33088. source: "./media/characters/issilora/back-slim.svg",
  33089. extra: 537 / 455,
  33090. bottom: 46 / 583
  33091. }
  33092. },
  33093. frontBuff: {
  33094. height: math.unit(7, "feet"),
  33095. name: "Front (Buff)",
  33096. image: {
  33097. source: "./media/characters/issilora/front-buff.svg",
  33098. extra: 2310 / 2035,
  33099. bottom: 335 / 2645
  33100. }
  33101. },
  33102. head: {
  33103. height: math.unit(1.94, "feet"),
  33104. name: "Head",
  33105. image: {
  33106. source: "./media/characters/issilora/head.svg"
  33107. }
  33108. },
  33109. },
  33110. [
  33111. {
  33112. name: "Minimum",
  33113. height: math.unit(7, "feet")
  33114. },
  33115. {
  33116. name: "Comfortable",
  33117. height: math.unit(17, "feet")
  33118. },
  33119. {
  33120. name: "Fun Size",
  33121. height: math.unit(47, "feet")
  33122. },
  33123. {
  33124. name: "Natural Macro",
  33125. height: math.unit(137, "feet"),
  33126. default: true
  33127. },
  33128. {
  33129. name: "Maximum Kaiju",
  33130. height: math.unit(397, "feet")
  33131. },
  33132. ]
  33133. ))
  33134. characterMakers.push(() => makeCharacter(
  33135. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33136. {
  33137. front: {
  33138. height: math.unit(50 + 9/12, "feet"),
  33139. weight: math.unit(32.8, "tons"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/irb'iiritaahn/front.svg",
  33143. extra: 1878/1826,
  33144. bottom: 326/2204
  33145. }
  33146. },
  33147. back: {
  33148. height: math.unit(50 + 9/12, "feet"),
  33149. weight: math.unit(32.8, "tons"),
  33150. name: "Back",
  33151. image: {
  33152. source: "./media/characters/irb'iiritaahn/back.svg",
  33153. extra: 2052/2018,
  33154. bottom: 152/2204
  33155. }
  33156. },
  33157. head: {
  33158. height: math.unit(12.86, "feet"),
  33159. name: "Head",
  33160. image: {
  33161. source: "./media/characters/irb'iiritaahn/head.svg"
  33162. }
  33163. },
  33164. maw: {
  33165. height: math.unit(9.66, "feet"),
  33166. name: "Maw",
  33167. image: {
  33168. source: "./media/characters/irb'iiritaahn/maw.svg"
  33169. }
  33170. },
  33171. frontDick: {
  33172. height: math.unit(8.78461, "feet"),
  33173. name: "Front Dick",
  33174. image: {
  33175. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33176. }
  33177. },
  33178. rearDick: {
  33179. height: math.unit(8.78461, "feet"),
  33180. name: "Rear Dick",
  33181. image: {
  33182. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33183. }
  33184. },
  33185. rearDickUnfolded: {
  33186. height: math.unit(8.78, "feet"),
  33187. name: "Rear Dick (Unfolded)",
  33188. image: {
  33189. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33190. }
  33191. },
  33192. wings: {
  33193. height: math.unit(43, "feet"),
  33194. name: "Wings",
  33195. image: {
  33196. source: "./media/characters/irb'iiritaahn/wings.svg"
  33197. }
  33198. },
  33199. },
  33200. [
  33201. {
  33202. name: "Macro",
  33203. height: math.unit(50 + 9/12, "feet"),
  33204. default: true
  33205. },
  33206. ]
  33207. ))
  33208. characterMakers.push(() => makeCharacter(
  33209. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33210. {
  33211. front: {
  33212. height: math.unit(205, "cm"),
  33213. weight: math.unit(102, "kg"),
  33214. name: "Front",
  33215. image: {
  33216. source: "./media/characters/irbisgreif/front.svg",
  33217. extra: 785/706,
  33218. bottom: 13/798
  33219. }
  33220. },
  33221. back: {
  33222. height: math.unit(205, "cm"),
  33223. weight: math.unit(102, "kg"),
  33224. name: "Back",
  33225. image: {
  33226. source: "./media/characters/irbisgreif/back.svg",
  33227. extra: 713/701,
  33228. bottom: 26/739
  33229. }
  33230. },
  33231. frontDressed: {
  33232. height: math.unit(216, "cm"),
  33233. weight: math.unit(102, "kg"),
  33234. name: "Front-dressed",
  33235. image: {
  33236. source: "./media/characters/irbisgreif/front-dressed.svg",
  33237. extra: 902/776,
  33238. bottom: 14/916
  33239. }
  33240. },
  33241. sideDressed: {
  33242. height: math.unit(195, "cm"),
  33243. weight: math.unit(102, "kg"),
  33244. name: "Side-dressed",
  33245. image: {
  33246. source: "./media/characters/irbisgreif/side-dressed.svg",
  33247. extra: 788/688,
  33248. bottom: 21/809
  33249. }
  33250. },
  33251. backDressed: {
  33252. height: math.unit(216, "cm"),
  33253. weight: math.unit(102, "kg"),
  33254. name: "Back-dressed",
  33255. image: {
  33256. source: "./media/characters/irbisgreif/back-dressed.svg",
  33257. extra: 901/783,
  33258. bottom: 10/911
  33259. }
  33260. },
  33261. dick: {
  33262. height: math.unit(0.49, "feet"),
  33263. name: "Dick",
  33264. image: {
  33265. source: "./media/characters/irbisgreif/dick.svg"
  33266. }
  33267. },
  33268. wingTop: {
  33269. height: math.unit(1.93 , "feet"),
  33270. name: "Wing-top",
  33271. image: {
  33272. source: "./media/characters/irbisgreif/wing-top.svg"
  33273. }
  33274. },
  33275. wingBottom: {
  33276. height: math.unit(1.93 , "feet"),
  33277. name: "Wing-bottom",
  33278. image: {
  33279. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33280. }
  33281. },
  33282. },
  33283. [
  33284. {
  33285. name: "Normal",
  33286. height: math.unit(216, "cm"),
  33287. default: true
  33288. },
  33289. ]
  33290. ))
  33291. characterMakers.push(() => makeCharacter(
  33292. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33293. {
  33294. front: {
  33295. height: math.unit(6, "feet"),
  33296. weight: math.unit(150, "lb"),
  33297. name: "Front",
  33298. image: {
  33299. source: "./media/characters/pride/front.svg",
  33300. extra: 1299/1230,
  33301. bottom: 18/1317
  33302. }
  33303. },
  33304. },
  33305. [
  33306. {
  33307. name: "Normal",
  33308. height: math.unit(7, "feet")
  33309. },
  33310. {
  33311. name: "Mini-macro",
  33312. height: math.unit(11, "feet")
  33313. },
  33314. {
  33315. name: "Macro",
  33316. height: math.unit(15, "meters"),
  33317. default: true
  33318. },
  33319. {
  33320. name: "Macro+",
  33321. height: math.unit(40, "meters")
  33322. },
  33323. ]
  33324. ))
  33325. characterMakers.push(() => makeCharacter(
  33326. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33327. {
  33328. front: {
  33329. height: math.unit(4 + 2 / 12, "feet"),
  33330. weight: math.unit(95, "lb"),
  33331. name: "Front",
  33332. image: {
  33333. source: "./media/characters/vaelophis-nyx/front.svg",
  33334. extra: 2532/2330,
  33335. bottom: 0/2532
  33336. }
  33337. },
  33338. back: {
  33339. height: math.unit(4 + 2 / 12, "feet"),
  33340. weight: math.unit(95, "lb"),
  33341. name: "Back",
  33342. image: {
  33343. source: "./media/characters/vaelophis-nyx/back.svg",
  33344. extra: 2484/2361,
  33345. bottom: 0/2484
  33346. }
  33347. },
  33348. feralSide: {
  33349. height: math.unit(2 + 1/12, "feet"),
  33350. weight: math.unit(20, "lb"),
  33351. name: "Feral (Side)",
  33352. image: {
  33353. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33354. extra: 1721/1581,
  33355. bottom: 70/1791
  33356. }
  33357. },
  33358. feralLazing: {
  33359. height: math.unit(1.08, "feet"),
  33360. weight: math.unit(20, "lb"),
  33361. name: "Feral (Lazing)",
  33362. image: {
  33363. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33364. extra: 822/822,
  33365. bottom: 248/1070
  33366. }
  33367. },
  33368. ear: {
  33369. height: math.unit(0.416, "feet"),
  33370. name: "Ear",
  33371. image: {
  33372. source: "./media/characters/vaelophis-nyx/ear.svg"
  33373. }
  33374. },
  33375. eye: {
  33376. height: math.unit(0.0748, "feet"),
  33377. name: "Eye",
  33378. image: {
  33379. source: "./media/characters/vaelophis-nyx/eye.svg"
  33380. }
  33381. },
  33382. mouth: {
  33383. height: math.unit(0.378, "feet"),
  33384. name: "Mouth",
  33385. image: {
  33386. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33387. }
  33388. },
  33389. spade: {
  33390. height: math.unit(0.55, "feet"),
  33391. name: "Spade",
  33392. image: {
  33393. source: "./media/characters/vaelophis-nyx/spade.svg"
  33394. }
  33395. },
  33396. },
  33397. [
  33398. {
  33399. name: "Normal",
  33400. height: math.unit(4 + 2/12, "feet"),
  33401. default: true
  33402. },
  33403. ]
  33404. ))
  33405. characterMakers.push(() => makeCharacter(
  33406. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33407. {
  33408. front: {
  33409. height: math.unit(7, "feet"),
  33410. weight: math.unit(231, "lb"),
  33411. name: "Front",
  33412. image: {
  33413. source: "./media/characters/flux/front.svg",
  33414. extra: 919/871,
  33415. bottom: 0/919
  33416. }
  33417. },
  33418. back: {
  33419. height: math.unit(7, "feet"),
  33420. weight: math.unit(231, "lb"),
  33421. name: "Back",
  33422. image: {
  33423. source: "./media/characters/flux/back.svg",
  33424. extra: 1040/992,
  33425. bottom: 0/1040
  33426. }
  33427. },
  33428. frontDressed: {
  33429. height: math.unit(7, "feet"),
  33430. weight: math.unit(231, "lb"),
  33431. name: "Front (Dressed)",
  33432. image: {
  33433. source: "./media/characters/flux/front-dressed.svg",
  33434. extra: 919/871,
  33435. bottom: 0/919
  33436. }
  33437. },
  33438. feralSide: {
  33439. height: math.unit(5, "feet"),
  33440. weight: math.unit(150, "lb"),
  33441. name: "Feral (Side)",
  33442. image: {
  33443. source: "./media/characters/flux/feral-side.svg",
  33444. extra: 598/528,
  33445. bottom: 28/626
  33446. }
  33447. },
  33448. head: {
  33449. height: math.unit(1.585, "feet"),
  33450. name: "Head",
  33451. image: {
  33452. source: "./media/characters/flux/head.svg"
  33453. }
  33454. },
  33455. headSide: {
  33456. height: math.unit(1.74, "feet"),
  33457. name: "Head (Side)",
  33458. image: {
  33459. source: "./media/characters/flux/head-side.svg"
  33460. }
  33461. },
  33462. headSideFire: {
  33463. height: math.unit(1.76, "feet"),
  33464. name: "Head (Side, Fire)",
  33465. image: {
  33466. source: "./media/characters/flux/head-side-fire.svg"
  33467. }
  33468. },
  33469. },
  33470. [
  33471. {
  33472. name: "Normal",
  33473. height: math.unit(7, "feet"),
  33474. default: true
  33475. },
  33476. ]
  33477. ))
  33478. characterMakers.push(() => makeCharacter(
  33479. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33480. {
  33481. front: {
  33482. height: math.unit(9, "feet"),
  33483. weight: math.unit(1012, "lb"),
  33484. name: "Front",
  33485. image: {
  33486. source: "./media/characters/ulfra-lupae/front.svg",
  33487. extra: 1083/1011,
  33488. bottom: 67/1150
  33489. }
  33490. },
  33491. },
  33492. [
  33493. {
  33494. name: "Micro",
  33495. height: math.unit(6, "inches")
  33496. },
  33497. {
  33498. name: "Socializing",
  33499. height: math.unit(6 + 5/12, "feet")
  33500. },
  33501. {
  33502. name: "Normal",
  33503. height: math.unit(9, "feet"),
  33504. default: true
  33505. },
  33506. {
  33507. name: "Macro",
  33508. height: math.unit(150, "feet")
  33509. },
  33510. ]
  33511. ))
  33512. characterMakers.push(() => makeCharacter(
  33513. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33514. {
  33515. front: {
  33516. height: math.unit(5 + 2/12, "feet"),
  33517. weight: math.unit(120, "lb"),
  33518. name: "Front",
  33519. image: {
  33520. source: "./media/characters/timber/front.svg",
  33521. extra: 2814/2705,
  33522. bottom: 181/2995
  33523. }
  33524. },
  33525. },
  33526. [
  33527. {
  33528. name: "Normal",
  33529. height: math.unit(5 + 2/12, "feet"),
  33530. default: true
  33531. },
  33532. ]
  33533. ))
  33534. characterMakers.push(() => makeCharacter(
  33535. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33536. {
  33537. front: {
  33538. height: math.unit(9, "feet"),
  33539. name: "Front",
  33540. image: {
  33541. source: "./media/characters/nicki/front.svg",
  33542. extra: 1240/990,
  33543. bottom: 45/1285
  33544. },
  33545. form: "anthro",
  33546. default: true
  33547. },
  33548. side: {
  33549. height: math.unit(9, "feet"),
  33550. name: "Side",
  33551. image: {
  33552. source: "./media/characters/nicki/side.svg",
  33553. extra: 1047/973,
  33554. bottom: 61/1108
  33555. },
  33556. form: "anthro"
  33557. },
  33558. back: {
  33559. height: math.unit(9, "feet"),
  33560. name: "Back",
  33561. image: {
  33562. source: "./media/characters/nicki/back.svg",
  33563. extra: 1006/965,
  33564. bottom: 39/1045
  33565. },
  33566. form: "anthro"
  33567. },
  33568. taur: {
  33569. height: math.unit(15, "feet"),
  33570. name: "Taur",
  33571. image: {
  33572. source: "./media/characters/nicki/taur.svg",
  33573. extra: 1592/1347,
  33574. bottom: 0/1592
  33575. },
  33576. form: "taur",
  33577. default: true
  33578. },
  33579. },
  33580. [
  33581. {
  33582. name: "Normal",
  33583. height: math.unit(9, "feet"),
  33584. form: "anthro",
  33585. default: true
  33586. },
  33587. {
  33588. name: "Normal",
  33589. height: math.unit(15, "feet"),
  33590. form: "taur",
  33591. default: true
  33592. }
  33593. ],
  33594. {
  33595. "anthro": {
  33596. name: "Anthro",
  33597. default: true
  33598. },
  33599. "taur": {
  33600. name: "Taur"
  33601. }
  33602. }
  33603. ))
  33604. characterMakers.push(() => makeCharacter(
  33605. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33606. {
  33607. front: {
  33608. height: math.unit(7 + 10/12, "feet"),
  33609. weight: math.unit(3.5, "tons"),
  33610. name: "Front",
  33611. image: {
  33612. source: "./media/characters/lee/front.svg",
  33613. extra: 1773/1615,
  33614. bottom: 86/1859
  33615. }
  33616. },
  33617. hand: {
  33618. height: math.unit(1.78, "feet"),
  33619. name: "Hand",
  33620. image: {
  33621. source: "./media/characters/lee/hand.svg"
  33622. }
  33623. },
  33624. maw: {
  33625. height: math.unit(1.18, "feet"),
  33626. name: "Maw",
  33627. image: {
  33628. source: "./media/characters/lee/maw.svg"
  33629. }
  33630. },
  33631. },
  33632. [
  33633. {
  33634. name: "Normal",
  33635. height: math.unit(7 + 10/12, "feet"),
  33636. default: true
  33637. },
  33638. ]
  33639. ))
  33640. characterMakers.push(() => makeCharacter(
  33641. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33642. {
  33643. front: {
  33644. height: math.unit(9, "feet"),
  33645. name: "Front",
  33646. image: {
  33647. source: "./media/characters/guti/front.svg",
  33648. extra: 4551/4355,
  33649. bottom: 123/4674
  33650. }
  33651. },
  33652. tongue: {
  33653. height: math.unit(1, "feet"),
  33654. name: "Tongue",
  33655. image: {
  33656. source: "./media/characters/guti/tongue.svg"
  33657. }
  33658. },
  33659. paw: {
  33660. height: math.unit(1.18, "feet"),
  33661. name: "Paw",
  33662. image: {
  33663. source: "./media/characters/guti/paw.svg"
  33664. }
  33665. },
  33666. },
  33667. [
  33668. {
  33669. name: "Normal",
  33670. height: math.unit(9, "feet"),
  33671. default: true
  33672. },
  33673. ]
  33674. ))
  33675. characterMakers.push(() => makeCharacter(
  33676. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33677. {
  33678. side: {
  33679. height: math.unit(5, "meters"),
  33680. name: "Side",
  33681. image: {
  33682. source: "./media/characters/vesper/side.svg",
  33683. extra: 1605/1518,
  33684. bottom: 0/1605
  33685. }
  33686. },
  33687. },
  33688. [
  33689. {
  33690. name: "Small",
  33691. height: math.unit(5, "meters")
  33692. },
  33693. {
  33694. name: "Sage",
  33695. height: math.unit(100, "meters"),
  33696. default: true
  33697. },
  33698. {
  33699. name: "Fun Size",
  33700. height: math.unit(600, "meters")
  33701. },
  33702. {
  33703. name: "Goddess",
  33704. height: math.unit(20000, "km")
  33705. },
  33706. {
  33707. name: "Maximum",
  33708. height: math.unit(5, "galaxies")
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(6 + 3/12, "feet"),
  33717. weight: math.unit(190, "lb"),
  33718. name: "Front",
  33719. image: {
  33720. source: "./media/characters/gawain/front.svg",
  33721. extra: 2222/2139,
  33722. bottom: 90/2312
  33723. }
  33724. },
  33725. back: {
  33726. height: math.unit(6 + 3/12, "feet"),
  33727. weight: math.unit(190, "lb"),
  33728. name: "Back",
  33729. image: {
  33730. source: "./media/characters/gawain/back.svg",
  33731. extra: 2199/2111,
  33732. bottom: 73/2272
  33733. }
  33734. },
  33735. },
  33736. [
  33737. {
  33738. name: "Normal",
  33739. height: math.unit(6 + 3/12, "feet"),
  33740. default: true
  33741. },
  33742. ]
  33743. ))
  33744. characterMakers.push(() => makeCharacter(
  33745. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33746. {
  33747. side: {
  33748. height: math.unit(3.5, "meters"),
  33749. weight: math.unit(16000, "lb"),
  33750. name: "Side",
  33751. image: {
  33752. source: "./media/characters/dascalti/side.svg",
  33753. extra: 392/273,
  33754. bottom: 47/439
  33755. }
  33756. },
  33757. breath: {
  33758. height: math.unit(7.4, "feet"),
  33759. name: "Breath",
  33760. image: {
  33761. source: "./media/characters/dascalti/breath.svg"
  33762. }
  33763. },
  33764. fed: {
  33765. height: math.unit(3.6, "meters"),
  33766. weight: math.unit(16000, "lb"),
  33767. name: "Fed",
  33768. image: {
  33769. source: "./media/characters/dascalti/fed.svg",
  33770. extra: 1419/820,
  33771. bottom: 95/1514
  33772. }
  33773. },
  33774. },
  33775. [
  33776. {
  33777. name: "Normal",
  33778. height: math.unit(3.5, "meters"),
  33779. default: true
  33780. },
  33781. ]
  33782. ))
  33783. characterMakers.push(() => makeCharacter(
  33784. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33785. {
  33786. front: {
  33787. height: math.unit(3 + 5/12, "feet"),
  33788. name: "Front",
  33789. image: {
  33790. source: "./media/characters/mauve/front.svg",
  33791. extra: 1126/1033,
  33792. bottom: 65/1191
  33793. }
  33794. },
  33795. side: {
  33796. height: math.unit(3 + 5/12, "feet"),
  33797. name: "Side",
  33798. image: {
  33799. source: "./media/characters/mauve/side.svg",
  33800. extra: 1089/1001,
  33801. bottom: 29/1118
  33802. }
  33803. },
  33804. back: {
  33805. height: math.unit(3 + 5/12, "feet"),
  33806. name: "Back",
  33807. image: {
  33808. source: "./media/characters/mauve/back.svg",
  33809. extra: 1173/1053,
  33810. bottom: 109/1282
  33811. }
  33812. },
  33813. },
  33814. [
  33815. {
  33816. name: "Normal",
  33817. height: math.unit(3 + 5/12, "feet"),
  33818. default: true
  33819. },
  33820. ]
  33821. ))
  33822. characterMakers.push(() => makeCharacter(
  33823. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33824. {
  33825. front: {
  33826. height: math.unit(6 + 3/12, "feet"),
  33827. weight: math.unit(430, "lb"),
  33828. name: "Front",
  33829. image: {
  33830. source: "./media/characters/carlos/front.svg",
  33831. extra: 1964/1913,
  33832. bottom: 70/2034
  33833. }
  33834. },
  33835. },
  33836. [
  33837. {
  33838. name: "Normal",
  33839. height: math.unit(6 + 3/12, "feet"),
  33840. default: true
  33841. },
  33842. ]
  33843. ))
  33844. characterMakers.push(() => makeCharacter(
  33845. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33846. {
  33847. back: {
  33848. height: math.unit(5 + 10/12, "feet"),
  33849. weight: math.unit(200, "lb"),
  33850. name: "Back",
  33851. image: {
  33852. source: "./media/characters/jax/back.svg",
  33853. extra: 764/739,
  33854. bottom: 25/789
  33855. }
  33856. },
  33857. },
  33858. [
  33859. {
  33860. name: "Normal",
  33861. height: math.unit(5 + 10/12, "feet"),
  33862. default: true
  33863. },
  33864. ]
  33865. ))
  33866. characterMakers.push(() => makeCharacter(
  33867. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33868. {
  33869. front: {
  33870. height: math.unit(8, "feet"),
  33871. weight: math.unit(250, "lb"),
  33872. name: "Front",
  33873. image: {
  33874. source: "./media/characters/eikthynir/front.svg",
  33875. extra: 1332/1166,
  33876. bottom: 82/1414
  33877. }
  33878. },
  33879. back: {
  33880. height: math.unit(8, "feet"),
  33881. weight: math.unit(250, "lb"),
  33882. name: "Back",
  33883. image: {
  33884. source: "./media/characters/eikthynir/back.svg",
  33885. extra: 1342/1190,
  33886. bottom: 19/1361
  33887. }
  33888. },
  33889. dick: {
  33890. height: math.unit(2.35, "feet"),
  33891. name: "Dick",
  33892. image: {
  33893. source: "./media/characters/eikthynir/dick.svg"
  33894. }
  33895. },
  33896. },
  33897. [
  33898. {
  33899. name: "Normal",
  33900. height: math.unit(8, "feet"),
  33901. default: true
  33902. },
  33903. ]
  33904. ))
  33905. characterMakers.push(() => makeCharacter(
  33906. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33907. {
  33908. front: {
  33909. height: math.unit(99, "meters"),
  33910. weight: math.unit(13000, "tons"),
  33911. name: "Front",
  33912. image: {
  33913. source: "./media/characters/zlmos/front.svg",
  33914. extra: 2202/1992,
  33915. bottom: 315/2517
  33916. }
  33917. },
  33918. },
  33919. [
  33920. {
  33921. name: "Macro",
  33922. height: math.unit(99, "meters"),
  33923. default: true
  33924. },
  33925. ]
  33926. ))
  33927. characterMakers.push(() => makeCharacter(
  33928. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33929. {
  33930. front: {
  33931. height: math.unit(6 + 5/12, "feet"),
  33932. name: "Front",
  33933. image: {
  33934. source: "./media/characters/purri/front.svg",
  33935. extra: 1698/1610,
  33936. bottom: 32/1730
  33937. }
  33938. },
  33939. frontAlt: {
  33940. height: math.unit(6 + 5/12, "feet"),
  33941. name: "Front (Alt)",
  33942. image: {
  33943. source: "./media/characters/purri/front-alt.svg",
  33944. extra: 450/420,
  33945. bottom: 26/476
  33946. }
  33947. },
  33948. boots: {
  33949. height: math.unit(5.5, "feet"),
  33950. name: "Boots",
  33951. image: {
  33952. source: "./media/characters/purri/boots.svg",
  33953. extra: 905/853,
  33954. bottom: 18/923
  33955. },
  33956. extraAttributes: {
  33957. "shoeSize": {
  33958. name: "Shoe Size",
  33959. power: 1,
  33960. type: "length",
  33961. base: math.unit(12, "ShoeSizeMensUS")
  33962. },
  33963. "platformHeight": {
  33964. name: "Platform Height",
  33965. power: 1,
  33966. type: "length",
  33967. base: math.unit(2, "inches")
  33968. },
  33969. }
  33970. },
  33971. lying: {
  33972. height: math.unit(2, "feet"),
  33973. name: "Lying",
  33974. image: {
  33975. source: "./media/characters/purri/lying.svg",
  33976. extra: 940/843,
  33977. bottom: 146/1086
  33978. }
  33979. },
  33980. devious: {
  33981. height: math.unit(1.77, "feet"),
  33982. name: "Devious",
  33983. image: {
  33984. source: "./media/characters/purri/devious.svg",
  33985. extra: 1440/1155,
  33986. bottom: 147/1587
  33987. }
  33988. },
  33989. bean: {
  33990. height: math.unit(1.94, "feet"),
  33991. name: "Bean",
  33992. image: {
  33993. source: "./media/characters/purri/bean.svg"
  33994. }
  33995. },
  33996. },
  33997. [
  33998. {
  33999. name: "Micro",
  34000. height: math.unit(1, "mm")
  34001. },
  34002. {
  34003. name: "Normal",
  34004. height: math.unit(6 + 5/12, "feet"),
  34005. default: true
  34006. },
  34007. {
  34008. name: "Macro :3c",
  34009. height: math.unit(2, "miles")
  34010. },
  34011. ]
  34012. ))
  34013. characterMakers.push(() => makeCharacter(
  34014. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34015. {
  34016. front: {
  34017. height: math.unit(6 + 2/12, "feet"),
  34018. weight: math.unit(250, "lb"),
  34019. name: "Front",
  34020. image: {
  34021. source: "./media/characters/moonlight/front.svg",
  34022. extra: 1044/908,
  34023. bottom: 56/1100
  34024. }
  34025. },
  34026. feral: {
  34027. height: math.unit(3 + 1/12, "feet"),
  34028. weight: math.unit(50, "kg"),
  34029. name: "Feral",
  34030. image: {
  34031. source: "./media/characters/moonlight/feral.svg",
  34032. extra: 3705/2791,
  34033. bottom: 145/3850
  34034. }
  34035. },
  34036. paw: {
  34037. height: math.unit(1, "feet"),
  34038. name: "Paw",
  34039. image: {
  34040. source: "./media/characters/moonlight/paw.svg"
  34041. }
  34042. },
  34043. paws: {
  34044. height: math.unit(0.98, "feet"),
  34045. name: "Paws",
  34046. image: {
  34047. source: "./media/characters/moonlight/paws.svg",
  34048. extra: 939/939,
  34049. bottom: 50/989
  34050. }
  34051. },
  34052. mouth: {
  34053. height: math.unit(0.48, "feet"),
  34054. name: "Mouth",
  34055. image: {
  34056. source: "./media/characters/moonlight/mouth.svg"
  34057. }
  34058. },
  34059. dick: {
  34060. height: math.unit(1.46, "feet"),
  34061. name: "Dick",
  34062. image: {
  34063. source: "./media/characters/moonlight/dick.svg"
  34064. }
  34065. },
  34066. },
  34067. [
  34068. {
  34069. name: "Normal",
  34070. height: math.unit(6 + 2/12, "feet"),
  34071. default: true
  34072. },
  34073. {
  34074. name: "Macro",
  34075. height: math.unit(300, "feet")
  34076. },
  34077. {
  34078. name: "Macro+",
  34079. height: math.unit(1, "mile")
  34080. },
  34081. {
  34082. name: "Mt. Moon",
  34083. height: math.unit(5, "miles")
  34084. },
  34085. {
  34086. name: "Megamacro",
  34087. height: math.unit(15, "miles")
  34088. },
  34089. ]
  34090. ))
  34091. characterMakers.push(() => makeCharacter(
  34092. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34093. {
  34094. back: {
  34095. height: math.unit(6, "feet"),
  34096. weight: math.unit(150, "lb"),
  34097. name: "Back",
  34098. image: {
  34099. source: "./media/characters/sylen/back.svg",
  34100. extra: 1335/1273,
  34101. bottom: 107/1442
  34102. }
  34103. },
  34104. },
  34105. [
  34106. {
  34107. name: "Normal",
  34108. height: math.unit(5 + 5/12, "feet")
  34109. },
  34110. {
  34111. name: "Megamacro",
  34112. height: math.unit(3, "miles"),
  34113. default: true
  34114. },
  34115. ]
  34116. ))
  34117. characterMakers.push(() => makeCharacter(
  34118. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34119. {
  34120. front: {
  34121. height: math.unit(6, "feet"),
  34122. weight: math.unit(190, "lb"),
  34123. name: "Front",
  34124. image: {
  34125. source: "./media/characters/huttser/front.svg",
  34126. extra: 1152/1058,
  34127. bottom: 23/1175
  34128. }
  34129. },
  34130. side: {
  34131. height: math.unit(6, "feet"),
  34132. weight: math.unit(190, "lb"),
  34133. name: "Side",
  34134. image: {
  34135. source: "./media/characters/huttser/side.svg",
  34136. extra: 1174/1065,
  34137. bottom: 18/1192
  34138. }
  34139. },
  34140. back: {
  34141. height: math.unit(6, "feet"),
  34142. weight: math.unit(190, "lb"),
  34143. name: "Back",
  34144. image: {
  34145. source: "./media/characters/huttser/back.svg",
  34146. extra: 1158/1056,
  34147. bottom: 12/1170
  34148. }
  34149. },
  34150. },
  34151. [
  34152. ]
  34153. ))
  34154. characterMakers.push(() => makeCharacter(
  34155. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34156. {
  34157. side: {
  34158. height: math.unit(12 + 9/12, "feet"),
  34159. weight: math.unit(15000, "lb"),
  34160. name: "Side",
  34161. image: {
  34162. source: "./media/characters/faan/side.svg",
  34163. extra: 2747/2697,
  34164. bottom: 0/2747
  34165. }
  34166. },
  34167. front: {
  34168. height: math.unit(12 + 9/12, "feet"),
  34169. weight: math.unit(15000, "lb"),
  34170. name: "Front",
  34171. image: {
  34172. source: "./media/characters/faan/front.svg",
  34173. extra: 607/571,
  34174. bottom: 24/631
  34175. }
  34176. },
  34177. head: {
  34178. height: math.unit(2.85, "feet"),
  34179. name: "Head",
  34180. image: {
  34181. source: "./media/characters/faan/head.svg"
  34182. }
  34183. },
  34184. headAlt: {
  34185. height: math.unit(3.13, "feet"),
  34186. name: "Head-alt",
  34187. image: {
  34188. source: "./media/characters/faan/head-alt.svg"
  34189. }
  34190. },
  34191. },
  34192. [
  34193. {
  34194. name: "Normal",
  34195. height: math.unit(12 + 9/12, "feet"),
  34196. default: true
  34197. },
  34198. ]
  34199. ))
  34200. characterMakers.push(() => makeCharacter(
  34201. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34202. {
  34203. front: {
  34204. height: math.unit(6, "feet"),
  34205. weight: math.unit(300, "lb"),
  34206. name: "Front",
  34207. image: {
  34208. source: "./media/characters/tanio/front.svg",
  34209. extra: 711/673,
  34210. bottom: 25/736
  34211. }
  34212. },
  34213. },
  34214. [
  34215. {
  34216. name: "Normal",
  34217. height: math.unit(6, "feet"),
  34218. default: true
  34219. },
  34220. ]
  34221. ))
  34222. characterMakers.push(() => makeCharacter(
  34223. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34224. {
  34225. front: {
  34226. height: math.unit(3, "inches"),
  34227. name: "Front",
  34228. image: {
  34229. source: "./media/characters/noboru/front.svg",
  34230. extra: 1039/932,
  34231. bottom: 18/1057
  34232. }
  34233. },
  34234. },
  34235. [
  34236. {
  34237. name: "Micro",
  34238. height: math.unit(3, "inches"),
  34239. default: true
  34240. },
  34241. ]
  34242. ))
  34243. characterMakers.push(() => makeCharacter(
  34244. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34245. {
  34246. front: {
  34247. height: math.unit(1.85, "meters"),
  34248. weight: math.unit(80, "kg"),
  34249. name: "Front",
  34250. image: {
  34251. source: "./media/characters/daniel-barrett/front.svg",
  34252. extra: 355/337,
  34253. bottom: 9/364
  34254. }
  34255. },
  34256. },
  34257. [
  34258. {
  34259. name: "Pico",
  34260. height: math.unit(0.0433, "mm")
  34261. },
  34262. {
  34263. name: "Nano",
  34264. height: math.unit(1.5, "mm")
  34265. },
  34266. {
  34267. name: "Micro",
  34268. height: math.unit(5.3, "cm"),
  34269. default: true
  34270. },
  34271. {
  34272. name: "Normal",
  34273. height: math.unit(1.85, "meters")
  34274. },
  34275. {
  34276. name: "Macro",
  34277. height: math.unit(64.7, "meters")
  34278. },
  34279. {
  34280. name: "Megamacro",
  34281. height: math.unit(2.26, "km")
  34282. },
  34283. {
  34284. name: "Gigamacro",
  34285. height: math.unit(79, "km")
  34286. },
  34287. {
  34288. name: "Teramacro",
  34289. height: math.unit(2765, "km")
  34290. },
  34291. {
  34292. name: "Petamacro",
  34293. height: math.unit(96678, "km")
  34294. },
  34295. ]
  34296. ))
  34297. characterMakers.push(() => makeCharacter(
  34298. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34299. {
  34300. front: {
  34301. height: math.unit(30, "meters"),
  34302. weight: math.unit(400, "tons"),
  34303. name: "Front",
  34304. image: {
  34305. source: "./media/characters/zeel/front.svg",
  34306. extra: 2599/2599,
  34307. bottom: 226/2825
  34308. }
  34309. },
  34310. },
  34311. [
  34312. {
  34313. name: "Macro",
  34314. height: math.unit(30, "meters"),
  34315. default: true
  34316. },
  34317. ]
  34318. ))
  34319. characterMakers.push(() => makeCharacter(
  34320. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34321. {
  34322. front: {
  34323. height: math.unit(6 + 7/12, "feet"),
  34324. weight: math.unit(210, "lb"),
  34325. name: "Front",
  34326. image: {
  34327. source: "./media/characters/tarn/front.svg",
  34328. extra: 3517/3220,
  34329. bottom: 91/3608
  34330. }
  34331. },
  34332. back: {
  34333. height: math.unit(6 + 7/12, "feet"),
  34334. weight: math.unit(210, "lb"),
  34335. name: "Back",
  34336. image: {
  34337. source: "./media/characters/tarn/back.svg",
  34338. extra: 3566/3241,
  34339. bottom: 34/3600
  34340. }
  34341. },
  34342. dick: {
  34343. height: math.unit(1.65, "feet"),
  34344. name: "Dick",
  34345. image: {
  34346. source: "./media/characters/tarn/dick.svg"
  34347. }
  34348. },
  34349. paw: {
  34350. height: math.unit(1.80, "feet"),
  34351. name: "Paw",
  34352. image: {
  34353. source: "./media/characters/tarn/paw.svg"
  34354. }
  34355. },
  34356. tongue: {
  34357. height: math.unit(0.97, "feet"),
  34358. name: "Tongue",
  34359. image: {
  34360. source: "./media/characters/tarn/tongue.svg"
  34361. }
  34362. },
  34363. },
  34364. [
  34365. {
  34366. name: "Micro",
  34367. height: math.unit(4, "inches")
  34368. },
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(6 + 7/12, "feet"),
  34372. default: true
  34373. },
  34374. {
  34375. name: "Macro",
  34376. height: math.unit(300, "feet")
  34377. },
  34378. ]
  34379. ))
  34380. characterMakers.push(() => makeCharacter(
  34381. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34382. {
  34383. front: {
  34384. height: math.unit(5 + 7/12, "feet"),
  34385. weight: math.unit(80, "kg"),
  34386. name: "Front",
  34387. image: {
  34388. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34389. extra: 3023/2865,
  34390. bottom: 33/3056
  34391. }
  34392. },
  34393. back: {
  34394. height: math.unit(5 + 7/12, "feet"),
  34395. weight: math.unit(80, "kg"),
  34396. name: "Back",
  34397. image: {
  34398. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34399. extra: 3020/2886,
  34400. bottom: 30/3050
  34401. }
  34402. },
  34403. dick: {
  34404. height: math.unit(0.98, "feet"),
  34405. name: "Dick",
  34406. image: {
  34407. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34408. }
  34409. },
  34410. anatomy: {
  34411. height: math.unit(2.86, "feet"),
  34412. name: "Anatomy",
  34413. image: {
  34414. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Really Small",
  34421. height: math.unit(2, "inches")
  34422. },
  34423. {
  34424. name: "Micro",
  34425. height: math.unit(5.583, "inches")
  34426. },
  34427. {
  34428. name: "Normal",
  34429. height: math.unit(5 + 7/12, "feet"),
  34430. default: true
  34431. },
  34432. {
  34433. name: "Macro",
  34434. height: math.unit(67, "feet")
  34435. },
  34436. {
  34437. name: "Megamacro",
  34438. height: math.unit(134, "feet")
  34439. },
  34440. ]
  34441. ))
  34442. characterMakers.push(() => makeCharacter(
  34443. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34444. {
  34445. front: {
  34446. height: math.unit(9, "feet"),
  34447. weight: math.unit(120, "lb"),
  34448. name: "Front",
  34449. image: {
  34450. source: "./media/characters/sally/front.svg",
  34451. extra: 1506/1349,
  34452. bottom: 66/1572
  34453. }
  34454. },
  34455. },
  34456. [
  34457. {
  34458. name: "Normal",
  34459. height: math.unit(9, "feet"),
  34460. default: true
  34461. },
  34462. ]
  34463. ))
  34464. characterMakers.push(() => makeCharacter(
  34465. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34466. {
  34467. front: {
  34468. height: math.unit(8, "feet"),
  34469. weight: math.unit(900, "lb"),
  34470. name: "Front",
  34471. image: {
  34472. source: "./media/characters/owen/front.svg",
  34473. extra: 1761/1657,
  34474. bottom: 74/1835
  34475. }
  34476. },
  34477. side: {
  34478. height: math.unit(8, "feet"),
  34479. weight: math.unit(900, "lb"),
  34480. name: "Side",
  34481. image: {
  34482. source: "./media/characters/owen/side.svg",
  34483. extra: 1797/1734,
  34484. bottom: 30/1827
  34485. }
  34486. },
  34487. back: {
  34488. height: math.unit(8, "feet"),
  34489. weight: math.unit(900, "lb"),
  34490. name: "Back",
  34491. image: {
  34492. source: "./media/characters/owen/back.svg",
  34493. extra: 1796/1706,
  34494. bottom: 59/1855
  34495. }
  34496. },
  34497. maw: {
  34498. height: math.unit(1.76, "feet"),
  34499. name: "Maw",
  34500. image: {
  34501. source: "./media/characters/owen/maw.svg"
  34502. }
  34503. },
  34504. },
  34505. [
  34506. {
  34507. name: "Normal",
  34508. height: math.unit(8, "feet"),
  34509. default: true
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34515. {
  34516. front: {
  34517. height: math.unit(4, "feet"),
  34518. weight: math.unit(400, "lb"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/ryth/front.svg",
  34522. extra: 1920/1748,
  34523. bottom: 42/1962
  34524. }
  34525. },
  34526. back: {
  34527. height: math.unit(4, "feet"),
  34528. weight: math.unit(400, "lb"),
  34529. name: "Back",
  34530. image: {
  34531. source: "./media/characters/ryth/back.svg",
  34532. extra: 1897/1690,
  34533. bottom: 89/1986
  34534. }
  34535. },
  34536. mouth: {
  34537. height: math.unit(1.39, "feet"),
  34538. name: "Mouth",
  34539. image: {
  34540. source: "./media/characters/ryth/mouth.svg"
  34541. }
  34542. },
  34543. tailmaw: {
  34544. height: math.unit(1.23, "feet"),
  34545. name: "Tailmaw",
  34546. image: {
  34547. source: "./media/characters/ryth/tailmaw.svg"
  34548. }
  34549. },
  34550. goia: {
  34551. height: math.unit(4, "meters"),
  34552. weight: math.unit(10800, "lb"),
  34553. name: "Goia",
  34554. image: {
  34555. source: "./media/characters/ryth/goia.svg",
  34556. extra: 745/640,
  34557. bottom: 107/852
  34558. }
  34559. },
  34560. goiaFront: {
  34561. height: math.unit(4, "meters"),
  34562. weight: math.unit(10800, "lb"),
  34563. name: "Goia (Front)",
  34564. image: {
  34565. source: "./media/characters/ryth/goia-front.svg",
  34566. extra: 750/586,
  34567. bottom: 114/864
  34568. }
  34569. },
  34570. goiaMaw: {
  34571. height: math.unit(5.55, "feet"),
  34572. name: "Goia Maw",
  34573. image: {
  34574. source: "./media/characters/ryth/goia-maw.svg"
  34575. }
  34576. },
  34577. goiaForepaw: {
  34578. height: math.unit(3.5, "feet"),
  34579. name: "Goia Forepaw",
  34580. image: {
  34581. source: "./media/characters/ryth/goia-forepaw.svg"
  34582. }
  34583. },
  34584. goiaHindpaw: {
  34585. height: math.unit(5.55, "feet"),
  34586. name: "Goia Hindpaw",
  34587. image: {
  34588. source: "./media/characters/ryth/goia-hindpaw.svg"
  34589. }
  34590. },
  34591. },
  34592. [
  34593. {
  34594. name: "Normal",
  34595. height: math.unit(4, "feet"),
  34596. default: true
  34597. },
  34598. ]
  34599. ))
  34600. characterMakers.push(() => makeCharacter(
  34601. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34602. {
  34603. front: {
  34604. height: math.unit(7, "feet"),
  34605. weight: math.unit(180, "lb"),
  34606. name: "Front",
  34607. image: {
  34608. source: "./media/characters/necrolance/front.svg",
  34609. extra: 1062/947,
  34610. bottom: 41/1103
  34611. }
  34612. },
  34613. back: {
  34614. height: math.unit(7, "feet"),
  34615. weight: math.unit(180, "lb"),
  34616. name: "Back",
  34617. image: {
  34618. source: "./media/characters/necrolance/back.svg",
  34619. extra: 1045/984,
  34620. bottom: 14/1059
  34621. }
  34622. },
  34623. wing: {
  34624. height: math.unit(2.67, "feet"),
  34625. name: "Wing",
  34626. image: {
  34627. source: "./media/characters/necrolance/wing.svg"
  34628. }
  34629. },
  34630. },
  34631. [
  34632. {
  34633. name: "Normal",
  34634. height: math.unit(7, "feet"),
  34635. default: true
  34636. },
  34637. ]
  34638. ))
  34639. characterMakers.push(() => makeCharacter(
  34640. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34641. {
  34642. front: {
  34643. height: math.unit(76, "meters"),
  34644. weight: math.unit(30000, "tons"),
  34645. name: "Front",
  34646. image: {
  34647. source: "./media/characters/tyler/front.svg",
  34648. extra: 1640/1640,
  34649. bottom: 114/1754
  34650. }
  34651. },
  34652. },
  34653. [
  34654. {
  34655. name: "Macro",
  34656. height: math.unit(76, "meters"),
  34657. default: true
  34658. },
  34659. ]
  34660. ))
  34661. characterMakers.push(() => makeCharacter(
  34662. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34663. {
  34664. front: {
  34665. height: math.unit(4 + 11/12, "feet"),
  34666. weight: math.unit(132, "lb"),
  34667. name: "Front",
  34668. image: {
  34669. source: "./media/characters/icey/front.svg",
  34670. extra: 2750/2550,
  34671. bottom: 33/2783
  34672. }
  34673. },
  34674. back: {
  34675. height: math.unit(4 + 11/12, "feet"),
  34676. weight: math.unit(132, "lb"),
  34677. name: "Back",
  34678. image: {
  34679. source: "./media/characters/icey/back.svg",
  34680. extra: 2624/2481,
  34681. bottom: 35/2659
  34682. }
  34683. },
  34684. },
  34685. [
  34686. {
  34687. name: "Normal",
  34688. height: math.unit(4 + 11/12, "feet"),
  34689. default: true
  34690. },
  34691. ]
  34692. ))
  34693. characterMakers.push(() => makeCharacter(
  34694. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34695. {
  34696. front: {
  34697. height: math.unit(100, "feet"),
  34698. weight: math.unit(0, "lb"),
  34699. name: "Front",
  34700. image: {
  34701. source: "./media/characters/smile/front.svg",
  34702. extra: 2983/2912,
  34703. bottom: 162/3145
  34704. }
  34705. },
  34706. back: {
  34707. height: math.unit(100, "feet"),
  34708. weight: math.unit(0, "lb"),
  34709. name: "Back",
  34710. image: {
  34711. source: "./media/characters/smile/back.svg",
  34712. extra: 3143/3031,
  34713. bottom: 91/3234
  34714. }
  34715. },
  34716. head: {
  34717. height: math.unit(26.3, "feet"),
  34718. weight: math.unit(0, "lb"),
  34719. name: "Head",
  34720. image: {
  34721. source: "./media/characters/smile/head.svg"
  34722. }
  34723. },
  34724. collar: {
  34725. height: math.unit(5.3, "feet"),
  34726. weight: math.unit(0, "lb"),
  34727. name: "Collar",
  34728. image: {
  34729. source: "./media/characters/smile/collar.svg"
  34730. }
  34731. },
  34732. },
  34733. [
  34734. {
  34735. name: "Macro",
  34736. height: math.unit(100, "feet"),
  34737. default: true
  34738. },
  34739. ]
  34740. ))
  34741. characterMakers.push(() => makeCharacter(
  34742. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34743. {
  34744. dragon: {
  34745. height: math.unit(26, "feet"),
  34746. weight: math.unit(36, "tons"),
  34747. name: "Dragon",
  34748. image: {
  34749. source: "./media/characters/arimphae/dragon.svg",
  34750. extra: 1574/983,
  34751. bottom: 357/1931
  34752. }
  34753. },
  34754. drake: {
  34755. height: math.unit(9, "feet"),
  34756. weight: math.unit(1.5, "tons"),
  34757. name: "Drake",
  34758. image: {
  34759. source: "./media/characters/arimphae/drake.svg",
  34760. extra: 1120/925,
  34761. bottom: 435/1555
  34762. }
  34763. },
  34764. },
  34765. [
  34766. {
  34767. name: "Small",
  34768. height: math.unit(26*5/9, "feet")
  34769. },
  34770. {
  34771. name: "Normal",
  34772. height: math.unit(26, "feet"),
  34773. default: true
  34774. },
  34775. ]
  34776. ))
  34777. characterMakers.push(() => makeCharacter(
  34778. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34779. {
  34780. front: {
  34781. height: math.unit(8 + 9/12, "feet"),
  34782. name: "Front",
  34783. image: {
  34784. source: "./media/characters/xander/front.svg",
  34785. extra: 1237/974,
  34786. bottom: 94/1331
  34787. }
  34788. },
  34789. },
  34790. [
  34791. {
  34792. name: "Normal",
  34793. height: math.unit(8 + 9/12, "feet"),
  34794. default: true
  34795. },
  34796. {
  34797. name: "Gaze Grabber",
  34798. height: math.unit(13 + 8/12, "feet")
  34799. },
  34800. {
  34801. name: "Jaw Dropper",
  34802. height: math.unit(27, "feet")
  34803. },
  34804. {
  34805. name: "Show Stopper",
  34806. height: math.unit(136, "feet")
  34807. },
  34808. {
  34809. name: "Superstar",
  34810. height: math.unit(1.9e6, "miles")
  34811. },
  34812. ]
  34813. ))
  34814. characterMakers.push(() => makeCharacter(
  34815. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34816. {
  34817. side: {
  34818. height: math.unit(2100, "feet"),
  34819. name: "Side",
  34820. image: {
  34821. source: "./media/characters/osiris/side.svg",
  34822. extra: 1105/939,
  34823. bottom: 167/1272
  34824. }
  34825. },
  34826. },
  34827. [
  34828. {
  34829. name: "Macro",
  34830. height: math.unit(2100, "feet"),
  34831. default: true
  34832. },
  34833. ]
  34834. ))
  34835. characterMakers.push(() => makeCharacter(
  34836. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34837. {
  34838. front: {
  34839. height: math.unit(6 + 8/12, "feet"),
  34840. weight: math.unit(225, "lb"),
  34841. name: "Front",
  34842. image: {
  34843. source: "./media/characters/rhys-londe/front.svg",
  34844. extra: 2258/2141,
  34845. bottom: 188/2446
  34846. }
  34847. },
  34848. back: {
  34849. height: math.unit(6 + 8/12, "feet"),
  34850. weight: math.unit(225, "lb"),
  34851. name: "Back",
  34852. image: {
  34853. source: "./media/characters/rhys-londe/back.svg",
  34854. extra: 2237/2137,
  34855. bottom: 63/2300
  34856. }
  34857. },
  34858. frontNsfw: {
  34859. height: math.unit(6 + 8/12, "feet"),
  34860. weight: math.unit(225, "lb"),
  34861. name: "Front (NSFW)",
  34862. image: {
  34863. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34864. extra: 2258/2141,
  34865. bottom: 188/2446
  34866. }
  34867. },
  34868. backNsfw: {
  34869. height: math.unit(6 + 8/12, "feet"),
  34870. weight: math.unit(225, "lb"),
  34871. name: "Back (NSFW)",
  34872. image: {
  34873. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34874. extra: 2237/2137,
  34875. bottom: 63/2300
  34876. }
  34877. },
  34878. dick: {
  34879. height: math.unit(30, "inches"),
  34880. name: "Dick",
  34881. image: {
  34882. source: "./media/characters/rhys-londe/dick.svg"
  34883. }
  34884. },
  34885. maw: {
  34886. height: math.unit(1.6, "feet"),
  34887. name: "Maw",
  34888. image: {
  34889. source: "./media/characters/rhys-londe/maw.svg"
  34890. }
  34891. },
  34892. },
  34893. [
  34894. {
  34895. name: "Normal",
  34896. height: math.unit(6 + 8/12, "feet"),
  34897. default: true
  34898. },
  34899. ]
  34900. ))
  34901. characterMakers.push(() => makeCharacter(
  34902. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34903. {
  34904. front: {
  34905. height: math.unit(3 + 10/12, "feet"),
  34906. weight: math.unit(90, "lb"),
  34907. name: "Front",
  34908. image: {
  34909. source: "./media/characters/taivas-ensim/front.svg",
  34910. extra: 1327/1216,
  34911. bottom: 96/1423
  34912. }
  34913. },
  34914. back: {
  34915. height: math.unit(3 + 10/12, "feet"),
  34916. weight: math.unit(90, "lb"),
  34917. name: "Back",
  34918. image: {
  34919. source: "./media/characters/taivas-ensim/back.svg",
  34920. extra: 1355/1247,
  34921. bottom: 11/1366
  34922. }
  34923. },
  34924. frontNsfw: {
  34925. height: math.unit(3 + 10/12, "feet"),
  34926. weight: math.unit(90, "lb"),
  34927. name: "Front (NSFW)",
  34928. image: {
  34929. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34930. extra: 1327/1216,
  34931. bottom: 96/1423
  34932. }
  34933. },
  34934. backNsfw: {
  34935. height: math.unit(3 + 10/12, "feet"),
  34936. weight: math.unit(90, "lb"),
  34937. name: "Back (NSFW)",
  34938. image: {
  34939. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34940. extra: 1355/1247,
  34941. bottom: 11/1366
  34942. }
  34943. },
  34944. },
  34945. [
  34946. {
  34947. name: "Normal",
  34948. height: math.unit(3 + 10/12, "feet"),
  34949. default: true
  34950. },
  34951. ]
  34952. ))
  34953. characterMakers.push(() => makeCharacter(
  34954. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34955. {
  34956. front: {
  34957. height: math.unit(9 + 6/12, "feet"),
  34958. weight: math.unit(940, "lb"),
  34959. name: "Front",
  34960. image: {
  34961. source: "./media/characters/byliss/front.svg",
  34962. extra: 1327/1290,
  34963. bottom: 82/1409
  34964. }
  34965. },
  34966. back: {
  34967. height: math.unit(9 + 6/12, "feet"),
  34968. weight: math.unit(940, "lb"),
  34969. name: "Back",
  34970. image: {
  34971. source: "./media/characters/byliss/back.svg",
  34972. extra: 1376/1349,
  34973. bottom: 9/1385
  34974. }
  34975. },
  34976. frontNsfw: {
  34977. height: math.unit(9 + 6/12, "feet"),
  34978. weight: math.unit(940, "lb"),
  34979. name: "Front (NSFW)",
  34980. image: {
  34981. source: "./media/characters/byliss/front-nsfw.svg",
  34982. extra: 1327/1290,
  34983. bottom: 82/1409
  34984. }
  34985. },
  34986. backNsfw: {
  34987. height: math.unit(9 + 6/12, "feet"),
  34988. weight: math.unit(940, "lb"),
  34989. name: "Back (NSFW)",
  34990. image: {
  34991. source: "./media/characters/byliss/back-nsfw.svg",
  34992. extra: 1376/1349,
  34993. bottom: 9/1385
  34994. }
  34995. },
  34996. },
  34997. [
  34998. {
  34999. name: "Normal",
  35000. height: math.unit(9 + 6/12, "feet"),
  35001. default: true
  35002. },
  35003. ]
  35004. ))
  35005. characterMakers.push(() => makeCharacter(
  35006. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35007. {
  35008. front: {
  35009. height: math.unit(5 + 2/12, "feet"),
  35010. weight: math.unit(200, "lb"),
  35011. name: "Front",
  35012. image: {
  35013. source: "./media/characters/noraly/front.svg",
  35014. extra: 4985/4773,
  35015. bottom: 150/5135
  35016. }
  35017. },
  35018. full: {
  35019. height: math.unit(5 + 2/12, "feet"),
  35020. weight: math.unit(164, "lb"),
  35021. name: "Full",
  35022. image: {
  35023. source: "./media/characters/noraly/full.svg",
  35024. extra: 1114/1059,
  35025. bottom: 35/1149
  35026. }
  35027. },
  35028. fuller: {
  35029. height: math.unit(5 + 2/12, "feet"),
  35030. weight: math.unit(230, "lb"),
  35031. name: "Fuller",
  35032. image: {
  35033. source: "./media/characters/noraly/fuller.svg",
  35034. extra: 1114/1059,
  35035. bottom: 35/1149
  35036. }
  35037. },
  35038. fullest: {
  35039. height: math.unit(5 + 2/12, "feet"),
  35040. weight: math.unit(300, "lb"),
  35041. name: "Fullest",
  35042. image: {
  35043. source: "./media/characters/noraly/fullest.svg",
  35044. extra: 1114/1059,
  35045. bottom: 35/1149
  35046. }
  35047. },
  35048. },
  35049. [
  35050. {
  35051. name: "Normal",
  35052. height: math.unit(5 + 2/12, "feet"),
  35053. default: true
  35054. },
  35055. ]
  35056. ))
  35057. characterMakers.push(() => makeCharacter(
  35058. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35059. {
  35060. front: {
  35061. height: math.unit(5 + 2/12, "feet"),
  35062. weight: math.unit(210, "lb"),
  35063. name: "Front",
  35064. image: {
  35065. source: "./media/characters/pera/front.svg",
  35066. extra: 1560/1531,
  35067. bottom: 165/1725
  35068. }
  35069. },
  35070. back: {
  35071. height: math.unit(5 + 2/12, "feet"),
  35072. weight: math.unit(210, "lb"),
  35073. name: "Back",
  35074. image: {
  35075. source: "./media/characters/pera/back.svg",
  35076. extra: 1523/1493,
  35077. bottom: 152/1675
  35078. }
  35079. },
  35080. dick: {
  35081. height: math.unit(2.4, "feet"),
  35082. name: "Dick",
  35083. image: {
  35084. source: "./media/characters/pera/dick.svg"
  35085. }
  35086. },
  35087. },
  35088. [
  35089. {
  35090. name: "Normal",
  35091. height: math.unit(5 + 2/12, "feet"),
  35092. default: true
  35093. },
  35094. ]
  35095. ))
  35096. characterMakers.push(() => makeCharacter(
  35097. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35098. {
  35099. front: {
  35100. height: math.unit(12, "feet"),
  35101. weight: math.unit(3200, "lb"),
  35102. name: "Front",
  35103. image: {
  35104. source: "./media/characters/julian/front.svg",
  35105. extra: 2962/2701,
  35106. bottom: 184/3146
  35107. }
  35108. },
  35109. maw: {
  35110. height: math.unit(5.35, "feet"),
  35111. name: "Maw",
  35112. image: {
  35113. source: "./media/characters/julian/maw.svg"
  35114. }
  35115. },
  35116. paw: {
  35117. height: math.unit(3.07, "feet"),
  35118. name: "Paw",
  35119. image: {
  35120. source: "./media/characters/julian/paw.svg"
  35121. }
  35122. },
  35123. },
  35124. [
  35125. {
  35126. name: "Default",
  35127. height: math.unit(12, "feet"),
  35128. default: true
  35129. },
  35130. {
  35131. name: "Big",
  35132. height: math.unit(50, "feet")
  35133. },
  35134. {
  35135. name: "Really Big",
  35136. height: math.unit(1, "mile")
  35137. },
  35138. {
  35139. name: "Extremely Big",
  35140. height: math.unit(100, "miles")
  35141. },
  35142. {
  35143. name: "Planet Hugger",
  35144. height: math.unit(200, "megameters")
  35145. },
  35146. {
  35147. name: "Unreasonably Big",
  35148. height: math.unit(1e300, "meters")
  35149. },
  35150. ]
  35151. ))
  35152. characterMakers.push(() => makeCharacter(
  35153. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35154. {
  35155. solgooleo: {
  35156. height: math.unit(4, "meters"),
  35157. weight: math.unit(6000*1.5, "kg"),
  35158. volume: math.unit(6000, "liters"),
  35159. name: "Solgooleo",
  35160. image: {
  35161. source: "./media/characters/pi/solgooleo.svg",
  35162. extra: 388/331,
  35163. bottom: 29/417
  35164. }
  35165. },
  35166. },
  35167. [
  35168. {
  35169. name: "Normal",
  35170. height: math.unit(4, "meters"),
  35171. default: true
  35172. },
  35173. ]
  35174. ))
  35175. characterMakers.push(() => makeCharacter(
  35176. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35177. {
  35178. front: {
  35179. height: math.unit(8, "feet"),
  35180. weight: math.unit(4, "tons"),
  35181. name: "Front",
  35182. image: {
  35183. source: "./media/characters/shaun/front.svg",
  35184. extra: 503/495,
  35185. bottom: 20/523
  35186. }
  35187. },
  35188. back: {
  35189. height: math.unit(8, "feet"),
  35190. weight: math.unit(4, "tons"),
  35191. name: "Back",
  35192. image: {
  35193. source: "./media/characters/shaun/back.svg",
  35194. extra: 487/480,
  35195. bottom: 20/507
  35196. }
  35197. },
  35198. },
  35199. [
  35200. {
  35201. name: "Lorg",
  35202. height: math.unit(8, "feet"),
  35203. default: true
  35204. },
  35205. ]
  35206. ))
  35207. characterMakers.push(() => makeCharacter(
  35208. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35209. {
  35210. frontAnthro: {
  35211. height: math.unit(7, "feet"),
  35212. name: "Front",
  35213. image: {
  35214. source: "./media/characters/sini/front-anthro.svg",
  35215. extra: 726/678,
  35216. bottom: 35/761
  35217. },
  35218. form: "anthro",
  35219. default: true
  35220. },
  35221. backAnthro: {
  35222. height: math.unit(7, "feet"),
  35223. name: "Back",
  35224. image: {
  35225. source: "./media/characters/sini/back-anthro.svg",
  35226. extra: 743/701,
  35227. bottom: 12/755
  35228. },
  35229. form: "anthro",
  35230. },
  35231. frontAnthroNsfw: {
  35232. height: math.unit(7, "feet"),
  35233. name: "Front (NSFW)",
  35234. image: {
  35235. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35236. extra: 726/678,
  35237. bottom: 35/761
  35238. },
  35239. form: "anthro"
  35240. },
  35241. backAnthroNsfw: {
  35242. height: math.unit(7, "feet"),
  35243. name: "Back (NSFW)",
  35244. image: {
  35245. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35246. extra: 743/701,
  35247. bottom: 12/755
  35248. },
  35249. form: "anthro",
  35250. },
  35251. mawAnthro: {
  35252. height: math.unit(2.14, "feet"),
  35253. name: "Maw",
  35254. image: {
  35255. source: "./media/characters/sini/maw-anthro.svg"
  35256. },
  35257. form: "anthro"
  35258. },
  35259. dick: {
  35260. height: math.unit(1.45, "feet"),
  35261. name: "Dick",
  35262. image: {
  35263. source: "./media/characters/sini/dick-anthro.svg"
  35264. },
  35265. form: "anthro"
  35266. },
  35267. feral: {
  35268. height: math.unit(16, "feet"),
  35269. name: "Feral",
  35270. image: {
  35271. source: "./media/characters/sini/feral.svg",
  35272. extra: 814/605,
  35273. bottom: 11/825
  35274. },
  35275. form: "feral",
  35276. default: true
  35277. },
  35278. feralNsfw: {
  35279. height: math.unit(16, "feet"),
  35280. name: "Feral (NSFW)",
  35281. image: {
  35282. source: "./media/characters/sini/feral-nsfw.svg",
  35283. extra: 814/605,
  35284. bottom: 11/825
  35285. },
  35286. form: "feral"
  35287. },
  35288. mawFeral: {
  35289. height: math.unit(5.66, "feet"),
  35290. name: "Maw",
  35291. image: {
  35292. source: "./media/characters/sini/maw-feral.svg"
  35293. },
  35294. form: "feral",
  35295. },
  35296. pawFeral: {
  35297. height: math.unit(5.17, "feet"),
  35298. name: "Paw",
  35299. image: {
  35300. source: "./media/characters/sini/paw-feral.svg"
  35301. },
  35302. form: "feral",
  35303. },
  35304. rumpFeral: {
  35305. height: math.unit(13.11, "feet"),
  35306. name: "Rump",
  35307. image: {
  35308. source: "./media/characters/sini/rump-feral.svg"
  35309. },
  35310. form: "feral",
  35311. },
  35312. dickFeral: {
  35313. height: math.unit(1, "feet"),
  35314. name: "Dick",
  35315. image: {
  35316. source: "./media/characters/sini/dick-feral.svg"
  35317. },
  35318. form: "feral",
  35319. },
  35320. eyeFeral: {
  35321. height: math.unit(1.23, "feet"),
  35322. name: "Eye",
  35323. image: {
  35324. source: "./media/characters/sini/eye-feral.svg"
  35325. },
  35326. form: "feral",
  35327. },
  35328. },
  35329. [
  35330. {
  35331. name: "Normal",
  35332. height: math.unit(7, "feet"),
  35333. default: true,
  35334. form: "anthro"
  35335. },
  35336. {
  35337. name: "Normal",
  35338. height: math.unit(16, "feet"),
  35339. default: true,
  35340. form: "feral"
  35341. },
  35342. ],
  35343. {
  35344. "anthro": {
  35345. name: "Anthro",
  35346. default: true
  35347. },
  35348. "feral": {
  35349. name: "Feral",
  35350. }
  35351. }
  35352. ))
  35353. characterMakers.push(() => makeCharacter(
  35354. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35355. {
  35356. side: {
  35357. height: math.unit(47.2, "meters"),
  35358. weight: math.unit(10000, "tons"),
  35359. name: "Side",
  35360. image: {
  35361. source: "./media/characters/raylldo/side.svg",
  35362. extra: 2363/642,
  35363. bottom: 221/2584
  35364. }
  35365. },
  35366. top: {
  35367. height: math.unit(240, "meters"),
  35368. weight: math.unit(10000, "tons"),
  35369. name: "Top",
  35370. image: {
  35371. source: "./media/characters/raylldo/top.svg"
  35372. }
  35373. },
  35374. bottom: {
  35375. height: math.unit(240, "meters"),
  35376. weight: math.unit(10000, "tons"),
  35377. name: "Bottom",
  35378. image: {
  35379. source: "./media/characters/raylldo/bottom.svg"
  35380. }
  35381. },
  35382. head: {
  35383. height: math.unit(38.6, "meters"),
  35384. name: "Head",
  35385. image: {
  35386. source: "./media/characters/raylldo/head.svg",
  35387. extra: 1335/1112,
  35388. bottom: 0/1335
  35389. }
  35390. },
  35391. maw: {
  35392. height: math.unit(16.37, "meters"),
  35393. name: "Maw",
  35394. image: {
  35395. source: "./media/characters/raylldo/maw.svg",
  35396. extra: 883/660,
  35397. bottom: 0/883
  35398. },
  35399. extraAttributes: {
  35400. preyCapacity: {
  35401. name: "Capacity",
  35402. power: 3,
  35403. type: "volume",
  35404. base: math.unit(1000, "people")
  35405. },
  35406. tongueSize: {
  35407. name: "Tongue Size",
  35408. power: 2,
  35409. type: "area",
  35410. base: math.unit(21, "m^2")
  35411. }
  35412. }
  35413. },
  35414. forepaw: {
  35415. height: math.unit(18, "meters"),
  35416. name: "Forepaw",
  35417. image: {
  35418. source: "./media/characters/raylldo/forepaw.svg"
  35419. }
  35420. },
  35421. hindpaw: {
  35422. height: math.unit(23, "meters"),
  35423. name: "Hindpaw",
  35424. image: {
  35425. source: "./media/characters/raylldo/hindpaw.svg"
  35426. }
  35427. },
  35428. genitals: {
  35429. height: math.unit(42, "meters"),
  35430. name: "Genitals",
  35431. image: {
  35432. source: "./media/characters/raylldo/genitals.svg"
  35433. }
  35434. },
  35435. },
  35436. [
  35437. {
  35438. name: "Normal",
  35439. height: math.unit(47.2, "meters"),
  35440. default: true
  35441. },
  35442. ]
  35443. ))
  35444. characterMakers.push(() => makeCharacter(
  35445. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35446. {
  35447. anthroFront: {
  35448. height: math.unit(9, "feet"),
  35449. weight: math.unit(600, "lb"),
  35450. name: "Anthro (Front)",
  35451. image: {
  35452. source: "./media/characters/glint/anthro-front.svg",
  35453. extra: 1097/1018,
  35454. bottom: 28/1125
  35455. }
  35456. },
  35457. anthroBack: {
  35458. height: math.unit(9, "feet"),
  35459. weight: math.unit(600, "lb"),
  35460. name: "Anthro (Back)",
  35461. image: {
  35462. source: "./media/characters/glint/anthro-back.svg",
  35463. extra: 1154/997,
  35464. bottom: 36/1190
  35465. }
  35466. },
  35467. feral: {
  35468. height: math.unit(11, "feet"),
  35469. weight: math.unit(50000, "lb"),
  35470. name: "Feral",
  35471. image: {
  35472. source: "./media/characters/glint/feral.svg",
  35473. extra: 3035/1585,
  35474. bottom: 1169/4204
  35475. }
  35476. },
  35477. dickAnthro: {
  35478. height: math.unit(0.7, "meters"),
  35479. name: "Dick (Anthro)",
  35480. image: {
  35481. source: "./media/characters/glint/dick-anthro.svg"
  35482. }
  35483. },
  35484. dickFeral: {
  35485. height: math.unit(2.65, "meters"),
  35486. name: "Dick (Feral)",
  35487. image: {
  35488. source: "./media/characters/glint/dick-feral.svg"
  35489. }
  35490. },
  35491. slitHidden: {
  35492. height: math.unit(5.85, "meters"),
  35493. name: "Slit (Hidden)",
  35494. image: {
  35495. source: "./media/characters/glint/slit-hidden.svg"
  35496. }
  35497. },
  35498. slitErect: {
  35499. height: math.unit(5.85, "meters"),
  35500. name: "Slit (Erect)",
  35501. image: {
  35502. source: "./media/characters/glint/slit-erect.svg"
  35503. }
  35504. },
  35505. mawAnthro: {
  35506. height: math.unit(0.63, "meters"),
  35507. name: "Maw (Anthro)",
  35508. image: {
  35509. source: "./media/characters/glint/maw.svg"
  35510. }
  35511. },
  35512. mawFeral: {
  35513. height: math.unit(2.89, "meters"),
  35514. name: "Maw (Feral)",
  35515. image: {
  35516. source: "./media/characters/glint/maw.svg"
  35517. }
  35518. },
  35519. },
  35520. [
  35521. {
  35522. name: "Normal",
  35523. height: math.unit(9, "feet"),
  35524. default: true
  35525. },
  35526. ]
  35527. ))
  35528. characterMakers.push(() => makeCharacter(
  35529. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35530. {
  35531. side: {
  35532. height: math.unit(15, "feet"),
  35533. weight: math.unit(5000, "kg"),
  35534. name: "Side",
  35535. image: {
  35536. source: "./media/characters/kairne/side.svg",
  35537. extra: 979/811,
  35538. bottom: 13/992
  35539. }
  35540. },
  35541. front: {
  35542. height: math.unit(15, "feet"),
  35543. weight: math.unit(5000, "kg"),
  35544. name: "Front",
  35545. image: {
  35546. source: "./media/characters/kairne/front.svg",
  35547. extra: 908/814,
  35548. bottom: 26/934
  35549. }
  35550. },
  35551. sideNsfw: {
  35552. height: math.unit(15, "feet"),
  35553. weight: math.unit(5000, "kg"),
  35554. name: "Side (NSFW)",
  35555. image: {
  35556. source: "./media/characters/kairne/side-nsfw.svg",
  35557. extra: 979/811,
  35558. bottom: 13/992
  35559. }
  35560. },
  35561. frontNsfw: {
  35562. height: math.unit(15, "feet"),
  35563. weight: math.unit(5000, "kg"),
  35564. name: "Front (NSFW)",
  35565. image: {
  35566. source: "./media/characters/kairne/front-nsfw.svg",
  35567. extra: 908/814,
  35568. bottom: 26/934
  35569. }
  35570. },
  35571. dickCaged: {
  35572. height: math.unit(0.65, "meters"),
  35573. name: "Dick-caged",
  35574. image: {
  35575. source: "./media/characters/kairne/dick-caged.svg"
  35576. }
  35577. },
  35578. dick: {
  35579. height: math.unit(0.79, "meters"),
  35580. name: "Dick",
  35581. image: {
  35582. source: "./media/characters/kairne/dick.svg"
  35583. }
  35584. },
  35585. genitals: {
  35586. height: math.unit(1.29, "meters"),
  35587. name: "Genitals",
  35588. image: {
  35589. source: "./media/characters/kairne/genitals.svg"
  35590. }
  35591. },
  35592. maw: {
  35593. height: math.unit(1.73, "meters"),
  35594. name: "Maw",
  35595. image: {
  35596. source: "./media/characters/kairne/maw.svg"
  35597. }
  35598. },
  35599. },
  35600. [
  35601. {
  35602. name: "Normal",
  35603. height: math.unit(15, "feet"),
  35604. default: true
  35605. },
  35606. ]
  35607. ))
  35608. characterMakers.push(() => makeCharacter(
  35609. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35610. {
  35611. front: {
  35612. height: math.unit(5 + 8/12, "feet"),
  35613. weight: math.unit(139, "lb"),
  35614. name: "Front",
  35615. image: {
  35616. source: "./media/characters/biscuit-jackal/front.svg",
  35617. extra: 2106/1961,
  35618. bottom: 58/2164
  35619. }
  35620. },
  35621. back: {
  35622. height: math.unit(5 + 8/12, "feet"),
  35623. weight: math.unit(139, "lb"),
  35624. name: "Back",
  35625. image: {
  35626. source: "./media/characters/biscuit-jackal/back.svg",
  35627. extra: 2132/1976,
  35628. bottom: 57/2189
  35629. }
  35630. },
  35631. werejackal: {
  35632. height: math.unit(6 + 3/12, "feet"),
  35633. weight: math.unit(188, "lb"),
  35634. name: "Werejackal",
  35635. image: {
  35636. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35637. extra: 2373/2178,
  35638. bottom: 53/2426
  35639. }
  35640. },
  35641. },
  35642. [
  35643. {
  35644. name: "Normal",
  35645. height: math.unit(5 + 8/12, "feet"),
  35646. default: true
  35647. },
  35648. ]
  35649. ))
  35650. characterMakers.push(() => makeCharacter(
  35651. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35652. {
  35653. front: {
  35654. height: math.unit(140, "cm"),
  35655. weight: math.unit(45, "kg"),
  35656. name: "Front",
  35657. image: {
  35658. source: "./media/characters/tayra-white/front.svg",
  35659. extra: 2229/2192,
  35660. bottom: 75/2304
  35661. }
  35662. },
  35663. },
  35664. [
  35665. {
  35666. name: "Normal",
  35667. height: math.unit(140, "cm"),
  35668. default: true
  35669. },
  35670. ]
  35671. ))
  35672. characterMakers.push(() => makeCharacter(
  35673. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35674. {
  35675. front: {
  35676. height: math.unit(4 + 5/12, "feet"),
  35677. name: "Front",
  35678. image: {
  35679. source: "./media/characters/scoop/front.svg",
  35680. extra: 1257/1136,
  35681. bottom: 69/1326
  35682. }
  35683. },
  35684. back: {
  35685. height: math.unit(4 + 5/12, "feet"),
  35686. name: "Back",
  35687. image: {
  35688. source: "./media/characters/scoop/back.svg",
  35689. extra: 1321/1152,
  35690. bottom: 32/1353
  35691. }
  35692. },
  35693. maw: {
  35694. height: math.unit(0.68, "feet"),
  35695. name: "Maw",
  35696. image: {
  35697. source: "./media/characters/scoop/maw.svg"
  35698. }
  35699. },
  35700. },
  35701. [
  35702. {
  35703. name: "Really Small",
  35704. height: math.unit(1, "mm")
  35705. },
  35706. {
  35707. name: "Micro",
  35708. height: math.unit(1, "inch")
  35709. },
  35710. {
  35711. name: "Normal",
  35712. height: math.unit(4 + 5/12, "feet"),
  35713. default: true
  35714. },
  35715. {
  35716. name: "Macro",
  35717. height: math.unit(200, "feet")
  35718. },
  35719. {
  35720. name: "Megamacro",
  35721. height: math.unit(3240, "feet")
  35722. },
  35723. {
  35724. name: "Teramacro",
  35725. height: math.unit(2500, "miles")
  35726. },
  35727. ]
  35728. ))
  35729. characterMakers.push(() => makeCharacter(
  35730. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35731. {
  35732. front: {
  35733. height: math.unit(15 + 7/12, "feet"),
  35734. weight: math.unit(1150, "tons"),
  35735. name: "Front",
  35736. image: {
  35737. source: "./media/characters/saphinara/front.svg",
  35738. extra: 1837/1643,
  35739. bottom: 84/1921
  35740. },
  35741. form: "normal",
  35742. default: true
  35743. },
  35744. side: {
  35745. height: math.unit(15 + 7/12, "feet"),
  35746. weight: math.unit(1150, "tons"),
  35747. name: "Side",
  35748. image: {
  35749. source: "./media/characters/saphinara/side.svg",
  35750. extra: 605/547,
  35751. bottom: 6/611
  35752. },
  35753. form: "normal"
  35754. },
  35755. back: {
  35756. height: math.unit(15 + 7/12, "feet"),
  35757. weight: math.unit(1150, "tons"),
  35758. name: "Back",
  35759. image: {
  35760. source: "./media/characters/saphinara/back.svg",
  35761. extra: 591/531,
  35762. bottom: 13/604
  35763. },
  35764. form: "normal"
  35765. },
  35766. frontTail: {
  35767. height: math.unit(15 + 7/12, "feet"),
  35768. weight: math.unit(1150, "tons"),
  35769. name: "Front (Full Tail)",
  35770. image: {
  35771. source: "./media/characters/saphinara/front-tail.svg",
  35772. extra: 2256/1630,
  35773. bottom: 261/2517
  35774. },
  35775. form: "normal"
  35776. },
  35777. insides: {
  35778. height: math.unit(11.92, "feet"),
  35779. name: "Insides",
  35780. image: {
  35781. source: "./media/characters/saphinara/insides.svg"
  35782. },
  35783. form: "normal"
  35784. },
  35785. head: {
  35786. height: math.unit(4.17, "feet"),
  35787. name: "Head",
  35788. image: {
  35789. source: "./media/characters/saphinara/head.svg"
  35790. },
  35791. form: "normal"
  35792. },
  35793. tongue: {
  35794. height: math.unit(4.60, "feet"),
  35795. name: "Tongue",
  35796. image: {
  35797. source: "./media/characters/saphinara/tongue.svg"
  35798. },
  35799. form: "normal"
  35800. },
  35801. headEnraged: {
  35802. height: math.unit(5.55, "feet"),
  35803. name: "Head (Enraged)",
  35804. image: {
  35805. source: "./media/characters/saphinara/head-enraged.svg"
  35806. },
  35807. form: "normal"
  35808. },
  35809. wings: {
  35810. height: math.unit(11.95, "feet"),
  35811. name: "Wings",
  35812. image: {
  35813. source: "./media/characters/saphinara/wings.svg"
  35814. },
  35815. form: "normal"
  35816. },
  35817. feathers: {
  35818. height: math.unit(8.92, "feet"),
  35819. name: "Feathers",
  35820. image: {
  35821. source: "./media/characters/saphinara/feathers.svg"
  35822. },
  35823. form: "normal"
  35824. },
  35825. shackles: {
  35826. height: math.unit(2, "feet"),
  35827. name: "Shackles",
  35828. image: {
  35829. source: "./media/characters/saphinara/shackles.svg"
  35830. },
  35831. form: "normal"
  35832. },
  35833. eyes: {
  35834. height: math.unit(1.331, "feet"),
  35835. name: "Eyes",
  35836. image: {
  35837. source: "./media/characters/saphinara/eyes.svg"
  35838. },
  35839. form: "normal"
  35840. },
  35841. eyesEnraged: {
  35842. height: math.unit(1.331, "feet"),
  35843. name: "Eyes (Enraged)",
  35844. image: {
  35845. source: "./media/characters/saphinara/eyes-enraged.svg"
  35846. },
  35847. form: "normal"
  35848. },
  35849. trueFormSide: {
  35850. height: math.unit(200, "feet"),
  35851. weight: math.unit(1e7, "tons"),
  35852. name: "Side",
  35853. image: {
  35854. source: "./media/characters/saphinara/true-form-side.svg",
  35855. extra: 1399/770,
  35856. bottom: 97/1496
  35857. },
  35858. form: "true-form",
  35859. default: true
  35860. },
  35861. trueFormMaw: {
  35862. height: math.unit(71.5, "feet"),
  35863. name: "Maw",
  35864. image: {
  35865. source: "./media/characters/saphinara/true-form-maw.svg",
  35866. extra: 2302/1453,
  35867. bottom: 0/2302
  35868. },
  35869. form: "true-form"
  35870. },
  35871. meowberusSide: {
  35872. height: math.unit(75, "feet"),
  35873. weight: math.unit(180000, "kg"),
  35874. preyCapacity: math.unit(50000, "people"),
  35875. name: "Side",
  35876. image: {
  35877. source: "./media/characters/saphinara/meowberus-side.svg",
  35878. extra: 1400/711,
  35879. bottom: 126/1526
  35880. },
  35881. form: "meowberus",
  35882. extraAttributes: {
  35883. "pawArea": {
  35884. name: "Paw Size",
  35885. power: 2,
  35886. type: "area",
  35887. base: math.unit(35, "m^2")
  35888. }
  35889. }
  35890. },
  35891. },
  35892. [
  35893. {
  35894. name: "Normal",
  35895. height: math.unit(15 + 7/12, "feet"),
  35896. default: true,
  35897. form: "normal"
  35898. },
  35899. {
  35900. name: "Angry",
  35901. height: math.unit(30 + 6/12, "feet"),
  35902. form: "normal"
  35903. },
  35904. {
  35905. name: "Enraged",
  35906. height: math.unit(102 + 1/12, "feet"),
  35907. form: "normal"
  35908. },
  35909. {
  35910. name: "True",
  35911. height: math.unit(200, "feet"),
  35912. default: true,
  35913. form: "true-form"
  35914. },
  35915. {
  35916. name: "Normal",
  35917. height: math.unit(75, "feet"),
  35918. default: true,
  35919. form: "meowberus"
  35920. },
  35921. ],
  35922. {
  35923. "normal": {
  35924. name: "Normal",
  35925. default: true
  35926. },
  35927. "true-form": {
  35928. name: "True Form"
  35929. },
  35930. "meowberus": {
  35931. name: "Meowberus",
  35932. },
  35933. }
  35934. ))
  35935. characterMakers.push(() => makeCharacter(
  35936. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35937. {
  35938. front: {
  35939. height: math.unit(6 + 8/12, "feet"),
  35940. weight: math.unit(300, "lb"),
  35941. name: "Front",
  35942. image: {
  35943. source: "./media/characters/jrain/front.svg",
  35944. extra: 3039/2865,
  35945. bottom: 399/3438
  35946. }
  35947. },
  35948. back: {
  35949. height: math.unit(6 + 8/12, "feet"),
  35950. weight: math.unit(300, "lb"),
  35951. name: "Back",
  35952. image: {
  35953. source: "./media/characters/jrain/back.svg",
  35954. extra: 3089/2938,
  35955. bottom: 172/3261
  35956. }
  35957. },
  35958. head: {
  35959. height: math.unit(2.14, "feet"),
  35960. name: "Head",
  35961. image: {
  35962. source: "./media/characters/jrain/head.svg"
  35963. }
  35964. },
  35965. maw: {
  35966. height: math.unit(1.77, "feet"),
  35967. name: "Maw",
  35968. image: {
  35969. source: "./media/characters/jrain/maw.svg"
  35970. }
  35971. },
  35972. leftHand: {
  35973. height: math.unit(1.1, "feet"),
  35974. name: "Left Hand",
  35975. image: {
  35976. source: "./media/characters/jrain/left-hand.svg"
  35977. }
  35978. },
  35979. rightHand: {
  35980. height: math.unit(1.1, "feet"),
  35981. name: "Right Hand",
  35982. image: {
  35983. source: "./media/characters/jrain/right-hand.svg"
  35984. }
  35985. },
  35986. eye: {
  35987. height: math.unit(0.35, "feet"),
  35988. name: "Eye",
  35989. image: {
  35990. source: "./media/characters/jrain/eye.svg"
  35991. }
  35992. },
  35993. },
  35994. [
  35995. {
  35996. name: "Normal",
  35997. height: math.unit(6 + 8/12, "feet"),
  35998. default: true
  35999. },
  36000. {
  36001. name: "Casually Large",
  36002. height: math.unit(25, "feet")
  36003. },
  36004. {
  36005. name: "Giant",
  36006. height: math.unit(100, "feet")
  36007. },
  36008. {
  36009. name: "Kaiju",
  36010. height: math.unit(300, "feet")
  36011. },
  36012. ]
  36013. ))
  36014. characterMakers.push(() => makeCharacter(
  36015. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36016. {
  36017. dragon: {
  36018. height: math.unit(5, "meters"),
  36019. name: "Dragon",
  36020. image: {
  36021. source: "./media/characters/sabrina/dragon.svg",
  36022. extra: 3670 / 2365,
  36023. bottom: 333 / 4003
  36024. }
  36025. },
  36026. gryphon: {
  36027. height: math.unit(3, "meters"),
  36028. name: "Gryphon",
  36029. image: {
  36030. source: "./media/characters/sabrina/gryphon.svg",
  36031. extra: 1576 / 945,
  36032. bottom: 71 / 1647
  36033. }
  36034. },
  36035. snake: {
  36036. height: math.unit(12, "meters"),
  36037. name: "Snake",
  36038. image: {
  36039. source: "./media/characters/sabrina/snake.svg",
  36040. extra: 1758 / 1320,
  36041. bottom: 186 / 1944
  36042. }
  36043. },
  36044. collar: {
  36045. height: math.unit(1.86, "meters"),
  36046. name: "Collar",
  36047. image: {
  36048. source: "./media/characters/sabrina/collar.svg"
  36049. }
  36050. },
  36051. eye: {
  36052. height: math.unit(0.53, "meters"),
  36053. name: "Eye",
  36054. image: {
  36055. source: "./media/characters/sabrina/eye.svg"
  36056. }
  36057. },
  36058. foot: {
  36059. height: math.unit(1.86, "meters"),
  36060. name: "Foot",
  36061. image: {
  36062. source: "./media/characters/sabrina/foot.svg"
  36063. }
  36064. },
  36065. hand: {
  36066. height: math.unit(1.32, "meters"),
  36067. name: "Hand",
  36068. image: {
  36069. source: "./media/characters/sabrina/hand.svg"
  36070. }
  36071. },
  36072. head: {
  36073. height: math.unit(2.44, "meters"),
  36074. name: "Head",
  36075. image: {
  36076. source: "./media/characters/sabrina/head.svg"
  36077. }
  36078. },
  36079. headAngry: {
  36080. height: math.unit(2.44, "meters"),
  36081. name: "Head (Angry))",
  36082. image: {
  36083. source: "./media/characters/sabrina/head-angry.svg"
  36084. }
  36085. },
  36086. maw: {
  36087. height: math.unit(1.65, "meters"),
  36088. name: "Maw",
  36089. image: {
  36090. source: "./media/characters/sabrina/maw.svg"
  36091. }
  36092. },
  36093. spikes: {
  36094. height: math.unit(1.69, "meters"),
  36095. name: "Spikes",
  36096. image: {
  36097. source: "./media/characters/sabrina/spikes.svg"
  36098. }
  36099. },
  36100. stomach: {
  36101. height: math.unit(1.15, "meters"),
  36102. name: "Stomach",
  36103. image: {
  36104. source: "./media/characters/sabrina/stomach.svg"
  36105. }
  36106. },
  36107. tongue: {
  36108. height: math.unit(1.27, "meters"),
  36109. name: "Tongue",
  36110. image: {
  36111. source: "./media/characters/sabrina/tongue.svg"
  36112. }
  36113. },
  36114. wingDorsal: {
  36115. height: math.unit(4.85, "meters"),
  36116. name: "Wing (Dorsal)",
  36117. image: {
  36118. source: "./media/characters/sabrina/wing-dorsal.svg"
  36119. }
  36120. },
  36121. wingVentral: {
  36122. height: math.unit(4.85, "meters"),
  36123. name: "Wing (Ventral)",
  36124. image: {
  36125. source: "./media/characters/sabrina/wing-ventral.svg"
  36126. }
  36127. },
  36128. },
  36129. [
  36130. {
  36131. name: "Normal",
  36132. height: math.unit(5, "meters"),
  36133. default: true
  36134. },
  36135. ]
  36136. ))
  36137. characterMakers.push(() => makeCharacter(
  36138. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36139. {
  36140. frontMaid: {
  36141. height: math.unit(5 + 5/12, "feet"),
  36142. weight: math.unit(130, "lb"),
  36143. name: "Front (Maid)",
  36144. image: {
  36145. source: "./media/characters/midnight-tales/front-maid.svg",
  36146. extra: 489/454,
  36147. bottom: 61/550
  36148. }
  36149. },
  36150. frontFormal: {
  36151. height: math.unit(5 + 5/12, "feet"),
  36152. weight: math.unit(130, "lb"),
  36153. name: "Front (Formal)",
  36154. image: {
  36155. source: "./media/characters/midnight-tales/front-formal.svg",
  36156. extra: 489/454,
  36157. bottom: 61/550
  36158. }
  36159. },
  36160. back: {
  36161. height: math.unit(5 + 5/12, "feet"),
  36162. weight: math.unit(130, "lb"),
  36163. name: "Back",
  36164. image: {
  36165. source: "./media/characters/midnight-tales/back.svg",
  36166. extra: 498/456,
  36167. bottom: 33/531
  36168. }
  36169. },
  36170. frontBeast: {
  36171. height: math.unit(40, "feet"),
  36172. weight: math.unit(64000, "lb"),
  36173. name: "Front (Beast)",
  36174. image: {
  36175. source: "./media/characters/midnight-tales/front-beast.svg",
  36176. extra: 927/860,
  36177. bottom: 53/980
  36178. }
  36179. },
  36180. backBeast: {
  36181. height: math.unit(40, "feet"),
  36182. weight: math.unit(64000, "lb"),
  36183. name: "Back (Beast)",
  36184. image: {
  36185. source: "./media/characters/midnight-tales/back-beast.svg",
  36186. extra: 929/855,
  36187. bottom: 16/945
  36188. }
  36189. },
  36190. footBeast: {
  36191. height: math.unit(6.7, "feet"),
  36192. name: "Foot (Beast)",
  36193. image: {
  36194. source: "./media/characters/midnight-tales/foot-beast.svg"
  36195. }
  36196. },
  36197. headBeast: {
  36198. height: math.unit(8, "feet"),
  36199. name: "Head (Beast)",
  36200. image: {
  36201. source: "./media/characters/midnight-tales/head-beast.svg"
  36202. }
  36203. },
  36204. },
  36205. [
  36206. {
  36207. name: "Normal",
  36208. height: math.unit(5 + 5 / 12, "feet"),
  36209. default: true
  36210. },
  36211. {
  36212. name: "Macro",
  36213. height: math.unit(25, "feet")
  36214. },
  36215. ]
  36216. ))
  36217. characterMakers.push(() => makeCharacter(
  36218. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36219. {
  36220. front: {
  36221. height: math.unit(5 + 10/12, "feet"),
  36222. name: "Front",
  36223. image: {
  36224. source: "./media/characters/argon/front.svg",
  36225. extra: 2009/1935,
  36226. bottom: 118/2127
  36227. }
  36228. },
  36229. back: {
  36230. height: math.unit(5 + 10/12, "feet"),
  36231. name: "Back",
  36232. image: {
  36233. source: "./media/characters/argon/back.svg",
  36234. extra: 2047/1992,
  36235. bottom: 20/2067
  36236. }
  36237. },
  36238. frontDressed: {
  36239. height: math.unit(5 + 10/12, "feet"),
  36240. name: "Front (Dressed)",
  36241. image: {
  36242. source: "./media/characters/argon/front-dressed.svg",
  36243. extra: 2009/1935,
  36244. bottom: 118/2127
  36245. }
  36246. },
  36247. },
  36248. [
  36249. {
  36250. name: "Normal",
  36251. height: math.unit(5 + 10/12, "feet"),
  36252. default: true
  36253. },
  36254. ]
  36255. ))
  36256. characterMakers.push(() => makeCharacter(
  36257. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36258. {
  36259. front: {
  36260. height: math.unit(8 + 6/12, "feet"),
  36261. weight: math.unit(1150, "lb"),
  36262. name: "Front",
  36263. image: {
  36264. source: "./media/characters/kichi/front.svg",
  36265. extra: 1267/1164,
  36266. bottom: 61/1328
  36267. }
  36268. },
  36269. back: {
  36270. height: math.unit(8 + 6/12, "feet"),
  36271. weight: math.unit(1150, "lb"),
  36272. name: "Back",
  36273. image: {
  36274. source: "./media/characters/kichi/back.svg",
  36275. extra: 1273/1166,
  36276. bottom: 33/1306
  36277. }
  36278. },
  36279. },
  36280. [
  36281. {
  36282. name: "Normal",
  36283. height: math.unit(8 + 6/12, "feet"),
  36284. default: true
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36290. {
  36291. front: {
  36292. height: math.unit(6, "feet"),
  36293. weight: math.unit(210, "lb"),
  36294. name: "Front",
  36295. image: {
  36296. source: "./media/characters/manetel-greyscale/front.svg",
  36297. extra: 350/312,
  36298. bottom: 8/358
  36299. }
  36300. },
  36301. },
  36302. [
  36303. {
  36304. name: "Micro",
  36305. height: math.unit(2, "inches")
  36306. },
  36307. {
  36308. name: "Normal",
  36309. height: math.unit(6, "feet"),
  36310. default: true
  36311. },
  36312. {
  36313. name: "Minimacro",
  36314. height: math.unit(17, "feet")
  36315. },
  36316. {
  36317. name: "Macro",
  36318. height: math.unit(117, "feet")
  36319. },
  36320. ]
  36321. ))
  36322. characterMakers.push(() => makeCharacter(
  36323. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36324. {
  36325. side: {
  36326. height: math.unit(5 + 1/12, "feet"),
  36327. weight: math.unit(418, "lb"),
  36328. name: "Side",
  36329. image: {
  36330. source: "./media/characters/softpurr/side.svg",
  36331. extra: 1993/1945,
  36332. bottom: 134/2127
  36333. }
  36334. },
  36335. front: {
  36336. height: math.unit(5 + 1/12, "feet"),
  36337. weight: math.unit(418, "lb"),
  36338. name: "Front",
  36339. image: {
  36340. source: "./media/characters/softpurr/front.svg",
  36341. extra: 1950/1856,
  36342. bottom: 174/2124
  36343. }
  36344. },
  36345. paw: {
  36346. height: math.unit(1, "feet"),
  36347. name: "Paw",
  36348. image: {
  36349. source: "./media/characters/softpurr/paw.svg"
  36350. }
  36351. },
  36352. },
  36353. [
  36354. {
  36355. name: "Normal",
  36356. height: math.unit(5 + 1/12, "feet"),
  36357. default: true
  36358. },
  36359. ]
  36360. ))
  36361. characterMakers.push(() => makeCharacter(
  36362. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36363. {
  36364. front: {
  36365. height: math.unit(260, "meters"),
  36366. name: "Front",
  36367. image: {
  36368. source: "./media/characters/anahita/front.svg",
  36369. extra: 665/635,
  36370. bottom: 89/754
  36371. }
  36372. },
  36373. },
  36374. [
  36375. {
  36376. name: "Macro",
  36377. height: math.unit(260, "meters"),
  36378. default: true
  36379. },
  36380. ]
  36381. ))
  36382. characterMakers.push(() => makeCharacter(
  36383. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36384. {
  36385. front: {
  36386. height: math.unit(4 + 10/12, "feet"),
  36387. weight: math.unit(160, "lb"),
  36388. name: "Front",
  36389. image: {
  36390. source: "./media/characters/chip-mouse/front.svg",
  36391. extra: 3528/3408,
  36392. bottom: 0/3528
  36393. }
  36394. },
  36395. frontNsfw: {
  36396. height: math.unit(4 + 10/12, "feet"),
  36397. weight: math.unit(160, "lb"),
  36398. name: "Front (NSFW)",
  36399. image: {
  36400. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36401. extra: 3528/3408,
  36402. bottom: 0/3528
  36403. }
  36404. },
  36405. },
  36406. [
  36407. {
  36408. name: "Normal",
  36409. height: math.unit(4 + 10/12, "feet"),
  36410. default: true
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36416. {
  36417. side: {
  36418. height: math.unit(10, "feet"),
  36419. weight: math.unit(14000, "lb"),
  36420. name: "Side",
  36421. image: {
  36422. source: "./media/characters/kremm/side.svg",
  36423. extra: 1390/1053,
  36424. bottom: 90/1480
  36425. }
  36426. },
  36427. gut: {
  36428. height: math.unit(5.8, "feet"),
  36429. name: "Gut",
  36430. image: {
  36431. source: "./media/characters/kremm/gut.svg"
  36432. }
  36433. },
  36434. ass: {
  36435. height: math.unit(6.1, "feet"),
  36436. name: "Ass",
  36437. image: {
  36438. source: "./media/characters/kremm/ass.svg"
  36439. }
  36440. },
  36441. jaws: {
  36442. height: math.unit(2.2, "feet"),
  36443. name: "Jaws",
  36444. image: {
  36445. source: "./media/characters/kremm/jaws.svg"
  36446. }
  36447. },
  36448. dick: {
  36449. height: math.unit(4.26, "feet"),
  36450. name: "Dick",
  36451. image: {
  36452. source: "./media/characters/kremm/dick.svg"
  36453. }
  36454. },
  36455. },
  36456. [
  36457. {
  36458. name: "Normal",
  36459. height: math.unit(10, "feet"),
  36460. default: true
  36461. },
  36462. ]
  36463. ))
  36464. characterMakers.push(() => makeCharacter(
  36465. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36466. {
  36467. front: {
  36468. height: math.unit(30, "stories"),
  36469. name: "Front",
  36470. image: {
  36471. source: "./media/characters/kai/front.svg",
  36472. extra: 1892/1718,
  36473. bottom: 162/2054
  36474. }
  36475. },
  36476. },
  36477. [
  36478. {
  36479. name: "Macro",
  36480. height: math.unit(30, "stories"),
  36481. default: true
  36482. },
  36483. ]
  36484. ))
  36485. characterMakers.push(() => makeCharacter(
  36486. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36487. {
  36488. front: {
  36489. height: math.unit(6 + 4/12, "feet"),
  36490. weight: math.unit(145, "lb"),
  36491. name: "Front",
  36492. image: {
  36493. source: "./media/characters/sykes/front.svg",
  36494. extra: 1321 / 1187,
  36495. bottom: 66 / 1387
  36496. }
  36497. },
  36498. back: {
  36499. height: math.unit(6 + 4/12, "feet"),
  36500. weight: math.unit(145, "lb"),
  36501. name: "Back",
  36502. image: {
  36503. source: "./media/characters/sykes/back.svg",
  36504. extra: 1326/1181,
  36505. bottom: 31/1357
  36506. }
  36507. },
  36508. traditionalOutfit: {
  36509. height: math.unit(6 + 4/12, "feet"),
  36510. weight: math.unit(145, "lb"),
  36511. name: "Traditional Outfit",
  36512. image: {
  36513. source: "./media/characters/sykes/traditional-outfit.svg",
  36514. extra: 1321 / 1187,
  36515. bottom: 66 / 1387
  36516. }
  36517. },
  36518. adventureOutfit: {
  36519. height: math.unit(6 + 4/12, "feet"),
  36520. weight: math.unit(145, "lb"),
  36521. name: "Adventure Outfit",
  36522. image: {
  36523. source: "./media/characters/sykes/adventure-outfit.svg",
  36524. extra: 1321 / 1187,
  36525. bottom: 66 / 1387
  36526. }
  36527. },
  36528. handLeft: {
  36529. height: math.unit(0.9, "feet"),
  36530. name: "Hand (Left)",
  36531. image: {
  36532. source: "./media/characters/sykes/hand-left.svg"
  36533. }
  36534. },
  36535. handRight: {
  36536. height: math.unit(0.839, "feet"),
  36537. name: "Hand (Right)",
  36538. image: {
  36539. source: "./media/characters/sykes/hand-right.svg"
  36540. }
  36541. },
  36542. leftFoot: {
  36543. height: math.unit(1.2, "feet"),
  36544. name: "Foot (Left)",
  36545. image: {
  36546. source: "./media/characters/sykes/foot-left.svg"
  36547. }
  36548. },
  36549. rightFoot: {
  36550. height: math.unit(1.2, "feet"),
  36551. name: "Foot (Right)",
  36552. image: {
  36553. source: "./media/characters/sykes/foot-right.svg"
  36554. }
  36555. },
  36556. maw: {
  36557. height: math.unit(1.93, "feet"),
  36558. name: "Maw",
  36559. image: {
  36560. source: "./media/characters/sykes/maw.svg"
  36561. }
  36562. },
  36563. teeth: {
  36564. height: math.unit(0.51, "feet"),
  36565. name: "Teeth",
  36566. image: {
  36567. source: "./media/characters/sykes/teeth.svg"
  36568. }
  36569. },
  36570. tongue: {
  36571. height: math.unit(2.13, "feet"),
  36572. name: "Tongue",
  36573. image: {
  36574. source: "./media/characters/sykes/tongue.svg"
  36575. }
  36576. },
  36577. uvula: {
  36578. height: math.unit(0.16, "feet"),
  36579. name: "Uvula",
  36580. image: {
  36581. source: "./media/characters/sykes/uvula.svg"
  36582. }
  36583. },
  36584. collar: {
  36585. height: math.unit(0.287, "feet"),
  36586. name: "Collar",
  36587. image: {
  36588. source: "./media/characters/sykes/collar.svg"
  36589. }
  36590. },
  36591. tail: {
  36592. height: math.unit(3.8, "feet"),
  36593. name: "Tail",
  36594. image: {
  36595. source: "./media/characters/sykes/tail.svg"
  36596. }
  36597. },
  36598. },
  36599. [
  36600. {
  36601. name: "Shrunken",
  36602. height: math.unit(5, "inches")
  36603. },
  36604. {
  36605. name: "Normal",
  36606. height: math.unit(6 + 4 / 12, "feet"),
  36607. default: true
  36608. },
  36609. {
  36610. name: "Big",
  36611. height: math.unit(15, "feet")
  36612. },
  36613. ]
  36614. ))
  36615. characterMakers.push(() => makeCharacter(
  36616. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36617. {
  36618. front: {
  36619. height: math.unit(5 + 8/12, "feet"),
  36620. weight: math.unit(190, "lb"),
  36621. name: "Front",
  36622. image: {
  36623. source: "./media/characters/oven-otter/front.svg",
  36624. extra: 1809/1740,
  36625. bottom: 181/1990
  36626. }
  36627. },
  36628. back: {
  36629. height: math.unit(5 + 8/12, "feet"),
  36630. weight: math.unit(190, "lb"),
  36631. name: "Back",
  36632. image: {
  36633. source: "./media/characters/oven-otter/back.svg",
  36634. extra: 1709/1635,
  36635. bottom: 118/1827
  36636. }
  36637. },
  36638. hand: {
  36639. height: math.unit(1.07, "feet"),
  36640. name: "Hand",
  36641. image: {
  36642. source: "./media/characters/oven-otter/hand.svg"
  36643. }
  36644. },
  36645. beans: {
  36646. height: math.unit(1.74, "feet"),
  36647. name: "Beans",
  36648. image: {
  36649. source: "./media/characters/oven-otter/beans.svg"
  36650. }
  36651. },
  36652. },
  36653. [
  36654. {
  36655. name: "Micro",
  36656. height: math.unit(0.5, "inches")
  36657. },
  36658. {
  36659. name: "Normal",
  36660. height: math.unit(5 + 8/12, "feet"),
  36661. default: true
  36662. },
  36663. {
  36664. name: "Macro",
  36665. height: math.unit(250, "feet")
  36666. },
  36667. {
  36668. name: "Really High",
  36669. height: math.unit(420, "feet")
  36670. },
  36671. ]
  36672. ))
  36673. characterMakers.push(() => makeCharacter(
  36674. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36675. {
  36676. front: {
  36677. height: math.unit(5, "meters"),
  36678. weight: math.unit(292000000000000, "kg"),
  36679. name: "Front",
  36680. image: {
  36681. source: "./media/characters/devourer/front.svg",
  36682. extra: 1800/1733,
  36683. bottom: 211/2011
  36684. }
  36685. },
  36686. maw: {
  36687. height: math.unit(1.1, "meter"),
  36688. name: "Maw",
  36689. image: {
  36690. source: "./media/characters/devourer/maw.svg"
  36691. }
  36692. },
  36693. },
  36694. [
  36695. {
  36696. name: "Small",
  36697. height: math.unit(3, "meters")
  36698. },
  36699. {
  36700. name: "Large",
  36701. height: math.unit(5, "meters"),
  36702. default: true
  36703. },
  36704. ]
  36705. ))
  36706. characterMakers.push(() => makeCharacter(
  36707. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36708. {
  36709. front: {
  36710. height: math.unit(6, "feet"),
  36711. weight: math.unit(400, "lb"),
  36712. name: "Front",
  36713. image: {
  36714. source: "./media/characters/ellarby/front.svg",
  36715. extra: 1909/1763,
  36716. bottom: 80/1989
  36717. }
  36718. },
  36719. back: {
  36720. height: math.unit(6, "feet"),
  36721. weight: math.unit(400, "lb"),
  36722. name: "Back",
  36723. image: {
  36724. source: "./media/characters/ellarby/back.svg",
  36725. extra: 1914/1784,
  36726. bottom: 172/2086
  36727. }
  36728. },
  36729. },
  36730. [
  36731. {
  36732. name: "Mischief",
  36733. height: math.unit(18, "inches")
  36734. },
  36735. {
  36736. name: "Trouble",
  36737. height: math.unit(12, "feet")
  36738. },
  36739. {
  36740. name: "Havoc",
  36741. height: math.unit(200, "feet"),
  36742. default: true
  36743. },
  36744. {
  36745. name: "Pandemonium",
  36746. height: math.unit(1, "mile")
  36747. },
  36748. {
  36749. name: "Catastrophe",
  36750. height: math.unit(100, "miles")
  36751. },
  36752. ]
  36753. ))
  36754. characterMakers.push(() => makeCharacter(
  36755. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36756. {
  36757. front: {
  36758. height: math.unit(4.7, "meters"),
  36759. weight: math.unit(6500, "kg"),
  36760. name: "Front",
  36761. image: {
  36762. source: "./media/characters/vex/front.svg",
  36763. extra: 1288/1140,
  36764. bottom: 100/1388
  36765. }
  36766. },
  36767. },
  36768. [
  36769. {
  36770. name: "Normal",
  36771. height: math.unit(4.7, "meters"),
  36772. default: true
  36773. },
  36774. ]
  36775. ))
  36776. characterMakers.push(() => makeCharacter(
  36777. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36778. {
  36779. normal: {
  36780. height: math.unit(6, "feet"),
  36781. weight: math.unit(350, "lb"),
  36782. name: "Normal",
  36783. image: {
  36784. source: "./media/characters/teshy/normal.svg",
  36785. extra: 1795/1735,
  36786. bottom: 16/1811
  36787. }
  36788. },
  36789. monsterFront: {
  36790. height: math.unit(12, "feet"),
  36791. weight: math.unit(4700, "lb"),
  36792. name: "Monster (Front)",
  36793. image: {
  36794. source: "./media/characters/teshy/monster-front.svg",
  36795. extra: 2042/2034,
  36796. bottom: 128/2170
  36797. }
  36798. },
  36799. monsterSide: {
  36800. height: math.unit(12, "feet"),
  36801. weight: math.unit(4700, "lb"),
  36802. name: "Monster (Side)",
  36803. image: {
  36804. source: "./media/characters/teshy/monster-side.svg",
  36805. extra: 2067/2056,
  36806. bottom: 70/2137
  36807. }
  36808. },
  36809. monsterBack: {
  36810. height: math.unit(12, "feet"),
  36811. weight: math.unit(4700, "lb"),
  36812. name: "Monster (Back)",
  36813. image: {
  36814. source: "./media/characters/teshy/monster-back.svg",
  36815. extra: 1921/1914,
  36816. bottom: 171/2092
  36817. }
  36818. },
  36819. },
  36820. [
  36821. {
  36822. name: "Normal",
  36823. height: math.unit(6, "feet"),
  36824. default: true
  36825. },
  36826. ]
  36827. ))
  36828. characterMakers.push(() => makeCharacter(
  36829. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36830. {
  36831. front: {
  36832. height: math.unit(6, "feet"),
  36833. name: "Front",
  36834. image: {
  36835. source: "./media/characters/ramey/front.svg",
  36836. extra: 790/787,
  36837. bottom: 27/817
  36838. }
  36839. },
  36840. },
  36841. [
  36842. {
  36843. name: "Normal",
  36844. height: math.unit(6, "feet"),
  36845. default: true
  36846. },
  36847. ]
  36848. ))
  36849. characterMakers.push(() => makeCharacter(
  36850. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36851. {
  36852. front: {
  36853. height: math.unit(5 + 5/12, "feet"),
  36854. weight: math.unit(120, "lb"),
  36855. name: "Front",
  36856. image: {
  36857. source: "./media/characters/phirae/front.svg",
  36858. extra: 2491/2436,
  36859. bottom: 38/2529
  36860. }
  36861. },
  36862. },
  36863. [
  36864. {
  36865. name: "Normal",
  36866. height: math.unit(5 + 5/12, "feet"),
  36867. default: true
  36868. },
  36869. ]
  36870. ))
  36871. characterMakers.push(() => makeCharacter(
  36872. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36873. {
  36874. front: {
  36875. height: math.unit(5 + 3/12, "feet"),
  36876. name: "Front",
  36877. image: {
  36878. source: "./media/characters/stagglas/front.svg",
  36879. extra: 962/882,
  36880. bottom: 53/1015
  36881. }
  36882. },
  36883. feral: {
  36884. height: math.unit(335, "cm"),
  36885. name: "Feral",
  36886. image: {
  36887. source: "./media/characters/stagglas/feral.svg",
  36888. extra: 1732/1090,
  36889. bottom: 48/1780
  36890. }
  36891. },
  36892. },
  36893. [
  36894. {
  36895. name: "Normal",
  36896. height: math.unit(5 + 3/12, "feet"),
  36897. default: true
  36898. },
  36899. ]
  36900. ))
  36901. characterMakers.push(() => makeCharacter(
  36902. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36903. {
  36904. front: {
  36905. height: math.unit(5 + 4/12, "feet"),
  36906. weight: math.unit(145, "lb"),
  36907. name: "Front",
  36908. image: {
  36909. source: "./media/characters/starra/front.svg",
  36910. extra: 1790/1691,
  36911. bottom: 91/1881
  36912. }
  36913. },
  36914. },
  36915. [
  36916. {
  36917. name: "Normal",
  36918. height: math.unit(5 + 4/12, "feet"),
  36919. default: true
  36920. },
  36921. ]
  36922. ))
  36923. characterMakers.push(() => makeCharacter(
  36924. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36925. {
  36926. front: {
  36927. height: math.unit(3.5, "meters"),
  36928. name: "Front",
  36929. image: {
  36930. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36931. extra: 1248/972,
  36932. bottom: 38/1286
  36933. }
  36934. },
  36935. },
  36936. [
  36937. {
  36938. name: "Normal",
  36939. height: math.unit(3.5, "meters"),
  36940. default: true
  36941. },
  36942. ]
  36943. ))
  36944. characterMakers.push(() => makeCharacter(
  36945. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36946. {
  36947. side: {
  36948. height: math.unit(8 + 2/12, "feet"),
  36949. weight: math.unit(1240, "lb"),
  36950. name: "Side",
  36951. image: {
  36952. source: "./media/characters/mika-valentine/side.svg",
  36953. extra: 2670/2501,
  36954. bottom: 250/2920
  36955. }
  36956. },
  36957. },
  36958. [
  36959. {
  36960. name: "Normal",
  36961. height: math.unit(8 + 2/12, "feet"),
  36962. default: true
  36963. },
  36964. ]
  36965. ))
  36966. characterMakers.push(() => makeCharacter(
  36967. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36968. {
  36969. front: {
  36970. height: math.unit(7 + 2/12, "feet"),
  36971. name: "Front",
  36972. image: {
  36973. source: "./media/characters/xoltol/front.svg",
  36974. extra: 2212/2124,
  36975. bottom: 84/2296
  36976. }
  36977. },
  36978. side: {
  36979. height: math.unit(7 + 2/12, "feet"),
  36980. name: "Side",
  36981. image: {
  36982. source: "./media/characters/xoltol/side.svg",
  36983. extra: 2273/2197,
  36984. bottom: 26/2299
  36985. }
  36986. },
  36987. hand: {
  36988. height: math.unit(2.5, "feet"),
  36989. name: "Hand",
  36990. image: {
  36991. source: "./media/characters/xoltol/hand.svg"
  36992. }
  36993. },
  36994. },
  36995. [
  36996. {
  36997. name: "Small-ish",
  36998. height: math.unit(5 + 11/12, "feet")
  36999. },
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(7 + 2/12, "feet")
  37003. },
  37004. {
  37005. name: "\"Macro\"",
  37006. height: math.unit(14 + 9/12, "feet"),
  37007. default: true
  37008. },
  37009. {
  37010. name: "Alternate Height",
  37011. height: math.unit(20, "feet")
  37012. },
  37013. {
  37014. name: "Actually Macro",
  37015. height: math.unit(100, "feet")
  37016. },
  37017. ]
  37018. ))
  37019. characterMakers.push(() => makeCharacter(
  37020. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37021. {
  37022. front: {
  37023. height: math.unit(5 + 2/12, "feet"),
  37024. weight: math.unit(75, "kg"),
  37025. name: "Front",
  37026. image: {
  37027. source: "./media/characters/kotetsu-redwood/front.svg",
  37028. extra: 1053/942,
  37029. bottom: 60/1113
  37030. }
  37031. },
  37032. },
  37033. [
  37034. {
  37035. name: "Normal",
  37036. height: math.unit(5 + 2/12, "feet"),
  37037. default: true
  37038. },
  37039. ]
  37040. ))
  37041. characterMakers.push(() => makeCharacter(
  37042. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37043. {
  37044. front: {
  37045. height: math.unit(2.4, "meters"),
  37046. weight: math.unit(125, "kg"),
  37047. name: "Front",
  37048. image: {
  37049. source: "./media/characters/lilith/front.svg",
  37050. extra: 1590/1513,
  37051. bottom: 203/1793
  37052. }
  37053. },
  37054. },
  37055. [
  37056. {
  37057. name: "Humanoid",
  37058. height: math.unit(2.4, "meters")
  37059. },
  37060. {
  37061. name: "Normal",
  37062. height: math.unit(6, "meters"),
  37063. default: true
  37064. },
  37065. {
  37066. name: "Largest",
  37067. height: math.unit(55, "meters")
  37068. },
  37069. ]
  37070. ))
  37071. characterMakers.push(() => makeCharacter(
  37072. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37073. {
  37074. front: {
  37075. height: math.unit(8 + 4/12, "feet"),
  37076. weight: math.unit(535, "lb"),
  37077. name: "Front",
  37078. image: {
  37079. source: "./media/characters/beh'kah-bolger/front.svg",
  37080. extra: 1660/1603,
  37081. bottom: 37/1697
  37082. }
  37083. },
  37084. },
  37085. [
  37086. {
  37087. name: "Normal",
  37088. height: math.unit(8 + 4/12, "feet"),
  37089. default: true
  37090. },
  37091. {
  37092. name: "Kaiju",
  37093. height: math.unit(250, "feet")
  37094. },
  37095. {
  37096. name: "Still Growing",
  37097. height: math.unit(10, "miles")
  37098. },
  37099. {
  37100. name: "Continental",
  37101. height: math.unit(5000, "miles")
  37102. },
  37103. {
  37104. name: "Final Form",
  37105. height: math.unit(2500000, "miles")
  37106. },
  37107. ]
  37108. ))
  37109. characterMakers.push(() => makeCharacter(
  37110. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37111. {
  37112. front: {
  37113. height: math.unit(7 + 2/12, "feet"),
  37114. weight: math.unit(230, "kg"),
  37115. name: "Front",
  37116. image: {
  37117. source: "./media/characters/tatyana-milewska/front.svg",
  37118. extra: 1199/1150,
  37119. bottom: 86/1285
  37120. }
  37121. },
  37122. },
  37123. [
  37124. {
  37125. name: "Normal",
  37126. height: math.unit(7 + 2/12, "feet"),
  37127. default: true
  37128. },
  37129. {
  37130. name: "Big",
  37131. height: math.unit(12, "feet")
  37132. },
  37133. {
  37134. name: "Minimacro",
  37135. height: math.unit(20, "feet")
  37136. },
  37137. {
  37138. name: "Macro",
  37139. height: math.unit(120, "feet")
  37140. },
  37141. ]
  37142. ))
  37143. characterMakers.push(() => makeCharacter(
  37144. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37145. {
  37146. front: {
  37147. height: math.unit(7 + 8/12, "feet"),
  37148. weight: math.unit(152, "kg"),
  37149. name: "Front",
  37150. image: {
  37151. source: "./media/characters/helen-arri/front.svg",
  37152. extra: 440/423,
  37153. bottom: 14/454
  37154. }
  37155. },
  37156. back: {
  37157. height: math.unit(7 + 8/12, "feet"),
  37158. weight: math.unit(152, "kg"),
  37159. name: "Back",
  37160. image: {
  37161. source: "./media/characters/helen-arri/back.svg",
  37162. extra: 443/426,
  37163. bottom: 8/451
  37164. }
  37165. },
  37166. },
  37167. [
  37168. {
  37169. name: "Normal",
  37170. height: math.unit(7 + 8/12, "feet"),
  37171. default: true
  37172. },
  37173. {
  37174. name: "Big",
  37175. height: math.unit(14, "feet")
  37176. },
  37177. {
  37178. name: "Minimacro",
  37179. height: math.unit(24, "feet")
  37180. },
  37181. {
  37182. name: "Macro",
  37183. height: math.unit(140, "feet")
  37184. },
  37185. ]
  37186. ))
  37187. characterMakers.push(() => makeCharacter(
  37188. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37189. {
  37190. front: {
  37191. height: math.unit(6, "meters"),
  37192. name: "Front",
  37193. image: {
  37194. source: "./media/characters/ehanu-rehu/front.svg",
  37195. extra: 1800/1800,
  37196. bottom: 59/1859
  37197. }
  37198. },
  37199. },
  37200. [
  37201. {
  37202. name: "Normal",
  37203. height: math.unit(6, "meters"),
  37204. default: true
  37205. },
  37206. ]
  37207. ))
  37208. characterMakers.push(() => makeCharacter(
  37209. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37210. {
  37211. front: {
  37212. height: math.unit(7 + 3/12, "feet"),
  37213. name: "Front",
  37214. image: {
  37215. source: "./media/characters/renholder/front.svg",
  37216. extra: 3096/2960,
  37217. bottom: 250/3346
  37218. }
  37219. },
  37220. },
  37221. [
  37222. {
  37223. name: "Normal Bat",
  37224. height: math.unit(7 + 3/12, "feet"),
  37225. default: true
  37226. },
  37227. {
  37228. name: "Slightly Tall Bat",
  37229. height: math.unit(100, "feet")
  37230. },
  37231. {
  37232. name: "Big Bat",
  37233. height: math.unit(1000, "feet")
  37234. },
  37235. {
  37236. name: "City-Sized Bat",
  37237. height: math.unit(200000, "feet")
  37238. },
  37239. {
  37240. name: "Bigger Bat",
  37241. height: math.unit(10000, "miles")
  37242. },
  37243. {
  37244. name: "Solar Sized Bat",
  37245. height: math.unit(100, "AU")
  37246. },
  37247. {
  37248. name: "Galactic Bat",
  37249. height: math.unit(200000, "lightyears")
  37250. },
  37251. {
  37252. name: "Universally Known Bat",
  37253. height: math.unit(1, "universe")
  37254. },
  37255. ]
  37256. ))
  37257. characterMakers.push(() => makeCharacter(
  37258. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37259. {
  37260. front: {
  37261. height: math.unit(6 + 11/12, "feet"),
  37262. weight: math.unit(250, "lb"),
  37263. name: "Front",
  37264. image: {
  37265. source: "./media/characters/cookiecat/front.svg",
  37266. extra: 893/827,
  37267. bottom: 14/907
  37268. }
  37269. },
  37270. },
  37271. [
  37272. {
  37273. name: "Micro",
  37274. height: math.unit(3, "inches")
  37275. },
  37276. {
  37277. name: "Normal",
  37278. height: math.unit(6 + 11/12, "feet"),
  37279. default: true
  37280. },
  37281. {
  37282. name: "Macro",
  37283. height: math.unit(100, "feet")
  37284. },
  37285. {
  37286. name: "Macro+",
  37287. height: math.unit(404, "feet")
  37288. },
  37289. {
  37290. name: "Megamacro",
  37291. height: math.unit(165, "miles")
  37292. },
  37293. {
  37294. name: "Planetary",
  37295. height: math.unit(4600, "miles")
  37296. },
  37297. ]
  37298. ))
  37299. characterMakers.push(() => makeCharacter(
  37300. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37301. {
  37302. front: {
  37303. height: math.unit(10 + 3/12, "feet"),
  37304. weight: math.unit(1500, "lb"),
  37305. name: "Front",
  37306. image: {
  37307. source: "./media/characters/tux-kusanagi/front.svg",
  37308. extra: 944/840,
  37309. bottom: 39/983
  37310. }
  37311. },
  37312. back: {
  37313. height: math.unit(10 + 3/12, "feet"),
  37314. weight: math.unit(1500, "lb"),
  37315. name: "Back",
  37316. image: {
  37317. source: "./media/characters/tux-kusanagi/back.svg",
  37318. extra: 941/842,
  37319. bottom: 28/969
  37320. }
  37321. },
  37322. rump: {
  37323. height: math.unit(5.25, "feet"),
  37324. name: "Rump",
  37325. image: {
  37326. source: "./media/characters/tux-kusanagi/rump.svg"
  37327. }
  37328. },
  37329. beak: {
  37330. height: math.unit(1.54, "feet"),
  37331. name: "Beak",
  37332. image: {
  37333. source: "./media/characters/tux-kusanagi/beak.svg"
  37334. }
  37335. },
  37336. },
  37337. [
  37338. {
  37339. name: "Normal",
  37340. height: math.unit(10 + 3/12, "feet"),
  37341. default: true
  37342. },
  37343. ]
  37344. ))
  37345. characterMakers.push(() => makeCharacter(
  37346. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37347. {
  37348. front: {
  37349. height: math.unit(58, "feet"),
  37350. weight: math.unit(200, "tons"),
  37351. name: "Front",
  37352. image: {
  37353. source: "./media/characters/uzarmazari/front.svg",
  37354. extra: 1575/1455,
  37355. bottom: 152/1727
  37356. }
  37357. },
  37358. back: {
  37359. height: math.unit(58, "feet"),
  37360. weight: math.unit(200, "tons"),
  37361. name: "Back",
  37362. image: {
  37363. source: "./media/characters/uzarmazari/back.svg",
  37364. extra: 1585/1510,
  37365. bottom: 157/1742
  37366. }
  37367. },
  37368. head: {
  37369. height: math.unit(26, "feet"),
  37370. name: "Head",
  37371. image: {
  37372. source: "./media/characters/uzarmazari/head.svg"
  37373. }
  37374. },
  37375. },
  37376. [
  37377. {
  37378. name: "Normal",
  37379. height: math.unit(58, "feet"),
  37380. default: true
  37381. },
  37382. ]
  37383. ))
  37384. characterMakers.push(() => makeCharacter(
  37385. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37386. {
  37387. side: {
  37388. height: math.unit(15, "feet"),
  37389. name: "Side",
  37390. image: {
  37391. source: "./media/characters/akitu/side.svg",
  37392. extra: 1421/1321,
  37393. bottom: 157/1578
  37394. }
  37395. },
  37396. front: {
  37397. height: math.unit(15, "feet"),
  37398. name: "Front",
  37399. image: {
  37400. source: "./media/characters/akitu/front.svg",
  37401. extra: 1435/1326,
  37402. bottom: 232/1667
  37403. }
  37404. },
  37405. },
  37406. [
  37407. {
  37408. name: "Normal",
  37409. height: math.unit(15, "feet"),
  37410. default: true
  37411. },
  37412. ]
  37413. ))
  37414. characterMakers.push(() => makeCharacter(
  37415. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37416. {
  37417. front: {
  37418. height: math.unit(10 + 8/12, "feet"),
  37419. name: "Front",
  37420. image: {
  37421. source: "./media/characters/azalie-croixland/front.svg",
  37422. extra: 1972/1856,
  37423. bottom: 31/2003
  37424. }
  37425. },
  37426. },
  37427. [
  37428. {
  37429. name: "Original Height",
  37430. height: math.unit(5 + 4/12, "feet")
  37431. },
  37432. {
  37433. name: "Normal Height",
  37434. height: math.unit(10 + 8/12, "feet"),
  37435. default: true
  37436. },
  37437. ]
  37438. ))
  37439. characterMakers.push(() => makeCharacter(
  37440. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37441. {
  37442. side: {
  37443. height: math.unit(7 + 1/12, "feet"),
  37444. weight: math.unit(245, "lb"),
  37445. name: "Side",
  37446. image: {
  37447. source: "./media/characters/kavus-kazian/side.svg",
  37448. extra: 349/342,
  37449. bottom: 15/364
  37450. }
  37451. },
  37452. },
  37453. [
  37454. {
  37455. name: "Normal",
  37456. height: math.unit(7 + 1/12, "feet"),
  37457. default: true
  37458. },
  37459. ]
  37460. ))
  37461. characterMakers.push(() => makeCharacter(
  37462. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37463. {
  37464. normalFront: {
  37465. height: math.unit(5 + 11/12, "feet"),
  37466. name: "Front",
  37467. image: {
  37468. source: "./media/characters/moonlight-rose/normal-front.svg",
  37469. extra: 1980/1825,
  37470. bottom: 18/1998
  37471. },
  37472. form: "normal",
  37473. default: true
  37474. },
  37475. normalBack: {
  37476. height: math.unit(5 + 11/12, "feet"),
  37477. name: "Back",
  37478. image: {
  37479. source: "./media/characters/moonlight-rose/normal-back.svg",
  37480. extra: 2010/1839,
  37481. bottom: 10/2020
  37482. },
  37483. form: "normal"
  37484. },
  37485. demonFront: {
  37486. height: math.unit(1.5, "earths"),
  37487. name: "Front",
  37488. image: {
  37489. source: "./media/characters/moonlight-rose/demon.svg",
  37490. extra: 1400/1294,
  37491. bottom: 45/1445
  37492. },
  37493. form: "demon",
  37494. default: true
  37495. },
  37496. terraFront: {
  37497. height: math.unit(1.5, "earths"),
  37498. name: "Front",
  37499. image: {
  37500. source: "./media/characters/moonlight-rose/terra.svg"
  37501. },
  37502. form: "terra",
  37503. default: true
  37504. },
  37505. jupiterFront: {
  37506. height: math.unit(69911*2, "km"),
  37507. name: "Front",
  37508. image: {
  37509. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37510. extra: 1367/1286,
  37511. bottom: 55/1422
  37512. },
  37513. form: "jupiter",
  37514. default: true
  37515. },
  37516. neptuneFront: {
  37517. height: math.unit(24622*2, "feet"),
  37518. name: "Front",
  37519. image: {
  37520. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37521. extra: 1851/1712,
  37522. bottom: 0/1851
  37523. },
  37524. form: "neptune",
  37525. default: true
  37526. },
  37527. },
  37528. [
  37529. {
  37530. name: "\"Natural\" Height",
  37531. height: math.unit(5 + 11/12, "feet"),
  37532. form: "normal"
  37533. },
  37534. {
  37535. name: "Smallest comfortable size",
  37536. height: math.unit(40, "meters"),
  37537. form: "normal"
  37538. },
  37539. {
  37540. name: "Common size",
  37541. height: math.unit(50, "km"),
  37542. form: "normal",
  37543. default: true
  37544. },
  37545. {
  37546. name: "Normal",
  37547. height: math.unit(1.5, "earths"),
  37548. form: "demon",
  37549. default: true
  37550. },
  37551. {
  37552. name: "Universal",
  37553. height: math.unit(15, "universes"),
  37554. form: "demon"
  37555. },
  37556. {
  37557. name: "Earth",
  37558. height: math.unit(1.5, "earths"),
  37559. form: "terra",
  37560. default: true
  37561. },
  37562. {
  37563. name: "Super Earth",
  37564. height: math.unit(67.5, "earths"),
  37565. form: "terra"
  37566. },
  37567. {
  37568. name: "Doesn't fit in a solar system...",
  37569. height: math.unit(1, "galaxy"),
  37570. form: "terra"
  37571. },
  37572. {
  37573. name: "Saturn",
  37574. height: math.unit(58232*2, "km"),
  37575. form: "jupiter"
  37576. },
  37577. {
  37578. name: "Jupiter",
  37579. height: math.unit(69911*2, "km"),
  37580. form: "jupiter",
  37581. default: true
  37582. },
  37583. {
  37584. name: "HD 100546 b",
  37585. height: math.unit(482938, "km"),
  37586. form: "jupiter"
  37587. },
  37588. {
  37589. name: "Enceladus",
  37590. height: math.unit(513*2, "km"),
  37591. form: "neptune"
  37592. },
  37593. {
  37594. name: "Europe",
  37595. height: math.unit(1560*2, "km"),
  37596. form: "neptune"
  37597. },
  37598. {
  37599. name: "Neptune",
  37600. height: math.unit(24622*2, "km"),
  37601. form: "neptune",
  37602. default: true
  37603. },
  37604. {
  37605. name: "CoRoT-9b",
  37606. height: math.unit(75067*2, "km"),
  37607. form: "neptune"
  37608. },
  37609. ],
  37610. {
  37611. "normal": {
  37612. name: "Normal",
  37613. default: true
  37614. },
  37615. "demon": {
  37616. name: "Demon"
  37617. },
  37618. "terra": {
  37619. name: "Terra"
  37620. },
  37621. "jupiter": {
  37622. name: "Jupiter"
  37623. },
  37624. "neptune": {
  37625. name: "Neptune"
  37626. }
  37627. }
  37628. ))
  37629. characterMakers.push(() => makeCharacter(
  37630. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37631. {
  37632. front: {
  37633. height: math.unit(16, "feet"),
  37634. weight: math.unit(610, "kg"),
  37635. name: "Front",
  37636. image: {
  37637. source: "./media/characters/huckle/front.svg",
  37638. extra: 1731/1625,
  37639. bottom: 33/1764
  37640. }
  37641. },
  37642. back: {
  37643. height: math.unit(16, "feet"),
  37644. weight: math.unit(610, "kg"),
  37645. name: "Back",
  37646. image: {
  37647. source: "./media/characters/huckle/back.svg",
  37648. extra: 1738/1651,
  37649. bottom: 37/1775
  37650. }
  37651. },
  37652. laughing: {
  37653. height: math.unit(3.75, "feet"),
  37654. name: "Laughing",
  37655. image: {
  37656. source: "./media/characters/huckle/laughing.svg"
  37657. }
  37658. },
  37659. angry: {
  37660. height: math.unit(4.15, "feet"),
  37661. name: "Angry",
  37662. image: {
  37663. source: "./media/characters/huckle/angry.svg"
  37664. }
  37665. },
  37666. },
  37667. [
  37668. {
  37669. name: "Normal",
  37670. height: math.unit(16, "feet"),
  37671. default: true
  37672. },
  37673. {
  37674. name: "Mini Macro",
  37675. height: math.unit(463, "feet")
  37676. },
  37677. {
  37678. name: "Macro",
  37679. height: math.unit(1680, "meters")
  37680. },
  37681. {
  37682. name: "Mega Macro",
  37683. height: math.unit(175, "km")
  37684. },
  37685. {
  37686. name: "Terra Macro",
  37687. height: math.unit(32, "gigameters")
  37688. },
  37689. {
  37690. name: "Multiverse+",
  37691. height: math.unit(2.56e23, "yottameters")
  37692. },
  37693. ]
  37694. ))
  37695. characterMakers.push(() => makeCharacter(
  37696. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37697. {
  37698. front: {
  37699. height: math.unit(6 + 9/12, "feet"),
  37700. weight: math.unit(280, "lb"),
  37701. name: "Front",
  37702. image: {
  37703. source: "./media/characters/candy/front.svg",
  37704. extra: 234/217,
  37705. bottom: 11/245
  37706. }
  37707. },
  37708. },
  37709. [
  37710. {
  37711. name: "Really Small",
  37712. height: math.unit(0.1, "nm")
  37713. },
  37714. {
  37715. name: "Micro",
  37716. height: math.unit(2, "inches")
  37717. },
  37718. {
  37719. name: "Normal",
  37720. height: math.unit(6 + 9/12, "feet"),
  37721. default: true
  37722. },
  37723. {
  37724. name: "Small Macro",
  37725. height: math.unit(69, "feet")
  37726. },
  37727. {
  37728. name: "Macro",
  37729. height: math.unit(160, "feet")
  37730. },
  37731. {
  37732. name: "Megamacro",
  37733. height: math.unit(22000, "miles")
  37734. },
  37735. {
  37736. name: "Gigamacro",
  37737. height: math.unit(50000, "miles")
  37738. },
  37739. ]
  37740. ))
  37741. characterMakers.push(() => makeCharacter(
  37742. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37743. {
  37744. front: {
  37745. height: math.unit(4, "feet"),
  37746. weight: math.unit(90, "lb"),
  37747. name: "Front",
  37748. image: {
  37749. source: "./media/characters/joey-mcdonald/front.svg",
  37750. extra: 1059/852,
  37751. bottom: 33/1092
  37752. }
  37753. },
  37754. back: {
  37755. height: math.unit(4, "feet"),
  37756. weight: math.unit(90, "lb"),
  37757. name: "Back",
  37758. image: {
  37759. source: "./media/characters/joey-mcdonald/back.svg",
  37760. extra: 1077/879,
  37761. bottom: 5/1082
  37762. }
  37763. },
  37764. frontKobold: {
  37765. height: math.unit(4, "feet"),
  37766. weight: math.unit(100, "lb"),
  37767. name: "Front-kobold",
  37768. image: {
  37769. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37770. extra: 1480/1367,
  37771. bottom: 0/1480
  37772. }
  37773. },
  37774. backKobold: {
  37775. height: math.unit(4, "feet"),
  37776. weight: math.unit(100, "lb"),
  37777. name: "Back-kobold",
  37778. image: {
  37779. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37780. extra: 1449/1361,
  37781. bottom: 0/1449
  37782. }
  37783. },
  37784. },
  37785. [
  37786. {
  37787. name: "Normal",
  37788. height: math.unit(4, "feet"),
  37789. default: true
  37790. },
  37791. ]
  37792. ))
  37793. characterMakers.push(() => makeCharacter(
  37794. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37795. {
  37796. front: {
  37797. height: math.unit(12 + 6/12, "feet"),
  37798. name: "Front",
  37799. image: {
  37800. source: "./media/characters/kass-lockheed/front.svg",
  37801. extra: 354/343,
  37802. bottom: 9/363
  37803. }
  37804. },
  37805. back: {
  37806. height: math.unit(12 + 6/12, "feet"),
  37807. name: "Back",
  37808. image: {
  37809. source: "./media/characters/kass-lockheed/back.svg",
  37810. extra: 364/352,
  37811. bottom: 3/367
  37812. }
  37813. },
  37814. dick: {
  37815. height: math.unit(3.12, "feet"),
  37816. name: "Dick",
  37817. image: {
  37818. source: "./media/characters/kass-lockheed/dick.svg"
  37819. }
  37820. },
  37821. head: {
  37822. height: math.unit(2.6, "feet"),
  37823. name: "Head",
  37824. image: {
  37825. source: "./media/characters/kass-lockheed/head.svg"
  37826. }
  37827. },
  37828. bleh: {
  37829. height: math.unit(2.85, "feet"),
  37830. name: "Bleh",
  37831. image: {
  37832. source: "./media/characters/kass-lockheed/bleh.svg"
  37833. }
  37834. },
  37835. smug: {
  37836. height: math.unit(2.85, "feet"),
  37837. name: "Smug",
  37838. image: {
  37839. source: "./media/characters/kass-lockheed/smug.svg"
  37840. }
  37841. },
  37842. },
  37843. [
  37844. {
  37845. name: "Normal",
  37846. height: math.unit(12 + 6/12, "feet"),
  37847. default: true
  37848. },
  37849. ]
  37850. ))
  37851. characterMakers.push(() => makeCharacter(
  37852. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37853. {
  37854. front: {
  37855. height: math.unit(6 + 2/12, "feet"),
  37856. name: "Front",
  37857. image: {
  37858. source: "./media/characters/taylor/front.svg",
  37859. extra: 639/495,
  37860. bottom: 12/651
  37861. }
  37862. },
  37863. },
  37864. [
  37865. {
  37866. name: "Normal",
  37867. height: math.unit(6 + 2/12, "feet"),
  37868. default: true
  37869. },
  37870. {
  37871. name: "Big",
  37872. height: math.unit(15, "feet")
  37873. },
  37874. {
  37875. name: "Lorg",
  37876. height: math.unit(80, "feet")
  37877. },
  37878. {
  37879. name: "Too Lorg",
  37880. height: math.unit(120, "feet")
  37881. },
  37882. ]
  37883. ))
  37884. characterMakers.push(() => makeCharacter(
  37885. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37886. {
  37887. front: {
  37888. height: math.unit(15, "feet"),
  37889. name: "Front",
  37890. image: {
  37891. source: "./media/characters/kaizer/front.svg",
  37892. extra: 1612/1436,
  37893. bottom: 43/1655
  37894. }
  37895. },
  37896. },
  37897. [
  37898. {
  37899. name: "Normal",
  37900. height: math.unit(15, "feet"),
  37901. default: true
  37902. },
  37903. ]
  37904. ))
  37905. characterMakers.push(() => makeCharacter(
  37906. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37907. {
  37908. front: {
  37909. height: math.unit(2, "feet"),
  37910. weight: math.unit(30, "lb"),
  37911. name: "Front",
  37912. image: {
  37913. source: "./media/characters/sandy/front.svg",
  37914. extra: 1439/1307,
  37915. bottom: 194/1633
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Normal",
  37922. height: math.unit(2, "feet"),
  37923. default: true
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(3, "feet"),
  37932. name: "Front",
  37933. image: {
  37934. source: "./media/characters/mellvi/front.svg",
  37935. extra: 1831/1630,
  37936. bottom: 58/1889
  37937. }
  37938. },
  37939. },
  37940. [
  37941. {
  37942. name: "Normal",
  37943. height: math.unit(3, "feet"),
  37944. default: true
  37945. },
  37946. ]
  37947. ))
  37948. characterMakers.push(() => makeCharacter(
  37949. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37950. {
  37951. front: {
  37952. height: math.unit(5 + 11/12, "feet"),
  37953. weight: math.unit(200, "lb"),
  37954. name: "Front",
  37955. image: {
  37956. source: "./media/characters/shirou/front.svg",
  37957. extra: 2491/2383,
  37958. bottom: 189/2680
  37959. }
  37960. },
  37961. back: {
  37962. height: math.unit(5 + 11/12, "feet"),
  37963. weight: math.unit(200, "lb"),
  37964. name: "Back",
  37965. image: {
  37966. source: "./media/characters/shirou/back.svg",
  37967. extra: 2554/2450,
  37968. bottom: 76/2630
  37969. }
  37970. },
  37971. },
  37972. [
  37973. {
  37974. name: "Normal",
  37975. height: math.unit(5 + 11/12, "feet"),
  37976. default: true
  37977. },
  37978. ]
  37979. ))
  37980. characterMakers.push(() => makeCharacter(
  37981. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37982. {
  37983. front: {
  37984. height: math.unit(6 + 3/12, "feet"),
  37985. weight: math.unit(177, "lb"),
  37986. name: "Front",
  37987. image: {
  37988. source: "./media/characters/noryu/front.svg",
  37989. extra: 973/885,
  37990. bottom: 10/983
  37991. }
  37992. },
  37993. },
  37994. [
  37995. {
  37996. name: "Normal",
  37997. height: math.unit(6 + 3/12, "feet"),
  37998. default: true
  37999. },
  38000. ]
  38001. ))
  38002. characterMakers.push(() => makeCharacter(
  38003. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38004. {
  38005. front: {
  38006. height: math.unit(5 + 6/12, "feet"),
  38007. weight: math.unit(170, "lb"),
  38008. name: "Front",
  38009. image: {
  38010. source: "./media/characters/mevolas-rubenido/front.svg",
  38011. extra: 2109/1901,
  38012. bottom: 96/2205
  38013. }
  38014. },
  38015. },
  38016. [
  38017. {
  38018. name: "Normal",
  38019. height: math.unit(5 + 6/12, "feet"),
  38020. default: true
  38021. },
  38022. ]
  38023. ))
  38024. characterMakers.push(() => makeCharacter(
  38025. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38026. {
  38027. front: {
  38028. height: math.unit(100, "feet"),
  38029. name: "Front",
  38030. image: {
  38031. source: "./media/characters/dee/front.svg",
  38032. extra: 2153/2036,
  38033. bottom: 59/2212
  38034. }
  38035. },
  38036. back: {
  38037. height: math.unit(100, "feet"),
  38038. name: "Back",
  38039. image: {
  38040. source: "./media/characters/dee/back.svg",
  38041. extra: 2183/2058,
  38042. bottom: 75/2258
  38043. }
  38044. },
  38045. foot: {
  38046. height: math.unit(19.43, "feet"),
  38047. name: "Foot",
  38048. image: {
  38049. source: "./media/characters/dee/foot.svg"
  38050. }
  38051. },
  38052. hoof: {
  38053. height: math.unit(20.6, "feet"),
  38054. name: "Hoof",
  38055. image: {
  38056. source: "./media/characters/dee/hoof.svg"
  38057. }
  38058. },
  38059. },
  38060. [
  38061. {
  38062. name: "Macro",
  38063. height: math.unit(100, "feet"),
  38064. default: true
  38065. },
  38066. ]
  38067. ))
  38068. characterMakers.push(() => makeCharacter(
  38069. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38070. {
  38071. front: {
  38072. height: math.unit(5 + 6/12, "feet"),
  38073. name: "Front",
  38074. image: {
  38075. source: "./media/characters/teh/front.svg",
  38076. extra: 1002/847,
  38077. bottom: 62/1064
  38078. }
  38079. },
  38080. },
  38081. [
  38082. {
  38083. name: "Normal",
  38084. height: math.unit(5 + 6/12, "feet"),
  38085. default: true
  38086. },
  38087. ]
  38088. ))
  38089. characterMakers.push(() => makeCharacter(
  38090. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38091. {
  38092. side: {
  38093. height: math.unit(6 + 1/12, "feet"),
  38094. weight: math.unit(204, "lb"),
  38095. name: "Side",
  38096. image: {
  38097. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38098. extra: 974/775,
  38099. bottom: 169/1143
  38100. }
  38101. },
  38102. sitting: {
  38103. height: math.unit(6 + 2/12, "feet"),
  38104. weight: math.unit(204, "lb"),
  38105. name: "Sitting",
  38106. image: {
  38107. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38108. extra: 1175/964,
  38109. bottom: 378/1553
  38110. }
  38111. },
  38112. },
  38113. [
  38114. {
  38115. name: "Normal",
  38116. height: math.unit(6 + 1/12, "feet"),
  38117. default: true
  38118. },
  38119. ]
  38120. ))
  38121. characterMakers.push(() => makeCharacter(
  38122. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38123. {
  38124. front: {
  38125. height: math.unit(6, "inches"),
  38126. name: "Front",
  38127. image: {
  38128. source: "./media/characters/tululi/front.svg",
  38129. extra: 1997/1876,
  38130. bottom: 20/2017
  38131. }
  38132. },
  38133. },
  38134. [
  38135. {
  38136. name: "Normal",
  38137. height: math.unit(6, "inches"),
  38138. default: true
  38139. },
  38140. ]
  38141. ))
  38142. characterMakers.push(() => makeCharacter(
  38143. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38144. {
  38145. front: {
  38146. height: math.unit(4 + 1/12, "feet"),
  38147. name: "Front",
  38148. image: {
  38149. source: "./media/characters/star/front.svg",
  38150. extra: 1493/1189,
  38151. bottom: 48/1541
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Normal",
  38158. height: math.unit(4 + 1/12, "feet"),
  38159. default: true
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38165. {
  38166. front: {
  38167. height: math.unit(6 + 3/12, "feet"),
  38168. name: "Front",
  38169. image: {
  38170. source: "./media/characters/comet/front.svg",
  38171. extra: 1681/1462,
  38172. bottom: 26/1707
  38173. }
  38174. },
  38175. },
  38176. [
  38177. {
  38178. name: "Normal",
  38179. height: math.unit(6 + 3/12, "feet"),
  38180. default: true
  38181. },
  38182. ]
  38183. ))
  38184. characterMakers.push(() => makeCharacter(
  38185. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38186. {
  38187. front: {
  38188. height: math.unit(950, "feet"),
  38189. name: "Front",
  38190. image: {
  38191. source: "./media/characters/vortex/front.svg",
  38192. extra: 1497/1434,
  38193. bottom: 56/1553
  38194. }
  38195. },
  38196. maw: {
  38197. height: math.unit(285, "feet"),
  38198. name: "Maw",
  38199. image: {
  38200. source: "./media/characters/vortex/maw.svg"
  38201. }
  38202. },
  38203. },
  38204. [
  38205. {
  38206. name: "Macro",
  38207. height: math.unit(950, "feet"),
  38208. default: true
  38209. },
  38210. ]
  38211. ))
  38212. characterMakers.push(() => makeCharacter(
  38213. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38214. {
  38215. front: {
  38216. height: math.unit(600, "feet"),
  38217. weight: math.unit(0.02, "grams"),
  38218. name: "Front",
  38219. image: {
  38220. source: "./media/characters/doodle/front.svg",
  38221. extra: 1578/1413,
  38222. bottom: 37/1615
  38223. }
  38224. },
  38225. },
  38226. [
  38227. {
  38228. name: "Macro",
  38229. height: math.unit(600, "feet"),
  38230. default: true
  38231. },
  38232. ]
  38233. ))
  38234. characterMakers.push(() => makeCharacter(
  38235. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38236. {
  38237. front: {
  38238. height: math.unit(6 + 6/12, "feet"),
  38239. name: "Front",
  38240. image: {
  38241. source: "./media/characters/jai/front.svg",
  38242. extra: 1645/1534,
  38243. bottom: 115/1760
  38244. }
  38245. },
  38246. },
  38247. [
  38248. {
  38249. name: "Normal",
  38250. height: math.unit(6 + 6/12, "feet"),
  38251. default: true
  38252. },
  38253. ]
  38254. ))
  38255. characterMakers.push(() => makeCharacter(
  38256. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38257. {
  38258. front: {
  38259. height: math.unit(6 + 8/12, "feet"),
  38260. name: "Front",
  38261. image: {
  38262. source: "./media/characters/pixel/front.svg",
  38263. extra: 1900/1735,
  38264. bottom: 63/1963
  38265. }
  38266. },
  38267. },
  38268. [
  38269. {
  38270. name: "Normal",
  38271. height: math.unit(6 + 8/12, "feet"),
  38272. default: true
  38273. },
  38274. ]
  38275. ))
  38276. characterMakers.push(() => makeCharacter(
  38277. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38278. {
  38279. back: {
  38280. height: math.unit(4 + 1/12, "feet"),
  38281. weight: math.unit(75, "lb"),
  38282. name: "Back",
  38283. image: {
  38284. source: "./media/characters/rhett/back.svg",
  38285. extra: 930/878,
  38286. bottom: 25/955
  38287. }
  38288. },
  38289. front: {
  38290. height: math.unit(4 + 1/12, "feet"),
  38291. weight: math.unit(75, "lb"),
  38292. name: "Front",
  38293. image: {
  38294. source: "./media/characters/rhett/front.svg",
  38295. extra: 1682/1586,
  38296. bottom: 92/1774
  38297. }
  38298. },
  38299. },
  38300. [
  38301. {
  38302. name: "Micro",
  38303. height: math.unit(8, "inches")
  38304. },
  38305. {
  38306. name: "Tiny",
  38307. height: math.unit(2, "feet")
  38308. },
  38309. {
  38310. name: "Normal",
  38311. height: math.unit(4 + 1/12, "feet"),
  38312. default: true
  38313. },
  38314. ]
  38315. ))
  38316. characterMakers.push(() => makeCharacter(
  38317. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38318. {
  38319. front: {
  38320. height: math.unit(3 + 3/12, "feet"),
  38321. name: "Front",
  38322. image: {
  38323. source: "./media/characters/penny/front.svg",
  38324. extra: 1406/1311,
  38325. bottom: 26/1432
  38326. }
  38327. },
  38328. },
  38329. [
  38330. {
  38331. name: "Normal",
  38332. height: math.unit(3 + 3/12, "feet"),
  38333. default: true
  38334. },
  38335. ]
  38336. ))
  38337. characterMakers.push(() => makeCharacter(
  38338. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38339. {
  38340. front: {
  38341. height: math.unit(4 + 11/12, "feet"),
  38342. name: "Front",
  38343. image: {
  38344. source: "./media/characters/monty/front.svg",
  38345. extra: 1479/1209,
  38346. bottom: 0/1479
  38347. }
  38348. },
  38349. },
  38350. [
  38351. {
  38352. name: "Normal",
  38353. height: math.unit(4 + 11/12, "feet"),
  38354. default: true
  38355. },
  38356. ]
  38357. ))
  38358. characterMakers.push(() => makeCharacter(
  38359. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38360. {
  38361. front: {
  38362. height: math.unit(8 + 4/12, "feet"),
  38363. name: "Front",
  38364. image: {
  38365. source: "./media/characters/sterling/front.svg",
  38366. extra: 1420/1236,
  38367. bottom: 27/1447
  38368. }
  38369. },
  38370. },
  38371. [
  38372. {
  38373. name: "Normal",
  38374. height: math.unit(8 + 4/12, "feet"),
  38375. default: true
  38376. },
  38377. ]
  38378. ))
  38379. characterMakers.push(() => makeCharacter(
  38380. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38381. {
  38382. front: {
  38383. height: math.unit(15, "feet"),
  38384. name: "Front",
  38385. image: {
  38386. source: "./media/characters/marble/front.svg",
  38387. extra: 973/937,
  38388. bottom: 32/1005
  38389. }
  38390. },
  38391. },
  38392. [
  38393. {
  38394. name: "Normal",
  38395. height: math.unit(15, "feet"),
  38396. default: true
  38397. },
  38398. ]
  38399. ))
  38400. characterMakers.push(() => makeCharacter(
  38401. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38402. {
  38403. front: {
  38404. height: math.unit(3, "inches"),
  38405. name: "Front",
  38406. image: {
  38407. source: "./media/characters/powder/front.svg",
  38408. extra: 1504/1334,
  38409. bottom: 518/2022
  38410. }
  38411. },
  38412. },
  38413. [
  38414. {
  38415. name: "Normal",
  38416. height: math.unit(3, "inches"),
  38417. default: true
  38418. },
  38419. ]
  38420. ))
  38421. characterMakers.push(() => makeCharacter(
  38422. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38423. {
  38424. front: {
  38425. height: math.unit(4 + 5/12, "feet"),
  38426. name: "Front",
  38427. image: {
  38428. source: "./media/characters/joey-raccoon/front.svg",
  38429. extra: 1273/1197,
  38430. bottom: 0/1273
  38431. }
  38432. },
  38433. },
  38434. [
  38435. {
  38436. name: "Normal",
  38437. height: math.unit(4 + 5/12, "feet"),
  38438. default: true
  38439. },
  38440. ]
  38441. ))
  38442. characterMakers.push(() => makeCharacter(
  38443. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38444. {
  38445. front: {
  38446. height: math.unit(8 + 4/12, "feet"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/vick/front.svg",
  38450. extra: 2187/2118,
  38451. bottom: 47/2234
  38452. }
  38453. },
  38454. },
  38455. [
  38456. {
  38457. name: "Normal",
  38458. height: math.unit(8 + 4/12, "feet"),
  38459. default: true
  38460. },
  38461. ]
  38462. ))
  38463. characterMakers.push(() => makeCharacter(
  38464. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38465. {
  38466. front: {
  38467. height: math.unit(5 + 5/12, "feet"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/mitsy/front.svg",
  38471. extra: 1842/1695,
  38472. bottom: 0/1842
  38473. }
  38474. },
  38475. },
  38476. [
  38477. {
  38478. name: "Normal",
  38479. height: math.unit(5 + 5/12, "feet"),
  38480. default: true
  38481. },
  38482. ]
  38483. ))
  38484. characterMakers.push(() => makeCharacter(
  38485. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38486. {
  38487. front: {
  38488. height: math.unit(6 + 3/12, "feet"),
  38489. name: "Front",
  38490. image: {
  38491. source: "./media/characters/silvy/front.svg",
  38492. extra: 1995/1836,
  38493. bottom: 225/2220
  38494. }
  38495. },
  38496. },
  38497. [
  38498. {
  38499. name: "Normal",
  38500. height: math.unit(6 + 3/12, "feet"),
  38501. default: true
  38502. },
  38503. ]
  38504. ))
  38505. characterMakers.push(() => makeCharacter(
  38506. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38507. {
  38508. front: {
  38509. height: math.unit(3 + 8/12, "feet"),
  38510. name: "Front",
  38511. image: {
  38512. source: "./media/characters/rodney/front.svg",
  38513. extra: 1956/1747,
  38514. bottom: 31/1987
  38515. }
  38516. },
  38517. frontDressed: {
  38518. height: math.unit(2.9, "feet"),
  38519. name: "Front (Dressed)",
  38520. image: {
  38521. source: "./media/characters/rodney/front-dressed.svg",
  38522. extra: 1382/1241,
  38523. bottom: 385/1767
  38524. }
  38525. },
  38526. },
  38527. [
  38528. {
  38529. name: "Normal",
  38530. height: math.unit(3 + 8/12, "feet"),
  38531. default: true
  38532. },
  38533. ]
  38534. ))
  38535. characterMakers.push(() => makeCharacter(
  38536. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38537. {
  38538. front: {
  38539. height: math.unit(5 + 9/12, "feet"),
  38540. weight: math.unit(194, "lbs"),
  38541. name: "Front",
  38542. image: {
  38543. source: "./media/characters/zakail-sudekai/front.svg",
  38544. extra: 2696/2533,
  38545. bottom: 248/2944
  38546. }
  38547. },
  38548. maw: {
  38549. height: math.unit(1.35, "feet"),
  38550. name: "Maw",
  38551. image: {
  38552. source: "./media/characters/zakail-sudekai/maw.svg"
  38553. }
  38554. },
  38555. },
  38556. [
  38557. {
  38558. name: "Normal",
  38559. height: math.unit(5 + 9/12, "feet"),
  38560. default: true
  38561. },
  38562. ]
  38563. ))
  38564. characterMakers.push(() => makeCharacter(
  38565. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38566. {
  38567. front: {
  38568. height: math.unit(8 + 4/12, "feet"),
  38569. weight: math.unit(1200, "lb"),
  38570. name: "Front",
  38571. image: {
  38572. source: "./media/characters/eleanor/front.svg",
  38573. extra: 1226/1192,
  38574. bottom: 52/1278
  38575. }
  38576. },
  38577. back: {
  38578. height: math.unit(8 + 4/12, "feet"),
  38579. weight: math.unit(1200, "lb"),
  38580. name: "Back",
  38581. image: {
  38582. source: "./media/characters/eleanor/back.svg",
  38583. extra: 1242/1184,
  38584. bottom: 60/1302
  38585. }
  38586. },
  38587. head: {
  38588. height: math.unit(2.62, "feet"),
  38589. name: "Head",
  38590. image: {
  38591. source: "./media/characters/eleanor/head.svg"
  38592. }
  38593. },
  38594. },
  38595. [
  38596. {
  38597. name: "Normal",
  38598. height: math.unit(8 + 4/12, "feet"),
  38599. default: true
  38600. },
  38601. ]
  38602. ))
  38603. characterMakers.push(() => makeCharacter(
  38604. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38605. {
  38606. front: {
  38607. height: math.unit(8 + 4/12, "feet"),
  38608. weight: math.unit(750, "lb"),
  38609. name: "Front",
  38610. image: {
  38611. source: "./media/characters/tanya/front.svg",
  38612. extra: 1749/1615,
  38613. bottom: 33/1782
  38614. }
  38615. },
  38616. },
  38617. [
  38618. {
  38619. name: "Normal",
  38620. height: math.unit(8 + 4/12, "feet"),
  38621. default: true
  38622. },
  38623. ]
  38624. ))
  38625. characterMakers.push(() => makeCharacter(
  38626. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38627. {
  38628. front: {
  38629. height: math.unit(5, "feet"),
  38630. weight: math.unit(225, "lb"),
  38631. name: "Front",
  38632. image: {
  38633. source: "./media/characters/cindy/front.svg",
  38634. extra: 1320/1250,
  38635. bottom: 42/1362
  38636. }
  38637. },
  38638. frontDressed: {
  38639. height: math.unit(5, "feet"),
  38640. weight: math.unit(225, "lb"),
  38641. name: "Front (Dressed)",
  38642. image: {
  38643. source: "./media/characters/cindy/front-dressed.svg",
  38644. extra: 1320/1250,
  38645. bottom: 42/1362
  38646. }
  38647. },
  38648. back: {
  38649. height: math.unit(5, "feet"),
  38650. weight: math.unit(225, "lb"),
  38651. name: "Back",
  38652. image: {
  38653. source: "./media/characters/cindy/back.svg",
  38654. extra: 1384/1346,
  38655. bottom: 14/1398
  38656. }
  38657. },
  38658. },
  38659. [
  38660. {
  38661. name: "Normal",
  38662. height: math.unit(5, "feet"),
  38663. default: true
  38664. },
  38665. ]
  38666. ))
  38667. characterMakers.push(() => makeCharacter(
  38668. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38669. {
  38670. front: {
  38671. height: math.unit(6 + 9/12, "feet"),
  38672. weight: math.unit(440, "lb"),
  38673. name: "Front",
  38674. image: {
  38675. source: "./media/characters/wilbur-owen/front.svg",
  38676. extra: 1575/1448,
  38677. bottom: 72/1647
  38678. }
  38679. },
  38680. back: {
  38681. height: math.unit(6 + 9/12, "feet"),
  38682. weight: math.unit(440, "lb"),
  38683. name: "Back",
  38684. image: {
  38685. source: "./media/characters/wilbur-owen/back.svg",
  38686. extra: 1578/1445,
  38687. bottom: 36/1614
  38688. }
  38689. },
  38690. },
  38691. [
  38692. {
  38693. name: "Normal",
  38694. height: math.unit(6 + 9/12, "feet"),
  38695. default: true
  38696. },
  38697. ]
  38698. ))
  38699. characterMakers.push(() => makeCharacter(
  38700. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38701. {
  38702. front: {
  38703. height: math.unit(6 + 5/12, "feet"),
  38704. weight: math.unit(650, "lb"),
  38705. name: "Front",
  38706. image: {
  38707. source: "./media/characters/keegan/front.svg",
  38708. extra: 2387/2198,
  38709. bottom: 33/2420
  38710. }
  38711. },
  38712. side: {
  38713. height: math.unit(6 + 5/12, "feet"),
  38714. weight: math.unit(650, "lb"),
  38715. name: "Side",
  38716. image: {
  38717. source: "./media/characters/keegan/side.svg",
  38718. extra: 2390/2202,
  38719. bottom: 47/2437
  38720. }
  38721. },
  38722. back: {
  38723. height: math.unit(6 + 5/12, "feet"),
  38724. weight: math.unit(650, "lb"),
  38725. name: "Back",
  38726. image: {
  38727. source: "./media/characters/keegan/back.svg",
  38728. extra: 2418/2268,
  38729. bottom: 15/2433
  38730. }
  38731. },
  38732. frontSfw: {
  38733. height: math.unit(6 + 5/12, "feet"),
  38734. weight: math.unit(650, "lb"),
  38735. name: "Front (SFW)",
  38736. image: {
  38737. source: "./media/characters/keegan/front-sfw.svg",
  38738. extra: 2387/2198,
  38739. bottom: 33/2420
  38740. }
  38741. },
  38742. beans: {
  38743. height: math.unit(1.85, "feet"),
  38744. name: "Beans",
  38745. image: {
  38746. source: "./media/characters/keegan/beans.svg"
  38747. }
  38748. },
  38749. },
  38750. [
  38751. {
  38752. name: "Normal",
  38753. height: math.unit(6 + 5/12, "feet"),
  38754. default: true
  38755. },
  38756. ]
  38757. ))
  38758. characterMakers.push(() => makeCharacter(
  38759. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38760. {
  38761. front: {
  38762. height: math.unit(9, "feet"),
  38763. name: "Front",
  38764. image: {
  38765. source: "./media/characters/colton/front.svg",
  38766. extra: 1589/1326,
  38767. bottom: 139/1728
  38768. }
  38769. },
  38770. },
  38771. [
  38772. {
  38773. name: "Normal",
  38774. height: math.unit(9, "feet"),
  38775. default: true
  38776. },
  38777. ]
  38778. ))
  38779. characterMakers.push(() => makeCharacter(
  38780. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38781. {
  38782. front: {
  38783. height: math.unit(2 + 9/12, "feet"),
  38784. name: "Front",
  38785. image: {
  38786. source: "./media/characters/bora/front.svg",
  38787. extra: 1265/1250,
  38788. bottom: 24/1289
  38789. }
  38790. },
  38791. },
  38792. [
  38793. {
  38794. name: "Normal",
  38795. height: math.unit(2 + 9/12, "feet"),
  38796. default: true
  38797. },
  38798. ]
  38799. ))
  38800. characterMakers.push(() => makeCharacter(
  38801. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38802. {
  38803. front: {
  38804. height: math.unit(8, "feet"),
  38805. name: "Front",
  38806. image: {
  38807. source: "./media/characters/myu-myu/front.svg",
  38808. extra: 1949/1857,
  38809. bottom: 90/2039
  38810. }
  38811. },
  38812. },
  38813. [
  38814. {
  38815. name: "Normal",
  38816. height: math.unit(8, "feet"),
  38817. default: true
  38818. },
  38819. {
  38820. name: "Big",
  38821. height: math.unit(15, "feet")
  38822. },
  38823. {
  38824. name: "BIG",
  38825. height: math.unit(25, "feet")
  38826. },
  38827. ]
  38828. ))
  38829. characterMakers.push(() => makeCharacter(
  38830. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38831. {
  38832. side: {
  38833. height: math.unit(7 + 5/12, "feet"),
  38834. weight: math.unit(2800, "lb"),
  38835. name: "Side",
  38836. image: {
  38837. source: "./media/characters/haloren/side.svg",
  38838. extra: 1793/409,
  38839. bottom: 59/1852
  38840. }
  38841. },
  38842. frontPaw: {
  38843. height: math.unit(2.36, "feet"),
  38844. name: "Front paw",
  38845. image: {
  38846. source: "./media/characters/haloren/front-paw.svg"
  38847. }
  38848. },
  38849. hindPaw: {
  38850. height: math.unit(3.18, "feet"),
  38851. name: "Hind paw",
  38852. image: {
  38853. source: "./media/characters/haloren/hind-paw.svg"
  38854. }
  38855. },
  38856. maw: {
  38857. height: math.unit(5.05, "feet"),
  38858. name: "Maw",
  38859. image: {
  38860. source: "./media/characters/haloren/maw.svg"
  38861. }
  38862. },
  38863. dick: {
  38864. height: math.unit(2.90, "feet"),
  38865. name: "Dick",
  38866. image: {
  38867. source: "./media/characters/haloren/dick.svg"
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Normal",
  38874. height: math.unit(7 + 5/12, "feet"),
  38875. default: true
  38876. },
  38877. {
  38878. name: "Enhanced",
  38879. height: math.unit(14 + 3/12, "feet")
  38880. },
  38881. ]
  38882. ))
  38883. characterMakers.push(() => makeCharacter(
  38884. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38885. {
  38886. front: {
  38887. height: math.unit(171, "cm"),
  38888. name: "Front",
  38889. image: {
  38890. source: "./media/characters/kimmy/front.svg",
  38891. extra: 1491/1435,
  38892. bottom: 53/1544
  38893. }
  38894. },
  38895. },
  38896. [
  38897. {
  38898. name: "Small",
  38899. height: math.unit(9, "cm")
  38900. },
  38901. {
  38902. name: "Normal",
  38903. height: math.unit(171, "cm"),
  38904. default: true
  38905. },
  38906. ]
  38907. ))
  38908. characterMakers.push(() => makeCharacter(
  38909. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38910. {
  38911. front: {
  38912. height: math.unit(8, "feet"),
  38913. weight: math.unit(300, "lb"),
  38914. name: "Front",
  38915. image: {
  38916. source: "./media/characters/galeboomer/front.svg",
  38917. extra: 4651/4415,
  38918. bottom: 162/4813
  38919. }
  38920. },
  38921. back: {
  38922. height: math.unit(8, "feet"),
  38923. weight: math.unit(300, "lb"),
  38924. name: "Back",
  38925. image: {
  38926. source: "./media/characters/galeboomer/back.svg",
  38927. extra: 4544/4314,
  38928. bottom: 16/4560
  38929. }
  38930. },
  38931. frontAlt: {
  38932. height: math.unit(8, "feet"),
  38933. weight: math.unit(300, "lb"),
  38934. name: "Front (Alt)",
  38935. image: {
  38936. source: "./media/characters/galeboomer/front-alt.svg",
  38937. extra: 4458/4228,
  38938. bottom: 68/4526
  38939. }
  38940. },
  38941. maw: {
  38942. height: math.unit(1.2, "feet"),
  38943. name: "Maw",
  38944. image: {
  38945. source: "./media/characters/galeboomer/maw.svg"
  38946. }
  38947. },
  38948. },
  38949. [
  38950. {
  38951. name: "Normal",
  38952. height: math.unit(8, "feet"),
  38953. default: true
  38954. },
  38955. ]
  38956. ))
  38957. characterMakers.push(() => makeCharacter(
  38958. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38959. {
  38960. front: {
  38961. height: math.unit(5 + 9/12, "feet"),
  38962. weight: math.unit(120, "lb"),
  38963. name: "Front",
  38964. image: {
  38965. source: "./media/characters/chyr/front.svg",
  38966. extra: 1323/1254,
  38967. bottom: 63/1386
  38968. }
  38969. },
  38970. back: {
  38971. height: math.unit(5 + 9/12, "feet"),
  38972. weight: math.unit(120, "lb"),
  38973. name: "Back",
  38974. image: {
  38975. source: "./media/characters/chyr/back.svg",
  38976. extra: 1323/1252,
  38977. bottom: 48/1371
  38978. }
  38979. },
  38980. },
  38981. [
  38982. {
  38983. name: "Normal",
  38984. height: math.unit(5 + 9/12, "feet"),
  38985. default: true
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(7, "feet"),
  38994. weight: math.unit(310, "lb"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/solarus/front.svg",
  38998. extra: 2415/2021,
  38999. bottom: 103/2518
  39000. }
  39001. },
  39002. back: {
  39003. height: math.unit(7, "feet"),
  39004. weight: math.unit(310, "lb"),
  39005. name: "Back",
  39006. image: {
  39007. source: "./media/characters/solarus/back.svg",
  39008. extra: 2463/2089,
  39009. bottom: 79/2542
  39010. }
  39011. },
  39012. },
  39013. [
  39014. {
  39015. name: "Normal",
  39016. height: math.unit(7, "feet"),
  39017. default: true
  39018. },
  39019. ]
  39020. ))
  39021. characterMakers.push(() => makeCharacter(
  39022. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39023. {
  39024. front: {
  39025. height: math.unit(16, "feet"),
  39026. name: "Front",
  39027. image: {
  39028. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39029. extra: 1844/1780,
  39030. bottom: 58/1902
  39031. }
  39032. },
  39033. winterCoat: {
  39034. height: math.unit(16, "feet"),
  39035. name: "Winter Coat",
  39036. image: {
  39037. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39038. extra: 1807/1775,
  39039. bottom: 69/1876
  39040. }
  39041. },
  39042. },
  39043. [
  39044. {
  39045. name: "Normal",
  39046. height: math.unit(16, "feet"),
  39047. default: true
  39048. },
  39049. {
  39050. name: "Chicago Size",
  39051. height: math.unit(560, "feet")
  39052. },
  39053. ]
  39054. ))
  39055. characterMakers.push(() => makeCharacter(
  39056. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39057. {
  39058. front: {
  39059. height: math.unit(11 + 6/12, "feet"),
  39060. weight: math.unit(1366, "lb"),
  39061. name: "Front",
  39062. image: {
  39063. source: "./media/characters/lexor/front.svg",
  39064. extra: 1560/1481,
  39065. bottom: 211/1771
  39066. }
  39067. },
  39068. back: {
  39069. height: math.unit(11 + 6/12, "feet"),
  39070. weight: math.unit(1366, "lb"),
  39071. name: "Back",
  39072. image: {
  39073. source: "./media/characters/lexor/back.svg",
  39074. extra: 1614/1533,
  39075. bottom: 76/1690
  39076. }
  39077. },
  39078. maw: {
  39079. height: math.unit(3, "feet"),
  39080. name: "Maw",
  39081. image: {
  39082. source: "./media/characters/lexor/maw.svg"
  39083. }
  39084. },
  39085. dick: {
  39086. height: math.unit(2.59, "feet"),
  39087. name: "Dick",
  39088. image: {
  39089. source: "./media/characters/lexor/dick.svg"
  39090. }
  39091. },
  39092. },
  39093. [
  39094. {
  39095. name: "Normal",
  39096. height: math.unit(11 + 6/12, "feet"),
  39097. default: true
  39098. },
  39099. ]
  39100. ))
  39101. characterMakers.push(() => makeCharacter(
  39102. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39103. {
  39104. front: {
  39105. height: math.unit(5 + 8/12, "feet"),
  39106. name: "Front",
  39107. image: {
  39108. source: "./media/characters/magnum/front.svg",
  39109. extra: 942/855,
  39110. bottom: 26/968
  39111. }
  39112. },
  39113. },
  39114. [
  39115. {
  39116. name: "Normal",
  39117. height: math.unit(5 + 8/12, "feet"),
  39118. default: true
  39119. },
  39120. ]
  39121. ))
  39122. characterMakers.push(() => makeCharacter(
  39123. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39124. {
  39125. front: {
  39126. height: math.unit(18 + 4/12, "feet"),
  39127. weight: math.unit(1500, "kg"),
  39128. name: "Front",
  39129. image: {
  39130. source: "./media/characters/solas-sharpsman/front.svg",
  39131. extra: 1698/1589,
  39132. bottom: 0/1698
  39133. }
  39134. },
  39135. },
  39136. [
  39137. {
  39138. name: "Normal",
  39139. height: math.unit(18 + 4/12, "feet"),
  39140. default: true
  39141. },
  39142. ]
  39143. ))
  39144. characterMakers.push(() => makeCharacter(
  39145. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39146. {
  39147. front: {
  39148. height: math.unit(5 + 5/12, "feet"),
  39149. weight: math.unit(180, "lb"),
  39150. name: "Front",
  39151. image: {
  39152. source: "./media/characters/october/front.svg",
  39153. extra: 1800/1650,
  39154. bottom: 0/1800
  39155. }
  39156. },
  39157. frontNsfw: {
  39158. height: math.unit(5 + 5/12, "feet"),
  39159. weight: math.unit(180, "lb"),
  39160. name: "Front (NSFW)",
  39161. image: {
  39162. source: "./media/characters/october/front-nsfw.svg",
  39163. extra: 1392/1307,
  39164. bottom: 42/1434
  39165. }
  39166. },
  39167. },
  39168. [
  39169. {
  39170. name: "Normal",
  39171. height: math.unit(5 + 5/12, "feet"),
  39172. default: true
  39173. },
  39174. ]
  39175. ))
  39176. characterMakers.push(() => makeCharacter(
  39177. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39178. {
  39179. front: {
  39180. height: math.unit(8 + 6/12, "feet"),
  39181. name: "Front",
  39182. image: {
  39183. source: "./media/characters/essynkardi/front.svg",
  39184. extra: 1541/1457,
  39185. bottom: 47/1588
  39186. }
  39187. },
  39188. },
  39189. [
  39190. {
  39191. name: "Normal",
  39192. height: math.unit(8 + 6/12, "feet"),
  39193. default: true
  39194. },
  39195. ]
  39196. ))
  39197. characterMakers.push(() => makeCharacter(
  39198. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39199. {
  39200. front: {
  39201. height: math.unit(6 + 6/12, "feet"),
  39202. weight: math.unit(7, "lb"),
  39203. name: "Front",
  39204. image: {
  39205. source: "./media/characters/icky/front.svg",
  39206. extra: 813/782,
  39207. bottom: 66/879
  39208. }
  39209. },
  39210. back: {
  39211. height: math.unit(6 + 6/12, "feet"),
  39212. weight: math.unit(7, "lb"),
  39213. name: "Back",
  39214. image: {
  39215. source: "./media/characters/icky/back.svg",
  39216. extra: 754/735,
  39217. bottom: 56/810
  39218. }
  39219. },
  39220. },
  39221. [
  39222. {
  39223. name: "Normal",
  39224. height: math.unit(6 + 6/12, "feet"),
  39225. default: true
  39226. },
  39227. ]
  39228. ))
  39229. characterMakers.push(() => makeCharacter(
  39230. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39231. {
  39232. front: {
  39233. height: math.unit(15, "feet"),
  39234. name: "Front",
  39235. image: {
  39236. source: "./media/characters/rojas/front.svg",
  39237. extra: 1462/1408,
  39238. bottom: 95/1557
  39239. }
  39240. },
  39241. back: {
  39242. height: math.unit(15, "feet"),
  39243. name: "Back",
  39244. image: {
  39245. source: "./media/characters/rojas/back.svg",
  39246. extra: 1023/954,
  39247. bottom: 28/1051
  39248. }
  39249. },
  39250. },
  39251. [
  39252. {
  39253. name: "Normal",
  39254. height: math.unit(15, "feet"),
  39255. default: true
  39256. },
  39257. ]
  39258. ))
  39259. characterMakers.push(() => makeCharacter(
  39260. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39261. {
  39262. frontHuman: {
  39263. height: math.unit(5 + 7/12, "feet"),
  39264. name: "Front (Human)",
  39265. image: {
  39266. source: "./media/characters/alek-dryagan/front-human.svg",
  39267. extra: 1687/1667,
  39268. bottom: 69/1756
  39269. }
  39270. },
  39271. backHuman: {
  39272. height: math.unit(5 + 7/12, "feet"),
  39273. name: "Back (Human)",
  39274. image: {
  39275. source: "./media/characters/alek-dryagan/back-human.svg",
  39276. extra: 1670/1649,
  39277. bottom: 65/1735
  39278. }
  39279. },
  39280. frontDemi: {
  39281. height: math.unit(65, "feet"),
  39282. name: "Front (Demi)",
  39283. image: {
  39284. source: "./media/characters/alek-dryagan/front-demi.svg",
  39285. extra: 1669/1642,
  39286. bottom: 49/1718
  39287. }
  39288. },
  39289. backDemi: {
  39290. height: math.unit(65, "feet"),
  39291. name: "Back (Demi)",
  39292. image: {
  39293. source: "./media/characters/alek-dryagan/back-demi.svg",
  39294. extra: 1658/1637,
  39295. bottom: 40/1698
  39296. }
  39297. },
  39298. mawHuman: {
  39299. height: math.unit(0.3, "feet"),
  39300. name: "Maw (Human)",
  39301. image: {
  39302. source: "./media/characters/alek-dryagan/maw-human.svg"
  39303. }
  39304. },
  39305. mawDemi: {
  39306. height: math.unit(3.8, "feet"),
  39307. name: "Maw (Demi)",
  39308. image: {
  39309. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39310. }
  39311. },
  39312. },
  39313. [
  39314. {
  39315. name: "Normal",
  39316. height: math.unit(5 + 7/12, "feet"),
  39317. default: true
  39318. },
  39319. ]
  39320. ))
  39321. characterMakers.push(() => makeCharacter(
  39322. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39323. {
  39324. frontHuman: {
  39325. height: math.unit(5 + 2/12, "feet"),
  39326. name: "Front (Human)",
  39327. image: {
  39328. source: "./media/characters/gen/front-human.svg",
  39329. extra: 1627/1538,
  39330. bottom: 71/1698
  39331. }
  39332. },
  39333. backHuman: {
  39334. height: math.unit(5 + 2/12, "feet"),
  39335. name: "Back (Human)",
  39336. image: {
  39337. source: "./media/characters/gen/back-human.svg",
  39338. extra: 1638/1548,
  39339. bottom: 69/1707
  39340. }
  39341. },
  39342. frontDemi: {
  39343. height: math.unit(5 + 2/12, "feet"),
  39344. name: "Front (Demi)",
  39345. image: {
  39346. source: "./media/characters/gen/front-demi.svg",
  39347. extra: 1627/1538,
  39348. bottom: 71/1698
  39349. }
  39350. },
  39351. backDemi: {
  39352. height: math.unit(5 + 2/12, "feet"),
  39353. name: "Back (Demi)",
  39354. image: {
  39355. source: "./media/characters/gen/back-demi.svg",
  39356. extra: 1638/1548,
  39357. bottom: 69/1707
  39358. }
  39359. },
  39360. },
  39361. [
  39362. {
  39363. name: "Normal",
  39364. height: math.unit(5 + 2/12, "feet"),
  39365. default: true
  39366. },
  39367. ]
  39368. ))
  39369. characterMakers.push(() => makeCharacter(
  39370. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39371. {
  39372. frontImp: {
  39373. height: math.unit(1 + 11/12, "feet"),
  39374. name: "Front (Imp)",
  39375. image: {
  39376. source: "./media/characters/max-kobold/front-imp.svg",
  39377. extra: 1238/1134,
  39378. bottom: 81/1319
  39379. }
  39380. },
  39381. backImp: {
  39382. height: math.unit(1 + 11/12, "feet"),
  39383. name: "Back (Imp)",
  39384. image: {
  39385. source: "./media/characters/max-kobold/back-imp.svg",
  39386. extra: 1334/1175,
  39387. bottom: 34/1368
  39388. }
  39389. },
  39390. frontDemi: {
  39391. height: math.unit(5 + 9/12, "feet"),
  39392. name: "Front (Demi)",
  39393. image: {
  39394. source: "./media/characters/max-kobold/front-demi.svg",
  39395. extra: 1715/1685,
  39396. bottom: 54/1769
  39397. }
  39398. },
  39399. backDemi: {
  39400. height: math.unit(5 + 9/12, "feet"),
  39401. name: "Back (Demi)",
  39402. image: {
  39403. source: "./media/characters/max-kobold/back-demi.svg",
  39404. extra: 1752/1729,
  39405. bottom: 41/1793
  39406. }
  39407. },
  39408. handImp: {
  39409. height: math.unit(0.45, "feet"),
  39410. name: "Hand (Imp)",
  39411. image: {
  39412. source: "./media/characters/max-kobold/hand.svg"
  39413. }
  39414. },
  39415. pawImp: {
  39416. height: math.unit(0.46, "feet"),
  39417. name: "Paw (Imp)",
  39418. image: {
  39419. source: "./media/characters/max-kobold/paw.svg"
  39420. }
  39421. },
  39422. handDemi: {
  39423. height: math.unit(0.80, "feet"),
  39424. name: "Hand (Demi)",
  39425. image: {
  39426. source: "./media/characters/max-kobold/hand.svg"
  39427. }
  39428. },
  39429. pawDemi: {
  39430. height: math.unit(1.1, "feet"),
  39431. name: "Paw (Demi)",
  39432. image: {
  39433. source: "./media/characters/max-kobold/paw.svg"
  39434. }
  39435. },
  39436. headImp: {
  39437. height: math.unit(1.33, "feet"),
  39438. name: "Head (Imp)",
  39439. image: {
  39440. source: "./media/characters/max-kobold/head-imp.svg"
  39441. }
  39442. },
  39443. mawImp: {
  39444. height: math.unit(0.75, "feet"),
  39445. name: "Maw (Imp)",
  39446. image: {
  39447. source: "./media/characters/max-kobold/maw-imp.svg"
  39448. }
  39449. },
  39450. mawDemi: {
  39451. height: math.unit(0.42, "feet"),
  39452. name: "Maw (Demi)",
  39453. image: {
  39454. source: "./media/characters/max-kobold/maw-demi.svg"
  39455. }
  39456. },
  39457. },
  39458. [
  39459. {
  39460. name: "Normal",
  39461. height: math.unit(1 + 11/12, "feet"),
  39462. default: true
  39463. },
  39464. ]
  39465. ))
  39466. characterMakers.push(() => makeCharacter(
  39467. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39468. {
  39469. front: {
  39470. height: math.unit(7 + 5/12, "feet"),
  39471. name: "Front",
  39472. image: {
  39473. source: "./media/characters/carbon/front.svg",
  39474. extra: 1754/1689,
  39475. bottom: 65/1819
  39476. }
  39477. },
  39478. back: {
  39479. height: math.unit(7 + 5/12, "feet"),
  39480. name: "Back",
  39481. image: {
  39482. source: "./media/characters/carbon/back.svg",
  39483. extra: 1762/1695,
  39484. bottom: 24/1786
  39485. }
  39486. },
  39487. frontGigantamax: {
  39488. height: math.unit(150, "feet"),
  39489. name: "Front (Gigantamax)",
  39490. image: {
  39491. source: "./media/characters/carbon/front-gigantamax.svg",
  39492. extra: 1826/1669,
  39493. bottom: 59/1885
  39494. }
  39495. },
  39496. backGigantamax: {
  39497. height: math.unit(150, "feet"),
  39498. name: "Back (Gigantamax)",
  39499. image: {
  39500. source: "./media/characters/carbon/back-gigantamax.svg",
  39501. extra: 1796/1653,
  39502. bottom: 53/1849
  39503. }
  39504. },
  39505. maw: {
  39506. height: math.unit(0.48, "feet"),
  39507. name: "Maw",
  39508. image: {
  39509. source: "./media/characters/carbon/maw.svg"
  39510. }
  39511. },
  39512. mawGigantamax: {
  39513. height: math.unit(7.5, "feet"),
  39514. name: "Maw (Gigantamax)",
  39515. image: {
  39516. source: "./media/characters/carbon/maw-gigantamax.svg"
  39517. }
  39518. },
  39519. },
  39520. [
  39521. {
  39522. name: "Normal",
  39523. height: math.unit(7 + 5/12, "feet"),
  39524. default: true
  39525. },
  39526. ]
  39527. ))
  39528. characterMakers.push(() => makeCharacter(
  39529. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39530. {
  39531. front: {
  39532. height: math.unit(6, "feet"),
  39533. name: "Front",
  39534. image: {
  39535. source: "./media/characters/maverick/front.svg",
  39536. extra: 1672/1661,
  39537. bottom: 85/1757
  39538. }
  39539. },
  39540. back: {
  39541. height: math.unit(6, "feet"),
  39542. name: "Back",
  39543. image: {
  39544. source: "./media/characters/maverick/back.svg",
  39545. extra: 1642/1631,
  39546. bottom: 38/1680
  39547. }
  39548. },
  39549. },
  39550. [
  39551. {
  39552. name: "Normal",
  39553. height: math.unit(6, "feet"),
  39554. default: true
  39555. },
  39556. ]
  39557. ))
  39558. characterMakers.push(() => makeCharacter(
  39559. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39560. {
  39561. front: {
  39562. height: math.unit(15, "feet"),
  39563. weight: math.unit(615, "lb"),
  39564. name: "Front",
  39565. image: {
  39566. source: "./media/characters/grockle/front.svg",
  39567. extra: 1535/1427,
  39568. bottom: 56/1591
  39569. }
  39570. },
  39571. },
  39572. [
  39573. {
  39574. name: "Normal",
  39575. height: math.unit(15, "feet"),
  39576. default: true
  39577. },
  39578. {
  39579. name: "Large",
  39580. height: math.unit(150, "feet")
  39581. },
  39582. {
  39583. name: "Macro",
  39584. height: math.unit(1876, "feet")
  39585. },
  39586. {
  39587. name: "Mega Macro",
  39588. height: math.unit(121940, "feet")
  39589. },
  39590. {
  39591. name: "Giga Macro",
  39592. height: math.unit(750, "km")
  39593. },
  39594. {
  39595. name: "Tera Macro",
  39596. height: math.unit(750000, "km")
  39597. },
  39598. {
  39599. name: "Galactic",
  39600. height: math.unit(1.4e5, "km")
  39601. },
  39602. {
  39603. name: "Godlike",
  39604. height: math.unit(9.8e280, "galaxies")
  39605. },
  39606. ]
  39607. ))
  39608. characterMakers.push(() => makeCharacter(
  39609. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39610. {
  39611. front: {
  39612. height: math.unit(11, "meters"),
  39613. weight: math.unit(20, "tonnes"),
  39614. name: "Front",
  39615. image: {
  39616. source: "./media/characters/alistair/front.svg",
  39617. extra: 1265/1009,
  39618. bottom: 93/1358
  39619. }
  39620. },
  39621. },
  39622. [
  39623. {
  39624. name: "Normal",
  39625. height: math.unit(11, "meters"),
  39626. default: true
  39627. },
  39628. ]
  39629. ))
  39630. characterMakers.push(() => makeCharacter(
  39631. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39632. {
  39633. front: {
  39634. height: math.unit(5 + 8/12, "feet"),
  39635. name: "Front",
  39636. image: {
  39637. source: "./media/characters/haruka/front.svg",
  39638. extra: 2012/1952,
  39639. bottom: 0/2012
  39640. }
  39641. },
  39642. },
  39643. [
  39644. {
  39645. name: "Normal",
  39646. height: math.unit(5 + 8/12, "feet"),
  39647. default: true
  39648. },
  39649. ]
  39650. ))
  39651. characterMakers.push(() => makeCharacter(
  39652. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39653. {
  39654. back: {
  39655. height: math.unit(9, "feet"),
  39656. name: "Back",
  39657. image: {
  39658. source: "./media/characters/vivian-sylveon/back.svg",
  39659. extra: 1853/1714,
  39660. bottom: 0/1853
  39661. }
  39662. },
  39663. },
  39664. [
  39665. {
  39666. name: "Normal",
  39667. height: math.unit(9, "feet"),
  39668. default: true
  39669. },
  39670. {
  39671. name: "Macro",
  39672. height: math.unit(500, "feet")
  39673. },
  39674. {
  39675. name: "Megamacro",
  39676. height: math.unit(600, "miles")
  39677. },
  39678. {
  39679. name: "Gigamacro",
  39680. height: math.unit(30000, "miles")
  39681. },
  39682. ]
  39683. ))
  39684. characterMakers.push(() => makeCharacter(
  39685. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39686. {
  39687. anthro: {
  39688. height: math.unit(5 + 10/12, "feet"),
  39689. weight: math.unit(100, "lb"),
  39690. name: "Anthro",
  39691. image: {
  39692. source: "./media/characters/daiki/anthro.svg",
  39693. extra: 1115/1027,
  39694. bottom: 69/1184
  39695. }
  39696. },
  39697. feral: {
  39698. height: math.unit(200, "feet"),
  39699. name: "Feral",
  39700. image: {
  39701. source: "./media/characters/daiki/feral.svg",
  39702. extra: 1256/313,
  39703. bottom: 39/1295
  39704. }
  39705. },
  39706. feralHead: {
  39707. height: math.unit(171, "feet"),
  39708. name: "Feral Head",
  39709. image: {
  39710. source: "./media/characters/daiki/feral-head.svg"
  39711. }
  39712. },
  39713. manaDragon: {
  39714. height: math.unit(170, "meters"),
  39715. name: "Mana-dragon",
  39716. image: {
  39717. source: "./media/characters/daiki/mana-dragon.svg",
  39718. extra: 763/420,
  39719. bottom: 97/860
  39720. }
  39721. },
  39722. },
  39723. [
  39724. {
  39725. name: "Normal",
  39726. height: math.unit(5 + 10/12, "feet"),
  39727. default: true
  39728. },
  39729. ]
  39730. ))
  39731. characterMakers.push(() => makeCharacter(
  39732. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39733. {
  39734. fullyEquippedFront: {
  39735. height: math.unit(3 + 1/12, "feet"),
  39736. weight: math.unit(24, "lb"),
  39737. name: "Fully Equipped (Front)",
  39738. image: {
  39739. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39740. extra: 687/605,
  39741. bottom: 18/705
  39742. }
  39743. },
  39744. fullyEquippedBack: {
  39745. height: math.unit(3 + 1/12, "feet"),
  39746. weight: math.unit(24, "lb"),
  39747. name: "Fully Equipped (Back)",
  39748. image: {
  39749. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39750. extra: 689/590,
  39751. bottom: 18/707
  39752. }
  39753. },
  39754. dailyWear: {
  39755. height: math.unit(3 + 1/12, "feet"),
  39756. weight: math.unit(24, "lb"),
  39757. name: "Daily Wear",
  39758. image: {
  39759. source: "./media/characters/tea-spot/daily-wear.svg",
  39760. extra: 701/620,
  39761. bottom: 21/722
  39762. }
  39763. },
  39764. maidWork: {
  39765. height: math.unit(3 + 1/12, "feet"),
  39766. weight: math.unit(24, "lb"),
  39767. name: "Maid Work",
  39768. image: {
  39769. source: "./media/characters/tea-spot/maid-work.svg",
  39770. extra: 693/609,
  39771. bottom: 15/708
  39772. }
  39773. },
  39774. },
  39775. [
  39776. {
  39777. name: "Normal",
  39778. height: math.unit(3 + 1/12, "feet"),
  39779. default: true
  39780. },
  39781. ]
  39782. ))
  39783. characterMakers.push(() => makeCharacter(
  39784. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39785. {
  39786. front: {
  39787. height: math.unit(175, "cm"),
  39788. weight: math.unit(75, "kg"),
  39789. name: "Front",
  39790. image: {
  39791. source: "./media/characters/chee/front.svg",
  39792. extra: 1796/1740,
  39793. bottom: 40/1836
  39794. }
  39795. },
  39796. },
  39797. [
  39798. {
  39799. name: "Micro-Micro",
  39800. height: math.unit(1, "nm")
  39801. },
  39802. {
  39803. name: "Micro-erst",
  39804. height: math.unit(1, "micrometer")
  39805. },
  39806. {
  39807. name: "Micro-er",
  39808. height: math.unit(1, "cm")
  39809. },
  39810. {
  39811. name: "Normal",
  39812. height: math.unit(175, "cm"),
  39813. default: true
  39814. },
  39815. {
  39816. name: "Macro",
  39817. height: math.unit(100, "m")
  39818. },
  39819. {
  39820. name: "Macro-er",
  39821. height: math.unit(1, "km")
  39822. },
  39823. {
  39824. name: "Macro-erst",
  39825. height: math.unit(10, "km")
  39826. },
  39827. {
  39828. name: "Macro-Macro",
  39829. height: math.unit(100, "km")
  39830. },
  39831. ]
  39832. ))
  39833. characterMakers.push(() => makeCharacter(
  39834. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39835. {
  39836. front: {
  39837. height: math.unit(11 + 9/12, "feet"),
  39838. weight: math.unit(935, "lb"),
  39839. name: "Front",
  39840. image: {
  39841. source: "./media/characters/kingsley/front.svg",
  39842. extra: 1803/1674,
  39843. bottom: 127/1930
  39844. }
  39845. },
  39846. frontNude: {
  39847. height: math.unit(11 + 9/12, "feet"),
  39848. weight: math.unit(935, "lb"),
  39849. name: "Front (Nude)",
  39850. image: {
  39851. source: "./media/characters/kingsley/front-nude.svg",
  39852. extra: 1803/1674,
  39853. bottom: 127/1930
  39854. }
  39855. },
  39856. },
  39857. [
  39858. {
  39859. name: "Normal",
  39860. height: math.unit(11 + 9/12, "feet"),
  39861. default: true
  39862. },
  39863. ]
  39864. ))
  39865. characterMakers.push(() => makeCharacter(
  39866. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39867. {
  39868. side: {
  39869. height: math.unit(9, "feet"),
  39870. name: "Side",
  39871. image: {
  39872. source: "./media/characters/rymel/side.svg",
  39873. extra: 792/469,
  39874. bottom: 121/913
  39875. }
  39876. },
  39877. maw: {
  39878. height: math.unit(2.4, "meters"),
  39879. name: "Maw",
  39880. image: {
  39881. source: "./media/characters/rymel/maw.svg"
  39882. }
  39883. },
  39884. },
  39885. [
  39886. {
  39887. name: "House Drake",
  39888. height: math.unit(2, "feet")
  39889. },
  39890. {
  39891. name: "Reduced",
  39892. height: math.unit(4.5, "feet")
  39893. },
  39894. {
  39895. name: "Normal",
  39896. height: math.unit(9, "feet"),
  39897. default: true
  39898. },
  39899. ]
  39900. ))
  39901. characterMakers.push(() => makeCharacter(
  39902. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39903. {
  39904. front: {
  39905. height: math.unit(1.74, "meters"),
  39906. weight: math.unit(55, "kg"),
  39907. name: "Front",
  39908. image: {
  39909. source: "./media/characters/rubus/front.svg",
  39910. extra: 1894/1742,
  39911. bottom: 44/1938
  39912. }
  39913. },
  39914. },
  39915. [
  39916. {
  39917. name: "Normal",
  39918. height: math.unit(1.74, "meters"),
  39919. default: true
  39920. },
  39921. ]
  39922. ))
  39923. characterMakers.push(() => makeCharacter(
  39924. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39925. {
  39926. front: {
  39927. height: math.unit(5 + 2/12, "feet"),
  39928. weight: math.unit(112, "lb"),
  39929. name: "Front",
  39930. image: {
  39931. source: "./media/characters/cassie-kingston/front.svg",
  39932. extra: 1438/1390,
  39933. bottom: 47/1485
  39934. }
  39935. },
  39936. },
  39937. [
  39938. {
  39939. name: "Normal",
  39940. height: math.unit(5 + 2/12, "feet"),
  39941. default: true
  39942. },
  39943. {
  39944. name: "Macro",
  39945. height: math.unit(128, "feet")
  39946. },
  39947. {
  39948. name: "Megamacro",
  39949. height: math.unit(2.56, "miles")
  39950. },
  39951. ]
  39952. ))
  39953. characterMakers.push(() => makeCharacter(
  39954. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39955. {
  39956. front: {
  39957. height: math.unit(7, "feet"),
  39958. name: "Front",
  39959. image: {
  39960. source: "./media/characters/fox/front.svg",
  39961. extra: 1798/1703,
  39962. bottom: 55/1853
  39963. }
  39964. },
  39965. back: {
  39966. height: math.unit(7, "feet"),
  39967. name: "Back",
  39968. image: {
  39969. source: "./media/characters/fox/back.svg",
  39970. extra: 1748/1649,
  39971. bottom: 32/1780
  39972. }
  39973. },
  39974. head: {
  39975. height: math.unit(1.95, "feet"),
  39976. name: "Head",
  39977. image: {
  39978. source: "./media/characters/fox/head.svg"
  39979. }
  39980. },
  39981. dick: {
  39982. height: math.unit(1.33, "feet"),
  39983. name: "Dick",
  39984. image: {
  39985. source: "./media/characters/fox/dick.svg"
  39986. }
  39987. },
  39988. foot: {
  39989. height: math.unit(1, "feet"),
  39990. name: "Foot",
  39991. image: {
  39992. source: "./media/characters/fox/foot.svg"
  39993. }
  39994. },
  39995. paw: {
  39996. height: math.unit(0.92, "feet"),
  39997. name: "Paw",
  39998. image: {
  39999. source: "./media/characters/fox/paw.svg"
  40000. }
  40001. },
  40002. },
  40003. [
  40004. {
  40005. name: "Small",
  40006. height: math.unit(3, "inches")
  40007. },
  40008. {
  40009. name: "\"Realistic\"",
  40010. height: math.unit(7, "feet")
  40011. },
  40012. {
  40013. name: "Normal",
  40014. height: math.unit(150, "feet"),
  40015. default: true
  40016. },
  40017. {
  40018. name: "BIG",
  40019. height: math.unit(1200, "feet")
  40020. },
  40021. {
  40022. name: "👀",
  40023. height: math.unit(5, "miles")
  40024. },
  40025. {
  40026. name: "👀👀👀",
  40027. height: math.unit(64, "miles")
  40028. },
  40029. ]
  40030. ))
  40031. characterMakers.push(() => makeCharacter(
  40032. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40033. {
  40034. front: {
  40035. height: math.unit(625, "feet"),
  40036. name: "Front",
  40037. image: {
  40038. source: "./media/characters/asonja-rossa/front.svg",
  40039. extra: 1833/1686,
  40040. bottom: 24/1857
  40041. }
  40042. },
  40043. back: {
  40044. height: math.unit(625, "feet"),
  40045. name: "Back",
  40046. image: {
  40047. source: "./media/characters/asonja-rossa/back.svg",
  40048. extra: 1852/1753,
  40049. bottom: 26/1878
  40050. }
  40051. },
  40052. },
  40053. [
  40054. {
  40055. name: "Macro",
  40056. height: math.unit(625, "feet"),
  40057. default: true
  40058. },
  40059. ]
  40060. ))
  40061. characterMakers.push(() => makeCharacter(
  40062. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40063. {
  40064. side: {
  40065. height: math.unit(8, "feet"),
  40066. name: "Side",
  40067. image: {
  40068. source: "./media/characters/rezukii/side.svg",
  40069. extra: 979/542,
  40070. bottom: 87/1066
  40071. }
  40072. },
  40073. sitting: {
  40074. height: math.unit(14.6, "feet"),
  40075. name: "Sitting",
  40076. image: {
  40077. source: "./media/characters/rezukii/sitting.svg",
  40078. extra: 1023/813,
  40079. bottom: 45/1068
  40080. }
  40081. },
  40082. },
  40083. [
  40084. {
  40085. name: "Tiny",
  40086. height: math.unit(2, "feet")
  40087. },
  40088. {
  40089. name: "Smol",
  40090. height: math.unit(4, "feet")
  40091. },
  40092. {
  40093. name: "Normal",
  40094. height: math.unit(8, "feet"),
  40095. default: true
  40096. },
  40097. {
  40098. name: "Big",
  40099. height: math.unit(12, "feet")
  40100. },
  40101. {
  40102. name: "Macro",
  40103. height: math.unit(30, "feet")
  40104. },
  40105. ]
  40106. ))
  40107. characterMakers.push(() => makeCharacter(
  40108. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40109. {
  40110. front: {
  40111. height: math.unit(14, "feet"),
  40112. weight: math.unit(9.5, "tonnes"),
  40113. name: "Front",
  40114. image: {
  40115. source: "./media/characters/dawnheart/front.svg",
  40116. extra: 2792/2675,
  40117. bottom: 64/2856
  40118. }
  40119. },
  40120. },
  40121. [
  40122. {
  40123. name: "Normal",
  40124. height: math.unit(14, "feet"),
  40125. default: true
  40126. },
  40127. ]
  40128. ))
  40129. characterMakers.push(() => makeCharacter(
  40130. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40131. {
  40132. front: {
  40133. height: math.unit(1.7, "m"),
  40134. name: "Front",
  40135. image: {
  40136. source: "./media/characters/gladi/front.svg",
  40137. extra: 1460/1362,
  40138. bottom: 19/1479
  40139. }
  40140. },
  40141. back: {
  40142. height: math.unit(1.7, "m"),
  40143. name: "Back",
  40144. image: {
  40145. source: "./media/characters/gladi/back.svg",
  40146. extra: 1459/1357,
  40147. bottom: 12/1471
  40148. }
  40149. },
  40150. feral: {
  40151. height: math.unit(2.05, "m"),
  40152. name: "Feral",
  40153. image: {
  40154. source: "./media/characters/gladi/feral.svg",
  40155. extra: 821/557,
  40156. bottom: 91/912
  40157. }
  40158. },
  40159. },
  40160. [
  40161. {
  40162. name: "Shortest",
  40163. height: math.unit(70, "cm")
  40164. },
  40165. {
  40166. name: "Normal",
  40167. height: math.unit(1.7, "m")
  40168. },
  40169. {
  40170. name: "Macro",
  40171. height: math.unit(10, "m"),
  40172. default: true
  40173. },
  40174. {
  40175. name: "Tallest",
  40176. height: math.unit(200, "m")
  40177. },
  40178. ]
  40179. ))
  40180. characterMakers.push(() => makeCharacter(
  40181. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40182. {
  40183. front: {
  40184. height: math.unit(5 + 7/12, "feet"),
  40185. weight: math.unit(2, "tons"),
  40186. name: "Front",
  40187. image: {
  40188. source: "./media/characters/erdno/front.svg",
  40189. extra: 1234/1129,
  40190. bottom: 35/1269
  40191. }
  40192. },
  40193. angled: {
  40194. height: math.unit(5 + 7/12, "feet"),
  40195. weight: math.unit(2, "tons"),
  40196. name: "Angled",
  40197. image: {
  40198. source: "./media/characters/erdno/angled.svg",
  40199. extra: 1185/1139,
  40200. bottom: 36/1221
  40201. }
  40202. },
  40203. side: {
  40204. height: math.unit(5 + 7/12, "feet"),
  40205. weight: math.unit(2, "tons"),
  40206. name: "Side",
  40207. image: {
  40208. source: "./media/characters/erdno/side.svg",
  40209. extra: 1191/1144,
  40210. bottom: 40/1231
  40211. }
  40212. },
  40213. back: {
  40214. height: math.unit(5 + 7/12, "feet"),
  40215. weight: math.unit(2, "tons"),
  40216. name: "Back",
  40217. image: {
  40218. source: "./media/characters/erdno/back.svg",
  40219. extra: 1202/1146,
  40220. bottom: 17/1219
  40221. }
  40222. },
  40223. frontNsfw: {
  40224. height: math.unit(5 + 7/12, "feet"),
  40225. weight: math.unit(2, "tons"),
  40226. name: "Front (NSFW)",
  40227. image: {
  40228. source: "./media/characters/erdno/front-nsfw.svg",
  40229. extra: 1234/1129,
  40230. bottom: 35/1269
  40231. }
  40232. },
  40233. angledNsfw: {
  40234. height: math.unit(5 + 7/12, "feet"),
  40235. weight: math.unit(2, "tons"),
  40236. name: "Angled (NSFW)",
  40237. image: {
  40238. source: "./media/characters/erdno/angled-nsfw.svg",
  40239. extra: 1185/1139,
  40240. bottom: 36/1221
  40241. }
  40242. },
  40243. sideNsfw: {
  40244. height: math.unit(5 + 7/12, "feet"),
  40245. weight: math.unit(2, "tons"),
  40246. name: "Side (NSFW)",
  40247. image: {
  40248. source: "./media/characters/erdno/side-nsfw.svg",
  40249. extra: 1191/1144,
  40250. bottom: 40/1231
  40251. }
  40252. },
  40253. backNsfw: {
  40254. height: math.unit(5 + 7/12, "feet"),
  40255. weight: math.unit(2, "tons"),
  40256. name: "Back (NSFW)",
  40257. image: {
  40258. source: "./media/characters/erdno/back-nsfw.svg",
  40259. extra: 1202/1146,
  40260. bottom: 17/1219
  40261. }
  40262. },
  40263. frontHyper: {
  40264. height: math.unit(5 + 7/12, "feet"),
  40265. weight: math.unit(2, "tons"),
  40266. name: "Front (Hyper)",
  40267. image: {
  40268. source: "./media/characters/erdno/front-hyper.svg",
  40269. extra: 1298/1136,
  40270. bottom: 35/1333
  40271. }
  40272. },
  40273. },
  40274. [
  40275. {
  40276. name: "Normal",
  40277. height: math.unit(5 + 7/12, "feet"),
  40278. default: true
  40279. },
  40280. {
  40281. name: "Big",
  40282. height: math.unit(5.7, "meters")
  40283. },
  40284. {
  40285. name: "Macro",
  40286. height: math.unit(5.7, "kilometers")
  40287. },
  40288. {
  40289. name: "Megamacro",
  40290. height: math.unit(5.7, "earths")
  40291. },
  40292. ]
  40293. ))
  40294. characterMakers.push(() => makeCharacter(
  40295. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40296. {
  40297. front: {
  40298. height: math.unit(5 + 10/12, "feet"),
  40299. weight: math.unit(150, "lb"),
  40300. name: "Front",
  40301. image: {
  40302. source: "./media/characters/jamie/front.svg",
  40303. extra: 1908/1768,
  40304. bottom: 19/1927
  40305. }
  40306. },
  40307. },
  40308. [
  40309. {
  40310. name: "Minimum",
  40311. height: math.unit(2, "cm")
  40312. },
  40313. {
  40314. name: "Micro",
  40315. height: math.unit(3, "inches")
  40316. },
  40317. {
  40318. name: "Normal",
  40319. height: math.unit(5 + 10/12, "feet"),
  40320. default: true
  40321. },
  40322. {
  40323. name: "Macro",
  40324. height: math.unit(150, "feet")
  40325. },
  40326. {
  40327. name: "Megamacro",
  40328. height: math.unit(10000, "m")
  40329. },
  40330. ]
  40331. ))
  40332. characterMakers.push(() => makeCharacter(
  40333. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40334. {
  40335. front: {
  40336. height: math.unit(2, "meters"),
  40337. weight: math.unit(100, "kg"),
  40338. name: "Front",
  40339. image: {
  40340. source: "./media/characters/shiron/front.svg",
  40341. extra: 2103/1985,
  40342. bottom: 98/2201
  40343. }
  40344. },
  40345. back: {
  40346. height: math.unit(2, "meters"),
  40347. weight: math.unit(100, "kg"),
  40348. name: "Back",
  40349. image: {
  40350. source: "./media/characters/shiron/back.svg",
  40351. extra: 2110/2015,
  40352. bottom: 89/2199
  40353. }
  40354. },
  40355. hand: {
  40356. height: math.unit(0.96, "feet"),
  40357. name: "Hand",
  40358. image: {
  40359. source: "./media/characters/shiron/hand.svg"
  40360. }
  40361. },
  40362. foot: {
  40363. height: math.unit(1.464, "feet"),
  40364. name: "Foot",
  40365. image: {
  40366. source: "./media/characters/shiron/foot.svg"
  40367. }
  40368. },
  40369. },
  40370. [
  40371. {
  40372. name: "Normal",
  40373. height: math.unit(2, "meters")
  40374. },
  40375. {
  40376. name: "Macro",
  40377. height: math.unit(500, "meters"),
  40378. default: true
  40379. },
  40380. {
  40381. name: "Megamacro",
  40382. height: math.unit(20, "km")
  40383. },
  40384. ]
  40385. ))
  40386. characterMakers.push(() => makeCharacter(
  40387. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40388. {
  40389. front: {
  40390. height: math.unit(6, "feet"),
  40391. name: "Front",
  40392. image: {
  40393. source: "./media/characters/sam/front.svg",
  40394. extra: 849/826,
  40395. bottom: 19/868
  40396. }
  40397. },
  40398. },
  40399. [
  40400. {
  40401. name: "Normal",
  40402. height: math.unit(6, "feet"),
  40403. default: true
  40404. },
  40405. ]
  40406. ))
  40407. characterMakers.push(() => makeCharacter(
  40408. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40409. {
  40410. front: {
  40411. height: math.unit(8 + 4/12, "feet"),
  40412. weight: math.unit(122, "kg"),
  40413. name: "Front",
  40414. image: {
  40415. source: "./media/characters/namori-kurogawa/front.svg",
  40416. extra: 1894/1576,
  40417. bottom: 34/1928
  40418. }
  40419. },
  40420. },
  40421. [
  40422. {
  40423. name: "Normal",
  40424. height: math.unit(8 + 4/12, "feet"),
  40425. default: true
  40426. },
  40427. ]
  40428. ))
  40429. characterMakers.push(() => makeCharacter(
  40430. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40431. {
  40432. front: {
  40433. height: math.unit(9, "feet"),
  40434. weight: math.unit(621, "lb"),
  40435. name: "Front",
  40436. image: {
  40437. source: "./media/characters/unmru/front.svg",
  40438. extra: 1853/1747,
  40439. bottom: 73/1926
  40440. }
  40441. },
  40442. side: {
  40443. height: math.unit(9, "feet"),
  40444. weight: math.unit(621, "lb"),
  40445. name: "Side",
  40446. image: {
  40447. source: "./media/characters/unmru/side.svg",
  40448. extra: 1781/1671,
  40449. bottom: 127/1908
  40450. }
  40451. },
  40452. back: {
  40453. height: math.unit(9, "feet"),
  40454. weight: math.unit(621, "lb"),
  40455. name: "Back",
  40456. image: {
  40457. source: "./media/characters/unmru/back.svg",
  40458. extra: 1894/1765,
  40459. bottom: 75/1969
  40460. }
  40461. },
  40462. dick: {
  40463. height: math.unit(3, "feet"),
  40464. weight: math.unit(35, "lb"),
  40465. name: "Dick",
  40466. image: {
  40467. source: "./media/characters/unmru/dick.svg"
  40468. }
  40469. },
  40470. },
  40471. [
  40472. {
  40473. name: "Normal",
  40474. height: math.unit(9, "feet")
  40475. },
  40476. {
  40477. name: "Natural",
  40478. height: math.unit(27, "feet"),
  40479. default: true
  40480. },
  40481. {
  40482. name: "Giant",
  40483. height: math.unit(90, "feet")
  40484. },
  40485. {
  40486. name: "Kaiju",
  40487. height: math.unit(270, "feet")
  40488. },
  40489. {
  40490. name: "Macro",
  40491. height: math.unit(900, "feet")
  40492. },
  40493. {
  40494. name: "Macro+",
  40495. height: math.unit(2700, "feet")
  40496. },
  40497. {
  40498. name: "Megamacro",
  40499. height: math.unit(9000, "feet")
  40500. },
  40501. {
  40502. name: "City-Crushing",
  40503. height: math.unit(27000, "feet")
  40504. },
  40505. {
  40506. name: "Mountain-Mashing",
  40507. height: math.unit(90000, "feet")
  40508. },
  40509. {
  40510. name: "Earth-Eclipsing",
  40511. height: math.unit(2.7e8, "feet")
  40512. },
  40513. {
  40514. name: "Sol-Swallowing",
  40515. height: math.unit(9e10, "feet")
  40516. },
  40517. {
  40518. name: "Majoris-Munching",
  40519. height: math.unit(2.7e13, "feet")
  40520. },
  40521. ]
  40522. ))
  40523. characterMakers.push(() => makeCharacter(
  40524. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40525. {
  40526. front: {
  40527. height: math.unit(1, "inch"),
  40528. name: "Front",
  40529. image: {
  40530. source: "./media/characters/squeaks-mouse/front.svg",
  40531. extra: 352/308,
  40532. bottom: 25/377
  40533. }
  40534. },
  40535. },
  40536. [
  40537. {
  40538. name: "Micro",
  40539. height: math.unit(1, "inch"),
  40540. default: true
  40541. },
  40542. ]
  40543. ))
  40544. characterMakers.push(() => makeCharacter(
  40545. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40546. {
  40547. side: {
  40548. height: math.unit(35, "feet"),
  40549. name: "Side",
  40550. image: {
  40551. source: "./media/characters/sayko/side.svg",
  40552. extra: 1697/1021,
  40553. bottom: 82/1779
  40554. }
  40555. },
  40556. head: {
  40557. height: math.unit(16, "feet"),
  40558. name: "Head",
  40559. image: {
  40560. source: "./media/characters/sayko/head.svg"
  40561. }
  40562. },
  40563. forepaw: {
  40564. height: math.unit(7.85, "feet"),
  40565. name: "Forepaw",
  40566. image: {
  40567. source: "./media/characters/sayko/forepaw.svg"
  40568. }
  40569. },
  40570. hindpaw: {
  40571. height: math.unit(8.8, "feet"),
  40572. name: "Hindpaw",
  40573. image: {
  40574. source: "./media/characters/sayko/hindpaw.svg"
  40575. }
  40576. },
  40577. },
  40578. [
  40579. {
  40580. name: "Normal",
  40581. height: math.unit(35, "feet"),
  40582. default: true
  40583. },
  40584. {
  40585. name: "Colossus",
  40586. height: math.unit(100, "meters")
  40587. },
  40588. {
  40589. name: "\"Small\" Deity",
  40590. height: math.unit(1, "km")
  40591. },
  40592. {
  40593. name: "\"Large\" Deity",
  40594. height: math.unit(15, "km")
  40595. },
  40596. ]
  40597. ))
  40598. characterMakers.push(() => makeCharacter(
  40599. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40600. {
  40601. front: {
  40602. height: math.unit(6, "feet"),
  40603. weight: math.unit(250, "lb"),
  40604. name: "Front",
  40605. image: {
  40606. source: "./media/characters/mukiro/front.svg",
  40607. extra: 1368/1310,
  40608. bottom: 34/1402
  40609. }
  40610. },
  40611. },
  40612. [
  40613. {
  40614. name: "Normal",
  40615. height: math.unit(6, "feet"),
  40616. default: true
  40617. },
  40618. ]
  40619. ))
  40620. characterMakers.push(() => makeCharacter(
  40621. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40622. {
  40623. front: {
  40624. height: math.unit(12 + 4/12, "feet"),
  40625. name: "Front",
  40626. image: {
  40627. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40628. extra: 1346/1311,
  40629. bottom: 65/1411
  40630. }
  40631. },
  40632. },
  40633. [
  40634. {
  40635. name: "Base",
  40636. height: math.unit(12 + 4/12, "feet"),
  40637. default: true
  40638. },
  40639. {
  40640. name: "Macro",
  40641. height: math.unit(150, "feet")
  40642. },
  40643. {
  40644. name: "Mega",
  40645. height: math.unit(2, "miles")
  40646. },
  40647. {
  40648. name: "Demi God",
  40649. height: math.unit(4, "AU")
  40650. },
  40651. {
  40652. name: "God Size",
  40653. height: math.unit(1, "universe")
  40654. },
  40655. ]
  40656. ))
  40657. characterMakers.push(() => makeCharacter(
  40658. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40659. {
  40660. front: {
  40661. height: math.unit(3 + 3/12, "feet"),
  40662. weight: math.unit(88, "lb"),
  40663. name: "Front",
  40664. image: {
  40665. source: "./media/characters/trey/front.svg",
  40666. extra: 1815/1509,
  40667. bottom: 60/1875
  40668. }
  40669. },
  40670. },
  40671. [
  40672. {
  40673. name: "Normal",
  40674. height: math.unit(3 + 3/12, "feet"),
  40675. default: true
  40676. },
  40677. ]
  40678. ))
  40679. characterMakers.push(() => makeCharacter(
  40680. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40681. {
  40682. front: {
  40683. height: math.unit(4, "meters"),
  40684. name: "Front",
  40685. image: {
  40686. source: "./media/characters/adelonda/front.svg",
  40687. extra: 1077/982,
  40688. bottom: 39/1116
  40689. }
  40690. },
  40691. back: {
  40692. height: math.unit(4, "meters"),
  40693. name: "Back",
  40694. image: {
  40695. source: "./media/characters/adelonda/back.svg",
  40696. extra: 1105/1003,
  40697. bottom: 25/1130
  40698. }
  40699. },
  40700. feral: {
  40701. height: math.unit(40/1.5, "meters"),
  40702. name: "Feral",
  40703. image: {
  40704. source: "./media/characters/adelonda/feral.svg",
  40705. extra: 597/271,
  40706. bottom: 387/984
  40707. }
  40708. },
  40709. },
  40710. [
  40711. {
  40712. name: "Normal",
  40713. height: math.unit(4, "meters"),
  40714. default: true
  40715. },
  40716. ]
  40717. ))
  40718. characterMakers.push(() => makeCharacter(
  40719. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40720. {
  40721. front: {
  40722. height: math.unit(8 + 4/12, "feet"),
  40723. weight: math.unit(670, "lb"),
  40724. name: "Front",
  40725. image: {
  40726. source: "./media/characters/acadiel/front.svg",
  40727. extra: 1901/1595,
  40728. bottom: 142/2043
  40729. }
  40730. },
  40731. },
  40732. [
  40733. {
  40734. name: "Normal",
  40735. height: math.unit(8 + 4/12, "feet"),
  40736. default: true
  40737. },
  40738. {
  40739. name: "Macro",
  40740. height: math.unit(200, "feet")
  40741. },
  40742. ]
  40743. ))
  40744. characterMakers.push(() => makeCharacter(
  40745. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40746. {
  40747. front: {
  40748. height: math.unit(6 + 2/12, "feet"),
  40749. weight: math.unit(185, "lb"),
  40750. name: "Front",
  40751. image: {
  40752. source: "./media/characters/kayne-ein/front.svg",
  40753. extra: 1780/1560,
  40754. bottom: 81/1861
  40755. }
  40756. },
  40757. },
  40758. [
  40759. {
  40760. name: "Normal",
  40761. height: math.unit(6 + 2/12, "feet"),
  40762. default: true
  40763. },
  40764. {
  40765. name: "Transformation Stage",
  40766. height: math.unit(15, "feet")
  40767. },
  40768. {
  40769. name: "Macro",
  40770. height: math.unit(150, "feet")
  40771. },
  40772. {
  40773. name: "Earth's Shadow",
  40774. height: math.unit(6200, "miles")
  40775. },
  40776. {
  40777. name: "Universal Demon",
  40778. height: math.unit(28e9, "parsecs")
  40779. },
  40780. {
  40781. name: "Multiverse God",
  40782. height: math.unit(3, "multiverses")
  40783. },
  40784. ]
  40785. ))
  40786. characterMakers.push(() => makeCharacter(
  40787. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40788. {
  40789. front: {
  40790. height: math.unit(5 + 5/12, "feet"),
  40791. name: "Front",
  40792. image: {
  40793. source: "./media/characters/fawn/front.svg",
  40794. extra: 1873/1731,
  40795. bottom: 95/1968
  40796. }
  40797. },
  40798. back: {
  40799. height: math.unit(5 + 5/12, "feet"),
  40800. name: "Back",
  40801. image: {
  40802. source: "./media/characters/fawn/back.svg",
  40803. extra: 1813/1700,
  40804. bottom: 14/1827
  40805. }
  40806. },
  40807. hoof: {
  40808. height: math.unit(1.45, "feet"),
  40809. name: "Hoof",
  40810. image: {
  40811. source: "./media/characters/fawn/hoof.svg"
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Normal",
  40818. height: math.unit(5 + 5/12, "feet"),
  40819. default: true
  40820. },
  40821. ]
  40822. ))
  40823. characterMakers.push(() => makeCharacter(
  40824. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40825. {
  40826. front: {
  40827. height: math.unit(2 + 5/12, "feet"),
  40828. name: "Front",
  40829. image: {
  40830. source: "./media/characters/orion/front.svg",
  40831. extra: 1366/1304,
  40832. bottom: 43/1409
  40833. }
  40834. },
  40835. paw: {
  40836. height: math.unit(0.52, "feet"),
  40837. name: "Paw",
  40838. image: {
  40839. source: "./media/characters/orion/paw.svg"
  40840. }
  40841. },
  40842. },
  40843. [
  40844. {
  40845. name: "Normal",
  40846. height: math.unit(2 + 5/12, "feet"),
  40847. default: true
  40848. },
  40849. ]
  40850. ))
  40851. characterMakers.push(() => makeCharacter(
  40852. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40853. {
  40854. front: {
  40855. height: math.unit(5 + 10/12, "feet"),
  40856. name: "Front",
  40857. image: {
  40858. source: "./media/characters/vera/front.svg",
  40859. extra: 1680/1575,
  40860. bottom: 49/1729
  40861. }
  40862. },
  40863. back: {
  40864. height: math.unit(5 + 10/12, "feet"),
  40865. name: "Back",
  40866. image: {
  40867. source: "./media/characters/vera/back.svg",
  40868. extra: 1700/1588,
  40869. bottom: 18/1718
  40870. }
  40871. },
  40872. arcanine: {
  40873. height: math.unit(6 + 8/12, "feet"),
  40874. name: "Arcanine",
  40875. image: {
  40876. source: "./media/characters/vera/arcanine.svg",
  40877. extra: 1590/1511,
  40878. bottom: 71/1661
  40879. }
  40880. },
  40881. maw: {
  40882. height: math.unit(0.82, "feet"),
  40883. name: "Maw",
  40884. image: {
  40885. source: "./media/characters/vera/maw.svg"
  40886. }
  40887. },
  40888. mawArcanine: {
  40889. height: math.unit(0.97, "feet"),
  40890. name: "Maw (Arcanine)",
  40891. image: {
  40892. source: "./media/characters/vera/maw-arcanine.svg"
  40893. }
  40894. },
  40895. paw: {
  40896. height: math.unit(0.75, "feet"),
  40897. name: "Paw",
  40898. image: {
  40899. source: "./media/characters/vera/paw.svg"
  40900. }
  40901. },
  40902. pawprint: {
  40903. height: math.unit(0.52, "feet"),
  40904. name: "Pawprint",
  40905. image: {
  40906. source: "./media/characters/vera/pawprint.svg"
  40907. }
  40908. },
  40909. },
  40910. [
  40911. {
  40912. name: "Normal",
  40913. height: math.unit(5 + 10/12, "feet"),
  40914. default: true
  40915. },
  40916. {
  40917. name: "Macro",
  40918. height: math.unit(75, "feet")
  40919. },
  40920. ]
  40921. ))
  40922. characterMakers.push(() => makeCharacter(
  40923. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40924. {
  40925. front: {
  40926. height: math.unit(4, "feet"),
  40927. weight: math.unit(40, "lb"),
  40928. name: "Front",
  40929. image: {
  40930. source: "./media/characters/orvan-rabbit/front.svg",
  40931. extra: 1896/1642,
  40932. bottom: 29/1925
  40933. }
  40934. },
  40935. },
  40936. [
  40937. {
  40938. name: "Normal",
  40939. height: math.unit(4, "feet"),
  40940. default: true
  40941. },
  40942. ]
  40943. ))
  40944. characterMakers.push(() => makeCharacter(
  40945. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40946. {
  40947. front: {
  40948. height: math.unit(6, "feet"),
  40949. weight: math.unit(168, "lb"),
  40950. name: "Front",
  40951. image: {
  40952. source: "./media/characters/lisa/front.svg",
  40953. extra: 2065/1867,
  40954. bottom: 46/2111
  40955. }
  40956. },
  40957. back: {
  40958. height: math.unit(6, "feet"),
  40959. weight: math.unit(168, "lb"),
  40960. name: "Back",
  40961. image: {
  40962. source: "./media/characters/lisa/back.svg",
  40963. extra: 1982/1838,
  40964. bottom: 29/2011
  40965. }
  40966. },
  40967. maw: {
  40968. height: math.unit(0.81, "feet"),
  40969. name: "Maw",
  40970. image: {
  40971. source: "./media/characters/lisa/maw.svg"
  40972. }
  40973. },
  40974. paw: {
  40975. height: math.unit(0.9, "feet"),
  40976. name: "Paw",
  40977. image: {
  40978. source: "./media/characters/lisa/paw.svg"
  40979. }
  40980. },
  40981. caribousune: {
  40982. height: math.unit(7 + 2/12, "feet"),
  40983. weight: math.unit(268, "lb"),
  40984. name: "Caribousune",
  40985. image: {
  40986. source: "./media/characters/lisa/caribousune.svg",
  40987. extra: 1843/1633,
  40988. bottom: 29/1872
  40989. }
  40990. },
  40991. frontCaribousune: {
  40992. height: math.unit(7 + 2/12, "feet"),
  40993. weight: math.unit(268, "lb"),
  40994. name: "Front (Caribousune)",
  40995. image: {
  40996. source: "./media/characters/lisa/front-caribousune.svg",
  40997. extra: 1818/1638,
  40998. bottom: 52/1870
  40999. }
  41000. },
  41001. sideCaribousune: {
  41002. height: math.unit(7 + 2/12, "feet"),
  41003. weight: math.unit(268, "lb"),
  41004. name: "Side (Caribousune)",
  41005. image: {
  41006. source: "./media/characters/lisa/side-caribousune.svg",
  41007. extra: 1851/1635,
  41008. bottom: 16/1867
  41009. }
  41010. },
  41011. backCaribousune: {
  41012. height: math.unit(7 + 2/12, "feet"),
  41013. weight: math.unit(268, "lb"),
  41014. name: "Back (Caribousune)",
  41015. image: {
  41016. source: "./media/characters/lisa/back-caribousune.svg",
  41017. extra: 1801/1604,
  41018. bottom: 44/1845
  41019. }
  41020. },
  41021. caribou: {
  41022. height: math.unit(7 + 2/12, "feet"),
  41023. weight: math.unit(268, "lb"),
  41024. name: "Caribou",
  41025. image: {
  41026. source: "./media/characters/lisa/caribou.svg",
  41027. extra: 1843/1633,
  41028. bottom: 29/1872
  41029. }
  41030. },
  41031. frontCaribou: {
  41032. height: math.unit(7 + 2/12, "feet"),
  41033. weight: math.unit(268, "lb"),
  41034. name: "Front (Caribou)",
  41035. image: {
  41036. source: "./media/characters/lisa/front-caribou.svg",
  41037. extra: 1818/1638,
  41038. bottom: 52/1870
  41039. }
  41040. },
  41041. sideCaribou: {
  41042. height: math.unit(7 + 2/12, "feet"),
  41043. weight: math.unit(268, "lb"),
  41044. name: "Side (Caribou)",
  41045. image: {
  41046. source: "./media/characters/lisa/side-caribou.svg",
  41047. extra: 1851/1635,
  41048. bottom: 16/1867
  41049. }
  41050. },
  41051. backCaribou: {
  41052. height: math.unit(7 + 2/12, "feet"),
  41053. weight: math.unit(268, "lb"),
  41054. name: "Back (Caribou)",
  41055. image: {
  41056. source: "./media/characters/lisa/back-caribou.svg",
  41057. extra: 1801/1604,
  41058. bottom: 44/1845
  41059. }
  41060. },
  41061. mawCaribou: {
  41062. height: math.unit(1.45, "feet"),
  41063. name: "Maw (Caribou)",
  41064. image: {
  41065. source: "./media/characters/lisa/maw-caribou.svg"
  41066. }
  41067. },
  41068. mawCaribousune: {
  41069. height: math.unit(1.45, "feet"),
  41070. name: "Maw (Caribousune)",
  41071. image: {
  41072. source: "./media/characters/lisa/maw-caribousune.svg"
  41073. }
  41074. },
  41075. pawCaribousune: {
  41076. height: math.unit(1.61, "feet"),
  41077. name: "Paw (Caribou)",
  41078. image: {
  41079. source: "./media/characters/lisa/paw-caribousune.svg"
  41080. }
  41081. },
  41082. },
  41083. [
  41084. {
  41085. name: "Normal",
  41086. height: math.unit(6, "feet")
  41087. },
  41088. {
  41089. name: "God Size",
  41090. height: math.unit(72, "feet"),
  41091. default: true
  41092. },
  41093. {
  41094. name: "Towering",
  41095. height: math.unit(288, "feet")
  41096. },
  41097. {
  41098. name: "City Size",
  41099. height: math.unit(48384, "feet")
  41100. },
  41101. {
  41102. name: "Continental",
  41103. height: math.unit(4200, "miles")
  41104. },
  41105. {
  41106. name: "Planet Eater",
  41107. height: math.unit(42, "earths")
  41108. },
  41109. {
  41110. name: "Star Swallower",
  41111. height: math.unit(42, "solarradii")
  41112. },
  41113. {
  41114. name: "System Swallower",
  41115. height: math.unit(84000, "AU")
  41116. },
  41117. {
  41118. name: "Galaxy Gobbler",
  41119. height: math.unit(42, "galaxies")
  41120. },
  41121. {
  41122. name: "Universe Devourer",
  41123. height: math.unit(42, "universes")
  41124. },
  41125. {
  41126. name: "Multiverse Muncher",
  41127. height: math.unit(42, "multiverses")
  41128. },
  41129. ]
  41130. ))
  41131. characterMakers.push(() => makeCharacter(
  41132. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41133. {
  41134. front: {
  41135. height: math.unit(36, "feet"),
  41136. name: "Front",
  41137. image: {
  41138. source: "./media/characters/shadow-rat/front.svg",
  41139. extra: 1845/1758,
  41140. bottom: 83/1928
  41141. }
  41142. },
  41143. },
  41144. [
  41145. {
  41146. name: "Macro",
  41147. height: math.unit(36, "feet"),
  41148. default: true
  41149. },
  41150. ]
  41151. ))
  41152. characterMakers.push(() => makeCharacter(
  41153. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41154. {
  41155. side: {
  41156. height: math.unit(8, "feet"),
  41157. weight: math.unit(2630, "lb"),
  41158. name: "Side",
  41159. image: {
  41160. source: "./media/characters/torallia/side.svg",
  41161. extra: 2164/2021,
  41162. bottom: 371/2535
  41163. }
  41164. },
  41165. },
  41166. [
  41167. {
  41168. name: "Mortal Interaction",
  41169. height: math.unit(8, "feet")
  41170. },
  41171. {
  41172. name: "Natural",
  41173. height: math.unit(24, "feet"),
  41174. default: true
  41175. },
  41176. {
  41177. name: "Giant",
  41178. height: math.unit(80, "feet")
  41179. },
  41180. {
  41181. name: "Kaiju",
  41182. height: math.unit(240, "feet")
  41183. },
  41184. {
  41185. name: "Macro",
  41186. height: math.unit(800, "feet")
  41187. },
  41188. {
  41189. name: "Macro+",
  41190. height: math.unit(2400, "feet")
  41191. },
  41192. {
  41193. name: "Macro++",
  41194. height: math.unit(8000, "feet")
  41195. },
  41196. {
  41197. name: "City-Crushing",
  41198. height: math.unit(24000, "feet")
  41199. },
  41200. {
  41201. name: "Mountain-Mashing",
  41202. height: math.unit(80000, "feet")
  41203. },
  41204. {
  41205. name: "District Demolisher",
  41206. height: math.unit(240000, "feet")
  41207. },
  41208. {
  41209. name: "Tri-County Terror",
  41210. height: math.unit(800000, "feet")
  41211. },
  41212. {
  41213. name: "State Smasher",
  41214. height: math.unit(2.4e6, "feet")
  41215. },
  41216. {
  41217. name: "Nation Nemesis",
  41218. height: math.unit(8e6, "feet")
  41219. },
  41220. {
  41221. name: "Continent Cracker",
  41222. height: math.unit(2.4e7, "feet")
  41223. },
  41224. {
  41225. name: "Planet-Pillaging",
  41226. height: math.unit(8e7, "feet")
  41227. },
  41228. {
  41229. name: "Earth-Eclipsing",
  41230. height: math.unit(2.4e8, "feet")
  41231. },
  41232. {
  41233. name: "Jovian-Jostling",
  41234. height: math.unit(8e8, "feet")
  41235. },
  41236. {
  41237. name: "Gas Giant Gulper",
  41238. height: math.unit(2.4e9, "feet")
  41239. },
  41240. {
  41241. name: "Astral Annihilator",
  41242. height: math.unit(8e9, "feet")
  41243. },
  41244. {
  41245. name: "Celestial Conqueror",
  41246. height: math.unit(2.4e10, "feet")
  41247. },
  41248. {
  41249. name: "Sol-Swallowing",
  41250. height: math.unit(8e10, "feet")
  41251. },
  41252. {
  41253. name: "Hunter of the Heavens",
  41254. height: math.unit(2.4e13, "feet")
  41255. },
  41256. ]
  41257. ))
  41258. characterMakers.push(() => makeCharacter(
  41259. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41260. {
  41261. front: {
  41262. height: math.unit(6 + 8/12, "feet"),
  41263. weight: math.unit(250, "kilograms"),
  41264. volume: math.unit(28, "liters"),
  41265. name: "Front",
  41266. image: {
  41267. source: "./media/characters/rebecca-pawlson/front.svg",
  41268. extra: 1737/1596,
  41269. bottom: 107/1844
  41270. }
  41271. },
  41272. back: {
  41273. height: math.unit(6 + 8/12, "feet"),
  41274. weight: math.unit(250, "kilograms"),
  41275. volume: math.unit(28, "liters"),
  41276. name: "Back",
  41277. image: {
  41278. source: "./media/characters/rebecca-pawlson/back.svg",
  41279. extra: 1702/1523,
  41280. bottom: 86/1788
  41281. }
  41282. },
  41283. },
  41284. [
  41285. {
  41286. name: "Normal",
  41287. height: math.unit(6 + 8/12, "feet")
  41288. },
  41289. {
  41290. name: "Mini Macro",
  41291. height: math.unit(10, "feet"),
  41292. default: true
  41293. },
  41294. {
  41295. name: "Macro",
  41296. height: math.unit(100, "feet")
  41297. },
  41298. {
  41299. name: "Mega Macro",
  41300. height: math.unit(2500, "feet")
  41301. },
  41302. {
  41303. name: "Giga Macro",
  41304. height: math.unit(50, "miles")
  41305. },
  41306. ]
  41307. ))
  41308. characterMakers.push(() => makeCharacter(
  41309. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41310. {
  41311. front: {
  41312. height: math.unit(7 + 6/12, "feet"),
  41313. weight: math.unit(600, "lb"),
  41314. name: "Front",
  41315. image: {
  41316. source: "./media/characters/moxie-nova/front.svg",
  41317. extra: 1734/1652,
  41318. bottom: 41/1775
  41319. }
  41320. },
  41321. },
  41322. [
  41323. {
  41324. name: "Normal",
  41325. height: math.unit(7 + 6/12, "feet"),
  41326. default: true
  41327. },
  41328. ]
  41329. ))
  41330. characterMakers.push(() => makeCharacter(
  41331. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41332. {
  41333. goat: {
  41334. height: math.unit(4, "feet"),
  41335. weight: math.unit(180, "lb"),
  41336. name: "Goat",
  41337. image: {
  41338. source: "./media/characters/tiffany/goat.svg",
  41339. extra: 1845/1595,
  41340. bottom: 106/1951
  41341. }
  41342. },
  41343. front: {
  41344. height: math.unit(5, "feet"),
  41345. weight: math.unit(150, "lb"),
  41346. name: "Foxcoon",
  41347. image: {
  41348. source: "./media/characters/tiffany/foxcoon.svg",
  41349. extra: 1941/1845,
  41350. bottom: 58/1999
  41351. }
  41352. },
  41353. },
  41354. [
  41355. {
  41356. name: "Normal",
  41357. height: math.unit(5, "feet"),
  41358. default: true
  41359. },
  41360. ]
  41361. ))
  41362. characterMakers.push(() => makeCharacter(
  41363. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41364. {
  41365. front: {
  41366. height: math.unit(8, "feet"),
  41367. weight: math.unit(300, "lb"),
  41368. name: "Front",
  41369. image: {
  41370. source: "./media/characters/raxinath/front.svg",
  41371. extra: 1407/1309,
  41372. bottom: 39/1446
  41373. }
  41374. },
  41375. back: {
  41376. height: math.unit(8, "feet"),
  41377. weight: math.unit(300, "lb"),
  41378. name: "Back",
  41379. image: {
  41380. source: "./media/characters/raxinath/back.svg",
  41381. extra: 1405/1315,
  41382. bottom: 9/1414
  41383. }
  41384. },
  41385. },
  41386. [
  41387. {
  41388. name: "Speck",
  41389. height: math.unit(0.5, "nm")
  41390. },
  41391. {
  41392. name: "Micro",
  41393. height: math.unit(3, "inches")
  41394. },
  41395. {
  41396. name: "Kobold",
  41397. height: math.unit(3, "feet")
  41398. },
  41399. {
  41400. name: "Normal",
  41401. height: math.unit(8, "feet"),
  41402. default: true
  41403. },
  41404. {
  41405. name: "Giant",
  41406. height: math.unit(50, "feet")
  41407. },
  41408. {
  41409. name: "Macro",
  41410. height: math.unit(1000, "feet")
  41411. },
  41412. {
  41413. name: "Megamacro",
  41414. height: math.unit(1, "mile")
  41415. },
  41416. ]
  41417. ))
  41418. characterMakers.push(() => makeCharacter(
  41419. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41420. {
  41421. front: {
  41422. height: math.unit(10, "feet"),
  41423. weight: math.unit(1442, "lb"),
  41424. name: "Front",
  41425. image: {
  41426. source: "./media/characters/mal-dragon/front.svg",
  41427. extra: 1515/1444,
  41428. bottom: 113/1628
  41429. }
  41430. },
  41431. back: {
  41432. height: math.unit(10, "feet"),
  41433. weight: math.unit(1442, "lb"),
  41434. name: "Back",
  41435. image: {
  41436. source: "./media/characters/mal-dragon/back.svg",
  41437. extra: 1527/1434,
  41438. bottom: 25/1552
  41439. }
  41440. },
  41441. },
  41442. [
  41443. {
  41444. name: "Mortal Interaction",
  41445. height: math.unit(10, "feet"),
  41446. default: true
  41447. },
  41448. {
  41449. name: "Large",
  41450. height: math.unit(30, "feet")
  41451. },
  41452. {
  41453. name: "Kaiju",
  41454. height: math.unit(300, "feet")
  41455. },
  41456. {
  41457. name: "Megamacro",
  41458. height: math.unit(10000, "feet")
  41459. },
  41460. {
  41461. name: "Continent Cracker",
  41462. height: math.unit(30000000, "feet")
  41463. },
  41464. {
  41465. name: "Sol-Swallowing",
  41466. height: math.unit(1e11, "feet")
  41467. },
  41468. {
  41469. name: "Light Universal",
  41470. height: math.unit(5, "universes")
  41471. },
  41472. {
  41473. name: "Universe Atoms",
  41474. height: math.unit(1.829e9, "universes")
  41475. },
  41476. {
  41477. name: "Light Multiversal",
  41478. height: math.unit(5, "multiverses")
  41479. },
  41480. {
  41481. name: "Multiverse Atoms",
  41482. height: math.unit(1.829e9, "multiverses")
  41483. },
  41484. {
  41485. name: "Fabric of Time",
  41486. height: math.unit(1e262, "multiverses")
  41487. },
  41488. ]
  41489. ))
  41490. characterMakers.push(() => makeCharacter(
  41491. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41492. {
  41493. front: {
  41494. height: math.unit(9, "feet"),
  41495. weight: math.unit(1050, "lb"),
  41496. name: "Front",
  41497. image: {
  41498. source: "./media/characters/tabitha/front.svg",
  41499. extra: 2083/1994,
  41500. bottom: 68/2151
  41501. }
  41502. },
  41503. },
  41504. [
  41505. {
  41506. name: "Baseline",
  41507. height: math.unit(9, "feet"),
  41508. default: true
  41509. },
  41510. {
  41511. name: "Giant",
  41512. height: math.unit(90, "feet")
  41513. },
  41514. {
  41515. name: "Macro",
  41516. height: math.unit(900, "feet")
  41517. },
  41518. {
  41519. name: "Megamacro",
  41520. height: math.unit(9000, "feet")
  41521. },
  41522. {
  41523. name: "City-Crushing",
  41524. height: math.unit(27000, "feet")
  41525. },
  41526. {
  41527. name: "Mountain-Mashing",
  41528. height: math.unit(90000, "feet")
  41529. },
  41530. {
  41531. name: "Nation Nemesis",
  41532. height: math.unit(9e6, "feet")
  41533. },
  41534. {
  41535. name: "Continent Cracker",
  41536. height: math.unit(27e6, "feet")
  41537. },
  41538. {
  41539. name: "Earth-Eclipsing",
  41540. height: math.unit(2.7e8, "feet")
  41541. },
  41542. {
  41543. name: "Gas Giant Gulper",
  41544. height: math.unit(2.7e9, "feet")
  41545. },
  41546. {
  41547. name: "Sol-Swallowing",
  41548. height: math.unit(9e10, "feet")
  41549. },
  41550. {
  41551. name: "Galaxy Gulper",
  41552. height: math.unit(9, "galaxies")
  41553. },
  41554. {
  41555. name: "Cosmos Churner",
  41556. height: math.unit(9, "universes")
  41557. },
  41558. ]
  41559. ))
  41560. characterMakers.push(() => makeCharacter(
  41561. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41562. {
  41563. front: {
  41564. height: math.unit(160, "cm"),
  41565. weight: math.unit(55, "kg"),
  41566. name: "Front",
  41567. image: {
  41568. source: "./media/characters/tow/front.svg",
  41569. extra: 1751/1722,
  41570. bottom: 74/1825
  41571. }
  41572. },
  41573. },
  41574. [
  41575. {
  41576. name: "Norm",
  41577. height: math.unit(160, "cm")
  41578. },
  41579. {
  41580. name: "Casual",
  41581. height: math.unit(3200, "m"),
  41582. default: true
  41583. },
  41584. {
  41585. name: "Show-Off",
  41586. height: math.unit(160, "km")
  41587. },
  41588. ]
  41589. ))
  41590. characterMakers.push(() => makeCharacter(
  41591. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41592. {
  41593. front: {
  41594. height: math.unit(7 + 11/12, "feet"),
  41595. weight: math.unit(342.8, "lb"),
  41596. name: "Front",
  41597. image: {
  41598. source: "./media/characters/vivian-orca-dragon/front.svg",
  41599. extra: 1890/1865,
  41600. bottom: 28/1918
  41601. }
  41602. },
  41603. },
  41604. [
  41605. {
  41606. name: "Micro",
  41607. height: math.unit(5, "inches")
  41608. },
  41609. {
  41610. name: "Normal",
  41611. height: math.unit(7 + 11/12, "feet"),
  41612. default: true
  41613. },
  41614. {
  41615. name: "Macro",
  41616. height: math.unit(395 + 7/12, "feet")
  41617. },
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41622. {
  41623. side: {
  41624. height: math.unit(10, "feet"),
  41625. weight: math.unit(1442, "lb"),
  41626. name: "Side",
  41627. image: {
  41628. source: "./media/characters/lotherakon/side.svg",
  41629. extra: 1604/1497,
  41630. bottom: 89/1693
  41631. }
  41632. },
  41633. },
  41634. [
  41635. {
  41636. name: "Mortal Interaction",
  41637. height: math.unit(10, "feet")
  41638. },
  41639. {
  41640. name: "Large",
  41641. height: math.unit(30, "feet"),
  41642. default: true
  41643. },
  41644. {
  41645. name: "Giant",
  41646. height: math.unit(100, "feet")
  41647. },
  41648. {
  41649. name: "Kaiju",
  41650. height: math.unit(300, "feet")
  41651. },
  41652. {
  41653. name: "Macro",
  41654. height: math.unit(1000, "feet")
  41655. },
  41656. {
  41657. name: "Macro+",
  41658. height: math.unit(3000, "feet")
  41659. },
  41660. {
  41661. name: "Megamacro",
  41662. height: math.unit(10000, "feet")
  41663. },
  41664. {
  41665. name: "City-Crushing",
  41666. height: math.unit(30000, "feet")
  41667. },
  41668. {
  41669. name: "Continent Cracker",
  41670. height: math.unit(30e6, "feet")
  41671. },
  41672. {
  41673. name: "Earth Eclipsing",
  41674. height: math.unit(3e8, "feet")
  41675. },
  41676. {
  41677. name: "Gas Giant Gulper",
  41678. height: math.unit(3e9, "feet")
  41679. },
  41680. {
  41681. name: "Sol-Swallowing",
  41682. height: math.unit(1e11, "feet")
  41683. },
  41684. {
  41685. name: "System Swallower",
  41686. height: math.unit(3e14, "feet")
  41687. },
  41688. {
  41689. name: "Galaxy Gulper",
  41690. height: math.unit(10, "galaxies")
  41691. },
  41692. {
  41693. name: "Light Universal",
  41694. height: math.unit(5, "universes")
  41695. },
  41696. {
  41697. name: "Universe Palm",
  41698. height: math.unit(20, "universes")
  41699. },
  41700. {
  41701. name: "Light Multiversal",
  41702. height: math.unit(5, "multiverses")
  41703. },
  41704. {
  41705. name: "Multiverse Palm",
  41706. height: math.unit(20, "multiverses")
  41707. },
  41708. {
  41709. name: "Inferno Incarnate",
  41710. height: math.unit(1e7, "multiverses")
  41711. },
  41712. ]
  41713. ))
  41714. characterMakers.push(() => makeCharacter(
  41715. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41716. {
  41717. front: {
  41718. height: math.unit(8, "feet"),
  41719. weight: math.unit(1200, "lb"),
  41720. name: "Front",
  41721. image: {
  41722. source: "./media/characters/malithee/front.svg",
  41723. extra: 1675/1640,
  41724. bottom: 162/1837
  41725. }
  41726. },
  41727. },
  41728. [
  41729. {
  41730. name: "Mortal Interaction",
  41731. height: math.unit(8, "feet"),
  41732. default: true
  41733. },
  41734. {
  41735. name: "Large",
  41736. height: math.unit(24, "feet")
  41737. },
  41738. {
  41739. name: "Kaiju",
  41740. height: math.unit(240, "feet")
  41741. },
  41742. {
  41743. name: "Megamacro",
  41744. height: math.unit(8000, "feet")
  41745. },
  41746. {
  41747. name: "Continent Cracker",
  41748. height: math.unit(24e6, "feet")
  41749. },
  41750. {
  41751. name: "Earth-Eclipsing",
  41752. height: math.unit(2.4e8, "feet")
  41753. },
  41754. {
  41755. name: "Sol-Swallowing",
  41756. height: math.unit(8e10, "feet")
  41757. },
  41758. {
  41759. name: "Galaxy Gulper",
  41760. height: math.unit(8, "galaxies")
  41761. },
  41762. {
  41763. name: "Light Universal",
  41764. height: math.unit(4, "universes")
  41765. },
  41766. {
  41767. name: "Universe Atoms",
  41768. height: math.unit(1.829e9, "universes")
  41769. },
  41770. {
  41771. name: "Light Multiversal",
  41772. height: math.unit(4, "multiverses")
  41773. },
  41774. {
  41775. name: "Multiverse Atoms",
  41776. height: math.unit(1.829e9, "multiverses")
  41777. },
  41778. {
  41779. name: "Nigh-Omnipresence",
  41780. height: math.unit(8e261, "multiverses")
  41781. },
  41782. ]
  41783. ))
  41784. characterMakers.push(() => makeCharacter(
  41785. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41786. {
  41787. front: {
  41788. height: math.unit(10, "feet"),
  41789. weight: math.unit(1500, "lb"),
  41790. name: "Front",
  41791. image: {
  41792. source: "./media/characters/miles-thestia/front.svg",
  41793. extra: 1812/1727,
  41794. bottom: 86/1898
  41795. }
  41796. },
  41797. back: {
  41798. height: math.unit(10, "feet"),
  41799. weight: math.unit(1500, "lb"),
  41800. name: "Back",
  41801. image: {
  41802. source: "./media/characters/miles-thestia/back.svg",
  41803. extra: 1799/1690,
  41804. bottom: 47/1846
  41805. }
  41806. },
  41807. frontNsfw: {
  41808. height: math.unit(10, "feet"),
  41809. weight: math.unit(1500, "lb"),
  41810. name: "Front (NSFW)",
  41811. image: {
  41812. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41813. extra: 1812/1727,
  41814. bottom: 86/1898
  41815. }
  41816. },
  41817. },
  41818. [
  41819. {
  41820. name: "Mini-Macro",
  41821. height: math.unit(10, "feet"),
  41822. default: true
  41823. },
  41824. ]
  41825. ))
  41826. characterMakers.push(() => makeCharacter(
  41827. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41828. {
  41829. front: {
  41830. height: math.unit(25, "feet"),
  41831. name: "Front",
  41832. image: {
  41833. source: "./media/characters/titan-s-wulf/front.svg",
  41834. extra: 1560/1484,
  41835. bottom: 76/1636
  41836. }
  41837. },
  41838. },
  41839. [
  41840. {
  41841. name: "Smallest",
  41842. height: math.unit(25, "feet"),
  41843. default: true
  41844. },
  41845. {
  41846. name: "Normal",
  41847. height: math.unit(200, "feet")
  41848. },
  41849. {
  41850. name: "Macro",
  41851. height: math.unit(200000, "feet")
  41852. },
  41853. {
  41854. name: "Multiversal Original",
  41855. height: math.unit(10000, "multiverses")
  41856. },
  41857. ]
  41858. ))
  41859. characterMakers.push(() => makeCharacter(
  41860. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41861. {
  41862. front: {
  41863. height: math.unit(8, "feet"),
  41864. weight: math.unit(553, "lb"),
  41865. name: "Front",
  41866. image: {
  41867. source: "./media/characters/tawendeh/front.svg",
  41868. extra: 2365/2268,
  41869. bottom: 83/2448
  41870. }
  41871. },
  41872. frontClothed: {
  41873. height: math.unit(8, "feet"),
  41874. weight: math.unit(553, "lb"),
  41875. name: "Front (Clothed)",
  41876. image: {
  41877. source: "./media/characters/tawendeh/front-clothed.svg",
  41878. extra: 2365/2268,
  41879. bottom: 83/2448
  41880. }
  41881. },
  41882. back: {
  41883. height: math.unit(8, "feet"),
  41884. weight: math.unit(553, "lb"),
  41885. name: "Back",
  41886. image: {
  41887. source: "./media/characters/tawendeh/back.svg",
  41888. extra: 2397/2294,
  41889. bottom: 42/2439
  41890. }
  41891. },
  41892. },
  41893. [
  41894. {
  41895. name: "Mortal Interaction",
  41896. height: math.unit(8, "feet"),
  41897. default: true
  41898. },
  41899. {
  41900. name: "Giant",
  41901. height: math.unit(80, "feet")
  41902. },
  41903. {
  41904. name: "Macro",
  41905. height: math.unit(800, "feet")
  41906. },
  41907. {
  41908. name: "Megamacro",
  41909. height: math.unit(8000, "feet")
  41910. },
  41911. {
  41912. name: "City-Crushing",
  41913. height: math.unit(24000, "feet")
  41914. },
  41915. {
  41916. name: "Mountain-Mashing",
  41917. height: math.unit(80000, "feet")
  41918. },
  41919. {
  41920. name: "Nation Nemesis",
  41921. height: math.unit(8e6, "feet")
  41922. },
  41923. {
  41924. name: "Continent Cracker",
  41925. height: math.unit(24e6, "feet")
  41926. },
  41927. {
  41928. name: "Earth-Eclipsing",
  41929. height: math.unit(2.4e8, "feet")
  41930. },
  41931. {
  41932. name: "Gas Giant Gulper",
  41933. height: math.unit(2.4e9, "feet")
  41934. },
  41935. {
  41936. name: "Sol-Swallowing",
  41937. height: math.unit(8e10, "feet")
  41938. },
  41939. {
  41940. name: "Galaxy Gulper",
  41941. height: math.unit(8, "galaxies")
  41942. },
  41943. {
  41944. name: "Cosmos Churner",
  41945. height: math.unit(8, "universes")
  41946. },
  41947. {
  41948. name: "Omnipotent Otter",
  41949. height: math.unit(80, "universes")
  41950. },
  41951. ]
  41952. ))
  41953. characterMakers.push(() => makeCharacter(
  41954. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41955. {
  41956. front: {
  41957. height: math.unit(2.6, "meters"),
  41958. weight: math.unit(900, "kg"),
  41959. name: "Front",
  41960. image: {
  41961. source: "./media/characters/neesha/front.svg",
  41962. extra: 1803/1653,
  41963. bottom: 128/1931
  41964. }
  41965. },
  41966. },
  41967. [
  41968. {
  41969. name: "Normal",
  41970. height: math.unit(2.6, "meters"),
  41971. default: true
  41972. },
  41973. {
  41974. name: "Macro",
  41975. height: math.unit(50, "meters")
  41976. },
  41977. ]
  41978. ))
  41979. characterMakers.push(() => makeCharacter(
  41980. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41981. {
  41982. front: {
  41983. height: math.unit(5, "feet"),
  41984. weight: math.unit(185, "lb"),
  41985. name: "Front",
  41986. image: {
  41987. source: "./media/characters/kyera/front.svg",
  41988. extra: 1875/1790,
  41989. bottom: 96/1971
  41990. }
  41991. },
  41992. },
  41993. [
  41994. {
  41995. name: "Normal",
  41996. height: math.unit(5, "feet"),
  41997. default: true
  41998. },
  41999. ]
  42000. ))
  42001. characterMakers.push(() => makeCharacter(
  42002. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42003. {
  42004. front: {
  42005. height: math.unit(7 + 6/12, "feet"),
  42006. weight: math.unit(540, "lb"),
  42007. name: "Front",
  42008. image: {
  42009. source: "./media/characters/yuko/front.svg",
  42010. extra: 1282/1222,
  42011. bottom: 101/1383
  42012. }
  42013. },
  42014. frontClothed: {
  42015. height: math.unit(7 + 6/12, "feet"),
  42016. weight: math.unit(540, "lb"),
  42017. name: "Front (Clothed)",
  42018. image: {
  42019. source: "./media/characters/yuko/front-clothed.svg",
  42020. extra: 1282/1222,
  42021. bottom: 101/1383
  42022. }
  42023. },
  42024. },
  42025. [
  42026. {
  42027. name: "Normal",
  42028. height: math.unit(7 + 6/12, "feet"),
  42029. default: true
  42030. },
  42031. {
  42032. name: "Macro",
  42033. height: math.unit(26 + 9/12, "feet")
  42034. },
  42035. {
  42036. name: "Megamacro",
  42037. height: math.unit(300, "feet")
  42038. },
  42039. {
  42040. name: "Gigamacro",
  42041. height: math.unit(5000, "feet")
  42042. },
  42043. {
  42044. name: "Planetary",
  42045. height: math.unit(10000, "miles")
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42051. {
  42052. front: {
  42053. height: math.unit(8 + 2/12, "feet"),
  42054. weight: math.unit(600, "lb"),
  42055. name: "Front",
  42056. image: {
  42057. source: "./media/characters/deam-nitrel/front.svg",
  42058. extra: 1308/1234,
  42059. bottom: 125/1433
  42060. }
  42061. },
  42062. },
  42063. [
  42064. {
  42065. name: "Normal",
  42066. height: math.unit(8 + 2/12, "feet"),
  42067. default: true
  42068. },
  42069. ]
  42070. ))
  42071. characterMakers.push(() => makeCharacter(
  42072. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42073. {
  42074. front: {
  42075. height: math.unit(6.1, "feet"),
  42076. weight: math.unit(180, "lb"),
  42077. name: "Front",
  42078. image: {
  42079. source: "./media/characters/skyress/front.svg",
  42080. extra: 1045/915,
  42081. bottom: 28/1073
  42082. }
  42083. },
  42084. maw: {
  42085. height: math.unit(1, "feet"),
  42086. name: "Maw",
  42087. image: {
  42088. source: "./media/characters/skyress/maw.svg"
  42089. }
  42090. },
  42091. },
  42092. [
  42093. {
  42094. name: "Normal",
  42095. height: math.unit(6.1, "feet"),
  42096. default: true
  42097. },
  42098. {
  42099. name: "Macro",
  42100. height: math.unit(200, "feet")
  42101. },
  42102. ]
  42103. ))
  42104. characterMakers.push(() => makeCharacter(
  42105. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42106. {
  42107. front: {
  42108. height: math.unit(4 + 2/12, "feet"),
  42109. weight: math.unit(40, "kg"),
  42110. name: "Front",
  42111. image: {
  42112. source: "./media/characters/amethyst-jones/front.svg",
  42113. extra: 1220/1150,
  42114. bottom: 101/1321
  42115. }
  42116. },
  42117. },
  42118. [
  42119. {
  42120. name: "Normal",
  42121. height: math.unit(4 + 2/12, "feet"),
  42122. default: true
  42123. },
  42124. ]
  42125. ))
  42126. characterMakers.push(() => makeCharacter(
  42127. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42128. {
  42129. front: {
  42130. height: math.unit(1.7, "m"),
  42131. weight: math.unit(135, "lb"),
  42132. name: "Front",
  42133. image: {
  42134. source: "./media/characters/jade/front.svg",
  42135. extra: 1818/1767,
  42136. bottom: 32/1850
  42137. }
  42138. },
  42139. back: {
  42140. height: math.unit(1.7, "m"),
  42141. weight: math.unit(135, "lb"),
  42142. name: "Back",
  42143. image: {
  42144. source: "./media/characters/jade/back.svg",
  42145. extra: 1869/1809,
  42146. bottom: 35/1904
  42147. }
  42148. },
  42149. hand: {
  42150. height: math.unit(0.24, "m"),
  42151. name: "Hand",
  42152. image: {
  42153. source: "./media/characters/jade/hand.svg"
  42154. }
  42155. },
  42156. foot: {
  42157. height: math.unit(0.263, "m"),
  42158. name: "Foot",
  42159. image: {
  42160. source: "./media/characters/jade/foot.svg"
  42161. }
  42162. },
  42163. dick: {
  42164. height: math.unit(0.47, "m"),
  42165. name: "Dick",
  42166. image: {
  42167. source: "./media/characters/jade/dick.svg"
  42168. }
  42169. },
  42170. },
  42171. [
  42172. {
  42173. name: "Micro",
  42174. height: math.unit(22, "cm")
  42175. },
  42176. {
  42177. name: "Normal",
  42178. height: math.unit(1.7, "m"),
  42179. default: true
  42180. },
  42181. {
  42182. name: "Macro",
  42183. height: math.unit(152, "m")
  42184. },
  42185. ]
  42186. ))
  42187. characterMakers.push(() => makeCharacter(
  42188. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42189. {
  42190. front: {
  42191. height: math.unit(100, "miles"),
  42192. weight: math.unit(20000, "tons"),
  42193. name: "Front",
  42194. image: {
  42195. source: "./media/characters/cookie/front.svg",
  42196. extra: 1125/1070,
  42197. bottom: 30/1155
  42198. }
  42199. },
  42200. },
  42201. [
  42202. {
  42203. name: "Big",
  42204. height: math.unit(50, "feet")
  42205. },
  42206. {
  42207. name: "Macro",
  42208. height: math.unit(100, "miles"),
  42209. default: true
  42210. },
  42211. {
  42212. name: "Megamacro",
  42213. height: math.unit(90000, "miles")
  42214. },
  42215. ]
  42216. ))
  42217. characterMakers.push(() => makeCharacter(
  42218. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42219. {
  42220. front: {
  42221. height: math.unit(6, "feet"),
  42222. weight: math.unit(145, "lb"),
  42223. name: "Front",
  42224. image: {
  42225. source: "./media/characters/farzian/front.svg",
  42226. extra: 1902/1693,
  42227. bottom: 108/2010
  42228. }
  42229. },
  42230. },
  42231. [
  42232. {
  42233. name: "Macro",
  42234. height: math.unit(500, "feet"),
  42235. default: true
  42236. },
  42237. ]
  42238. ))
  42239. characterMakers.push(() => makeCharacter(
  42240. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42241. {
  42242. front: {
  42243. height: math.unit(3 + 6/12, "feet"),
  42244. weight: math.unit(50, "lb"),
  42245. name: "Front",
  42246. image: {
  42247. source: "./media/characters/kimberly-tilson/front.svg",
  42248. extra: 1400/1322,
  42249. bottom: 36/1436
  42250. }
  42251. },
  42252. back: {
  42253. height: math.unit(3 + 6/12, "feet"),
  42254. weight: math.unit(50, "lb"),
  42255. name: "Back",
  42256. image: {
  42257. source: "./media/characters/kimberly-tilson/back.svg",
  42258. extra: 1370/1307,
  42259. bottom: 20/1390
  42260. }
  42261. },
  42262. },
  42263. [
  42264. {
  42265. name: "Normal",
  42266. height: math.unit(3 + 6/12, "feet"),
  42267. default: true
  42268. },
  42269. ]
  42270. ))
  42271. characterMakers.push(() => makeCharacter(
  42272. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42273. {
  42274. front: {
  42275. height: math.unit(1148, "feet"),
  42276. weight: math.unit(34057, "lb"),
  42277. name: "Front",
  42278. image: {
  42279. source: "./media/characters/harthos/front.svg",
  42280. extra: 1391/1339,
  42281. bottom: 13/1404
  42282. }
  42283. },
  42284. },
  42285. [
  42286. {
  42287. name: "Macro",
  42288. height: math.unit(1148, "feet"),
  42289. default: true
  42290. },
  42291. ]
  42292. ))
  42293. characterMakers.push(() => makeCharacter(
  42294. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42295. {
  42296. front: {
  42297. height: math.unit(15, "feet"),
  42298. name: "Front",
  42299. image: {
  42300. source: "./media/characters/hypatia/front.svg",
  42301. extra: 1653/1591,
  42302. bottom: 79/1732
  42303. }
  42304. },
  42305. },
  42306. [
  42307. {
  42308. name: "Normal",
  42309. height: math.unit(15, "feet")
  42310. },
  42311. {
  42312. name: "Small",
  42313. height: math.unit(300, "feet")
  42314. },
  42315. {
  42316. name: "Macro",
  42317. height: math.unit(2500, "feet"),
  42318. default: true
  42319. },
  42320. {
  42321. name: "Mega Macro",
  42322. height: math.unit(1500, "miles")
  42323. },
  42324. {
  42325. name: "Giga Macro",
  42326. height: math.unit(1.5e6, "miles")
  42327. },
  42328. ]
  42329. ))
  42330. characterMakers.push(() => makeCharacter(
  42331. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42332. {
  42333. front: {
  42334. height: math.unit(6, "feet"),
  42335. weight: math.unit(200, "lb"),
  42336. name: "Front",
  42337. image: {
  42338. source: "./media/characters/wulver/front.svg",
  42339. extra: 1724/1632,
  42340. bottom: 130/1854
  42341. }
  42342. },
  42343. frontNsfw: {
  42344. height: math.unit(6, "feet"),
  42345. weight: math.unit(200, "lb"),
  42346. name: "Front (NSFW)",
  42347. image: {
  42348. source: "./media/characters/wulver/front-nsfw.svg",
  42349. extra: 1724/1632,
  42350. bottom: 130/1854
  42351. }
  42352. },
  42353. },
  42354. [
  42355. {
  42356. name: "Human-Sized",
  42357. height: math.unit(6, "feet")
  42358. },
  42359. {
  42360. name: "Normal",
  42361. height: math.unit(4, "meters"),
  42362. default: true
  42363. },
  42364. {
  42365. name: "Large",
  42366. height: math.unit(6, "m")
  42367. },
  42368. ]
  42369. ))
  42370. characterMakers.push(() => makeCharacter(
  42371. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42372. {
  42373. front: {
  42374. height: math.unit(7, "feet"),
  42375. name: "Front",
  42376. image: {
  42377. source: "./media/characters/maru/front.svg",
  42378. extra: 1595/1570,
  42379. bottom: 0/1595
  42380. }
  42381. },
  42382. },
  42383. [
  42384. {
  42385. name: "Normal",
  42386. height: math.unit(7, "feet"),
  42387. default: true
  42388. },
  42389. {
  42390. name: "Macro",
  42391. height: math.unit(700, "feet")
  42392. },
  42393. {
  42394. name: "Mega Macro",
  42395. height: math.unit(25, "miles")
  42396. },
  42397. ]
  42398. ))
  42399. characterMakers.push(() => makeCharacter(
  42400. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42401. {
  42402. front: {
  42403. height: math.unit(6, "feet"),
  42404. weight: math.unit(170, "lb"),
  42405. name: "Front",
  42406. image: {
  42407. source: "./media/characters/xenon/front.svg",
  42408. extra: 1376/1305,
  42409. bottom: 56/1432
  42410. }
  42411. },
  42412. back: {
  42413. height: math.unit(6, "feet"),
  42414. weight: math.unit(170, "lb"),
  42415. name: "Back",
  42416. image: {
  42417. source: "./media/characters/xenon/back.svg",
  42418. extra: 1328/1259,
  42419. bottom: 95/1423
  42420. }
  42421. },
  42422. maw: {
  42423. height: math.unit(0.52, "feet"),
  42424. name: "Maw",
  42425. image: {
  42426. source: "./media/characters/xenon/maw.svg"
  42427. }
  42428. },
  42429. handLeft: {
  42430. height: math.unit(0.82 * 169 / 153, "feet"),
  42431. name: "Hand (Left)",
  42432. image: {
  42433. source: "./media/characters/xenon/hand-left.svg"
  42434. }
  42435. },
  42436. handRight: {
  42437. height: math.unit(0.82, "feet"),
  42438. name: "Hand (Right)",
  42439. image: {
  42440. source: "./media/characters/xenon/hand-right.svg"
  42441. }
  42442. },
  42443. footLeft: {
  42444. height: math.unit(1.13, "feet"),
  42445. name: "Foot (Left)",
  42446. image: {
  42447. source: "./media/characters/xenon/foot-left.svg"
  42448. }
  42449. },
  42450. footRight: {
  42451. height: math.unit(1.13 * 194 / 196, "feet"),
  42452. name: "Foot (Right)",
  42453. image: {
  42454. source: "./media/characters/xenon/foot-right.svg"
  42455. }
  42456. },
  42457. },
  42458. [
  42459. {
  42460. name: "Micro",
  42461. height: math.unit(0.8, "inches")
  42462. },
  42463. {
  42464. name: "Normal",
  42465. height: math.unit(6, "feet")
  42466. },
  42467. {
  42468. name: "Macro",
  42469. height: math.unit(50, "feet"),
  42470. default: true
  42471. },
  42472. {
  42473. name: "Macro+",
  42474. height: math.unit(250, "feet")
  42475. },
  42476. {
  42477. name: "Megamacro",
  42478. height: math.unit(1500, "feet")
  42479. },
  42480. ]
  42481. ))
  42482. characterMakers.push(() => makeCharacter(
  42483. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42484. {
  42485. front: {
  42486. height: math.unit(7 + 5/12, "feet"),
  42487. name: "Front",
  42488. image: {
  42489. source: "./media/characters/zane/front.svg",
  42490. extra: 1260/1203,
  42491. bottom: 94/1354
  42492. }
  42493. },
  42494. back: {
  42495. height: math.unit(5.05, "feet"),
  42496. name: "Back",
  42497. image: {
  42498. source: "./media/characters/zane/back.svg",
  42499. extra: 893/829,
  42500. bottom: 30/923
  42501. }
  42502. },
  42503. werewolf: {
  42504. height: math.unit(11, "feet"),
  42505. name: "Werewolf",
  42506. image: {
  42507. source: "./media/characters/zane/werewolf.svg",
  42508. extra: 1383/1323,
  42509. bottom: 89/1472
  42510. }
  42511. },
  42512. foot: {
  42513. height: math.unit(1.46, "feet"),
  42514. name: "Foot",
  42515. image: {
  42516. source: "./media/characters/zane/foot.svg"
  42517. }
  42518. },
  42519. footFront: {
  42520. height: math.unit(0.784, "feet"),
  42521. name: "Foot (Front)",
  42522. image: {
  42523. source: "./media/characters/zane/foot-front.svg"
  42524. }
  42525. },
  42526. dick: {
  42527. height: math.unit(1.95, "feet"),
  42528. name: "Dick",
  42529. image: {
  42530. source: "./media/characters/zane/dick.svg"
  42531. }
  42532. },
  42533. dickWerewolf: {
  42534. height: math.unit(3.77, "feet"),
  42535. name: "Dick (Werewolf)",
  42536. image: {
  42537. source: "./media/characters/zane/dick.svg"
  42538. }
  42539. },
  42540. },
  42541. [
  42542. {
  42543. name: "Normal",
  42544. height: math.unit(7 + 5/12, "feet"),
  42545. default: true
  42546. },
  42547. ]
  42548. ))
  42549. characterMakers.push(() => makeCharacter(
  42550. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42551. {
  42552. front: {
  42553. height: math.unit(6 + 2/12, "feet"),
  42554. weight: math.unit(284, "lb"),
  42555. name: "Front",
  42556. image: {
  42557. source: "./media/characters/benni-desparque/front.svg",
  42558. extra: 1353/1126,
  42559. bottom: 69/1422
  42560. }
  42561. },
  42562. },
  42563. [
  42564. {
  42565. name: "Civilian",
  42566. height: math.unit(6 + 2/12, "feet")
  42567. },
  42568. {
  42569. name: "Normal",
  42570. height: math.unit(98, "feet"),
  42571. default: true
  42572. },
  42573. {
  42574. name: "Kaiju Fighter",
  42575. height: math.unit(268, "feet")
  42576. },
  42577. ]
  42578. ))
  42579. characterMakers.push(() => makeCharacter(
  42580. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42581. {
  42582. front: {
  42583. height: math.unit(5, "feet"),
  42584. weight: math.unit(105, "lb"),
  42585. name: "Front",
  42586. image: {
  42587. source: "./media/characters/maxine/front.svg",
  42588. extra: 1386/1250,
  42589. bottom: 71/1457
  42590. }
  42591. },
  42592. },
  42593. [
  42594. {
  42595. name: "Normal",
  42596. height: math.unit(5, "feet"),
  42597. default: true
  42598. },
  42599. ]
  42600. ))
  42601. characterMakers.push(() => makeCharacter(
  42602. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42603. {
  42604. front: {
  42605. height: math.unit(11 + 7/12, "feet"),
  42606. weight: math.unit(9576, "lb"),
  42607. name: "Front",
  42608. image: {
  42609. source: "./media/characters/scaly/front.svg",
  42610. extra: 888/867,
  42611. bottom: 36/924
  42612. }
  42613. },
  42614. },
  42615. [
  42616. {
  42617. name: "Normal",
  42618. height: math.unit(11 + 7/12, "feet"),
  42619. default: true
  42620. },
  42621. ]
  42622. ))
  42623. characterMakers.push(() => makeCharacter(
  42624. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42625. {
  42626. front: {
  42627. height: math.unit(6 + 3/12, "feet"),
  42628. name: "Front",
  42629. image: {
  42630. source: "./media/characters/saelria/front.svg",
  42631. extra: 1243/1138,
  42632. bottom: 46/1289
  42633. }
  42634. },
  42635. },
  42636. [
  42637. {
  42638. name: "Micro",
  42639. height: math.unit(6, "inches"),
  42640. },
  42641. {
  42642. name: "Normal",
  42643. height: math.unit(6 + 3/12, "feet"),
  42644. default: true
  42645. },
  42646. {
  42647. name: "Macro",
  42648. height: math.unit(25, "feet")
  42649. },
  42650. ]
  42651. ))
  42652. characterMakers.push(() => makeCharacter(
  42653. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42654. {
  42655. front: {
  42656. height: math.unit(80, "meters"),
  42657. weight: math.unit(7000, "tonnes"),
  42658. name: "Front",
  42659. image: {
  42660. source: "./media/characters/tef/front.svg",
  42661. extra: 2036/1991,
  42662. bottom: 54/2090
  42663. }
  42664. },
  42665. back: {
  42666. height: math.unit(80, "meters"),
  42667. weight: math.unit(7000, "tonnes"),
  42668. name: "Back",
  42669. image: {
  42670. source: "./media/characters/tef/back.svg",
  42671. extra: 2036/1991,
  42672. bottom: 54/2090
  42673. }
  42674. },
  42675. },
  42676. [
  42677. {
  42678. name: "Macro",
  42679. height: math.unit(80, "meters"),
  42680. default: true
  42681. },
  42682. ]
  42683. ))
  42684. characterMakers.push(() => makeCharacter(
  42685. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42686. {
  42687. front: {
  42688. height: math.unit(13, "feet"),
  42689. weight: math.unit(6, "tons"),
  42690. name: "Front",
  42691. image: {
  42692. source: "./media/characters/rover/front.svg",
  42693. extra: 1233/1156,
  42694. bottom: 50/1283
  42695. }
  42696. },
  42697. back: {
  42698. height: math.unit(13, "feet"),
  42699. weight: math.unit(6, "tons"),
  42700. name: "Back",
  42701. image: {
  42702. source: "./media/characters/rover/back.svg",
  42703. extra: 1327/1258,
  42704. bottom: 39/1366
  42705. }
  42706. },
  42707. },
  42708. [
  42709. {
  42710. name: "Normal",
  42711. height: math.unit(13, "feet"),
  42712. default: true
  42713. },
  42714. {
  42715. name: "Macro",
  42716. height: math.unit(1300, "feet")
  42717. },
  42718. {
  42719. name: "Megamacro",
  42720. height: math.unit(1300, "miles")
  42721. },
  42722. {
  42723. name: "Gigamacro",
  42724. height: math.unit(1300000, "miles")
  42725. },
  42726. ]
  42727. ))
  42728. characterMakers.push(() => makeCharacter(
  42729. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42730. {
  42731. front: {
  42732. height: math.unit(6, "feet"),
  42733. weight: math.unit(150, "lb"),
  42734. name: "Front",
  42735. image: {
  42736. source: "./media/characters/ariz/front.svg",
  42737. extra: 1401/1346,
  42738. bottom: 5/1406
  42739. }
  42740. },
  42741. },
  42742. [
  42743. {
  42744. name: "Normal",
  42745. height: math.unit(10, "feet"),
  42746. default: true
  42747. },
  42748. ]
  42749. ))
  42750. characterMakers.push(() => makeCharacter(
  42751. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42752. {
  42753. front: {
  42754. height: math.unit(6, "feet"),
  42755. weight: math.unit(140, "lb"),
  42756. name: "Front",
  42757. image: {
  42758. source: "./media/characters/sigrun/front.svg",
  42759. extra: 1418/1359,
  42760. bottom: 27/1445
  42761. }
  42762. },
  42763. },
  42764. [
  42765. {
  42766. name: "Macro",
  42767. height: math.unit(35, "feet"),
  42768. default: true
  42769. },
  42770. ]
  42771. ))
  42772. characterMakers.push(() => makeCharacter(
  42773. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42774. {
  42775. front: {
  42776. height: math.unit(6, "feet"),
  42777. weight: math.unit(150, "lb"),
  42778. name: "Front",
  42779. image: {
  42780. source: "./media/characters/numin/front.svg",
  42781. extra: 1433/1388,
  42782. bottom: 12/1445
  42783. }
  42784. },
  42785. },
  42786. [
  42787. {
  42788. name: "Macro",
  42789. height: math.unit(21.5, "km"),
  42790. default: true
  42791. },
  42792. ]
  42793. ))
  42794. characterMakers.push(() => makeCharacter(
  42795. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42796. {
  42797. front: {
  42798. height: math.unit(6, "feet"),
  42799. weight: math.unit(463, "lb"),
  42800. name: "Front",
  42801. image: {
  42802. source: "./media/characters/melwa/front.svg",
  42803. extra: 1307/1248,
  42804. bottom: 93/1400
  42805. }
  42806. },
  42807. },
  42808. [
  42809. {
  42810. name: "Macro",
  42811. height: math.unit(50, "meters"),
  42812. default: true
  42813. },
  42814. ]
  42815. ))
  42816. characterMakers.push(() => makeCharacter(
  42817. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42818. {
  42819. front: {
  42820. height: math.unit(325, "feet"),
  42821. name: "Front",
  42822. image: {
  42823. source: "./media/characters/zorkaiju/front.svg",
  42824. extra: 1955/1814,
  42825. bottom: 40/1995
  42826. }
  42827. },
  42828. frontExtended: {
  42829. height: math.unit(325, "feet"),
  42830. name: "Front (Extended)",
  42831. image: {
  42832. source: "./media/characters/zorkaiju/front-extended.svg",
  42833. extra: 1955/1814,
  42834. bottom: 40/1995
  42835. }
  42836. },
  42837. side: {
  42838. height: math.unit(325, "feet"),
  42839. name: "Side",
  42840. image: {
  42841. source: "./media/characters/zorkaiju/side.svg",
  42842. extra: 1495/1396,
  42843. bottom: 17/1512
  42844. }
  42845. },
  42846. sideExtended: {
  42847. height: math.unit(325, "feet"),
  42848. name: "Side (Extended)",
  42849. image: {
  42850. source: "./media/characters/zorkaiju/side-extended.svg",
  42851. extra: 1495/1396,
  42852. bottom: 17/1512
  42853. }
  42854. },
  42855. back: {
  42856. height: math.unit(325, "feet"),
  42857. name: "Back",
  42858. image: {
  42859. source: "./media/characters/zorkaiju/back.svg",
  42860. extra: 1959/1821,
  42861. bottom: 31/1990
  42862. }
  42863. },
  42864. backExtended: {
  42865. height: math.unit(325, "feet"),
  42866. name: "Back (Extended)",
  42867. image: {
  42868. source: "./media/characters/zorkaiju/back-extended.svg",
  42869. extra: 1959/1821,
  42870. bottom: 31/1990
  42871. }
  42872. },
  42873. hand: {
  42874. height: math.unit(58.4, "feet"),
  42875. name: "Hand",
  42876. image: {
  42877. source: "./media/characters/zorkaiju/hand.svg"
  42878. }
  42879. },
  42880. handExtended: {
  42881. height: math.unit(61.4, "feet"),
  42882. name: "Hand (Extended)",
  42883. image: {
  42884. source: "./media/characters/zorkaiju/hand-extended.svg"
  42885. }
  42886. },
  42887. foot: {
  42888. height: math.unit(95, "feet"),
  42889. name: "Foot",
  42890. image: {
  42891. source: "./media/characters/zorkaiju/foot.svg"
  42892. }
  42893. },
  42894. leftArm: {
  42895. height: math.unit(59, "feet"),
  42896. name: "Left Arm",
  42897. image: {
  42898. source: "./media/characters/zorkaiju/left-arm.svg"
  42899. }
  42900. },
  42901. rightArm: {
  42902. height: math.unit(59, "feet"),
  42903. name: "Right Arm",
  42904. image: {
  42905. source: "./media/characters/zorkaiju/right-arm.svg"
  42906. }
  42907. },
  42908. leftArmExtended: {
  42909. height: math.unit(59 * 1.033546, "feet"),
  42910. name: "Left Arm (Extended)",
  42911. image: {
  42912. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42913. }
  42914. },
  42915. rightArmExtended: {
  42916. height: math.unit(59 * 1.0496, "feet"),
  42917. name: "Right Arm (Extended)",
  42918. image: {
  42919. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42920. }
  42921. },
  42922. tail: {
  42923. height: math.unit(104, "feet"),
  42924. name: "Tail",
  42925. image: {
  42926. source: "./media/characters/zorkaiju/tail.svg"
  42927. }
  42928. },
  42929. tailExtended: {
  42930. height: math.unit(104, "feet"),
  42931. name: "Tail (Extended)",
  42932. image: {
  42933. source: "./media/characters/zorkaiju/tail-extended.svg"
  42934. }
  42935. },
  42936. tailBottom: {
  42937. height: math.unit(104, "feet"),
  42938. name: "Tail Bottom",
  42939. image: {
  42940. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42941. }
  42942. },
  42943. crystal: {
  42944. height: math.unit(27.54, "feet"),
  42945. name: "Crystal",
  42946. image: {
  42947. source: "./media/characters/zorkaiju/crystal.svg"
  42948. }
  42949. },
  42950. },
  42951. [
  42952. {
  42953. name: "Kaiju",
  42954. height: math.unit(325, "feet"),
  42955. default: true
  42956. },
  42957. ]
  42958. ))
  42959. characterMakers.push(() => makeCharacter(
  42960. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42961. {
  42962. front: {
  42963. height: math.unit(6 + 1/12, "feet"),
  42964. weight: math.unit(115, "lb"),
  42965. name: "Front",
  42966. image: {
  42967. source: "./media/characters/bailey-belfry/front.svg",
  42968. extra: 1240/1121,
  42969. bottom: 101/1341
  42970. }
  42971. },
  42972. },
  42973. [
  42974. {
  42975. name: "Normal",
  42976. height: math.unit(6 + 1/12, "feet"),
  42977. default: true
  42978. },
  42979. ]
  42980. ))
  42981. characterMakers.push(() => makeCharacter(
  42982. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42983. {
  42984. side: {
  42985. height: math.unit(4, "meters"),
  42986. weight: math.unit(250, "kg"),
  42987. name: "Side",
  42988. image: {
  42989. source: "./media/characters/blacky/side.svg",
  42990. extra: 1027/919,
  42991. bottom: 43/1070
  42992. }
  42993. },
  42994. maw: {
  42995. height: math.unit(1, "meters"),
  42996. name: "Maw",
  42997. image: {
  42998. source: "./media/characters/blacky/maw.svg"
  42999. }
  43000. },
  43001. paw: {
  43002. height: math.unit(1, "meters"),
  43003. name: "Paw",
  43004. image: {
  43005. source: "./media/characters/blacky/paw.svg"
  43006. }
  43007. },
  43008. },
  43009. [
  43010. {
  43011. name: "Normal",
  43012. height: math.unit(4, "meters"),
  43013. default: true
  43014. },
  43015. ]
  43016. ))
  43017. characterMakers.push(() => makeCharacter(
  43018. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43019. {
  43020. front: {
  43021. height: math.unit(170, "cm"),
  43022. weight: math.unit(66, "kg"),
  43023. name: "Front",
  43024. image: {
  43025. source: "./media/characters/thux-ei/front.svg",
  43026. extra: 1109/1011,
  43027. bottom: 8/1117
  43028. }
  43029. },
  43030. },
  43031. [
  43032. {
  43033. name: "Normal",
  43034. height: math.unit(170, "cm"),
  43035. default: true
  43036. },
  43037. ]
  43038. ))
  43039. characterMakers.push(() => makeCharacter(
  43040. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43041. {
  43042. front: {
  43043. height: math.unit(5, "feet"),
  43044. weight: math.unit(120, "lb"),
  43045. name: "Front",
  43046. image: {
  43047. source: "./media/characters/roxanne-voltaire/front.svg",
  43048. extra: 1901/1779,
  43049. bottom: 53/1954
  43050. }
  43051. },
  43052. },
  43053. [
  43054. {
  43055. name: "Normal",
  43056. height: math.unit(5, "feet"),
  43057. default: true
  43058. },
  43059. {
  43060. name: "Giant",
  43061. height: math.unit(50, "feet")
  43062. },
  43063. {
  43064. name: "Titan",
  43065. height: math.unit(500, "feet")
  43066. },
  43067. {
  43068. name: "Macro",
  43069. height: math.unit(5000, "feet")
  43070. },
  43071. {
  43072. name: "Megamacro",
  43073. height: math.unit(50000, "feet")
  43074. },
  43075. {
  43076. name: "Gigamacro",
  43077. height: math.unit(500000, "feet")
  43078. },
  43079. {
  43080. name: "Teramacro",
  43081. height: math.unit(5e6, "feet")
  43082. },
  43083. ]
  43084. ))
  43085. characterMakers.push(() => makeCharacter(
  43086. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43087. {
  43088. front: {
  43089. height: math.unit(6 + 2/12, "feet"),
  43090. name: "Front",
  43091. image: {
  43092. source: "./media/characters/squeaks/front.svg",
  43093. extra: 1823/1768,
  43094. bottom: 138/1961
  43095. }
  43096. },
  43097. },
  43098. [
  43099. {
  43100. name: "Micro",
  43101. height: math.unit(0.5, "inches")
  43102. },
  43103. {
  43104. name: "Normal",
  43105. height: math.unit(6 + 2/12, "feet"),
  43106. default: true
  43107. },
  43108. {
  43109. name: "Macro",
  43110. height: math.unit(600, "feet")
  43111. },
  43112. ]
  43113. ))
  43114. characterMakers.push(() => makeCharacter(
  43115. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43116. {
  43117. front: {
  43118. height: math.unit(1.72, "meters"),
  43119. name: "Front",
  43120. image: {
  43121. source: "./media/characters/archinger/front.svg",
  43122. extra: 1861/1675,
  43123. bottom: 125/1986
  43124. }
  43125. },
  43126. back: {
  43127. height: math.unit(1.72, "meters"),
  43128. name: "Back",
  43129. image: {
  43130. source: "./media/characters/archinger/back.svg",
  43131. extra: 1844/1701,
  43132. bottom: 104/1948
  43133. }
  43134. },
  43135. cock: {
  43136. height: math.unit(0.59, "feet"),
  43137. name: "Cock",
  43138. image: {
  43139. source: "./media/characters/archinger/cock.svg"
  43140. }
  43141. },
  43142. },
  43143. [
  43144. {
  43145. name: "Normal",
  43146. height: math.unit(1.72, "meters"),
  43147. default: true
  43148. },
  43149. {
  43150. name: "Macro",
  43151. height: math.unit(84, "meters")
  43152. },
  43153. {
  43154. name: "Macro+",
  43155. height: math.unit(112, "meters")
  43156. },
  43157. {
  43158. name: "Macro++",
  43159. height: math.unit(960, "meters")
  43160. },
  43161. {
  43162. name: "Macro+++",
  43163. height: math.unit(4, "km")
  43164. },
  43165. {
  43166. name: "Macro++++",
  43167. height: math.unit(48, "km")
  43168. },
  43169. {
  43170. name: "Macro+++++",
  43171. height: math.unit(4500, "km")
  43172. },
  43173. ]
  43174. ))
  43175. characterMakers.push(() => makeCharacter(
  43176. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43177. {
  43178. front: {
  43179. height: math.unit(5 + 5/12, "feet"),
  43180. name: "Front",
  43181. image: {
  43182. source: "./media/characters/alsnapz/front.svg",
  43183. extra: 1157/1065,
  43184. bottom: 42/1199
  43185. }
  43186. },
  43187. },
  43188. [
  43189. {
  43190. name: "Normal",
  43191. height: math.unit(5 + 5/12, "feet"),
  43192. default: true
  43193. },
  43194. ]
  43195. ))
  43196. characterMakers.push(() => makeCharacter(
  43197. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43198. {
  43199. side: {
  43200. height: math.unit(3.2, "earths"),
  43201. name: "Side",
  43202. image: {
  43203. source: "./media/characters/mag/side.svg",
  43204. extra: 1331/1008,
  43205. bottom: 52/1383
  43206. }
  43207. },
  43208. wing: {
  43209. height: math.unit(1.94, "earths"),
  43210. name: "Wing",
  43211. image: {
  43212. source: "./media/characters/mag/wing.svg"
  43213. }
  43214. },
  43215. dick: {
  43216. height: math.unit(1.8, "earths"),
  43217. name: "Dick",
  43218. image: {
  43219. source: "./media/characters/mag/dick.svg"
  43220. }
  43221. },
  43222. ass: {
  43223. height: math.unit(1.33, "earths"),
  43224. name: "Ass",
  43225. image: {
  43226. source: "./media/characters/mag/ass.svg"
  43227. }
  43228. },
  43229. head: {
  43230. height: math.unit(1.1, "earths"),
  43231. name: "Head",
  43232. image: {
  43233. source: "./media/characters/mag/head.svg"
  43234. }
  43235. },
  43236. maw: {
  43237. height: math.unit(1.62, "earths"),
  43238. name: "Maw",
  43239. image: {
  43240. source: "./media/characters/mag/maw.svg"
  43241. }
  43242. },
  43243. },
  43244. [
  43245. {
  43246. name: "Small",
  43247. height: math.unit(162, "feet")
  43248. },
  43249. {
  43250. name: "Normal",
  43251. height: math.unit(3.2, "earths"),
  43252. default: true
  43253. },
  43254. ]
  43255. ))
  43256. characterMakers.push(() => makeCharacter(
  43257. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43258. {
  43259. front: {
  43260. height: math.unit(512, "feet"),
  43261. weight: math.unit(63509, "tonnes"),
  43262. name: "Front",
  43263. image: {
  43264. source: "./media/characters/vorrel-harroc/front.svg",
  43265. extra: 1075/1063,
  43266. bottom: 62/1137
  43267. }
  43268. },
  43269. },
  43270. [
  43271. {
  43272. name: "Normal",
  43273. height: math.unit(10, "feet")
  43274. },
  43275. {
  43276. name: "Macro",
  43277. height: math.unit(512, "feet"),
  43278. default: true
  43279. },
  43280. {
  43281. name: "Megamacro",
  43282. height: math.unit(256, "miles")
  43283. },
  43284. {
  43285. name: "Gigamacro",
  43286. height: math.unit(4096, "miles")
  43287. },
  43288. ]
  43289. ))
  43290. characterMakers.push(() => makeCharacter(
  43291. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43292. {
  43293. side: {
  43294. height: math.unit(50, "feet"),
  43295. name: "Side",
  43296. image: {
  43297. source: "./media/characters/froimar/side.svg",
  43298. extra: 855/638,
  43299. bottom: 99/954
  43300. }
  43301. },
  43302. },
  43303. [
  43304. {
  43305. name: "Macro",
  43306. height: math.unit(50, "feet"),
  43307. default: true
  43308. },
  43309. ]
  43310. ))
  43311. characterMakers.push(() => makeCharacter(
  43312. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43313. {
  43314. front: {
  43315. height: math.unit(210, "miles"),
  43316. name: "Front",
  43317. image: {
  43318. source: "./media/characters/timothy/front.svg",
  43319. extra: 1007/943,
  43320. bottom: 62/1069
  43321. }
  43322. },
  43323. frontSkirt: {
  43324. height: math.unit(210, "miles"),
  43325. name: "Front (Skirt)",
  43326. image: {
  43327. source: "./media/characters/timothy/front-skirt.svg",
  43328. extra: 1007/943,
  43329. bottom: 62/1069
  43330. }
  43331. },
  43332. frontCoat: {
  43333. height: math.unit(210, "miles"),
  43334. name: "Front (Coat)",
  43335. image: {
  43336. source: "./media/characters/timothy/front-coat.svg",
  43337. extra: 1007/943,
  43338. bottom: 62/1069
  43339. }
  43340. },
  43341. },
  43342. [
  43343. {
  43344. name: "Macro",
  43345. height: math.unit(210, "miles"),
  43346. default: true
  43347. },
  43348. {
  43349. name: "Megamacro",
  43350. height: math.unit(210000, "miles")
  43351. },
  43352. ]
  43353. ))
  43354. characterMakers.push(() => makeCharacter(
  43355. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43356. {
  43357. front: {
  43358. height: math.unit(188, "feet"),
  43359. name: "Front",
  43360. image: {
  43361. source: "./media/characters/pyotr/front.svg",
  43362. extra: 1912/1826,
  43363. bottom: 18/1930
  43364. }
  43365. },
  43366. },
  43367. [
  43368. {
  43369. name: "Macro",
  43370. height: math.unit(188, "feet"),
  43371. default: true
  43372. },
  43373. {
  43374. name: "Megamacro",
  43375. height: math.unit(8, "miles")
  43376. },
  43377. ]
  43378. ))
  43379. characterMakers.push(() => makeCharacter(
  43380. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43381. {
  43382. side: {
  43383. height: math.unit(10, "feet"),
  43384. weight: math.unit(4500, "lb"),
  43385. name: "Side",
  43386. image: {
  43387. source: "./media/characters/ackart/side.svg",
  43388. extra: 1776/1668,
  43389. bottom: 116/1892
  43390. }
  43391. },
  43392. },
  43393. [
  43394. {
  43395. name: "Normal",
  43396. height: math.unit(10, "feet"),
  43397. default: true
  43398. },
  43399. ]
  43400. ))
  43401. characterMakers.push(() => makeCharacter(
  43402. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43403. {
  43404. side: {
  43405. height: math.unit(21, "feet"),
  43406. name: "Side",
  43407. image: {
  43408. source: "./media/characters/nolow/side.svg",
  43409. extra: 1484/1434,
  43410. bottom: 85/1569
  43411. }
  43412. },
  43413. sideErect: {
  43414. height: math.unit(21, "feet"),
  43415. name: "Side-erect",
  43416. image: {
  43417. source: "./media/characters/nolow/side-erect.svg",
  43418. extra: 1484/1434,
  43419. bottom: 85/1569
  43420. }
  43421. },
  43422. },
  43423. [
  43424. {
  43425. name: "Regular",
  43426. height: math.unit(12, "feet")
  43427. },
  43428. {
  43429. name: "Big Chee",
  43430. height: math.unit(21, "feet"),
  43431. default: true
  43432. },
  43433. ]
  43434. ))
  43435. characterMakers.push(() => makeCharacter(
  43436. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43437. {
  43438. front: {
  43439. height: math.unit(7, "feet"),
  43440. weight: math.unit(250, "lb"),
  43441. name: "Front",
  43442. image: {
  43443. source: "./media/characters/nines/front.svg",
  43444. extra: 1741/1607,
  43445. bottom: 41/1782
  43446. }
  43447. },
  43448. side: {
  43449. height: math.unit(7, "feet"),
  43450. weight: math.unit(250, "lb"),
  43451. name: "Side",
  43452. image: {
  43453. source: "./media/characters/nines/side.svg",
  43454. extra: 1854/1735,
  43455. bottom: 93/1947
  43456. }
  43457. },
  43458. back: {
  43459. height: math.unit(7, "feet"),
  43460. weight: math.unit(250, "lb"),
  43461. name: "Back",
  43462. image: {
  43463. source: "./media/characters/nines/back.svg",
  43464. extra: 1748/1615,
  43465. bottom: 20/1768
  43466. }
  43467. },
  43468. },
  43469. [
  43470. {
  43471. name: "Megamacro",
  43472. height: math.unit(99, "km"),
  43473. default: true
  43474. },
  43475. ]
  43476. ))
  43477. characterMakers.push(() => makeCharacter(
  43478. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43479. {
  43480. front: {
  43481. height: math.unit(5 + 10/12, "feet"),
  43482. weight: math.unit(210, "lb"),
  43483. name: "Front",
  43484. image: {
  43485. source: "./media/characters/zenith/front.svg",
  43486. extra: 1531/1452,
  43487. bottom: 198/1729
  43488. }
  43489. },
  43490. back: {
  43491. height: math.unit(5 + 10/12, "feet"),
  43492. weight: math.unit(210, "lb"),
  43493. name: "Back",
  43494. image: {
  43495. source: "./media/characters/zenith/back.svg",
  43496. extra: 1571/1487,
  43497. bottom: 75/1646
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Normal",
  43504. height: math.unit(5 + 10/12, "feet"),
  43505. default: true
  43506. }
  43507. ]
  43508. ))
  43509. characterMakers.push(() => makeCharacter(
  43510. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43511. {
  43512. front: {
  43513. height: math.unit(4, "feet"),
  43514. weight: math.unit(60, "lb"),
  43515. name: "Front",
  43516. image: {
  43517. source: "./media/characters/jasper/front.svg",
  43518. extra: 1450/1379,
  43519. bottom: 19/1469
  43520. }
  43521. },
  43522. },
  43523. [
  43524. {
  43525. name: "Normal",
  43526. height: math.unit(4, "feet"),
  43527. default: true
  43528. },
  43529. ]
  43530. ))
  43531. characterMakers.push(() => makeCharacter(
  43532. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43533. {
  43534. front: {
  43535. height: math.unit(6 + 5/12, "feet"),
  43536. weight: math.unit(290, "lb"),
  43537. name: "Front",
  43538. image: {
  43539. source: "./media/characters/tiberius-thyben/front.svg",
  43540. extra: 757/739,
  43541. bottom: 39/796
  43542. }
  43543. },
  43544. },
  43545. [
  43546. {
  43547. name: "Micro",
  43548. height: math.unit(1.5, "inches")
  43549. },
  43550. {
  43551. name: "Normal",
  43552. height: math.unit(6 + 5/12, "feet"),
  43553. default: true
  43554. },
  43555. {
  43556. name: "Macro",
  43557. height: math.unit(300, "feet")
  43558. },
  43559. ]
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43563. {
  43564. front: {
  43565. height: math.unit(5 + 6/12, "feet"),
  43566. weight: math.unit(60, "kg"),
  43567. name: "Front",
  43568. image: {
  43569. source: "./media/characters/sabre/front.svg",
  43570. extra: 738/671,
  43571. bottom: 27/765
  43572. }
  43573. },
  43574. },
  43575. [
  43576. {
  43577. name: "Teeny",
  43578. height: math.unit(2, "inches")
  43579. },
  43580. {
  43581. name: "Smol",
  43582. height: math.unit(8, "inches")
  43583. },
  43584. {
  43585. name: "Normal",
  43586. height: math.unit(5 + 6/12, "feet"),
  43587. default: true
  43588. },
  43589. {
  43590. name: "Mini-Macro",
  43591. height: math.unit(15, "feet")
  43592. },
  43593. {
  43594. name: "Macro",
  43595. height: math.unit(50, "feet")
  43596. },
  43597. ]
  43598. ))
  43599. characterMakers.push(() => makeCharacter(
  43600. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43601. {
  43602. front: {
  43603. height: math.unit(6 + 4/12, "feet"),
  43604. weight: math.unit(170, "lb"),
  43605. name: "Front",
  43606. image: {
  43607. source: "./media/characters/charlie/front.svg",
  43608. extra: 1348/1228,
  43609. bottom: 15/1363
  43610. }
  43611. },
  43612. },
  43613. [
  43614. {
  43615. name: "Macro",
  43616. height: math.unit(1700, "meters"),
  43617. default: true
  43618. },
  43619. {
  43620. name: "MegaMacro",
  43621. height: math.unit(20400, "meters")
  43622. },
  43623. ]
  43624. ))
  43625. characterMakers.push(() => makeCharacter(
  43626. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43627. {
  43628. front: {
  43629. height: math.unit(6 + 3/12, "feet"),
  43630. weight: math.unit(185, "lb"),
  43631. name: "Front",
  43632. image: {
  43633. source: "./media/characters/susan-grant/front.svg",
  43634. extra: 1351/1327,
  43635. bottom: 26/1377
  43636. }
  43637. },
  43638. },
  43639. [
  43640. {
  43641. name: "Normal",
  43642. height: math.unit(6 + 3/12, "feet"),
  43643. default: true
  43644. },
  43645. {
  43646. name: "Macro",
  43647. height: math.unit(225, "feet")
  43648. },
  43649. {
  43650. name: "Macro+",
  43651. height: math.unit(900, "feet")
  43652. },
  43653. {
  43654. name: "MegaMacro",
  43655. height: math.unit(14400, "feet")
  43656. },
  43657. ]
  43658. ))
  43659. characterMakers.push(() => makeCharacter(
  43660. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43661. {
  43662. front: {
  43663. height: math.unit(5 + 4/12, "feet"),
  43664. weight: math.unit(110, "lb"),
  43665. name: "Front",
  43666. image: {
  43667. source: "./media/characters/axel-isanov/front.svg",
  43668. extra: 1096/1065,
  43669. bottom: 13/1109
  43670. }
  43671. },
  43672. },
  43673. [
  43674. {
  43675. name: "Normal",
  43676. height: math.unit(5 + 4/12, "feet"),
  43677. default: true
  43678. },
  43679. ]
  43680. ))
  43681. characterMakers.push(() => makeCharacter(
  43682. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43683. {
  43684. front: {
  43685. height: math.unit(9, "feet"),
  43686. weight: math.unit(467, "lb"),
  43687. name: "Front",
  43688. image: {
  43689. source: "./media/characters/necahual/front.svg",
  43690. extra: 920/873,
  43691. bottom: 26/946
  43692. }
  43693. },
  43694. back: {
  43695. height: math.unit(9, "feet"),
  43696. weight: math.unit(467, "lb"),
  43697. name: "Back",
  43698. image: {
  43699. source: "./media/characters/necahual/back.svg",
  43700. extra: 930/884,
  43701. bottom: 16/946
  43702. }
  43703. },
  43704. frontUnderwear: {
  43705. height: math.unit(9, "feet"),
  43706. weight: math.unit(467, "lb"),
  43707. name: "Front (Underwear)",
  43708. image: {
  43709. source: "./media/characters/necahual/front-underwear.svg",
  43710. extra: 920/873,
  43711. bottom: 26/946
  43712. }
  43713. },
  43714. frontDressed: {
  43715. height: math.unit(9, "feet"),
  43716. weight: math.unit(467, "lb"),
  43717. name: "Front (Dressed)",
  43718. image: {
  43719. source: "./media/characters/necahual/front-dressed.svg",
  43720. extra: 920/873,
  43721. bottom: 26/946
  43722. }
  43723. },
  43724. },
  43725. [
  43726. {
  43727. name: "Comprsesed",
  43728. height: math.unit(9, "feet")
  43729. },
  43730. {
  43731. name: "Natural",
  43732. height: math.unit(15, "feet"),
  43733. default: true
  43734. },
  43735. {
  43736. name: "Boosted",
  43737. height: math.unit(50, "feet")
  43738. },
  43739. {
  43740. name: "Boosted+",
  43741. height: math.unit(150, "feet")
  43742. },
  43743. {
  43744. name: "Max",
  43745. height: math.unit(500, "feet")
  43746. },
  43747. ]
  43748. ))
  43749. characterMakers.push(() => makeCharacter(
  43750. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43751. {
  43752. front: {
  43753. height: math.unit(22 + 1/12, "feet"),
  43754. weight: math.unit(3200, "lb"),
  43755. name: "Front",
  43756. image: {
  43757. source: "./media/characters/theo-acacia/front.svg",
  43758. extra: 1796/1741,
  43759. bottom: 83/1879
  43760. }
  43761. },
  43762. frontUnderwear: {
  43763. height: math.unit(22 + 1/12, "feet"),
  43764. weight: math.unit(3200, "lb"),
  43765. name: "Front (Underwear)",
  43766. image: {
  43767. source: "./media/characters/theo-acacia/front-underwear.svg",
  43768. extra: 1796/1741,
  43769. bottom: 83/1879
  43770. }
  43771. },
  43772. frontNude: {
  43773. height: math.unit(22 + 1/12, "feet"),
  43774. weight: math.unit(3200, "lb"),
  43775. name: "Front (Nude)",
  43776. image: {
  43777. source: "./media/characters/theo-acacia/front-nude.svg",
  43778. extra: 1796/1741,
  43779. bottom: 83/1879
  43780. }
  43781. },
  43782. },
  43783. [
  43784. {
  43785. name: "Normal",
  43786. height: math.unit(22 + 1/12, "feet"),
  43787. default: true
  43788. },
  43789. ]
  43790. ))
  43791. characterMakers.push(() => makeCharacter(
  43792. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43793. {
  43794. front: {
  43795. height: math.unit(20, "feet"),
  43796. name: "Front",
  43797. image: {
  43798. source: "./media/characters/astra/front.svg",
  43799. extra: 1850/1714,
  43800. bottom: 106/1956
  43801. }
  43802. },
  43803. frontUndressed: {
  43804. height: math.unit(20, "feet"),
  43805. name: "Front (Undressed)",
  43806. image: {
  43807. source: "./media/characters/astra/front-undressed.svg",
  43808. extra: 1926/1749,
  43809. bottom: 0/1926
  43810. }
  43811. },
  43812. hand: {
  43813. height: math.unit(1.53, "feet"),
  43814. name: "Hand",
  43815. image: {
  43816. source: "./media/characters/astra/hand.svg"
  43817. }
  43818. },
  43819. paw: {
  43820. height: math.unit(1.53, "feet"),
  43821. name: "Paw",
  43822. image: {
  43823. source: "./media/characters/astra/paw.svg"
  43824. }
  43825. },
  43826. },
  43827. [
  43828. {
  43829. name: "Smallest",
  43830. height: math.unit(20, "feet")
  43831. },
  43832. {
  43833. name: "Normal",
  43834. height: math.unit(1e9, "miles"),
  43835. default: true
  43836. },
  43837. {
  43838. name: "Larger",
  43839. height: math.unit(5, "multiverses")
  43840. },
  43841. {
  43842. name: "Largest",
  43843. height: math.unit(1e9, "multiverses")
  43844. },
  43845. ]
  43846. ))
  43847. characterMakers.push(() => makeCharacter(
  43848. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43849. {
  43850. front: {
  43851. height: math.unit(8, "feet"),
  43852. name: "Front",
  43853. image: {
  43854. source: "./media/characters/breanna/front.svg",
  43855. extra: 1912/1632,
  43856. bottom: 33/1945
  43857. }
  43858. },
  43859. },
  43860. [
  43861. {
  43862. name: "Smallest",
  43863. height: math.unit(8, "feet")
  43864. },
  43865. {
  43866. name: "Normal",
  43867. height: math.unit(1, "mile"),
  43868. default: true
  43869. },
  43870. {
  43871. name: "Maximum",
  43872. height: math.unit(1500000000000, "lightyears")
  43873. },
  43874. ]
  43875. ))
  43876. characterMakers.push(() => makeCharacter(
  43877. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43878. {
  43879. front: {
  43880. height: math.unit(5 + 11/12, "feet"),
  43881. weight: math.unit(155, "lb"),
  43882. name: "Front",
  43883. image: {
  43884. source: "./media/characters/cai/front.svg",
  43885. extra: 1823/1702,
  43886. bottom: 32/1855
  43887. }
  43888. },
  43889. back: {
  43890. height: math.unit(5 + 11/12, "feet"),
  43891. weight: math.unit(155, "lb"),
  43892. name: "Back",
  43893. image: {
  43894. source: "./media/characters/cai/back.svg",
  43895. extra: 1809/1708,
  43896. bottom: 31/1840
  43897. }
  43898. },
  43899. },
  43900. [
  43901. {
  43902. name: "Normal",
  43903. height: math.unit(5 + 11/12, "feet"),
  43904. default: true
  43905. },
  43906. {
  43907. name: "Big",
  43908. height: math.unit(15, "feet")
  43909. },
  43910. {
  43911. name: "Macro",
  43912. height: math.unit(200, "feet")
  43913. },
  43914. ]
  43915. ))
  43916. characterMakers.push(() => makeCharacter(
  43917. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43918. {
  43919. front: {
  43920. height: math.unit(5 + 6/12, "feet"),
  43921. weight: math.unit(160, "lb"),
  43922. name: "Front",
  43923. image: {
  43924. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43925. extra: 1227/1174,
  43926. bottom: 37/1264
  43927. }
  43928. },
  43929. },
  43930. [
  43931. {
  43932. name: "Macro",
  43933. height: math.unit(444, "meters"),
  43934. default: true
  43935. },
  43936. ]
  43937. ))
  43938. characterMakers.push(() => makeCharacter(
  43939. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43940. {
  43941. front: {
  43942. height: math.unit(18 + 7/12, "feet"),
  43943. name: "Front",
  43944. image: {
  43945. source: "./media/characters/rex/front.svg",
  43946. extra: 1941/1807,
  43947. bottom: 66/2007
  43948. }
  43949. },
  43950. back: {
  43951. height: math.unit(18 + 7/12, "feet"),
  43952. name: "Back",
  43953. image: {
  43954. source: "./media/characters/rex/back.svg",
  43955. extra: 1937/1822,
  43956. bottom: 42/1979
  43957. }
  43958. },
  43959. boot: {
  43960. height: math.unit(3.45, "feet"),
  43961. name: "Boot",
  43962. image: {
  43963. source: "./media/characters/rex/boot.svg"
  43964. }
  43965. },
  43966. paw: {
  43967. height: math.unit(4.17, "feet"),
  43968. name: "Paw",
  43969. image: {
  43970. source: "./media/characters/rex/paw.svg"
  43971. }
  43972. },
  43973. head: {
  43974. height: math.unit(6.728, "feet"),
  43975. name: "Head",
  43976. image: {
  43977. source: "./media/characters/rex/head.svg"
  43978. }
  43979. },
  43980. },
  43981. [
  43982. {
  43983. name: "Nano",
  43984. height: math.unit(18 + 7/12, "feet")
  43985. },
  43986. {
  43987. name: "Micro",
  43988. height: math.unit(1.5, "megameters")
  43989. },
  43990. {
  43991. name: "Normal",
  43992. height: math.unit(440, "megameters"),
  43993. default: true
  43994. },
  43995. {
  43996. name: "Macro",
  43997. height: math.unit(2.5, "gigameters")
  43998. },
  43999. {
  44000. name: "Gigamacro",
  44001. height: math.unit(2, "galaxies")
  44002. },
  44003. ]
  44004. ))
  44005. characterMakers.push(() => makeCharacter(
  44006. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44007. {
  44008. side: {
  44009. height: math.unit(32, "feet"),
  44010. weight: math.unit(250000, "lb"),
  44011. name: "Side",
  44012. image: {
  44013. source: "./media/characters/silverwing/side.svg",
  44014. extra: 1100/1019,
  44015. bottom: 204/1304
  44016. }
  44017. },
  44018. },
  44019. [
  44020. {
  44021. name: "Normal",
  44022. height: math.unit(32, "feet"),
  44023. default: true
  44024. },
  44025. ]
  44026. ))
  44027. characterMakers.push(() => makeCharacter(
  44028. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44029. {
  44030. front: {
  44031. height: math.unit(6 + 6/12, "feet"),
  44032. weight: math.unit(350, "lb"),
  44033. name: "Front",
  44034. image: {
  44035. source: "./media/characters/tristan-hawthorne/front.svg",
  44036. extra: 1159/1124,
  44037. bottom: 37/1196
  44038. },
  44039. form: "labrador",
  44040. default: true
  44041. },
  44042. skunkFront: {
  44043. height: math.unit(4 + 6/12, "feet"),
  44044. weight: math.unit(120, "lb"),
  44045. name: "Front",
  44046. image: {
  44047. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44048. extra: 1609/1551,
  44049. bottom: 169/1778
  44050. },
  44051. form: "skunk",
  44052. default: true
  44053. },
  44054. },
  44055. [
  44056. {
  44057. name: "Normal",
  44058. height: math.unit(6 + 6/12, "feet"),
  44059. form: "labrador",
  44060. default: true
  44061. },
  44062. {
  44063. name: "Normal",
  44064. height: math.unit(4 + 6/12, "feet"),
  44065. form: "skunk",
  44066. default: true
  44067. },
  44068. ],
  44069. {
  44070. "labrador": {
  44071. name: "Labrador",
  44072. default: true
  44073. },
  44074. "skunk": {
  44075. name: "Skunk"
  44076. }
  44077. }
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44081. {
  44082. front: {
  44083. height: math.unit(5 + 11/12, "feet"),
  44084. weight: math.unit(190, "lb"),
  44085. name: "Front",
  44086. image: {
  44087. source: "./media/characters/mizu/front.svg",
  44088. extra: 1988/1788,
  44089. bottom: 14/2002
  44090. }
  44091. },
  44092. },
  44093. [
  44094. {
  44095. name: "Normal",
  44096. height: math.unit(5 + 11/12, "feet"),
  44097. default: true
  44098. },
  44099. ]
  44100. ))
  44101. characterMakers.push(() => makeCharacter(
  44102. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44103. {
  44104. front: {
  44105. height: math.unit(1.7, "feet"),
  44106. weight: math.unit(50, "lb"),
  44107. name: "Front",
  44108. image: {
  44109. source: "./media/characters/dechroma/front.svg",
  44110. extra: 1095/859,
  44111. bottom: 64/1159
  44112. }
  44113. },
  44114. },
  44115. [
  44116. {
  44117. name: "Normal",
  44118. height: math.unit(1.7, "feet"),
  44119. default: true
  44120. },
  44121. ]
  44122. ))
  44123. characterMakers.push(() => makeCharacter(
  44124. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44125. {
  44126. side: {
  44127. height: math.unit(30, "feet"),
  44128. name: "Side",
  44129. image: {
  44130. source: "./media/characters/veluren-thanazel/side.svg",
  44131. extra: 1611/633,
  44132. bottom: 118/1729
  44133. }
  44134. },
  44135. front: {
  44136. height: math.unit(30, "feet"),
  44137. name: "Front",
  44138. image: {
  44139. source: "./media/characters/veluren-thanazel/front.svg",
  44140. extra: 1486/636,
  44141. bottom: 238/1724
  44142. }
  44143. },
  44144. head: {
  44145. height: math.unit(21.4, "feet"),
  44146. name: "Head",
  44147. image: {
  44148. source: "./media/characters/veluren-thanazel/head.svg"
  44149. }
  44150. },
  44151. genitals: {
  44152. height: math.unit(19.4, "feet"),
  44153. name: "Genitals",
  44154. image: {
  44155. source: "./media/characters/veluren-thanazel/genitals.svg"
  44156. }
  44157. },
  44158. },
  44159. [
  44160. {
  44161. name: "Social",
  44162. height: math.unit(6, "feet")
  44163. },
  44164. {
  44165. name: "Play",
  44166. height: math.unit(12, "feet")
  44167. },
  44168. {
  44169. name: "True",
  44170. height: math.unit(30, "feet"),
  44171. default: true
  44172. },
  44173. ]
  44174. ))
  44175. characterMakers.push(() => makeCharacter(
  44176. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44177. {
  44178. front: {
  44179. height: math.unit(7 + 6/12, "feet"),
  44180. weight: math.unit(500, "kg"),
  44181. name: "Front",
  44182. image: {
  44183. source: "./media/characters/arcturas/front.svg",
  44184. extra: 1700/1500,
  44185. bottom: 145/1845
  44186. }
  44187. },
  44188. },
  44189. [
  44190. {
  44191. name: "Normal",
  44192. height: math.unit(7 + 6/12, "feet"),
  44193. default: true
  44194. },
  44195. ]
  44196. ))
  44197. characterMakers.push(() => makeCharacter(
  44198. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44199. {
  44200. side: {
  44201. height: math.unit(6, "feet"),
  44202. weight: math.unit(2, "tons"),
  44203. name: "Side",
  44204. image: {
  44205. source: "./media/characters/vitaen/side.svg",
  44206. extra: 1157/617,
  44207. bottom: 122/1279
  44208. }
  44209. },
  44210. },
  44211. [
  44212. {
  44213. name: "Normal",
  44214. height: math.unit(6, "feet"),
  44215. default: true
  44216. },
  44217. ]
  44218. ))
  44219. characterMakers.push(() => makeCharacter(
  44220. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44221. {
  44222. front: {
  44223. height: math.unit(19, "feet"),
  44224. name: "Front",
  44225. image: {
  44226. source: "./media/characters/fia-dreamweaver/front.svg",
  44227. extra: 1630/1504,
  44228. bottom: 25/1655
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(19, "feet"),
  44236. default: true
  44237. },
  44238. ]
  44239. ))
  44240. characterMakers.push(() => makeCharacter(
  44241. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44242. {
  44243. front: {
  44244. height: math.unit(5 + 4/12, "feet"),
  44245. name: "Front",
  44246. image: {
  44247. source: "./media/characters/artan/front.svg",
  44248. extra: 1618/1535,
  44249. bottom: 46/1664
  44250. }
  44251. },
  44252. back: {
  44253. height: math.unit(5 + 4/12, "feet"),
  44254. name: "Back",
  44255. image: {
  44256. source: "./media/characters/artan/back.svg",
  44257. extra: 1618/1543,
  44258. bottom: 31/1649
  44259. }
  44260. },
  44261. },
  44262. [
  44263. {
  44264. name: "Normal",
  44265. height: math.unit(5 + 4/12, "feet"),
  44266. default: true
  44267. },
  44268. ]
  44269. ))
  44270. characterMakers.push(() => makeCharacter(
  44271. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44272. {
  44273. side: {
  44274. height: math.unit(182, "cm"),
  44275. weight: math.unit(1000, "lb"),
  44276. name: "Side",
  44277. image: {
  44278. source: "./media/characters/silver-dragon/side.svg",
  44279. extra: 710/287,
  44280. bottom: 88/798
  44281. }
  44282. },
  44283. },
  44284. [
  44285. {
  44286. name: "Normal",
  44287. height: math.unit(182, "cm"),
  44288. default: true
  44289. },
  44290. ]
  44291. ))
  44292. characterMakers.push(() => makeCharacter(
  44293. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44294. {
  44295. side: {
  44296. height: math.unit(6 + 6/12, "feet"),
  44297. weight: math.unit(1.5, "tons"),
  44298. name: "Side",
  44299. image: {
  44300. source: "./media/characters/zephyr/side.svg",
  44301. extra: 1433/586,
  44302. bottom: 109/1542
  44303. }
  44304. },
  44305. },
  44306. [
  44307. {
  44308. name: "Normal",
  44309. height: math.unit(6 + 6/12, "feet"),
  44310. default: true
  44311. },
  44312. ]
  44313. ))
  44314. characterMakers.push(() => makeCharacter(
  44315. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44316. {
  44317. side: {
  44318. height: math.unit(1, "feet"),
  44319. name: "Side",
  44320. image: {
  44321. source: "./media/characters/vixye/side.svg",
  44322. extra: 632/541,
  44323. bottom: 0/632
  44324. }
  44325. },
  44326. },
  44327. [
  44328. {
  44329. name: "Normal",
  44330. height: math.unit(1, "feet"),
  44331. default: true
  44332. },
  44333. {
  44334. name: "True",
  44335. height: math.unit(1e15, "multiverses")
  44336. },
  44337. ]
  44338. ))
  44339. characterMakers.push(() => makeCharacter(
  44340. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44341. {
  44342. front: {
  44343. height: math.unit(8 + 2/12, "feet"),
  44344. weight: math.unit(650, "lb"),
  44345. name: "Front",
  44346. image: {
  44347. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44348. extra: 1174/1137,
  44349. bottom: 82/1256
  44350. }
  44351. },
  44352. back: {
  44353. height: math.unit(8 + 2/12, "feet"),
  44354. weight: math.unit(650, "lb"),
  44355. name: "Back",
  44356. image: {
  44357. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44358. extra: 1204/1157,
  44359. bottom: 46/1250
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "Wildform",
  44366. height: math.unit(8 + 2/12, "feet"),
  44367. default: true
  44368. },
  44369. ]
  44370. ))
  44371. characterMakers.push(() => makeCharacter(
  44372. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44373. {
  44374. front: {
  44375. height: math.unit(18, "feet"),
  44376. name: "Front",
  44377. image: {
  44378. source: "./media/characters/cyphin/front.svg",
  44379. extra: 970/886,
  44380. bottom: 42/1012
  44381. }
  44382. },
  44383. back: {
  44384. height: math.unit(18, "feet"),
  44385. name: "Back",
  44386. image: {
  44387. source: "./media/characters/cyphin/back.svg",
  44388. extra: 1009/894,
  44389. bottom: 24/1033
  44390. }
  44391. },
  44392. head: {
  44393. height: math.unit(5.05, "feet"),
  44394. name: "Head",
  44395. image: {
  44396. source: "./media/characters/cyphin/head.svg"
  44397. }
  44398. },
  44399. tailbud: {
  44400. height: math.unit(5, "feet"),
  44401. name: "Tailbud",
  44402. image: {
  44403. source: "./media/characters/cyphin/tailbud.svg"
  44404. }
  44405. },
  44406. },
  44407. [
  44408. ]
  44409. ))
  44410. characterMakers.push(() => makeCharacter(
  44411. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44412. {
  44413. side: {
  44414. height: math.unit(10, "feet"),
  44415. weight: math.unit(6, "tons"),
  44416. name: "Side",
  44417. image: {
  44418. source: "./media/characters/raijin/side.svg",
  44419. extra: 1529/613,
  44420. bottom: 337/1866
  44421. }
  44422. },
  44423. },
  44424. [
  44425. {
  44426. name: "Normal",
  44427. height: math.unit(10, "feet"),
  44428. default: true
  44429. },
  44430. ]
  44431. ))
  44432. characterMakers.push(() => makeCharacter(
  44433. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44434. {
  44435. side: {
  44436. height: math.unit(9, "feet"),
  44437. name: "Side",
  44438. image: {
  44439. source: "./media/characters/nilghais/side.svg",
  44440. extra: 1047/744,
  44441. bottom: 91/1138
  44442. }
  44443. },
  44444. head: {
  44445. height: math.unit(3.14, "feet"),
  44446. name: "Head",
  44447. image: {
  44448. source: "./media/characters/nilghais/head.svg"
  44449. }
  44450. },
  44451. mouth: {
  44452. height: math.unit(4.6, "feet"),
  44453. name: "Mouth",
  44454. image: {
  44455. source: "./media/characters/nilghais/mouth.svg"
  44456. }
  44457. },
  44458. wings: {
  44459. height: math.unit(24, "feet"),
  44460. name: "Wings",
  44461. image: {
  44462. source: "./media/characters/nilghais/wings.svg"
  44463. }
  44464. },
  44465. ass: {
  44466. height: math.unit(6.12, "feet"),
  44467. name: "Ass",
  44468. image: {
  44469. source: "./media/characters/nilghais/ass.svg"
  44470. }
  44471. },
  44472. },
  44473. [
  44474. {
  44475. name: "Normal",
  44476. height: math.unit(9, "feet"),
  44477. default: true
  44478. },
  44479. ]
  44480. ))
  44481. characterMakers.push(() => makeCharacter(
  44482. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44483. {
  44484. regular: {
  44485. height: math.unit(16 + 2/12, "feet"),
  44486. weight: math.unit(2300, "lb"),
  44487. name: "Regular",
  44488. image: {
  44489. source: "./media/characters/zolgar/regular.svg",
  44490. extra: 1246/1004,
  44491. bottom: 124/1370
  44492. }
  44493. },
  44494. boxers: {
  44495. height: math.unit(16 + 2/12, "feet"),
  44496. weight: math.unit(2300, "lb"),
  44497. name: "Boxers",
  44498. image: {
  44499. source: "./media/characters/zolgar/boxers.svg",
  44500. extra: 1246/1004,
  44501. bottom: 124/1370
  44502. }
  44503. },
  44504. armored: {
  44505. height: math.unit(16 + 2/12, "feet"),
  44506. weight: math.unit(2300, "lb"),
  44507. name: "Armored",
  44508. image: {
  44509. source: "./media/characters/zolgar/armored.svg",
  44510. extra: 1246/1004,
  44511. bottom: 124/1370
  44512. }
  44513. },
  44514. goth: {
  44515. height: math.unit(16 + 2/12, "feet"),
  44516. weight: math.unit(2300, "lb"),
  44517. name: "Goth",
  44518. image: {
  44519. source: "./media/characters/zolgar/goth.svg",
  44520. extra: 1246/1004,
  44521. bottom: 124/1370
  44522. }
  44523. },
  44524. },
  44525. [
  44526. {
  44527. name: "Shrunken Down",
  44528. height: math.unit(9 + 2/12, "feet")
  44529. },
  44530. {
  44531. name: "Normal",
  44532. height: math.unit(16 + 2/12, "feet"),
  44533. default: true
  44534. },
  44535. ]
  44536. ))
  44537. characterMakers.push(() => makeCharacter(
  44538. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44539. {
  44540. front: {
  44541. height: math.unit(6, "feet"),
  44542. weight: math.unit(168, "lb"),
  44543. name: "Front",
  44544. image: {
  44545. source: "./media/characters/luca/front.svg",
  44546. extra: 841/667,
  44547. bottom: 102/943
  44548. }
  44549. },
  44550. },
  44551. [
  44552. {
  44553. name: "Normal",
  44554. height: math.unit(6, "feet"),
  44555. default: true
  44556. },
  44557. ]
  44558. ))
  44559. characterMakers.push(() => makeCharacter(
  44560. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44561. {
  44562. side: {
  44563. height: math.unit(7 + 3/12, "feet"),
  44564. weight: math.unit(312, "lb"),
  44565. name: "Side",
  44566. image: {
  44567. source: "./media/characters/zezo/side.svg",
  44568. extra: 1192/1067,
  44569. bottom: 63/1255
  44570. }
  44571. },
  44572. },
  44573. [
  44574. {
  44575. name: "Normal",
  44576. height: math.unit(7 + 3/12, "feet"),
  44577. default: true
  44578. },
  44579. ]
  44580. ))
  44581. characterMakers.push(() => makeCharacter(
  44582. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44583. {
  44584. front: {
  44585. height: math.unit(5 + 5/12, "feet"),
  44586. weight: math.unit(170, "lb"),
  44587. name: "Front",
  44588. image: {
  44589. source: "./media/characters/mayso/front.svg",
  44590. extra: 1215/1108,
  44591. bottom: 16/1231
  44592. }
  44593. },
  44594. },
  44595. [
  44596. {
  44597. name: "Normal",
  44598. height: math.unit(5 + 5/12, "feet"),
  44599. default: true
  44600. },
  44601. ]
  44602. ))
  44603. characterMakers.push(() => makeCharacter(
  44604. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44605. {
  44606. front: {
  44607. height: math.unit(4 + 3/12, "feet"),
  44608. weight: math.unit(80, "lb"),
  44609. name: "Front",
  44610. image: {
  44611. source: "./media/characters/hess/front.svg",
  44612. extra: 1200/1123,
  44613. bottom: 16/1216
  44614. }
  44615. },
  44616. },
  44617. [
  44618. {
  44619. name: "Normal",
  44620. height: math.unit(4 + 3/12, "feet"),
  44621. default: true
  44622. },
  44623. ]
  44624. ))
  44625. characterMakers.push(() => makeCharacter(
  44626. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44627. {
  44628. front: {
  44629. height: math.unit(1.9, "meters"),
  44630. name: "Front",
  44631. image: {
  44632. source: "./media/characters/ashgar/front.svg",
  44633. extra: 1177/1146,
  44634. bottom: 99/1276
  44635. }
  44636. },
  44637. back: {
  44638. height: math.unit(1.9, "meters"),
  44639. name: "Back",
  44640. image: {
  44641. source: "./media/characters/ashgar/back.svg",
  44642. extra: 1201/1183,
  44643. bottom: 53/1254
  44644. }
  44645. },
  44646. feral: {
  44647. height: math.unit(1.4, "meters"),
  44648. name: "Feral",
  44649. image: {
  44650. source: "./media/characters/ashgar/feral.svg",
  44651. extra: 370/345,
  44652. bottom: 45/415
  44653. }
  44654. },
  44655. },
  44656. [
  44657. {
  44658. name: "Normal",
  44659. height: math.unit(1.9, "meters"),
  44660. default: true
  44661. },
  44662. ]
  44663. ))
  44664. characterMakers.push(() => makeCharacter(
  44665. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44666. {
  44667. regular: {
  44668. height: math.unit(6, "feet"),
  44669. weight: math.unit(220, "lb"),
  44670. name: "Regular",
  44671. image: {
  44672. source: "./media/characters/phillip/regular.svg",
  44673. extra: 1373/1277,
  44674. bottom: 75/1448
  44675. }
  44676. },
  44677. dressed: {
  44678. height: math.unit(6, "feet"),
  44679. weight: math.unit(220, "lb"),
  44680. name: "Dressed",
  44681. image: {
  44682. source: "./media/characters/phillip/dressed.svg",
  44683. extra: 1373/1277,
  44684. bottom: 75/1448
  44685. }
  44686. },
  44687. paw: {
  44688. height: math.unit(1.44, "feet"),
  44689. name: "Paw",
  44690. image: {
  44691. source: "./media/characters/phillip/paw.svg"
  44692. }
  44693. },
  44694. },
  44695. [
  44696. {
  44697. name: "Normal",
  44698. height: math.unit(6, "feet"),
  44699. default: true
  44700. },
  44701. ]
  44702. ))
  44703. characterMakers.push(() => makeCharacter(
  44704. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44705. {
  44706. side: {
  44707. height: math.unit(42, "feet"),
  44708. name: "Side",
  44709. image: {
  44710. source: "./media/characters/uvula/side.svg",
  44711. extra: 683/586,
  44712. bottom: 60/743
  44713. }
  44714. },
  44715. front: {
  44716. height: math.unit(42, "feet"),
  44717. name: "Front",
  44718. image: {
  44719. source: "./media/characters/uvula/front.svg",
  44720. extra: 705/613,
  44721. bottom: 54/759
  44722. }
  44723. },
  44724. maw: {
  44725. height: math.unit(23.5, "feet"),
  44726. name: "Maw",
  44727. image: {
  44728. source: "./media/characters/uvula/maw.svg"
  44729. }
  44730. },
  44731. },
  44732. [
  44733. {
  44734. name: "Original Size",
  44735. height: math.unit(14, "inches")
  44736. },
  44737. {
  44738. name: "Human Size",
  44739. height: math.unit(6, "feet")
  44740. },
  44741. {
  44742. name: "Big",
  44743. height: math.unit(42, "feet"),
  44744. default: true
  44745. },
  44746. {
  44747. name: "Bigger",
  44748. height: math.unit(100, "feet")
  44749. },
  44750. ]
  44751. ))
  44752. characterMakers.push(() => makeCharacter(
  44753. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44754. {
  44755. front: {
  44756. height: math.unit(5 + 11/12, "feet"),
  44757. name: "Front",
  44758. image: {
  44759. source: "./media/characters/lannah/front.svg",
  44760. extra: 1208/1113,
  44761. bottom: 97/1305
  44762. }
  44763. },
  44764. },
  44765. [
  44766. {
  44767. name: "Normal",
  44768. height: math.unit(5 + 11/12, "feet"),
  44769. default: true
  44770. },
  44771. ]
  44772. ))
  44773. characterMakers.push(() => makeCharacter(
  44774. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44775. {
  44776. front: {
  44777. height: math.unit(6 + 3/12, "feet"),
  44778. weight: math.unit(3.5, "tons"),
  44779. name: "Front",
  44780. image: {
  44781. source: "./media/characters/emberflame/front.svg",
  44782. extra: 1198/672,
  44783. bottom: 82/1280
  44784. }
  44785. },
  44786. side: {
  44787. height: math.unit(6 + 3/12, "feet"),
  44788. weight: math.unit(3.5, "tons"),
  44789. name: "Side",
  44790. image: {
  44791. source: "./media/characters/emberflame/side.svg",
  44792. extra: 938/527,
  44793. bottom: 56/994
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Normal",
  44800. height: math.unit(6 + 3/12, "feet"),
  44801. default: true
  44802. },
  44803. ]
  44804. ))
  44805. characterMakers.push(() => makeCharacter(
  44806. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44807. {
  44808. side: {
  44809. height: math.unit(17.5, "feet"),
  44810. weight: math.unit(35, "tons"),
  44811. name: "Side",
  44812. image: {
  44813. source: "./media/characters/sophie-ambrose/side.svg",
  44814. extra: 1573/1242,
  44815. bottom: 71/1644
  44816. }
  44817. },
  44818. maw: {
  44819. height: math.unit(7.4, "feet"),
  44820. name: "Maw",
  44821. image: {
  44822. source: "./media/characters/sophie-ambrose/maw.svg"
  44823. }
  44824. },
  44825. },
  44826. [
  44827. {
  44828. name: "Normal",
  44829. height: math.unit(17.5, "feet"),
  44830. default: true
  44831. },
  44832. ]
  44833. ))
  44834. characterMakers.push(() => makeCharacter(
  44835. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44836. {
  44837. front: {
  44838. height: math.unit(280, "feet"),
  44839. weight: math.unit(550, "tons"),
  44840. name: "Front",
  44841. image: {
  44842. source: "./media/characters/king-mugi/front.svg",
  44843. extra: 1102/947,
  44844. bottom: 104/1206
  44845. }
  44846. },
  44847. },
  44848. [
  44849. {
  44850. name: "King Mugi",
  44851. height: math.unit(280, "feet"),
  44852. default: true
  44853. },
  44854. ]
  44855. ))
  44856. characterMakers.push(() => makeCharacter(
  44857. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44858. {
  44859. front: {
  44860. height: math.unit(64, "meters"),
  44861. name: "Front",
  44862. image: {
  44863. source: "./media/characters/nova-fox/front.svg",
  44864. extra: 1310/1246,
  44865. bottom: 65/1375
  44866. }
  44867. },
  44868. },
  44869. [
  44870. {
  44871. name: "Macro",
  44872. height: math.unit(64, "meters"),
  44873. default: true
  44874. },
  44875. ]
  44876. ))
  44877. characterMakers.push(() => makeCharacter(
  44878. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44879. {
  44880. front: {
  44881. height: math.unit(6 + 3/12, "feet"),
  44882. weight: math.unit(170, "lb"),
  44883. name: "Front",
  44884. image: {
  44885. source: "./media/characters/sam-bat/front.svg",
  44886. extra: 1601/1411,
  44887. bottom: 125/1726
  44888. }
  44889. },
  44890. back: {
  44891. height: math.unit(6 + 3/12, "feet"),
  44892. weight: math.unit(170, "lb"),
  44893. name: "Back",
  44894. image: {
  44895. source: "./media/characters/sam-bat/back.svg",
  44896. extra: 1577/1405,
  44897. bottom: 58/1635
  44898. }
  44899. },
  44900. },
  44901. [
  44902. {
  44903. name: "Normal",
  44904. height: math.unit(6 + 3/12, "feet"),
  44905. default: true
  44906. },
  44907. ]
  44908. ))
  44909. characterMakers.push(() => makeCharacter(
  44910. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44911. {
  44912. front: {
  44913. height: math.unit(59, "feet"),
  44914. weight: math.unit(40000, "lb"),
  44915. name: "Front",
  44916. image: {
  44917. source: "./media/characters/inari/front.svg",
  44918. extra: 1884/1350,
  44919. bottom: 95/1979
  44920. }
  44921. },
  44922. },
  44923. [
  44924. {
  44925. name: "Gigantamax",
  44926. height: math.unit(59, "feet"),
  44927. default: true
  44928. },
  44929. ]
  44930. ))
  44931. characterMakers.push(() => makeCharacter(
  44932. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44933. {
  44934. front: {
  44935. height: math.unit(5 + 8/12, "feet"),
  44936. name: "Front",
  44937. image: {
  44938. source: "./media/characters/elizabeth/front.svg",
  44939. extra: 1395/1298,
  44940. bottom: 54/1449
  44941. }
  44942. },
  44943. mouth: {
  44944. height: math.unit(1.97, "feet"),
  44945. name: "Mouth",
  44946. image: {
  44947. source: "./media/characters/elizabeth/mouth.svg"
  44948. }
  44949. },
  44950. foot: {
  44951. height: math.unit(1.17, "feet"),
  44952. name: "Foot",
  44953. image: {
  44954. source: "./media/characters/elizabeth/foot.svg"
  44955. }
  44956. },
  44957. },
  44958. [
  44959. {
  44960. name: "Normal",
  44961. height: math.unit(5 + 8/12, "feet"),
  44962. default: true
  44963. },
  44964. {
  44965. name: "Minimacro",
  44966. height: math.unit(18, "feet")
  44967. },
  44968. {
  44969. name: "Macro",
  44970. height: math.unit(180, "feet")
  44971. },
  44972. ]
  44973. ))
  44974. characterMakers.push(() => makeCharacter(
  44975. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44976. {
  44977. front: {
  44978. height: math.unit(5 + 2/12, "feet"),
  44979. name: "Front",
  44980. image: {
  44981. source: "./media/characters/october-gossamer/front.svg",
  44982. extra: 505/454,
  44983. bottom: 7/512
  44984. }
  44985. },
  44986. back: {
  44987. height: math.unit(5 + 2/12, "feet"),
  44988. name: "Back",
  44989. image: {
  44990. source: "./media/characters/october-gossamer/back.svg",
  44991. extra: 501/454,
  44992. bottom: 11/512
  44993. }
  44994. },
  44995. },
  44996. [
  44997. {
  44998. name: "Normal",
  44999. height: math.unit(5 + 2/12, "feet"),
  45000. default: true
  45001. },
  45002. ]
  45003. ))
  45004. characterMakers.push(() => makeCharacter(
  45005. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45006. {
  45007. front: {
  45008. height: math.unit(5, "feet"),
  45009. name: "Front",
  45010. image: {
  45011. source: "./media/characters/epiglottis/front.svg",
  45012. extra: 923/849,
  45013. bottom: 17/940
  45014. }
  45015. },
  45016. },
  45017. [
  45018. {
  45019. name: "Original Size",
  45020. height: math.unit(10, "inches")
  45021. },
  45022. {
  45023. name: "Human Size",
  45024. height: math.unit(5, "feet"),
  45025. default: true
  45026. },
  45027. {
  45028. name: "Big",
  45029. height: math.unit(25, "feet")
  45030. },
  45031. {
  45032. name: "Bigger",
  45033. height: math.unit(50, "feet")
  45034. },
  45035. {
  45036. name: "oh lawd",
  45037. height: math.unit(75, "feet")
  45038. },
  45039. ]
  45040. ))
  45041. characterMakers.push(() => makeCharacter(
  45042. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45043. {
  45044. front: {
  45045. height: math.unit(2 + 4/12, "feet"),
  45046. weight: math.unit(60, "lb"),
  45047. name: "Front",
  45048. image: {
  45049. source: "./media/characters/lerm/front.svg",
  45050. extra: 796/790,
  45051. bottom: 79/875
  45052. }
  45053. },
  45054. },
  45055. [
  45056. {
  45057. name: "Normal",
  45058. height: math.unit(2 + 4/12, "feet"),
  45059. default: true
  45060. },
  45061. ]
  45062. ))
  45063. characterMakers.push(() => makeCharacter(
  45064. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45065. {
  45066. front: {
  45067. height: math.unit(5.5, "feet"),
  45068. weight: math.unit(130, "lb"),
  45069. name: "Front",
  45070. image: {
  45071. source: "./media/characters/xena-nebadon/front.svg",
  45072. extra: 1828/1730,
  45073. bottom: 79/1907
  45074. }
  45075. },
  45076. },
  45077. [
  45078. {
  45079. name: "Tiny Puppy",
  45080. height: math.unit(3, "inches")
  45081. },
  45082. {
  45083. name: "Normal",
  45084. height: math.unit(5.5, "feet"),
  45085. default: true
  45086. },
  45087. {
  45088. name: "Lotta Lady",
  45089. height: math.unit(12, "feet")
  45090. },
  45091. {
  45092. name: "Pretty Big",
  45093. height: math.unit(100, "feet")
  45094. },
  45095. {
  45096. name: "Big",
  45097. height: math.unit(500, "feet")
  45098. },
  45099. {
  45100. name: "Skyscraper Toys",
  45101. height: math.unit(2500, "feet")
  45102. },
  45103. {
  45104. name: "Plane Catcher",
  45105. height: math.unit(8, "miles")
  45106. },
  45107. {
  45108. name: "Planet Toys",
  45109. height: math.unit(15, "earths")
  45110. },
  45111. {
  45112. name: "Stardust",
  45113. height: math.unit(0.25, "galaxies")
  45114. },
  45115. {
  45116. name: "Snacks",
  45117. height: math.unit(70, "universes")
  45118. },
  45119. ]
  45120. ))
  45121. characterMakers.push(() => makeCharacter(
  45122. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45123. {
  45124. front: {
  45125. height: math.unit(1.6, "meters"),
  45126. weight: math.unit(60, "kg"),
  45127. name: "Front",
  45128. image: {
  45129. source: "./media/characters/bounty/front.svg",
  45130. extra: 1426/1308,
  45131. bottom: 15/1441
  45132. }
  45133. },
  45134. back: {
  45135. height: math.unit(1.6, "meters"),
  45136. weight: math.unit(60, "kg"),
  45137. name: "Back",
  45138. image: {
  45139. source: "./media/characters/bounty/back.svg",
  45140. extra: 1417/1307,
  45141. bottom: 8/1425
  45142. }
  45143. },
  45144. },
  45145. [
  45146. {
  45147. name: "Normal",
  45148. height: math.unit(1.6, "meters"),
  45149. default: true
  45150. },
  45151. {
  45152. name: "Macro",
  45153. height: math.unit(300, "meters")
  45154. },
  45155. ]
  45156. ))
  45157. characterMakers.push(() => makeCharacter(
  45158. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45159. {
  45160. front: {
  45161. height: math.unit(2 + 8/12, "feet"),
  45162. weight: math.unit(15, "lb"),
  45163. name: "Front",
  45164. image: {
  45165. source: "./media/characters/mochi/front.svg",
  45166. extra: 1022/852,
  45167. bottom: 435/1457
  45168. }
  45169. },
  45170. back: {
  45171. height: math.unit(2 + 8/12, "feet"),
  45172. weight: math.unit(15, "lb"),
  45173. name: "Back",
  45174. image: {
  45175. source: "./media/characters/mochi/back.svg",
  45176. extra: 1335/1119,
  45177. bottom: 39/1374
  45178. }
  45179. },
  45180. bird: {
  45181. height: math.unit(2 + 8/12, "feet"),
  45182. weight: math.unit(15, "lb"),
  45183. name: "Bird",
  45184. image: {
  45185. source: "./media/characters/mochi/bird.svg",
  45186. extra: 1251/1113,
  45187. bottom: 178/1429
  45188. }
  45189. },
  45190. kaiju: {
  45191. height: math.unit(154, "feet"),
  45192. weight: math.unit(1e7, "lb"),
  45193. name: "Kaiju",
  45194. image: {
  45195. source: "./media/characters/mochi/kaiju.svg",
  45196. extra: 460/324,
  45197. bottom: 40/500
  45198. }
  45199. },
  45200. head: {
  45201. height: math.unit(1.21, "feet"),
  45202. name: "Head",
  45203. image: {
  45204. source: "./media/characters/mochi/head.svg"
  45205. }
  45206. },
  45207. alternateTail: {
  45208. height: math.unit(2 + 8/12, "feet"),
  45209. weight: math.unit(45, "lb"),
  45210. name: "Alternate Tail",
  45211. image: {
  45212. source: "./media/characters/mochi/alternate-tail.svg",
  45213. extra: 139/76,
  45214. bottom: 45/184
  45215. }
  45216. },
  45217. },
  45218. [
  45219. {
  45220. name: "Micro",
  45221. height: math.unit(2, "inches")
  45222. },
  45223. {
  45224. name: "Normal",
  45225. height: math.unit(2 + 8/12, "feet"),
  45226. default: true
  45227. },
  45228. {
  45229. name: "Macro",
  45230. height: math.unit(106, "feet")
  45231. },
  45232. ]
  45233. ))
  45234. characterMakers.push(() => makeCharacter(
  45235. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45236. {
  45237. front: {
  45238. height: math.unit(5.67, "feet"),
  45239. weight: math.unit(135, "lb"),
  45240. name: "Front",
  45241. image: {
  45242. source: "./media/characters/sarel/front.svg",
  45243. extra: 865/788,
  45244. bottom: 97/962
  45245. }
  45246. },
  45247. back: {
  45248. height: math.unit(5.67, "feet"),
  45249. weight: math.unit(135, "lb"),
  45250. name: "Back",
  45251. image: {
  45252. source: "./media/characters/sarel/back.svg",
  45253. extra: 857/777,
  45254. bottom: 32/889
  45255. }
  45256. },
  45257. chozoan: {
  45258. height: math.unit(5.67, "feet"),
  45259. weight: math.unit(135, "lb"),
  45260. name: "Chozoan",
  45261. image: {
  45262. source: "./media/characters/sarel/chozoan.svg",
  45263. extra: 865/788,
  45264. bottom: 97/962
  45265. }
  45266. },
  45267. current: {
  45268. height: math.unit(5.67, "feet"),
  45269. weight: math.unit(135, "lb"),
  45270. name: "Current",
  45271. image: {
  45272. source: "./media/characters/sarel/current.svg",
  45273. extra: 865/788,
  45274. bottom: 97/962
  45275. }
  45276. },
  45277. head: {
  45278. height: math.unit(1.77, "feet"),
  45279. name: "Head",
  45280. image: {
  45281. source: "./media/characters/sarel/head.svg"
  45282. }
  45283. },
  45284. claws: {
  45285. height: math.unit(1.8, "feet"),
  45286. name: "Claws",
  45287. image: {
  45288. source: "./media/characters/sarel/claws.svg"
  45289. }
  45290. },
  45291. clawsAlt: {
  45292. height: math.unit(1.8, "feet"),
  45293. name: "Claws-alt",
  45294. image: {
  45295. source: "./media/characters/sarel/claws-alt.svg"
  45296. }
  45297. },
  45298. },
  45299. [
  45300. {
  45301. name: "Normal",
  45302. height: math.unit(5.67, "feet"),
  45303. default: true
  45304. },
  45305. ]
  45306. ))
  45307. characterMakers.push(() => makeCharacter(
  45308. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45309. {
  45310. front: {
  45311. height: math.unit(5500, "feet"),
  45312. name: "Front",
  45313. image: {
  45314. source: "./media/characters/alyonia/front.svg",
  45315. extra: 1200/1135,
  45316. bottom: 29/1229
  45317. }
  45318. },
  45319. back: {
  45320. height: math.unit(5500, "feet"),
  45321. name: "Back",
  45322. image: {
  45323. source: "./media/characters/alyonia/back.svg",
  45324. extra: 1205/1138,
  45325. bottom: 10/1215
  45326. }
  45327. },
  45328. },
  45329. [
  45330. {
  45331. name: "Small",
  45332. height: math.unit(10, "feet")
  45333. },
  45334. {
  45335. name: "Macro",
  45336. height: math.unit(500, "feet")
  45337. },
  45338. {
  45339. name: "Mega Macro",
  45340. height: math.unit(5500, "feet"),
  45341. default: true
  45342. },
  45343. {
  45344. name: "Mega Macro+",
  45345. height: math.unit(500000, "feet")
  45346. },
  45347. {
  45348. name: "Giga Macro",
  45349. height: math.unit(3000, "miles")
  45350. },
  45351. {
  45352. name: "Tera Macro",
  45353. height: math.unit(2.8e6, "miles")
  45354. },
  45355. {
  45356. name: "Galactic",
  45357. height: math.unit(120000, "lightyears")
  45358. },
  45359. ]
  45360. ))
  45361. characterMakers.push(() => makeCharacter(
  45362. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45363. {
  45364. werewolf: {
  45365. height: math.unit(8, "feet"),
  45366. weight: math.unit(425, "lb"),
  45367. name: "Werewolf",
  45368. image: {
  45369. source: "./media/characters/autumn/werewolf.svg",
  45370. extra: 2154/2031,
  45371. bottom: 160/2314
  45372. }
  45373. },
  45374. human: {
  45375. height: math.unit(5 + 8/12, "feet"),
  45376. weight: math.unit(150, "lb"),
  45377. name: "Human",
  45378. image: {
  45379. source: "./media/characters/autumn/human.svg",
  45380. extra: 1200/1149,
  45381. bottom: 30/1230
  45382. }
  45383. },
  45384. },
  45385. [
  45386. {
  45387. name: "Normal",
  45388. height: math.unit(8, "feet"),
  45389. default: true
  45390. },
  45391. ]
  45392. ))
  45393. characterMakers.push(() => makeCharacter(
  45394. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45395. {
  45396. front: {
  45397. height: math.unit(8 + 5/12, "feet"),
  45398. weight: math.unit(825, "lb"),
  45399. name: "Front",
  45400. image: {
  45401. source: "./media/characters/cobalt-charizard/front.svg",
  45402. extra: 1268/1155,
  45403. bottom: 122/1390
  45404. }
  45405. },
  45406. side: {
  45407. height: math.unit(8 + 5/12, "feet"),
  45408. weight: math.unit(825, "lb"),
  45409. name: "Side",
  45410. image: {
  45411. source: "./media/characters/cobalt-charizard/side.svg",
  45412. extra: 1348/1257,
  45413. bottom: 58/1406
  45414. }
  45415. },
  45416. gMax: {
  45417. height: math.unit(134 + 11/12, "feet"),
  45418. name: "G-Max",
  45419. image: {
  45420. source: "./media/characters/cobalt-charizard/g-max.svg",
  45421. extra: 1835/1541,
  45422. bottom: 151/1986
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(8 + 5/12, "feet"),
  45430. default: true
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45436. {
  45437. front: {
  45438. height: math.unit(6 + 3/12, "feet"),
  45439. weight: math.unit(210, "lb"),
  45440. name: "Front",
  45441. image: {
  45442. source: "./media/characters/stella/front.svg",
  45443. extra: 3549/3335,
  45444. bottom: 51/3600
  45445. }
  45446. },
  45447. },
  45448. [
  45449. {
  45450. name: "Normal",
  45451. height: math.unit(6 + 3/12, "feet"),
  45452. default: true
  45453. },
  45454. ]
  45455. ))
  45456. characterMakers.push(() => makeCharacter(
  45457. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45458. {
  45459. front: {
  45460. height: math.unit(5, "feet"),
  45461. weight: math.unit(90, "lb"),
  45462. name: "Front",
  45463. image: {
  45464. source: "./media/characters/riley-bishop/front.svg",
  45465. extra: 1450/1428,
  45466. bottom: 152/1602
  45467. }
  45468. },
  45469. },
  45470. [
  45471. {
  45472. name: "Normal",
  45473. height: math.unit(5, "feet"),
  45474. default: true
  45475. },
  45476. ]
  45477. ))
  45478. characterMakers.push(() => makeCharacter(
  45479. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45480. {
  45481. side: {
  45482. height: math.unit(8 + 2/12, "feet"),
  45483. weight: math.unit(500, "kg"),
  45484. name: "Side",
  45485. image: {
  45486. source: "./media/characters/theo-arcanine/side.svg",
  45487. extra: 1342/1074,
  45488. bottom: 111/1453
  45489. }
  45490. },
  45491. },
  45492. [
  45493. {
  45494. name: "Normal",
  45495. height: math.unit(8 + 2/12, "feet"),
  45496. default: true
  45497. },
  45498. ]
  45499. ))
  45500. characterMakers.push(() => makeCharacter(
  45501. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45502. {
  45503. front: {
  45504. height: math.unit(4, "feet"),
  45505. name: "Front",
  45506. image: {
  45507. source: "./media/characters/kali/front.svg",
  45508. extra: 1074/867,
  45509. bottom: 34/1108
  45510. }
  45511. },
  45512. back: {
  45513. height: math.unit(4, "feet"),
  45514. name: "Back",
  45515. image: {
  45516. source: "./media/characters/kali/back.svg",
  45517. extra: 1068/863,
  45518. bottom: 26/1094
  45519. }
  45520. },
  45521. frontAlt: {
  45522. height: math.unit(4, "feet"),
  45523. name: "Front (Alt)",
  45524. image: {
  45525. source: "./media/characters/kali/front-alt.svg",
  45526. extra: 1921/1357,
  45527. bottom: 70/1991
  45528. }
  45529. },
  45530. },
  45531. [
  45532. {
  45533. name: "Normal",
  45534. height: math.unit(4, "feet"),
  45535. default: true
  45536. },
  45537. {
  45538. name: "Big'vali",
  45539. height: math.unit(11, "feet")
  45540. },
  45541. {
  45542. name: "Macro",
  45543. height: math.unit(32, "meters")
  45544. },
  45545. {
  45546. name: "Macro+",
  45547. height: math.unit(150, "meters")
  45548. },
  45549. {
  45550. name: "Megamacro",
  45551. height: math.unit(7500, "meters")
  45552. },
  45553. {
  45554. name: "Megamacro+",
  45555. height: math.unit(80, "kilometers")
  45556. },
  45557. ]
  45558. ))
  45559. characterMakers.push(() => makeCharacter(
  45560. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45561. {
  45562. side: {
  45563. height: math.unit(5 + 11/12, "feet"),
  45564. weight: math.unit(236, "lb"),
  45565. name: "Side",
  45566. image: {
  45567. source: "./media/characters/gapp/side.svg",
  45568. extra: 775/340,
  45569. bottom: 58/833
  45570. }
  45571. },
  45572. mouth: {
  45573. height: math.unit(2.98, "feet"),
  45574. name: "Mouth",
  45575. image: {
  45576. source: "./media/characters/gapp/mouth.svg"
  45577. }
  45578. },
  45579. },
  45580. [
  45581. {
  45582. name: "Normal",
  45583. height: math.unit(5 + 1/12, "feet"),
  45584. default: true
  45585. },
  45586. ]
  45587. ))
  45588. characterMakers.push(() => makeCharacter(
  45589. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45590. {
  45591. front: {
  45592. height: math.unit(6, "feet"),
  45593. name: "Front",
  45594. image: {
  45595. source: "./media/characters/persephone/front.svg",
  45596. extra: 1895/1717,
  45597. bottom: 96/1991
  45598. }
  45599. },
  45600. back: {
  45601. height: math.unit(6, "feet"),
  45602. name: "Back",
  45603. image: {
  45604. source: "./media/characters/persephone/back.svg",
  45605. extra: 1868/1679,
  45606. bottom: 26/1894
  45607. }
  45608. },
  45609. casual: {
  45610. height: math.unit(6, "feet"),
  45611. name: "Casual",
  45612. image: {
  45613. source: "./media/characters/persephone/casual.svg",
  45614. extra: 1713/1541,
  45615. bottom: 76/1789
  45616. }
  45617. },
  45618. gaming: {
  45619. height: math.unit(3.55, "feet"),
  45620. name: "Gaming",
  45621. image: {
  45622. source: "./media/characters/persephone/gaming.svg",
  45623. extra: 1242/1038,
  45624. bottom: 66/1308
  45625. }
  45626. },
  45627. head: {
  45628. height: math.unit(2.15, "feet"),
  45629. name: "😐",
  45630. image: {
  45631. source: "./media/characters/persephone/head.svg"
  45632. }
  45633. },
  45634. talking: {
  45635. height: math.unit(2.5, "feet"),
  45636. name: "💬",
  45637. image: {
  45638. source: "./media/characters/persephone/talking.svg"
  45639. }
  45640. },
  45641. hmm: {
  45642. height: math.unit(2.28, "feet"),
  45643. name: "🤨",
  45644. image: {
  45645. source: "./media/characters/persephone/hmm.svg"
  45646. }
  45647. },
  45648. },
  45649. [
  45650. {
  45651. name: "Human Size",
  45652. height: math.unit(6, "feet")
  45653. },
  45654. {
  45655. name: "Big Steppy",
  45656. height: math.unit(600, "meters"),
  45657. default: true
  45658. },
  45659. {
  45660. name: "Galaxy Brain",
  45661. height: math.unit(1, "zettameter")
  45662. },
  45663. ]
  45664. ))
  45665. characterMakers.push(() => makeCharacter(
  45666. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45667. {
  45668. front: {
  45669. height: math.unit(1.85, "meters"),
  45670. name: "Front",
  45671. image: {
  45672. source: "./media/characters/riley-foxthing/front.svg",
  45673. extra: 1495/1354,
  45674. bottom: 122/1617
  45675. }
  45676. },
  45677. frontAlt: {
  45678. height: math.unit(1.85, "meters"),
  45679. name: "Front (Alt)",
  45680. image: {
  45681. source: "./media/characters/riley-foxthing/front-alt.svg",
  45682. extra: 1572/1389,
  45683. bottom: 116/1688
  45684. }
  45685. },
  45686. },
  45687. [
  45688. {
  45689. name: "Normal Sized",
  45690. height: math.unit(1.85, "meters"),
  45691. default: true
  45692. },
  45693. {
  45694. name: "Quite Sizable",
  45695. height: math.unit(5, "meters")
  45696. },
  45697. {
  45698. name: "Rather Large",
  45699. height: math.unit(20, "meters")
  45700. },
  45701. {
  45702. name: "Macro",
  45703. height: math.unit(450, "meters")
  45704. },
  45705. {
  45706. name: "Giga",
  45707. height: math.unit(5, "km")
  45708. },
  45709. ]
  45710. ))
  45711. characterMakers.push(() => makeCharacter(
  45712. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45713. {
  45714. front: {
  45715. height: math.unit(6, "feet"),
  45716. weight: math.unit(200, "lb"),
  45717. name: "Front",
  45718. image: {
  45719. source: "./media/characters/blizzard/front.svg",
  45720. extra: 1136/990,
  45721. bottom: 136/1272
  45722. }
  45723. },
  45724. back: {
  45725. height: math.unit(6, "feet"),
  45726. weight: math.unit(200, "lb"),
  45727. name: "Back",
  45728. image: {
  45729. source: "./media/characters/blizzard/back.svg",
  45730. extra: 1175/1034,
  45731. bottom: 97/1272
  45732. }
  45733. },
  45734. sitting: {
  45735. height: math.unit(3.725, "feet"),
  45736. weight: math.unit(200, "lb"),
  45737. name: "Sitting",
  45738. image: {
  45739. source: "./media/characters/blizzard/sitting.svg",
  45740. extra: 581/485,
  45741. bottom: 90/671
  45742. }
  45743. },
  45744. frontWizard: {
  45745. height: math.unit(7.9, "feet"),
  45746. weight: math.unit(200, "lb"),
  45747. name: "Front (Wizard)",
  45748. image: {
  45749. source: "./media/characters/blizzard/front-wizard.svg"
  45750. }
  45751. },
  45752. backWizard: {
  45753. height: math.unit(7.9, "feet"),
  45754. weight: math.unit(200, "lb"),
  45755. name: "Back (Wizard)",
  45756. image: {
  45757. source: "./media/characters/blizzard/back-wizard.svg"
  45758. }
  45759. },
  45760. frontNsfw: {
  45761. height: math.unit(6, "feet"),
  45762. weight: math.unit(200, "lb"),
  45763. name: "Front (NSFW)",
  45764. image: {
  45765. source: "./media/characters/blizzard/front-nsfw.svg",
  45766. extra: 1136/990,
  45767. bottom: 136/1272
  45768. }
  45769. },
  45770. backNsfw: {
  45771. height: math.unit(6, "feet"),
  45772. weight: math.unit(200, "lb"),
  45773. name: "Back (NSFW)",
  45774. image: {
  45775. source: "./media/characters/blizzard/back-nsfw.svg",
  45776. extra: 1175/1034,
  45777. bottom: 97/1272
  45778. }
  45779. },
  45780. sittingNsfw: {
  45781. height: math.unit(3.725, "feet"),
  45782. weight: math.unit(200, "lb"),
  45783. name: "Sitting (NSFW)",
  45784. image: {
  45785. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45786. extra: 581/485,
  45787. bottom: 90/671
  45788. }
  45789. },
  45790. wizardFrontNsfw: {
  45791. height: math.unit(7.9, "feet"),
  45792. weight: math.unit(200, "lb"),
  45793. name: "Wizard (Front, NSFW)",
  45794. image: {
  45795. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45796. }
  45797. },
  45798. },
  45799. [
  45800. {
  45801. name: "Normal",
  45802. height: math.unit(6, "feet"),
  45803. default: true
  45804. },
  45805. ]
  45806. ))
  45807. characterMakers.push(() => makeCharacter(
  45808. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45809. {
  45810. front: {
  45811. height: math.unit(5 + 2/12, "feet"),
  45812. name: "Front",
  45813. image: {
  45814. source: "./media/characters/lumi/front.svg",
  45815. extra: 1328/1268,
  45816. bottom: 103/1431
  45817. }
  45818. },
  45819. back: {
  45820. height: math.unit(5 + 2/12, "feet"),
  45821. name: "Back",
  45822. image: {
  45823. source: "./media/characters/lumi/back.svg",
  45824. extra: 1381/1327,
  45825. bottom: 43/1424
  45826. }
  45827. },
  45828. },
  45829. [
  45830. {
  45831. name: "Normal",
  45832. height: math.unit(5 + 2/12, "feet"),
  45833. default: true
  45834. },
  45835. ]
  45836. ))
  45837. characterMakers.push(() => makeCharacter(
  45838. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45839. {
  45840. front: {
  45841. height: math.unit(5 + 9/12, "feet"),
  45842. name: "Front",
  45843. image: {
  45844. source: "./media/characters/aliya-cotton/front.svg",
  45845. extra: 577/564,
  45846. bottom: 29/606
  45847. }
  45848. },
  45849. },
  45850. [
  45851. {
  45852. name: "Normal",
  45853. height: math.unit(5 + 9/12, "feet"),
  45854. default: true
  45855. },
  45856. ]
  45857. ))
  45858. characterMakers.push(() => makeCharacter(
  45859. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45860. {
  45861. front: {
  45862. height: math.unit(2.7, "meters"),
  45863. weight: math.unit(25000, "lb"),
  45864. name: "Front",
  45865. image: {
  45866. source: "./media/characters/noah-luxray/front.svg",
  45867. extra: 1644/825,
  45868. bottom: 339/1983
  45869. }
  45870. },
  45871. side: {
  45872. height: math.unit(2.97, "meters"),
  45873. weight: math.unit(25000, "lb"),
  45874. name: "Side",
  45875. image: {
  45876. source: "./media/characters/noah-luxray/side.svg",
  45877. extra: 1319/650,
  45878. bottom: 163/1482
  45879. }
  45880. },
  45881. dick: {
  45882. height: math.unit(7.4, "feet"),
  45883. weight: math.unit(2500, "lb"),
  45884. name: "Dick",
  45885. image: {
  45886. source: "./media/characters/noah-luxray/dick.svg"
  45887. }
  45888. },
  45889. dickAlt: {
  45890. height: math.unit(10.83, "feet"),
  45891. weight: math.unit(2500, "lb"),
  45892. name: "Dick-alt",
  45893. image: {
  45894. source: "./media/characters/noah-luxray/dick-alt.svg"
  45895. }
  45896. },
  45897. },
  45898. [
  45899. {
  45900. name: "BIG",
  45901. height: math.unit(2.7, "meters"),
  45902. default: true
  45903. },
  45904. ]
  45905. ))
  45906. characterMakers.push(() => makeCharacter(
  45907. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45908. {
  45909. standing: {
  45910. height: math.unit(183, "cm"),
  45911. weight: math.unit(68, "kg"),
  45912. name: "Standing",
  45913. image: {
  45914. source: "./media/characters/arion/standing.svg",
  45915. extra: 1869/1807,
  45916. bottom: 93/1962
  45917. }
  45918. },
  45919. reclining: {
  45920. height: math.unit(70.5, "cm"),
  45921. weight: math.unit(68, "lb"),
  45922. name: "Reclining",
  45923. image: {
  45924. source: "./media/characters/arion/reclining.svg",
  45925. extra: 937/870,
  45926. bottom: 63/1000
  45927. }
  45928. },
  45929. },
  45930. [
  45931. {
  45932. name: "Colossus Size, Low",
  45933. height: math.unit(33, "meters"),
  45934. default: true
  45935. },
  45936. {
  45937. name: "Colossus Size, Mid",
  45938. height: math.unit(52, "meters")
  45939. },
  45940. {
  45941. name: "Colossus Size, High",
  45942. height: math.unit(60, "meters")
  45943. },
  45944. {
  45945. name: "Titan Size, Low",
  45946. height: math.unit(91, "meters"),
  45947. },
  45948. {
  45949. name: "Titan Size, Mid",
  45950. height: math.unit(122, "meters")
  45951. },
  45952. {
  45953. name: "Titan Size, High",
  45954. height: math.unit(162, "meters")
  45955. },
  45956. ]
  45957. ))
  45958. characterMakers.push(() => makeCharacter(
  45959. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45960. {
  45961. front: {
  45962. height: math.unit(53, "meters"),
  45963. name: "Front",
  45964. image: {
  45965. source: "./media/characters/stellar-marbey/front.svg",
  45966. extra: 1913/1805,
  45967. bottom: 92/2005
  45968. }
  45969. },
  45970. back: {
  45971. height: math.unit(53, "meters"),
  45972. name: "Back",
  45973. image: {
  45974. source: "./media/characters/stellar-marbey/back.svg",
  45975. extra: 1960/1851,
  45976. bottom: 28/1988
  45977. }
  45978. },
  45979. mouth: {
  45980. height: math.unit(3.5, "meters"),
  45981. name: "Mouth",
  45982. image: {
  45983. source: "./media/characters/stellar-marbey/mouth.svg"
  45984. }
  45985. },
  45986. },
  45987. [
  45988. {
  45989. name: "Macro",
  45990. height: math.unit(53, "meters"),
  45991. default: true
  45992. },
  45993. ]
  45994. ))
  45995. characterMakers.push(() => makeCharacter(
  45996. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45997. {
  45998. front: {
  45999. height: math.unit(8 + 1/12, "feet"),
  46000. weight: math.unit(233, "lb"),
  46001. name: "Front",
  46002. image: {
  46003. source: "./media/characters/matsu/front.svg",
  46004. extra: 832/772,
  46005. bottom: 40/872
  46006. }
  46007. },
  46008. back: {
  46009. height: math.unit(8 + 1/12, "feet"),
  46010. weight: math.unit(233, "lb"),
  46011. name: "Back",
  46012. image: {
  46013. source: "./media/characters/matsu/back.svg",
  46014. extra: 839/780,
  46015. bottom: 47/886
  46016. }
  46017. },
  46018. },
  46019. [
  46020. {
  46021. name: "Normal",
  46022. height: math.unit(8 + 1/12, "feet"),
  46023. default: true
  46024. },
  46025. ]
  46026. ))
  46027. characterMakers.push(() => makeCharacter(
  46028. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46029. {
  46030. front: {
  46031. height: math.unit(4, "feet"),
  46032. weight: math.unit(148, "lb"),
  46033. name: "Front",
  46034. image: {
  46035. source: "./media/characters/thiz/front.svg",
  46036. extra: 1913/1748,
  46037. bottom: 62/1975
  46038. }
  46039. },
  46040. },
  46041. [
  46042. {
  46043. name: "Normal",
  46044. height: math.unit(4, "feet"),
  46045. default: true
  46046. },
  46047. ]
  46048. ))
  46049. characterMakers.push(() => makeCharacter(
  46050. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46051. {
  46052. front: {
  46053. height: math.unit(7 + 6/12, "feet"),
  46054. weight: math.unit(267, "lb"),
  46055. name: "Front",
  46056. image: {
  46057. source: "./media/characters/marcel/front.svg",
  46058. extra: 1221/1096,
  46059. bottom: 76/1297
  46060. }
  46061. },
  46062. },
  46063. [
  46064. {
  46065. name: "Normal",
  46066. height: math.unit(7 + 6/12, "feet"),
  46067. default: true
  46068. },
  46069. ]
  46070. ))
  46071. characterMakers.push(() => makeCharacter(
  46072. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46073. {
  46074. side: {
  46075. height: math.unit(42, "meters"),
  46076. name: "Side",
  46077. image: {
  46078. source: "./media/characters/flake/side.svg",
  46079. extra: 1525/1306,
  46080. bottom: 209/1734
  46081. }
  46082. },
  46083. },
  46084. [
  46085. {
  46086. name: "Normal",
  46087. height: math.unit(42, "meters"),
  46088. default: true
  46089. },
  46090. ]
  46091. ))
  46092. characterMakers.push(() => makeCharacter(
  46093. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46094. {
  46095. dressed: {
  46096. height: math.unit(6 + 4/12, "feet"),
  46097. weight: math.unit(520, "lb"),
  46098. name: "Dressed",
  46099. image: {
  46100. source: "./media/characters/someonne/dressed.svg",
  46101. extra: 1020/1010,
  46102. bottom: 178/1198
  46103. }
  46104. },
  46105. undressed: {
  46106. height: math.unit(6 + 4/12, "feet"),
  46107. weight: math.unit(520, "lb"),
  46108. name: "Undressed",
  46109. image: {
  46110. source: "./media/characters/someonne/undressed.svg",
  46111. extra: 1019/1014,
  46112. bottom: 169/1188
  46113. }
  46114. },
  46115. },
  46116. [
  46117. {
  46118. name: "Normal",
  46119. height: math.unit(6 + 4/12, "feet"),
  46120. default: true
  46121. },
  46122. ]
  46123. ))
  46124. characterMakers.push(() => makeCharacter(
  46125. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46126. {
  46127. front: {
  46128. height: math.unit(3, "feet"),
  46129. weight: math.unit(30, "lb"),
  46130. name: "Front",
  46131. image: {
  46132. source: "./media/characters/till/front.svg",
  46133. extra: 892/823,
  46134. bottom: 55/947
  46135. }
  46136. },
  46137. },
  46138. [
  46139. {
  46140. name: "Normal",
  46141. height: math.unit(3, "feet"),
  46142. default: true
  46143. },
  46144. ]
  46145. ))
  46146. characterMakers.push(() => makeCharacter(
  46147. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46148. {
  46149. front: {
  46150. height: math.unit(9 + 8/12, "feet"),
  46151. weight: math.unit(800, "lb"),
  46152. name: "Front",
  46153. image: {
  46154. source: "./media/characters/sydney-heki/front.svg",
  46155. extra: 1360/1300,
  46156. bottom: 22/1382
  46157. }
  46158. },
  46159. back: {
  46160. height: math.unit(9 + 8/12, "feet"),
  46161. weight: math.unit(800, "lb"),
  46162. name: "Back",
  46163. image: {
  46164. source: "./media/characters/sydney-heki/back.svg",
  46165. extra: 1356/1293,
  46166. bottom: 12/1368
  46167. }
  46168. },
  46169. frontDressed: {
  46170. height: math.unit(9 + 8/12, "feet"),
  46171. weight: math.unit(800, "lb"),
  46172. name: "Front-dressed",
  46173. image: {
  46174. source: "./media/characters/sydney-heki/front-dressed.svg",
  46175. extra: 1360/1300,
  46176. bottom: 22/1382
  46177. }
  46178. },
  46179. },
  46180. [
  46181. {
  46182. name: "Normal",
  46183. height: math.unit(9 + 8/12, "feet"),
  46184. default: true
  46185. },
  46186. {
  46187. name: "Macro",
  46188. height: math.unit(500, "feet")
  46189. },
  46190. {
  46191. name: "Megamacro",
  46192. height: math.unit(3.6, "miles")
  46193. },
  46194. ]
  46195. ))
  46196. characterMakers.push(() => makeCharacter(
  46197. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46198. {
  46199. front: {
  46200. height: math.unit(200, "cm"),
  46201. weight: math.unit(250, "lb"),
  46202. name: "Front",
  46203. image: {
  46204. source: "./media/characters/fowler-karlsson/front.svg",
  46205. extra: 897/845,
  46206. bottom: 123/1020
  46207. }
  46208. },
  46209. back: {
  46210. height: math.unit(200, "cm"),
  46211. weight: math.unit(250, "lb"),
  46212. name: "Back",
  46213. image: {
  46214. source: "./media/characters/fowler-karlsson/back.svg",
  46215. extra: 999/944,
  46216. bottom: 26/1025
  46217. }
  46218. },
  46219. dick: {
  46220. height: math.unit(1.92, "feet"),
  46221. weight: math.unit(150, "lb"),
  46222. name: "Dick",
  46223. image: {
  46224. source: "./media/characters/fowler-karlsson/dick.svg"
  46225. }
  46226. },
  46227. },
  46228. [
  46229. {
  46230. name: "Normal",
  46231. height: math.unit(200, "cm"),
  46232. default: true
  46233. },
  46234. {
  46235. name: "Smaller Macro",
  46236. height: math.unit(90, "m")
  46237. },
  46238. {
  46239. name: "Macro",
  46240. height: math.unit(150, "m")
  46241. },
  46242. {
  46243. name: "Bigger Macro",
  46244. height: math.unit(300, "m")
  46245. },
  46246. ]
  46247. ))
  46248. characterMakers.push(() => makeCharacter(
  46249. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46250. {
  46251. side: {
  46252. height: math.unit(8 + 2/12, "feet"),
  46253. weight: math.unit(1, "tonne"),
  46254. name: "Side",
  46255. image: {
  46256. source: "./media/characters/rylide/side.svg",
  46257. extra: 1318/1034,
  46258. bottom: 106/1424
  46259. }
  46260. },
  46261. sitting: {
  46262. height: math.unit(303, "cm"),
  46263. weight: math.unit(1, "tonne"),
  46264. name: "Sitting",
  46265. image: {
  46266. source: "./media/characters/rylide/sitting.svg",
  46267. extra: 1303/1103,
  46268. bottom: 36/1339
  46269. }
  46270. },
  46271. },
  46272. [
  46273. {
  46274. name: "Normal",
  46275. height: math.unit(8 + 2/12, "feet"),
  46276. default: true
  46277. },
  46278. ]
  46279. ))
  46280. characterMakers.push(() => makeCharacter(
  46281. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46282. {
  46283. front: {
  46284. height: math.unit(5 + 10/12, "feet"),
  46285. weight: math.unit(160, "lb"),
  46286. name: "Front",
  46287. image: {
  46288. source: "./media/characters/pudask/front.svg",
  46289. extra: 1616/1590,
  46290. bottom: 161/1777
  46291. }
  46292. },
  46293. },
  46294. [
  46295. {
  46296. name: "Ferret Height",
  46297. height: math.unit(2 + 5/12, "feet")
  46298. },
  46299. {
  46300. name: "Canon Height",
  46301. height: math.unit(5 + 10/12, "feet"),
  46302. default: true
  46303. },
  46304. ]
  46305. ))
  46306. characterMakers.push(() => makeCharacter(
  46307. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46308. {
  46309. front: {
  46310. height: math.unit(3 + 6/12, "feet"),
  46311. weight: math.unit(60, "lb"),
  46312. name: "Front",
  46313. image: {
  46314. source: "./media/characters/ramita/front.svg",
  46315. extra: 1402/1232,
  46316. bottom: 62/1464
  46317. }
  46318. },
  46319. dressed: {
  46320. height: math.unit(3 + 6/12, "feet"),
  46321. weight: math.unit(60, "lb"),
  46322. name: "Dressed",
  46323. image: {
  46324. source: "./media/characters/ramita/dressed.svg",
  46325. extra: 1534/1249,
  46326. bottom: 50/1584
  46327. }
  46328. },
  46329. },
  46330. [
  46331. {
  46332. name: "Normal",
  46333. height: math.unit(3 + 6/12, "feet"),
  46334. default: true
  46335. },
  46336. ]
  46337. ))
  46338. characterMakers.push(() => makeCharacter(
  46339. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46340. {
  46341. front: {
  46342. height: math.unit(8, "feet"),
  46343. name: "Front",
  46344. image: {
  46345. source: "./media/characters/ark/front.svg",
  46346. extra: 772/693,
  46347. bottom: 45/817
  46348. }
  46349. },
  46350. },
  46351. [
  46352. {
  46353. name: "Normal",
  46354. height: math.unit(8, "feet"),
  46355. default: true
  46356. },
  46357. ]
  46358. ))
  46359. characterMakers.push(() => makeCharacter(
  46360. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46361. {
  46362. front: {
  46363. height: math.unit(6, "feet"),
  46364. weight: math.unit(250, "lb"),
  46365. volume: math.unit(5/8, "gallons"),
  46366. name: "Front",
  46367. image: {
  46368. source: "./media/characters/ludwig-horn/front.svg",
  46369. extra: 1782/1635,
  46370. bottom: 96/1878
  46371. }
  46372. },
  46373. back: {
  46374. height: math.unit(6, "feet"),
  46375. weight: math.unit(250, "lb"),
  46376. volume: math.unit(5/8, "gallons"),
  46377. name: "Back",
  46378. image: {
  46379. source: "./media/characters/ludwig-horn/back.svg",
  46380. extra: 1874/1729,
  46381. bottom: 27/1901
  46382. }
  46383. },
  46384. dick: {
  46385. height: math.unit(1.05, "feet"),
  46386. weight: math.unit(15, "lb"),
  46387. volume: math.unit(5/8, "gallons"),
  46388. name: "Dick",
  46389. image: {
  46390. source: "./media/characters/ludwig-horn/dick.svg"
  46391. }
  46392. },
  46393. },
  46394. [
  46395. {
  46396. name: "Small",
  46397. height: math.unit(6, "feet")
  46398. },
  46399. {
  46400. name: "Typical",
  46401. height: math.unit(12, "feet"),
  46402. default: true
  46403. },
  46404. {
  46405. name: "Building",
  46406. height: math.unit(80, "feet")
  46407. },
  46408. {
  46409. name: "Town",
  46410. height: math.unit(800, "feet")
  46411. },
  46412. {
  46413. name: "Kingdom",
  46414. height: math.unit(80000, "feet")
  46415. },
  46416. {
  46417. name: "Planet",
  46418. height: math.unit(8000000, "feet")
  46419. },
  46420. {
  46421. name: "Universe",
  46422. height: math.unit(8000000000, "feet")
  46423. },
  46424. {
  46425. name: "Transcended",
  46426. height: math.unit(8e27, "feet")
  46427. },
  46428. ]
  46429. ))
  46430. characterMakers.push(() => makeCharacter(
  46431. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46432. {
  46433. front: {
  46434. height: math.unit(5, "feet"),
  46435. weight: math.unit(50, "kg"),
  46436. name: "Front",
  46437. image: {
  46438. source: "./media/characters/biot-avery/front.svg",
  46439. extra: 1295/1232,
  46440. bottom: 86/1381
  46441. }
  46442. },
  46443. },
  46444. [
  46445. {
  46446. name: "Normal",
  46447. height: math.unit(5, "feet"),
  46448. default: true
  46449. },
  46450. ]
  46451. ))
  46452. characterMakers.push(() => makeCharacter(
  46453. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46454. {
  46455. front: {
  46456. height: math.unit(6, "feet"),
  46457. name: "Front",
  46458. image: {
  46459. source: "./media/characters/kitsune-kiro/front.svg",
  46460. extra: 1270/1158,
  46461. bottom: 42/1312
  46462. }
  46463. },
  46464. frontAlt: {
  46465. height: math.unit(6, "feet"),
  46466. name: "Front-alt",
  46467. image: {
  46468. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46469. extra: 1130/1081,
  46470. bottom: 36/1166
  46471. }
  46472. },
  46473. },
  46474. [
  46475. {
  46476. name: "Smol",
  46477. height: math.unit(3, "feet")
  46478. },
  46479. {
  46480. name: "Normal",
  46481. height: math.unit(6, "feet"),
  46482. default: true
  46483. },
  46484. ]
  46485. ))
  46486. characterMakers.push(() => makeCharacter(
  46487. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46488. {
  46489. front: {
  46490. height: math.unit(6, "feet"),
  46491. weight: math.unit(125, "lb"),
  46492. name: "Front",
  46493. image: {
  46494. source: "./media/characters/jack-thatcher/front.svg",
  46495. extra: 1474/1370,
  46496. bottom: 26/1500
  46497. }
  46498. },
  46499. back: {
  46500. height: math.unit(6, "feet"),
  46501. weight: math.unit(125, "lb"),
  46502. name: "Back",
  46503. image: {
  46504. source: "./media/characters/jack-thatcher/back.svg",
  46505. extra: 1489/1384,
  46506. bottom: 18/1507
  46507. }
  46508. },
  46509. },
  46510. [
  46511. {
  46512. name: "Normal",
  46513. height: math.unit(6, "feet"),
  46514. default: true
  46515. },
  46516. {
  46517. name: "Macro",
  46518. height: math.unit(75, "feet")
  46519. },
  46520. {
  46521. name: "Macro-er",
  46522. height: math.unit(250, "feet")
  46523. },
  46524. ]
  46525. ))
  46526. characterMakers.push(() => makeCharacter(
  46527. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46528. {
  46529. front: {
  46530. height: math.unit(7, "feet"),
  46531. weight: math.unit(110, "kg"),
  46532. name: "Front",
  46533. image: {
  46534. source: "./media/characters/max-hyper/front.svg",
  46535. extra: 1969/1881,
  46536. bottom: 49/2018
  46537. }
  46538. },
  46539. },
  46540. [
  46541. {
  46542. name: "Normal",
  46543. height: math.unit(7, "feet"),
  46544. default: true
  46545. },
  46546. ]
  46547. ))
  46548. characterMakers.push(() => makeCharacter(
  46549. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46550. {
  46551. front: {
  46552. height: math.unit(5 + 5/12, "feet"),
  46553. weight: math.unit(160, "lb"),
  46554. name: "Front",
  46555. image: {
  46556. source: "./media/characters/spook/front.svg",
  46557. extra: 794/791,
  46558. bottom: 54/848
  46559. }
  46560. },
  46561. back: {
  46562. height: math.unit(5 + 5/12, "feet"),
  46563. weight: math.unit(160, "lb"),
  46564. name: "Back",
  46565. image: {
  46566. source: "./media/characters/spook/back.svg",
  46567. extra: 812/798,
  46568. bottom: 32/844
  46569. }
  46570. },
  46571. },
  46572. [
  46573. {
  46574. name: "Normal",
  46575. height: math.unit(5 + 5/12, "feet"),
  46576. default: true
  46577. },
  46578. ]
  46579. ))
  46580. characterMakers.push(() => makeCharacter(
  46581. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46582. {
  46583. front: {
  46584. height: math.unit(18, "feet"),
  46585. name: "Front",
  46586. image: {
  46587. source: "./media/characters/xeaduulix/front.svg",
  46588. extra: 1380/1166,
  46589. bottom: 110/1490
  46590. }
  46591. },
  46592. back: {
  46593. height: math.unit(18, "feet"),
  46594. name: "Back",
  46595. image: {
  46596. source: "./media/characters/xeaduulix/back.svg",
  46597. extra: 1592/1170,
  46598. bottom: 128/1720
  46599. }
  46600. },
  46601. frontNsfw: {
  46602. height: math.unit(18, "feet"),
  46603. name: "Front (NSFW)",
  46604. image: {
  46605. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46606. extra: 1380/1166,
  46607. bottom: 110/1490
  46608. }
  46609. },
  46610. backNsfw: {
  46611. height: math.unit(18, "feet"),
  46612. name: "Back (NSFW)",
  46613. image: {
  46614. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46615. extra: 1592/1170,
  46616. bottom: 128/1720
  46617. }
  46618. },
  46619. },
  46620. [
  46621. {
  46622. name: "Normal",
  46623. height: math.unit(18, "feet"),
  46624. default: true
  46625. },
  46626. ]
  46627. ))
  46628. characterMakers.push(() => makeCharacter(
  46629. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46630. {
  46631. spreadWings: {
  46632. height: math.unit(20, "feet"),
  46633. name: "Spread Wings",
  46634. image: {
  46635. source: "./media/characters/fledge/spread-wings.svg",
  46636. extra: 693/635,
  46637. bottom: 26/719
  46638. }
  46639. },
  46640. front: {
  46641. height: math.unit(20, "feet"),
  46642. name: "Front",
  46643. image: {
  46644. source: "./media/characters/fledge/front.svg",
  46645. extra: 684/637,
  46646. bottom: 18/702
  46647. }
  46648. },
  46649. frontAlt: {
  46650. height: math.unit(20, "feet"),
  46651. name: "Front (Alt)",
  46652. image: {
  46653. source: "./media/characters/fledge/front-alt.svg",
  46654. extra: 708/664,
  46655. bottom: 13/721
  46656. }
  46657. },
  46658. back: {
  46659. height: math.unit(20, "feet"),
  46660. name: "Back",
  46661. image: {
  46662. source: "./media/characters/fledge/back.svg",
  46663. extra: 718/634,
  46664. bottom: 22/740
  46665. }
  46666. },
  46667. head: {
  46668. height: math.unit(5.55, "feet"),
  46669. name: "Head",
  46670. image: {
  46671. source: "./media/characters/fledge/head.svg"
  46672. }
  46673. },
  46674. headAlt: {
  46675. height: math.unit(5.1, "feet"),
  46676. name: "Head (Alt)",
  46677. image: {
  46678. source: "./media/characters/fledge/head-alt.svg"
  46679. }
  46680. },
  46681. },
  46682. [
  46683. {
  46684. name: "Small",
  46685. height: math.unit(6 + 2/12, "feet")
  46686. },
  46687. {
  46688. name: "Big",
  46689. height: math.unit(20, "feet"),
  46690. default: true
  46691. },
  46692. {
  46693. name: "Giant",
  46694. height: math.unit(100, "feet")
  46695. },
  46696. {
  46697. name: "Macro",
  46698. height: math.unit(200, "feet")
  46699. },
  46700. ]
  46701. ))
  46702. characterMakers.push(() => makeCharacter(
  46703. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46704. {
  46705. front: {
  46706. height: math.unit(1, "meter"),
  46707. name: "Front",
  46708. image: {
  46709. source: "./media/characters/atlas-morenai/front.svg",
  46710. extra: 1275/1043,
  46711. bottom: 19/1294
  46712. }
  46713. },
  46714. back: {
  46715. height: math.unit(1, "meter"),
  46716. name: "Back",
  46717. image: {
  46718. source: "./media/characters/atlas-morenai/back.svg",
  46719. extra: 1141/1001,
  46720. bottom: 25/1166
  46721. }
  46722. },
  46723. },
  46724. [
  46725. {
  46726. name: "Normal",
  46727. height: math.unit(1, "meter"),
  46728. default: true
  46729. },
  46730. {
  46731. name: "Magic-Infused",
  46732. height: math.unit(5, "meters")
  46733. },
  46734. ]
  46735. ))
  46736. characterMakers.push(() => makeCharacter(
  46737. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46738. {
  46739. front: {
  46740. height: math.unit(5, "meters"),
  46741. name: "Front",
  46742. image: {
  46743. source: "./media/characters/cintia/front.svg",
  46744. extra: 1312/1228,
  46745. bottom: 38/1350
  46746. }
  46747. },
  46748. back: {
  46749. height: math.unit(5, "meters"),
  46750. name: "Back",
  46751. image: {
  46752. source: "./media/characters/cintia/back.svg",
  46753. extra: 1260/1166,
  46754. bottom: 98/1358
  46755. }
  46756. },
  46757. frontDick: {
  46758. height: math.unit(5, "meters"),
  46759. name: "Front (Dick)",
  46760. image: {
  46761. source: "./media/characters/cintia/front-dick.svg",
  46762. extra: 1312/1228,
  46763. bottom: 38/1350
  46764. }
  46765. },
  46766. backDick: {
  46767. height: math.unit(5, "meters"),
  46768. name: "Back (Dick)",
  46769. image: {
  46770. source: "./media/characters/cintia/back-dick.svg",
  46771. extra: 1260/1166,
  46772. bottom: 98/1358
  46773. }
  46774. },
  46775. bust: {
  46776. height: math.unit(1.97, "meters"),
  46777. name: "Bust",
  46778. image: {
  46779. source: "./media/characters/cintia/bust.svg",
  46780. extra: 617/565,
  46781. bottom: 0/617
  46782. }
  46783. },
  46784. },
  46785. [
  46786. {
  46787. name: "Normal",
  46788. height: math.unit(5, "meters"),
  46789. default: true
  46790. },
  46791. ]
  46792. ))
  46793. characterMakers.push(() => makeCharacter(
  46794. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46795. {
  46796. side: {
  46797. height: math.unit(100, "feet"),
  46798. name: "Side",
  46799. image: {
  46800. source: "./media/characters/denora/side.svg",
  46801. extra: 875/803,
  46802. bottom: 9/884
  46803. }
  46804. },
  46805. },
  46806. [
  46807. {
  46808. name: "Standard",
  46809. height: math.unit(100, "feet"),
  46810. default: true
  46811. },
  46812. {
  46813. name: "Grand",
  46814. height: math.unit(1000, "feet")
  46815. },
  46816. {
  46817. name: "Conquering",
  46818. height: math.unit(10000, "feet")
  46819. },
  46820. ]
  46821. ))
  46822. characterMakers.push(() => makeCharacter(
  46823. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46824. {
  46825. dressed: {
  46826. height: math.unit(8 + 5/12, "feet"),
  46827. weight: math.unit(700, "lb"),
  46828. name: "Dressed",
  46829. image: {
  46830. source: "./media/characters/kiva/dressed.svg",
  46831. extra: 1102/1055,
  46832. bottom: 60/1162
  46833. }
  46834. },
  46835. nude: {
  46836. height: math.unit(8 + 5/12, "feet"),
  46837. weight: math.unit(700, "lb"),
  46838. name: "Nude",
  46839. image: {
  46840. source: "./media/characters/kiva/nude.svg",
  46841. extra: 1102/1055,
  46842. bottom: 60/1162
  46843. }
  46844. },
  46845. },
  46846. [
  46847. {
  46848. name: "Base Height",
  46849. height: math.unit(8 + 5/12, "feet"),
  46850. default: true
  46851. },
  46852. {
  46853. name: "Macro",
  46854. height: math.unit(100, "feet")
  46855. },
  46856. {
  46857. name: "Max",
  46858. height: math.unit(3280, "feet")
  46859. },
  46860. ]
  46861. ))
  46862. characterMakers.push(() => makeCharacter(
  46863. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46864. {
  46865. front: {
  46866. height: math.unit(6 + 8/12, "feet"),
  46867. weight: math.unit(250, "lb"),
  46868. name: "Front",
  46869. image: {
  46870. source: "./media/characters/ztragon/front.svg",
  46871. extra: 1825/1684,
  46872. bottom: 98/1923
  46873. }
  46874. },
  46875. },
  46876. [
  46877. {
  46878. name: "Normal",
  46879. height: math.unit(6 + 8/12, "feet"),
  46880. default: true
  46881. },
  46882. {
  46883. name: "Macro",
  46884. height: math.unit(80, "feet")
  46885. },
  46886. ]
  46887. ))
  46888. characterMakers.push(() => makeCharacter(
  46889. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46890. {
  46891. front: {
  46892. height: math.unit(10.4, "feet"),
  46893. weight: math.unit(2, "tons"),
  46894. name: "Front",
  46895. image: {
  46896. source: "./media/characters/yesenia/front.svg",
  46897. extra: 1479/1474,
  46898. bottom: 233/1712
  46899. }
  46900. },
  46901. },
  46902. [
  46903. {
  46904. name: "Normal",
  46905. height: math.unit(10.4, "feet"),
  46906. default: true
  46907. },
  46908. ]
  46909. ))
  46910. characterMakers.push(() => makeCharacter(
  46911. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46912. {
  46913. normal: {
  46914. height: math.unit(6 + 1/12, "feet"),
  46915. weight: math.unit(180, "lb"),
  46916. name: "Normal",
  46917. image: {
  46918. source: "./media/characters/leanne-lycheborne/normal.svg",
  46919. extra: 1748/1660,
  46920. bottom: 98/1846
  46921. }
  46922. },
  46923. were: {
  46924. height: math.unit(12, "feet"),
  46925. weight: math.unit(1600, "lb"),
  46926. name: "Were",
  46927. image: {
  46928. source: "./media/characters/leanne-lycheborne/were.svg",
  46929. extra: 1485/1432,
  46930. bottom: 66/1551
  46931. }
  46932. },
  46933. },
  46934. [
  46935. {
  46936. name: "Normal",
  46937. height: math.unit(6 + 1/12, "feet"),
  46938. default: true
  46939. },
  46940. ]
  46941. ))
  46942. characterMakers.push(() => makeCharacter(
  46943. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46944. {
  46945. side: {
  46946. height: math.unit(13, "feet"),
  46947. name: "Side",
  46948. image: {
  46949. source: "./media/characters/kira-tyler/side.svg",
  46950. extra: 693/393,
  46951. bottom: 58/751
  46952. }
  46953. },
  46954. },
  46955. [
  46956. {
  46957. name: "Normal",
  46958. height: math.unit(13, "feet"),
  46959. default: true
  46960. },
  46961. ]
  46962. ))
  46963. characterMakers.push(() => makeCharacter(
  46964. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46965. {
  46966. front: {
  46967. height: math.unit(10.3, "feet"),
  46968. weight: math.unit(150, "lb"),
  46969. name: "Front",
  46970. image: {
  46971. source: "./media/characters/blaze/front.svg",
  46972. extra: 1378/1286,
  46973. bottom: 172/1550
  46974. }
  46975. },
  46976. },
  46977. [
  46978. {
  46979. name: "Normal",
  46980. height: math.unit(10.3, "feet"),
  46981. default: true
  46982. },
  46983. ]
  46984. ))
  46985. characterMakers.push(() => makeCharacter(
  46986. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46987. {
  46988. side: {
  46989. height: math.unit(2, "meters"),
  46990. weight: math.unit(400, "kg"),
  46991. name: "Side",
  46992. image: {
  46993. source: "./media/characters/anu/side.svg",
  46994. extra: 506/394,
  46995. bottom: 18/524
  46996. }
  46997. },
  46998. },
  46999. [
  47000. {
  47001. name: "Humanoid",
  47002. height: math.unit(2, "meters")
  47003. },
  47004. {
  47005. name: "Normal",
  47006. height: math.unit(5, "meters"),
  47007. default: true
  47008. },
  47009. ]
  47010. ))
  47011. characterMakers.push(() => makeCharacter(
  47012. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47013. {
  47014. front: {
  47015. height: math.unit(5 + 5/12, "feet"),
  47016. weight: math.unit(170, "lb"),
  47017. name: "Front",
  47018. image: {
  47019. source: "./media/characters/synx-the-lynx/front.svg",
  47020. extra: 1893/1745,
  47021. bottom: 17/1910
  47022. }
  47023. },
  47024. side: {
  47025. height: math.unit(5 + 5/12, "feet"),
  47026. weight: math.unit(170, "lb"),
  47027. name: "Side",
  47028. image: {
  47029. source: "./media/characters/synx-the-lynx/side.svg",
  47030. extra: 1884/1740,
  47031. bottom: 39/1923
  47032. }
  47033. },
  47034. back: {
  47035. height: math.unit(5 + 5/12, "feet"),
  47036. weight: math.unit(170, "lb"),
  47037. name: "Back",
  47038. image: {
  47039. source: "./media/characters/synx-the-lynx/back.svg",
  47040. extra: 1903/1755,
  47041. bottom: 14/1917
  47042. }
  47043. },
  47044. },
  47045. [
  47046. {
  47047. name: "Normal",
  47048. height: math.unit(5 + 5/12, "feet"),
  47049. default: true
  47050. },
  47051. ]
  47052. ))
  47053. characterMakers.push(() => makeCharacter(
  47054. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47055. {
  47056. back: {
  47057. height: math.unit(15, "feet"),
  47058. name: "Back",
  47059. image: {
  47060. source: "./media/characters/nadezda-fex/back.svg",
  47061. extra: 1695/1481,
  47062. bottom: 25/1720
  47063. }
  47064. },
  47065. },
  47066. [
  47067. {
  47068. name: "Normal",
  47069. height: math.unit(15, "feet"),
  47070. default: true
  47071. },
  47072. {
  47073. name: "Macro",
  47074. height: math.unit(2.5, "miles")
  47075. },
  47076. {
  47077. name: "Goddess",
  47078. height: math.unit(2, "multiverses")
  47079. },
  47080. ]
  47081. ))
  47082. characterMakers.push(() => makeCharacter(
  47083. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47084. {
  47085. front: {
  47086. height: math.unit(216, "cm"),
  47087. name: "Front",
  47088. image: {
  47089. source: "./media/characters/lev/front.svg",
  47090. extra: 1728/1670,
  47091. bottom: 82/1810
  47092. }
  47093. },
  47094. back: {
  47095. height: math.unit(216, "cm"),
  47096. name: "Back",
  47097. image: {
  47098. source: "./media/characters/lev/back.svg",
  47099. extra: 1738/1675,
  47100. bottom: 24/1762
  47101. }
  47102. },
  47103. dressed: {
  47104. height: math.unit(216, "cm"),
  47105. name: "Dressed",
  47106. image: {
  47107. source: "./media/characters/lev/dressed.svg",
  47108. extra: 1397/1351,
  47109. bottom: 73/1470
  47110. }
  47111. },
  47112. head: {
  47113. height: math.unit(0.51, "meter"),
  47114. name: "Head",
  47115. image: {
  47116. source: "./media/characters/lev/head.svg"
  47117. }
  47118. },
  47119. },
  47120. [
  47121. {
  47122. name: "Normal",
  47123. height: math.unit(216, "cm"),
  47124. default: true
  47125. },
  47126. {
  47127. name: "Relatively Macro",
  47128. height: math.unit(80, "meters")
  47129. },
  47130. {
  47131. name: "Megamacro",
  47132. height: math.unit(21600, "meters")
  47133. },
  47134. {
  47135. name: "Megamacro+",
  47136. height: math.unit(64800, "meters")
  47137. },
  47138. ]
  47139. ))
  47140. characterMakers.push(() => makeCharacter(
  47141. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47142. {
  47143. front: {
  47144. height: math.unit(2, "meters"),
  47145. weight: math.unit(80, "kg"),
  47146. name: "Front",
  47147. image: {
  47148. source: "./media/characters/moka/front.svg",
  47149. extra: 1337/1255,
  47150. bottom: 58/1395
  47151. }
  47152. },
  47153. },
  47154. [
  47155. {
  47156. name: "Micro",
  47157. height: math.unit(15, "cm")
  47158. },
  47159. {
  47160. name: "Normal",
  47161. height: math.unit(2, "meters"),
  47162. default: true
  47163. },
  47164. {
  47165. name: "Macro",
  47166. height: math.unit(20, "meters"),
  47167. },
  47168. ]
  47169. ))
  47170. characterMakers.push(() => makeCharacter(
  47171. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47172. {
  47173. front: {
  47174. height: math.unit(9, "feet"),
  47175. weight: math.unit(240, "lb"),
  47176. name: "Front",
  47177. image: {
  47178. source: "./media/characters/kuzco/front.svg",
  47179. extra: 1593/1487,
  47180. bottom: 32/1625
  47181. }
  47182. },
  47183. side: {
  47184. height: math.unit(9, "feet"),
  47185. weight: math.unit(240, "lb"),
  47186. name: "Side",
  47187. image: {
  47188. source: "./media/characters/kuzco/side.svg",
  47189. extra: 1575/1485,
  47190. bottom: 30/1605
  47191. }
  47192. },
  47193. back: {
  47194. height: math.unit(9, "feet"),
  47195. weight: math.unit(240, "lb"),
  47196. name: "Back",
  47197. image: {
  47198. source: "./media/characters/kuzco/back.svg",
  47199. extra: 1603/1514,
  47200. bottom: 14/1617
  47201. }
  47202. },
  47203. },
  47204. [
  47205. {
  47206. name: "Normal",
  47207. height: math.unit(9, "feet"),
  47208. default: true
  47209. },
  47210. ]
  47211. ))
  47212. characterMakers.push(() => makeCharacter(
  47213. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47214. {
  47215. side: {
  47216. height: math.unit(2, "meters"),
  47217. weight: math.unit(300, "kg"),
  47218. name: "Side",
  47219. image: {
  47220. source: "./media/characters/ceruleus/side.svg",
  47221. extra: 1068/974,
  47222. bottom: 126/1194
  47223. }
  47224. },
  47225. maw: {
  47226. height: math.unit(0.8125, "meter"),
  47227. name: "Maw",
  47228. image: {
  47229. source: "./media/characters/ceruleus/maw.svg"
  47230. }
  47231. },
  47232. },
  47233. [
  47234. {
  47235. name: "Normal",
  47236. height: math.unit(16, "meters"),
  47237. default: true
  47238. },
  47239. ]
  47240. ))
  47241. characterMakers.push(() => makeCharacter(
  47242. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47243. {
  47244. front: {
  47245. height: math.unit(9, "feet"),
  47246. weight: math.unit(500, "kg"),
  47247. name: "Front",
  47248. image: {
  47249. source: "./media/characters/acouya/front.svg",
  47250. extra: 1660/1473,
  47251. bottom: 28/1688
  47252. }
  47253. },
  47254. },
  47255. [
  47256. {
  47257. name: "Normal",
  47258. height: math.unit(9, "feet"),
  47259. default: true
  47260. },
  47261. ]
  47262. ))
  47263. characterMakers.push(() => makeCharacter(
  47264. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47265. {
  47266. front: {
  47267. height: math.unit(5 + 6/12, "feet"),
  47268. weight: math.unit(195, "lb"),
  47269. name: "Front",
  47270. image: {
  47271. source: "./media/characters/vant/front.svg",
  47272. extra: 1396/1320,
  47273. bottom: 20/1416
  47274. }
  47275. },
  47276. back: {
  47277. height: math.unit(5 + 6/12, "feet"),
  47278. weight: math.unit(195, "lb"),
  47279. name: "Back",
  47280. image: {
  47281. source: "./media/characters/vant/back.svg",
  47282. extra: 1396/1320,
  47283. bottom: 20/1416
  47284. }
  47285. },
  47286. maw: {
  47287. height: math.unit(0.75, "feet"),
  47288. name: "Maw",
  47289. image: {
  47290. source: "./media/characters/vant/maw.svg"
  47291. }
  47292. },
  47293. paw: {
  47294. height: math.unit(1.07, "feet"),
  47295. name: "Paw",
  47296. image: {
  47297. source: "./media/characters/vant/paw.svg"
  47298. }
  47299. },
  47300. },
  47301. [
  47302. {
  47303. name: "Micro",
  47304. height: math.unit(0.25, "inches")
  47305. },
  47306. {
  47307. name: "Normal",
  47308. height: math.unit(5 + 6/12, "feet"),
  47309. default: true
  47310. },
  47311. {
  47312. name: "Macro",
  47313. height: math.unit(75, "feet")
  47314. },
  47315. ]
  47316. ))
  47317. characterMakers.push(() => makeCharacter(
  47318. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47319. {
  47320. front: {
  47321. height: math.unit(30, "meters"),
  47322. weight: math.unit(363, "tons"),
  47323. name: "Front",
  47324. image: {
  47325. source: "./media/characters/ahra/front.svg",
  47326. extra: 1914/1814,
  47327. bottom: 46/1960
  47328. }
  47329. },
  47330. },
  47331. [
  47332. {
  47333. name: "Macro",
  47334. height: math.unit(30, "meters"),
  47335. default: true
  47336. },
  47337. ]
  47338. ))
  47339. characterMakers.push(() => makeCharacter(
  47340. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47341. {
  47342. undressed: {
  47343. height: math.unit(2, "m"),
  47344. weight: math.unit(250, "kg"),
  47345. name: "Undressed",
  47346. image: {
  47347. source: "./media/characters/coriander/undressed.svg",
  47348. extra: 1757/1606,
  47349. bottom: 107/1864
  47350. }
  47351. },
  47352. dressed: {
  47353. height: math.unit(2, "m"),
  47354. weight: math.unit(250, "kg"),
  47355. name: "Dressed",
  47356. image: {
  47357. source: "./media/characters/coriander/dressed.svg",
  47358. extra: 1757/1606,
  47359. bottom: 107/1864
  47360. }
  47361. },
  47362. },
  47363. [
  47364. {
  47365. name: "Normal",
  47366. height: math.unit(4, "meters"),
  47367. default: true
  47368. },
  47369. {
  47370. name: "XL",
  47371. height: math.unit(6, "meters")
  47372. },
  47373. {
  47374. name: "XXL",
  47375. height: math.unit(8, "meters")
  47376. },
  47377. ]
  47378. ))
  47379. characterMakers.push(() => makeCharacter(
  47380. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47381. {
  47382. front: {
  47383. height: math.unit(6, "feet"),
  47384. name: "Front",
  47385. image: {
  47386. source: "./media/characters/syrinx/front.svg",
  47387. extra: 1557/1259,
  47388. bottom: 171/1728
  47389. }
  47390. },
  47391. },
  47392. [
  47393. {
  47394. name: "Normal",
  47395. height: math.unit(6 + 3/12, "feet"),
  47396. default: true
  47397. },
  47398. ]
  47399. ))
  47400. characterMakers.push(() => makeCharacter(
  47401. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47402. {
  47403. front: {
  47404. height: math.unit(11 + 6/12, "feet"),
  47405. weight: math.unit(1.5, "tons"),
  47406. name: "Front",
  47407. image: {
  47408. source: "./media/characters/bor/front.svg",
  47409. extra: 1189/1109,
  47410. bottom: 170/1359
  47411. }
  47412. },
  47413. },
  47414. [
  47415. {
  47416. name: "Normal",
  47417. height: math.unit(11 + 6/12, "feet"),
  47418. default: true
  47419. },
  47420. {
  47421. name: "Macro",
  47422. height: math.unit(32 + 9/12, "feet")
  47423. },
  47424. ]
  47425. ))
  47426. characterMakers.push(() => makeCharacter(
  47427. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47428. {
  47429. anthro: {
  47430. height: math.unit(9, "feet"),
  47431. weight: math.unit(2076, "lb"),
  47432. name: "Anthro",
  47433. image: {
  47434. source: "./media/characters/abacus/anthro.svg",
  47435. extra: 1540/1494,
  47436. bottom: 233/1773
  47437. }
  47438. },
  47439. pigeon: {
  47440. height: math.unit(1, "feet"),
  47441. name: "Pigeon",
  47442. image: {
  47443. source: "./media/characters/abacus/pigeon.svg",
  47444. extra: 528/525,
  47445. bottom: 46/574
  47446. }
  47447. },
  47448. },
  47449. [
  47450. {
  47451. name: "Normal",
  47452. height: math.unit(9, "feet"),
  47453. default: true
  47454. },
  47455. ]
  47456. ))
  47457. characterMakers.push(() => makeCharacter(
  47458. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47459. {
  47460. side: {
  47461. height: math.unit(6, "feet"),
  47462. name: "Side",
  47463. image: {
  47464. source: "./media/characters/delkhan/side.svg",
  47465. extra: 1884/1786,
  47466. bottom: 308/2192
  47467. }
  47468. },
  47469. head: {
  47470. height: math.unit(3.38, "feet"),
  47471. name: "Head",
  47472. image: {
  47473. source: "./media/characters/delkhan/head.svg"
  47474. }
  47475. },
  47476. },
  47477. [
  47478. {
  47479. name: "Normal",
  47480. height: math.unit(72, "feet"),
  47481. default: true
  47482. },
  47483. {
  47484. name: "Giant",
  47485. height: math.unit(172, "feet")
  47486. },
  47487. ]
  47488. ))
  47489. characterMakers.push(() => makeCharacter(
  47490. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47491. {
  47492. standing: {
  47493. height: math.unit(6, "feet"),
  47494. name: "Standing",
  47495. image: {
  47496. source: "./media/characters/euchidat/standing.svg",
  47497. extra: 1612/1553,
  47498. bottom: 116/1728
  47499. }
  47500. },
  47501. leaning: {
  47502. height: math.unit(6, "feet"),
  47503. name: "Leaning",
  47504. image: {
  47505. source: "./media/characters/euchidat/leaning.svg",
  47506. extra: 1719/1674,
  47507. bottom: 27/1746
  47508. }
  47509. },
  47510. },
  47511. [
  47512. {
  47513. name: "Normal",
  47514. height: math.unit(175, "feet"),
  47515. default: true
  47516. },
  47517. {
  47518. name: "Megamacro",
  47519. height: math.unit(190, "miles")
  47520. },
  47521. {
  47522. name: "Gigamacro",
  47523. height: math.unit(190000, "miles")
  47524. },
  47525. ]
  47526. ))
  47527. characterMakers.push(() => makeCharacter(
  47528. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47529. {
  47530. front: {
  47531. height: math.unit(6, "feet"),
  47532. weight: math.unit(150, "lb"),
  47533. name: "Front",
  47534. image: {
  47535. source: "./media/characters/rebecca-stack/front.svg",
  47536. extra: 1256/1201,
  47537. bottom: 18/1274
  47538. }
  47539. },
  47540. },
  47541. [
  47542. {
  47543. name: "Normal",
  47544. height: math.unit(5 + 8/12, "feet"),
  47545. default: true
  47546. },
  47547. {
  47548. name: "Demolitionist",
  47549. height: math.unit(200, "feet")
  47550. },
  47551. {
  47552. name: "Out of Control",
  47553. height: math.unit(2, "miles")
  47554. },
  47555. {
  47556. name: "Giga",
  47557. height: math.unit(7200, "miles")
  47558. },
  47559. ]
  47560. ))
  47561. characterMakers.push(() => makeCharacter(
  47562. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47563. {
  47564. front: {
  47565. height: math.unit(6, "feet"),
  47566. weight: math.unit(150, "lb"),
  47567. name: "Front",
  47568. image: {
  47569. source: "./media/characters/jenny-cartwright/front.svg",
  47570. extra: 1384/1376,
  47571. bottom: 58/1442
  47572. }
  47573. },
  47574. },
  47575. [
  47576. {
  47577. name: "Normal",
  47578. height: math.unit(6 + 7/12, "feet"),
  47579. default: true
  47580. },
  47581. {
  47582. name: "Librarian",
  47583. height: math.unit(55, "feet")
  47584. },
  47585. {
  47586. name: "Sightseer",
  47587. height: math.unit(50, "miles")
  47588. },
  47589. {
  47590. name: "Giga",
  47591. height: math.unit(30000, "miles")
  47592. },
  47593. ]
  47594. ))
  47595. characterMakers.push(() => makeCharacter(
  47596. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47597. {
  47598. nude: {
  47599. height: math.unit(8, "feet"),
  47600. weight: math.unit(225, "lb"),
  47601. name: "Nude",
  47602. image: {
  47603. source: "./media/characters/marvy/nude.svg",
  47604. extra: 1900/1683,
  47605. bottom: 89/1989
  47606. }
  47607. },
  47608. dressed: {
  47609. height: math.unit(8, "feet"),
  47610. weight: math.unit(225, "lb"),
  47611. name: "Dressed",
  47612. image: {
  47613. source: "./media/characters/marvy/dressed.svg",
  47614. extra: 1900/1683,
  47615. bottom: 89/1989
  47616. }
  47617. },
  47618. head: {
  47619. height: math.unit(2.85, "feet"),
  47620. name: "Head",
  47621. image: {
  47622. source: "./media/characters/marvy/head.svg"
  47623. }
  47624. },
  47625. },
  47626. [
  47627. {
  47628. name: "Normal",
  47629. height: math.unit(8, "feet"),
  47630. default: true
  47631. },
  47632. ]
  47633. ))
  47634. characterMakers.push(() => makeCharacter(
  47635. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47636. {
  47637. front: {
  47638. height: math.unit(8, "feet"),
  47639. weight: math.unit(250, "lb"),
  47640. name: "Front",
  47641. image: {
  47642. source: "./media/characters/leah/front.svg",
  47643. extra: 1257/1149,
  47644. bottom: 109/1366
  47645. }
  47646. },
  47647. },
  47648. [
  47649. {
  47650. name: "Normal",
  47651. height: math.unit(8, "feet"),
  47652. default: true
  47653. },
  47654. {
  47655. name: "Minimacro",
  47656. height: math.unit(40, "feet")
  47657. },
  47658. {
  47659. name: "Macro",
  47660. height: math.unit(124, "feet")
  47661. },
  47662. {
  47663. name: "Megamacro",
  47664. height: math.unit(850, "feet")
  47665. },
  47666. ]
  47667. ))
  47668. characterMakers.push(() => makeCharacter(
  47669. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47670. {
  47671. side: {
  47672. height: math.unit(13 + 6/12, "feet"),
  47673. weight: math.unit(3200, "lb"),
  47674. name: "Side",
  47675. image: {
  47676. source: "./media/characters/alvir/side.svg",
  47677. extra: 896/589,
  47678. bottom: 26/922
  47679. }
  47680. },
  47681. },
  47682. [
  47683. {
  47684. name: "Normal",
  47685. height: math.unit(13 + 6/12, "feet"),
  47686. default: true
  47687. },
  47688. ]
  47689. ))
  47690. characterMakers.push(() => makeCharacter(
  47691. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47692. {
  47693. front: {
  47694. height: math.unit(5 + 4/12, "feet"),
  47695. weight: math.unit(236, "lb"),
  47696. name: "Front",
  47697. image: {
  47698. source: "./media/characters/zaina-khalil/front.svg",
  47699. extra: 1533/1485,
  47700. bottom: 94/1627
  47701. }
  47702. },
  47703. side: {
  47704. height: math.unit(5 + 4/12, "feet"),
  47705. weight: math.unit(236, "lb"),
  47706. name: "Side",
  47707. image: {
  47708. source: "./media/characters/zaina-khalil/side.svg",
  47709. extra: 1537/1498,
  47710. bottom: 66/1603
  47711. }
  47712. },
  47713. back: {
  47714. height: math.unit(5 + 4/12, "feet"),
  47715. weight: math.unit(236, "lb"),
  47716. name: "Back",
  47717. image: {
  47718. source: "./media/characters/zaina-khalil/back.svg",
  47719. extra: 1546/1494,
  47720. bottom: 89/1635
  47721. }
  47722. },
  47723. },
  47724. [
  47725. {
  47726. name: "Normal",
  47727. height: math.unit(5 + 4/12, "feet"),
  47728. default: true
  47729. },
  47730. ]
  47731. ))
  47732. characterMakers.push(() => makeCharacter(
  47733. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47734. {
  47735. side: {
  47736. height: math.unit(12, "feet"),
  47737. weight: math.unit(4000, "lb"),
  47738. name: "Side",
  47739. image: {
  47740. source: "./media/characters/terry/side.svg",
  47741. extra: 1518/1439,
  47742. bottom: 149/1667
  47743. }
  47744. },
  47745. },
  47746. [
  47747. {
  47748. name: "Normal",
  47749. height: math.unit(12, "feet"),
  47750. default: true
  47751. },
  47752. ]
  47753. ))
  47754. characterMakers.push(() => makeCharacter(
  47755. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47756. {
  47757. front: {
  47758. height: math.unit(12, "feet"),
  47759. weight: math.unit(1500, "lb"),
  47760. name: "Front",
  47761. image: {
  47762. source: "./media/characters/kahea/front.svg",
  47763. extra: 1722/1617,
  47764. bottom: 179/1901
  47765. }
  47766. },
  47767. },
  47768. [
  47769. {
  47770. name: "Normal",
  47771. height: math.unit(12, "feet"),
  47772. default: true
  47773. },
  47774. ]
  47775. ))
  47776. characterMakers.push(() => makeCharacter(
  47777. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47778. {
  47779. demonFront: {
  47780. height: math.unit(36, "feet"),
  47781. name: "Front",
  47782. image: {
  47783. source: "./media/characters/alex-xuria/demon-front.svg",
  47784. extra: 1705/1673,
  47785. bottom: 198/1903
  47786. },
  47787. form: "demon",
  47788. default: true
  47789. },
  47790. demonBack: {
  47791. height: math.unit(36, "feet"),
  47792. name: "Back",
  47793. image: {
  47794. source: "./media/characters/alex-xuria/demon-back.svg",
  47795. extra: 1725/1693,
  47796. bottom: 70/1795
  47797. },
  47798. form: "demon"
  47799. },
  47800. demonHead: {
  47801. height: math.unit(2.14, "meters"),
  47802. name: "Head",
  47803. image: {
  47804. source: "./media/characters/alex-xuria/demon-head.svg"
  47805. },
  47806. form: "demon"
  47807. },
  47808. demonHand: {
  47809. height: math.unit(1.61, "meters"),
  47810. name: "Hand",
  47811. image: {
  47812. source: "./media/characters/alex-xuria/demon-hand.svg"
  47813. },
  47814. form: "demon"
  47815. },
  47816. demonPaw: {
  47817. height: math.unit(1.35, "meters"),
  47818. name: "Paw",
  47819. image: {
  47820. source: "./media/characters/alex-xuria/demon-paw.svg"
  47821. },
  47822. form: "demon"
  47823. },
  47824. demonFoot: {
  47825. height: math.unit(2.2, "meters"),
  47826. name: "Foot",
  47827. image: {
  47828. source: "./media/characters/alex-xuria/demon-foot.svg"
  47829. },
  47830. form: "demon"
  47831. },
  47832. demonCock: {
  47833. height: math.unit(1.74, "meters"),
  47834. name: "Cock",
  47835. image: {
  47836. source: "./media/characters/alex-xuria/demon-cock.svg"
  47837. },
  47838. form: "demon"
  47839. },
  47840. demonTailClosed: {
  47841. height: math.unit(1.47, "meters"),
  47842. name: "Tail (Closed)",
  47843. image: {
  47844. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47845. },
  47846. form: "demon"
  47847. },
  47848. demonTailOpen: {
  47849. height: math.unit(2.85, "meters"),
  47850. name: "Tail (Open)",
  47851. image: {
  47852. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47853. },
  47854. form: "demon"
  47855. },
  47856. incubusFront: {
  47857. height: math.unit(12, "feet"),
  47858. name: "Front",
  47859. image: {
  47860. source: "./media/characters/alex-xuria/incubus-front.svg",
  47861. extra: 1754/1677,
  47862. bottom: 125/1879
  47863. },
  47864. form: "incubus",
  47865. default: true
  47866. },
  47867. incubusBack: {
  47868. height: math.unit(12, "feet"),
  47869. name: "Back",
  47870. image: {
  47871. source: "./media/characters/alex-xuria/incubus-back.svg",
  47872. extra: 1702/1647,
  47873. bottom: 30/1732
  47874. },
  47875. form: "incubus"
  47876. },
  47877. incubusHead: {
  47878. height: math.unit(3.45, "feet"),
  47879. name: "Head",
  47880. image: {
  47881. source: "./media/characters/alex-xuria/incubus-head.svg"
  47882. },
  47883. form: "incubus"
  47884. },
  47885. rabbitFront: {
  47886. height: math.unit(6, "feet"),
  47887. name: "Front",
  47888. image: {
  47889. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47890. extra: 1369/1349,
  47891. bottom: 45/1414
  47892. },
  47893. form: "rabbit",
  47894. default: true
  47895. },
  47896. rabbitSide: {
  47897. height: math.unit(6, "feet"),
  47898. name: "Side",
  47899. image: {
  47900. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47901. extra: 1370/1356,
  47902. bottom: 37/1407
  47903. },
  47904. form: "rabbit"
  47905. },
  47906. rabbitBack: {
  47907. height: math.unit(6, "feet"),
  47908. name: "Back",
  47909. image: {
  47910. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47911. extra: 1375/1358,
  47912. bottom: 43/1418
  47913. },
  47914. form: "rabbit"
  47915. },
  47916. },
  47917. [
  47918. {
  47919. name: "Normal",
  47920. height: math.unit(6, "feet"),
  47921. default: true,
  47922. form: "rabbit"
  47923. },
  47924. {
  47925. name: "Incubus",
  47926. height: math.unit(12, "feet"),
  47927. default: true,
  47928. form: "incubus"
  47929. },
  47930. {
  47931. name: "Demon",
  47932. height: math.unit(36, "feet"),
  47933. default: true,
  47934. form: "demon"
  47935. }
  47936. ],
  47937. {
  47938. "demon": {
  47939. name: "Demon",
  47940. default: true
  47941. },
  47942. "incubus": {
  47943. name: "Incubus",
  47944. },
  47945. "rabbit": {
  47946. name: "Rabbit"
  47947. }
  47948. }
  47949. ))
  47950. characterMakers.push(() => makeCharacter(
  47951. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47952. {
  47953. front: {
  47954. height: math.unit(7 + 5/12, "feet"),
  47955. weight: math.unit(510, "lb"),
  47956. name: "Front",
  47957. image: {
  47958. source: "./media/characters/syrup/front.svg",
  47959. extra: 932/916,
  47960. bottom: 26/958
  47961. }
  47962. },
  47963. },
  47964. [
  47965. {
  47966. name: "Normal",
  47967. height: math.unit(7 + 5/12, "feet"),
  47968. default: true
  47969. },
  47970. {
  47971. name: "Big",
  47972. height: math.unit(50, "feet")
  47973. },
  47974. {
  47975. name: "Macro",
  47976. height: math.unit(300, "feet")
  47977. },
  47978. {
  47979. name: "Megamacro",
  47980. height: math.unit(1, "mile")
  47981. },
  47982. ]
  47983. ))
  47984. characterMakers.push(() => makeCharacter(
  47985. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47986. {
  47987. front: {
  47988. height: math.unit(6 + 9/12, "feet"),
  47989. name: "Front",
  47990. image: {
  47991. source: "./media/characters/zeimne/front.svg",
  47992. extra: 1969/1806,
  47993. bottom: 53/2022
  47994. }
  47995. },
  47996. },
  47997. [
  47998. {
  47999. name: "Normal",
  48000. height: math.unit(6 + 9/12, "feet"),
  48001. default: true
  48002. },
  48003. {
  48004. name: "Giant",
  48005. height: math.unit(550, "feet")
  48006. },
  48007. {
  48008. name: "Mega",
  48009. height: math.unit(3, "miles")
  48010. },
  48011. {
  48012. name: "Giga",
  48013. height: math.unit(250, "miles")
  48014. },
  48015. {
  48016. name: "Tera",
  48017. height: math.unit(1, "AU")
  48018. },
  48019. ]
  48020. ))
  48021. characterMakers.push(() => makeCharacter(
  48022. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48023. {
  48024. front: {
  48025. height: math.unit(5 + 2/12, "feet"),
  48026. name: "Front",
  48027. image: {
  48028. source: "./media/characters/grar/front.svg",
  48029. extra: 1331/1119,
  48030. bottom: 60/1391
  48031. }
  48032. },
  48033. back: {
  48034. height: math.unit(5 + 2/12, "feet"),
  48035. name: "Back",
  48036. image: {
  48037. source: "./media/characters/grar/back.svg",
  48038. extra: 1385/1169,
  48039. bottom: 23/1408
  48040. }
  48041. },
  48042. },
  48043. [
  48044. {
  48045. name: "Normal",
  48046. height: math.unit(5 + 2/12, "feet"),
  48047. default: true
  48048. },
  48049. ]
  48050. ))
  48051. characterMakers.push(() => makeCharacter(
  48052. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48053. {
  48054. front: {
  48055. height: math.unit(13 + 7/12, "feet"),
  48056. weight: math.unit(2200, "lb"),
  48057. name: "Front",
  48058. image: {
  48059. source: "./media/characters/endraya/front.svg",
  48060. extra: 1289/1215,
  48061. bottom: 50/1339
  48062. }
  48063. },
  48064. nude: {
  48065. height: math.unit(13 + 7/12, "feet"),
  48066. weight: math.unit(2200, "lb"),
  48067. name: "Nude",
  48068. image: {
  48069. source: "./media/characters/endraya/nude.svg",
  48070. extra: 1247/1171,
  48071. bottom: 40/1287
  48072. }
  48073. },
  48074. head: {
  48075. height: math.unit(2.6, "feet"),
  48076. name: "Head",
  48077. image: {
  48078. source: "./media/characters/endraya/head.svg"
  48079. }
  48080. },
  48081. slit: {
  48082. height: math.unit(3.4, "feet"),
  48083. name: "Slit",
  48084. image: {
  48085. source: "./media/characters/endraya/slit.svg"
  48086. }
  48087. },
  48088. },
  48089. [
  48090. {
  48091. name: "Normal",
  48092. height: math.unit(13 + 7/12, "feet"),
  48093. default: true
  48094. },
  48095. {
  48096. name: "Macro",
  48097. height: math.unit(200, "feet")
  48098. },
  48099. ]
  48100. ))
  48101. characterMakers.push(() => makeCharacter(
  48102. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48103. {
  48104. front: {
  48105. height: math.unit(1.81, "meters"),
  48106. weight: math.unit(69, "kg"),
  48107. name: "Front",
  48108. image: {
  48109. source: "./media/characters/rodryana/front.svg",
  48110. extra: 2002/1921,
  48111. bottom: 53/2055
  48112. }
  48113. },
  48114. back: {
  48115. height: math.unit(1.81, "meters"),
  48116. weight: math.unit(69, "kg"),
  48117. name: "Back",
  48118. image: {
  48119. source: "./media/characters/rodryana/back.svg",
  48120. extra: 1993/1926,
  48121. bottom: 48/2041
  48122. }
  48123. },
  48124. maw: {
  48125. height: math.unit(0.19769417475, "meters"),
  48126. name: "Maw",
  48127. image: {
  48128. source: "./media/characters/rodryana/maw.svg"
  48129. }
  48130. },
  48131. slit: {
  48132. height: math.unit(0.31631067961, "meters"),
  48133. name: "Slit",
  48134. image: {
  48135. source: "./media/characters/rodryana/slit.svg"
  48136. }
  48137. },
  48138. },
  48139. [
  48140. {
  48141. name: "Normal",
  48142. height: math.unit(1.81, "meters")
  48143. },
  48144. {
  48145. name: "Mini Macro",
  48146. height: math.unit(181, "meters")
  48147. },
  48148. {
  48149. name: "Macro",
  48150. height: math.unit(452, "meters"),
  48151. default: true
  48152. },
  48153. {
  48154. name: "Mega Macro",
  48155. height: math.unit(1.375, "km")
  48156. },
  48157. {
  48158. name: "Giga Macro",
  48159. height: math.unit(13.575, "km")
  48160. },
  48161. ]
  48162. ))
  48163. characterMakers.push(() => makeCharacter(
  48164. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48165. {
  48166. front: {
  48167. height: math.unit(6, "feet"),
  48168. weight: math.unit(1000, "lb"),
  48169. name: "Front",
  48170. image: {
  48171. source: "./media/characters/asaya/front.svg",
  48172. extra: 1460/1200,
  48173. bottom: 71/1531
  48174. }
  48175. },
  48176. },
  48177. [
  48178. {
  48179. name: "Normal",
  48180. height: math.unit(8, "km"),
  48181. default: true
  48182. },
  48183. ]
  48184. ))
  48185. characterMakers.push(() => makeCharacter(
  48186. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48187. {
  48188. front: {
  48189. height: math.unit(3.5, "meters"),
  48190. name: "Front",
  48191. image: {
  48192. source: "./media/characters/sarzu-and-israz/front.svg",
  48193. extra: 1570/1558,
  48194. bottom: 150/1720
  48195. },
  48196. },
  48197. back: {
  48198. height: math.unit(3.5, "meters"),
  48199. name: "Back",
  48200. image: {
  48201. source: "./media/characters/sarzu-and-israz/back.svg",
  48202. extra: 1523/1509,
  48203. bottom: 132/1655
  48204. },
  48205. },
  48206. frontFemale: {
  48207. height: math.unit(3.5, "meters"),
  48208. name: "Front (Female)",
  48209. image: {
  48210. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48211. extra: 1570/1558,
  48212. bottom: 150/1720
  48213. },
  48214. },
  48215. frontHerm: {
  48216. height: math.unit(3.5, "meters"),
  48217. name: "Front (Herm)",
  48218. image: {
  48219. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48220. extra: 1570/1558,
  48221. bottom: 150/1720
  48222. },
  48223. },
  48224. },
  48225. [
  48226. {
  48227. name: "Normal",
  48228. height: math.unit(3.5, "meters"),
  48229. default: true,
  48230. },
  48231. {
  48232. name: "Macro",
  48233. height: math.unit(65.5, "meters"),
  48234. },
  48235. ],
  48236. ))
  48237. characterMakers.push(() => makeCharacter(
  48238. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48239. {
  48240. front: {
  48241. height: math.unit(6, "feet"),
  48242. weight: math.unit(250, "lb"),
  48243. name: "Front",
  48244. image: {
  48245. source: "./media/characters/zenimma/front.svg",
  48246. extra: 1346/1320,
  48247. bottom: 58/1404
  48248. }
  48249. },
  48250. back: {
  48251. height: math.unit(6, "feet"),
  48252. weight: math.unit(250, "lb"),
  48253. name: "Back",
  48254. image: {
  48255. source: "./media/characters/zenimma/back.svg",
  48256. extra: 1324/1308,
  48257. bottom: 44/1368
  48258. }
  48259. },
  48260. dick: {
  48261. height: math.unit(1.44, "feet"),
  48262. name: "Dick",
  48263. image: {
  48264. source: "./media/characters/zenimma/dick.svg"
  48265. }
  48266. },
  48267. },
  48268. [
  48269. {
  48270. name: "Canon Height",
  48271. height: math.unit(66, "miles"),
  48272. default: true
  48273. },
  48274. ]
  48275. ))
  48276. characterMakers.push(() => makeCharacter(
  48277. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48278. {
  48279. nude: {
  48280. height: math.unit(6, "feet"),
  48281. weight: math.unit(150, "lb"),
  48282. name: "Nude",
  48283. image: {
  48284. source: "./media/characters/shavon/nude.svg",
  48285. extra: 1242/1096,
  48286. bottom: 98/1340
  48287. }
  48288. },
  48289. dressed: {
  48290. height: math.unit(6, "feet"),
  48291. weight: math.unit(150, "lb"),
  48292. name: "Dressed",
  48293. image: {
  48294. source: "./media/characters/shavon/dressed.svg",
  48295. extra: 1242/1096,
  48296. bottom: 98/1340
  48297. }
  48298. },
  48299. },
  48300. [
  48301. {
  48302. name: "Macro",
  48303. height: math.unit(255, "feet"),
  48304. default: true
  48305. },
  48306. ]
  48307. ))
  48308. characterMakers.push(() => makeCharacter(
  48309. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48310. {
  48311. front: {
  48312. height: math.unit(6, "feet"),
  48313. name: "Front",
  48314. image: {
  48315. source: "./media/characters/steph/front.svg",
  48316. extra: 1430/1330,
  48317. bottom: 54/1484
  48318. }
  48319. },
  48320. },
  48321. [
  48322. {
  48323. name: "Normal",
  48324. height: math.unit(6, "feet"),
  48325. default: true
  48326. },
  48327. ]
  48328. ))
  48329. characterMakers.push(() => makeCharacter(
  48330. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48331. {
  48332. front: {
  48333. height: math.unit(9, "feet"),
  48334. weight: math.unit(400, "lb"),
  48335. name: "Front",
  48336. image: {
  48337. source: "./media/characters/kil'aman/front.svg",
  48338. extra: 1210/1159,
  48339. bottom: 109/1319
  48340. }
  48341. },
  48342. head: {
  48343. height: math.unit(2.14, "feet"),
  48344. name: "Head",
  48345. image: {
  48346. source: "./media/characters/kil'aman/head.svg"
  48347. }
  48348. },
  48349. maw: {
  48350. height: math.unit(1.21, "feet"),
  48351. name: "Maw",
  48352. image: {
  48353. source: "./media/characters/kil'aman/maw.svg"
  48354. }
  48355. },
  48356. foot: {
  48357. height: math.unit(1.7, "feet"),
  48358. name: "Foot",
  48359. image: {
  48360. source: "./media/characters/kil'aman/foot.svg"
  48361. }
  48362. },
  48363. dick: {
  48364. height: math.unit(2.1, "feet"),
  48365. name: "Dick",
  48366. image: {
  48367. source: "./media/characters/kil'aman/dick.svg"
  48368. }
  48369. },
  48370. },
  48371. [
  48372. {
  48373. name: "Normal",
  48374. height: math.unit(9, "feet")
  48375. },
  48376. {
  48377. name: "Canon Height",
  48378. height: math.unit(10, "miles"),
  48379. default: true
  48380. },
  48381. {
  48382. name: "Maximum",
  48383. height: math.unit(6e9, "miles")
  48384. },
  48385. ]
  48386. ))
  48387. characterMakers.push(() => makeCharacter(
  48388. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48389. {
  48390. front: {
  48391. height: math.unit(90, "feet"),
  48392. weight: math.unit(675000, "lb"),
  48393. name: "Front",
  48394. image: {
  48395. source: "./media/characters/qadan/front.svg",
  48396. extra: 1012/1004,
  48397. bottom: 78/1090
  48398. }
  48399. },
  48400. back: {
  48401. height: math.unit(90, "feet"),
  48402. weight: math.unit(675000, "lb"),
  48403. name: "Back",
  48404. image: {
  48405. source: "./media/characters/qadan/back.svg",
  48406. extra: 1042/1031,
  48407. bottom: 55/1097
  48408. }
  48409. },
  48410. armored: {
  48411. height: math.unit(90, "feet"),
  48412. weight: math.unit(675000, "lb"),
  48413. name: "Armored",
  48414. image: {
  48415. source: "./media/characters/qadan/armored.svg",
  48416. extra: 1047/1037,
  48417. bottom: 48/1095
  48418. }
  48419. },
  48420. },
  48421. [
  48422. {
  48423. name: "Normal",
  48424. height: math.unit(90, "feet"),
  48425. default: true
  48426. },
  48427. ]
  48428. ))
  48429. characterMakers.push(() => makeCharacter(
  48430. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48431. {
  48432. front: {
  48433. height: math.unit(6, "feet"),
  48434. weight: math.unit(225, "lb"),
  48435. name: "Front",
  48436. image: {
  48437. source: "./media/characters/brooke/front.svg",
  48438. extra: 1050/1010,
  48439. bottom: 66/1116
  48440. }
  48441. },
  48442. back: {
  48443. height: math.unit(6, "feet"),
  48444. weight: math.unit(225, "lb"),
  48445. name: "Back",
  48446. image: {
  48447. source: "./media/characters/brooke/back.svg",
  48448. extra: 1053/1013,
  48449. bottom: 41/1094
  48450. }
  48451. },
  48452. dressed: {
  48453. height: math.unit(6, "feet"),
  48454. weight: math.unit(225, "lb"),
  48455. name: "Dressed",
  48456. image: {
  48457. source: "./media/characters/brooke/dressed.svg",
  48458. extra: 1050/1010,
  48459. bottom: 66/1116
  48460. }
  48461. },
  48462. },
  48463. [
  48464. {
  48465. name: "Canon Height",
  48466. height: math.unit(500, "miles"),
  48467. default: true
  48468. },
  48469. ]
  48470. ))
  48471. characterMakers.push(() => makeCharacter(
  48472. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48473. {
  48474. front: {
  48475. height: math.unit(6 + 2/12, "feet"),
  48476. weight: math.unit(210, "lb"),
  48477. name: "Front",
  48478. image: {
  48479. source: "./media/characters/wubs/front.svg",
  48480. extra: 1345/1325,
  48481. bottom: 70/1415
  48482. }
  48483. },
  48484. back: {
  48485. height: math.unit(6 + 2/12, "feet"),
  48486. weight: math.unit(210, "lb"),
  48487. name: "Back",
  48488. image: {
  48489. source: "./media/characters/wubs/back.svg",
  48490. extra: 1296/1275,
  48491. bottom: 58/1354
  48492. }
  48493. },
  48494. },
  48495. [
  48496. {
  48497. name: "Normal",
  48498. height: math.unit(6 + 2/12, "feet"),
  48499. default: true
  48500. },
  48501. {
  48502. name: "Macro",
  48503. height: math.unit(1000, "feet")
  48504. },
  48505. {
  48506. name: "Megamacro",
  48507. height: math.unit(1, "mile")
  48508. },
  48509. ]
  48510. ))
  48511. characterMakers.push(() => makeCharacter(
  48512. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48513. {
  48514. front: {
  48515. height: math.unit(4, "feet"),
  48516. weight: math.unit(120, "lb"),
  48517. name: "Front",
  48518. image: {
  48519. source: "./media/characters/blue/front.svg",
  48520. extra: 1636/1525,
  48521. bottom: 43/1679
  48522. }
  48523. },
  48524. back: {
  48525. height: math.unit(4, "feet"),
  48526. weight: math.unit(120, "lb"),
  48527. name: "Back",
  48528. image: {
  48529. source: "./media/characters/blue/back.svg",
  48530. extra: 1660/1560,
  48531. bottom: 57/1717
  48532. }
  48533. },
  48534. paws: {
  48535. height: math.unit(0.826, "feet"),
  48536. name: "Paws",
  48537. image: {
  48538. source: "./media/characters/blue/paws.svg"
  48539. }
  48540. },
  48541. },
  48542. [
  48543. {
  48544. name: "Micro",
  48545. height: math.unit(3, "inches")
  48546. },
  48547. {
  48548. name: "Normal",
  48549. height: math.unit(4, "feet"),
  48550. default: true
  48551. },
  48552. {
  48553. name: "Femenine Form",
  48554. height: math.unit(14, "feet")
  48555. },
  48556. {
  48557. name: "Werebat Form",
  48558. height: math.unit(18, "feet")
  48559. },
  48560. ]
  48561. ))
  48562. characterMakers.push(() => makeCharacter(
  48563. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48564. {
  48565. female: {
  48566. height: math.unit(7 + 4/12, "feet"),
  48567. weight: math.unit(243, "lb"),
  48568. name: "Female",
  48569. image: {
  48570. source: "./media/characters/kaya/female.svg",
  48571. extra: 975/898,
  48572. bottom: 34/1009
  48573. }
  48574. },
  48575. herm: {
  48576. height: math.unit(7 + 4/12, "feet"),
  48577. weight: math.unit(243, "lb"),
  48578. name: "Herm",
  48579. image: {
  48580. source: "./media/characters/kaya/herm.svg",
  48581. extra: 975/898,
  48582. bottom: 34/1009
  48583. }
  48584. },
  48585. },
  48586. [
  48587. {
  48588. name: "Normal",
  48589. height: math.unit(7 + 4/12, "feet"),
  48590. default: true
  48591. },
  48592. ]
  48593. ))
  48594. characterMakers.push(() => makeCharacter(
  48595. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48596. {
  48597. female: {
  48598. height: math.unit(9 + 4/12, "feet"),
  48599. weight: math.unit(398, "lb"),
  48600. name: "Female",
  48601. image: {
  48602. source: "./media/characters/kassandra/female.svg",
  48603. extra: 908/839,
  48604. bottom: 61/969
  48605. }
  48606. },
  48607. intersex: {
  48608. height: math.unit(9 + 4/12, "feet"),
  48609. weight: math.unit(398, "lb"),
  48610. name: "Intersex",
  48611. image: {
  48612. source: "./media/characters/kassandra/intersex.svg",
  48613. extra: 908/839,
  48614. bottom: 61/969
  48615. }
  48616. },
  48617. },
  48618. [
  48619. {
  48620. name: "Normal",
  48621. height: math.unit(9 + 4/12, "feet"),
  48622. default: true
  48623. },
  48624. ]
  48625. ))
  48626. characterMakers.push(() => makeCharacter(
  48627. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48628. {
  48629. front: {
  48630. height: math.unit(3, "meters"),
  48631. name: "Front",
  48632. image: {
  48633. source: "./media/characters/amy/front.svg",
  48634. extra: 1380/1343,
  48635. bottom: 70/1450
  48636. }
  48637. },
  48638. back: {
  48639. height: math.unit(3, "meters"),
  48640. name: "Back",
  48641. image: {
  48642. source: "./media/characters/amy/back.svg",
  48643. extra: 1380/1347,
  48644. bottom: 66/1446
  48645. }
  48646. },
  48647. },
  48648. [
  48649. {
  48650. name: "Normal",
  48651. height: math.unit(3, "meters"),
  48652. default: true
  48653. },
  48654. ]
  48655. ))
  48656. characterMakers.push(() => makeCharacter(
  48657. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48658. {
  48659. side: {
  48660. height: math.unit(47, "cm"),
  48661. weight: math.unit(10.8, "kg"),
  48662. name: "Side",
  48663. image: {
  48664. source: "./media/characters/alphaschakal/side.svg",
  48665. extra: 1058/568,
  48666. bottom: 62/1120
  48667. }
  48668. },
  48669. back: {
  48670. height: math.unit(78, "cm"),
  48671. weight: math.unit(10.8, "kg"),
  48672. name: "Back",
  48673. image: {
  48674. source: "./media/characters/alphaschakal/back.svg",
  48675. extra: 1102/942,
  48676. bottom: 185/1287
  48677. }
  48678. },
  48679. head: {
  48680. height: math.unit(28, "cm"),
  48681. name: "Head",
  48682. image: {
  48683. source: "./media/characters/alphaschakal/head.svg",
  48684. extra: 696/508,
  48685. bottom: 0/696
  48686. }
  48687. },
  48688. paw: {
  48689. height: math.unit(16, "cm"),
  48690. name: "Paw",
  48691. image: {
  48692. source: "./media/characters/alphaschakal/paw.svg"
  48693. }
  48694. },
  48695. },
  48696. [
  48697. {
  48698. name: "Normal",
  48699. height: math.unit(47, "cm"),
  48700. default: true
  48701. },
  48702. {
  48703. name: "Macro",
  48704. height: math.unit(340, "cm")
  48705. },
  48706. ]
  48707. ))
  48708. characterMakers.push(() => makeCharacter(
  48709. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48710. {
  48711. front: {
  48712. height: math.unit(36, "earths"),
  48713. name: "Front",
  48714. image: {
  48715. source: "./media/characters/ecobyss/front.svg",
  48716. extra: 1282/1215,
  48717. bottom: 11/1293
  48718. }
  48719. },
  48720. back: {
  48721. height: math.unit(36, "earths"),
  48722. name: "Back",
  48723. image: {
  48724. source: "./media/characters/ecobyss/back.svg",
  48725. extra: 1291/1222,
  48726. bottom: 8/1299
  48727. }
  48728. },
  48729. },
  48730. [
  48731. {
  48732. name: "Normal",
  48733. height: math.unit(36, "earths"),
  48734. default: true
  48735. },
  48736. ]
  48737. ))
  48738. characterMakers.push(() => makeCharacter(
  48739. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48740. {
  48741. front: {
  48742. height: math.unit(12, "feet"),
  48743. name: "Front",
  48744. image: {
  48745. source: "./media/characters/vasuk/front.svg",
  48746. extra: 1326/1207,
  48747. bottom: 64/1390
  48748. }
  48749. },
  48750. },
  48751. [
  48752. {
  48753. name: "Normal",
  48754. height: math.unit(12, "feet"),
  48755. default: true
  48756. },
  48757. ]
  48758. ))
  48759. characterMakers.push(() => makeCharacter(
  48760. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48761. {
  48762. side: {
  48763. height: math.unit(100, "feet"),
  48764. name: "Side",
  48765. image: {
  48766. source: "./media/characters/linneaus/side.svg",
  48767. extra: 987/807,
  48768. bottom: 47/1034
  48769. }
  48770. },
  48771. },
  48772. [
  48773. {
  48774. name: "Macro",
  48775. height: math.unit(100, "feet"),
  48776. default: true
  48777. },
  48778. ]
  48779. ))
  48780. characterMakers.push(() => makeCharacter(
  48781. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48782. {
  48783. front: {
  48784. height: math.unit(8, "feet"),
  48785. weight: math.unit(1200, "lb"),
  48786. name: "Front",
  48787. image: {
  48788. source: "./media/characters/nyterious-daligdig/front.svg",
  48789. extra: 1284/1094,
  48790. bottom: 84/1368
  48791. }
  48792. },
  48793. back: {
  48794. height: math.unit(8, "feet"),
  48795. weight: math.unit(1200, "lb"),
  48796. name: "Back",
  48797. image: {
  48798. source: "./media/characters/nyterious-daligdig/back.svg",
  48799. extra: 1301/1121,
  48800. bottom: 129/1430
  48801. }
  48802. },
  48803. mouth: {
  48804. height: math.unit(1.464, "feet"),
  48805. name: "Mouth",
  48806. image: {
  48807. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48808. }
  48809. },
  48810. },
  48811. [
  48812. {
  48813. name: "Small",
  48814. height: math.unit(8, "feet"),
  48815. default: true
  48816. },
  48817. {
  48818. name: "Normal",
  48819. height: math.unit(15, "feet")
  48820. },
  48821. {
  48822. name: "Macro",
  48823. height: math.unit(90, "feet")
  48824. },
  48825. ]
  48826. ))
  48827. characterMakers.push(() => makeCharacter(
  48828. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48829. {
  48830. front: {
  48831. height: math.unit(7 + 4/12, "feet"),
  48832. weight: math.unit(252, "lb"),
  48833. name: "Front",
  48834. image: {
  48835. source: "./media/characters/bandel/front.svg",
  48836. extra: 1946/1775,
  48837. bottom: 26/1972
  48838. }
  48839. },
  48840. back: {
  48841. height: math.unit(7 + 4/12, "feet"),
  48842. weight: math.unit(252, "lb"),
  48843. name: "Back",
  48844. image: {
  48845. source: "./media/characters/bandel/back.svg",
  48846. extra: 1940/1770,
  48847. bottom: 25/1965
  48848. }
  48849. },
  48850. maw: {
  48851. height: math.unit(2.15, "feet"),
  48852. name: "Maw",
  48853. image: {
  48854. source: "./media/characters/bandel/maw.svg"
  48855. }
  48856. },
  48857. stomach: {
  48858. height: math.unit(1.95, "feet"),
  48859. name: "Stomach",
  48860. image: {
  48861. source: "./media/characters/bandel/stomach.svg"
  48862. }
  48863. },
  48864. },
  48865. [
  48866. {
  48867. name: "Normal",
  48868. height: math.unit(7 + 4/12, "feet"),
  48869. default: true
  48870. },
  48871. ]
  48872. ))
  48873. characterMakers.push(() => makeCharacter(
  48874. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48875. {
  48876. front: {
  48877. height: math.unit(10 + 5/12, "feet"),
  48878. weight: math.unit(773.5, "kg"),
  48879. name: "Front",
  48880. image: {
  48881. source: "./media/characters/zed/front.svg",
  48882. extra: 987/941,
  48883. bottom: 52/1039
  48884. }
  48885. },
  48886. },
  48887. [
  48888. {
  48889. name: "Short",
  48890. height: math.unit(5 + 4/12, "feet")
  48891. },
  48892. {
  48893. name: "Average",
  48894. height: math.unit(10 + 5/12, "feet"),
  48895. default: true
  48896. },
  48897. {
  48898. name: "Mini-Macro",
  48899. height: math.unit(24 + 9/12, "feet")
  48900. },
  48901. {
  48902. name: "Macro",
  48903. height: math.unit(249, "feet")
  48904. },
  48905. {
  48906. name: "Mega-Macro",
  48907. height: math.unit(12490, "feet")
  48908. },
  48909. {
  48910. name: "Giga-Macro",
  48911. height: math.unit(24.9, "miles")
  48912. },
  48913. {
  48914. name: "Tera-Macro",
  48915. height: math.unit(24900, "miles")
  48916. },
  48917. {
  48918. name: "Cosmic Scale",
  48919. height: math.unit(38.9, "lightyears")
  48920. },
  48921. {
  48922. name: "Universal Scale",
  48923. height: math.unit(138e12, "lightyears")
  48924. },
  48925. ]
  48926. ))
  48927. characterMakers.push(() => makeCharacter(
  48928. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48929. {
  48930. front: {
  48931. height: math.unit(1561, "inches"),
  48932. name: "Front",
  48933. image: {
  48934. source: "./media/characters/ivan/front.svg",
  48935. extra: 1126/1071,
  48936. bottom: 26/1152
  48937. }
  48938. },
  48939. back: {
  48940. height: math.unit(1561, "inches"),
  48941. name: "Back",
  48942. image: {
  48943. source: "./media/characters/ivan/back.svg",
  48944. extra: 1134/1079,
  48945. bottom: 30/1164
  48946. }
  48947. },
  48948. },
  48949. [
  48950. {
  48951. name: "Normal",
  48952. height: math.unit(1561, "inches"),
  48953. default: true
  48954. },
  48955. ]
  48956. ))
  48957. characterMakers.push(() => makeCharacter(
  48958. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48959. {
  48960. front: {
  48961. height: math.unit(5 + 7/12, "feet"),
  48962. weight: math.unit(150, "lb"),
  48963. name: "Front",
  48964. image: {
  48965. source: "./media/characters/robin-arctic-hare/front.svg",
  48966. extra: 1148/974,
  48967. bottom: 20/1168
  48968. }
  48969. },
  48970. },
  48971. [
  48972. {
  48973. name: "Normal",
  48974. height: math.unit(5 + 7/12, "feet"),
  48975. default: true
  48976. },
  48977. ]
  48978. ))
  48979. characterMakers.push(() => makeCharacter(
  48980. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48981. {
  48982. side: {
  48983. height: math.unit(5, "feet"),
  48984. name: "Side",
  48985. image: {
  48986. source: "./media/characters/birch/side.svg",
  48987. extra: 985/796,
  48988. bottom: 111/1096
  48989. }
  48990. },
  48991. },
  48992. [
  48993. {
  48994. name: "Normal",
  48995. height: math.unit(5, "feet"),
  48996. default: true
  48997. },
  48998. ]
  48999. ))
  49000. characterMakers.push(() => makeCharacter(
  49001. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49002. {
  49003. front: {
  49004. height: math.unit(4, "feet"),
  49005. name: "Front",
  49006. image: {
  49007. source: "./media/characters/rasp/front.svg",
  49008. extra: 561/478,
  49009. bottom: 74/635
  49010. }
  49011. },
  49012. },
  49013. [
  49014. {
  49015. name: "Normal",
  49016. height: math.unit(4, "feet"),
  49017. default: true
  49018. },
  49019. ]
  49020. ))
  49021. characterMakers.push(() => makeCharacter(
  49022. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49023. {
  49024. front: {
  49025. height: math.unit(4 + 6/12, "feet"),
  49026. name: "Front",
  49027. image: {
  49028. source: "./media/characters/agatha/front.svg",
  49029. extra: 947/933,
  49030. bottom: 42/989
  49031. }
  49032. },
  49033. back: {
  49034. height: math.unit(4 + 6/12, "feet"),
  49035. name: "Back",
  49036. image: {
  49037. source: "./media/characters/agatha/back.svg",
  49038. extra: 935/922,
  49039. bottom: 48/983
  49040. }
  49041. },
  49042. },
  49043. [
  49044. {
  49045. name: "Normal",
  49046. height: math.unit(4 + 6 /12, "feet"),
  49047. default: true
  49048. },
  49049. {
  49050. name: "Max Size",
  49051. height: math.unit(500, "feet")
  49052. },
  49053. ]
  49054. ))
  49055. characterMakers.push(() => makeCharacter(
  49056. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49057. {
  49058. side: {
  49059. height: math.unit(30, "feet"),
  49060. name: "Side",
  49061. image: {
  49062. source: "./media/characters/roggy/side.svg",
  49063. extra: 909/643,
  49064. bottom: 63/972
  49065. }
  49066. },
  49067. lounging: {
  49068. height: math.unit(20, "feet"),
  49069. name: "Lounging",
  49070. image: {
  49071. source: "./media/characters/roggy/lounging.svg",
  49072. extra: 643/479,
  49073. bottom: 145/788
  49074. }
  49075. },
  49076. handpaw: {
  49077. height: math.unit(13.1, "feet"),
  49078. name: "Handpaw",
  49079. image: {
  49080. source: "./media/characters/roggy/handpaw.svg"
  49081. }
  49082. },
  49083. footpaw: {
  49084. height: math.unit(15.8, "feet"),
  49085. name: "Footpaw",
  49086. image: {
  49087. source: "./media/characters/roggy/footpaw.svg"
  49088. }
  49089. },
  49090. },
  49091. [
  49092. {
  49093. name: "Menacing",
  49094. height: math.unit(30, "feet"),
  49095. default: true
  49096. },
  49097. ]
  49098. ))
  49099. characterMakers.push(() => makeCharacter(
  49100. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49101. {
  49102. front: {
  49103. height: math.unit(5 + 7/12, "feet"),
  49104. weight: math.unit(135, "lb"),
  49105. name: "Front",
  49106. image: {
  49107. source: "./media/characters/naomi/front.svg",
  49108. extra: 1209/1154,
  49109. bottom: 129/1338
  49110. }
  49111. },
  49112. back: {
  49113. height: math.unit(5 + 7/12, "feet"),
  49114. weight: math.unit(135, "lb"),
  49115. name: "Back",
  49116. image: {
  49117. source: "./media/characters/naomi/back.svg",
  49118. extra: 1252/1190,
  49119. bottom: 23/1275
  49120. }
  49121. },
  49122. },
  49123. [
  49124. {
  49125. name: "Normal",
  49126. height: math.unit(5 + 7 /12, "feet"),
  49127. default: true
  49128. },
  49129. ]
  49130. ))
  49131. characterMakers.push(() => makeCharacter(
  49132. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49133. {
  49134. side: {
  49135. height: math.unit(35, "meters"),
  49136. name: "Side",
  49137. image: {
  49138. source: "./media/characters/kimpi/side.svg",
  49139. extra: 419/382,
  49140. bottom: 63/482
  49141. }
  49142. },
  49143. hand: {
  49144. height: math.unit(8.96, "meters"),
  49145. name: "Hand",
  49146. image: {
  49147. source: "./media/characters/kimpi/hand.svg"
  49148. }
  49149. },
  49150. },
  49151. [
  49152. {
  49153. name: "Normal",
  49154. height: math.unit(35, "meters"),
  49155. default: true
  49156. },
  49157. ]
  49158. ))
  49159. characterMakers.push(() => makeCharacter(
  49160. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49161. {
  49162. front: {
  49163. height: math.unit(4 + 4/12, "feet"),
  49164. name: "Front",
  49165. image: {
  49166. source: "./media/characters/pepper-purrloin/front.svg",
  49167. extra: 1141/1024,
  49168. bottom: 21/1162
  49169. }
  49170. },
  49171. },
  49172. [
  49173. {
  49174. name: "Normal",
  49175. height: math.unit(4 + 4/12, "feet"),
  49176. default: true
  49177. },
  49178. ]
  49179. ))
  49180. characterMakers.push(() => makeCharacter(
  49181. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49182. {
  49183. front: {
  49184. height: math.unit(6 + 2/12, "feet"),
  49185. name: "Front",
  49186. image: {
  49187. source: "./media/characters/raphael/front.svg",
  49188. extra: 1101/962,
  49189. bottom: 59/1160
  49190. }
  49191. },
  49192. },
  49193. [
  49194. {
  49195. name: "Normal",
  49196. height: math.unit(6 + 2/12, "feet"),
  49197. default: true
  49198. },
  49199. ]
  49200. ))
  49201. characterMakers.push(() => makeCharacter(
  49202. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49203. {
  49204. front: {
  49205. height: math.unit(6, "feet"),
  49206. weight: math.unit(150, "lb"),
  49207. name: "Front",
  49208. image: {
  49209. source: "./media/characters/victor-williams/front.svg",
  49210. extra: 1894/1825,
  49211. bottom: 67/1961
  49212. }
  49213. },
  49214. },
  49215. [
  49216. {
  49217. name: "Normal",
  49218. height: math.unit(6, "feet"),
  49219. default: true
  49220. },
  49221. ]
  49222. ))
  49223. characterMakers.push(() => makeCharacter(
  49224. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49225. {
  49226. front: {
  49227. height: math.unit(5 + 8/12, "feet"),
  49228. weight: math.unit(150, "lb"),
  49229. name: "Front",
  49230. image: {
  49231. source: "./media/characters/rachel/front.svg",
  49232. extra: 1902/1787,
  49233. bottom: 46/1948
  49234. }
  49235. },
  49236. },
  49237. [
  49238. {
  49239. name: "Base Height",
  49240. height: math.unit(5 + 8/12, "feet"),
  49241. default: true
  49242. },
  49243. {
  49244. name: "Macro",
  49245. height: math.unit(200, "feet")
  49246. },
  49247. {
  49248. name: "Mega Macro",
  49249. height: math.unit(1, "mile")
  49250. },
  49251. {
  49252. name: "Giga Macro",
  49253. height: math.unit(1500, "miles")
  49254. },
  49255. {
  49256. name: "Tera Macro",
  49257. height: math.unit(8000, "miles")
  49258. },
  49259. {
  49260. name: "Tera Macro+",
  49261. height: math.unit(2e5, "miles")
  49262. },
  49263. ]
  49264. ))
  49265. characterMakers.push(() => makeCharacter(
  49266. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49267. {
  49268. front: {
  49269. height: math.unit(6.5, "feet"),
  49270. name: "Front",
  49271. image: {
  49272. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49273. extra: 860/819,
  49274. bottom: 307/1167
  49275. }
  49276. },
  49277. back: {
  49278. height: math.unit(6.5, "feet"),
  49279. name: "Back",
  49280. image: {
  49281. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49282. extra: 880/837,
  49283. bottom: 395/1275
  49284. }
  49285. },
  49286. sleeping: {
  49287. height: math.unit(2.79, "feet"),
  49288. name: "Sleeping",
  49289. image: {
  49290. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49291. extra: 465/383,
  49292. bottom: 263/728
  49293. }
  49294. },
  49295. maw: {
  49296. height: math.unit(2.52, "feet"),
  49297. name: "Maw",
  49298. image: {
  49299. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49300. }
  49301. },
  49302. },
  49303. [
  49304. {
  49305. name: "Normal",
  49306. height: math.unit(6.5, "feet"),
  49307. default: true
  49308. },
  49309. ]
  49310. ))
  49311. characterMakers.push(() => makeCharacter(
  49312. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49313. {
  49314. front: {
  49315. height: math.unit(5, "feet"),
  49316. name: "Front",
  49317. image: {
  49318. source: "./media/characters/nova-nerium/front.svg",
  49319. extra: 1548/1392,
  49320. bottom: 374/1922
  49321. }
  49322. },
  49323. back: {
  49324. height: math.unit(5, "feet"),
  49325. name: "Back",
  49326. image: {
  49327. source: "./media/characters/nova-nerium/back.svg",
  49328. extra: 1658/1468,
  49329. bottom: 257/1915
  49330. }
  49331. },
  49332. },
  49333. [
  49334. {
  49335. name: "Normal",
  49336. height: math.unit(5, "feet"),
  49337. default: true
  49338. },
  49339. ]
  49340. ))
  49341. characterMakers.push(() => makeCharacter(
  49342. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49343. {
  49344. front: {
  49345. height: math.unit(5 + 4/12, "feet"),
  49346. name: "Front",
  49347. image: {
  49348. source: "./media/characters/ashe-pyriph/front.svg",
  49349. extra: 1935/1747,
  49350. bottom: 60/1995
  49351. }
  49352. },
  49353. },
  49354. [
  49355. {
  49356. name: "Normal",
  49357. height: math.unit(5 + 4/12, "feet"),
  49358. default: true
  49359. },
  49360. ]
  49361. ))
  49362. characterMakers.push(() => makeCharacter(
  49363. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49364. {
  49365. front: {
  49366. height: math.unit(8.7, "feet"),
  49367. name: "Front",
  49368. image: {
  49369. source: "./media/characters/flicker-wisp/front.svg",
  49370. extra: 1835/1613,
  49371. bottom: 449/2284
  49372. }
  49373. },
  49374. side: {
  49375. height: math.unit(8.7, "feet"),
  49376. name: "Side",
  49377. image: {
  49378. source: "./media/characters/flicker-wisp/side.svg",
  49379. extra: 1841/1642,
  49380. bottom: 336/2177
  49381. },
  49382. default: true
  49383. },
  49384. maw: {
  49385. height: math.unit(3.35, "feet"),
  49386. name: "Maw",
  49387. image: {
  49388. source: "./media/characters/flicker-wisp/maw.svg",
  49389. extra: 2338/1506,
  49390. bottom: 0/2338
  49391. }
  49392. },
  49393. ovipositor: {
  49394. height: math.unit(4.95, "feet"),
  49395. name: "Ovipositor",
  49396. image: {
  49397. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49398. }
  49399. },
  49400. egg: {
  49401. height: math.unit(0.385, "feet"),
  49402. weight: math.unit(2, "lb"),
  49403. name: "Egg",
  49404. image: {
  49405. source: "./media/characters/flicker-wisp/egg.svg"
  49406. }
  49407. },
  49408. },
  49409. [
  49410. {
  49411. name: "Normal",
  49412. height: math.unit(8.7, "feet"),
  49413. default: true
  49414. },
  49415. ]
  49416. ))
  49417. characterMakers.push(() => makeCharacter(
  49418. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49419. {
  49420. side: {
  49421. height: math.unit(11, "feet"),
  49422. name: "Side",
  49423. image: {
  49424. source: "./media/characters/faefnul/side.svg",
  49425. extra: 1100/1007,
  49426. bottom: 0/1100
  49427. }
  49428. },
  49429. },
  49430. [
  49431. {
  49432. name: "Normal",
  49433. height: math.unit(11, "feet"),
  49434. default: true
  49435. },
  49436. ]
  49437. ))
  49438. characterMakers.push(() => makeCharacter(
  49439. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49440. {
  49441. front: {
  49442. height: math.unit(6 + 2/12, "feet"),
  49443. name: "Front",
  49444. image: {
  49445. source: "./media/characters/shady/front.svg",
  49446. extra: 502/461,
  49447. bottom: 9/511
  49448. }
  49449. },
  49450. kneeling: {
  49451. height: math.unit(4.6, "feet"),
  49452. name: "Kneeling",
  49453. image: {
  49454. source: "./media/characters/shady/kneeling.svg",
  49455. extra: 1328/1219,
  49456. bottom: 117/1445
  49457. }
  49458. },
  49459. maw: {
  49460. height: math.unit(2, "feet"),
  49461. name: "Maw",
  49462. image: {
  49463. source: "./media/characters/shady/maw.svg"
  49464. }
  49465. },
  49466. },
  49467. [
  49468. {
  49469. name: "Nano",
  49470. height: math.unit(1, "mm")
  49471. },
  49472. {
  49473. name: "Micro",
  49474. height: math.unit(12, "mm")
  49475. },
  49476. {
  49477. name: "Tiny",
  49478. height: math.unit(3, "inches")
  49479. },
  49480. {
  49481. name: "Normal",
  49482. height: math.unit(6 + 2/12, "feet"),
  49483. default: true
  49484. },
  49485. {
  49486. name: "Big",
  49487. height: math.unit(15, "feet")
  49488. },
  49489. {
  49490. name: "Macro",
  49491. height: math.unit(150, "feet")
  49492. },
  49493. {
  49494. name: "Titanic",
  49495. height: math.unit(500, "feet")
  49496. },
  49497. ]
  49498. ))
  49499. characterMakers.push(() => makeCharacter(
  49500. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49501. {
  49502. front: {
  49503. height: math.unit(12, "feet"),
  49504. name: "Front",
  49505. image: {
  49506. source: "./media/characters/fenrir/front.svg",
  49507. extra: 968/875,
  49508. bottom: 22/990
  49509. }
  49510. },
  49511. },
  49512. [
  49513. {
  49514. name: "Big",
  49515. height: math.unit(12, "feet"),
  49516. default: true
  49517. },
  49518. ]
  49519. ))
  49520. characterMakers.push(() => makeCharacter(
  49521. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49522. {
  49523. front: {
  49524. height: math.unit(5 + 4/12, "feet"),
  49525. name: "Front",
  49526. image: {
  49527. source: "./media/characters/makar/front.svg",
  49528. extra: 1181/1112,
  49529. bottom: 78/1259
  49530. }
  49531. },
  49532. },
  49533. [
  49534. {
  49535. name: "Normal",
  49536. height: math.unit(5 + 4/12, "feet"),
  49537. default: true
  49538. },
  49539. ]
  49540. ))
  49541. characterMakers.push(() => makeCharacter(
  49542. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49543. {
  49544. front: {
  49545. height: math.unit(5 + 7/12, "feet"),
  49546. name: "Front",
  49547. image: {
  49548. source: "./media/characters/callow/front.svg",
  49549. extra: 1482/1304,
  49550. bottom: 23/1505
  49551. }
  49552. },
  49553. back: {
  49554. height: math.unit(5 + 7/12, "feet"),
  49555. name: "Back",
  49556. image: {
  49557. source: "./media/characters/callow/back.svg",
  49558. extra: 1484/1296,
  49559. bottom: 25/1509
  49560. }
  49561. },
  49562. },
  49563. [
  49564. {
  49565. name: "Micro",
  49566. height: math.unit(3, "inches"),
  49567. default: true
  49568. },
  49569. {
  49570. name: "Normal",
  49571. height: math.unit(5 + 7/12, "feet")
  49572. },
  49573. ]
  49574. ))
  49575. characterMakers.push(() => makeCharacter(
  49576. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49577. {
  49578. front: {
  49579. height: math.unit(6 + 2/12, "feet"),
  49580. name: "Front",
  49581. image: {
  49582. source: "./media/characters/natel/front.svg",
  49583. extra: 1833/1692,
  49584. bottom: 166/1999
  49585. }
  49586. },
  49587. },
  49588. [
  49589. {
  49590. name: "Normal",
  49591. height: math.unit(6 + 2/12, "feet"),
  49592. default: true
  49593. },
  49594. ]
  49595. ))
  49596. characterMakers.push(() => makeCharacter(
  49597. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49598. {
  49599. front: {
  49600. height: math.unit(1.75, "meters"),
  49601. name: "Front",
  49602. image: {
  49603. source: "./media/characters/misu/front.svg",
  49604. extra: 1690/1558,
  49605. bottom: 234/1924
  49606. }
  49607. },
  49608. back: {
  49609. height: math.unit(1.75, "meters"),
  49610. name: "Back",
  49611. image: {
  49612. source: "./media/characters/misu/back.svg",
  49613. extra: 1762/1618,
  49614. bottom: 146/1908
  49615. }
  49616. },
  49617. frontNude: {
  49618. height: math.unit(1.75, "meters"),
  49619. name: "Front (Nude)",
  49620. image: {
  49621. source: "./media/characters/misu/front-nude.svg",
  49622. extra: 1690/1558,
  49623. bottom: 234/1924
  49624. }
  49625. },
  49626. backNude: {
  49627. height: math.unit(1.75, "meters"),
  49628. name: "Back (Nude)",
  49629. image: {
  49630. source: "./media/characters/misu/back-nude.svg",
  49631. extra: 1762/1618,
  49632. bottom: 146/1908
  49633. }
  49634. },
  49635. frontErect: {
  49636. height: math.unit(1.75, "meters"),
  49637. name: "Front (Erect)",
  49638. image: {
  49639. source: "./media/characters/misu/front-erect.svg",
  49640. extra: 1690/1558,
  49641. bottom: 234/1924
  49642. }
  49643. },
  49644. maw: {
  49645. height: math.unit(0.47, "meters"),
  49646. name: "Maw",
  49647. image: {
  49648. source: "./media/characters/misu/maw.svg"
  49649. }
  49650. },
  49651. head: {
  49652. height: math.unit(0.35, "meters"),
  49653. name: "Head",
  49654. image: {
  49655. source: "./media/characters/misu/head.svg"
  49656. }
  49657. },
  49658. rear: {
  49659. height: math.unit(0.47, "meters"),
  49660. name: "Rear",
  49661. image: {
  49662. source: "./media/characters/misu/rear.svg"
  49663. }
  49664. },
  49665. },
  49666. [
  49667. {
  49668. name: "Normal",
  49669. height: math.unit(1.75, "meters")
  49670. },
  49671. {
  49672. name: "Not good for the people",
  49673. height: math.unit(42, "meters")
  49674. },
  49675. {
  49676. name: "Not good for the neighborhood",
  49677. height: math.unit(135, "meters")
  49678. },
  49679. {
  49680. name: "Bit bigger problem",
  49681. height: math.unit(380, "meters"),
  49682. default: true
  49683. },
  49684. {
  49685. name: "Not good for the city",
  49686. height: math.unit(1.5, "km")
  49687. },
  49688. {
  49689. name: "Not good for the county",
  49690. height: math.unit(5.5, "km")
  49691. },
  49692. {
  49693. name: "Not good for the state",
  49694. height: math.unit(25, "km")
  49695. },
  49696. {
  49697. name: "Not good for the country",
  49698. height: math.unit(125, "km")
  49699. },
  49700. {
  49701. name: "Not good for the continent",
  49702. height: math.unit(2100, "km")
  49703. },
  49704. {
  49705. name: "Not good for the planet",
  49706. height: math.unit(35000, "km")
  49707. },
  49708. {
  49709. name: "Just no",
  49710. height: math.unit(8.5e18, "km")
  49711. },
  49712. ]
  49713. ))
  49714. characterMakers.push(() => makeCharacter(
  49715. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49716. {
  49717. front: {
  49718. height: math.unit(6.5, "feet"),
  49719. name: "Front",
  49720. image: {
  49721. source: "./media/characters/poppy/front.svg",
  49722. extra: 1878/1812,
  49723. bottom: 43/1921
  49724. }
  49725. },
  49726. feet: {
  49727. height: math.unit(1.06, "feet"),
  49728. name: "Feet",
  49729. image: {
  49730. source: "./media/characters/poppy/feet.svg",
  49731. extra: 1083/1083,
  49732. bottom: 87/1170
  49733. }
  49734. },
  49735. },
  49736. [
  49737. {
  49738. name: "Human",
  49739. height: math.unit(6.5, "feet")
  49740. },
  49741. {
  49742. name: "Default",
  49743. height: math.unit(300, "feet"),
  49744. default: true
  49745. },
  49746. {
  49747. name: "Huge",
  49748. height: math.unit(850, "feet")
  49749. },
  49750. {
  49751. name: "Mega",
  49752. height: math.unit(8000, "feet")
  49753. },
  49754. {
  49755. name: "Giga",
  49756. height: math.unit(300, "miles")
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49762. {
  49763. bipedal: {
  49764. height: math.unit(7, "feet"),
  49765. name: "Bipedal",
  49766. image: {
  49767. source: "./media/characters/zener/bipedal.svg",
  49768. extra: 874/805,
  49769. bottom: 109/983
  49770. }
  49771. },
  49772. quadrupedal: {
  49773. height: math.unit(4.64, "feet"),
  49774. name: "Quadrupedal",
  49775. image: {
  49776. source: "./media/characters/zener/quadrupedal.svg",
  49777. extra: 638/507,
  49778. bottom: 190/828
  49779. }
  49780. },
  49781. cock: {
  49782. height: math.unit(18, "inches"),
  49783. name: "Cock",
  49784. image: {
  49785. source: "./media/characters/zener/cock.svg"
  49786. }
  49787. },
  49788. },
  49789. [
  49790. {
  49791. name: "Normal",
  49792. height: math.unit(7, "feet"),
  49793. default: true
  49794. },
  49795. ]
  49796. ))
  49797. characterMakers.push(() => makeCharacter(
  49798. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49799. {
  49800. nude: {
  49801. height: math.unit(5 + 6/12, "feet"),
  49802. name: "Nude",
  49803. image: {
  49804. source: "./media/characters/charlie-dog/nude.svg",
  49805. extra: 768/734,
  49806. bottom: 26/794
  49807. }
  49808. },
  49809. dressed: {
  49810. height: math.unit(5 + 6/12, "feet"),
  49811. name: "Dressed",
  49812. image: {
  49813. source: "./media/characters/charlie-dog/dressed.svg",
  49814. extra: 768/734,
  49815. bottom: 26/794
  49816. }
  49817. },
  49818. },
  49819. [
  49820. {
  49821. name: "Normal",
  49822. height: math.unit(5 + 6/12, "feet"),
  49823. default: true
  49824. },
  49825. ]
  49826. ))
  49827. characterMakers.push(() => makeCharacter(
  49828. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49829. {
  49830. front: {
  49831. height: math.unit(6 + 4/12, "feet"),
  49832. name: "Front",
  49833. image: {
  49834. source: "./media/characters/ir'istrasz/front.svg",
  49835. extra: 1014/977,
  49836. bottom: 65/1079
  49837. }
  49838. },
  49839. back: {
  49840. height: math.unit(6 + 4/12, "feet"),
  49841. name: "Back",
  49842. image: {
  49843. source: "./media/characters/ir'istrasz/back.svg",
  49844. extra: 1024/992,
  49845. bottom: 34/1058
  49846. }
  49847. },
  49848. },
  49849. [
  49850. {
  49851. name: "Normal",
  49852. height: math.unit(6 + 4/12, "feet"),
  49853. default: true
  49854. },
  49855. ]
  49856. ))
  49857. characterMakers.push(() => makeCharacter(
  49858. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49859. {
  49860. front: {
  49861. height: math.unit(5 + 8/12, "feet"),
  49862. name: "Front",
  49863. image: {
  49864. source: "./media/characters/dee-ditto/front.svg",
  49865. extra: 1874/1785,
  49866. bottom: 68/1942
  49867. }
  49868. },
  49869. back: {
  49870. height: math.unit(5 + 8/12, "feet"),
  49871. name: "Back",
  49872. image: {
  49873. source: "./media/characters/dee-ditto/back.svg",
  49874. extra: 1870/1783,
  49875. bottom: 77/1947
  49876. }
  49877. },
  49878. },
  49879. [
  49880. {
  49881. name: "Normal",
  49882. height: math.unit(5 + 8/12, "feet"),
  49883. default: true
  49884. },
  49885. ]
  49886. ))
  49887. characterMakers.push(() => makeCharacter(
  49888. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49889. {
  49890. front: {
  49891. height: math.unit(7 + 6/12, "feet"),
  49892. name: "Front",
  49893. image: {
  49894. source: "./media/characters/fey/front.svg",
  49895. extra: 995/979,
  49896. bottom: 30/1025
  49897. }
  49898. },
  49899. back: {
  49900. height: math.unit(7 + 6/12, "feet"),
  49901. name: "Back",
  49902. image: {
  49903. source: "./media/characters/fey/back.svg",
  49904. extra: 1079/1008,
  49905. bottom: 5/1084
  49906. }
  49907. },
  49908. dressed: {
  49909. height: math.unit(7 + 6/12, "feet"),
  49910. name: "Dressed",
  49911. image: {
  49912. source: "./media/characters/fey/dressed.svg",
  49913. extra: 995/979,
  49914. bottom: 30/1025
  49915. }
  49916. },
  49917. },
  49918. [
  49919. {
  49920. name: "Normal",
  49921. height: math.unit(7 + 6/12, "feet"),
  49922. default: true
  49923. },
  49924. ]
  49925. ))
  49926. characterMakers.push(() => makeCharacter(
  49927. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49928. {
  49929. standing: {
  49930. height: math.unit(17, "feet"),
  49931. name: "Standing",
  49932. image: {
  49933. source: "./media/characters/aster/standing.svg",
  49934. extra: 1798/1598,
  49935. bottom: 117/1915
  49936. }
  49937. },
  49938. },
  49939. [
  49940. {
  49941. name: "Normal",
  49942. height: math.unit(17, "feet"),
  49943. default: true
  49944. },
  49945. {
  49946. name: "Homewrecker",
  49947. height: math.unit(95, "feet")
  49948. },
  49949. {
  49950. name: "Planet Devourer",
  49951. height: math.unit(1008000, "miles")
  49952. },
  49953. ]
  49954. ))
  49955. characterMakers.push(() => makeCharacter(
  49956. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49957. {
  49958. front: {
  49959. height: math.unit(6 + 5/12, "feet"),
  49960. weight: math.unit(265, "lb"),
  49961. name: "Front",
  49962. image: {
  49963. source: "./media/characters/devon-childs/front.svg",
  49964. extra: 1795/1721,
  49965. bottom: 41/1836
  49966. }
  49967. },
  49968. side: {
  49969. height: math.unit(6 + 5/12, "feet"),
  49970. weight: math.unit(265, "lb"),
  49971. name: "Side",
  49972. image: {
  49973. source: "./media/characters/devon-childs/side.svg",
  49974. extra: 1812/1738,
  49975. bottom: 30/1842
  49976. }
  49977. },
  49978. back: {
  49979. height: math.unit(6 + 5/12, "feet"),
  49980. weight: math.unit(265, "lb"),
  49981. name: "Back",
  49982. image: {
  49983. source: "./media/characters/devon-childs/back.svg",
  49984. extra: 1808/1735,
  49985. bottom: 23/1831
  49986. }
  49987. },
  49988. hand: {
  49989. height: math.unit(1.464, "feet"),
  49990. name: "Hand",
  49991. image: {
  49992. source: "./media/characters/devon-childs/hand.svg"
  49993. }
  49994. },
  49995. foot: {
  49996. height: math.unit(1.6, "feet"),
  49997. name: "Foot",
  49998. image: {
  49999. source: "./media/characters/devon-childs/foot.svg"
  50000. }
  50001. },
  50002. },
  50003. [
  50004. {
  50005. name: "Micro",
  50006. height: math.unit(7, "cm")
  50007. },
  50008. {
  50009. name: "Normal",
  50010. height: math.unit(6 + 5/12, "feet"),
  50011. default: true
  50012. },
  50013. {
  50014. name: "Macro",
  50015. height: math.unit(154, "feet")
  50016. },
  50017. ]
  50018. ))
  50019. characterMakers.push(() => makeCharacter(
  50020. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50021. {
  50022. front: {
  50023. height: math.unit(6, "feet"),
  50024. weight: math.unit(180, "lb"),
  50025. name: "Front",
  50026. image: {
  50027. source: "./media/characters/lydemox-vir/front.svg",
  50028. extra: 1632/1435,
  50029. bottom: 58/1690
  50030. }
  50031. },
  50032. frontSFW: {
  50033. height: math.unit(6, "feet"),
  50034. weight: math.unit(180, "lb"),
  50035. name: "Front (SFW)",
  50036. image: {
  50037. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50038. extra: 1632/1435,
  50039. bottom: 58/1690
  50040. }
  50041. },
  50042. back: {
  50043. height: math.unit(6, "feet"),
  50044. weight: math.unit(180, "lb"),
  50045. name: "Back",
  50046. image: {
  50047. source: "./media/characters/lydemox-vir/back.svg",
  50048. extra: 1593/1408,
  50049. bottom: 31/1624
  50050. }
  50051. },
  50052. paw: {
  50053. height: math.unit(1.85, "feet"),
  50054. name: "Paw",
  50055. image: {
  50056. source: "./media/characters/lydemox-vir/paw.svg"
  50057. }
  50058. },
  50059. dick: {
  50060. height: math.unit(1.8, "feet"),
  50061. name: "Dick",
  50062. image: {
  50063. source: "./media/characters/lydemox-vir/dick.svg"
  50064. }
  50065. },
  50066. },
  50067. [
  50068. {
  50069. name: "Macro",
  50070. height: math.unit(100, "feet"),
  50071. default: true
  50072. },
  50073. {
  50074. name: "Teramacro",
  50075. height: math.unit(1, "earth")
  50076. },
  50077. {
  50078. name: "Planetary",
  50079. height: math.unit(20, "earths")
  50080. },
  50081. ]
  50082. ))
  50083. characterMakers.push(() => makeCharacter(
  50084. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50085. {
  50086. front: {
  50087. height: math.unit(15 + 8/12, "feet"),
  50088. weight: math.unit(1237, "kg"),
  50089. name: "Front",
  50090. image: {
  50091. source: "./media/characters/mia/front.svg",
  50092. extra: 1573/1446,
  50093. bottom: 58/1631
  50094. }
  50095. },
  50096. },
  50097. [
  50098. {
  50099. name: "Small",
  50100. height: math.unit(9 + 5/12, "feet")
  50101. },
  50102. {
  50103. name: "Normal",
  50104. height: math.unit(15 + 8/12, "feet"),
  50105. default: true
  50106. },
  50107. ]
  50108. ))
  50109. characterMakers.push(() => makeCharacter(
  50110. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50111. {
  50112. front: {
  50113. height: math.unit(10 + 6/12, "feet"),
  50114. weight: math.unit(1.3, "tons"),
  50115. name: "Front",
  50116. image: {
  50117. source: "./media/characters/mr-graves/front.svg",
  50118. extra: 1779/1695,
  50119. bottom: 198/1977
  50120. }
  50121. },
  50122. },
  50123. [
  50124. {
  50125. name: "Normal",
  50126. height: math.unit(10 + 6 /12, "feet"),
  50127. default: true
  50128. },
  50129. ]
  50130. ))
  50131. characterMakers.push(() => makeCharacter(
  50132. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50133. {
  50134. dressedFront: {
  50135. height: math.unit(5 + 8/12, "feet"),
  50136. weight: math.unit(125, "lb"),
  50137. name: "Dressed (Front)",
  50138. image: {
  50139. source: "./media/characters/jess/dressed-front.svg",
  50140. extra: 1176/1152,
  50141. bottom: 42/1218
  50142. }
  50143. },
  50144. dressedSide: {
  50145. height: math.unit(5 + 8/12, "feet"),
  50146. weight: math.unit(125, "lb"),
  50147. name: "Dressed (Side)",
  50148. image: {
  50149. source: "./media/characters/jess/dressed-side.svg",
  50150. extra: 1204/1190,
  50151. bottom: 6/1210
  50152. }
  50153. },
  50154. nudeFront: {
  50155. height: math.unit(5 + 8/12, "feet"),
  50156. weight: math.unit(125, "lb"),
  50157. name: "Nude (Front)",
  50158. image: {
  50159. source: "./media/characters/jess/nude-front.svg",
  50160. extra: 1176/1152,
  50161. bottom: 42/1218
  50162. }
  50163. },
  50164. nudeSide: {
  50165. height: math.unit(5 + 8/12, "feet"),
  50166. weight: math.unit(125, "lb"),
  50167. name: "Nude (Side)",
  50168. image: {
  50169. source: "./media/characters/jess/nude-side.svg",
  50170. extra: 1204/1190,
  50171. bottom: 6/1210
  50172. }
  50173. },
  50174. organsFront: {
  50175. height: math.unit(2.83799342105, "feet"),
  50176. name: "Organs (Front)",
  50177. image: {
  50178. source: "./media/characters/jess/organs-front.svg"
  50179. }
  50180. },
  50181. organsSide: {
  50182. height: math.unit(2.64225290474, "feet"),
  50183. name: "Organs (Side)",
  50184. image: {
  50185. source: "./media/characters/jess/organs-side.svg"
  50186. }
  50187. },
  50188. digestiveTractFront: {
  50189. height: math.unit(2.8106580871, "feet"),
  50190. name: "Digestive Tract (Front)",
  50191. image: {
  50192. source: "./media/characters/jess/digestive-tract-front.svg"
  50193. }
  50194. },
  50195. digestiveTractSide: {
  50196. height: math.unit(2.54365045014, "feet"),
  50197. name: "Digestive Tract (Side)",
  50198. image: {
  50199. source: "./media/characters/jess/digestive-tract-side.svg"
  50200. }
  50201. },
  50202. respiratorySystemFront: {
  50203. height: math.unit(1.11196233456, "feet"),
  50204. name: "Respiratory System (Front)",
  50205. image: {
  50206. source: "./media/characters/jess/respiratory-system-front.svg"
  50207. }
  50208. },
  50209. respiratorySystemSide: {
  50210. height: math.unit(0.89327966297, "feet"),
  50211. name: "Respiratory System (Side)",
  50212. image: {
  50213. source: "./media/characters/jess/respiratory-system-side.svg"
  50214. }
  50215. },
  50216. urinaryTractFront: {
  50217. height: math.unit(1.16126356186, "feet"),
  50218. name: "Urinary Tract (Front)",
  50219. image: {
  50220. source: "./media/characters/jess/urinary-tract-front.svg"
  50221. }
  50222. },
  50223. urinaryTractSide: {
  50224. height: math.unit(1.20910039627, "feet"),
  50225. name: "Urinary Tract (Side)",
  50226. image: {
  50227. source: "./media/characters/jess/urinary-tract-side.svg"
  50228. }
  50229. },
  50230. reproductiveOrgansFront: {
  50231. height: math.unit(0.48422591566, "feet"),
  50232. name: "Reproductive Organs (Front)",
  50233. image: {
  50234. source: "./media/characters/jess/reproductive-organs-front.svg"
  50235. }
  50236. },
  50237. reproductiveOrgansSide: {
  50238. height: math.unit(0.61553314481, "feet"),
  50239. name: "Reproductive Organs (Side)",
  50240. image: {
  50241. source: "./media/characters/jess/reproductive-organs-side.svg"
  50242. }
  50243. },
  50244. breastsFront: {
  50245. height: math.unit(0.47690395121, "feet"),
  50246. name: "Breasts (Front)",
  50247. image: {
  50248. source: "./media/characters/jess/breasts-front.svg"
  50249. }
  50250. },
  50251. breastsSide: {
  50252. height: math.unit(0.30556998307, "feet"),
  50253. name: "Breasts (Side)",
  50254. image: {
  50255. source: "./media/characters/jess/breasts-side.svg"
  50256. }
  50257. },
  50258. heartFront: {
  50259. height: math.unit(0.53011022622, "feet"),
  50260. name: "Heart (Front)",
  50261. image: {
  50262. source: "./media/characters/jess/heart-front.svg"
  50263. }
  50264. },
  50265. heartSide: {
  50266. height: math.unit(0.51790695213, "feet"),
  50267. name: "Heart (Side)",
  50268. image: {
  50269. source: "./media/characters/jess/heart-side.svg"
  50270. }
  50271. },
  50272. earsAndNoseFront: {
  50273. height: math.unit(0.29385483995, "feet"),
  50274. name: "Ears and Nose (Front)",
  50275. image: {
  50276. source: "./media/characters/jess/ears-and-nose-front.svg"
  50277. }
  50278. },
  50279. earsAndNoseSide: {
  50280. height: math.unit(0.18109658741, "feet"),
  50281. name: "Ears and Nose (Side)",
  50282. image: {
  50283. source: "./media/characters/jess/ears-and-nose-side.svg"
  50284. }
  50285. },
  50286. },
  50287. [
  50288. {
  50289. name: "Normal",
  50290. height: math.unit(5 + 8/12, "feet"),
  50291. default: true
  50292. },
  50293. ]
  50294. ))
  50295. characterMakers.push(() => makeCharacter(
  50296. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50297. {
  50298. front: {
  50299. height: math.unit(6, "feet"),
  50300. weight: math.unit(6.64467e-7, "grams"),
  50301. name: "Front",
  50302. image: {
  50303. source: "./media/characters/wimpering/front.svg",
  50304. extra: 597/587,
  50305. bottom: 34/631
  50306. }
  50307. },
  50308. },
  50309. [
  50310. {
  50311. name: "Micro",
  50312. height: math.unit(0.4, "mm"),
  50313. default: true
  50314. },
  50315. ]
  50316. ))
  50317. characterMakers.push(() => makeCharacter(
  50318. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50319. {
  50320. front: {
  50321. height: math.unit(5 + 2/12, "feet"),
  50322. weight: math.unit(110, "lb"),
  50323. name: "Front",
  50324. image: {
  50325. source: "./media/characters/keltre/front.svg",
  50326. extra: 1099/1057,
  50327. bottom: 22/1121
  50328. }
  50329. },
  50330. back: {
  50331. height: math.unit(5 + 2/12, "feet"),
  50332. weight: math.unit(110, "lb"),
  50333. name: "Back",
  50334. image: {
  50335. source: "./media/characters/keltre/back.svg",
  50336. extra: 1095/1053,
  50337. bottom: 17/1112
  50338. }
  50339. },
  50340. dressed: {
  50341. height: math.unit(5 + 2/12, "feet"),
  50342. weight: math.unit(110, "lb"),
  50343. name: "Dressed",
  50344. image: {
  50345. source: "./media/characters/keltre/dressed.svg",
  50346. extra: 1099/1057,
  50347. bottom: 22/1121
  50348. }
  50349. },
  50350. winter: {
  50351. height: math.unit(5 + 2/12, "feet"),
  50352. weight: math.unit(110, "lb"),
  50353. name: "Winter",
  50354. image: {
  50355. source: "./media/characters/keltre/winter.svg",
  50356. extra: 1099/1057,
  50357. bottom: 22/1121
  50358. }
  50359. },
  50360. head: {
  50361. height: math.unit(1.61 * 0.86, "feet"),
  50362. name: "Head",
  50363. image: {
  50364. source: "./media/characters/keltre/head.svg",
  50365. extra: 534/421,
  50366. bottom: 0/534
  50367. }
  50368. },
  50369. hand: {
  50370. height: math.unit(1.3 * 0.86, "feet"),
  50371. name: "Hand",
  50372. image: {
  50373. source: "./media/characters/keltre/hand.svg"
  50374. }
  50375. },
  50376. foot: {
  50377. height: math.unit(1.8 * 0.86, "feet"),
  50378. name: "Foot",
  50379. image: {
  50380. source: "./media/characters/keltre/foot.svg"
  50381. }
  50382. },
  50383. },
  50384. [
  50385. {
  50386. name: "Fine",
  50387. height: math.unit(1, "inch")
  50388. },
  50389. {
  50390. name: "Dimnutive",
  50391. height: math.unit(4, "inches")
  50392. },
  50393. {
  50394. name: "Tiny",
  50395. height: math.unit(1, "foot")
  50396. },
  50397. {
  50398. name: "Small",
  50399. height: math.unit(3, "feet")
  50400. },
  50401. {
  50402. name: "Normal",
  50403. height: math.unit(5 + 2/12, "feet"),
  50404. default: true
  50405. },
  50406. ]
  50407. ))
  50408. characterMakers.push(() => makeCharacter(
  50409. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50410. {
  50411. front: {
  50412. height: math.unit(6 + 2/12, "feet"),
  50413. name: "Front",
  50414. image: {
  50415. source: "./media/characters/nox/front.svg",
  50416. extra: 1917/1830,
  50417. bottom: 74/1991
  50418. }
  50419. },
  50420. back: {
  50421. height: math.unit(6 + 2/12, "feet"),
  50422. name: "Back",
  50423. image: {
  50424. source: "./media/characters/nox/back.svg",
  50425. extra: 1896/1815,
  50426. bottom: 21/1917
  50427. }
  50428. },
  50429. head: {
  50430. height: math.unit(1.1, "feet"),
  50431. name: "Head",
  50432. image: {
  50433. source: "./media/characters/nox/head.svg",
  50434. extra: 874/704,
  50435. bottom: 0/874
  50436. }
  50437. },
  50438. tattoo: {
  50439. height: math.unit(0.729, "feet"),
  50440. name: "Tattoo",
  50441. image: {
  50442. source: "./media/characters/nox/tattoo.svg"
  50443. }
  50444. },
  50445. },
  50446. [
  50447. {
  50448. name: "Normal",
  50449. height: math.unit(6 + 2/12, "feet")
  50450. },
  50451. {
  50452. name: "Gigamacro",
  50453. height: math.unit(2, "earths"),
  50454. default: true
  50455. },
  50456. {
  50457. name: "Cosmic",
  50458. height: math.unit(867, "yottameters")
  50459. },
  50460. ]
  50461. ))
  50462. characterMakers.push(() => makeCharacter(
  50463. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50464. {
  50465. front: {
  50466. height: math.unit(6, "feet"),
  50467. weight: math.unit(150, "lb"),
  50468. name: "Front",
  50469. image: {
  50470. source: "./media/characters/caspian/front.svg",
  50471. extra: 1443/1359,
  50472. bottom: 0/1443
  50473. }
  50474. },
  50475. back: {
  50476. height: math.unit(6, "feet"),
  50477. weight: math.unit(150, "lb"),
  50478. name: "Back",
  50479. image: {
  50480. source: "./media/characters/caspian/back.svg",
  50481. extra: 1379/1309,
  50482. bottom: 0/1379
  50483. }
  50484. },
  50485. head: {
  50486. height: math.unit(0.9, "feet"),
  50487. name: "Head",
  50488. image: {
  50489. source: "./media/characters/caspian/head.svg",
  50490. extra: 692/492,
  50491. bottom: 0/692
  50492. }
  50493. },
  50494. headAlt: {
  50495. height: math.unit(0.95, "feet"),
  50496. name: "Head (Alt)",
  50497. image: {
  50498. source: "./media/characters/caspian/head-alt.svg",
  50499. extra: 668/508,
  50500. bottom: 0/668
  50501. }
  50502. },
  50503. hand: {
  50504. height: math.unit(0.8, "feet"),
  50505. name: "Hand",
  50506. image: {
  50507. source: "./media/characters/caspian/hand.svg"
  50508. }
  50509. },
  50510. paw: {
  50511. height: math.unit(0.95, "feet"),
  50512. name: "Paw",
  50513. image: {
  50514. source: "./media/characters/caspian/paw.svg"
  50515. }
  50516. },
  50517. },
  50518. [
  50519. {
  50520. name: "Normal",
  50521. height: math.unit(162, "feet"),
  50522. default: true
  50523. },
  50524. ]
  50525. ))
  50526. characterMakers.push(() => makeCharacter(
  50527. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50528. {
  50529. front: {
  50530. height: math.unit(6, "feet"),
  50531. name: "Front",
  50532. image: {
  50533. source: "./media/characters/myra-aisling/front.svg",
  50534. extra: 1268/1166,
  50535. bottom: 73/1341
  50536. }
  50537. },
  50538. back: {
  50539. height: math.unit(6, "feet"),
  50540. name: "Back",
  50541. image: {
  50542. source: "./media/characters/myra-aisling/back.svg",
  50543. extra: 1249/1149,
  50544. bottom: 79/1328
  50545. }
  50546. },
  50547. dressed: {
  50548. height: math.unit(6, "feet"),
  50549. name: "Dressed",
  50550. image: {
  50551. source: "./media/characters/myra-aisling/dressed.svg",
  50552. extra: 1290/1189,
  50553. bottom: 47/1337
  50554. }
  50555. },
  50556. hand: {
  50557. height: math.unit(1.1, "feet"),
  50558. name: "Hand",
  50559. image: {
  50560. source: "./media/characters/myra-aisling/hand.svg"
  50561. }
  50562. },
  50563. paw: {
  50564. height: math.unit(1.23, "feet"),
  50565. name: "Paw",
  50566. image: {
  50567. source: "./media/characters/myra-aisling/paw.svg"
  50568. }
  50569. },
  50570. },
  50571. [
  50572. {
  50573. name: "Normal",
  50574. height: math.unit(160, "feet"),
  50575. default: true
  50576. },
  50577. ]
  50578. ))
  50579. characterMakers.push(() => makeCharacter(
  50580. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50581. {
  50582. front: {
  50583. height: math.unit(6, "feet"),
  50584. name: "Front",
  50585. image: {
  50586. source: "./media/characters/tenley-sidero/front.svg",
  50587. extra: 1365/1276,
  50588. bottom: 47/1412
  50589. }
  50590. },
  50591. back: {
  50592. height: math.unit(6, "feet"),
  50593. name: "Back",
  50594. image: {
  50595. source: "./media/characters/tenley-sidero/back.svg",
  50596. extra: 1383/1283,
  50597. bottom: 35/1418
  50598. }
  50599. },
  50600. dressed: {
  50601. height: math.unit(6, "feet"),
  50602. name: "Dressed",
  50603. image: {
  50604. source: "./media/characters/tenley-sidero/dressed.svg",
  50605. extra: 1364/1275,
  50606. bottom: 42/1406
  50607. }
  50608. },
  50609. head: {
  50610. height: math.unit(1.47, "feet"),
  50611. name: "Head",
  50612. image: {
  50613. source: "./media/characters/tenley-sidero/head.svg",
  50614. extra: 610/490,
  50615. bottom: 0/610
  50616. }
  50617. },
  50618. },
  50619. [
  50620. {
  50621. name: "Normal",
  50622. height: math.unit(154, "feet"),
  50623. default: true
  50624. },
  50625. ]
  50626. ))
  50627. characterMakers.push(() => makeCharacter(
  50628. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50629. {
  50630. front: {
  50631. height: math.unit(5, "inches"),
  50632. name: "Front",
  50633. image: {
  50634. source: "./media/characters/mallory/front.svg",
  50635. extra: 1919/1678,
  50636. bottom: 29/1948
  50637. }
  50638. },
  50639. hand: {
  50640. height: math.unit(0.73, "inches"),
  50641. name: "Hand",
  50642. image: {
  50643. source: "./media/characters/mallory/hand.svg"
  50644. }
  50645. },
  50646. paw: {
  50647. height: math.unit(0.68, "inches"),
  50648. name: "Paw",
  50649. image: {
  50650. source: "./media/characters/mallory/paw.svg"
  50651. }
  50652. },
  50653. },
  50654. [
  50655. {
  50656. name: "Small",
  50657. height: math.unit(5, "inches"),
  50658. default: true
  50659. },
  50660. ]
  50661. ))
  50662. characterMakers.push(() => makeCharacter(
  50663. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50664. {
  50665. naked: {
  50666. height: math.unit(6, "feet"),
  50667. name: "Naked",
  50668. image: {
  50669. source: "./media/characters/mab/naked.svg",
  50670. extra: 1855/1757,
  50671. bottom: 208/2063
  50672. }
  50673. },
  50674. outside: {
  50675. height: math.unit(6, "feet"),
  50676. name: "Outside",
  50677. image: {
  50678. source: "./media/characters/mab/outside.svg",
  50679. extra: 1855/1757,
  50680. bottom: 208/2063
  50681. }
  50682. },
  50683. party: {
  50684. height: math.unit(6, "feet"),
  50685. name: "Party",
  50686. image: {
  50687. source: "./media/characters/mab/party.svg",
  50688. extra: 1855/1757,
  50689. bottom: 208/2063
  50690. }
  50691. },
  50692. },
  50693. [
  50694. {
  50695. name: "Normal",
  50696. height: math.unit(165, "feet"),
  50697. default: true
  50698. },
  50699. ]
  50700. ))
  50701. characterMakers.push(() => makeCharacter(
  50702. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50703. {
  50704. feral: {
  50705. height: math.unit(12, "feet"),
  50706. weight: math.unit(20000, "lb"),
  50707. name: "Side",
  50708. image: {
  50709. source: "./media/characters/winter/feral.svg",
  50710. extra: 1286/943,
  50711. bottom: 112/1398
  50712. },
  50713. form: "feral",
  50714. default: true
  50715. },
  50716. feralNsfw: {
  50717. height: math.unit(12, "feet"),
  50718. weight: math.unit(20000, "lb"),
  50719. name: "Side (NSFW)",
  50720. image: {
  50721. source: "./media/characters/winter/feral-nsfw.svg",
  50722. extra: 1286/943,
  50723. bottom: 112/1398
  50724. },
  50725. form: "feral"
  50726. },
  50727. dick: {
  50728. height: math.unit(3.79, "feet"),
  50729. name: "Dick",
  50730. image: {
  50731. source: "./media/characters/winter/dick.svg"
  50732. },
  50733. form: "feral"
  50734. },
  50735. anthro: {
  50736. height: math.unit(12, "feet"),
  50737. weight: math.unit(10, "tons"),
  50738. name: "Anthro",
  50739. image: {
  50740. source: "./media/characters/winter/anthro.svg",
  50741. extra: 1701/1553,
  50742. bottom: 64/1765
  50743. },
  50744. form: "anthro",
  50745. default: true
  50746. },
  50747. },
  50748. [
  50749. {
  50750. name: "Big",
  50751. height: math.unit(12, "feet"),
  50752. default: true,
  50753. form: "feral"
  50754. },
  50755. {
  50756. name: "Big",
  50757. height: math.unit(12, "feet"),
  50758. default: true,
  50759. form: "anthro"
  50760. },
  50761. ],
  50762. {
  50763. "feral": {
  50764. name: "Feral",
  50765. default: true
  50766. },
  50767. "anthro": {
  50768. name: "Anthro"
  50769. }
  50770. }
  50771. ))
  50772. characterMakers.push(() => makeCharacter(
  50773. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50774. {
  50775. front: {
  50776. height: math.unit(4.1, "inches"),
  50777. name: "Front",
  50778. image: {
  50779. source: "./media/characters/alto/front.svg",
  50780. extra: 736/627,
  50781. bottom: 90/826
  50782. }
  50783. },
  50784. },
  50785. [
  50786. {
  50787. name: "Normal",
  50788. height: math.unit(4.1, "inches"),
  50789. default: true
  50790. },
  50791. ]
  50792. ))
  50793. characterMakers.push(() => makeCharacter(
  50794. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50795. {
  50796. sitting: {
  50797. height: math.unit(3, "feet"),
  50798. name: "Sitting",
  50799. image: {
  50800. source: "./media/characters/ratstrid-v/sitting.svg",
  50801. extra: 355/310,
  50802. bottom: 136/491
  50803. }
  50804. },
  50805. },
  50806. [
  50807. {
  50808. name: "Normal",
  50809. height: math.unit(3, "feet"),
  50810. default: true
  50811. },
  50812. ]
  50813. ))
  50814. characterMakers.push(() => makeCharacter(
  50815. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50816. {
  50817. back: {
  50818. height: math.unit(6, "feet"),
  50819. weight: math.unit(450, "lb"),
  50820. name: "Back",
  50821. image: {
  50822. source: "./media/characters/siz/back.svg",
  50823. extra: 1449/1274,
  50824. bottom: 13/1462
  50825. }
  50826. },
  50827. },
  50828. [
  50829. {
  50830. name: "Smallest",
  50831. height: math.unit(18 + 3/12, "feet")
  50832. },
  50833. {
  50834. name: "Modest",
  50835. height: math.unit(56 + 8/12, "feet"),
  50836. default: true
  50837. },
  50838. {
  50839. name: "Largest",
  50840. height: math.unit(3590, "feet")
  50841. },
  50842. ]
  50843. ))
  50844. characterMakers.push(() => makeCharacter(
  50845. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50846. {
  50847. front: {
  50848. height: math.unit(5 + 9/12, "feet"),
  50849. weight: math.unit(150, "lb"),
  50850. name: "Front",
  50851. image: {
  50852. source: "./media/characters/ven/front.svg",
  50853. extra: 1372/1320,
  50854. bottom: 73/1445
  50855. }
  50856. },
  50857. side: {
  50858. height: math.unit(5 + 9/12, "feet"),
  50859. weight: math.unit(1150, "lb"),
  50860. name: "Side",
  50861. image: {
  50862. source: "./media/characters/ven/side.svg",
  50863. extra: 1119/1070,
  50864. bottom: 42/1161
  50865. },
  50866. default: true
  50867. },
  50868. },
  50869. [
  50870. {
  50871. name: "Normal",
  50872. height: math.unit(5 + 9/12, "feet"),
  50873. default: true
  50874. },
  50875. ]
  50876. ))
  50877. characterMakers.push(() => makeCharacter(
  50878. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50879. {
  50880. front: {
  50881. height: math.unit(12, "feet"),
  50882. weight: math.unit(1000, "kg"),
  50883. name: "Front",
  50884. image: {
  50885. source: "./media/characters/maple/front.svg",
  50886. extra: 1193/1081,
  50887. bottom: 22/1215
  50888. }
  50889. },
  50890. },
  50891. [
  50892. {
  50893. name: "Compressed",
  50894. height: math.unit(7, "feet")
  50895. },
  50896. {
  50897. name: "Normal",
  50898. height: math.unit(12, "feet"),
  50899. default: true
  50900. },
  50901. ]
  50902. ))
  50903. characterMakers.push(() => makeCharacter(
  50904. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50905. {
  50906. front: {
  50907. height: math.unit(9, "feet"),
  50908. weight: math.unit(1500, "lb"),
  50909. name: "Front",
  50910. image: {
  50911. source: "./media/characters/nora/front.svg",
  50912. extra: 1348/1286,
  50913. bottom: 218/1566
  50914. }
  50915. },
  50916. erect: {
  50917. height: math.unit(9, "feet"),
  50918. weight: math.unit(11500, "lb"),
  50919. name: "Erect",
  50920. image: {
  50921. source: "./media/characters/nora/erect.svg",
  50922. extra: 1488/1433,
  50923. bottom: 133/1621
  50924. }
  50925. },
  50926. },
  50927. [
  50928. {
  50929. name: "Normal",
  50930. height: math.unit(9, "feet"),
  50931. default: true
  50932. },
  50933. ]
  50934. ))
  50935. characterMakers.push(() => makeCharacter(
  50936. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50937. {
  50938. front: {
  50939. height: math.unit(25, "feet"),
  50940. weight: math.unit(27500, "lb"),
  50941. name: "Front",
  50942. image: {
  50943. source: "./media/characters/north-caudin/front.svg",
  50944. extra: 1184/1082,
  50945. bottom: 23/1207
  50946. }
  50947. },
  50948. },
  50949. [
  50950. {
  50951. name: "Compressed",
  50952. height: math.unit(10, "feet")
  50953. },
  50954. {
  50955. name: "Normal",
  50956. height: math.unit(25, "feet"),
  50957. default: true
  50958. },
  50959. ]
  50960. ))
  50961. characterMakers.push(() => makeCharacter(
  50962. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50963. {
  50964. front: {
  50965. height: math.unit(9, "feet"),
  50966. weight: math.unit(1250, "lb"),
  50967. name: "Front",
  50968. image: {
  50969. source: "./media/characters/merrian/front.svg",
  50970. extra: 2393/2304,
  50971. bottom: 40/2433
  50972. }
  50973. },
  50974. },
  50975. [
  50976. {
  50977. name: "Normal",
  50978. height: math.unit(9, "feet"),
  50979. default: true
  50980. },
  50981. ]
  50982. ))
  50983. characterMakers.push(() => makeCharacter(
  50984. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50985. {
  50986. front: {
  50987. height: math.unit(9, "feet"),
  50988. weight: math.unit(1000, "lb"),
  50989. name: "Front",
  50990. image: {
  50991. source: "./media/characters/hazel/front.svg",
  50992. extra: 2351/2298,
  50993. bottom: 38/2389
  50994. }
  50995. },
  50996. },
  50997. [
  50998. {
  50999. name: "Normal",
  51000. height: math.unit(9, "feet"),
  51001. default: true
  51002. },
  51003. ]
  51004. ))
  51005. characterMakers.push(() => makeCharacter(
  51006. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51007. {
  51008. front: {
  51009. height: math.unit(13, "feet"),
  51010. weight: math.unit(3200, "lb"),
  51011. name: "Front",
  51012. image: {
  51013. source: "./media/characters/emma/front.svg",
  51014. extra: 2263/2029,
  51015. bottom: 68/2331
  51016. }
  51017. },
  51018. },
  51019. [
  51020. {
  51021. name: "Normal",
  51022. height: math.unit(13, "feet"),
  51023. default: true
  51024. },
  51025. ]
  51026. ))
  51027. characterMakers.push(() => makeCharacter(
  51028. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51029. {
  51030. front: {
  51031. height: math.unit(11 + 9/12, "feet"),
  51032. weight: math.unit(2500, "lb"),
  51033. name: "Front",
  51034. image: {
  51035. source: "./media/characters/ilumina/front.svg",
  51036. extra: 2248/2209,
  51037. bottom: 164/2412
  51038. }
  51039. },
  51040. },
  51041. [
  51042. {
  51043. name: "Normal",
  51044. height: math.unit(11 + 9/12, "feet"),
  51045. default: true
  51046. },
  51047. ]
  51048. ))
  51049. characterMakers.push(() => makeCharacter(
  51050. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51051. {
  51052. front: {
  51053. height: math.unit(8 + 10/12, "feet"),
  51054. weight: math.unit(1350, "lb"),
  51055. name: "Front",
  51056. image: {
  51057. source: "./media/characters/moonshine/front.svg",
  51058. extra: 2395/2288,
  51059. bottom: 40/2435
  51060. }
  51061. },
  51062. },
  51063. [
  51064. {
  51065. name: "Normal",
  51066. height: math.unit(8 + 10/12, "feet"),
  51067. default: true
  51068. },
  51069. ]
  51070. ))
  51071. characterMakers.push(() => makeCharacter(
  51072. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51073. {
  51074. front: {
  51075. height: math.unit(14, "feet"),
  51076. weight: math.unit(3400, "lb"),
  51077. name: "Front",
  51078. image: {
  51079. source: "./media/characters/aletia/front.svg",
  51080. extra: 1185/1052,
  51081. bottom: 21/1206
  51082. }
  51083. },
  51084. },
  51085. [
  51086. {
  51087. name: "Compressed",
  51088. height: math.unit(8, "feet")
  51089. },
  51090. {
  51091. name: "Normal",
  51092. height: math.unit(14, "feet"),
  51093. default: true
  51094. },
  51095. ]
  51096. ))
  51097. characterMakers.push(() => makeCharacter(
  51098. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51099. {
  51100. front: {
  51101. height: math.unit(17, "feet"),
  51102. weight: math.unit(6500, "lb"),
  51103. name: "Front",
  51104. image: {
  51105. source: "./media/characters/deidra/front.svg",
  51106. extra: 1201/1081,
  51107. bottom: 16/1217
  51108. }
  51109. },
  51110. },
  51111. [
  51112. {
  51113. name: "Compressed",
  51114. height: math.unit(9 + 6/12, "feet")
  51115. },
  51116. {
  51117. name: "Normal",
  51118. height: math.unit(17, "feet"),
  51119. default: true
  51120. },
  51121. ]
  51122. ))
  51123. characterMakers.push(() => makeCharacter(
  51124. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51125. {
  51126. front: {
  51127. height: math.unit(7 + 4/12, "feet"),
  51128. weight: math.unit(280, "lb"),
  51129. name: "Front",
  51130. image: {
  51131. source: "./media/characters/freki-yrmori/front.svg",
  51132. extra: 1286/1182,
  51133. bottom: 29/1315
  51134. }
  51135. },
  51136. maw: {
  51137. height: math.unit(0.9, "feet"),
  51138. name: "Maw",
  51139. image: {
  51140. source: "./media/characters/freki-yrmori/maw.svg"
  51141. }
  51142. },
  51143. },
  51144. [
  51145. {
  51146. name: "Normal",
  51147. height: math.unit(7 + 4/12, "feet"),
  51148. default: true
  51149. },
  51150. {
  51151. name: "Macro",
  51152. height: math.unit(38.5, "meters")
  51153. },
  51154. ]
  51155. ))
  51156. characterMakers.push(() => makeCharacter(
  51157. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51158. {
  51159. side: {
  51160. height: math.unit(47.2, "meters"),
  51161. weight: math.unit(10000, "tons"),
  51162. name: "Side",
  51163. image: {
  51164. source: "./media/characters/aetherios/side.svg",
  51165. extra: 2363/642,
  51166. bottom: 221/2584
  51167. }
  51168. },
  51169. top: {
  51170. height: math.unit(240, "meters"),
  51171. weight: math.unit(10000, "tons"),
  51172. name: "Top",
  51173. image: {
  51174. source: "./media/characters/aetherios/top.svg"
  51175. }
  51176. },
  51177. bottom: {
  51178. height: math.unit(240, "meters"),
  51179. weight: math.unit(10000, "tons"),
  51180. name: "Bottom",
  51181. image: {
  51182. source: "./media/characters/aetherios/bottom.svg"
  51183. }
  51184. },
  51185. head: {
  51186. height: math.unit(38.6, "meters"),
  51187. name: "Head",
  51188. image: {
  51189. source: "./media/characters/aetherios/head.svg",
  51190. extra: 1335/1112,
  51191. bottom: 0/1335
  51192. }
  51193. },
  51194. front: {
  51195. height: math.unit(29, "meters"),
  51196. name: "Front",
  51197. image: {
  51198. source: "./media/characters/aetherios/front.svg",
  51199. extra: 1266/953,
  51200. bottom: 158/1424
  51201. }
  51202. },
  51203. maw: {
  51204. height: math.unit(16.37, "meters"),
  51205. name: "Maw",
  51206. image: {
  51207. source: "./media/characters/aetherios/maw.svg",
  51208. extra: 748/637,
  51209. bottom: 0/748
  51210. },
  51211. extraAttributes: {
  51212. preyCapacity: {
  51213. name: "Capacity",
  51214. power: 3,
  51215. type: "volume",
  51216. base: math.unit(1000, "people")
  51217. },
  51218. tongueSize: {
  51219. name: "Tongue Size",
  51220. power: 2,
  51221. type: "area",
  51222. base: math.unit(21, "m^2")
  51223. }
  51224. }
  51225. },
  51226. forepaw: {
  51227. height: math.unit(18, "meters"),
  51228. name: "Forepaw",
  51229. image: {
  51230. source: "./media/characters/aetherios/forepaw.svg"
  51231. }
  51232. },
  51233. hindpaw: {
  51234. height: math.unit(23, "meters"),
  51235. name: "Hindpaw",
  51236. image: {
  51237. source: "./media/characters/aetherios/hindpaw.svg"
  51238. }
  51239. },
  51240. genitals: {
  51241. height: math.unit(42, "meters"),
  51242. name: "Genitals",
  51243. image: {
  51244. source: "./media/characters/aetherios/genitals.svg"
  51245. }
  51246. },
  51247. },
  51248. [
  51249. {
  51250. name: "Normal",
  51251. height: math.unit(47.2, "meters"),
  51252. default: true
  51253. },
  51254. {
  51255. name: "Macro",
  51256. height: math.unit(160, "meters")
  51257. },
  51258. {
  51259. name: "Mega",
  51260. height: math.unit(1.87, "km")
  51261. },
  51262. {
  51263. name: "Giga",
  51264. height: math.unit(40000, "km")
  51265. },
  51266. {
  51267. name: "Stellar",
  51268. height: math.unit(158000000, "km")
  51269. },
  51270. {
  51271. name: "Cosmic",
  51272. height: math.unit(9.46e12, "km")
  51273. },
  51274. ]
  51275. ))
  51276. characterMakers.push(() => makeCharacter(
  51277. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51278. {
  51279. front: {
  51280. height: math.unit(5 + 4/12, "feet"),
  51281. weight: math.unit(80, "lb"),
  51282. name: "Front",
  51283. image: {
  51284. source: "./media/characters/mizu-gieeg/front.svg",
  51285. extra: 850/709,
  51286. bottom: 52/902
  51287. }
  51288. },
  51289. back: {
  51290. height: math.unit(5 + 4/12, "feet"),
  51291. weight: math.unit(80, "lb"),
  51292. name: "Back",
  51293. image: {
  51294. source: "./media/characters/mizu-gieeg/back.svg",
  51295. extra: 882/745,
  51296. bottom: 25/907
  51297. }
  51298. },
  51299. },
  51300. [
  51301. {
  51302. name: "Normal",
  51303. height: math.unit(5 + 4/12, "feet"),
  51304. default: true
  51305. },
  51306. ]
  51307. ))
  51308. characterMakers.push(() => makeCharacter(
  51309. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51310. {
  51311. front: {
  51312. height: math.unit(6, "feet"),
  51313. name: "Front",
  51314. image: {
  51315. source: "./media/characters/roselle-st-papier/front.svg",
  51316. extra: 1430/1280,
  51317. bottom: 37/1467
  51318. }
  51319. },
  51320. back: {
  51321. height: math.unit(6, "feet"),
  51322. name: "Back",
  51323. image: {
  51324. source: "./media/characters/roselle-st-papier/back.svg",
  51325. extra: 1491/1296,
  51326. bottom: 23/1514
  51327. }
  51328. },
  51329. ear: {
  51330. height: math.unit(1.26, "feet"),
  51331. name: "Ear",
  51332. image: {
  51333. source: "./media/characters/roselle-st-papier/ear.svg"
  51334. }
  51335. },
  51336. },
  51337. [
  51338. {
  51339. name: "Normal",
  51340. height: math.unit(150, "feet"),
  51341. default: true
  51342. },
  51343. ]
  51344. ))
  51345. characterMakers.push(() => makeCharacter(
  51346. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51347. {
  51348. front: {
  51349. height: math.unit(1, "inches"),
  51350. name: "Front",
  51351. image: {
  51352. source: "./media/characters/valargent/front.svg",
  51353. extra: 1825/1694,
  51354. bottom: 62/1887
  51355. }
  51356. },
  51357. back: {
  51358. height: math.unit(1, "inches"),
  51359. name: "Back",
  51360. image: {
  51361. source: "./media/characters/valargent/back.svg",
  51362. extra: 1775/1682,
  51363. bottom: 88/1863
  51364. }
  51365. },
  51366. },
  51367. [
  51368. {
  51369. name: "Micro",
  51370. height: math.unit(1, "inch"),
  51371. default: true
  51372. },
  51373. ]
  51374. ))
  51375. characterMakers.push(() => makeCharacter(
  51376. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51377. {
  51378. front: {
  51379. height: math.unit(3.4, "meters"),
  51380. name: "Front",
  51381. image: {
  51382. source: "./media/characters/zarina/front.svg",
  51383. extra: 1733/1425,
  51384. bottom: 93/1826
  51385. }
  51386. },
  51387. squatting: {
  51388. height: math.unit(2.14, "meters"),
  51389. name: "Squatting",
  51390. image: {
  51391. source: "./media/characters/zarina/squatting.svg",
  51392. extra: 1073/788,
  51393. bottom: 63/1136
  51394. }
  51395. },
  51396. back: {
  51397. height: math.unit(2.14, "meters"),
  51398. name: "Back",
  51399. image: {
  51400. source: "./media/characters/zarina/back.svg",
  51401. extra: 1128/885,
  51402. bottom: 0/1128
  51403. }
  51404. },
  51405. },
  51406. [
  51407. {
  51408. name: "Normal",
  51409. height: math.unit(3.4, "meters"),
  51410. default: true
  51411. },
  51412. {
  51413. name: "Big",
  51414. height: math.unit(5, "meters")
  51415. },
  51416. {
  51417. name: "Macro",
  51418. height: math.unit(110, "meters")
  51419. },
  51420. ]
  51421. ))
  51422. characterMakers.push(() => makeCharacter(
  51423. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51424. {
  51425. front: {
  51426. height: math.unit(7, "feet"),
  51427. name: "Front",
  51428. image: {
  51429. source: "./media/characters/ventus-astro-fox/front.svg",
  51430. extra: 1792/1623,
  51431. bottom: 28/1820
  51432. }
  51433. },
  51434. back: {
  51435. height: math.unit(7, "feet"),
  51436. name: "Back",
  51437. image: {
  51438. source: "./media/characters/ventus-astro-fox/back.svg",
  51439. extra: 1789/1620,
  51440. bottom: 31/1820
  51441. }
  51442. },
  51443. outfit: {
  51444. height: math.unit(7, "feet"),
  51445. name: "Outfit",
  51446. image: {
  51447. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51448. extra: 1054/925,
  51449. bottom: 15/1069
  51450. }
  51451. },
  51452. head: {
  51453. height: math.unit(1.12, "feet"),
  51454. name: "Head",
  51455. image: {
  51456. source: "./media/characters/ventus-astro-fox/head.svg",
  51457. extra: 866/504,
  51458. bottom: 0/866
  51459. }
  51460. },
  51461. hand: {
  51462. height: math.unit(1, "feet"),
  51463. name: "Hand",
  51464. image: {
  51465. source: "./media/characters/ventus-astro-fox/hand.svg"
  51466. }
  51467. },
  51468. paw: {
  51469. height: math.unit(1.5, "feet"),
  51470. name: "Paw",
  51471. image: {
  51472. source: "./media/characters/ventus-astro-fox/paw.svg"
  51473. }
  51474. },
  51475. },
  51476. [
  51477. {
  51478. name: "Normal",
  51479. height: math.unit(7, "feet"),
  51480. default: true
  51481. },
  51482. {
  51483. name: "Macro",
  51484. height: math.unit(200, "feet")
  51485. },
  51486. {
  51487. name: "Cosmic",
  51488. height: math.unit(3, "universes")
  51489. },
  51490. ]
  51491. ))
  51492. characterMakers.push(() => makeCharacter(
  51493. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51494. {
  51495. front: {
  51496. height: math.unit(3, "meters"),
  51497. weight: math.unit(7000, "lb"),
  51498. name: "Front",
  51499. image: {
  51500. source: "./media/characters/core-t/front.svg",
  51501. extra: 5729/4941,
  51502. bottom: 1129/6858
  51503. }
  51504. },
  51505. },
  51506. [
  51507. {
  51508. name: "Big",
  51509. height: math.unit(3, "meters"),
  51510. default: true
  51511. },
  51512. ]
  51513. ))
  51514. characterMakers.push(() => makeCharacter(
  51515. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51516. {
  51517. normal: {
  51518. height: math.unit(6 + 6/12, "feet"),
  51519. weight: math.unit(275, "lb"),
  51520. name: "Front",
  51521. image: {
  51522. source: "./media/characters/cadbunny/normal.svg",
  51523. extra: 1129/947,
  51524. bottom: 93/1222
  51525. },
  51526. default: true,
  51527. form: "normal"
  51528. },
  51529. gigantamax: {
  51530. height: math.unit(26, "feet"),
  51531. weight: math.unit(16000, "lb"),
  51532. name: "Front",
  51533. image: {
  51534. source: "./media/characters/cadbunny/gigantamax.svg",
  51535. extra: 1133/944,
  51536. bottom: 90/1223
  51537. },
  51538. default: true,
  51539. form: "gigantamax"
  51540. },
  51541. },
  51542. [
  51543. {
  51544. name: "Normal",
  51545. height: math.unit(6 + 6/12, "feet"),
  51546. default: true,
  51547. form: "normal"
  51548. },
  51549. {
  51550. name: "Small",
  51551. height: math.unit(26, "feet"),
  51552. default: true,
  51553. form: "gigantamax"
  51554. },
  51555. {
  51556. name: "Large",
  51557. height: math.unit(78, "feet"),
  51558. form: "gigantamax"
  51559. },
  51560. ],
  51561. {
  51562. "normal": {
  51563. name: "Normal",
  51564. default: true
  51565. },
  51566. "gigantamax": {
  51567. name: "Gigantamax"
  51568. }
  51569. }
  51570. ))
  51571. characterMakers.push(() => makeCharacter(
  51572. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51573. {
  51574. anthroFront: {
  51575. height: math.unit(8, "feet"),
  51576. weight: math.unit(300, "lb"),
  51577. name: "Front",
  51578. image: {
  51579. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51580. extra: 1272/1176,
  51581. bottom: 53/1325
  51582. },
  51583. form: "anthro",
  51584. default: true
  51585. },
  51586. feralSide: {
  51587. height: math.unit(4, "feet"),
  51588. weight: math.unit(250, "lb"),
  51589. name: "Side",
  51590. image: {
  51591. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51592. extra: 731/621,
  51593. bottom: 0/731
  51594. },
  51595. form: "feral",
  51596. default: true
  51597. },
  51598. },
  51599. [
  51600. {
  51601. name: "Regular",
  51602. height: math.unit(8, "feet"),
  51603. form: "anthro"
  51604. },
  51605. {
  51606. name: "Macro",
  51607. height: math.unit(250, "feet"),
  51608. form: "anthro",
  51609. default: true
  51610. },
  51611. {
  51612. name: "Regular",
  51613. height: math.unit(4, "feet"),
  51614. form: "feral"
  51615. },
  51616. {
  51617. name: "Macro",
  51618. height: math.unit(125, "feet"),
  51619. form: "feral",
  51620. default: true
  51621. },
  51622. ],
  51623. {
  51624. "anthro": {
  51625. name: "Anthro",
  51626. default: true
  51627. },
  51628. "feral": {
  51629. name: "Feral",
  51630. },
  51631. }
  51632. ))
  51633. characterMakers.push(() => makeCharacter(
  51634. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51635. {
  51636. front: {
  51637. height: math.unit(11 + 10/12, "feet"),
  51638. weight: math.unit(1587, "kg"),
  51639. name: "Front",
  51640. image: {
  51641. source: "./media/characters/maple-javira-dragon/front.svg",
  51642. extra: 1136/744,
  51643. bottom: 73/1209
  51644. }
  51645. },
  51646. side: {
  51647. height: math.unit(11 + 10/12, "feet"),
  51648. weight: math.unit(1587, "kg"),
  51649. name: "Side",
  51650. image: {
  51651. source: "./media/characters/maple-javira-dragon/side.svg",
  51652. extra: 712/505,
  51653. bottom: 17/729
  51654. }
  51655. },
  51656. head: {
  51657. height: math.unit(8.05, "feet"),
  51658. name: "Head",
  51659. image: {
  51660. source: "./media/characters/maple-javira-dragon/head.svg",
  51661. extra: 1420/1344,
  51662. bottom: 0/1420
  51663. }
  51664. },
  51665. },
  51666. [
  51667. {
  51668. name: "Normal",
  51669. height: math.unit(11 + 10/12, "feet"),
  51670. default: true
  51671. },
  51672. ]
  51673. ))
  51674. characterMakers.push(() => makeCharacter(
  51675. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51676. {
  51677. front: {
  51678. height: math.unit(117, "cm"),
  51679. weight: math.unit(50, "kg"),
  51680. name: "Front",
  51681. image: {
  51682. source: "./media/characters/sonia-wyverntail/front.svg",
  51683. extra: 708/592,
  51684. bottom: 25/733
  51685. }
  51686. },
  51687. },
  51688. [
  51689. {
  51690. name: "Normal",
  51691. height: math.unit(117, "cm"),
  51692. default: true
  51693. },
  51694. ]
  51695. ))
  51696. characterMakers.push(() => makeCharacter(
  51697. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51698. {
  51699. front: {
  51700. height: math.unit(6 + 5/12, "feet"),
  51701. name: "Front",
  51702. image: {
  51703. source: "./media/characters/micah/front.svg",
  51704. extra: 1758/1546,
  51705. bottom: 214/1972
  51706. }
  51707. },
  51708. },
  51709. [
  51710. {
  51711. name: "Normal",
  51712. height: math.unit(6 + 5/12, "feet"),
  51713. default: true
  51714. },
  51715. ]
  51716. ))
  51717. characterMakers.push(() => makeCharacter(
  51718. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51719. {
  51720. front: {
  51721. height: math.unit(1.75, "meters"),
  51722. weight: math.unit(100, "kg"),
  51723. name: "Front",
  51724. image: {
  51725. source: "./media/characters/zarya/front.svg",
  51726. extra: 741/735,
  51727. bottom: 44/785
  51728. },
  51729. extraAttributes: {
  51730. "tailLength": {
  51731. name: "Tail Length",
  51732. power: 1,
  51733. type: "length",
  51734. base: math.unit(180, "cm")
  51735. },
  51736. "pawLength": {
  51737. name: "Paw Length",
  51738. power: 1,
  51739. type: "length",
  51740. base: math.unit(31, "cm")
  51741. },
  51742. }
  51743. },
  51744. side: {
  51745. height: math.unit(1.75, "meters"),
  51746. weight: math.unit(100, "kg"),
  51747. name: "Side",
  51748. image: {
  51749. source: "./media/characters/zarya/side.svg",
  51750. extra: 776/770,
  51751. bottom: 17/793
  51752. },
  51753. extraAttributes: {
  51754. "tailLength": {
  51755. name: "Tail Length",
  51756. power: 1,
  51757. type: "length",
  51758. base: math.unit(180, "cm")
  51759. },
  51760. "pawLength": {
  51761. name: "Paw Length",
  51762. power: 1,
  51763. type: "length",
  51764. base: math.unit(31, "cm")
  51765. },
  51766. }
  51767. },
  51768. back: {
  51769. height: math.unit(1.75, "meters"),
  51770. weight: math.unit(100, "kg"),
  51771. name: "Back",
  51772. image: {
  51773. source: "./media/characters/zarya/back.svg",
  51774. extra: 741/735,
  51775. bottom: 44/785
  51776. },
  51777. extraAttributes: {
  51778. "tailLength": {
  51779. name: "Tail Length",
  51780. power: 1,
  51781. type: "length",
  51782. base: math.unit(180, "cm")
  51783. },
  51784. "pawLength": {
  51785. name: "Paw Length",
  51786. power: 1,
  51787. type: "length",
  51788. base: math.unit(31, "cm")
  51789. },
  51790. }
  51791. },
  51792. frontNoTail: {
  51793. height: math.unit(1.75, "meters"),
  51794. weight: math.unit(100, "kg"),
  51795. name: "Front (No Tail)",
  51796. image: {
  51797. source: "./media/characters/zarya/front-no-tail.svg",
  51798. extra: 741/735,
  51799. bottom: 44/785
  51800. },
  51801. extraAttributes: {
  51802. "tailLength": {
  51803. name: "Tail Length",
  51804. power: 1,
  51805. type: "length",
  51806. base: math.unit(180, "cm")
  51807. },
  51808. "pawLength": {
  51809. name: "Paw Length",
  51810. power: 1,
  51811. type: "length",
  51812. base: math.unit(31, "cm")
  51813. },
  51814. }
  51815. },
  51816. dressed: {
  51817. height: math.unit(1.75, "meters"),
  51818. weight: math.unit(100, "kg"),
  51819. name: "Dressed",
  51820. image: {
  51821. source: "./media/characters/zarya/dressed.svg",
  51822. extra: 683/672,
  51823. bottom: 79/762
  51824. },
  51825. extraAttributes: {
  51826. "tailLength": {
  51827. name: "Tail Length",
  51828. power: 1,
  51829. type: "length",
  51830. base: math.unit(180, "cm")
  51831. },
  51832. "pawLength": {
  51833. name: "Paw Length",
  51834. power: 1,
  51835. type: "length",
  51836. base: math.unit(31, "cm")
  51837. },
  51838. }
  51839. },
  51840. },
  51841. [
  51842. {
  51843. name: "Micro",
  51844. height: math.unit(5, "cm")
  51845. },
  51846. {
  51847. name: "Normal",
  51848. height: math.unit(1.75, "meters"),
  51849. default: true
  51850. },
  51851. {
  51852. name: "Macro",
  51853. height: math.unit(122, "meters")
  51854. },
  51855. ]
  51856. ))
  51857. characterMakers.push(() => makeCharacter(
  51858. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51859. {
  51860. front: {
  51861. height: math.unit(7.5, "feet"),
  51862. name: "Front",
  51863. image: {
  51864. source: "./media/characters/sven-hatisson/front.svg",
  51865. extra: 917/857,
  51866. bottom: 42/959
  51867. }
  51868. },
  51869. back: {
  51870. height: math.unit(7.5, "feet"),
  51871. name: "Back",
  51872. image: {
  51873. source: "./media/characters/sven-hatisson/back.svg",
  51874. extra: 903/856,
  51875. bottom: 15/918
  51876. }
  51877. },
  51878. },
  51879. [
  51880. {
  51881. name: "Base Height",
  51882. height: math.unit(7.5, "feet")
  51883. },
  51884. {
  51885. name: "Usual Height",
  51886. height: math.unit(13.5, "feet"),
  51887. default: true
  51888. },
  51889. {
  51890. name: "Smaller Macro",
  51891. height: math.unit(85, "feet")
  51892. },
  51893. {
  51894. name: "Moderate Macro",
  51895. height: math.unit(320, "feet")
  51896. },
  51897. {
  51898. name: "Large Macro",
  51899. height: math.unit(1000, "feet")
  51900. },
  51901. {
  51902. name: "Largest Size",
  51903. height: math.unit(2, "miles")
  51904. },
  51905. ]
  51906. ))
  51907. characterMakers.push(() => makeCharacter(
  51908. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51909. {
  51910. side: {
  51911. height: math.unit(1.8, "meters"),
  51912. weight: math.unit(275, "kg"),
  51913. name: "Side",
  51914. image: {
  51915. source: "./media/characters/terra/side.svg",
  51916. extra: 1273/1147,
  51917. bottom: 0/1273
  51918. }
  51919. },
  51920. },
  51921. [
  51922. {
  51923. name: "Normal",
  51924. height: math.unit(16.2, "meters"),
  51925. default: true
  51926. },
  51927. ]
  51928. ))
  51929. characterMakers.push(() => makeCharacter(
  51930. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51931. {
  51932. borzoiFront: {
  51933. height: math.unit(6 + 9/12, "feet"),
  51934. name: "Front",
  51935. image: {
  51936. source: "./media/characters/rae/borzoi-front.svg",
  51937. extra: 1161/1098,
  51938. bottom: 31/1192
  51939. },
  51940. form: "borzoi",
  51941. default: true
  51942. },
  51943. werewolfFront: {
  51944. height: math.unit(8 + 7/12, "feet"),
  51945. name: "Front",
  51946. image: {
  51947. source: "./media/characters/rae/werewolf-front.svg",
  51948. extra: 1411/1334,
  51949. bottom: 127/1538
  51950. },
  51951. form: "werewolf",
  51952. default: true
  51953. },
  51954. },
  51955. [
  51956. {
  51957. name: "Normal",
  51958. height: math.unit(6 + 9/12, "feet"),
  51959. default: true,
  51960. form: "borzoi"
  51961. },
  51962. {
  51963. name: "Normal",
  51964. height: math.unit(8 + 7/12, "feet"),
  51965. default: true,
  51966. form: "werewolf"
  51967. },
  51968. ],
  51969. {
  51970. "borzoi": {
  51971. name: "Borzoi",
  51972. default: true
  51973. },
  51974. "werewolf": {
  51975. name: "Werewolf",
  51976. },
  51977. }
  51978. ))
  51979. characterMakers.push(() => makeCharacter(
  51980. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51981. {
  51982. front: {
  51983. height: math.unit(8 + 7/12, "feet"),
  51984. weight: math.unit(482, "lb"),
  51985. name: "Front",
  51986. image: {
  51987. source: "./media/characters/kit/front.svg",
  51988. extra: 1247/1103,
  51989. bottom: 41/1288
  51990. }
  51991. },
  51992. back: {
  51993. height: math.unit(8 + 7/12, "feet"),
  51994. weight: math.unit(482, "lb"),
  51995. name: "Back",
  51996. image: {
  51997. source: "./media/characters/kit/back.svg",
  51998. extra: 1252/1123,
  51999. bottom: 21/1273
  52000. }
  52001. },
  52002. paw: {
  52003. height: math.unit(1.46, "feet"),
  52004. name: "Paw",
  52005. image: {
  52006. source: "./media/characters/kit/paw.svg"
  52007. }
  52008. },
  52009. },
  52010. [
  52011. {
  52012. name: "Normal",
  52013. height: math.unit(2.61, "meters"),
  52014. default: true
  52015. },
  52016. {
  52017. name: "\"Tall\"",
  52018. height: math.unit(8.21, "meters")
  52019. },
  52020. {
  52021. name: "Tall",
  52022. height: math.unit(19.6, "meters")
  52023. },
  52024. {
  52025. name: "Very Tall",
  52026. height: math.unit(57.91, "meters")
  52027. },
  52028. {
  52029. name: "Semi-Macro",
  52030. height: math.unit(138.64, "meters")
  52031. },
  52032. {
  52033. name: "Macro",
  52034. height: math.unit(831.99, "meters")
  52035. },
  52036. {
  52037. name: "EX-Macro",
  52038. height: math.unit(96451121, "meters")
  52039. },
  52040. {
  52041. name: "S1-Omnipotent",
  52042. height: math.unit(4.42074e+9, "meters")
  52043. },
  52044. {
  52045. name: "S2-Omnipotent",
  52046. height: math.unit(9.42074e+17, "meters")
  52047. },
  52048. {
  52049. name: "Omnipotent",
  52050. height: math.unit(4.23112e+24, "meters")
  52051. },
  52052. {
  52053. name: "Hypergod",
  52054. height: math.unit(5.05176e+27, "meters")
  52055. },
  52056. {
  52057. name: "Hypergod-EX",
  52058. height: math.unit(9.45532e+49, "meters")
  52059. },
  52060. {
  52061. name: "Hypergod-SP",
  52062. height: math.unit(9.45532e+195, "meters")
  52063. },
  52064. ]
  52065. ))
  52066. characterMakers.push(() => makeCharacter(
  52067. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52068. {
  52069. side: {
  52070. height: math.unit(0.6, "meters"),
  52071. weight: math.unit(24, "kg"),
  52072. name: "Side",
  52073. image: {
  52074. source: "./media/characters/celeste/side.svg",
  52075. extra: 810/517,
  52076. bottom: 53/863
  52077. }
  52078. },
  52079. },
  52080. [
  52081. {
  52082. name: "Velociraptor",
  52083. height: math.unit(0.6, "meters"),
  52084. default: true
  52085. },
  52086. {
  52087. name: "Utahraptor",
  52088. height: math.unit(1.8, "meters")
  52089. },
  52090. {
  52091. name: "Gallimimus",
  52092. height: math.unit(4.0, "meters")
  52093. },
  52094. {
  52095. name: "Large",
  52096. height: math.unit(20, "meters")
  52097. },
  52098. {
  52099. name: "Planetary",
  52100. height: math.unit(50, "megameters")
  52101. },
  52102. {
  52103. name: "Stellar",
  52104. height: math.unit(1.5, "gigameters")
  52105. },
  52106. {
  52107. name: "Galactic",
  52108. height: math.unit(100, "exameters")
  52109. },
  52110. ]
  52111. ))
  52112. characterMakers.push(() => makeCharacter(
  52113. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52114. {
  52115. front: {
  52116. height: math.unit(6, "feet"),
  52117. weight: math.unit(210, "lb"),
  52118. name: "Front",
  52119. image: {
  52120. source: "./media/characters/glacia/front.svg",
  52121. extra: 958/901,
  52122. bottom: 45/1003
  52123. }
  52124. },
  52125. },
  52126. [
  52127. {
  52128. name: "Macro",
  52129. height: math.unit(1000, "meters"),
  52130. default: true
  52131. },
  52132. ]
  52133. ))
  52134. characterMakers.push(() => makeCharacter(
  52135. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52136. {
  52137. front: {
  52138. height: math.unit(4, "meters"),
  52139. name: "Front",
  52140. image: {
  52141. source: "./media/characters/giri/front.svg",
  52142. extra: 966/894,
  52143. bottom: 21/987
  52144. }
  52145. },
  52146. },
  52147. [
  52148. {
  52149. name: "Normal",
  52150. height: math.unit(4, "meters"),
  52151. default: true
  52152. },
  52153. ]
  52154. ))
  52155. characterMakers.push(() => makeCharacter(
  52156. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52157. {
  52158. back: {
  52159. height: math.unit(4, "feet"),
  52160. weight: math.unit(37, "lb"),
  52161. name: "Back",
  52162. image: {
  52163. source: "./media/characters/tin/back.svg",
  52164. extra: 845/780,
  52165. bottom: 28/873
  52166. }
  52167. },
  52168. },
  52169. [
  52170. {
  52171. name: "Normal",
  52172. height: math.unit(4, "feet"),
  52173. default: true
  52174. },
  52175. ]
  52176. ))
  52177. characterMakers.push(() => makeCharacter(
  52178. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52179. {
  52180. front: {
  52181. height: math.unit(25, "feet"),
  52182. name: "Front",
  52183. image: {
  52184. source: "./media/characters/cadenza-vivace/front.svg",
  52185. extra: 1842/1578,
  52186. bottom: 30/1872
  52187. }
  52188. },
  52189. },
  52190. [
  52191. {
  52192. name: "Macro",
  52193. height: math.unit(25, "feet"),
  52194. default: true
  52195. },
  52196. ]
  52197. ))
  52198. characterMakers.push(() => makeCharacter(
  52199. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52200. {
  52201. front: {
  52202. height: math.unit(10, "feet"),
  52203. weight: math.unit(625, "kg"),
  52204. name: "Front",
  52205. image: {
  52206. source: "./media/characters/zain/front.svg",
  52207. extra: 1682/1498,
  52208. bottom: 223/1905
  52209. }
  52210. },
  52211. back: {
  52212. height: math.unit(10, "feet"),
  52213. weight: math.unit(625, "kg"),
  52214. name: "Back",
  52215. image: {
  52216. source: "./media/characters/zain/back.svg",
  52217. extra: 1814/1657,
  52218. bottom: 152/1966
  52219. }
  52220. },
  52221. head: {
  52222. height: math.unit(10, "feet"),
  52223. weight: math.unit(625, "kg"),
  52224. name: "Head",
  52225. image: {
  52226. source: "./media/characters/zain/head.svg",
  52227. extra: 1059/762,
  52228. bottom: 0/1059
  52229. }
  52230. },
  52231. },
  52232. [
  52233. {
  52234. name: "Normal",
  52235. height: math.unit(10, "feet"),
  52236. default: true
  52237. },
  52238. ]
  52239. ))
  52240. characterMakers.push(() => makeCharacter(
  52241. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52242. {
  52243. front: {
  52244. height: math.unit(6 + 5/12, "feet"),
  52245. weight: math.unit(750, "lb"),
  52246. name: "Front",
  52247. image: {
  52248. source: "./media/characters/ruchex/front.svg",
  52249. extra: 877/820,
  52250. bottom: 17/894
  52251. },
  52252. extraAttributes: {
  52253. "width": {
  52254. name: "Width",
  52255. power: 1,
  52256. type: "length",
  52257. base: math.unit(4.757, "feet")
  52258. },
  52259. }
  52260. },
  52261. },
  52262. [
  52263. {
  52264. name: "Normal",
  52265. height: math.unit(6 + 5/12, "feet"),
  52266. default: true
  52267. },
  52268. ]
  52269. ))
  52270. characterMakers.push(() => makeCharacter(
  52271. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52272. {
  52273. dressedFront: {
  52274. height: math.unit(191, "cm"),
  52275. weight: math.unit(80, "kg"),
  52276. name: "Front",
  52277. image: {
  52278. source: "./media/characters/buster/dressed-front.svg",
  52279. extra: 1022/973,
  52280. bottom: 69/1091
  52281. }
  52282. },
  52283. dressedBack: {
  52284. height: math.unit(191, "cm"),
  52285. weight: math.unit(80, "kg"),
  52286. name: "Back",
  52287. image: {
  52288. source: "./media/characters/buster/dressed-back.svg",
  52289. extra: 1018/970,
  52290. bottom: 55/1073
  52291. }
  52292. },
  52293. nudeFront: {
  52294. height: math.unit(191, "cm"),
  52295. weight: math.unit(80, "kg"),
  52296. name: "Front (Nude)",
  52297. image: {
  52298. source: "./media/characters/buster/nude-front.svg",
  52299. extra: 1022/973,
  52300. bottom: 69/1091
  52301. }
  52302. },
  52303. nudeBack: {
  52304. height: math.unit(191, "cm"),
  52305. weight: math.unit(80, "kg"),
  52306. name: "Back (Nude)",
  52307. image: {
  52308. source: "./media/characters/buster/nude-back.svg",
  52309. extra: 1018/970,
  52310. bottom: 55/1073
  52311. }
  52312. },
  52313. dick: {
  52314. height: math.unit(2.59, "feet"),
  52315. name: "Dick",
  52316. image: {
  52317. source: "./media/characters/buster/dick.svg"
  52318. }
  52319. },
  52320. ass: {
  52321. height: math.unit(1.2, "feet"),
  52322. name: "Ass",
  52323. image: {
  52324. source: "./media/characters/buster/ass.svg"
  52325. }
  52326. },
  52327. },
  52328. [
  52329. {
  52330. name: "Normal",
  52331. height: math.unit(191, "cm"),
  52332. default: true
  52333. },
  52334. ]
  52335. ))
  52336. characterMakers.push(() => makeCharacter(
  52337. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52338. {
  52339. side: {
  52340. height: math.unit(8.1, "feet"),
  52341. weight: math.unit(3500, "lb"),
  52342. name: "Side",
  52343. image: {
  52344. source: "./media/characters/sonya/side.svg",
  52345. extra: 1730/1317,
  52346. bottom: 86/1816
  52347. }
  52348. },
  52349. },
  52350. [
  52351. {
  52352. name: "Normal",
  52353. height: math.unit(8.1, "feet"),
  52354. default: true
  52355. },
  52356. ]
  52357. ))
  52358. characterMakers.push(() => makeCharacter(
  52359. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52360. {
  52361. front: {
  52362. height: math.unit(6, "feet"),
  52363. weight: math.unit(150, "lb"),
  52364. name: "Front",
  52365. image: {
  52366. source: "./media/characters/cadence-andrysiak/front.svg",
  52367. extra: 1164/1121,
  52368. bottom: 60/1224
  52369. }
  52370. },
  52371. back: {
  52372. height: math.unit(6, "feet"),
  52373. weight: math.unit(150, "lb"),
  52374. name: "Back",
  52375. image: {
  52376. source: "./media/characters/cadence-andrysiak/back.svg",
  52377. extra: 1200/1165,
  52378. bottom: 9/1209
  52379. }
  52380. },
  52381. dressed: {
  52382. height: math.unit(6, "feet"),
  52383. weight: math.unit(150, "lb"),
  52384. name: "Dressed",
  52385. image: {
  52386. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52387. extra: 1164/1121,
  52388. bottom: 60/1224
  52389. }
  52390. },
  52391. },
  52392. [
  52393. {
  52394. name: "Micro",
  52395. height: math.unit(1, "mm")
  52396. },
  52397. {
  52398. name: "Normal",
  52399. height: math.unit(6, "feet"),
  52400. default: true
  52401. },
  52402. ]
  52403. ))
  52404. characterMakers.push(() => makeCharacter(
  52405. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52406. {
  52407. front: {
  52408. height: math.unit(60, "inches"),
  52409. weight: math.unit(16, "lb"),
  52410. preyCapacity: math.unit(80, "liters"),
  52411. name: "Front",
  52412. image: {
  52413. source: "./media/characters/penny-lynx/front.svg",
  52414. extra: 1959/1769,
  52415. bottom: 49/2008
  52416. }
  52417. },
  52418. },
  52419. [
  52420. {
  52421. name: "Nokia",
  52422. height: math.unit(2, "inches")
  52423. },
  52424. {
  52425. name: "Desktop",
  52426. height: math.unit(24, "inches")
  52427. },
  52428. {
  52429. name: "TV",
  52430. height: math.unit(60, "inches")
  52431. },
  52432. {
  52433. name: "Jumbotron",
  52434. height: math.unit(12, "feet")
  52435. },
  52436. {
  52437. name: "Billboard",
  52438. height: math.unit(48, "feet"),
  52439. default: true
  52440. },
  52441. {
  52442. name: "IMAX",
  52443. height: math.unit(96, "feet")
  52444. },
  52445. {
  52446. name: "SINGULARITY",
  52447. height: math.unit(864938, "miles")
  52448. },
  52449. ]
  52450. ))
  52451. characterMakers.push(() => makeCharacter(
  52452. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52453. {
  52454. front: {
  52455. height: math.unit(5 + 4/12, "feet"),
  52456. weight: math.unit(230, "lb"),
  52457. name: "Front",
  52458. image: {
  52459. source: "./media/characters/sukebe/front.svg",
  52460. extra: 2130/2038,
  52461. bottom: 90/2220
  52462. }
  52463. },
  52464. back: {
  52465. height: math.unit(3.48, "feet"),
  52466. weight: math.unit(230, "lb"),
  52467. name: "Back",
  52468. image: {
  52469. source: "./media/characters/sukebe/back.svg",
  52470. extra: 1670/1604,
  52471. bottom: 0/1670
  52472. }
  52473. },
  52474. },
  52475. [
  52476. {
  52477. name: "Normal",
  52478. height: math.unit(5 + 4/12, "feet"),
  52479. default: true
  52480. },
  52481. ]
  52482. ))
  52483. characterMakers.push(() => makeCharacter(
  52484. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52485. {
  52486. front: {
  52487. height: math.unit(6, "feet"),
  52488. name: "Front",
  52489. image: {
  52490. source: "./media/characters/nylla/front.svg",
  52491. extra: 1868/1699,
  52492. bottom: 97/1965
  52493. }
  52494. },
  52495. back: {
  52496. height: math.unit(6, "feet"),
  52497. name: "Back",
  52498. image: {
  52499. source: "./media/characters/nylla/back.svg",
  52500. extra: 1889/1712,
  52501. bottom: 93/1982
  52502. }
  52503. },
  52504. frontNsfw: {
  52505. height: math.unit(6, "feet"),
  52506. name: "Front (NSFW)",
  52507. image: {
  52508. source: "./media/characters/nylla/front-nsfw.svg",
  52509. extra: 1868/1699,
  52510. bottom: 97/1965
  52511. },
  52512. extraAttributes: {
  52513. "dickLength": {
  52514. name: "Dick Length",
  52515. power: 1,
  52516. type: "length",
  52517. base: math.unit(1.4, "feet")
  52518. },
  52519. "cumVolume": {
  52520. name: "Cum Volume",
  52521. power: 3,
  52522. type: "volume",
  52523. base: math.unit(100, "mL")
  52524. },
  52525. }
  52526. },
  52527. backNsfw: {
  52528. height: math.unit(6, "feet"),
  52529. name: "Back (NSFW)",
  52530. image: {
  52531. source: "./media/characters/nylla/back-nsfw.svg",
  52532. extra: 1889/1712,
  52533. bottom: 93/1982
  52534. }
  52535. },
  52536. maw: {
  52537. height: math.unit(2.10, "feet"),
  52538. name: "Maw",
  52539. image: {
  52540. source: "./media/characters/nylla/maw.svg"
  52541. }
  52542. },
  52543. paws: {
  52544. height: math.unit(2.06, "feet"),
  52545. name: "Paws",
  52546. image: {
  52547. source: "./media/characters/nylla/paws.svg"
  52548. }
  52549. },
  52550. muzzle: {
  52551. height: math.unit(0.61, "feet"),
  52552. name: "Muzzle",
  52553. image: {
  52554. source: "./media/characters/nylla/muzzle.svg"
  52555. }
  52556. },
  52557. sheath: {
  52558. height: math.unit(1.305, "feet"),
  52559. name: "Sheath",
  52560. image: {
  52561. source: "./media/characters/nylla/sheath.svg"
  52562. }
  52563. },
  52564. },
  52565. [
  52566. {
  52567. name: "Micro",
  52568. height: math.unit(7.5, "inches")
  52569. },
  52570. {
  52571. name: "Normal",
  52572. height: math.unit(7, "feet"),
  52573. default: true
  52574. },
  52575. {
  52576. name: "Macro",
  52577. height: math.unit(60, "feet")
  52578. },
  52579. {
  52580. name: "Mega",
  52581. height: math.unit(200, "feet")
  52582. },
  52583. ]
  52584. ))
  52585. characterMakers.push(() => makeCharacter(
  52586. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52587. {
  52588. front: {
  52589. height: math.unit(10, "feet"),
  52590. weight: math.unit(2300, "lb"),
  52591. name: "Front",
  52592. image: {
  52593. source: "./media/characters/hunt3r/front.svg",
  52594. extra: 1909/1742,
  52595. bottom: 46/1955
  52596. }
  52597. },
  52598. },
  52599. [
  52600. {
  52601. name: "Normal",
  52602. height: math.unit(10, "feet"),
  52603. default: true
  52604. },
  52605. ]
  52606. ))
  52607. characterMakers.push(() => makeCharacter(
  52608. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52609. {
  52610. dressed: {
  52611. height: math.unit(11, "feet"),
  52612. weight: math.unit(18500, "lb"),
  52613. preyCapacity: math.unit(9, "people"),
  52614. name: "Dressed",
  52615. image: {
  52616. source: "./media/characters/cylphis/dressed.svg",
  52617. extra: 1028/1003,
  52618. bottom: 75/1103
  52619. },
  52620. },
  52621. undressed: {
  52622. height: math.unit(11, "feet"),
  52623. weight: math.unit(18500, "lb"),
  52624. preyCapacity: math.unit(9, "people"),
  52625. name: "Undressed",
  52626. image: {
  52627. source: "./media/characters/cylphis/undressed.svg",
  52628. extra: 1028/1003,
  52629. bottom: 75/1103
  52630. }
  52631. },
  52632. full: {
  52633. height: math.unit(11, "feet"),
  52634. weight: math.unit(18500 + 150*9, "lb"),
  52635. preyCapacity: math.unit(9, "people"),
  52636. name: "Full",
  52637. image: {
  52638. source: "./media/characters/cylphis/full.svg",
  52639. extra: 1028/1003,
  52640. bottom: 75/1103
  52641. }
  52642. },
  52643. },
  52644. [
  52645. {
  52646. name: "Small",
  52647. height: math.unit(8, "feet")
  52648. },
  52649. {
  52650. name: "Normal",
  52651. height: math.unit(11, "feet"),
  52652. default: true
  52653. },
  52654. ]
  52655. ))
  52656. characterMakers.push(() => makeCharacter(
  52657. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52658. {
  52659. front: {
  52660. height: math.unit(2 + 7/12, "feet"),
  52661. name: "Front",
  52662. image: {
  52663. source: "./media/characters/orishan/front.svg",
  52664. extra: 1058/1023,
  52665. bottom: 23/1081
  52666. }
  52667. },
  52668. back: {
  52669. height: math.unit(2 + 7/12, "feet"),
  52670. name: "Back",
  52671. image: {
  52672. source: "./media/characters/orishan/back.svg",
  52673. extra: 1058/1023,
  52674. bottom: 23/1081
  52675. }
  52676. },
  52677. },
  52678. [
  52679. {
  52680. name: "Micro",
  52681. height: math.unit(2, "cm")
  52682. },
  52683. {
  52684. name: "Normal",
  52685. height: math.unit(2 + 7/12, "feet"),
  52686. default: true
  52687. },
  52688. ]
  52689. ))
  52690. characterMakers.push(() => makeCharacter(
  52691. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52692. {
  52693. front: {
  52694. height: math.unit(3, "meters"),
  52695. weight: math.unit(508, "kg"),
  52696. name: "Front",
  52697. image: {
  52698. source: "./media/characters/seranis/front.svg",
  52699. extra: 1478/1454,
  52700. bottom: 41/1519
  52701. }
  52702. },
  52703. },
  52704. [
  52705. {
  52706. name: "Normal",
  52707. height: math.unit(3, "meters"),
  52708. default: true
  52709. },
  52710. {
  52711. name: "Macro",
  52712. height: math.unit(108, "meters")
  52713. },
  52714. {
  52715. name: "Megamacro",
  52716. height: math.unit(1250, "meters")
  52717. },
  52718. ]
  52719. ))
  52720. characterMakers.push(() => makeCharacter(
  52721. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52722. {
  52723. undressed: {
  52724. height: math.unit(5 + 3/12, "feet"),
  52725. name: "Undressed",
  52726. image: {
  52727. source: "./media/characters/ankou/undressed.svg",
  52728. extra: 1301/1213,
  52729. bottom: 87/1388
  52730. }
  52731. },
  52732. dressed: {
  52733. height: math.unit(5 + 3/12, "feet"),
  52734. name: "Dressed",
  52735. image: {
  52736. source: "./media/characters/ankou/dressed.svg",
  52737. extra: 1301/1213,
  52738. bottom: 87/1388
  52739. }
  52740. },
  52741. head: {
  52742. height: math.unit(1.61, "feet"),
  52743. name: "Head",
  52744. image: {
  52745. source: "./media/characters/ankou/head.svg"
  52746. }
  52747. },
  52748. },
  52749. [
  52750. {
  52751. name: "Normal",
  52752. height: math.unit(5 + 3/12, "feet"),
  52753. default: true
  52754. },
  52755. ]
  52756. ))
  52757. characterMakers.push(() => makeCharacter(
  52758. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52759. {
  52760. side: {
  52761. height: math.unit(6 + 3/12, "feet"),
  52762. weight: math.unit(200, "kg"),
  52763. name: "Side",
  52764. image: {
  52765. source: "./media/characters/juniper-skunktaur/side.svg",
  52766. extra: 1574/1229,
  52767. bottom: 38/1612
  52768. }
  52769. },
  52770. front: {
  52771. height: math.unit(6 + 3/12, "feet"),
  52772. weight: math.unit(200, "kg"),
  52773. name: "Front",
  52774. image: {
  52775. source: "./media/characters/juniper-skunktaur/front.svg",
  52776. extra: 1337/1278,
  52777. bottom: 22/1359
  52778. }
  52779. },
  52780. back: {
  52781. height: math.unit(6 + 3/12, "feet"),
  52782. weight: math.unit(200, "kg"),
  52783. name: "Back",
  52784. image: {
  52785. source: "./media/characters/juniper-skunktaur/back.svg",
  52786. extra: 1618/1273,
  52787. bottom: 13/1631
  52788. }
  52789. },
  52790. top: {
  52791. height: math.unit(2.62, "feet"),
  52792. weight: math.unit(200, "kg"),
  52793. name: "Top",
  52794. image: {
  52795. source: "./media/characters/juniper-skunktaur/top.svg"
  52796. }
  52797. },
  52798. },
  52799. [
  52800. {
  52801. name: "Normal",
  52802. height: math.unit(6 + 3/12, "feet"),
  52803. default: true
  52804. },
  52805. ]
  52806. ))
  52807. characterMakers.push(() => makeCharacter(
  52808. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52809. {
  52810. front: {
  52811. height: math.unit(20.5, "feet"),
  52812. name: "Front",
  52813. image: {
  52814. source: "./media/characters/rei/front.svg",
  52815. extra: 1349/1195,
  52816. bottom: 31/1380
  52817. }
  52818. },
  52819. back: {
  52820. height: math.unit(20.5, "feet"),
  52821. name: "Back",
  52822. image: {
  52823. source: "./media/characters/rei/back.svg",
  52824. extra: 1358/1204,
  52825. bottom: 22/1380
  52826. }
  52827. },
  52828. pawsDigi: {
  52829. height: math.unit(3.45, "feet"),
  52830. name: "Paws (Digi)",
  52831. image: {
  52832. source: "./media/characters/rei/paws-digi.svg"
  52833. }
  52834. },
  52835. pawsPlanti: {
  52836. height: math.unit(3.45, "feet"),
  52837. name: "Paws (Planti)",
  52838. image: {
  52839. source: "./media/characters/rei/paws-planti.svg"
  52840. }
  52841. },
  52842. },
  52843. [
  52844. {
  52845. name: "Normal",
  52846. height: math.unit(20.5, "feet"),
  52847. default: true
  52848. },
  52849. ]
  52850. ))
  52851. characterMakers.push(() => makeCharacter(
  52852. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52853. {
  52854. front: {
  52855. height: math.unit(5 + 11/12, "feet"),
  52856. name: "Front",
  52857. image: {
  52858. source: "./media/characters/carina/front.svg",
  52859. extra: 1720/1449,
  52860. bottom: 14/1734
  52861. }
  52862. },
  52863. back: {
  52864. height: math.unit(5 + 11/12, "feet"),
  52865. name: "Back",
  52866. image: {
  52867. source: "./media/characters/carina/back.svg",
  52868. extra: 1493/1445,
  52869. bottom: 17/1510
  52870. }
  52871. },
  52872. paw: {
  52873. height: math.unit(0.92, "feet"),
  52874. name: "Paw",
  52875. image: {
  52876. source: "./media/characters/carina/paw.svg"
  52877. }
  52878. },
  52879. },
  52880. [
  52881. {
  52882. name: "Normal",
  52883. height: math.unit(5 + 11/12, "feet"),
  52884. default: true
  52885. },
  52886. ]
  52887. ))
  52888. characterMakers.push(() => makeCharacter(
  52889. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52890. {
  52891. normal_front: {
  52892. height: math.unit(4.88, "meters"),
  52893. name: "Front",
  52894. image: {
  52895. source: "./media/characters/maya/normal-front.svg",
  52896. extra: 1222/1145,
  52897. bottom: 57/1279
  52898. },
  52899. form: "normal",
  52900. default: true
  52901. },
  52902. monstrous_front: {
  52903. height: math.unit(10, "meters"),
  52904. name: "Front",
  52905. image: {
  52906. source: "./media/characters/maya/monstrous-front.svg",
  52907. extra: 1523/1109,
  52908. bottom: 113/1636
  52909. },
  52910. form: "monstrous",
  52911. extraAttributes: {
  52912. "swallowSize": {
  52913. name: "Tailmaw Bite Size",
  52914. power: 3,
  52915. type: "volume",
  52916. base: math.unit(43000, "liters")
  52917. },
  52918. }
  52919. },
  52920. taur_front: {
  52921. height: math.unit(10, "meters"),
  52922. name: "Front",
  52923. image: {
  52924. source: "./media/characters/maya/taur-front.svg",
  52925. extra: 743/506,
  52926. bottom: 101/844
  52927. },
  52928. form: "taur",
  52929. },
  52930. },
  52931. [
  52932. {
  52933. name: "Normal",
  52934. height: math.unit(4.88, "meters"),
  52935. default: true,
  52936. form: "normal"
  52937. },
  52938. {
  52939. name: "Macro",
  52940. height: math.unit(38.1, "meters"),
  52941. form: "normal"
  52942. },
  52943. {
  52944. name: "Macro+",
  52945. height: math.unit(152.4, "meters"),
  52946. form: "normal"
  52947. },
  52948. {
  52949. name: "Macro++",
  52950. height: math.unit(16.09, "km"),
  52951. form: "normal"
  52952. },
  52953. {
  52954. name: "Mega-macro",
  52955. height: math.unit(700, "megameters"),
  52956. form: "normal"
  52957. },
  52958. {
  52959. name: "Satiated",
  52960. height: math.unit(10, "meters"),
  52961. default: true,
  52962. form: "monstrous"
  52963. },
  52964. {
  52965. name: "Hungry",
  52966. height: math.unit(75, "meters"),
  52967. form: "monstrous"
  52968. },
  52969. {
  52970. name: "Ravenous",
  52971. height: math.unit(500, "meters"),
  52972. form: "monstrous"
  52973. },
  52974. {
  52975. name: "\"Normal\"",
  52976. height: math.unit(10, "meters"),
  52977. form: "taur"
  52978. },
  52979. {
  52980. name: "Macro",
  52981. height: math.unit(50, "meters"),
  52982. form: "taur"
  52983. },
  52984. ],
  52985. {
  52986. "normal": {
  52987. name: "Normal",
  52988. default: true
  52989. },
  52990. "monstrous": {
  52991. name: "Monstrous",
  52992. },
  52993. "taur": {
  52994. name: "Taur",
  52995. },
  52996. }
  52997. ))
  52998. characterMakers.push(() => makeCharacter(
  52999. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53000. {
  53001. front: {
  53002. height: math.unit(6 + 2/12, "feet"),
  53003. weight: math.unit(500, "lb"),
  53004. preyCapacity: math.unit(4, "people"),
  53005. name: "Front",
  53006. image: {
  53007. source: "./media/characters/yepir/front.svg"
  53008. }
  53009. },
  53010. side: {
  53011. height: math.unit(6 + 2/12, "feet"),
  53012. weight: math.unit(500, "lb"),
  53013. preyCapacity: math.unit(4, "people"),
  53014. name: "Side",
  53015. image: {
  53016. source: "./media/characters/yepir/side.svg"
  53017. }
  53018. },
  53019. paw: {
  53020. height: math.unit(1.05, "feet"),
  53021. name: "Paw",
  53022. image: {
  53023. source: "./media/characters/yepir/paw.svg"
  53024. }
  53025. },
  53026. },
  53027. [
  53028. {
  53029. name: "Normal",
  53030. height: math.unit(6 + 2/12, "feet"),
  53031. default: true
  53032. },
  53033. ]
  53034. ))
  53035. characterMakers.push(() => makeCharacter(
  53036. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53037. {
  53038. front: {
  53039. height: math.unit(5 + 4/12, "feet"),
  53040. name: "Front",
  53041. image: {
  53042. source: "./media/characters/russec/front.svg",
  53043. extra: 1926/1626,
  53044. bottom: 72/1998
  53045. }
  53046. },
  53047. back: {
  53048. height: math.unit(5 + 4/12, "feet"),
  53049. name: "Back",
  53050. image: {
  53051. source: "./media/characters/russec/back.svg",
  53052. extra: 1910/1591,
  53053. bottom: 48/1958
  53054. }
  53055. },
  53056. },
  53057. [
  53058. {
  53059. name: "Small",
  53060. height: math.unit(5 + 4/12, "feet")
  53061. },
  53062. {
  53063. name: "Normal",
  53064. height: math.unit(72, "feet"),
  53065. default: true
  53066. },
  53067. ]
  53068. ))
  53069. characterMakers.push(() => makeCharacter(
  53070. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53071. {
  53072. side: {
  53073. height: math.unit(12, "feet"),
  53074. name: "Side",
  53075. image: {
  53076. source: "./media/characters/cianus/side.svg",
  53077. extra: 808/526,
  53078. bottom: 61/869
  53079. }
  53080. },
  53081. },
  53082. [
  53083. {
  53084. name: "Normal",
  53085. height: math.unit(12, "feet"),
  53086. default: true
  53087. },
  53088. ]
  53089. ))
  53090. characterMakers.push(() => makeCharacter(
  53091. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53092. {
  53093. front: {
  53094. height: math.unit(9 + 6/12, "feet"),
  53095. weight: math.unit(300, "lb"),
  53096. name: "Front",
  53097. image: {
  53098. source: "./media/characters/ahab/front.svg",
  53099. extra: 1897/1868,
  53100. bottom: 121/2018
  53101. }
  53102. },
  53103. frontNsfw: {
  53104. height: math.unit(9 + 6/12, "feet"),
  53105. weight: math.unit(300, "lb"),
  53106. name: "Front-nsfw",
  53107. image: {
  53108. source: "./media/characters/ahab/front-nsfw.svg",
  53109. extra: 1897/1868,
  53110. bottom: 121/2018
  53111. }
  53112. },
  53113. },
  53114. [
  53115. {
  53116. name: "Normal",
  53117. height: math.unit(9 + 6/12, "feet")
  53118. },
  53119. {
  53120. name: "Macro",
  53121. height: math.unit(657, "feet"),
  53122. default: true
  53123. },
  53124. ]
  53125. ))
  53126. characterMakers.push(() => makeCharacter(
  53127. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53128. {
  53129. front: {
  53130. height: math.unit(2.69, "meters"),
  53131. weight: math.unit(132, "kg"),
  53132. name: "Front",
  53133. image: {
  53134. source: "./media/characters/aarkus/front.svg",
  53135. extra: 1400/1231,
  53136. bottom: 34/1434
  53137. }
  53138. },
  53139. back: {
  53140. height: math.unit(2.69, "meters"),
  53141. weight: math.unit(132, "kg"),
  53142. name: "Back",
  53143. image: {
  53144. source: "./media/characters/aarkus/back.svg",
  53145. extra: 1381/1218,
  53146. bottom: 30/1411
  53147. }
  53148. },
  53149. frontNsfw: {
  53150. height: math.unit(2.69, "meters"),
  53151. weight: math.unit(132, "kg"),
  53152. name: "Front (NSFW)",
  53153. image: {
  53154. source: "./media/characters/aarkus/front-nsfw.svg",
  53155. extra: 1400/1231,
  53156. bottom: 34/1434
  53157. }
  53158. },
  53159. foot: {
  53160. height: math.unit(1.45, "feet"),
  53161. name: "Foot",
  53162. image: {
  53163. source: "./media/characters/aarkus/foot.svg"
  53164. }
  53165. },
  53166. head: {
  53167. height: math.unit(2.85, "feet"),
  53168. name: "Head",
  53169. image: {
  53170. source: "./media/characters/aarkus/head.svg"
  53171. }
  53172. },
  53173. headAlt: {
  53174. height: math.unit(3.07, "feet"),
  53175. name: "Head (Alt)",
  53176. image: {
  53177. source: "./media/characters/aarkus/head-alt.svg"
  53178. }
  53179. },
  53180. mouth: {
  53181. height: math.unit(1.25, "feet"),
  53182. name: "Mouth",
  53183. image: {
  53184. source: "./media/characters/aarkus/mouth.svg"
  53185. }
  53186. },
  53187. dick: {
  53188. height: math.unit(1.77, "feet"),
  53189. name: "Dick",
  53190. image: {
  53191. source: "./media/characters/aarkus/dick.svg"
  53192. }
  53193. },
  53194. },
  53195. [
  53196. {
  53197. name: "Normal",
  53198. height: math.unit(2.69, "meters"),
  53199. default: true
  53200. },
  53201. {
  53202. name: "Macro",
  53203. height: math.unit(269, "meters")
  53204. },
  53205. {
  53206. name: "Macro+",
  53207. height: math.unit(672.5, "meters")
  53208. },
  53209. {
  53210. name: "Megamacro",
  53211. height: math.unit(2.017, "km")
  53212. },
  53213. ]
  53214. ))
  53215. characterMakers.push(() => makeCharacter(
  53216. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53217. {
  53218. front: {
  53219. height: math.unit(23.47, "cm"),
  53220. weight: math.unit(600, "grams"),
  53221. name: "Front",
  53222. image: {
  53223. source: "./media/characters/diode/front.svg",
  53224. extra: 1778/1396,
  53225. bottom: 95/1873
  53226. }
  53227. },
  53228. side: {
  53229. height: math.unit(23.47, "cm"),
  53230. weight: math.unit(600, "grams"),
  53231. name: "Side",
  53232. image: {
  53233. source: "./media/characters/diode/side.svg",
  53234. extra: 1831/1404,
  53235. bottom: 86/1917
  53236. }
  53237. },
  53238. wings: {
  53239. height: math.unit(0.683, "feet"),
  53240. name: "Wings",
  53241. image: {
  53242. source: "./media/characters/diode/wings.svg"
  53243. }
  53244. },
  53245. },
  53246. [
  53247. {
  53248. name: "Normal",
  53249. height: math.unit(23.47, "cm"),
  53250. default: true
  53251. },
  53252. ]
  53253. ))
  53254. characterMakers.push(() => makeCharacter(
  53255. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53256. {
  53257. front: {
  53258. height: math.unit(6 + 3/12, "feet"),
  53259. weight: math.unit(250, "lb"),
  53260. name: "Front",
  53261. image: {
  53262. source: "./media/characters/reika/front.svg",
  53263. extra: 1120/1078,
  53264. bottom: 86/1206
  53265. }
  53266. },
  53267. },
  53268. [
  53269. {
  53270. name: "Normal",
  53271. height: math.unit(6 + 3/12, "feet"),
  53272. default: true
  53273. },
  53274. ]
  53275. ))
  53276. characterMakers.push(() => makeCharacter(
  53277. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53278. {
  53279. front: {
  53280. height: math.unit(16 + 8/12, "feet"),
  53281. weight: math.unit(9000, "lb"),
  53282. name: "Front",
  53283. image: {
  53284. source: "./media/characters/lokuto-takama/front.svg",
  53285. extra: 1774/1632,
  53286. bottom: 147/1921
  53287. },
  53288. extraAttributes: {
  53289. "bustWidth": {
  53290. name: "Bust Width",
  53291. power: 1,
  53292. type: "length",
  53293. base: math.unit(2.4, "meters")
  53294. },
  53295. "breastWeight": {
  53296. name: "Breast Weight",
  53297. power: 3,
  53298. type: "mass",
  53299. base: math.unit(1000, "kg")
  53300. },
  53301. }
  53302. },
  53303. },
  53304. [
  53305. {
  53306. name: "Normal",
  53307. height: math.unit(16 + 8/12, "feet"),
  53308. default: true
  53309. },
  53310. ]
  53311. ))
  53312. characterMakers.push(() => makeCharacter(
  53313. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53314. {
  53315. front: {
  53316. height: math.unit(10, "cm"),
  53317. weight: math.unit(850, "grams"),
  53318. name: "Front",
  53319. image: {
  53320. source: "./media/characters/owak-bone/front.svg",
  53321. extra: 1965/1801,
  53322. bottom: 31/1996
  53323. }
  53324. },
  53325. },
  53326. [
  53327. {
  53328. name: "Normal",
  53329. height: math.unit(10, "cm"),
  53330. default: true
  53331. },
  53332. ]
  53333. ))
  53334. characterMakers.push(() => makeCharacter(
  53335. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53336. {
  53337. front: {
  53338. height: math.unit(2 + 6/12, "feet"),
  53339. weight: math.unit(9, "lb"),
  53340. name: "Front",
  53341. image: {
  53342. source: "./media/characters/muffin/front.svg",
  53343. extra: 1220/1195,
  53344. bottom: 84/1304
  53345. }
  53346. },
  53347. },
  53348. [
  53349. {
  53350. name: "Normal",
  53351. height: math.unit(2 + 6/12, "feet"),
  53352. default: true
  53353. },
  53354. ]
  53355. ))
  53356. characterMakers.push(() => makeCharacter(
  53357. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53358. {
  53359. front: {
  53360. height: math.unit(7, "feet"),
  53361. name: "Front",
  53362. image: {
  53363. source: "./media/characters/chimera/front.svg",
  53364. extra: 1752/1614,
  53365. bottom: 68/1820
  53366. }
  53367. },
  53368. },
  53369. [
  53370. {
  53371. name: "Normal",
  53372. height: math.unit(7, "feet")
  53373. },
  53374. {
  53375. name: "Gigamacro",
  53376. height: math.unit(2.9, "gigameters"),
  53377. default: true
  53378. },
  53379. {
  53380. name: "Universal",
  53381. height: math.unit(1.56e26, "yottameters")
  53382. },
  53383. ]
  53384. ))
  53385. characterMakers.push(() => makeCharacter(
  53386. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53387. {
  53388. front: {
  53389. height: math.unit(3, "feet"),
  53390. weight: math.unit(20, "lb"),
  53391. name: "Front",
  53392. image: {
  53393. source: "./media/characters/kit-fennec-fox/front.svg",
  53394. extra: 1027/932,
  53395. bottom: 16/1043
  53396. }
  53397. },
  53398. back: {
  53399. height: math.unit(3, "feet"),
  53400. weight: math.unit(20, "lb"),
  53401. name: "Back",
  53402. image: {
  53403. source: "./media/characters/kit-fennec-fox/back.svg",
  53404. extra: 1027/932,
  53405. bottom: 16/1043
  53406. }
  53407. },
  53408. },
  53409. [
  53410. {
  53411. name: "Normal",
  53412. height: math.unit(3, "feet"),
  53413. default: true
  53414. },
  53415. ]
  53416. ))
  53417. characterMakers.push(() => makeCharacter(
  53418. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53419. {
  53420. front: {
  53421. height: math.unit(167, "cm"),
  53422. name: "Front",
  53423. image: {
  53424. source: "./media/characters/blue-otter/front.svg",
  53425. extra: 1951/1920,
  53426. bottom: 31/1982
  53427. }
  53428. },
  53429. },
  53430. [
  53431. {
  53432. name: "Otter-Sized",
  53433. height: math.unit(100, "cm")
  53434. },
  53435. {
  53436. name: "Normal",
  53437. height: math.unit(167, "cm"),
  53438. default: true
  53439. },
  53440. ]
  53441. ))
  53442. characterMakers.push(() => makeCharacter(
  53443. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53444. {
  53445. front: {
  53446. height: math.unit(4 + 4/12, "feet"),
  53447. name: "Front",
  53448. image: {
  53449. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53450. extra: 1072/1067,
  53451. bottom: 117/1189
  53452. }
  53453. },
  53454. back: {
  53455. height: math.unit(4 + 4/12, "feet"),
  53456. name: "Back",
  53457. image: {
  53458. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53459. extra: 1135/1129,
  53460. bottom: 57/1192
  53461. }
  53462. },
  53463. head: {
  53464. height: math.unit(1.77, "feet"),
  53465. name: "Head",
  53466. image: {
  53467. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53468. }
  53469. },
  53470. },
  53471. [
  53472. {
  53473. name: "Normal",
  53474. height: math.unit(4 + 4/12, "feet"),
  53475. default: true
  53476. },
  53477. ]
  53478. ))
  53479. characterMakers.push(() => makeCharacter(
  53480. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53481. {
  53482. front: {
  53483. height: math.unit(2, "inches"),
  53484. name: "Front",
  53485. image: {
  53486. source: "./media/characters/carley-hartford/front.svg",
  53487. extra: 1035/988,
  53488. bottom: 23/1058
  53489. }
  53490. },
  53491. back: {
  53492. height: math.unit(2, "inches"),
  53493. name: "Back",
  53494. image: {
  53495. source: "./media/characters/carley-hartford/back.svg",
  53496. extra: 1035/988,
  53497. bottom: 23/1058
  53498. }
  53499. },
  53500. dressed: {
  53501. height: math.unit(2, "inches"),
  53502. name: "Dressed",
  53503. image: {
  53504. source: "./media/characters/carley-hartford/dressed.svg",
  53505. extra: 651/620,
  53506. bottom: 0/651
  53507. }
  53508. },
  53509. },
  53510. [
  53511. {
  53512. name: "Micro",
  53513. height: math.unit(2, "inches"),
  53514. default: true
  53515. },
  53516. {
  53517. name: "Macro",
  53518. height: math.unit(6 + 3/12, "feet")
  53519. },
  53520. ]
  53521. ))
  53522. characterMakers.push(() => makeCharacter(
  53523. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53524. {
  53525. front: {
  53526. height: math.unit(2 + 3/12, "feet"),
  53527. weight: math.unit(15 + 7/16, "lb"),
  53528. name: "Front",
  53529. image: {
  53530. source: "./media/characters/duke/front.svg",
  53531. extra: 910/815,
  53532. bottom: 30/940
  53533. }
  53534. },
  53535. },
  53536. [
  53537. {
  53538. name: "Normal",
  53539. height: math.unit(2 + 3/12, "feet"),
  53540. default: true
  53541. },
  53542. ]
  53543. ))
  53544. characterMakers.push(() => makeCharacter(
  53545. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53546. {
  53547. front: {
  53548. height: math.unit(5 + 4/12, "feet"),
  53549. weight: math.unit(156, "lb"),
  53550. name: "Front",
  53551. image: {
  53552. source: "./media/characters/dein/front.svg",
  53553. extra: 855/815,
  53554. bottom: 48/903
  53555. }
  53556. },
  53557. side: {
  53558. height: math.unit(5 + 4/12, "feet"),
  53559. weight: math.unit(156, "lb"),
  53560. name: "side",
  53561. image: {
  53562. source: "./media/characters/dein/side.svg",
  53563. extra: 846/803,
  53564. bottom: 25/871
  53565. }
  53566. },
  53567. maw: {
  53568. height: math.unit(1.45, "feet"),
  53569. name: "Maw",
  53570. image: {
  53571. source: "./media/characters/dein/maw.svg"
  53572. }
  53573. },
  53574. },
  53575. [
  53576. {
  53577. name: "Ferret Sized",
  53578. height: math.unit(2 + 5/12, "feet")
  53579. },
  53580. {
  53581. name: "Normal",
  53582. height: math.unit(5 + 4/12, "feet"),
  53583. default: true
  53584. },
  53585. ]
  53586. ))
  53587. characterMakers.push(() => makeCharacter(
  53588. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53589. {
  53590. front: {
  53591. height: math.unit(84 + 8/12, "feet"),
  53592. weight: math.unit(942180, "lb"),
  53593. name: "Front",
  53594. image: {
  53595. source: "./media/characters/daurine-arima/front.svg",
  53596. extra: 1989/1782,
  53597. bottom: 37/2026
  53598. }
  53599. },
  53600. side: {
  53601. height: math.unit(84 + 8/12, "feet"),
  53602. weight: math.unit(942180, "lb"),
  53603. name: "Side",
  53604. image: {
  53605. source: "./media/characters/daurine-arima/side.svg",
  53606. extra: 1997/1790,
  53607. bottom: 21/2018
  53608. }
  53609. },
  53610. back: {
  53611. height: math.unit(84 + 8/12, "feet"),
  53612. weight: math.unit(942180, "lb"),
  53613. name: "Back",
  53614. image: {
  53615. source: "./media/characters/daurine-arima/back.svg",
  53616. extra: 1992/1800,
  53617. bottom: 12/2004
  53618. }
  53619. },
  53620. head: {
  53621. height: math.unit(15.5, "feet"),
  53622. name: "Head",
  53623. image: {
  53624. source: "./media/characters/daurine-arima/head.svg"
  53625. }
  53626. },
  53627. headAlt: {
  53628. height: math.unit(19.19, "feet"),
  53629. name: "Head (Alt)",
  53630. image: {
  53631. source: "./media/characters/daurine-arima/head-alt.svg"
  53632. }
  53633. },
  53634. },
  53635. [
  53636. {
  53637. name: "Minimum height",
  53638. height: math.unit(8 + 10/12, "feet")
  53639. },
  53640. {
  53641. name: "Comfort height",
  53642. height: math.unit(19 + 6 /12, "feet")
  53643. },
  53644. {
  53645. name: "\"Normal\" height",
  53646. height: math.unit(28 + 10/12, "feet")
  53647. },
  53648. {
  53649. name: "Base height",
  53650. height: math.unit(84 + 8/12, "feet"),
  53651. default: true
  53652. },
  53653. {
  53654. name: "Mini-macro",
  53655. height: math.unit(2360, "feet")
  53656. },
  53657. {
  53658. name: "Macro",
  53659. height: math.unit(10, "miles")
  53660. },
  53661. {
  53662. name: "Goddess",
  53663. height: math.unit(9.99e40, "yottameters")
  53664. },
  53665. ]
  53666. ))
  53667. characterMakers.push(() => makeCharacter(
  53668. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53669. {
  53670. front: {
  53671. height: math.unit(2.3, "meters"),
  53672. name: "Front",
  53673. image: {
  53674. source: "./media/characters/cilenomon/front.svg",
  53675. extra: 1963/1778,
  53676. bottom: 54/2017
  53677. }
  53678. },
  53679. },
  53680. [
  53681. {
  53682. name: "Normal",
  53683. height: math.unit(2.3, "meters"),
  53684. default: true
  53685. },
  53686. {
  53687. name: "Big",
  53688. height: math.unit(5, "meters")
  53689. },
  53690. {
  53691. name: "Macro",
  53692. height: math.unit(30, "meters")
  53693. },
  53694. {
  53695. name: "True",
  53696. height: math.unit(1, "universe")
  53697. },
  53698. ]
  53699. ))
  53700. characterMakers.push(() => makeCharacter(
  53701. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53702. {
  53703. front: {
  53704. height: math.unit(5, "feet"),
  53705. name: "Front",
  53706. image: {
  53707. source: "./media/characters/sen-mink/front.svg",
  53708. extra: 1727/1675,
  53709. bottom: 35/1762
  53710. }
  53711. },
  53712. },
  53713. [
  53714. {
  53715. name: "Normal",
  53716. height: math.unit(5, "feet"),
  53717. default: true
  53718. },
  53719. ]
  53720. ))
  53721. characterMakers.push(() => makeCharacter(
  53722. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53723. {
  53724. front: {
  53725. height: math.unit(5.42999, "feet"),
  53726. weight: math.unit(100, "lb"),
  53727. name: "Front",
  53728. image: {
  53729. source: "./media/characters/ophois/front.svg",
  53730. extra: 1429/1286,
  53731. bottom: 60/1489
  53732. }
  53733. },
  53734. },
  53735. [
  53736. {
  53737. name: "Normal",
  53738. height: math.unit(5.42999, "feet"),
  53739. default: true
  53740. },
  53741. ]
  53742. ))
  53743. characterMakers.push(() => makeCharacter(
  53744. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53745. {
  53746. front: {
  53747. height: math.unit(2, "meters"),
  53748. name: "Front",
  53749. image: {
  53750. source: "./media/characters/riley/front.svg",
  53751. extra: 1779/1754,
  53752. bottom: 139/1918
  53753. }
  53754. },
  53755. },
  53756. [
  53757. {
  53758. name: "Normal",
  53759. height: math.unit(2, "meters"),
  53760. default: true
  53761. },
  53762. ]
  53763. ))
  53764. characterMakers.push(() => makeCharacter(
  53765. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53766. {
  53767. front: {
  53768. height: math.unit(6 + 2/12, "feet"),
  53769. weight: math.unit(195, "lb"),
  53770. preyCapacity: math.unit(6, "people"),
  53771. name: "Front",
  53772. image: {
  53773. source: "./media/characters/shuken-flash/front.svg",
  53774. extra: 1905/1739,
  53775. bottom: 65/1970
  53776. }
  53777. },
  53778. back: {
  53779. height: math.unit(6 + 2/12, "feet"),
  53780. weight: math.unit(195, "lb"),
  53781. preyCapacity: math.unit(6, "people"),
  53782. name: "Back",
  53783. image: {
  53784. source: "./media/characters/shuken-flash/back.svg",
  53785. extra: 1912/1751,
  53786. bottom: 13/1925
  53787. }
  53788. },
  53789. },
  53790. [
  53791. {
  53792. name: "Normal",
  53793. height: math.unit(6 + 2/12, "feet"),
  53794. default: true
  53795. },
  53796. ]
  53797. ))
  53798. characterMakers.push(() => makeCharacter(
  53799. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53800. {
  53801. front: {
  53802. height: math.unit(5 + 9/12, "feet"),
  53803. weight: math.unit(150, "lb"),
  53804. name: "Front",
  53805. image: {
  53806. source: "./media/characters/plat/front.svg",
  53807. extra: 1816/1703,
  53808. bottom: 43/1859
  53809. }
  53810. },
  53811. side: {
  53812. height: math.unit(5 + 9/12, "feet"),
  53813. weight: math.unit(300, "lb"),
  53814. name: "Side",
  53815. image: {
  53816. source: "./media/characters/plat/side.svg",
  53817. extra: 1824/1699,
  53818. bottom: 18/1842
  53819. }
  53820. },
  53821. },
  53822. [
  53823. {
  53824. name: "Normal",
  53825. height: math.unit(5 + 9/12, "feet"),
  53826. default: true
  53827. },
  53828. ]
  53829. ))
  53830. characterMakers.push(() => makeCharacter(
  53831. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53832. {
  53833. front: {
  53834. height: math.unit(9, "feet"),
  53835. weight: math.unit(1800, "lb"),
  53836. name: "Front",
  53837. image: {
  53838. source: "./media/characters/elaine/front.svg",
  53839. extra: 1833/1354,
  53840. bottom: 25/1858
  53841. }
  53842. },
  53843. back: {
  53844. height: math.unit(8.8, "feet"),
  53845. weight: math.unit(1800, "lb"),
  53846. name: "Back",
  53847. image: {
  53848. source: "./media/characters/elaine/back.svg",
  53849. extra: 1641/1233,
  53850. bottom: 53/1694
  53851. }
  53852. },
  53853. },
  53854. [
  53855. {
  53856. name: "Normal",
  53857. height: math.unit(9, "feet"),
  53858. default: true
  53859. },
  53860. ]
  53861. ))
  53862. characterMakers.push(() => makeCharacter(
  53863. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53864. {
  53865. front: {
  53866. height: math.unit(17 + 9/12, "feet"),
  53867. weight: math.unit(8000, "lb"),
  53868. name: "Front",
  53869. image: {
  53870. source: "./media/characters/vera-raven/front.svg",
  53871. extra: 1457/1412,
  53872. bottom: 121/1578
  53873. }
  53874. },
  53875. side: {
  53876. height: math.unit(17 + 9/12, "feet"),
  53877. weight: math.unit(8000, "lb"),
  53878. name: "Side",
  53879. image: {
  53880. source: "./media/characters/vera-raven/side.svg",
  53881. extra: 1510/1464,
  53882. bottom: 54/1564
  53883. }
  53884. },
  53885. },
  53886. [
  53887. {
  53888. name: "Normal",
  53889. height: math.unit(17 + 9/12, "feet"),
  53890. default: true
  53891. },
  53892. ]
  53893. ))
  53894. characterMakers.push(() => makeCharacter(
  53895. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53896. {
  53897. dressed: {
  53898. height: math.unit(6 + 9/12, "feet"),
  53899. name: "Dressed",
  53900. image: {
  53901. source: "./media/characters/nakisha/dressed.svg",
  53902. extra: 1909/1757,
  53903. bottom: 48/1957
  53904. }
  53905. },
  53906. nude: {
  53907. height: math.unit(6 + 9/12, "feet"),
  53908. name: "Nude",
  53909. image: {
  53910. source: "./media/characters/nakisha/nude.svg",
  53911. extra: 1917/1765,
  53912. bottom: 34/1951
  53913. }
  53914. },
  53915. },
  53916. [
  53917. {
  53918. name: "Normal",
  53919. height: math.unit(6 + 9/12, "feet"),
  53920. default: true
  53921. },
  53922. ]
  53923. ))
  53924. characterMakers.push(() => makeCharacter(
  53925. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53926. {
  53927. front: {
  53928. height: math.unit(87, "meters"),
  53929. name: "Front",
  53930. image: {
  53931. source: "./media/characters/serafin/front.svg",
  53932. extra: 1919/1776,
  53933. bottom: 65/1984
  53934. }
  53935. },
  53936. },
  53937. [
  53938. {
  53939. name: "Normal",
  53940. height: math.unit(87, "meters"),
  53941. default: true
  53942. },
  53943. ]
  53944. ))
  53945. characterMakers.push(() => makeCharacter(
  53946. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53947. {
  53948. front: {
  53949. height: math.unit(6, "feet"),
  53950. weight: math.unit(200, "lb"),
  53951. name: "Front",
  53952. image: {
  53953. source: "./media/characters/poptart/front.svg",
  53954. extra: 615/583,
  53955. bottom: 23/638
  53956. }
  53957. },
  53958. back: {
  53959. height: math.unit(6, "feet"),
  53960. weight: math.unit(200, "lb"),
  53961. name: "Back",
  53962. image: {
  53963. source: "./media/characters/poptart/back.svg",
  53964. extra: 617/584,
  53965. bottom: 22/639
  53966. }
  53967. },
  53968. frontNsfw: {
  53969. height: math.unit(6, "feet"),
  53970. weight: math.unit(200, "lb"),
  53971. name: "Front (NSFW)",
  53972. image: {
  53973. source: "./media/characters/poptart/front-nsfw.svg",
  53974. extra: 615/583,
  53975. bottom: 23/638
  53976. }
  53977. },
  53978. backNsfw: {
  53979. height: math.unit(6, "feet"),
  53980. weight: math.unit(200, "lb"),
  53981. name: "Back (NSFW)",
  53982. image: {
  53983. source: "./media/characters/poptart/back-nsfw.svg",
  53984. extra: 617/584,
  53985. bottom: 22/639
  53986. }
  53987. },
  53988. hand: {
  53989. height: math.unit(1.14, "feet"),
  53990. name: "Hand",
  53991. image: {
  53992. source: "./media/characters/poptart/hand.svg"
  53993. }
  53994. },
  53995. foot: {
  53996. height: math.unit(1.5, "feet"),
  53997. name: "Foot",
  53998. image: {
  53999. source: "./media/characters/poptart/foot.svg"
  54000. }
  54001. },
  54002. },
  54003. [
  54004. {
  54005. name: "Normal",
  54006. height: math.unit(6, "feet"),
  54007. default: true
  54008. },
  54009. {
  54010. name: "Grande",
  54011. height: math.unit(350, "feet")
  54012. },
  54013. {
  54014. name: "Massif",
  54015. height: math.unit(967, "feet")
  54016. },
  54017. ]
  54018. ))
  54019. characterMakers.push(() => makeCharacter(
  54020. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54021. {
  54022. hyenaSide: {
  54023. height: math.unit(120, "cm"),
  54024. weight: math.unit(120, "lb"),
  54025. name: "Side",
  54026. image: {
  54027. source: "./media/characters/trance/hyena-side.svg",
  54028. extra: 998/904,
  54029. bottom: 76/1074
  54030. }
  54031. },
  54032. },
  54033. [
  54034. {
  54035. name: "Normal",
  54036. height: math.unit(120, "cm"),
  54037. default: true
  54038. },
  54039. {
  54040. name: "Dire",
  54041. height: math.unit(230, "cm")
  54042. },
  54043. {
  54044. name: "Macro",
  54045. height: math.unit(37, "feet")
  54046. },
  54047. ]
  54048. ))
  54049. characterMakers.push(() => makeCharacter(
  54050. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54051. {
  54052. front: {
  54053. height: math.unit(6 + 3/12, "feet"),
  54054. name: "Front",
  54055. image: {
  54056. source: "./media/characters/michael-berretta/front.svg",
  54057. extra: 515/494,
  54058. bottom: 20/535
  54059. }
  54060. },
  54061. back: {
  54062. height: math.unit(6 + 3/12, "feet"),
  54063. name: "Back",
  54064. image: {
  54065. source: "./media/characters/michael-berretta/back.svg",
  54066. extra: 520/497,
  54067. bottom: 21/541
  54068. }
  54069. },
  54070. frontNsfw: {
  54071. height: math.unit(6 + 3/12, "feet"),
  54072. name: "Front (NSFW)",
  54073. image: {
  54074. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54075. extra: 515/494,
  54076. bottom: 20/535
  54077. }
  54078. },
  54079. dick: {
  54080. height: math.unit(1, "feet"),
  54081. name: "Dick",
  54082. image: {
  54083. source: "./media/characters/michael-berretta/dick.svg"
  54084. }
  54085. },
  54086. },
  54087. [
  54088. {
  54089. name: "Normal",
  54090. height: math.unit(6 + 3/12, "feet"),
  54091. default: true
  54092. },
  54093. {
  54094. name: "Big",
  54095. height: math.unit(12, "feet")
  54096. },
  54097. {
  54098. name: "Macro",
  54099. height: math.unit(187.5, "feet")
  54100. },
  54101. ]
  54102. ))
  54103. characterMakers.push(() => makeCharacter(
  54104. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54105. {
  54106. front: {
  54107. height: math.unit(9 + 9/12, "feet"),
  54108. weight: math.unit(1244, "lb"),
  54109. name: "Front",
  54110. image: {
  54111. source: "./media/characters/stella-edgecomb/front.svg",
  54112. extra: 1835/1706,
  54113. bottom: 49/1884
  54114. }
  54115. },
  54116. pen: {
  54117. height: math.unit(0.95, "feet"),
  54118. name: "Pen",
  54119. image: {
  54120. source: "./media/characters/stella-edgecomb/pen.svg"
  54121. }
  54122. },
  54123. },
  54124. [
  54125. {
  54126. name: "Cozy Bear",
  54127. height: math.unit(0.5, "inches")
  54128. },
  54129. {
  54130. name: "Normal",
  54131. height: math.unit(9 + 9/12, "feet"),
  54132. default: true
  54133. },
  54134. {
  54135. name: "Giga Bear",
  54136. height: math.unit(1, "mile")
  54137. },
  54138. {
  54139. name: "Great Bear",
  54140. height: math.unit(53, "miles")
  54141. },
  54142. {
  54143. name: "Goddess Bear",
  54144. height: math.unit(40000, "miles")
  54145. },
  54146. {
  54147. name: "Sun Bear",
  54148. height: math.unit(900000, "miles")
  54149. },
  54150. ]
  54151. ))
  54152. characterMakers.push(() => makeCharacter(
  54153. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54154. {
  54155. anthroFront: {
  54156. height: math.unit(556, "cm"),
  54157. weight: math.unit(2650, "kg"),
  54158. preyCapacity: math.unit(3, "people"),
  54159. name: "Front",
  54160. image: {
  54161. source: "./media/characters/ash´iika/front.svg",
  54162. extra: 710/673,
  54163. bottom: 15/725
  54164. },
  54165. form: "anthro",
  54166. default: true
  54167. },
  54168. anthroSide: {
  54169. height: math.unit(556, "cm"),
  54170. weight: math.unit(2650, "kg"),
  54171. preyCapacity: math.unit(3, "people"),
  54172. name: "Side",
  54173. image: {
  54174. source: "./media/characters/ash´iika/side.svg",
  54175. extra: 696/676,
  54176. bottom: 13/709
  54177. },
  54178. form: "anthro"
  54179. },
  54180. anthroDressed: {
  54181. height: math.unit(556, "cm"),
  54182. weight: math.unit(2650, "kg"),
  54183. preyCapacity: math.unit(3, "people"),
  54184. name: "Dressed",
  54185. image: {
  54186. source: "./media/characters/ash´iika/dressed.svg",
  54187. extra: 710/673,
  54188. bottom: 15/725
  54189. },
  54190. form: "anthro"
  54191. },
  54192. anthroHead: {
  54193. height: math.unit(3.5, "feet"),
  54194. name: "Head",
  54195. image: {
  54196. source: "./media/characters/ash´iika/head.svg",
  54197. extra: 348/291,
  54198. bottom: 45/393
  54199. },
  54200. form: "anthro"
  54201. },
  54202. feralSide: {
  54203. height: math.unit(870, "cm"),
  54204. weight: math.unit(17500, "kg"),
  54205. preyCapacity: math.unit(15, "people"),
  54206. name: "Side",
  54207. image: {
  54208. source: "./media/characters/ash´iika/feral.svg",
  54209. extra: 595/199,
  54210. bottom: 7/602
  54211. },
  54212. form: "feral",
  54213. default: true,
  54214. },
  54215. },
  54216. [
  54217. {
  54218. name: "Normal",
  54219. height: math.unit(556, "cm"),
  54220. default: true,
  54221. form: "anthro"
  54222. },
  54223. {
  54224. name: "Macro",
  54225. height: math.unit(88, "meters"),
  54226. form: "anthro"
  54227. },
  54228. {
  54229. name: "Normal",
  54230. height: math.unit(870, "cm"),
  54231. default: true,
  54232. form: "feral"
  54233. },
  54234. {
  54235. name: "Large",
  54236. height: math.unit(25, "meters"),
  54237. form: "feral"
  54238. },
  54239. ],
  54240. {
  54241. "anthro": {
  54242. name: "Anthro",
  54243. default: true
  54244. },
  54245. "feral": {
  54246. name: "Feral",
  54247. },
  54248. }
  54249. ))
  54250. characterMakers.push(() => makeCharacter(
  54251. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54252. {
  54253. front: {
  54254. height: math.unit(10, "feet"),
  54255. weight: math.unit(800, "lb"),
  54256. name: "Front",
  54257. image: {
  54258. source: "./media/characters/yen/front.svg",
  54259. extra: 443/411,
  54260. bottom: 6/449
  54261. }
  54262. },
  54263. sleeping: {
  54264. height: math.unit(10, "feet"),
  54265. weight: math.unit(800, "lb"),
  54266. name: "Sleeping",
  54267. image: {
  54268. source: "./media/characters/yen/sleeping.svg",
  54269. extra: 470/422,
  54270. bottom: 0/470
  54271. }
  54272. },
  54273. head: {
  54274. height: math.unit(2.2, "feet"),
  54275. name: "Head",
  54276. image: {
  54277. source: "./media/characters/yen/head.svg"
  54278. }
  54279. },
  54280. headAlt: {
  54281. height: math.unit(2.1, "feet"),
  54282. name: "Head (Alt)",
  54283. image: {
  54284. source: "./media/characters/yen/head-alt.svg"
  54285. }
  54286. },
  54287. },
  54288. [
  54289. {
  54290. name: "Normal",
  54291. height: math.unit(10, "feet"),
  54292. default: true
  54293. },
  54294. ]
  54295. ))
  54296. characterMakers.push(() => makeCharacter(
  54297. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54298. {
  54299. front: {
  54300. height: math.unit(12, "feet"),
  54301. name: "Front",
  54302. image: {
  54303. source: "./media/characters/citra/front.svg",
  54304. extra: 1950/1710,
  54305. bottom: 47/1997
  54306. }
  54307. },
  54308. },
  54309. [
  54310. {
  54311. name: "Normal",
  54312. height: math.unit(12, "feet"),
  54313. default: true
  54314. },
  54315. ]
  54316. ))
  54317. characterMakers.push(() => makeCharacter(
  54318. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54319. {
  54320. side: {
  54321. height: math.unit(7 + 10/12, "feet"),
  54322. name: "Side",
  54323. image: {
  54324. source: "./media/characters/sholstim/side.svg",
  54325. extra: 786/682,
  54326. bottom: 40/826
  54327. }
  54328. },
  54329. },
  54330. [
  54331. {
  54332. name: "Normal",
  54333. height: math.unit(7 + 10/12, "feet"),
  54334. default: true
  54335. },
  54336. ]
  54337. ))
  54338. characterMakers.push(() => makeCharacter(
  54339. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54340. {
  54341. front: {
  54342. height: math.unit(3.10, "meters"),
  54343. name: "Front",
  54344. image: {
  54345. source: "./media/characters/aggyn/front.svg",
  54346. extra: 1188/963,
  54347. bottom: 24/1212
  54348. }
  54349. },
  54350. },
  54351. [
  54352. {
  54353. name: "Normal",
  54354. height: math.unit(3.10, "meters"),
  54355. default: true
  54356. },
  54357. ]
  54358. ))
  54359. characterMakers.push(() => makeCharacter(
  54360. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54361. {
  54362. front: {
  54363. height: math.unit(7 + 5/12, "feet"),
  54364. weight: math.unit(687, "lb"),
  54365. name: "Front",
  54366. image: {
  54367. source: "./media/characters/alsandair-hergenroether/front.svg",
  54368. extra: 1251/1186,
  54369. bottom: 75/1326
  54370. }
  54371. },
  54372. back: {
  54373. height: math.unit(7 + 5/12, "feet"),
  54374. weight: math.unit(687, "lb"),
  54375. name: "Back",
  54376. image: {
  54377. source: "./media/characters/alsandair-hergenroether/back.svg",
  54378. extra: 1290/1229,
  54379. bottom: 17/1307
  54380. }
  54381. },
  54382. },
  54383. [
  54384. {
  54385. name: "Max Compression",
  54386. height: math.unit(7 + 5/12, "feet"),
  54387. default: true
  54388. },
  54389. {
  54390. name: "\"Normal\"",
  54391. height: math.unit(2, "universes")
  54392. },
  54393. ]
  54394. ))
  54395. characterMakers.push(() => makeCharacter(
  54396. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54397. {
  54398. front: {
  54399. height: math.unit(4 + 1/12, "feet"),
  54400. weight: math.unit(92, "lb"),
  54401. name: "Front",
  54402. image: {
  54403. source: "./media/characters/ie/front.svg",
  54404. extra: 1585/1352,
  54405. bottom: 91/1676
  54406. }
  54407. },
  54408. },
  54409. [
  54410. {
  54411. name: "Normal",
  54412. height: math.unit(4 + 1/12, "feet"),
  54413. default: true
  54414. },
  54415. ]
  54416. ))
  54417. characterMakers.push(() => makeCharacter(
  54418. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54419. {
  54420. anthro: {
  54421. height: math.unit(6, "feet"),
  54422. weight: math.unit(150, "lb"),
  54423. name: "Front",
  54424. image: {
  54425. source: "./media/characters/willow/anthro.svg",
  54426. extra: 1073/986,
  54427. bottom: 34/1107
  54428. },
  54429. form: "anthro",
  54430. default: true
  54431. },
  54432. taur: {
  54433. height: math.unit(6, "feet"),
  54434. weight: math.unit(150, "lb"),
  54435. name: "Side",
  54436. image: {
  54437. source: "./media/characters/willow/taur.svg",
  54438. extra: 647/512,
  54439. bottom: 136/783
  54440. },
  54441. form: "taur",
  54442. default: true
  54443. },
  54444. },
  54445. [
  54446. {
  54447. name: "Humanoid",
  54448. height: math.unit(2.7, "meters"),
  54449. form: "anthro"
  54450. },
  54451. {
  54452. name: "Normal",
  54453. height: math.unit(9, "meters"),
  54454. form: "anthro",
  54455. default: true
  54456. },
  54457. {
  54458. name: "Humanoid",
  54459. height: math.unit(2.1, "meters"),
  54460. form: "taur"
  54461. },
  54462. {
  54463. name: "Normal",
  54464. height: math.unit(7, "meters"),
  54465. form: "taur",
  54466. default: true
  54467. },
  54468. ],
  54469. {
  54470. "anthro": {
  54471. name: "Anthro",
  54472. default: true
  54473. },
  54474. "taur": {
  54475. name: "Taur",
  54476. },
  54477. }
  54478. ))
  54479. characterMakers.push(() => makeCharacter(
  54480. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54481. {
  54482. front: {
  54483. height: math.unit(2 + 5/12, "feet"),
  54484. name: "Front",
  54485. image: {
  54486. source: "./media/characters/kyan/front.svg",
  54487. extra: 460/334,
  54488. bottom: 23/483
  54489. },
  54490. extraAttributes: {
  54491. "toeLength": {
  54492. name: "Toe Length",
  54493. power: 1,
  54494. type: "length",
  54495. base: math.unit(7, "cm")
  54496. },
  54497. "toeclawLength": {
  54498. name: "Toeclaw Length",
  54499. power: 1,
  54500. type: "length",
  54501. base: math.unit(4.7, "cm")
  54502. },
  54503. "earHeight": {
  54504. name: "Ear Height",
  54505. power: 1,
  54506. type: "length",
  54507. base: math.unit(14.1, "cm")
  54508. },
  54509. }
  54510. },
  54511. paws: {
  54512. height: math.unit(0.45, "feet"),
  54513. name: "Paws",
  54514. image: {
  54515. source: "./media/characters/kyan/paws.svg",
  54516. extra: 581/581,
  54517. bottom: 114/695
  54518. }
  54519. },
  54520. },
  54521. [
  54522. {
  54523. name: "Normal",
  54524. height: math.unit(2 + 5/12, "feet"),
  54525. default: true
  54526. },
  54527. ]
  54528. ))
  54529. characterMakers.push(() => makeCharacter(
  54530. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54531. {
  54532. front: {
  54533. height: math.unit(2 + 2/3, "feet"),
  54534. name: "Front",
  54535. image: {
  54536. source: "./media/characters/xazzon/front.svg",
  54537. extra: 1109/984,
  54538. bottom: 42/1151
  54539. }
  54540. },
  54541. back: {
  54542. height: math.unit(2 + 2/3, "feet"),
  54543. name: "Back",
  54544. image: {
  54545. source: "./media/characters/xazzon/back.svg",
  54546. extra: 1095/971,
  54547. bottom: 23/1118
  54548. }
  54549. },
  54550. },
  54551. [
  54552. {
  54553. name: "Normal",
  54554. height: math.unit(2 + 2/3, "feet"),
  54555. default: true
  54556. },
  54557. ]
  54558. ))
  54559. characterMakers.push(() => makeCharacter(
  54560. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54561. {
  54562. dressed: {
  54563. height: math.unit(5 + 7/12, "feet"),
  54564. weight: math.unit(173, "lb"),
  54565. name: "Dressed",
  54566. image: {
  54567. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54568. extra: 3262/2862,
  54569. bottom: 188/3450
  54570. }
  54571. },
  54572. undressed: {
  54573. height: math.unit(5 + 7/12, "feet"),
  54574. weight: math.unit(173, "lb"),
  54575. name: "Undressed",
  54576. image: {
  54577. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54578. extra: 3262/2862,
  54579. bottom: 188/3450
  54580. }
  54581. },
  54582. },
  54583. [
  54584. {
  54585. name: "The void",
  54586. height: math.unit(7.29193e-34, "angstroms")
  54587. },
  54588. {
  54589. name: "Uh-Oh.",
  54590. height: math.unit(5.734e-7, "angstroms")
  54591. },
  54592. {
  54593. name: "Pico",
  54594. height: math.unit(0.876, "angstroms")
  54595. },
  54596. {
  54597. name: "Nano",
  54598. height: math.unit(0.000134200, "mm")
  54599. },
  54600. {
  54601. name: "Micro",
  54602. height: math.unit(0.0673020, "mm")
  54603. },
  54604. {
  54605. name: "Tiny",
  54606. height: math.unit(2.4, "mm")
  54607. },
  54608. {
  54609. name: "Actual Normal",
  54610. height: math.unit(3, "inches"),
  54611. default: true
  54612. },
  54613. {
  54614. name: "Normal",
  54615. height: math.unit(5 + 8/12, "feet")
  54616. },
  54617. {
  54618. name: "Giant",
  54619. height: math.unit(12, "feet")
  54620. },
  54621. {
  54622. name: "City Ruler",
  54623. height: math.unit(270, "meters")
  54624. },
  54625. {
  54626. name: "Giga",
  54627. height: math.unit(1117.6, "km")
  54628. },
  54629. {
  54630. name: "All-Powerful Queen",
  54631. height: math.unit(70.8, "gigameters")
  54632. },
  54633. {
  54634. name: "'Goddess'",
  54635. height: math.unit(600, "yottameters")
  54636. },
  54637. {
  54638. name: "Biggest!",
  54639. height: math.unit(4.23e5, "yottameters")
  54640. },
  54641. ]
  54642. ))
  54643. characterMakers.push(() => makeCharacter(
  54644. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54645. {
  54646. front: {
  54647. height: math.unit(8, "feet"),
  54648. weight: math.unit(300, "lb"),
  54649. name: "Front",
  54650. image: {
  54651. source: "./media/characters/khyla-shadowsong/front.svg",
  54652. extra: 861/798,
  54653. bottom: 32/893
  54654. }
  54655. },
  54656. side: {
  54657. height: math.unit(8, "feet"),
  54658. weight: math.unit(300, "lb"),
  54659. name: "Side",
  54660. image: {
  54661. source: "./media/characters/khyla-shadowsong/side.svg",
  54662. extra: 790/750,
  54663. bottom: 87/877
  54664. }
  54665. },
  54666. back: {
  54667. height: math.unit(8, "feet"),
  54668. weight: math.unit(300, "lb"),
  54669. name: "Back",
  54670. image: {
  54671. source: "./media/characters/khyla-shadowsong/back.svg",
  54672. extra: 855/808,
  54673. bottom: 14/869
  54674. }
  54675. },
  54676. head: {
  54677. height: math.unit(2.7, "feet"),
  54678. name: "Head",
  54679. image: {
  54680. source: "./media/characters/khyla-shadowsong/head.svg"
  54681. }
  54682. },
  54683. },
  54684. [
  54685. {
  54686. name: "Micro",
  54687. height: math.unit(6, "inches")
  54688. },
  54689. {
  54690. name: "Normal",
  54691. height: math.unit(8, "feet"),
  54692. default: true
  54693. },
  54694. ]
  54695. ))
  54696. characterMakers.push(() => makeCharacter(
  54697. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54698. {
  54699. hyperFront: {
  54700. height: math.unit(9 + 4/12, "feet"),
  54701. weight: math.unit(2000, "lb"),
  54702. name: "Front",
  54703. image: {
  54704. source: "./media/characters/tiden/hyper-front.svg",
  54705. extra: 400/382,
  54706. bottom: 6/406
  54707. },
  54708. form: "hyper",
  54709. },
  54710. regularFront: {
  54711. height: math.unit(7 + 10/12, "feet"),
  54712. weight: math.unit(470, "lb"),
  54713. name: "Front",
  54714. image: {
  54715. source: "./media/characters/tiden/regular-front.svg",
  54716. extra: 468/442,
  54717. bottom: 6/474
  54718. },
  54719. form: "regular",
  54720. },
  54721. },
  54722. [
  54723. {
  54724. name: "Normal",
  54725. height: math.unit(9 + 4/12, "feet"),
  54726. default: true,
  54727. form: "hyper"
  54728. },
  54729. {
  54730. name: "Normal",
  54731. height: math.unit(7 + 10/12, "feet"),
  54732. default: true,
  54733. form: "regular"
  54734. },
  54735. ],
  54736. {
  54737. "hyper": {
  54738. name: "Hyper",
  54739. default: true
  54740. },
  54741. "regular": {
  54742. name: "Regular",
  54743. },
  54744. }
  54745. ))
  54746. characterMakers.push(() => makeCharacter(
  54747. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54748. {
  54749. side: {
  54750. height: math.unit(6, "feet"),
  54751. weight: math.unit(150, "lb"),
  54752. name: "Side",
  54753. image: {
  54754. source: "./media/characters/jason-crowe/side.svg",
  54755. extra: 1771/766,
  54756. bottom: 219/1990
  54757. }
  54758. },
  54759. },
  54760. [
  54761. {
  54762. name: "Pocket Gryphon",
  54763. height: math.unit(6, "cm")
  54764. },
  54765. {
  54766. name: "Raven",
  54767. height: math.unit(60, "cm")
  54768. },
  54769. {
  54770. name: "Normal",
  54771. height: math.unit(1, "meter"),
  54772. default: true
  54773. },
  54774. ]
  54775. ))
  54776. characterMakers.push(() => makeCharacter(
  54777. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54778. {
  54779. front: {
  54780. height: math.unit(9 + 6/12, "feet"),
  54781. weight: math.unit(1100, "lb"),
  54782. name: "Front",
  54783. image: {
  54784. source: "./media/characters/django/front.svg",
  54785. extra: 1231/1136,
  54786. bottom: 34/1265
  54787. }
  54788. },
  54789. side: {
  54790. height: math.unit(9 + 6/12, "feet"),
  54791. weight: math.unit(1100, "lb"),
  54792. name: "Side",
  54793. image: {
  54794. source: "./media/characters/django/side.svg",
  54795. extra: 1267/1174,
  54796. bottom: 9/1276
  54797. }
  54798. },
  54799. },
  54800. [
  54801. {
  54802. name: "Normal",
  54803. height: math.unit(9 + 6/12, "feet"),
  54804. default: true
  54805. },
  54806. {
  54807. name: "Macro 1",
  54808. height: math.unit(50, "feet")
  54809. },
  54810. {
  54811. name: "Macro 2",
  54812. height: math.unit(500, "feet")
  54813. },
  54814. {
  54815. name: "Mega Macro",
  54816. height: math.unit(5300, "feet")
  54817. },
  54818. ]
  54819. ))
  54820. characterMakers.push(() => makeCharacter(
  54821. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54822. {
  54823. frontSfw: {
  54824. height: math.unit(120, "cm"),
  54825. weight: math.unit(15, "kg"),
  54826. name: "Front (SFW)",
  54827. image: {
  54828. source: "./media/characters/eri/front-sfw.svg",
  54829. extra: 1014/939,
  54830. bottom: 37/1051
  54831. },
  54832. form: "moth",
  54833. },
  54834. frontNsfw: {
  54835. height: math.unit(120, "cm"),
  54836. weight: math.unit(15, "kg"),
  54837. name: "Front (NSFW)",
  54838. image: {
  54839. source: "./media/characters/eri/front-nsfw.svg",
  54840. extra: 1014/939,
  54841. bottom: 37/1051
  54842. },
  54843. form: "moth",
  54844. default: true
  54845. },
  54846. egg: {
  54847. height: math.unit(10, "cm"),
  54848. name: "Egg",
  54849. image: {
  54850. source: "./media/characters/eri/egg.svg"
  54851. },
  54852. form: "egg",
  54853. default: true
  54854. },
  54855. },
  54856. [
  54857. {
  54858. name: "Normal",
  54859. height: math.unit(120, "cm"),
  54860. default: true,
  54861. form: "moth"
  54862. },
  54863. {
  54864. name: "Normal",
  54865. height: math.unit(10, "cm"),
  54866. default: true,
  54867. form: "egg"
  54868. },
  54869. ],
  54870. {
  54871. "moth": {
  54872. name: "Moth",
  54873. default: true
  54874. },
  54875. "egg": {
  54876. name: "Egg",
  54877. },
  54878. }
  54879. ))
  54880. characterMakers.push(() => makeCharacter(
  54881. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54882. {
  54883. front: {
  54884. height: math.unit(200, "feet"),
  54885. name: "Front",
  54886. image: {
  54887. source: "./media/characters/bishop-dowser/front.svg",
  54888. extra: 933/868,
  54889. bottom: 106/1039
  54890. }
  54891. },
  54892. },
  54893. [
  54894. {
  54895. name: "Giant",
  54896. height: math.unit(200, "feet"),
  54897. default: true
  54898. },
  54899. ]
  54900. ))
  54901. characterMakers.push(() => makeCharacter(
  54902. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54903. {
  54904. front: {
  54905. height: math.unit(2, "meters"),
  54906. preyCapacity: math.unit(3, "people"),
  54907. name: "Front",
  54908. image: {
  54909. source: "./media/characters/fryra/front.svg",
  54910. extra: 1025/948,
  54911. bottom: 30/1055
  54912. },
  54913. extraAttributes: {
  54914. "breastVolume": {
  54915. name: "Breast Volume",
  54916. power: 3,
  54917. type: "volume",
  54918. base: math.unit(8, "liters")
  54919. },
  54920. }
  54921. },
  54922. back: {
  54923. height: math.unit(2, "meters"),
  54924. preyCapacity: math.unit(3, "people"),
  54925. name: "Back",
  54926. image: {
  54927. source: "./media/characters/fryra/back.svg",
  54928. extra: 993/938,
  54929. bottom: 38/1031
  54930. },
  54931. extraAttributes: {
  54932. "breastVolume": {
  54933. name: "Breast Volume",
  54934. power: 3,
  54935. type: "volume",
  54936. base: math.unit(8, "liters")
  54937. },
  54938. }
  54939. },
  54940. head: {
  54941. height: math.unit(1.33, "feet"),
  54942. name: "Head",
  54943. image: {
  54944. source: "./media/characters/fryra/head.svg"
  54945. }
  54946. },
  54947. maw: {
  54948. height: math.unit(0.56, "feet"),
  54949. name: "Maw",
  54950. image: {
  54951. source: "./media/characters/fryra/maw.svg"
  54952. }
  54953. },
  54954. },
  54955. [
  54956. {
  54957. name: "Micro",
  54958. height: math.unit(5, "cm")
  54959. },
  54960. {
  54961. name: "Normal",
  54962. height: math.unit(2, "meters"),
  54963. default: true
  54964. },
  54965. {
  54966. name: "Small Macro",
  54967. height: math.unit(8, "meters")
  54968. },
  54969. {
  54970. name: "Macro",
  54971. height: math.unit(50, "meters")
  54972. },
  54973. {
  54974. name: "Megamacro",
  54975. height: math.unit(1, "km")
  54976. },
  54977. {
  54978. name: "Planetary",
  54979. height: math.unit(300000, "km")
  54980. },
  54981. {
  54982. name: "Universal",
  54983. height: math.unit(250, "lightyears")
  54984. },
  54985. {
  54986. name: "Fabric of Reality",
  54987. height: math.unit(1000, "multiverses")
  54988. },
  54989. ]
  54990. ))
  54991. characterMakers.push(() => makeCharacter(
  54992. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54993. {
  54994. frontDressed: {
  54995. height: math.unit(6 + 2/12, "feet"),
  54996. name: "Front (Dressed)",
  54997. image: {
  54998. source: "./media/characters/fiera/front-dressed.svg",
  54999. extra: 1883/1793,
  55000. bottom: 70/1953
  55001. }
  55002. },
  55003. backDressed: {
  55004. height: math.unit(6 + 2/12, "feet"),
  55005. name: "Back (Dressed)",
  55006. image: {
  55007. source: "./media/characters/fiera/back-dressed.svg",
  55008. extra: 1847/1780,
  55009. bottom: 70/1917
  55010. }
  55011. },
  55012. frontNude: {
  55013. height: math.unit(6 + 2/12, "feet"),
  55014. name: "Front (Nude)",
  55015. image: {
  55016. source: "./media/characters/fiera/front-nude.svg",
  55017. extra: 1875/1785,
  55018. bottom: 66/1941
  55019. }
  55020. },
  55021. backNude: {
  55022. height: math.unit(6 + 2/12, "feet"),
  55023. name: "Back (Nude)",
  55024. image: {
  55025. source: "./media/characters/fiera/back-nude.svg",
  55026. extra: 1855/1788,
  55027. bottom: 44/1899
  55028. }
  55029. },
  55030. maw: {
  55031. height: math.unit(1.3, "feet"),
  55032. name: "Maw",
  55033. image: {
  55034. source: "./media/characters/fiera/maw.svg"
  55035. }
  55036. },
  55037. paw: {
  55038. height: math.unit(1, "feet"),
  55039. name: "Paw",
  55040. image: {
  55041. source: "./media/characters/fiera/paw.svg"
  55042. }
  55043. },
  55044. shoe: {
  55045. height: math.unit(1.05, "feet"),
  55046. name: "Shoe",
  55047. image: {
  55048. source: "./media/characters/fiera/shoe.svg"
  55049. }
  55050. },
  55051. },
  55052. [
  55053. {
  55054. name: "Normal",
  55055. height: math.unit(6 + 2/12, "feet"),
  55056. default: true
  55057. },
  55058. {
  55059. name: "Size Difference",
  55060. height: math.unit(13, "feet")
  55061. },
  55062. {
  55063. name: "Macro",
  55064. height: math.unit(60, "feet")
  55065. },
  55066. {
  55067. name: "Mega Macro",
  55068. height: math.unit(200, "feet")
  55069. },
  55070. ]
  55071. ))
  55072. characterMakers.push(() => makeCharacter(
  55073. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55074. {
  55075. back: {
  55076. height: math.unit(6, "feet"),
  55077. name: "Back",
  55078. image: {
  55079. source: "./media/characters/flare/back.svg",
  55080. extra: 1883/1765,
  55081. bottom: 32/1915
  55082. }
  55083. },
  55084. },
  55085. [
  55086. {
  55087. name: "Normal",
  55088. height: math.unit(6 + 2/12, "feet"),
  55089. default: true
  55090. },
  55091. {
  55092. name: "Size Difference",
  55093. height: math.unit(13, "feet")
  55094. },
  55095. {
  55096. name: "Macro",
  55097. height: math.unit(60, "feet")
  55098. },
  55099. {
  55100. name: "Macro 2",
  55101. height: math.unit(100, "feet")
  55102. },
  55103. {
  55104. name: "Mega Macro",
  55105. height: math.unit(200, "feet")
  55106. },
  55107. ]
  55108. ))
  55109. characterMakers.push(() => makeCharacter(
  55110. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55111. {
  55112. front: {
  55113. height: math.unit(2.2, "m"),
  55114. weight: math.unit(300, "kg"),
  55115. name: "Front",
  55116. image: {
  55117. source: "./media/characters/hanna/front.svg",
  55118. extra: 1696/1502,
  55119. bottom: 206/1902
  55120. }
  55121. },
  55122. },
  55123. [
  55124. {
  55125. name: "Humanoid",
  55126. height: math.unit(2.2, "meters")
  55127. },
  55128. {
  55129. name: "Normal",
  55130. height: math.unit(4.8, "meters"),
  55131. default: true
  55132. },
  55133. ]
  55134. ))
  55135. characterMakers.push(() => makeCharacter(
  55136. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55137. {
  55138. front: {
  55139. height: math.unit(2.8, "meters"),
  55140. name: "Front",
  55141. image: {
  55142. source: "./media/characters/argo/front.svg",
  55143. extra: 731/518,
  55144. bottom: 84/815
  55145. }
  55146. },
  55147. },
  55148. [
  55149. {
  55150. name: "Normal",
  55151. height: math.unit(3, "meters"),
  55152. default: true
  55153. },
  55154. ]
  55155. ))
  55156. characterMakers.push(() => makeCharacter(
  55157. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55158. {
  55159. side: {
  55160. height: math.unit(3.8, "meters"),
  55161. name: "Side",
  55162. image: {
  55163. source: "./media/characters/sybil/side.svg",
  55164. extra: 382/361,
  55165. bottom: 25/407
  55166. }
  55167. },
  55168. },
  55169. [
  55170. {
  55171. name: "Normal",
  55172. height: math.unit(3.8, "meters"),
  55173. default: true
  55174. },
  55175. ]
  55176. ))
  55177. characterMakers.push(() => makeCharacter(
  55178. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55179. {
  55180. side: {
  55181. height: math.unit(6, "meters"),
  55182. name: "Side",
  55183. image: {
  55184. source: "./media/characters/plum/side.svg",
  55185. extra: 858/755,
  55186. bottom: 45/903
  55187. },
  55188. form: "taur",
  55189. default: true
  55190. },
  55191. back: {
  55192. height: math.unit(6.3, "meters"),
  55193. name: "Back",
  55194. image: {
  55195. source: "./media/characters/plum/back.svg",
  55196. extra: 887/813,
  55197. bottom: 32/919
  55198. },
  55199. form: "taur",
  55200. },
  55201. feral: {
  55202. height: math.unit(5.5, "meter"),
  55203. name: "Front",
  55204. image: {
  55205. source: "./media/characters/plum/feral.svg",
  55206. extra: 568/403,
  55207. bottom: 51/619
  55208. },
  55209. form: "feral",
  55210. default: true
  55211. },
  55212. head: {
  55213. height: math.unit(1.46, "meter"),
  55214. name: "Head",
  55215. image: {
  55216. source: "./media/characters/plum/head.svg"
  55217. },
  55218. form: "taur"
  55219. },
  55220. tailTop: {
  55221. height: math.unit(5.6, "meter"),
  55222. name: "Tail (Top)",
  55223. image: {
  55224. source: "./media/characters/plum/tail-top.svg"
  55225. },
  55226. form: "taur",
  55227. },
  55228. tailBottom: {
  55229. height: math.unit(5.6, "meter"),
  55230. name: "Tail (Bottom)",
  55231. image: {
  55232. source: "./media/characters/plum/tail-bottom.svg"
  55233. },
  55234. form: "taur",
  55235. },
  55236. feralHead: {
  55237. height: math.unit(2.56549521, "meter"),
  55238. name: "Head",
  55239. image: {
  55240. source: "./media/characters/plum/head.svg"
  55241. },
  55242. form: "feral"
  55243. },
  55244. feralTailTop: {
  55245. height: math.unit(5.44728435, "meter"),
  55246. name: "Tail (Top)",
  55247. image: {
  55248. source: "./media/characters/plum/tail-top.svg"
  55249. },
  55250. form: "feral",
  55251. },
  55252. feralTailBottom: {
  55253. height: math.unit(5.44728435, "meter"),
  55254. name: "Tail (Bottom)",
  55255. image: {
  55256. source: "./media/characters/plum/tail-bottom.svg"
  55257. },
  55258. form: "feral",
  55259. },
  55260. },
  55261. [
  55262. {
  55263. name: "Normal",
  55264. height: math.unit(6, "meters"),
  55265. default: true,
  55266. form: "taur"
  55267. },
  55268. {
  55269. name: "Normal",
  55270. height: math.unit(5.5, "meters"),
  55271. default: true,
  55272. form: "feral"
  55273. },
  55274. ],
  55275. {
  55276. "taur": {
  55277. name: "Taur",
  55278. default: true
  55279. },
  55280. "feral": {
  55281. name: "Feral",
  55282. },
  55283. }
  55284. ))
  55285. characterMakers.push(() => makeCharacter(
  55286. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55287. {
  55288. front: {
  55289. height: math.unit(6, "feet"),
  55290. weight: math.unit(115, "lb"),
  55291. name: "Front",
  55292. image: {
  55293. source: "./media/characters/celeste-kitsune/front.svg",
  55294. extra: 393/366,
  55295. bottom: 7/400
  55296. }
  55297. },
  55298. side: {
  55299. height: math.unit(6, "feet"),
  55300. weight: math.unit(115, "lb"),
  55301. name: "Side",
  55302. image: {
  55303. source: "./media/characters/celeste-kitsune/side.svg",
  55304. extra: 818/765,
  55305. bottom: 40/858
  55306. }
  55307. },
  55308. },
  55309. [
  55310. {
  55311. name: "Megamacro",
  55312. height: math.unit(1500, "miles"),
  55313. default: true
  55314. },
  55315. ]
  55316. ))
  55317. characterMakers.push(() => makeCharacter(
  55318. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55319. {
  55320. front: {
  55321. height: math.unit(8, "meters"),
  55322. name: "Front",
  55323. image: {
  55324. source: "./media/characters/io/front.svg",
  55325. extra: 865/722,
  55326. bottom: 58/923
  55327. }
  55328. },
  55329. back: {
  55330. height: math.unit(8, "meters"),
  55331. name: "Back",
  55332. image: {
  55333. source: "./media/characters/io/back.svg",
  55334. extra: 920/776,
  55335. bottom: 42/962
  55336. }
  55337. },
  55338. head: {
  55339. height: math.unit(5.09, "meters"),
  55340. name: "Head",
  55341. image: {
  55342. source: "./media/characters/io/head.svg"
  55343. }
  55344. },
  55345. hand: {
  55346. height: math.unit(1.6, "meters"),
  55347. name: "Hand",
  55348. image: {
  55349. source: "./media/characters/io/hand.svg"
  55350. }
  55351. },
  55352. foot: {
  55353. height: math.unit(2.4, "meters"),
  55354. name: "Foot",
  55355. image: {
  55356. source: "./media/characters/io/foot.svg"
  55357. }
  55358. },
  55359. },
  55360. [
  55361. {
  55362. name: "Normal",
  55363. height: math.unit(8, "meters"),
  55364. default: true
  55365. },
  55366. ]
  55367. ))
  55368. characterMakers.push(() => makeCharacter(
  55369. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55370. {
  55371. side: {
  55372. height: math.unit(6 + 3/12, "feet"),
  55373. weight: math.unit(225, "lb"),
  55374. name: "Side",
  55375. image: {
  55376. source: "./media/characters/silas/side.svg",
  55377. extra: 703/653,
  55378. bottom: 23/726
  55379. },
  55380. extraAttributes: {
  55381. "pawLength": {
  55382. name: "Paw Length",
  55383. power: 1,
  55384. type: "length",
  55385. base: math.unit(12, "inches")
  55386. },
  55387. "pawWidth": {
  55388. name: "Paw Width",
  55389. power: 1,
  55390. type: "length",
  55391. base: math.unit(4.5, "inches")
  55392. },
  55393. "pawArea": {
  55394. name: "Paw Area",
  55395. power: 2,
  55396. type: "area",
  55397. base: math.unit(12 * 4.5, "inches^2")
  55398. },
  55399. }
  55400. },
  55401. },
  55402. [
  55403. {
  55404. name: "Normal",
  55405. height: math.unit(6 + 3/12, "feet"),
  55406. default: true
  55407. },
  55408. ]
  55409. ))
  55410. characterMakers.push(() => makeCharacter(
  55411. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55412. {
  55413. back: {
  55414. height: math.unit(1.6, "meters"),
  55415. weight: math.unit(150, "lb"),
  55416. name: "Back",
  55417. image: {
  55418. source: "./media/characters/zari/back.svg",
  55419. extra: 424/411,
  55420. bottom: 32/456
  55421. },
  55422. extraAttributes: {
  55423. "bladderCapacity": {
  55424. name: "Bladder Size",
  55425. power: 3,
  55426. type: "volume",
  55427. base: math.unit(500, "mL")
  55428. },
  55429. "bladderFlow": {
  55430. name: "Flow Rate",
  55431. power: 3,
  55432. type: "volume",
  55433. base: math.unit(25, "mL")
  55434. },
  55435. }
  55436. },
  55437. },
  55438. [
  55439. {
  55440. name: "Normal",
  55441. height: math.unit(1.6, "meters"),
  55442. default: true
  55443. },
  55444. ]
  55445. ))
  55446. characterMakers.push(() => makeCharacter(
  55447. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55448. {
  55449. front: {
  55450. height: math.unit(25, "feet"),
  55451. weight: math.unit(5, "tons"),
  55452. name: "Front",
  55453. image: {
  55454. source: "./media/characters/charlie-human/front.svg",
  55455. extra: 1870/1740,
  55456. bottom: 102/1972
  55457. },
  55458. extraAttributes: {
  55459. "dickLength": {
  55460. name: "Dick Length",
  55461. power: 1,
  55462. type: "length",
  55463. base: math.unit(9, "feet")
  55464. },
  55465. }
  55466. },
  55467. back: {
  55468. height: math.unit(25, "feet"),
  55469. weight: math.unit(5, "tons"),
  55470. name: "Back",
  55471. image: {
  55472. source: "./media/characters/charlie-human/back.svg",
  55473. extra: 1858/1733,
  55474. bottom: 105/1963
  55475. },
  55476. extraAttributes: {
  55477. "dickLength": {
  55478. name: "Dick Length",
  55479. power: 1,
  55480. type: "length",
  55481. base: math.unit(9, "feet")
  55482. },
  55483. }
  55484. },
  55485. },
  55486. [
  55487. {
  55488. name: "\"Normal\"",
  55489. height: math.unit(6 + 4/12, "feet")
  55490. },
  55491. {
  55492. name: "Big",
  55493. height: math.unit(25, "feet"),
  55494. default: true
  55495. },
  55496. ]
  55497. ))
  55498. characterMakers.push(() => makeCharacter(
  55499. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55500. {
  55501. front: {
  55502. height: math.unit(6 + 4/12, "feet"),
  55503. weight: math.unit(320, "lb"),
  55504. name: "Front",
  55505. image: {
  55506. source: "./media/characters/ookitsu/front.svg",
  55507. extra: 1160/976,
  55508. bottom: 38/1198
  55509. }
  55510. },
  55511. frontNsfw: {
  55512. height: math.unit(6 + 4/12, "feet"),
  55513. weight: math.unit(320, "lb"),
  55514. name: "Front (NSFW)",
  55515. image: {
  55516. source: "./media/characters/ookitsu/front-nsfw.svg",
  55517. extra: 1160/976,
  55518. bottom: 38/1198
  55519. }
  55520. },
  55521. back: {
  55522. height: math.unit(6 + 4/12, "feet"),
  55523. weight: math.unit(320, "lb"),
  55524. name: "Back",
  55525. image: {
  55526. source: "./media/characters/ookitsu/back.svg",
  55527. extra: 1030/975,
  55528. bottom: 70/1100
  55529. }
  55530. },
  55531. head: {
  55532. height: math.unit(1.79, "feet"),
  55533. name: "Head",
  55534. image: {
  55535. source: "./media/characters/ookitsu/head.svg"
  55536. }
  55537. },
  55538. hand: {
  55539. height: math.unit(0.92, "feet"),
  55540. name: "Hand",
  55541. image: {
  55542. source: "./media/characters/ookitsu/hand.svg"
  55543. }
  55544. },
  55545. tails: {
  55546. height: math.unit(3.3, "feet"),
  55547. name: "Tails",
  55548. image: {
  55549. source: "./media/characters/ookitsu/tails.svg"
  55550. }
  55551. },
  55552. dick: {
  55553. height: math.unit(1.10833, "feet"),
  55554. name: "Dick",
  55555. image: {
  55556. source: "./media/characters/ookitsu/dick.svg"
  55557. }
  55558. },
  55559. },
  55560. [
  55561. {
  55562. name: "Normal",
  55563. height: math.unit(6 + 4/12, "feet"),
  55564. default: true
  55565. },
  55566. {
  55567. name: "Macro",
  55568. height: math.unit(30, "feet")
  55569. },
  55570. ]
  55571. ))
  55572. characterMakers.push(() => makeCharacter(
  55573. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55574. {
  55575. anthroFront: {
  55576. height: math.unit(6, "feet"),
  55577. weight: math.unit(250, "lb"),
  55578. name: "Front",
  55579. image: {
  55580. source: "./media/characters/jhusky/anthro-front.svg",
  55581. extra: 474/439,
  55582. bottom: 7/481
  55583. },
  55584. form: "anthro",
  55585. default: true
  55586. },
  55587. taurSideSfw: {
  55588. height: math.unit(6 + 4/12, "feet"),
  55589. weight: math.unit(500, "lb"),
  55590. name: "Side (SFW)",
  55591. image: {
  55592. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55593. extra: 1741/1629,
  55594. bottom: 196/1937
  55595. },
  55596. form: "taur",
  55597. default: true
  55598. },
  55599. taurSideNsfw: {
  55600. height: math.unit(6 + 4/12, "feet"),
  55601. weight: math.unit(500, "lb"),
  55602. name: "Taur (NSFW)",
  55603. image: {
  55604. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55605. extra: 1741/1629,
  55606. bottom: 196/1937
  55607. },
  55608. form: "taur",
  55609. },
  55610. },
  55611. [
  55612. {
  55613. name: "Huge",
  55614. height: math.unit(500, "feet"),
  55615. form: "anthro"
  55616. },
  55617. {
  55618. name: "Macro",
  55619. height: math.unit(1000, "feet"),
  55620. default: true,
  55621. form: "anthro"
  55622. },
  55623. {
  55624. name: "Megamacro",
  55625. height: math.unit(10000, "feet"),
  55626. form: "anthro"
  55627. },
  55628. {
  55629. name: "Huge",
  55630. height: math.unit(528, "feet"),
  55631. form: "taur"
  55632. },
  55633. {
  55634. name: "Macro",
  55635. height: math.unit(1056, "feet"),
  55636. default: true,
  55637. form: "taur"
  55638. },
  55639. {
  55640. name: "Megamacro",
  55641. height: math.unit(10556, "feet"),
  55642. form: "taur"
  55643. },
  55644. ],
  55645. {
  55646. "anthro": {
  55647. name: "Anthro",
  55648. default: true
  55649. },
  55650. "taur": {
  55651. name: "Taur",
  55652. },
  55653. }
  55654. ))
  55655. characterMakers.push(() => makeCharacter(
  55656. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55657. {
  55658. front: {
  55659. height: math.unit(8, "feet"),
  55660. weight: math.unit(500, "lb"),
  55661. name: "Front",
  55662. image: {
  55663. source: "./media/characters/armail/front.svg",
  55664. extra: 1753/1669,
  55665. bottom: 155/1908
  55666. }
  55667. },
  55668. back: {
  55669. height: math.unit(8, "feet"),
  55670. weight: math.unit(500, "lb"),
  55671. name: "Back",
  55672. image: {
  55673. source: "./media/characters/armail/back.svg",
  55674. extra: 1872/1803,
  55675. bottom: 63/1935
  55676. }
  55677. },
  55678. },
  55679. [
  55680. {
  55681. name: "Micro",
  55682. height: math.unit(0.25, "feet")
  55683. },
  55684. {
  55685. name: "Normal",
  55686. height: math.unit(8, "feet"),
  55687. default: true
  55688. },
  55689. {
  55690. name: "Mini-macro",
  55691. height: math.unit(30, "feet")
  55692. },
  55693. {
  55694. name: "Macro",
  55695. height: math.unit(400, "feet")
  55696. },
  55697. {
  55698. name: "Mega-macro",
  55699. height: math.unit(6000, "feet")
  55700. },
  55701. ]
  55702. ))
  55703. characterMakers.push(() => makeCharacter(
  55704. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55705. {
  55706. front: {
  55707. height: math.unit(6 + 7/12, "feet"),
  55708. weight: math.unit(210, "lb"),
  55709. name: "Front",
  55710. image: {
  55711. source: "./media/characters/wilfred-t-buxton/front.svg",
  55712. extra: 1068/882,
  55713. bottom: 28/1096
  55714. }
  55715. },
  55716. },
  55717. [
  55718. {
  55719. name: "Normal",
  55720. height: math.unit(6 + 7/12, "feet"),
  55721. default: true
  55722. },
  55723. ]
  55724. ))
  55725. characterMakers.push(() => makeCharacter(
  55726. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55727. {
  55728. front: {
  55729. height: math.unit(5 + 2/12, "feet"),
  55730. weight: math.unit(120, "lb"),
  55731. name: "Front",
  55732. image: {
  55733. source: "./media/characters/leighton-marrow/front.svg",
  55734. extra: 441/409,
  55735. bottom: 37/478
  55736. }
  55737. },
  55738. },
  55739. [
  55740. {
  55741. name: "Normal",
  55742. height: math.unit(5 + 2/12, "feet"),
  55743. default: true
  55744. },
  55745. ]
  55746. ))
  55747. characterMakers.push(() => makeCharacter(
  55748. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55749. {
  55750. front: {
  55751. height: math.unit(4, "meters"),
  55752. weight: math.unit(1200, "kg"),
  55753. name: "Front",
  55754. image: {
  55755. source: "./media/characters/licos/front.svg",
  55756. extra: 1727/1604,
  55757. bottom: 101/1828
  55758. },
  55759. form: "anthro",
  55760. default: true
  55761. },
  55762. taur_side: {
  55763. height: math.unit(20, "meters"),
  55764. weight: math.unit(1100000, "kg"),
  55765. name: "Side",
  55766. image: {
  55767. source: "./media/characters/licos/taur.svg",
  55768. extra: 1158/1091,
  55769. bottom: 80/1238
  55770. },
  55771. form: "taur",
  55772. default: true
  55773. },
  55774. },
  55775. [
  55776. {
  55777. name: "Normal",
  55778. height: math.unit(4, "meters"),
  55779. default: true,
  55780. form: "anthro"
  55781. },
  55782. {
  55783. name: "Normal",
  55784. height: math.unit(20, "meters"),
  55785. default: true,
  55786. form: "taur"
  55787. },
  55788. ],
  55789. {
  55790. "anthro": {
  55791. name: "Anthro",
  55792. default: true
  55793. },
  55794. "taur": {
  55795. name: "Taur",
  55796. },
  55797. }
  55798. ))
  55799. characterMakers.push(() => makeCharacter(
  55800. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55801. {
  55802. front: {
  55803. height: math.unit(10 + 3/12, "feet"),
  55804. name: "Front",
  55805. image: {
  55806. source: "./media/characters/theo-monkey/front.svg",
  55807. extra: 1735/1658,
  55808. bottom: 73/1808
  55809. }
  55810. },
  55811. back: {
  55812. height: math.unit(10 + 3/12, "feet"),
  55813. name: "Back",
  55814. image: {
  55815. source: "./media/characters/theo-monkey/back.svg",
  55816. extra: 1742/1664,
  55817. bottom: 33/1775
  55818. }
  55819. },
  55820. head: {
  55821. height: math.unit(2.29, "feet"),
  55822. name: "Head",
  55823. image: {
  55824. source: "./media/characters/theo-monkey/head.svg"
  55825. }
  55826. },
  55827. handPalm: {
  55828. height: math.unit(1.73, "feet"),
  55829. name: "Hand (Palm)",
  55830. image: {
  55831. source: "./media/characters/theo-monkey/hand-palm.svg"
  55832. }
  55833. },
  55834. handBack: {
  55835. height: math.unit(1.63, "feet"),
  55836. name: "Hand (Back)",
  55837. image: {
  55838. source: "./media/characters/theo-monkey/hand-back.svg"
  55839. }
  55840. },
  55841. footSole: {
  55842. height: math.unit(2.15, "feet"),
  55843. name: "Foot (Sole)",
  55844. image: {
  55845. source: "./media/characters/theo-monkey/foot-sole.svg"
  55846. }
  55847. },
  55848. footSide: {
  55849. height: math.unit(1.6, "feet"),
  55850. name: "Foot (Side)",
  55851. image: {
  55852. source: "./media/characters/theo-monkey/foot-side.svg"
  55853. }
  55854. },
  55855. },
  55856. [
  55857. {
  55858. name: "Normal",
  55859. height: math.unit(10 + 3/12, "feet"),
  55860. default: true
  55861. },
  55862. ]
  55863. ))
  55864. characterMakers.push(() => makeCharacter(
  55865. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55866. {
  55867. front: {
  55868. height: math.unit(11, "feet"),
  55869. weight: math.unit(3000, "lb"),
  55870. preyCapacity: math.unit(10, "people"),
  55871. name: "Front",
  55872. image: {
  55873. source: "./media/characters/brook/front.svg",
  55874. extra: 909/835,
  55875. bottom: 108/1017
  55876. }
  55877. },
  55878. back: {
  55879. height: math.unit(11, "feet"),
  55880. weight: math.unit(3000, "lb"),
  55881. preyCapacity: math.unit(10, "people"),
  55882. name: "Back",
  55883. image: {
  55884. source: "./media/characters/brook/back.svg",
  55885. extra: 976/916,
  55886. bottom: 34/1010
  55887. }
  55888. },
  55889. backAlt: {
  55890. height: math.unit(11, "feet"),
  55891. weight: math.unit(3000, "lb"),
  55892. preyCapacity: math.unit(10, "people"),
  55893. name: "Back (Alt)",
  55894. image: {
  55895. source: "./media/characters/brook/back-alt.svg",
  55896. extra: 1283/1213,
  55897. bottom: 35/1318
  55898. }
  55899. },
  55900. bust: {
  55901. height: math.unit(9.0859030837, "feet"),
  55902. weight: math.unit(3000, "lb"),
  55903. preyCapacity: math.unit(10, "people"),
  55904. name: "Bust",
  55905. image: {
  55906. source: "./media/characters/brook/bust.svg",
  55907. extra: 2043/1923,
  55908. bottom: 0/2043
  55909. }
  55910. },
  55911. },
  55912. [
  55913. {
  55914. name: "Small",
  55915. height: math.unit(11, "feet"),
  55916. default: true
  55917. },
  55918. {
  55919. name: "Towering",
  55920. height: math.unit(5, "km")
  55921. },
  55922. {
  55923. name: "Enormous",
  55924. height: math.unit(25, "earths")
  55925. },
  55926. ]
  55927. ))
  55928. characterMakers.push(() => makeCharacter(
  55929. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55930. {
  55931. front: {
  55932. height: math.unit(4, "feet"),
  55933. weight: math.unit(150, "lb"),
  55934. name: "Front",
  55935. image: {
  55936. source: "./media/characters/squishi/front.svg",
  55937. extra: 1428/1271,
  55938. bottom: 30/1458
  55939. },
  55940. extraAttributes: {
  55941. "pawSize": {
  55942. name: "Paw Size",
  55943. power: 1,
  55944. type: "length",
  55945. base: math.unit(14, "ShoeSizeMensUS"),
  55946. defaultUnit: "ShoeSizeMensUS"
  55947. },
  55948. }
  55949. },
  55950. side: {
  55951. height: math.unit(4, "feet"),
  55952. weight: math.unit(150, "lb"),
  55953. name: "Side",
  55954. image: {
  55955. source: "./media/characters/squishi/side.svg",
  55956. extra: 1428/1271,
  55957. bottom: 30/1458
  55958. },
  55959. extraAttributes: {
  55960. "pawSize": {
  55961. name: "Paw Size",
  55962. power: 1,
  55963. type: "length",
  55964. base: math.unit(14, "ShoeSizeMensUS"),
  55965. defaultUnit: "ShoeSizeMensUS"
  55966. },
  55967. }
  55968. },
  55969. back: {
  55970. height: math.unit(4, "feet"),
  55971. weight: math.unit(150, "lb"),
  55972. name: "Back",
  55973. image: {
  55974. source: "./media/characters/squishi/back.svg",
  55975. extra: 1428/1271,
  55976. bottom: 30/1458
  55977. },
  55978. extraAttributes: {
  55979. "pawSize": {
  55980. name: "Paw Size",
  55981. power: 1,
  55982. type: "length",
  55983. base: math.unit(14, "ShoeSizeMensUS"),
  55984. defaultUnit: "ShoeSizeMensUS"
  55985. },
  55986. }
  55987. },
  55988. },
  55989. [
  55990. {
  55991. name: "Normal",
  55992. height: math.unit(4, "feet"),
  55993. default: true
  55994. },
  55995. ]
  55996. ))
  55997. characterMakers.push(() => makeCharacter(
  55998. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55999. {
  56000. front: {
  56001. height: math.unit(7 + 8/12, "feet"),
  56002. weight: math.unit(333, "lb"),
  56003. name: "Front",
  56004. image: {
  56005. source: "./media/characters/vincent-vasroc/front.svg",
  56006. extra: 1962/1860,
  56007. bottom: 41/2003
  56008. }
  56009. },
  56010. back: {
  56011. height: math.unit(7 + 8/12, "feet"),
  56012. weight: math.unit(333, "lb"),
  56013. name: "Back",
  56014. image: {
  56015. source: "./media/characters/vincent-vasroc/back.svg",
  56016. extra: 1952/1815,
  56017. bottom: 33/1985
  56018. }
  56019. },
  56020. paw: {
  56021. height: math.unit(1.24, "feet"),
  56022. name: "Paw",
  56023. image: {
  56024. source: "./media/characters/vincent-vasroc/paw.svg"
  56025. }
  56026. },
  56027. ear: {
  56028. height: math.unit(0.75, "feet"),
  56029. name: "Ear",
  56030. image: {
  56031. source: "./media/characters/vincent-vasroc/ear.svg"
  56032. }
  56033. },
  56034. },
  56035. [
  56036. {
  56037. name: "Nano",
  56038. height: math.unit(92, "micrometers")
  56039. },
  56040. {
  56041. name: "Normal",
  56042. height: math.unit(7 + 8/12, "feet"),
  56043. default: true
  56044. },
  56045. ]
  56046. ))
  56047. characterMakers.push(() => makeCharacter(
  56048. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56049. {
  56050. frontNsfw: {
  56051. height: math.unit(40, "feet"),
  56052. weight: math.unit(58, "tons"),
  56053. name: "Front (NSFW)",
  56054. image: {
  56055. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56056. extra: 1265/965,
  56057. bottom: 155/1420
  56058. }
  56059. },
  56060. frontSfw: {
  56061. height: math.unit(40, "feet"),
  56062. weight: math.unit(58, "tons"),
  56063. name: "Front (SFW)",
  56064. image: {
  56065. source: "./media/characters/ru-kahn/front-sfw.svg",
  56066. extra: 1265/965,
  56067. bottom: 80/1345
  56068. }
  56069. },
  56070. },
  56071. [
  56072. {
  56073. name: "Small",
  56074. height: math.unit(4, "feet")
  56075. },
  56076. {
  56077. name: "Normal",
  56078. height: math.unit(40, "feet"),
  56079. default: true
  56080. },
  56081. {
  56082. name: "Macro",
  56083. height: math.unit(400, "feet")
  56084. },
  56085. ]
  56086. ))
  56087. characterMakers.push(() => makeCharacter(
  56088. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56089. {
  56090. frontNude: {
  56091. height: math.unit(6 + 5/12, "feet"),
  56092. name: "Front (Nude)",
  56093. image: {
  56094. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56095. extra: 1369/1366,
  56096. bottom: 68/1437
  56097. }
  56098. },
  56099. frontDressed: {
  56100. height: math.unit(6 + 5/12, "feet"),
  56101. name: "Front (Dressed)",
  56102. image: {
  56103. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56104. extra: 1369/1366,
  56105. bottom: 68/1437
  56106. }
  56107. },
  56108. },
  56109. [
  56110. {
  56111. name: "Normal",
  56112. height: math.unit(6 + 5/12, "feet"),
  56113. default: true
  56114. },
  56115. {
  56116. name: "Maximum",
  56117. height: math.unit(1930, "feet")
  56118. },
  56119. ]
  56120. ))
  56121. characterMakers.push(() => makeCharacter(
  56122. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56123. {
  56124. front: {
  56125. height: math.unit(5 + 6/12, "feet"),
  56126. name: "Front",
  56127. image: {
  56128. source: "./media/characters/kaja/front.svg",
  56129. extra: 1874/1514,
  56130. bottom: 117/1991
  56131. }
  56132. },
  56133. },
  56134. [
  56135. {
  56136. name: "Normal",
  56137. height: math.unit(5 + 6/12, "feet"),
  56138. default: true
  56139. },
  56140. ]
  56141. ))
  56142. characterMakers.push(() => makeCharacter(
  56143. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56144. {
  56145. front: {
  56146. height: math.unit(5 + 9/12, "feet"),
  56147. weight: math.unit(200, "lb"),
  56148. name: "Front",
  56149. image: {
  56150. source: "./media/characters/mark-smith/front.svg",
  56151. extra: 1004/943,
  56152. bottom: 58/1062
  56153. }
  56154. },
  56155. back: {
  56156. height: math.unit(5 + 9/12, "feet"),
  56157. weight: math.unit(200, "lb"),
  56158. name: "Back",
  56159. image: {
  56160. source: "./media/characters/mark-smith/back.svg",
  56161. extra: 1023/953,
  56162. bottom: 24/1047
  56163. }
  56164. },
  56165. head: {
  56166. height: math.unit(1.82, "feet"),
  56167. name: "Head",
  56168. image: {
  56169. source: "./media/characters/mark-smith/head.svg"
  56170. }
  56171. },
  56172. hand: {
  56173. height: math.unit(1.4, "feet"),
  56174. name: "Hand",
  56175. image: {
  56176. source: "./media/characters/mark-smith/hand.svg"
  56177. }
  56178. },
  56179. paw: {
  56180. height: math.unit(1.69, "feet"),
  56181. name: "Paw",
  56182. image: {
  56183. source: "./media/characters/mark-smith/paw.svg"
  56184. }
  56185. },
  56186. },
  56187. [
  56188. {
  56189. name: "Micro",
  56190. height: math.unit(0.25, "inches")
  56191. },
  56192. {
  56193. name: "Normal",
  56194. height: math.unit(5 + 9/12, "feet"),
  56195. default: true
  56196. },
  56197. {
  56198. name: "Macro",
  56199. height: math.unit(500, "feet")
  56200. },
  56201. ]
  56202. ))
  56203. characterMakers.push(() => makeCharacter(
  56204. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56205. {
  56206. frontNude: {
  56207. height: math.unit(6, "feet"),
  56208. name: "Front (Nude)",
  56209. image: {
  56210. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56211. extra: 1384/1321,
  56212. bottom: 57/1441
  56213. }
  56214. },
  56215. frontDressed: {
  56216. height: math.unit(6, "feet"),
  56217. name: "Front (Dressed)",
  56218. image: {
  56219. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56220. extra: 1384/1321,
  56221. bottom: 57/1441
  56222. }
  56223. },
  56224. },
  56225. [
  56226. {
  56227. name: "Normal",
  56228. height: math.unit(6, "feet"),
  56229. default: true
  56230. },
  56231. {
  56232. name: "Maximum",
  56233. height: math.unit(1776, "feet")
  56234. },
  56235. ]
  56236. ))
  56237. characterMakers.push(() => makeCharacter(
  56238. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56239. {
  56240. front: {
  56241. height: math.unit(2 + 4/12, "feet"),
  56242. weight: math.unit(350, "lb"),
  56243. name: "Front",
  56244. image: {
  56245. source: "./media/characters/devos/front.svg",
  56246. extra: 958/852,
  56247. bottom: 143/1101
  56248. }
  56249. },
  56250. },
  56251. [
  56252. {
  56253. name: "Base",
  56254. height: math.unit(2 + 4/12, "feet"),
  56255. default: true
  56256. },
  56257. ]
  56258. ))
  56259. characterMakers.push(() => makeCharacter(
  56260. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56261. {
  56262. front: {
  56263. height: math.unit(9 + 2/12, "feet"),
  56264. name: "Front",
  56265. image: {
  56266. source: "./media/characters/hiveheart/front.svg",
  56267. extra: 394/364,
  56268. bottom: 65/459
  56269. }
  56270. },
  56271. back: {
  56272. height: math.unit(9 + 2/12, "feet"),
  56273. name: "Back",
  56274. image: {
  56275. source: "./media/characters/hiveheart/back.svg",
  56276. extra: 374/357,
  56277. bottom: 63/437
  56278. }
  56279. },
  56280. },
  56281. [
  56282. {
  56283. name: "Base",
  56284. height: math.unit(9 + 2/12, "feet"),
  56285. default: true
  56286. },
  56287. ]
  56288. ))
  56289. characterMakers.push(() => makeCharacter(
  56290. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56291. {
  56292. front: {
  56293. height: math.unit(2.5, "inches"),
  56294. weight: math.unit(0.6, "oz"),
  56295. name: "Front",
  56296. image: {
  56297. source: "./media/characters/bryn/front.svg",
  56298. extra: 1480/1205,
  56299. bottom: 27/1507
  56300. }
  56301. },
  56302. back: {
  56303. height: math.unit(2.5, "inches"),
  56304. weight: math.unit(0.6, "oz"),
  56305. name: "Back",
  56306. image: {
  56307. source: "./media/characters/bryn/back.svg",
  56308. extra: 1475/1201,
  56309. bottom: 39/1514
  56310. }
  56311. },
  56312. foot: {
  56313. height: math.unit(0.4, "inches"),
  56314. name: "Foot",
  56315. image: {
  56316. source: "./media/characters/bryn/foot.svg"
  56317. }
  56318. },
  56319. },
  56320. [
  56321. {
  56322. name: "Normal",
  56323. height: math.unit(2.5, "inches"),
  56324. default: true
  56325. },
  56326. ]
  56327. ))
  56328. characterMakers.push(() => makeCharacter(
  56329. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56330. {
  56331. side: {
  56332. height: math.unit(7, "feet"),
  56333. weight: math.unit(657, "kg"),
  56334. name: "Side",
  56335. image: {
  56336. source: "./media/characters/delta/side.svg",
  56337. extra: 781/212,
  56338. bottom: 7/788
  56339. },
  56340. extraAttributes: {
  56341. "wingspan": {
  56342. name: "Wingspan",
  56343. power: 1,
  56344. type: "length",
  56345. base: math.unit(48, "feet")
  56346. },
  56347. "length": {
  56348. name: "Length",
  56349. power: 1,
  56350. type: "length",
  56351. base: math.unit(21, "feet")
  56352. },
  56353. "pawSize": {
  56354. name: "Paw Size",
  56355. power: 2,
  56356. type: "area",
  56357. base: math.unit(1.5*1.4, "feet^2")
  56358. },
  56359. }
  56360. },
  56361. },
  56362. [
  56363. {
  56364. name: "Normal",
  56365. height: math.unit(6, "feet"),
  56366. default: true
  56367. },
  56368. ]
  56369. ))
  56370. characterMakers.push(() => makeCharacter(
  56371. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56372. {
  56373. front: {
  56374. height: math.unit(6, "feet"),
  56375. name: "Front",
  56376. image: {
  56377. source: "./media/characters/pyrow/front.svg",
  56378. extra: 513/486,
  56379. bottom: 14/527
  56380. }
  56381. },
  56382. frontWing: {
  56383. height: math.unit(6, "feet"),
  56384. name: "Front (Wing)",
  56385. image: {
  56386. source: "./media/characters/pyrow/front-wing.svg",
  56387. extra: 539/383,
  56388. bottom: 20/559
  56389. }
  56390. },
  56391. back: {
  56392. height: math.unit(6, "feet"),
  56393. name: "Back",
  56394. image: {
  56395. source: "./media/characters/pyrow/back.svg",
  56396. extra: 500/473,
  56397. bottom: 9/509
  56398. }
  56399. },
  56400. },
  56401. [
  56402. {
  56403. name: "Normal",
  56404. height: math.unit(6, "feet"),
  56405. default: true
  56406. },
  56407. ]
  56408. ))
  56409. characterMakers.push(() => makeCharacter(
  56410. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56411. {
  56412. front: {
  56413. height: math.unit(5, "meters"),
  56414. weight: math.unit(3, "tonnes"),
  56415. name: "Front",
  56416. image: {
  56417. source: "./media/characters/velikan/front.svg",
  56418. extra: 867/744,
  56419. bottom: 71/938
  56420. },
  56421. extraAttributes: {
  56422. "shoeSize": {
  56423. name: "Shoe Size",
  56424. power: 1,
  56425. type: "length",
  56426. base: math.unit(135, "ShoeSizeUK"),
  56427. defaultUnit: "ShoeSizeUK"
  56428. },
  56429. }
  56430. },
  56431. },
  56432. [
  56433. {
  56434. name: "Normal",
  56435. height: math.unit(5, "meters"),
  56436. default: true
  56437. },
  56438. {
  56439. name: "Macro",
  56440. height: math.unit(1, "km")
  56441. },
  56442. {
  56443. name: "Mega Macro",
  56444. height: math.unit(100, "km")
  56445. },
  56446. {
  56447. name: "Giga Macro",
  56448. height: math.unit(2, "megameters")
  56449. },
  56450. {
  56451. name: "Planetary",
  56452. height: math.unit(22, "megameters")
  56453. },
  56454. {
  56455. name: "Solar",
  56456. height: math.unit(8, "gigameters")
  56457. },
  56458. {
  56459. name: "Cosmic",
  56460. height: math.unit(10, "zettameters")
  56461. },
  56462. {
  56463. name: "Omni",
  56464. height: math.unit(9e260, "multiverses")
  56465. },
  56466. ]
  56467. ))
  56468. characterMakers.push(() => makeCharacter(
  56469. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56470. {
  56471. front: {
  56472. height: math.unit(4 + 3/12, "feet"),
  56473. weight: math.unit(90, "lb"),
  56474. name: "Front",
  56475. image: {
  56476. source: "./media/characters/sabiki/front.svg",
  56477. extra: 1662/1423,
  56478. bottom: 65/1727
  56479. }
  56480. },
  56481. },
  56482. [
  56483. {
  56484. name: "Normal",
  56485. height: math.unit(4 + 3/12, "feet"),
  56486. default: true
  56487. },
  56488. ]
  56489. ))
  56490. characterMakers.push(() => makeCharacter(
  56491. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56492. {
  56493. frontSfw: {
  56494. height: math.unit(2, "mm"),
  56495. name: "Front (SFW)",
  56496. image: {
  56497. source: "./media/characters/carmel/front-sfw.svg",
  56498. extra: 1131/1006,
  56499. bottom: 66/1197
  56500. }
  56501. },
  56502. frontNsfw: {
  56503. height: math.unit(2, "mm"),
  56504. name: "Front (NSFW)",
  56505. image: {
  56506. source: "./media/characters/carmel/front-nsfw.svg",
  56507. extra: 1131/1006,
  56508. bottom: 66/1197
  56509. }
  56510. },
  56511. foot: {
  56512. height: math.unit(0.3, "mm"),
  56513. name: "Foot",
  56514. image: {
  56515. source: "./media/characters/carmel/foot.svg"
  56516. }
  56517. },
  56518. tongue: {
  56519. height: math.unit(0.71, "mm"),
  56520. name: "Tongue",
  56521. image: {
  56522. source: "./media/characters/carmel/tongue.svg"
  56523. }
  56524. },
  56525. dick: {
  56526. height: math.unit(0.085, "mm"),
  56527. name: "Dick",
  56528. image: {
  56529. source: "./media/characters/carmel/dick.svg"
  56530. }
  56531. },
  56532. },
  56533. [
  56534. {
  56535. name: "Micro",
  56536. height: math.unit(2, "mm"),
  56537. default: true
  56538. },
  56539. {
  56540. name: "Normal",
  56541. height: math.unit(4 + 8/12, "feet")
  56542. },
  56543. {
  56544. name: "Mega Macro",
  56545. height: math.unit(250, "feet")
  56546. },
  56547. {
  56548. name: "BIGGER",
  56549. height: math.unit(1000, "feet")
  56550. },
  56551. {
  56552. name: "BIGGEST",
  56553. height: math.unit(2, "miles")
  56554. },
  56555. ]
  56556. ))
  56557. characterMakers.push(() => makeCharacter(
  56558. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56559. {
  56560. front: {
  56561. height: math.unit(6.5, "feet"),
  56562. weight: math.unit(198, "lb"),
  56563. name: "Front",
  56564. image: {
  56565. source: "./media/characters/tamani/anthro.svg",
  56566. extra: 930/890,
  56567. bottom: 34/964
  56568. },
  56569. form: "anthro",
  56570. default: true
  56571. },
  56572. side: {
  56573. height: math.unit(6, "feet"),
  56574. weight: math.unit(198*2, "lb"),
  56575. name: "Side",
  56576. image: {
  56577. source: "./media/characters/tamani/feral.svg",
  56578. extra: 559/519,
  56579. bottom: 43/602
  56580. },
  56581. form: "feral"
  56582. },
  56583. },
  56584. [
  56585. {
  56586. name: "Normal",
  56587. height: math.unit(6.5, "feet"),
  56588. default: true,
  56589. form: "anthro"
  56590. },
  56591. {
  56592. name: "Normal",
  56593. height: math.unit(6, "feet"),
  56594. default: true,
  56595. form: "feral"
  56596. },
  56597. ],
  56598. {
  56599. "anthro": {
  56600. name: "Anthro",
  56601. default: true
  56602. },
  56603. "feral": {
  56604. name: "Feral",
  56605. },
  56606. }
  56607. ))
  56608. characterMakers.push(() => makeCharacter(
  56609. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56610. {
  56611. front: {
  56612. height: math.unit(4 + 1/12, "feet"),
  56613. weight: math.unit(114, "lb"),
  56614. name: "Front",
  56615. image: {
  56616. source: "./media/characters/dex/front.svg",
  56617. extra: 787/680,
  56618. bottom: 18/805
  56619. }
  56620. },
  56621. side: {
  56622. height: math.unit(4 + 1/12, "feet"),
  56623. weight: math.unit(114, "lb"),
  56624. name: "Side",
  56625. image: {
  56626. source: "./media/characters/dex/side.svg",
  56627. extra: 785/680,
  56628. bottom: 12/797
  56629. }
  56630. },
  56631. back: {
  56632. height: math.unit(4 + 1/12, "feet"),
  56633. weight: math.unit(114, "lb"),
  56634. name: "Back",
  56635. image: {
  56636. source: "./media/characters/dex/back.svg",
  56637. extra: 785/681,
  56638. bottom: 17/802
  56639. }
  56640. },
  56641. loungewear: {
  56642. height: math.unit(4 + 1/12, "feet"),
  56643. weight: math.unit(114, "lb"),
  56644. name: "Loungewear",
  56645. image: {
  56646. source: "./media/characters/dex/loungewear.svg",
  56647. extra: 787/680,
  56648. bottom: 18/805
  56649. }
  56650. },
  56651. workout: {
  56652. height: math.unit(4 + 1/12, "feet"),
  56653. weight: math.unit(114, "lb"),
  56654. name: "Workout",
  56655. image: {
  56656. source: "./media/characters/dex/workout.svg",
  56657. extra: 787/680,
  56658. bottom: 18/805
  56659. }
  56660. },
  56661. schoolUniform: {
  56662. height: math.unit(4 + 1/12, "feet"),
  56663. weight: math.unit(114, "lb"),
  56664. name: "School-uniform",
  56665. image: {
  56666. source: "./media/characters/dex/school-uniform.svg",
  56667. extra: 787/680,
  56668. bottom: 18/805
  56669. }
  56670. },
  56671. maw: {
  56672. height: math.unit(0.55, "feet"),
  56673. name: "Maw",
  56674. image: {
  56675. source: "./media/characters/dex/maw.svg"
  56676. }
  56677. },
  56678. paw: {
  56679. height: math.unit(0.87, "feet"),
  56680. name: "Paw",
  56681. image: {
  56682. source: "./media/characters/dex/paw.svg"
  56683. }
  56684. },
  56685. bust: {
  56686. height: math.unit(1.67, "feet"),
  56687. name: "Bust",
  56688. image: {
  56689. source: "./media/characters/dex/bust.svg"
  56690. }
  56691. },
  56692. },
  56693. [
  56694. {
  56695. name: "Normal",
  56696. height: math.unit(4 + 1/12, "feet"),
  56697. default: true
  56698. },
  56699. ]
  56700. ))
  56701. characterMakers.push(() => makeCharacter(
  56702. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56703. {
  56704. front: {
  56705. height: math.unit(4 + 3/12, "feet"),
  56706. weight: math.unit(60, "lb"),
  56707. name: "Front",
  56708. image: {
  56709. source: "./media/characters/silke/front.svg",
  56710. extra: 1334/1122,
  56711. bottom: 21/1355
  56712. }
  56713. },
  56714. back: {
  56715. height: math.unit(4 + 3/12, "feet"),
  56716. weight: math.unit(60, "lb"),
  56717. name: "Back",
  56718. image: {
  56719. source: "./media/characters/silke/back.svg",
  56720. extra: 1328/1092,
  56721. bottom: 16/1344
  56722. }
  56723. },
  56724. dressed: {
  56725. height: math.unit(4 + 3/12, "feet"),
  56726. weight: math.unit(60, "lb"),
  56727. name: "Dressed",
  56728. image: {
  56729. source: "./media/characters/silke/dressed.svg",
  56730. extra: 1334/1122,
  56731. bottom: 43/1377
  56732. }
  56733. },
  56734. },
  56735. [
  56736. {
  56737. name: "Normal",
  56738. height: math.unit(4 + 3/12, "feet"),
  56739. default: true
  56740. },
  56741. ]
  56742. ))
  56743. characterMakers.push(() => makeCharacter(
  56744. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56745. {
  56746. front: {
  56747. height: math.unit(1.58, "meters"),
  56748. weight: math.unit(47, "kg"),
  56749. name: "Front",
  56750. image: {
  56751. source: "./media/characters/wireshark/front.svg",
  56752. extra: 883/838,
  56753. bottom: 66/949
  56754. }
  56755. },
  56756. },
  56757. [
  56758. {
  56759. name: "Normal",
  56760. height: math.unit(1.58, "meters"),
  56761. default: true
  56762. },
  56763. ]
  56764. ))
  56765. characterMakers.push(() => makeCharacter(
  56766. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56767. {
  56768. front: {
  56769. height: math.unit(6, "meters"),
  56770. weight: math.unit(15000, "kg"),
  56771. name: "Front",
  56772. image: {
  56773. source: "./media/characters/gallagher/front.svg",
  56774. extra: 532/493,
  56775. bottom: 0/532
  56776. }
  56777. },
  56778. },
  56779. [
  56780. {
  56781. name: "Normal",
  56782. height: math.unit(6, "meters"),
  56783. default: true
  56784. },
  56785. ]
  56786. ))
  56787. characterMakers.push(() => makeCharacter(
  56788. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56789. {
  56790. front: {
  56791. height: math.unit(2.4, "meters"),
  56792. weight: math.unit(270, "kg"),
  56793. name: "Front",
  56794. image: {
  56795. source: "./media/characters/alice/front.svg",
  56796. extra: 950/900,
  56797. bottom: 36/986
  56798. }
  56799. },
  56800. side: {
  56801. height: math.unit(2.4, "meters"),
  56802. weight: math.unit(270, "kg"),
  56803. name: "Side",
  56804. image: {
  56805. source: "./media/characters/alice/side.svg",
  56806. extra: 921/876,
  56807. bottom: 19/940
  56808. }
  56809. },
  56810. dressed: {
  56811. height: math.unit(2.4, "meters"),
  56812. weight: math.unit(270, "kg"),
  56813. name: "Dressed",
  56814. image: {
  56815. source: "./media/characters/alice/dressed.svg",
  56816. extra: 905/850,
  56817. bottom: 81/986
  56818. }
  56819. },
  56820. fishnet: {
  56821. height: math.unit(2.4, "meters"),
  56822. weight: math.unit(270, "kg"),
  56823. name: "Fishnet",
  56824. image: {
  56825. source: "./media/characters/alice/fishnet.svg",
  56826. extra: 905/850,
  56827. bottom: 81/986
  56828. }
  56829. },
  56830. },
  56831. [
  56832. {
  56833. name: "Normal",
  56834. height: math.unit(2.4, "meters"),
  56835. default: true
  56836. },
  56837. ]
  56838. ))
  56839. characterMakers.push(() => makeCharacter(
  56840. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56841. {
  56842. front: {
  56843. height: math.unit(175.25, "feet"),
  56844. name: "Front",
  56845. image: {
  56846. source: "./media/characters/fio/front.svg",
  56847. extra: 1883/1591,
  56848. bottom: 34/1917
  56849. }
  56850. },
  56851. },
  56852. [
  56853. {
  56854. name: "Normal",
  56855. height: math.unit(175.25, "cm"),
  56856. default: true
  56857. },
  56858. ]
  56859. ))
  56860. characterMakers.push(() => makeCharacter(
  56861. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56862. {
  56863. side: {
  56864. height: math.unit(6, "meters"),
  56865. weight: math.unit(3400, "kg"),
  56866. preyCapacity: math.unit(1700, "liters"),
  56867. name: "Side",
  56868. image: {
  56869. source: "./media/characters/hass/side.svg",
  56870. extra: 1058/997,
  56871. bottom: 177/1235
  56872. }
  56873. },
  56874. feeding: {
  56875. height: math.unit(6*0.63, "meters"),
  56876. weight: math.unit(3400, "kg"),
  56877. preyCapacity: math.unit(1700, "liters"),
  56878. name: "Feeding",
  56879. image: {
  56880. source: "./media/characters/hass/feeding.svg",
  56881. extra: 689/579,
  56882. bottom: 146/835
  56883. }
  56884. },
  56885. guts: {
  56886. height: math.unit(6, "meters"),
  56887. weight: math.unit(3400, "kg"),
  56888. name: "Guts",
  56889. image: {
  56890. source: "./media/characters/hass/guts.svg",
  56891. extra: 1223/1198,
  56892. bottom: 182/1405
  56893. }
  56894. },
  56895. dickFront: {
  56896. height: math.unit(1.4, "meters"),
  56897. name: "Dick (Front)",
  56898. image: {
  56899. source: "./media/characters/hass/dick-front.svg"
  56900. }
  56901. },
  56902. dickSide: {
  56903. height: math.unit(1.3, "meters"),
  56904. name: "Dick (Side)",
  56905. image: {
  56906. source: "./media/characters/hass/dick-side.svg"
  56907. }
  56908. },
  56909. dickBack: {
  56910. height: math.unit(1.4, "meters"),
  56911. name: "Dick (Back)",
  56912. image: {
  56913. source: "./media/characters/hass/dick-back.svg"
  56914. }
  56915. },
  56916. },
  56917. [
  56918. {
  56919. name: "Normal",
  56920. height: math.unit(6, "meters"),
  56921. default: true
  56922. },
  56923. ]
  56924. ))
  56925. characterMakers.push(() => makeCharacter(
  56926. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56927. {
  56928. front: {
  56929. height: math.unit(4, "feet"),
  56930. weight: math.unit(60, "lb"),
  56931. name: "Front",
  56932. image: {
  56933. source: "./media/characters/hickory-finnegan/front.svg",
  56934. extra: 444/411,
  56935. bottom: 10/454
  56936. }
  56937. },
  56938. side: {
  56939. height: math.unit(4, "feet"),
  56940. weight: math.unit(60, "lb"),
  56941. name: "Side",
  56942. image: {
  56943. source: "./media/characters/hickory-finnegan/side.svg",
  56944. extra: 444/411,
  56945. bottom: 10/454
  56946. }
  56947. },
  56948. back: {
  56949. height: math.unit(4, "feet"),
  56950. weight: math.unit(60, "lb"),
  56951. name: "Back",
  56952. image: {
  56953. source: "./media/characters/hickory-finnegan/back.svg",
  56954. extra: 444/411,
  56955. bottom: 10/454
  56956. }
  56957. },
  56958. },
  56959. [
  56960. {
  56961. name: "Normal",
  56962. height: math.unit(4, "feet"),
  56963. default: true
  56964. },
  56965. ]
  56966. ))
  56967. characterMakers.push(() => makeCharacter(
  56968. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56969. {
  56970. snivy_front: {
  56971. height: math.unit(2, "feet"),
  56972. weight: math.unit(17.9, "lb"),
  56973. name: "Front",
  56974. image: {
  56975. source: "./media/characters/robin-phox/snivy-front.svg",
  56976. extra: 569/504,
  56977. bottom: 33/602
  56978. },
  56979. form: "snivy",
  56980. default: true
  56981. },
  56982. snivy_frontNsfw: {
  56983. height: math.unit(2, "feet"),
  56984. weight: math.unit(17.9, "lb"),
  56985. name: "Front (NSFW)",
  56986. image: {
  56987. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56988. extra: 569/504,
  56989. bottom: 33/602
  56990. },
  56991. form: "snivy",
  56992. },
  56993. snivy_back: {
  56994. height: math.unit(2, "feet"),
  56995. weight: math.unit(17.9, "lb"),
  56996. name: "Back",
  56997. image: {
  56998. source: "./media/characters/robin-phox/snivy-back.svg",
  56999. extra: 577/508,
  57000. bottom: 21/598
  57001. },
  57002. form: "snivy",
  57003. },
  57004. snivy_foot: {
  57005. height: math.unit(0.68, "feet"),
  57006. name: "Foot",
  57007. image: {
  57008. source: "./media/characters/robin-phox/snivy-foot.svg"
  57009. },
  57010. form: "snivy",
  57011. },
  57012. snivy_sole: {
  57013. height: math.unit(0.68, "feet"),
  57014. name: "Sole",
  57015. image: {
  57016. source: "./media/characters/robin-phox/snivy-sole.svg"
  57017. },
  57018. form: "snivy",
  57019. },
  57020. yoshi_front: {
  57021. height: math.unit(6, "feet"),
  57022. weight: math.unit(150, "lb"),
  57023. name: "Front",
  57024. image: {
  57025. source: "./media/characters/robin-phox/yoshi-front.svg",
  57026. extra: 890/792,
  57027. bottom: 29/919
  57028. },
  57029. form: "yoshi",
  57030. default: true
  57031. },
  57032. yoshi_frontNsfw: {
  57033. height: math.unit(6, "feet"),
  57034. weight: math.unit(150, "lb"),
  57035. name: "Front (NSFW)",
  57036. image: {
  57037. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57038. extra: 890/792,
  57039. bottom: 29/919
  57040. },
  57041. form: "yoshi",
  57042. },
  57043. yoshi_back: {
  57044. height: math.unit(6, "feet"),
  57045. weight: math.unit(150, "lb"),
  57046. name: "Back",
  57047. image: {
  57048. source: "./media/characters/robin-phox/yoshi-back.svg",
  57049. extra: 890/792,
  57050. bottom: 29/919
  57051. },
  57052. form: "yoshi",
  57053. },
  57054. yoshi_foot: {
  57055. height: math.unit(1.5, "feet"),
  57056. name: "Foot",
  57057. image: {
  57058. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57059. },
  57060. form: "yoshi",
  57061. },
  57062. delphox_front: {
  57063. height: math.unit(4 + 11/12, "feet"),
  57064. weight: math.unit(86, "lb"),
  57065. name: "Front",
  57066. image: {
  57067. source: "./media/characters/robin-phox/delphox-front.svg",
  57068. extra: 1266/1069,
  57069. bottom: 32/1298
  57070. },
  57071. form: "delphox",
  57072. default: true
  57073. },
  57074. delphox_frontNsfw: {
  57075. height: math.unit(4 + 11/12, "feet"),
  57076. weight: math.unit(86, "lb"),
  57077. name: "Front (NSFW)",
  57078. image: {
  57079. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57080. extra: 1266/1069,
  57081. bottom: 32/1298
  57082. },
  57083. form: "delphox",
  57084. },
  57085. delphox_back: {
  57086. height: math.unit(4 + 11/12, "feet"),
  57087. weight: math.unit(86, "lb"),
  57088. name: "Back",
  57089. image: {
  57090. source: "./media/characters/robin-phox/delphox-back.svg",
  57091. extra: 1269/1083,
  57092. bottom: 15/1284
  57093. },
  57094. form: "delphox",
  57095. },
  57096. mienshao_front: {
  57097. height: math.unit(4 + 7/12, "feet"),
  57098. weight: math.unit(78.3, "lb"),
  57099. name: "Front",
  57100. image: {
  57101. source: "./media/characters/robin-phox/mienshao-front.svg",
  57102. extra: 1052/970,
  57103. bottom: 108/1160
  57104. },
  57105. form: "mienshao",
  57106. default: true
  57107. },
  57108. mienshao_frontNsfw: {
  57109. height: math.unit(4 + 7/12, "feet"),
  57110. weight: math.unit(78.3, "lb"),
  57111. name: "Front (NSFW)",
  57112. image: {
  57113. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57114. extra: 1052/970,
  57115. bottom: 108/1160
  57116. },
  57117. form: "mienshao",
  57118. },
  57119. mienshao_back: {
  57120. height: math.unit(4 + 7/12, "feet"),
  57121. weight: math.unit(78.3, "lb"),
  57122. name: "Back",
  57123. image: {
  57124. source: "./media/characters/robin-phox/mienshao-back.svg",
  57125. extra: 1102/982,
  57126. bottom: 32/1134
  57127. },
  57128. form: "mienshao",
  57129. },
  57130. inteleon_front: {
  57131. height: math.unit(6 + 3/12, "feet"),
  57132. weight: math.unit(99.6, "lb"),
  57133. name: "Front",
  57134. image: {
  57135. source: "./media/characters/robin-phox/inteleon-front.svg",
  57136. extra: 910/799,
  57137. bottom: 76/986
  57138. },
  57139. form: "inteleon",
  57140. default: true
  57141. },
  57142. inteleon_frontNsfw: {
  57143. height: math.unit(6 + 3/12, "feet"),
  57144. weight: math.unit(99.6, "lb"),
  57145. name: "Front (NSFW)",
  57146. image: {
  57147. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57148. extra: 910/799,
  57149. bottom: 76/986
  57150. },
  57151. form: "inteleon",
  57152. },
  57153. inteleon_back: {
  57154. height: math.unit(6 + 3/12, "feet"),
  57155. weight: math.unit(99.6, "lb"),
  57156. name: "Back",
  57157. image: {
  57158. source: "./media/characters/robin-phox/inteleon-back.svg",
  57159. extra: 907/796,
  57160. bottom: 25/932
  57161. },
  57162. form: "inteleon",
  57163. },
  57164. reshiram_front: {
  57165. height: math.unit(10 + 6/12, "feet"),
  57166. weight: math.unit(727.5, "lb"),
  57167. name: "Front",
  57168. image: {
  57169. source: "./media/characters/robin-phox/reshiram-front.svg",
  57170. extra: 1198/940,
  57171. bottom: 123/1321
  57172. },
  57173. form: "reshiram",
  57174. },
  57175. reshiram_frontNsfw: {
  57176. height: math.unit(10 + 6/12, "feet"),
  57177. weight: math.unit(727.5, "lb"),
  57178. name: "Front-nsfw",
  57179. image: {
  57180. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57181. extra: 1198/940,
  57182. bottom: 123/1321
  57183. },
  57184. form: "reshiram",
  57185. },
  57186. reshiram_back: {
  57187. height: math.unit(10 + 6/12, "feet"),
  57188. weight: math.unit(727.5, "lb"),
  57189. name: "Back",
  57190. image: {
  57191. source: "./media/characters/robin-phox/reshiram-back.svg",
  57192. extra: 1024/904,
  57193. bottom: 85/1109
  57194. },
  57195. form: "reshiram",
  57196. },
  57197. samurott_front: {
  57198. height: math.unit(8, "feet"),
  57199. weight: math.unit(208.6, "lb"),
  57200. name: "Front",
  57201. image: {
  57202. source: "./media/characters/robin-phox/samurott-front.svg",
  57203. extra: 1048/984,
  57204. bottom: 100/1148
  57205. },
  57206. form: "samurott",
  57207. },
  57208. samurott_frontNsfw: {
  57209. height: math.unit(8, "feet"),
  57210. weight: math.unit(208.6, "lb"),
  57211. name: "Front-nsfw",
  57212. image: {
  57213. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57214. extra: 1048/984,
  57215. bottom: 100/1148
  57216. },
  57217. form: "samurott",
  57218. },
  57219. samurott_back: {
  57220. height: math.unit(8, "feet"),
  57221. weight: math.unit(208.6, "lb"),
  57222. name: "Back",
  57223. image: {
  57224. source: "./media/characters/robin-phox/samurott-back.svg",
  57225. extra: 1110/1042,
  57226. bottom: 12/1122
  57227. },
  57228. form: "samurott",
  57229. },
  57230. samurott_feral: {
  57231. height: math.unit(4 + 11/12, "feet"),
  57232. weight: math.unit(208.6, "lb"),
  57233. name: "Feral",
  57234. image: {
  57235. source: "./media/characters/robin-phox/samurott-feral.svg",
  57236. extra: 766/681,
  57237. bottom: 108/874
  57238. },
  57239. form: "samurott",
  57240. },
  57241. },
  57242. [
  57243. {
  57244. name: "Normal",
  57245. height: math.unit(2, "feet"),
  57246. default: true,
  57247. form: "snivy"
  57248. },
  57249. {
  57250. name: "Normal",
  57251. height: math.unit(6, "feet"),
  57252. default: true,
  57253. form: "yoshi"
  57254. },
  57255. {
  57256. name: "Normal",
  57257. height: math.unit(4 + 11/12, "feet"),
  57258. default: true,
  57259. form: "delphox"
  57260. },
  57261. {
  57262. name: "Normal",
  57263. height: math.unit(4 + 7/12, "feet"),
  57264. default: true,
  57265. form: "mienshao"
  57266. },
  57267. {
  57268. name: "Normal",
  57269. height: math.unit(6 + 3/12, "feet"),
  57270. default: true,
  57271. form: "inteleon"
  57272. },
  57273. {
  57274. name: "Normal",
  57275. height: math.unit(10 + 6/12, "feet"),
  57276. default: true,
  57277. form: "reshiram"
  57278. },
  57279. {
  57280. name: "Normal",
  57281. height: math.unit(8, "feet"),
  57282. default: true,
  57283. form: "samurott"
  57284. },
  57285. {
  57286. name: "Macro",
  57287. height: math.unit(500, "feet"),
  57288. allForms: true
  57289. },
  57290. {
  57291. name: "Mega Macro",
  57292. height: math.unit(10, "earths"),
  57293. allForms: true
  57294. },
  57295. {
  57296. name: "Giga Macro",
  57297. height: math.unit(1, "galaxy"),
  57298. allForms: true
  57299. },
  57300. {
  57301. name: "Godly Macro",
  57302. height: math.unit(1e10, "multiverses"),
  57303. allForms: true
  57304. },
  57305. ],
  57306. {
  57307. "snivy": {
  57308. name: "Snivy",
  57309. default: true
  57310. },
  57311. "yoshi": {
  57312. name: "Yoshi",
  57313. },
  57314. "delphox": {
  57315. name: "Delphox",
  57316. },
  57317. "mienshao": {
  57318. name: "Mienshao",
  57319. },
  57320. "inteleon": {
  57321. name: "Inteleon",
  57322. },
  57323. "reshiram": {
  57324. name: "Reshiram",
  57325. },
  57326. "samurott": {
  57327. name: "Samurott",
  57328. },
  57329. }
  57330. ))
  57331. characterMakers.push(() => makeCharacter(
  57332. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57333. {
  57334. front: {
  57335. height: math.unit(4, "feet"),
  57336. name: "Front",
  57337. image: {
  57338. source: "./media/characters/ash-leung/front.svg",
  57339. extra: 1916/1792,
  57340. bottom: 50/1966
  57341. }
  57342. },
  57343. },
  57344. [
  57345. {
  57346. name: "Atomic",
  57347. height: math.unit(1, "angstrom")
  57348. },
  57349. {
  57350. name: "Microscopic",
  57351. height: math.unit(4000, "angstroms")
  57352. },
  57353. {
  57354. name: "Speck",
  57355. height: math.unit(1, "mm")
  57356. },
  57357. {
  57358. name: "Small",
  57359. height: math.unit(1, "inch")
  57360. },
  57361. {
  57362. name: "Normal",
  57363. height: math.unit(4, "feet"),
  57364. default: true
  57365. },
  57366. ]
  57367. ))
  57368. characterMakers.push(() => makeCharacter(
  57369. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57370. {
  57371. frontDressed: {
  57372. height: math.unit(2.08, "meters"),
  57373. weight: math.unit(175, "lb"),
  57374. name: "Front (Dressed)",
  57375. image: {
  57376. source: "./media/characters/carie/front-dressed.svg",
  57377. extra: 456/417,
  57378. bottom: 7/463
  57379. }
  57380. },
  57381. backDressed: {
  57382. height: math.unit(2.08, "meters"),
  57383. weight: math.unit(175, "lb"),
  57384. name: "Back (Dressed)",
  57385. image: {
  57386. source: "./media/characters/carie/back-dressed.svg",
  57387. extra: 455/414,
  57388. bottom: 11/466
  57389. }
  57390. },
  57391. front: {
  57392. height: math.unit(2, "meters"),
  57393. weight: math.unit(175, "lb"),
  57394. name: "Front",
  57395. image: {
  57396. source: "./media/characters/carie/front.svg",
  57397. extra: 438/399,
  57398. bottom: 12/450
  57399. }
  57400. },
  57401. back: {
  57402. height: math.unit(2, "meters"),
  57403. weight: math.unit(175, "lb"),
  57404. name: "Back",
  57405. image: {
  57406. source: "./media/characters/carie/back.svg",
  57407. extra: 438/397,
  57408. bottom: 7/445
  57409. }
  57410. },
  57411. },
  57412. [
  57413. {
  57414. name: "Normal",
  57415. height: math.unit(2.08, "meters"),
  57416. default: true
  57417. },
  57418. {
  57419. name: "Macro",
  57420. height: math.unit(2.08e3, "meters")
  57421. },
  57422. {
  57423. name: "Mega Macro",
  57424. height: math.unit(2.08e6, "meters")
  57425. },
  57426. {
  57427. name: "Giga Macro",
  57428. height: math.unit(2.08e9, "meters")
  57429. },
  57430. {
  57431. name: "Tera Macro",
  57432. height: math.unit(2.08e12, "meters")
  57433. },
  57434. {
  57435. name: "Peta Macro",
  57436. height: math.unit(2.08e15, "meters")
  57437. },
  57438. {
  57439. name: "Exa Macro",
  57440. height: math.unit(2.08e18, "meters")
  57441. },
  57442. {
  57443. name: "Zetta Macro",
  57444. height: math.unit(2.08e21, "meters")
  57445. },
  57446. {
  57447. name: "Yotta Macro",
  57448. height: math.unit(2.08e24, "meters")
  57449. },
  57450. ]
  57451. ))
  57452. characterMakers.push(() => makeCharacter(
  57453. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57454. {
  57455. front: {
  57456. height: math.unit(5 + 2/12, "feet"),
  57457. weight: math.unit(120, "lb"),
  57458. name: "Front",
  57459. image: {
  57460. source: "./media/characters/sai-bree/front.svg",
  57461. extra: 1843/1702,
  57462. bottom: 91/1934
  57463. }
  57464. },
  57465. back: {
  57466. height: math.unit(5 + 2/12, "feet"),
  57467. weight: math.unit(120, "lb"),
  57468. name: "Back",
  57469. image: {
  57470. source: "./media/characters/sai-bree/back.svg",
  57471. extra: 1809/1637,
  57472. bottom: 56/1865
  57473. }
  57474. },
  57475. },
  57476. [
  57477. {
  57478. name: "Normal",
  57479. height: math.unit(5 + 2/12, "feet"),
  57480. default: true
  57481. },
  57482. {
  57483. name: "Macro",
  57484. height: math.unit(500, "feet")
  57485. },
  57486. ]
  57487. ))
  57488. characterMakers.push(() => makeCharacter(
  57489. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57490. {
  57491. side: {
  57492. height: math.unit(0.77, "meters"),
  57493. weight: math.unit(120, "lb"),
  57494. name: "Side",
  57495. image: {
  57496. source: "./media/characters/davwyn/side.svg",
  57497. extra: 1557/1225,
  57498. bottom: 131/1688
  57499. }
  57500. },
  57501. front: {
  57502. height: math.unit(0.835410, "meters"),
  57503. weight: math.unit(120, "lb"),
  57504. name: "Front",
  57505. image: {
  57506. source: "./media/characters/davwyn/front.svg",
  57507. extra: 870/843,
  57508. bottom: 175/1045
  57509. }
  57510. },
  57511. },
  57512. [
  57513. {
  57514. name: "Minidrake",
  57515. height: math.unit(0.77/4, "meters")
  57516. },
  57517. {
  57518. name: "Normal",
  57519. height: math.unit(0.77, "meters"),
  57520. default: true
  57521. },
  57522. ]
  57523. ))
  57524. characterMakers.push(() => makeCharacter(
  57525. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57526. {
  57527. front: {
  57528. height: math.unit(10 + 3/12, "feet"),
  57529. weight: math.unit(2857, "lb"),
  57530. name: "Front",
  57531. image: {
  57532. source: "./media/characters/balans/front.svg",
  57533. extra: 427/402,
  57534. bottom: 26/453
  57535. }
  57536. },
  57537. side: {
  57538. height: math.unit(10 + 3/12, "feet"),
  57539. weight: math.unit(2857, "lb"),
  57540. name: "Side",
  57541. image: {
  57542. source: "./media/characters/balans/side.svg",
  57543. extra: 397/371,
  57544. bottom: 17/414
  57545. }
  57546. },
  57547. back: {
  57548. height: math.unit(10 + 3/12, "feet"),
  57549. weight: math.unit(2857, "lb"),
  57550. name: "Back",
  57551. image: {
  57552. source: "./media/characters/balans/back.svg",
  57553. extra: 408/381,
  57554. bottom: 14/422
  57555. }
  57556. },
  57557. hand: {
  57558. height: math.unit(1.15, "feet"),
  57559. name: "Hand",
  57560. image: {
  57561. source: "./media/characters/balans/hand.svg"
  57562. }
  57563. },
  57564. footRest: {
  57565. height: math.unit(3.1, "feet"),
  57566. name: "Foot (Rest)",
  57567. image: {
  57568. source: "./media/characters/balans/foot-rest.svg"
  57569. }
  57570. },
  57571. footActive: {
  57572. height: math.unit(3.5, "feet"),
  57573. name: "Foot (Active)",
  57574. image: {
  57575. source: "./media/characters/balans/foot-active.svg"
  57576. }
  57577. },
  57578. },
  57579. [
  57580. {
  57581. name: "Normal",
  57582. height: math.unit(10 + 3/12, "feet"),
  57583. default: true
  57584. },
  57585. ]
  57586. ))
  57587. characterMakers.push(() => makeCharacter(
  57588. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57589. {
  57590. side: {
  57591. height: math.unit(9, "meters"),
  57592. weight: math.unit(114, "tonnes"),
  57593. name: "Side",
  57594. image: {
  57595. source: "./media/characters/eldkveikir/side.svg",
  57596. extra: 1927/338,
  57597. bottom: 42/1969
  57598. }
  57599. },
  57600. sitting: {
  57601. height: math.unit(13.4, "meters"),
  57602. weight: math.unit(114, "tonnes"),
  57603. name: "Sitting",
  57604. image: {
  57605. source: "./media/characters/eldkveikir/sitting.svg",
  57606. extra: 1108/963,
  57607. bottom: 610/1718
  57608. }
  57609. },
  57610. maw: {
  57611. height: math.unit(8.36, "meters"),
  57612. name: "Maw",
  57613. image: {
  57614. source: "./media/characters/eldkveikir/maw.svg"
  57615. }
  57616. },
  57617. hand: {
  57618. height: math.unit(4.84, "meters"),
  57619. name: "Hand",
  57620. image: {
  57621. source: "./media/characters/eldkveikir/hand.svg"
  57622. }
  57623. },
  57624. foot: {
  57625. height: math.unit(6.9, "meters"),
  57626. name: "Foot",
  57627. image: {
  57628. source: "./media/characters/eldkveikir/foot.svg"
  57629. }
  57630. },
  57631. genitals: {
  57632. height: math.unit(9.6, "meters"),
  57633. name: "Genitals",
  57634. image: {
  57635. source: "./media/characters/eldkveikir/genitals.svg"
  57636. }
  57637. },
  57638. },
  57639. [
  57640. {
  57641. name: "Normal",
  57642. height: math.unit(9, "meters"),
  57643. default: true
  57644. },
  57645. ]
  57646. ))
  57647. characterMakers.push(() => makeCharacter(
  57648. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57649. {
  57650. front: {
  57651. height: math.unit(14, "feet"),
  57652. weight: math.unit(4100, "lb"),
  57653. name: "Front",
  57654. image: {
  57655. source: "./media/characters/arrow/front.svg",
  57656. extra: 330/318,
  57657. bottom: 56/386
  57658. }
  57659. },
  57660. },
  57661. [
  57662. {
  57663. name: "Normal",
  57664. height: math.unit(14, "feet"),
  57665. default: true
  57666. },
  57667. {
  57668. name: "Minimacro",
  57669. height: math.unit(63, "feet")
  57670. },
  57671. {
  57672. name: "Macro",
  57673. height: math.unit(630, "feet")
  57674. },
  57675. {
  57676. name: "Megamacro",
  57677. height: math.unit(12600, "feet")
  57678. },
  57679. {
  57680. name: "Gigamacro",
  57681. height: math.unit(18000, "miles")
  57682. },
  57683. ]
  57684. ))
  57685. characterMakers.push(() => makeCharacter(
  57686. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57687. {
  57688. front: {
  57689. height: math.unit(10, "feet"),
  57690. weight: math.unit(2.4, "tons"),
  57691. name: "Front",
  57692. image: {
  57693. source: "./media/characters/3yk-k0-unit/front.svg",
  57694. extra: 573/561,
  57695. bottom: 33/606
  57696. }
  57697. },
  57698. back: {
  57699. height: math.unit(10, "feet"),
  57700. weight: math.unit(2.4, "tons"),
  57701. name: "Back",
  57702. image: {
  57703. source: "./media/characters/3yk-k0-unit/back.svg",
  57704. extra: 614/573,
  57705. bottom: 32/646
  57706. }
  57707. },
  57708. maw: {
  57709. height: math.unit(2.15, "feet"),
  57710. name: "Maw",
  57711. image: {
  57712. source: "./media/characters/3yk-k0-unit/maw.svg"
  57713. }
  57714. },
  57715. },
  57716. [
  57717. {
  57718. name: "Normal",
  57719. height: math.unit(10, "feet"),
  57720. default: true
  57721. },
  57722. ]
  57723. ))
  57724. characterMakers.push(() => makeCharacter(
  57725. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57726. {
  57727. front: {
  57728. height: math.unit(8 + 8/12, "feet"),
  57729. name: "Front",
  57730. image: {
  57731. source: "./media/characters/nemo/front.svg",
  57732. extra: 1308/1217,
  57733. bottom: 57/1365
  57734. }
  57735. },
  57736. },
  57737. [
  57738. {
  57739. name: "Normal",
  57740. height: math.unit(8 + 8/12, "feet"),
  57741. default: true
  57742. },
  57743. ]
  57744. ))
  57745. characterMakers.push(() => makeCharacter(
  57746. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57747. {
  57748. front: {
  57749. height: math.unit(8, "feet"),
  57750. weight: math.unit(760, "lb"),
  57751. name: "Front",
  57752. image: {
  57753. source: "./media/characters/rexx/front.svg",
  57754. extra: 786/750,
  57755. bottom: 17/803
  57756. },
  57757. extraAttributes: {
  57758. "pawLength": {
  57759. name: "Paw Length",
  57760. power: 1,
  57761. type: "length",
  57762. base: math.unit(27, "inches")
  57763. },
  57764. }
  57765. },
  57766. },
  57767. [
  57768. {
  57769. name: "Micro",
  57770. height: math.unit(2, "inches")
  57771. },
  57772. {
  57773. name: "Normal",
  57774. height: math.unit(8, "feet"),
  57775. default: true
  57776. },
  57777. {
  57778. name: "Macro",
  57779. height: math.unit(150, "feet")
  57780. },
  57781. ]
  57782. ))
  57783. characterMakers.push(() => makeCharacter(
  57784. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57785. {
  57786. front: {
  57787. height: math.unit(18, "feet"),
  57788. weight: math.unit(1975, "lb"),
  57789. name: "Front",
  57790. image: {
  57791. source: "./media/characters/draco/front.svg",
  57792. extra: 1325/1241,
  57793. bottom: 83/1408
  57794. }
  57795. },
  57796. back: {
  57797. height: math.unit(18, "feet"),
  57798. weight: math.unit(1975, "lb"),
  57799. name: "Back",
  57800. image: {
  57801. source: "./media/characters/draco/back.svg",
  57802. extra: 1332/1250,
  57803. bottom: 43/1375
  57804. }
  57805. },
  57806. dick: {
  57807. height: math.unit(7.5, "feet"),
  57808. name: "Dick",
  57809. image: {
  57810. source: "./media/characters/draco/dick.svg"
  57811. }
  57812. },
  57813. },
  57814. [
  57815. {
  57816. name: "Normal",
  57817. height: math.unit(18, "feet"),
  57818. default: true
  57819. },
  57820. ]
  57821. ))
  57822. characterMakers.push(() => makeCharacter(
  57823. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57824. {
  57825. front: {
  57826. height: math.unit(3.2, "meters"),
  57827. name: "Front",
  57828. image: {
  57829. source: "./media/characters/harriett/front.svg",
  57830. extra: 1966/1915,
  57831. bottom: 9/1975
  57832. }
  57833. },
  57834. },
  57835. [
  57836. {
  57837. name: "Normal",
  57838. height: math.unit(3.2, "meters"),
  57839. default: true
  57840. },
  57841. ]
  57842. ))
  57843. characterMakers.push(() => makeCharacter(
  57844. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57845. {
  57846. sitting: {
  57847. height: math.unit(0.8, "meter"),
  57848. name: "Sitting",
  57849. image: {
  57850. source: "./media/characters/serpentus/sitting.svg",
  57851. extra: 293/290,
  57852. bottom: 140/433
  57853. }
  57854. },
  57855. },
  57856. [
  57857. {
  57858. name: "Normal",
  57859. height: math.unit(0.8, "meter"),
  57860. default: true
  57861. },
  57862. ]
  57863. ))
  57864. characterMakers.push(() => makeCharacter(
  57865. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57866. {
  57867. front: {
  57868. height: math.unit(5.7174385736, "feet"),
  57869. name: "Front",
  57870. image: {
  57871. source: "./media/characters/nova-polecat/front.svg",
  57872. extra: 1317/1216,
  57873. bottom: 92/1409
  57874. }
  57875. },
  57876. },
  57877. [
  57878. {
  57879. name: "Normal",
  57880. height: math.unit(5.7174385736, "feet"),
  57881. default: true
  57882. },
  57883. ]
  57884. ))
  57885. characterMakers.push(() => makeCharacter(
  57886. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57887. {
  57888. front: {
  57889. height: math.unit(5 + 4/12, "feet"),
  57890. weight: math.unit(250, "lb"),
  57891. name: "Front",
  57892. image: {
  57893. source: "./media/characters/mook/front.svg",
  57894. extra: 1088/1037,
  57895. bottom: 132/1220
  57896. }
  57897. },
  57898. back: {
  57899. height: math.unit(5 + 1/12, "feet"),
  57900. weight: math.unit(250, "lb"),
  57901. name: "Back",
  57902. image: {
  57903. source: "./media/characters/mook/back.svg",
  57904. extra: 1184/905,
  57905. bottom: 96/1280
  57906. }
  57907. },
  57908. head: {
  57909. height: math.unit(1.85, "feet"),
  57910. name: "Head",
  57911. image: {
  57912. source: "./media/characters/mook/head.svg"
  57913. }
  57914. },
  57915. hand: {
  57916. height: math.unit(1.9, "feet"),
  57917. name: "Hand",
  57918. image: {
  57919. source: "./media/characters/mook/hand.svg"
  57920. }
  57921. },
  57922. palm: {
  57923. height: math.unit(1.84, "feet"),
  57924. name: "Palm",
  57925. image: {
  57926. source: "./media/characters/mook/palm.svg"
  57927. }
  57928. },
  57929. foot: {
  57930. height: math.unit(1.44, "feet"),
  57931. name: "Foot",
  57932. image: {
  57933. source: "./media/characters/mook/foot.svg"
  57934. }
  57935. },
  57936. sole: {
  57937. height: math.unit(1.44, "feet"),
  57938. name: "Sole",
  57939. image: {
  57940. source: "./media/characters/mook/sole.svg"
  57941. }
  57942. },
  57943. },
  57944. [
  57945. {
  57946. name: "Normal",
  57947. height: math.unit(5 + 4/12, "feet"),
  57948. default: true
  57949. },
  57950. {
  57951. name: "Big",
  57952. height: math.unit(12, "feet")
  57953. },
  57954. ]
  57955. ))
  57956. characterMakers.push(() => makeCharacter(
  57957. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57958. {
  57959. front: {
  57960. height: math.unit(6 + 10/12, "feet"),
  57961. weight: math.unit(233, "lb"),
  57962. name: "Front",
  57963. image: {
  57964. source: "./media/characters/kayla/front.svg",
  57965. extra: 1850/1775,
  57966. bottom: 65/1915
  57967. }
  57968. },
  57969. },
  57970. [
  57971. {
  57972. name: "Normal",
  57973. height: math.unit(6 + 10/12, "feet"),
  57974. default: true
  57975. },
  57976. {
  57977. name: "Amazonian",
  57978. height: math.unit(12 + 5/12, "feet")
  57979. },
  57980. {
  57981. name: "Mini Giantess",
  57982. height: math.unit(26, "feet")
  57983. },
  57984. {
  57985. name: "Giantess",
  57986. height: math.unit(200, "feet")
  57987. },
  57988. {
  57989. name: "Mega Giantess",
  57990. height: math.unit(2500, "feet")
  57991. },
  57992. {
  57993. name: "City Sized",
  57994. height: math.unit(50, "miles")
  57995. },
  57996. {
  57997. name: "Country Sized",
  57998. height: math.unit(500, "miles")
  57999. },
  58000. {
  58001. name: "Continent Sized",
  58002. height: math.unit(2500, "miles")
  58003. },
  58004. {
  58005. name: "Planet Sized",
  58006. height: math.unit(10000, "miles")
  58007. },
  58008. {
  58009. name: "Star Sized",
  58010. height: math.unit(5e6, "miles")
  58011. },
  58012. {
  58013. name: "Solar System Sized",
  58014. height: math.unit(125, "AU")
  58015. },
  58016. {
  58017. name: "Galaxy Sized",
  58018. height: math.unit(300e3, "lightyears")
  58019. },
  58020. {
  58021. name: "Universe Sized",
  58022. height: math.unit(200e9, "lightyears")
  58023. },
  58024. {
  58025. name: "Multiverse Sized",
  58026. height: math.unit(20, "exauniverses")
  58027. },
  58028. {
  58029. name: "Mother of Existence",
  58030. height: math.unit(1e6, "yottauniverses")
  58031. },
  58032. ]
  58033. ))
  58034. characterMakers.push(() => makeCharacter(
  58035. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58036. {
  58037. side: {
  58038. height: math.unit(9.5, "meters"),
  58039. name: "Side",
  58040. image: {
  58041. source: "./media/characters/kulve-ragnarok/side.svg",
  58042. extra: 364/326,
  58043. bottom: 50/414
  58044. }
  58045. },
  58046. },
  58047. [
  58048. {
  58049. name: "Normal",
  58050. height: math.unit(9.5, "meters"),
  58051. default: true
  58052. },
  58053. ]
  58054. ))
  58055. characterMakers.push(() => makeCharacter(
  58056. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58057. {
  58058. front: {
  58059. height: math.unit(8 + 9/12, "feet"),
  58060. name: "Front",
  58061. image: {
  58062. source: "./media/characters/atlas-goat/front.svg",
  58063. extra: 1462/1323,
  58064. bottom: 12/1474
  58065. }
  58066. },
  58067. },
  58068. [
  58069. {
  58070. name: "Normal",
  58071. height: math.unit(8 + 9/12, "feet"),
  58072. default: true
  58073. },
  58074. {
  58075. name: "Skyline",
  58076. height: math.unit(845, "feet")
  58077. },
  58078. {
  58079. name: "Orbital",
  58080. height: math.unit(93000, "miles")
  58081. },
  58082. {
  58083. name: "Constellation",
  58084. height: math.unit(27000, "lightyears")
  58085. },
  58086. ]
  58087. ))
  58088. characterMakers.push(() => makeCharacter(
  58089. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58090. {
  58091. side: {
  58092. height: math.unit(1.8, "meters"),
  58093. weight: math.unit(120, "kg"),
  58094. name: "Side",
  58095. image: {
  58096. source: "./media/characters/xie-ling/side.svg",
  58097. extra: 646/574,
  58098. bottom: 44/690
  58099. }
  58100. },
  58101. },
  58102. [
  58103. {
  58104. name: "Tiny",
  58105. height: math.unit(1.80, "meters")
  58106. },
  58107. {
  58108. name: "Small",
  58109. height: math.unit(6, "meters")
  58110. },
  58111. {
  58112. name: "Medium",
  58113. height: math.unit(15, "meters")
  58114. },
  58115. {
  58116. name: "Normal",
  58117. height: math.unit(30, "meters"),
  58118. default: true
  58119. },
  58120. {
  58121. name: "Above Normal",
  58122. height: math.unit(60, "meters")
  58123. },
  58124. {
  58125. name: "Big",
  58126. height: math.unit(220, "meters")
  58127. },
  58128. {
  58129. name: "Giant",
  58130. height: math.unit(2.2, "km")
  58131. },
  58132. {
  58133. name: "Macro",
  58134. height: math.unit(25, "km")
  58135. },
  58136. {
  58137. name: "Mega Macro",
  58138. height: math.unit(350, "km")
  58139. },
  58140. {
  58141. name: "Mega Macro+",
  58142. height: math.unit(5000, "km")
  58143. },
  58144. {
  58145. name: "Goddess",
  58146. height: math.unit(3, "multiverses")
  58147. },
  58148. ]
  58149. ))
  58150. characterMakers.push(() => makeCharacter(
  58151. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58152. {
  58153. frontSfw: {
  58154. height: math.unit(5 + 11/12, "feet"),
  58155. weight: math.unit(210, "lb"),
  58156. name: "Front",
  58157. image: {
  58158. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58159. extra: 1928/1821,
  58160. bottom: 45/1973
  58161. }
  58162. },
  58163. backSfw: {
  58164. height: math.unit(5 + 11/12, "feet"),
  58165. weight: math.unit(210, "lb"),
  58166. name: "Back",
  58167. image: {
  58168. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58169. extra: 1920/1813,
  58170. bottom: 34/1954
  58171. }
  58172. },
  58173. frontNsfw: {
  58174. height: math.unit(5 + 11/12, "feet"),
  58175. weight: math.unit(210, "lb"),
  58176. name: "Front (NSFW)",
  58177. image: {
  58178. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58179. extra: 1928/1821,
  58180. bottom: 45/1973
  58181. }
  58182. },
  58183. backNsfw: {
  58184. height: math.unit(5 + 11/12, "feet"),
  58185. weight: math.unit(210, "lb"),
  58186. name: "Back (NSFW)",
  58187. image: {
  58188. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58189. extra: 1920/1813,
  58190. bottom: 34/1954
  58191. }
  58192. },
  58193. },
  58194. [
  58195. {
  58196. name: "Normal",
  58197. height: math.unit(5 + 11/12, "feet"),
  58198. default: true
  58199. },
  58200. {
  58201. name: "Goddess",
  58202. height: math.unit(20 + 3/12, "feet")
  58203. },
  58204. {
  58205. name: "Breaker of Man",
  58206. height: math.unit(329 + 9/12, "feet")
  58207. },
  58208. {
  58209. name: "Solar Justice",
  58210. height: math.unit(0.6, "solarradii")
  58211. },
  58212. {
  58213. name: "She Who Judges",
  58214. height: math.unit(1, "universe")
  58215. },
  58216. ]
  58217. ))
  58218. characterMakers.push(() => makeCharacter(
  58219. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58220. {
  58221. casual_front: {
  58222. height: math.unit(6 + 1/12, "feet"),
  58223. weight: math.unit(190, "lb"),
  58224. preyCapacity: math.unit(1, "people"),
  58225. name: "Front",
  58226. image: {
  58227. source: "./media/characters/managarmr/casual-front.svg",
  58228. extra: 411/381,
  58229. bottom: 15/426
  58230. },
  58231. extraAttributes: {
  58232. "pawSize": {
  58233. name: "Paw Size",
  58234. power: 1,
  58235. type: "length",
  58236. base: math.unit(0.2, "meters")
  58237. },
  58238. },
  58239. form: "casual",
  58240. },
  58241. casual_back: {
  58242. height: math.unit(6 + 1/12, "feet"),
  58243. weight: math.unit(190, "lb"),
  58244. preyCapacity: math.unit(1, "people"),
  58245. name: "Back",
  58246. image: {
  58247. source: "./media/characters/managarmr/casual-back.svg",
  58248. extra: 413/383,
  58249. bottom: 13/426
  58250. },
  58251. extraAttributes: {
  58252. "pawSize": {
  58253. name: "Paw Size",
  58254. power: 1,
  58255. type: "length",
  58256. base: math.unit(0.2, "meters")
  58257. },
  58258. },
  58259. form: "casual",
  58260. },
  58261. base_front: {
  58262. height: math.unit(7, "feet"),
  58263. weight: math.unit(210, "lb"),
  58264. preyCapacity: math.unit(2, "people"),
  58265. name: "Front",
  58266. image: {
  58267. source: "./media/characters/managarmr/base-front.svg",
  58268. extra: 580/485,
  58269. bottom: 32/612
  58270. },
  58271. extraAttributes: {
  58272. "wingspan": {
  58273. name: "Wingspan",
  58274. power: 1,
  58275. type: "length",
  58276. base: math.unit(4, "meters")
  58277. },
  58278. "pawSize": {
  58279. name: "Paw Size",
  58280. power: 1,
  58281. type: "length",
  58282. base: math.unit(0.2, "meters")
  58283. },
  58284. },
  58285. form: "base",
  58286. },
  58287. "true-divine_front": {
  58288. height: math.unit(40, "feet"),
  58289. weight: math.unit(39000, "lb"),
  58290. preyCapacity: math.unit(375, "people"),
  58291. name: "Front",
  58292. image: {
  58293. source: "./media/characters/managarmr/true-divine-front.svg",
  58294. extra: 725/573,
  58295. bottom: 120/845
  58296. },
  58297. extraAttributes: {
  58298. "wingspan": {
  58299. name: "Wingspan",
  58300. power: 1,
  58301. type: "length",
  58302. base: math.unit(20, "meters")
  58303. },
  58304. "pawSize": {
  58305. name: "Paw Size",
  58306. power: 1,
  58307. type: "length",
  58308. base: math.unit(1.5, "meters")
  58309. },
  58310. },
  58311. form: "true-divine",
  58312. },
  58313. },
  58314. [
  58315. {
  58316. name: "Normal",
  58317. height: math.unit(6 + 1/12, "feet"),
  58318. form: "casual",
  58319. default: true
  58320. },
  58321. {
  58322. name: "Normal",
  58323. height: math.unit(7, "feet"),
  58324. form: "base",
  58325. default: true
  58326. },
  58327. ],
  58328. {
  58329. "casual": {
  58330. name: "Casual",
  58331. default: true
  58332. },
  58333. "base": {
  58334. name: "Base",
  58335. },
  58336. "true-divine": {
  58337. name: "True Divine",
  58338. },
  58339. }
  58340. ))
  58341. characterMakers.push(() => makeCharacter(
  58342. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58343. {
  58344. front: {
  58345. height: math.unit(1.8, "meters"),
  58346. weight: math.unit(110, "kg"),
  58347. name: "Front",
  58348. image: {
  58349. source: "./media/characters/mystra/front.svg",
  58350. extra: 529/442,
  58351. bottom: 31/560
  58352. }
  58353. },
  58354. frontLewd: {
  58355. height: math.unit(1.8, "meters"),
  58356. weight: math.unit(110, "kg"),
  58357. name: "Front (Lewd)",
  58358. image: {
  58359. source: "./media/characters/mystra/front-lewd.svg",
  58360. extra: 529/442,
  58361. bottom: 31/560
  58362. }
  58363. },
  58364. head: {
  58365. height: math.unit(1.63, "feet"),
  58366. name: "Head",
  58367. image: {
  58368. source: "./media/characters/mystra/head.svg"
  58369. }
  58370. },
  58371. paw: {
  58372. height: math.unit(1.9, "feet"),
  58373. name: "Paw",
  58374. image: {
  58375. source: "./media/characters/mystra/paw.svg"
  58376. }
  58377. },
  58378. },
  58379. [
  58380. {
  58381. name: "Incognito",
  58382. height: math.unit(2.3, "meters")
  58383. },
  58384. {
  58385. name: "Small Macro",
  58386. height: math.unit(300, "meters")
  58387. },
  58388. {
  58389. name: "Small Mega",
  58390. height: math.unit(2, "km")
  58391. },
  58392. {
  58393. name: "Mega",
  58394. height: math.unit(30, "km")
  58395. },
  58396. {
  58397. name: "Small Giga",
  58398. height: math.unit(100, "km")
  58399. },
  58400. {
  58401. name: "Giga",
  58402. height: math.unit(1000, "km"),
  58403. default: true
  58404. },
  58405. {
  58406. name: "Continental",
  58407. height: math.unit(5000, "km")
  58408. },
  58409. {
  58410. name: "Terra",
  58411. height: math.unit(20000, "km")
  58412. },
  58413. {
  58414. name: "Solar",
  58415. height: math.unit(2e6, "km")
  58416. },
  58417. {
  58418. name: "Galactic",
  58419. height: math.unit(528502, "lightyears")
  58420. },
  58421. {
  58422. name: "Universal",
  58423. height: math.unit(20, "universes")
  58424. },
  58425. ]
  58426. ))
  58427. characterMakers.push(() => makeCharacter(
  58428. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58429. {
  58430. front: {
  58431. height: math.unit(2, "meters"),
  58432. weight: math.unit(140, "kg"),
  58433. name: "Front",
  58434. image: {
  58435. source: "./media/characters/caleb/front.svg",
  58436. extra: 873/817,
  58437. bottom: 47/920
  58438. }
  58439. },
  58440. back: {
  58441. height: math.unit(2, "meters"),
  58442. weight: math.unit(140, "kg"),
  58443. name: "Back",
  58444. image: {
  58445. source: "./media/characters/caleb/back.svg",
  58446. extra: 877/828,
  58447. bottom: 24/901
  58448. }
  58449. },
  58450. snakeTail: {
  58451. height: math.unit(1.44, "feet"),
  58452. name: "Snake Tail",
  58453. image: {
  58454. source: "./media/characters/caleb/snake-tail.svg"
  58455. }
  58456. },
  58457. dick: {
  58458. height: math.unit(2.6, "feet"),
  58459. name: "Dick",
  58460. image: {
  58461. source: "./media/characters/caleb/dick.svg"
  58462. }
  58463. },
  58464. },
  58465. [
  58466. {
  58467. name: "Incognito",
  58468. height: math.unit(3, "meters")
  58469. },
  58470. {
  58471. name: "Home Size",
  58472. height: math.unit(200, "meters"),
  58473. default: true
  58474. },
  58475. {
  58476. name: "Macro",
  58477. height: math.unit(500, "meters")
  58478. },
  58479. {
  58480. name: "Big Macro",
  58481. height: math.unit(5, "km")
  58482. },
  58483. {
  58484. name: "Giga",
  58485. height: math.unit(250, "km")
  58486. },
  58487. {
  58488. name: "Giga+",
  58489. height: math.unit(5000, "km")
  58490. },
  58491. {
  58492. name: "Small Terra",
  58493. height: math.unit(35e3, "km")
  58494. },
  58495. {
  58496. name: "Terra",
  58497. height: math.unit(2e6, "km")
  58498. },
  58499. {
  58500. name: "Terra+",
  58501. height: math.unit(1.5e6, "km")
  58502. },
  58503. ]
  58504. ))
  58505. characterMakers.push(() => makeCharacter(
  58506. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58507. {
  58508. front: {
  58509. height: math.unit(2, "meters"),
  58510. weight: math.unit(120, "kg"),
  58511. name: "Front",
  58512. image: {
  58513. source: "./media/characters/gilirian/front.svg",
  58514. extra: 805/737,
  58515. bottom: 13/818
  58516. }
  58517. },
  58518. side: {
  58519. height: math.unit(2, "meters"),
  58520. weight: math.unit(120, "kg"),
  58521. name: "Side",
  58522. image: {
  58523. source: "./media/characters/gilirian/side.svg",
  58524. extra: 810/746,
  58525. bottom: 6/816
  58526. }
  58527. },
  58528. back: {
  58529. height: math.unit(2, "meters"),
  58530. weight: math.unit(120, "kg"),
  58531. name: "Back",
  58532. image: {
  58533. source: "./media/characters/gilirian/back.svg",
  58534. extra: 815/745,
  58535. bottom: 15/830
  58536. }
  58537. },
  58538. frontNsfw: {
  58539. height: math.unit(2, "meters"),
  58540. weight: math.unit(120, "kg"),
  58541. name: "Front (NSFW)",
  58542. image: {
  58543. source: "./media/characters/gilirian/front-nsfw.svg",
  58544. extra: 805/737,
  58545. bottom: 13/818
  58546. }
  58547. },
  58548. sideNsfw: {
  58549. height: math.unit(2, "meters"),
  58550. weight: math.unit(120, "kg"),
  58551. name: "Side (NSFW)",
  58552. image: {
  58553. source: "./media/characters/gilirian/side-nsfw.svg",
  58554. extra: 810/746,
  58555. bottom: 6/816
  58556. }
  58557. },
  58558. },
  58559. [
  58560. {
  58561. name: "Incognito",
  58562. height: math.unit(2, "meters"),
  58563. default: true
  58564. },
  58565. {
  58566. name: "Macro",
  58567. height: math.unit(250, "meters")
  58568. },
  58569. {
  58570. name: "Big Macro",
  58571. height: math.unit(1500, "meters")
  58572. },
  58573. {
  58574. name: "Mega",
  58575. height: math.unit(40, "km")
  58576. },
  58577. {
  58578. name: "Giga",
  58579. height: math.unit(300, "km")
  58580. },
  58581. {
  58582. name: "Extra Giga",
  58583. height: math.unit(5000, "km")
  58584. },
  58585. {
  58586. name: "Small Terra",
  58587. height: math.unit(10e3, "km")
  58588. },
  58589. {
  58590. name: "Terra",
  58591. height: math.unit(3e5, "km")
  58592. },
  58593. {
  58594. name: "Galactic",
  58595. height: math.unit(369950, "lightyears")
  58596. },
  58597. ]
  58598. ))
  58599. characterMakers.push(() => makeCharacter(
  58600. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58601. {
  58602. front: {
  58603. height: math.unit(2.5, "meters"),
  58604. weight: math.unit(230, "lb"),
  58605. name: "Front",
  58606. image: {
  58607. source: "./media/characters/tarken/front.svg",
  58608. extra: 764/720,
  58609. bottom: 49/813
  58610. }
  58611. },
  58612. back: {
  58613. height: math.unit(2.5, "meters"),
  58614. weight: math.unit(230, "lb"),
  58615. name: "Back",
  58616. image: {
  58617. source: "./media/characters/tarken/back.svg",
  58618. extra: 756/720,
  58619. bottom: 35/791
  58620. }
  58621. },
  58622. frontNsfw: {
  58623. height: math.unit(2.5, "meters"),
  58624. weight: math.unit(230, "lb"),
  58625. name: "Front (NSFW)",
  58626. image: {
  58627. source: "./media/characters/tarken/front-nsfw.svg",
  58628. extra: 764/720,
  58629. bottom: 49/813
  58630. }
  58631. },
  58632. backNsfw: {
  58633. height: math.unit(2.5, "meters"),
  58634. weight: math.unit(230, "lb"),
  58635. name: "Back (NSFW)",
  58636. image: {
  58637. source: "./media/characters/tarken/back-nsfw.svg",
  58638. extra: 756/720,
  58639. bottom: 35/791
  58640. }
  58641. },
  58642. head: {
  58643. height: math.unit(2.22, "feet"),
  58644. name: "Head",
  58645. image: {
  58646. source: "./media/characters/tarken/head.svg"
  58647. }
  58648. },
  58649. tail: {
  58650. height: math.unit(5.25, "feet"),
  58651. name: "Tail",
  58652. image: {
  58653. source: "./media/characters/tarken/tail.svg"
  58654. }
  58655. },
  58656. dick: {
  58657. height: math.unit(1.95, "feet"),
  58658. name: "Dick",
  58659. image: {
  58660. source: "./media/characters/tarken/dick.svg"
  58661. }
  58662. },
  58663. hand: {
  58664. height: math.unit(1.78, "feet"),
  58665. name: "Hand",
  58666. image: {
  58667. source: "./media/characters/tarken/hand.svg"
  58668. }
  58669. },
  58670. beam: {
  58671. height: math.unit(1.5, "feet"),
  58672. name: "Beam",
  58673. image: {
  58674. source: "./media/characters/tarken/beam.svg"
  58675. }
  58676. },
  58677. },
  58678. [
  58679. {
  58680. name: "Original Size",
  58681. height: math.unit(2.5, "meters")
  58682. },
  58683. {
  58684. name: "Macro",
  58685. height: math.unit(150, "meters"),
  58686. default: true
  58687. },
  58688. {
  58689. name: "Macro+",
  58690. height: math.unit(300, "meters")
  58691. },
  58692. {
  58693. name: "Mega",
  58694. height: math.unit(2, "km")
  58695. },
  58696. {
  58697. name: "Mega+",
  58698. height: math.unit(35, "km")
  58699. },
  58700.  {
  58701. name: "Mega++",
  58702. height: math.unit(60, "km")
  58703. },
  58704. {
  58705. name: "Giga",
  58706. height: math.unit(200, "km")
  58707. },
  58708. {
  58709. name: "Giga+",
  58710. height: math.unit(2500, "km")
  58711. },
  58712. {
  58713. name: "Giga++",
  58714. height: math.unit(6600, "km")
  58715. },
  58716. {
  58717. name: "Terra",
  58718. height: math.unit(20000, "km")
  58719. },
  58720. {
  58721. name: "Terra+",
  58722. height: math.unit(300000, "km")
  58723. },
  58724. ]
  58725. ))
  58726. characterMakers.push(() => makeCharacter(
  58727. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58728. {
  58729. magpie_dressed: {
  58730. height: math.unit(1.7, "meters"),
  58731. weight: math.unit(70, "kg"),
  58732. name: "Dressed",
  58733. image: {
  58734. source: "./media/characters/otreus/magpie-dressed.svg",
  58735. extra: 691/672,
  58736. bottom: 116/807
  58737. },
  58738. form: "magpie",
  58739. default: true
  58740. },
  58741. magpie_nude: {
  58742. height: math.unit(1.7, "meters"),
  58743. weight: math.unit(70, "kg"),
  58744. name: "Nude",
  58745. image: {
  58746. source: "./media/characters/otreus/magpie-nude.svg",
  58747. extra: 691/672,
  58748. bottom: 116/807
  58749. },
  58750. form: "magpie",
  58751. },
  58752. magpie_dressedLewd: {
  58753. height: math.unit(1.7, "meters"),
  58754. weight: math.unit(70, "kg"),
  58755. name: "Dressed (Lewd)",
  58756. image: {
  58757. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58758. extra: 691/672,
  58759. bottom: 116/807
  58760. },
  58761. form: "magpie",
  58762. },
  58763. magpie_nudeLewd: {
  58764. height: math.unit(1.7, "meters"),
  58765. weight: math.unit(70, "kg"),
  58766. name: "Nude (Lewd)",
  58767. image: {
  58768. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58769. extra: 691/672,
  58770. bottom: 116/807
  58771. },
  58772. form: "magpie",
  58773. },
  58774. magpie_leftFoot: {
  58775. height: math.unit(1.58, "feet"),
  58776. name: "Left Foot",
  58777. image: {
  58778. source: "./media/characters/otreus/magpie-left-foot.svg"
  58779. },
  58780. form: "magpie",
  58781. },
  58782. magpie_rightFoot: {
  58783. height: math.unit(1.58, "feet"),
  58784. name: "Right Foot",
  58785. image: {
  58786. source: "./media/characters/otreus/magpie-right-foot.svg"
  58787. },
  58788. form: "magpie",
  58789. },
  58790. magpie_wingspan: {
  58791. height: math.unit(2, "meters"),
  58792. weight: math.unit(70, "kg"),
  58793. name: "Wingspan",
  58794. image: {
  58795. source: "./media/characters/otreus/magpie-wingspan.svg"
  58796. },
  58797. extraAttributes: {
  58798. "wingspan": {
  58799. name: "Wingspan",
  58800. power: 1,
  58801. type: "length",
  58802. base: math.unit(3.35, "meters")
  58803. },
  58804. },
  58805. form: "magpie",
  58806. },
  58807. hippogriff_dressed: {
  58808. height: math.unit(1.7, "meters"),
  58809. weight: math.unit(70, "kg"),
  58810. name: "Dressed",
  58811. image: {
  58812. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58813. extra: 710/689,
  58814. bottom: 67/777
  58815. },
  58816. form: "hippogriff",
  58817. default: true
  58818. },
  58819. hippogriff_nude: {
  58820. height: math.unit(1.7, "meters"),
  58821. weight: math.unit(70, "kg"),
  58822. name: "Nude",
  58823. image: {
  58824. source: "./media/characters/otreus/hippogriff-nude.svg",
  58825. extra: 710/689,
  58826. bottom: 67/777
  58827. },
  58828. form: "hippogriff",
  58829. },
  58830. hippogriff_dressedLewd: {
  58831. height: math.unit(1.7, "meters"),
  58832. weight: math.unit(70, "kg"),
  58833. name: "Dressed (Lewd)",
  58834. image: {
  58835. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58836. extra: 710/689,
  58837. bottom: 67/777
  58838. },
  58839. form: "hippogriff",
  58840. },
  58841. hippogriff_nudeLewd: {
  58842. height: math.unit(1.7, "meters"),
  58843. weight: math.unit(70, "kg"),
  58844. name: "Nude (Lewd)",
  58845. image: {
  58846. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58847. extra: 710/689,
  58848. bottom: 67/777
  58849. },
  58850. form: "hippogriff",
  58851. },
  58852. },
  58853. [
  58854. {
  58855. name: "Original Size",
  58856. height: math.unit(1.7, "meters"),
  58857. allForms: true
  58858. },
  58859. {
  58860. name: "Incognito Size",
  58861. height: math.unit(2, "meters"),
  58862. allForms: true
  58863. },
  58864. {
  58865. name: "Mega",
  58866. height: math.unit(2, "km"),
  58867. allForms: true
  58868. },
  58869. {
  58870. name: "Mega+",
  58871. height: math.unit(40, "km"),
  58872. allForms: true
  58873. },
  58874. {
  58875. name: "Giga",
  58876. height: math.unit(250, "km"),
  58877. allForms: true
  58878. },
  58879. {
  58880. name: "Giga+",
  58881. height: math.unit(3000, "km"),
  58882. allForms: true
  58883. },
  58884. {
  58885. name: "Terra",
  58886. height: math.unit(20000, "km"),
  58887. allForms: true
  58888. },
  58889. {
  58890. name: "Solar (Home Size)",
  58891. height: math.unit(3e6, "km"),
  58892. allForms: true,
  58893. default: true
  58894. },
  58895. ],
  58896. {
  58897. "magpie": {
  58898. name: "Magpie",
  58899. default: true
  58900. },
  58901. "hippogriff": {
  58902. name: "Hippogriff",
  58903. },
  58904. }
  58905. ))
  58906. characterMakers.push(() => makeCharacter(
  58907. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58908. {
  58909. frontDressed: {
  58910. height: math.unit(1.8, "meters"),
  58911. weight: math.unit(90, "kg"),
  58912. name: "Front (Dressed)",
  58913. image: {
  58914. source: "./media/characters/thalia/front-dressed.svg",
  58915. extra: 478/402,
  58916. bottom: 55/533
  58917. }
  58918. },
  58919. backDressed: {
  58920. height: math.unit(1.8, "meters"),
  58921. weight: math.unit(90, "kg"),
  58922. name: "Back (Dressed)",
  58923. image: {
  58924. source: "./media/characters/thalia/back-dressed.svg",
  58925. extra: 500/424,
  58926. bottom: 15/515
  58927. }
  58928. },
  58929. frontNude: {
  58930. height: math.unit(1.8, "meters"),
  58931. weight: math.unit(90, "kg"),
  58932. name: "Front (Nude)",
  58933. image: {
  58934. source: "./media/characters/thalia/front-nude.svg",
  58935. extra: 478/402,
  58936. bottom: 55/533
  58937. }
  58938. },
  58939. backNude: {
  58940. height: math.unit(1.8, "meters"),
  58941. weight: math.unit(90, "kg"),
  58942. name: "Back (Nude)",
  58943. image: {
  58944. source: "./media/characters/thalia/back-nude.svg",
  58945. extra: 500/424,
  58946. bottom: 15/515
  58947. }
  58948. },
  58949. },
  58950. [
  58951. {
  58952. name: "Incognito",
  58953. height: math.unit(3, "meters")
  58954. },
  58955. {
  58956. name: "Macro",
  58957. height: math.unit(500, "meters")
  58958. },
  58959. {
  58960. name: "Mega",
  58961. height: math.unit(5, "km")
  58962. },
  58963. {
  58964. name: "Mega+",
  58965. height: math.unit(30, "km")
  58966. },
  58967. {
  58968. name: "Giga",
  58969. height: math.unit(350, "km")
  58970. },
  58971. {
  58972. name: "Giga+",
  58973. height: math.unit(4000, "km")
  58974. },
  58975. {
  58976. name: "Terra",
  58977. height: math.unit(35000, "km")
  58978. },
  58979. {
  58980. name: "Original Size",
  58981. height: math.unit(130000, "km")
  58982. },
  58983. {
  58984. name: "Solar (Home Size)",
  58985. height: math.unit(4e6, "km"),
  58986. default: true
  58987. },
  58988. ]
  58989. ))
  58990. characterMakers.push(() => makeCharacter(
  58991. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58992. {
  58993. front: {
  58994. height: math.unit(1.8, "meters"),
  58995. weight: math.unit(95, "kg"),
  58996. name: "Front",
  58997. image: {
  58998. source: "./media/characters/shango/front.svg",
  58999. extra: 1925/1774,
  59000. bottom: 67/1992
  59001. }
  59002. },
  59003. back: {
  59004. height: math.unit(1.8, "meters"),
  59005. weight: math.unit(95, "kg"),
  59006. name: "Back",
  59007. image: {
  59008. source: "./media/characters/shango/back.svg",
  59009. extra: 1915/1766,
  59010. bottom: 52/1967
  59011. }
  59012. },
  59013. frontLewd: {
  59014. height: math.unit(1.8, "meters"),
  59015. weight: math.unit(95, "kg"),
  59016. name: "Front (Lewd)",
  59017. image: {
  59018. source: "./media/characters/shango/front-lewd.svg",
  59019. extra: 1925/1774,
  59020. bottom: 67/1992
  59021. }
  59022. },
  59023. backLewd: {
  59024. height: math.unit(1.8, "meters"),
  59025. weight: math.unit(95, "kg"),
  59026. name: "Back (Lewd)",
  59027. image: {
  59028. source: "./media/characters/shango/back-lewd.svg",
  59029. extra: 1915/1766,
  59030. bottom: 52/1967
  59031. }
  59032. },
  59033. maw: {
  59034. height: math.unit(1.64, "feet"),
  59035. name: "Maw",
  59036. image: {
  59037. source: "./media/characters/shango/maw.svg"
  59038. }
  59039. },
  59040. dick: {
  59041. height: math.unit(2.14, "feet"),
  59042. name: "Dick",
  59043. image: {
  59044. source: "./media/characters/shango/dick.svg"
  59045. }
  59046. },
  59047. },
  59048. [
  59049. {
  59050. name: "Incognito",
  59051. height: math.unit(1.8, "meters")
  59052. },
  59053. {
  59054. name: "Home Size",
  59055. height: math.unit(60, "meters"),
  59056. default: true
  59057. },
  59058. {
  59059. name: "Macro",
  59060. height: math.unit(450, "meters")
  59061. },
  59062. {
  59063. name: "Mega",
  59064. height: math.unit(6, "km")
  59065. },
  59066. {
  59067. name: "Mega+",
  59068. height: math.unit(35, "km")
  59069. },
  59070. {
  59071. name: "Giga",
  59072. height: math.unit(500, "km")
  59073. },
  59074. {
  59075. name: "Giga+",
  59076. height: math.unit(5000, "km")
  59077. },
  59078. {
  59079. name: "Terra",
  59080. height: math.unit(60000, "km")
  59081. },
  59082. {
  59083. name: "Terra+",
  59084. height: math.unit(400000, "km")
  59085. },
  59086. ]
  59087. ))
  59088. characterMakers.push(() => makeCharacter(
  59089. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59090. {
  59091. front: {
  59092. height: math.unit(2, "meters"),
  59093. weight: math.unit(95, "kg"),
  59094. name: "Front",
  59095. image: {
  59096. source: "./media/characters/osiris-gryphon/front.svg",
  59097. extra: 1508/1313,
  59098. bottom: 87/1595
  59099. }
  59100. },
  59101. back: {
  59102. height: math.unit(2, "meters"),
  59103. weight: math.unit(95, "kg"),
  59104. name: "Back",
  59105. image: {
  59106. source: "./media/characters/osiris-gryphon/back.svg",
  59107. extra: 1436/1309,
  59108. bottom: 64/1500
  59109. }
  59110. },
  59111. frontLewd: {
  59112. height: math.unit(2, "meters"),
  59113. weight: math.unit(95, "kg"),
  59114. name: "Front-lewd",
  59115. image: {
  59116. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59117. extra: 1508/1313,
  59118. bottom: 87/1595
  59119. }
  59120. },
  59121. wing: {
  59122. height: math.unit(6.3333, "feet"),
  59123. name: "Wing",
  59124. image: {
  59125. source: "./media/characters/osiris-gryphon/wing.svg"
  59126. }
  59127. },
  59128. },
  59129. [
  59130. {
  59131. name: "Incognito",
  59132. height: math.unit(2, "meters")
  59133. },
  59134. {
  59135. name: "Home Size",
  59136. height: math.unit(30, "meters"),
  59137. default: true
  59138. },
  59139. {
  59140. name: "Macro",
  59141. height: math.unit(100, "meters")
  59142. },
  59143. {
  59144. name: "Macro+",
  59145. height: math.unit(350, "meters")
  59146. },
  59147. {
  59148. name: "Mega",
  59149. height: math.unit(40, "km")
  59150. },
  59151. {
  59152. name: "Giga",
  59153. height: math.unit(300, "km")
  59154. },
  59155. {
  59156. name: "Giga+",
  59157. height: math.unit(2000, "km")
  59158. },
  59159. {
  59160. name: "Terra",
  59161. height: math.unit(30000, "km")
  59162. },
  59163. ]
  59164. ))
  59165. characterMakers.push(() => makeCharacter(
  59166. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59167. {
  59168. front: {
  59169. height: math.unit(2.5, "meters"),
  59170. weight: math.unit(200, "kg"),
  59171. name: "Front",
  59172. image: {
  59173. source: "./media/characters/atlas-dragon/front.svg",
  59174. extra: 745/462,
  59175. bottom: 36/781
  59176. }
  59177. },
  59178. back: {
  59179. height: math.unit(2.5, "meters"),
  59180. weight: math.unit(200, "kg"),
  59181. name: "Back",
  59182. image: {
  59183. source: "./media/characters/atlas-dragon/back.svg",
  59184. extra: 848/822,
  59185. bottom: 57/905
  59186. }
  59187. },
  59188. frontLewd: {
  59189. height: math.unit(2.5, "meters"),
  59190. weight: math.unit(200, "kg"),
  59191. name: "Front (Lewd)",
  59192. image: {
  59193. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59194. extra: 745/462,
  59195. bottom: 36/781
  59196. }
  59197. },
  59198. backLewd: {
  59199. height: math.unit(2.5, "meters"),
  59200. weight: math.unit(200, "kg"),
  59201. name: "Back (Lewd)",
  59202. image: {
  59203. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59204. extra: 848/822,
  59205. bottom: 57/905
  59206. }
  59207. },
  59208. },
  59209. [
  59210. {
  59211. name: "Incognito",
  59212. height: math.unit(2.5, "meters")
  59213. },
  59214. {
  59215. name: "Small Macro",
  59216. height: math.unit(50, "meters")
  59217. },
  59218. {
  59219. name: "Macro",
  59220. height: math.unit(350, "meters")
  59221. },
  59222. {
  59223. name: "Mega",
  59224. height: math.unit(5.5, "kilometers")
  59225. },
  59226. {
  59227. name: "Mega+",
  59228. height: math.unit(50, "km")
  59229. },
  59230. {
  59231. name: "Giga",
  59232. height: math.unit(350, "km")
  59233. },
  59234. {
  59235. name: "Giga+",
  59236. height: math.unit(2000, "km")
  59237. },
  59238. {
  59239. name: "Giga++",
  59240. height: math.unit(6500, "km")
  59241. },
  59242. {
  59243. name: "Terra",
  59244. height: math.unit(30000, "km")
  59245. },
  59246. {
  59247. name: "Terra+",
  59248. height: math.unit(250000, "km")
  59249. },
  59250. {
  59251. name: "True Size",
  59252. height: math.unit(100, "multiverses"),
  59253. default: true
  59254. },
  59255. ]
  59256. ))
  59257. characterMakers.push(() => makeCharacter(
  59258. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59259. {
  59260. front: {
  59261. height: math.unit(1.8, "m"),
  59262. weight: math.unit(120, "kg"),
  59263. name: "Front",
  59264. image: {
  59265. source: "./media/characters/chey/front.svg",
  59266. extra: 1359/1270,
  59267. bottom: 18/1377
  59268. }
  59269. },
  59270. arm: {
  59271. height: math.unit(2.05, "feet"),
  59272. name: "Arm",
  59273. image: {
  59274. source: "./media/characters/chey/arm.svg"
  59275. }
  59276. },
  59277. head: {
  59278. height: math.unit(1.89, "feet"),
  59279. name: "Head",
  59280. image: {
  59281. source: "./media/characters/chey/head.svg"
  59282. }
  59283. },
  59284. },
  59285. [
  59286. {
  59287. name: "Original Size",
  59288. height: math.unit(5, "cm")
  59289. },
  59290. {
  59291. name: "Incognito Size",
  59292. height: math.unit(2.4, "m")
  59293. },
  59294. {
  59295. name: "Home Size",
  59296. height: math.unit(200, "meters"),
  59297. default: true
  59298. },
  59299. {
  59300. name: "Mega",
  59301. height: math.unit(2, "km")
  59302. },
  59303. {
  59304. name: "Giga (Preferred Size)",
  59305. height: math.unit(2000, "km")
  59306. },
  59307. {
  59308. name: "Giga+",
  59309. height: math.unit(6000, "km")
  59310. },
  59311. {
  59312. name: "Terra",
  59313. height: math.unit(17000, "km")
  59314. },
  59315. {
  59316. name: "Terra+",
  59317. height: math.unit(75000, "km")
  59318. },
  59319. {
  59320. name: "Terra++",
  59321. height: math.unit(225000, "km")
  59322. },
  59323. ]
  59324. ))
  59325. characterMakers.push(() => makeCharacter(
  59326. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59327. {
  59328. side: {
  59329. height: math.unit(7.8, "meters"),
  59330. name: "Side",
  59331. image: {
  59332. source: "./media/characters/ragnarok/side.svg",
  59333. extra: 725/621,
  59334. bottom: 72/797
  59335. }
  59336. },
  59337. },
  59338. [
  59339. {
  59340. name: "Normal",
  59341. height: math.unit(7.8, "meters"),
  59342. default: true
  59343. },
  59344. ]
  59345. ))
  59346. characterMakers.push(() => makeCharacter(
  59347. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59348. {
  59349. hyena_front: {
  59350. height: math.unit(2.1, "meters"),
  59351. weight: math.unit(110, "kg"),
  59352. name: "Front",
  59353. image: {
  59354. source: "./media/characters/nima/hyena-front.svg",
  59355. extra: 1904/1796,
  59356. bottom: 67/1971
  59357. },
  59358. form: "hyena",
  59359. },
  59360. hyena_back: {
  59361. height: math.unit(2.1, "meters"),
  59362. weight: math.unit(110, "kg"),
  59363. name: "Back",
  59364. image: {
  59365. source: "./media/characters/nima/hyena-back.svg",
  59366. extra: 1964/1884,
  59367. bottom: 35/1999
  59368. },
  59369. form: "hyena",
  59370. },
  59371. shark_front: {
  59372. height: math.unit(1.95, "meters"),
  59373. weight: math.unit(110, "kg"),
  59374. name: "Front",
  59375. image: {
  59376. source: "./media/characters/nima/shark-front.svg",
  59377. extra: 2238/2013,
  59378. bottom: 0/223
  59379. },
  59380. form: "shark",
  59381. },
  59382. paw: {
  59383. height: math.unit(1, "feet"),
  59384. name: "Paw",
  59385. image: {
  59386. source: "./media/characters/nima/paw.svg"
  59387. }
  59388. },
  59389. circlet: {
  59390. height: math.unit(0.3, "feet"),
  59391. name: "Circlet",
  59392. image: {
  59393. source: "./media/characters/nima/circlet.svg"
  59394. }
  59395. },
  59396. necklace: {
  59397. height: math.unit(1.2, "feet"),
  59398. name: "Necklace",
  59399. image: {
  59400. source: "./media/characters/nima/necklace.svg"
  59401. }
  59402. },
  59403. bracelet: {
  59404. height: math.unit(0.51, "feet"),
  59405. name: "Bracelet",
  59406. image: {
  59407. source: "./media/characters/nima/bracelet.svg"
  59408. }
  59409. },
  59410. armband: {
  59411. height: math.unit(1.3, "feet"),
  59412. name: "Armband",
  59413. image: {
  59414. source: "./media/characters/nima/armband.svg"
  59415. }
  59416. },
  59417. },
  59418. [
  59419. {
  59420. name: "Incognito",
  59421. height: math.unit(2.1, "meters"),
  59422. allForms: true
  59423. },
  59424. {
  59425. name: "Small Macro",
  59426. height: math.unit(50, "meters"),
  59427. allForms: true
  59428. },
  59429. {
  59430. name: "Macro",
  59431. height: math.unit(200, "meters"),
  59432. allForms: true
  59433. },
  59434. {
  59435. name: "Mega",
  59436. height: math.unit(2.5, "km"),
  59437. allForms: true
  59438. },
  59439. {
  59440. name: "Mega+",
  59441. height: math.unit(30, "km"),
  59442. allForms: true
  59443. },
  59444. {
  59445. name: "Giga (Home Size)",
  59446. height: math.unit(400, "km"),
  59447. allForms: true,
  59448. default: true
  59449. },
  59450. {
  59451. name: "Giga+",
  59452. height: math.unit(2500, "km"),
  59453. allForms: true
  59454. },
  59455. {
  59456. name: "Giga++",
  59457. height: math.unit(8000, "km"),
  59458. allForms: true
  59459. },
  59460. {
  59461. name: "Terra",
  59462. height: math.unit(20000, "km"),
  59463. allForms: true
  59464. },
  59465. {
  59466. name: "Terra+",
  59467. height: math.unit(70000, "km"),
  59468. allForms: true
  59469. },
  59470. {
  59471. name: "Terra++",
  59472. height: math.unit(600000, "km"),
  59473. allForms: true
  59474. },
  59475. {
  59476. name: "Galactic",
  59477. height: math.unit(40, "galaxies"),
  59478. allForms: true
  59479. },
  59480. {
  59481. name: "Universal",
  59482. height: math.unit(40, "universes"),
  59483. allForms: true
  59484. },
  59485. ],
  59486. {
  59487. "hyena": {
  59488. name: "Hyena",
  59489. default: true
  59490. },
  59491. "shark": {
  59492. name: "Shark",
  59493. },
  59494. }
  59495. ))
  59496. characterMakers.push(() => makeCharacter(
  59497. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59498. {
  59499. anthro_front: {
  59500. height: math.unit(1.5, "meters"),
  59501. name: "Front",
  59502. image: {
  59503. source: "./media/characters/adelaide/anthro-front.svg",
  59504. extra: 860/783,
  59505. bottom: 60/920
  59506. },
  59507. form: "anthro",
  59508. default: true
  59509. },
  59510. hand: {
  59511. height: math.unit(0.65, "feet"),
  59512. name: "Hand",
  59513. image: {
  59514. source: "./media/characters/adelaide/hand.svg"
  59515. },
  59516. form: "anthro"
  59517. },
  59518. foot: {
  59519. height: math.unit(1.38 * 259 / 314, "feet"),
  59520. name: "Foot",
  59521. image: {
  59522. source: "./media/characters/adelaide/foot.svg",
  59523. extra: 259/259,
  59524. bottom: 55/314
  59525. },
  59526. form: "anthro"
  59527. },
  59528. feather: {
  59529. height: math.unit(0.85, "feet"),
  59530. name: "Feather",
  59531. image: {
  59532. source: "./media/characters/adelaide/feather.svg"
  59533. },
  59534. form: "anthro"
  59535. },
  59536. feral_side: {
  59537. height: math.unit(1, "meters"),
  59538. name: "Side",
  59539. image: {
  59540. source: "./media/characters/adelaide/feral-side.svg",
  59541. extra: 550/467,
  59542. bottom: 37/587
  59543. },
  59544. form: "feral",
  59545. default: true
  59546. },
  59547. feral_hand: {
  59548. height: math.unit(0.58, "feet"),
  59549. name: "Hand",
  59550. image: {
  59551. source: "./media/characters/adelaide/hand.svg"
  59552. },
  59553. form: "feral"
  59554. },
  59555. feral_foot: {
  59556. height: math.unit(1.2 * 259 / 314, "feet"),
  59557. name: "Foot",
  59558. image: {
  59559. source: "./media/characters/adelaide/foot.svg",
  59560. extra: 259/259,
  59561. bottom: 55/314
  59562. },
  59563. form: "feral"
  59564. },
  59565. feral_feather: {
  59566. height: math.unit(0.63, "feet"),
  59567. name: "Feather",
  59568. image: {
  59569. source: "./media/characters/adelaide/feather.svg"
  59570. },
  59571. form: "feral"
  59572. },
  59573. },
  59574. [
  59575. {
  59576. name: "Normal",
  59577. height: math.unit(1.5, "meters"),
  59578. form: "anthro",
  59579. default: true
  59580. },
  59581. {
  59582. name: "Normal",
  59583. height: math.unit(1, "meters"),
  59584. form: "feral",
  59585. default: true
  59586. },
  59587. ],
  59588. {
  59589. "anthro": {
  59590. name: "Anthro",
  59591. default: true
  59592. },
  59593. "feral": {
  59594. name: "Feral",
  59595. },
  59596. }
  59597. ))
  59598. characterMakers.push(() => makeCharacter(
  59599. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59600. {
  59601. front: {
  59602. height: math.unit(2.5, "meters"),
  59603. name: "Front",
  59604. image: {
  59605. source: "./media/characters/goa/front.svg",
  59606. extra: 1109/1013,
  59607. bottom: 150/1259
  59608. }
  59609. },
  59610. },
  59611. [
  59612. {
  59613. name: "Normal",
  59614. height: math.unit(2.5, "meters"),
  59615. default: true
  59616. },
  59617. ]
  59618. ))
  59619. characterMakers.push(() => makeCharacter(
  59620. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59621. {
  59622. front: {
  59623. height: math.unit(2, "meters"),
  59624. weight: math.unit(100, "kg"),
  59625. name: "Front",
  59626. image: {
  59627. source: "./media/characters/kiki-weavile/front.svg",
  59628. extra: 357/332,
  59629. bottom: 60/417
  59630. }
  59631. },
  59632. },
  59633. [
  59634. {
  59635. name: "Normal",
  59636. height: math.unit(2, "meters"),
  59637. default: true
  59638. },
  59639. ]
  59640. ))
  59641. characterMakers.push(() => makeCharacter(
  59642. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59643. {
  59644. side: {
  59645. height: math.unit(1.6, "meters"),
  59646. name: "Side",
  59647. image: {
  59648. source: "./media/characters/liza/side.svg",
  59649. extra: 943/915,
  59650. bottom: 72/1015
  59651. }
  59652. },
  59653. },
  59654. [
  59655. {
  59656. name: "Normal",
  59657. height: math.unit(1.6, "meters"),
  59658. default: true
  59659. },
  59660. ]
  59661. ))
  59662. characterMakers.push(() => makeCharacter(
  59663. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59664. {
  59665. side: {
  59666. height: math.unit(2.5, "meters"),
  59667. preyCapacity: math.unit(1, "people"),
  59668. name: "Side",
  59669. image: {
  59670. source: "./media/characters/persephone-sweetbreath/side.svg",
  59671. extra: 796/700,
  59672. bottom: 44/840
  59673. }
  59674. },
  59675. sideVore: {
  59676. height: math.unit(2.5, "meters"),
  59677. preyCapacity: math.unit(1, "people"),
  59678. name: "Side (Full)",
  59679. image: {
  59680. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59681. extra: 796/700,
  59682. bottom: 44/840
  59683. }
  59684. },
  59685. },
  59686. [
  59687. {
  59688. name: "Normal",
  59689. height: math.unit(2.5, "meters"),
  59690. default: true
  59691. },
  59692. ]
  59693. ))
  59694. characterMakers.push(() => makeCharacter(
  59695. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59696. {
  59697. front: {
  59698. height: math.unit(32, "meters"),
  59699. name: "Front",
  59700. image: {
  59701. source: "./media/characters/pierce/front.svg",
  59702. extra: 1695/1475,
  59703. bottom: 185/1880
  59704. }
  59705. },
  59706. side: {
  59707. height: math.unit(32, "meters"),
  59708. name: "Side",
  59709. image: {
  59710. source: "./media/characters/pierce/side.svg",
  59711. extra: 974/859,
  59712. bottom: 43/1017
  59713. }
  59714. },
  59715. frontWingless: {
  59716. height: math.unit(32, "meters"),
  59717. name: "Front (Wingless)",
  59718. image: {
  59719. source: "./media/characters/pierce/front-wingless.svg",
  59720. extra: 1695/1475,
  59721. bottom: 185/1880
  59722. }
  59723. },
  59724. sideWingless: {
  59725. height: math.unit(32, "meters"),
  59726. name: "Side (Wingless)",
  59727. image: {
  59728. source: "./media/characters/pierce/side-wingless.svg",
  59729. extra: 974/859,
  59730. bottom: 43/1017
  59731. }
  59732. },
  59733. maw: {
  59734. height: math.unit(19.3, "meters"),
  59735. name: "Maw",
  59736. image: {
  59737. source: "./media/characters/pierce/maw.svg"
  59738. }
  59739. },
  59740. },
  59741. [
  59742. {
  59743. name: "Small",
  59744. height: math.unit(8.5, "meters")
  59745. },
  59746. {
  59747. name: "Normal",
  59748. height: math.unit(32, "meters"),
  59749. default: true
  59750. },
  59751. ]
  59752. ))
  59753. characterMakers.push(() => makeCharacter(
  59754. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59755. {
  59756. front: {
  59757. height: math.unit(2.3, "meters"),
  59758. weight: math.unit(165, "kg"),
  59759. name: "Front",
  59760. image: {
  59761. source: "./media/characters/shira/front.svg",
  59762. extra: 924/919,
  59763. bottom: 17/941
  59764. },
  59765. form: "cobra",
  59766. default: true
  59767. },
  59768. back: {
  59769. height: math.unit(2.3, "meters"),
  59770. weight: math.unit(165, "kg"),
  59771. name: "Back",
  59772. image: {
  59773. source: "./media/characters/shira/back.svg",
  59774. extra: 928/922,
  59775. bottom: 18/946
  59776. },
  59777. form: "cobra"
  59778. },
  59779. frontLewd: {
  59780. height: math.unit(2.3, "meters"),
  59781. weight: math.unit(165, "kg"),
  59782. name: "Front (Lewd)",
  59783. image: {
  59784. source: "./media/characters/shira/front-lewd.svg",
  59785. extra: 924/919,
  59786. bottom: 17/941
  59787. },
  59788. form: "cobra"
  59789. },
  59790. backLewd: {
  59791. height: math.unit(2.3, "meters"),
  59792. weight: math.unit(165, "kg"),
  59793. name: "Back (Lewd)",
  59794. image: {
  59795. source: "./media/characters/shira/back-lewd.svg",
  59796. extra: 928/922,
  59797. bottom: 18/946
  59798. },
  59799. form: "cobra"
  59800. },
  59801. maw: {
  59802. height: math.unit(1.14, "feet"),
  59803. name: "Maw",
  59804. image: {
  59805. source: "./media/characters/shira/maw.svg"
  59806. },
  59807. form: "cobra"
  59808. },
  59809. magma_front: {
  59810. height: math.unit(2.3, "meters"),
  59811. weight: math.unit(165, "kg"),
  59812. name: "Front",
  59813. image: {
  59814. source: "./media/characters/shira/magma-front.svg",
  59815. extra: 1870/1693,
  59816. bottom: 24/1894
  59817. },
  59818. form: "magma",
  59819. },
  59820. magma_back: {
  59821. height: math.unit(2.3, "meters"),
  59822. weight: math.unit(165, "kg"),
  59823. name: "Back",
  59824. image: {
  59825. source: "./media/characters/shira/magma-back.svg",
  59826. extra: 1918/1756,
  59827. bottom: 46/1964
  59828. },
  59829. form: "magma",
  59830. },
  59831. },
  59832. [
  59833. {
  59834. name: "Incognito",
  59835. height: math.unit(2.3, "meters"),
  59836. allForms: true
  59837. },
  59838. {
  59839. name: "Home Size",
  59840. height: math.unit(150, "meters"),
  59841. default: true,
  59842. allForms: true
  59843. },
  59844. {
  59845. name: "Macro",
  59846. height: math.unit(2, "km"),
  59847. allForms: true
  59848. },
  59849. {
  59850. name: "Mega",
  59851. height: math.unit(30, "km"),
  59852. allForms: true
  59853. },
  59854. {
  59855. name: "Giga",
  59856. height: math.unit(450, "km"),
  59857. allForms: true
  59858. },
  59859. {
  59860. name: "Giga+",
  59861. height: math.unit(3000, "km"),
  59862. allForms: true
  59863. },
  59864. {
  59865. name: "Giga++",
  59866. height: math.unit(6000, "km"),
  59867. allForms: true
  59868. },
  59869. {
  59870. name: "Terra",
  59871. height: math.unit(80000, "km"),
  59872. allForms: true
  59873. },
  59874. {
  59875. name: "Terra+",
  59876. height: math.unit(350000, "km"),
  59877. allForms: true
  59878. },
  59879. {
  59880. name: "Solar",
  59881. height: math.unit(1e6, "km"),
  59882. allForms: true
  59883. },
  59884. ],
  59885. {
  59886. "cobra": {
  59887. name: "Cobra",
  59888. default: true
  59889. },
  59890. "magma": {
  59891. name: "Magma Dragon",
  59892. },
  59893. }
  59894. ))
  59895. characterMakers.push(() => makeCharacter(
  59896. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59897. {
  59898. front: {
  59899. height: math.unit(2, "meters"),
  59900. weight: math.unit(160, "kg"),
  59901. name: "Front",
  59902. image: {
  59903. source: "./media/characters/daxerios/front.svg",
  59904. extra: 1334/1277,
  59905. bottom: 45/1379
  59906. }
  59907. },
  59908. frontLewd: {
  59909. height: math.unit(2, "meters"),
  59910. weight: math.unit(160, "kg"),
  59911. name: "Front (Lewd)",
  59912. image: {
  59913. source: "./media/characters/daxerios/front-lewd.svg",
  59914. extra: 1334/1277,
  59915. bottom: 45/1379
  59916. }
  59917. },
  59918. dick: {
  59919. height: math.unit(2.35, "feet"),
  59920. name: "Dick",
  59921. image: {
  59922. source: "./media/characters/daxerios/dick.svg"
  59923. }
  59924. },
  59925. },
  59926. [
  59927. {
  59928. name: "\"Small\"",
  59929. height: math.unit(5, "meters")
  59930. },
  59931. {
  59932. name: "Original Size",
  59933. height: math.unit(500, "meters"),
  59934. default: true
  59935. },
  59936. {
  59937. name: "Mega",
  59938. height: math.unit(2, "km")
  59939. },
  59940. {
  59941. name: "Mega+",
  59942. height: math.unit(35, "km")
  59943. },
  59944. {
  59945. name: "Giga",
  59946. height: math.unit(250, "km")
  59947. },
  59948. {
  59949. name: "Giga+",
  59950. height: math.unit(3000, "km")
  59951. },
  59952. {
  59953. name: "Terra",
  59954. height: math.unit(25000, "km")
  59955. },
  59956. {
  59957. name: "Terra+",
  59958. height: math.unit(300000, "km")
  59959. },
  59960. {
  59961. name: "Solar",
  59962. height: math.unit(1e6, "km")
  59963. },
  59964. ]
  59965. ))
  59966. characterMakers.push(() => makeCharacter(
  59967. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59968. {
  59969. front: {
  59970. height: math.unit(8 + 4/12, "feet"),
  59971. weight: math.unit(464, "lb"),
  59972. name: "Front",
  59973. image: {
  59974. source: "./media/characters/caveat/front.svg",
  59975. extra: 1861/1678,
  59976. bottom: 40/1901
  59977. }
  59978. },
  59979. },
  59980. [
  59981. {
  59982. name: "Normal",
  59983. height: math.unit(8 + 4/12, "feet"),
  59984. default: true
  59985. },
  59986. ]
  59987. ))
  59988. characterMakers.push(() => makeCharacter(
  59989. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59990. {
  59991. front: {
  59992. height: math.unit(12, "feet"),
  59993. weight: math.unit(1800, "lb"),
  59994. name: "Front",
  59995. image: {
  59996. source: "./media/characters/centbair/front.svg",
  59997. extra: 781/663,
  59998. bottom: 25/806
  59999. }
  60000. },
  60001. frontNsfw: {
  60002. height: math.unit(12, "feet"),
  60003. weight: math.unit(1800, "lb"),
  60004. name: "Front (NSFW)",
  60005. image: {
  60006. source: "./media/characters/centbair/front-nsfw.svg",
  60007. extra: 781/663,
  60008. bottom: 25/806
  60009. }
  60010. },
  60011. back: {
  60012. height: math.unit(12, "feet"),
  60013. weight: math.unit(1800, "lb"),
  60014. name: "Back",
  60015. image: {
  60016. source: "./media/characters/centbair/back.svg",
  60017. extra: 808/761,
  60018. bottom: 19/827
  60019. }
  60020. },
  60021. dick: {
  60022. height: math.unit(6.5, "feet"),
  60023. name: "Dick",
  60024. image: {
  60025. source: "./media/characters/centbair/dick.svg"
  60026. }
  60027. },
  60028. slit: {
  60029. height: math.unit(3.25, "feet"),
  60030. name: "Slit",
  60031. image: {
  60032. source: "./media/characters/centbair/slit.svg"
  60033. }
  60034. },
  60035. },
  60036. [
  60037. {
  60038. name: "Normal",
  60039. height: math.unit(12, "feet"),
  60040. default: true
  60041. },
  60042. ]
  60043. ))
  60044. characterMakers.push(() => makeCharacter(
  60045. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60046. {
  60047. front: {
  60048. height: math.unit(5 + 7/12, "feet"),
  60049. name: "Front",
  60050. image: {
  60051. source: "./media/characters/andy/front.svg",
  60052. extra: 634/588,
  60053. bottom: 36/670
  60054. },
  60055. extraAttributes: {
  60056. "pawLength": {
  60057. name: "Paw Length",
  60058. power: 1,
  60059. type: "length",
  60060. base: math.unit(1, "feet")
  60061. },
  60062. }
  60063. },
  60064. side: {
  60065. height: math.unit(5 + 7/12, "feet"),
  60066. name: "Side",
  60067. image: {
  60068. source: "./media/characters/andy/side.svg",
  60069. extra: 641/596,
  60070. bottom: 34/675
  60071. },
  60072. extraAttributes: {
  60073. "pawLength": {
  60074. name: "Paw Length",
  60075. power: 1,
  60076. type: "length",
  60077. base: math.unit(1, "feet")
  60078. },
  60079. }
  60080. },
  60081. back: {
  60082. height: math.unit(5 + 7/12, "feet"),
  60083. name: "Back",
  60084. image: {
  60085. source: "./media/characters/andy/back.svg",
  60086. extra: 618/583,
  60087. bottom: 39/657
  60088. },
  60089. extraAttributes: {
  60090. "pawLength": {
  60091. name: "Paw Length",
  60092. power: 1,
  60093. type: "length",
  60094. base: math.unit(1, "feet")
  60095. },
  60096. }
  60097. },
  60098. paw: {
  60099. height: math.unit(1.13, "feet"),
  60100. name: "Paw",
  60101. image: {
  60102. source: "./media/characters/andy/paw.svg"
  60103. }
  60104. },
  60105. },
  60106. [
  60107. {
  60108. name: "Micro",
  60109. height: math.unit(4, "inches")
  60110. },
  60111. {
  60112. name: "Normal",
  60113. height: math.unit(5 + 7/12, "feet"),
  60114. default: true
  60115. },
  60116. {
  60117. name: "Macro",
  60118. height: math.unit(390.42, "feet")
  60119. },
  60120. ]
  60121. ))
  60122. characterMakers.push(() => makeCharacter(
  60123. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60124. {
  60125. front: {
  60126. height: math.unit(7, "feet"),
  60127. weight: math.unit(250, "lb"),
  60128. name: "Front",
  60129. image: {
  60130. source: "./media/characters/vix-titan/front.svg",
  60131. extra: 460/428,
  60132. bottom: 15/475
  60133. },
  60134. extraAttributes: {
  60135. "pawWidth": {
  60136. name: "Paw Width",
  60137. power: 1,
  60138. type: "length",
  60139. base: math.unit(0.75, "feet")
  60140. },
  60141. }
  60142. },
  60143. },
  60144. [
  60145. {
  60146. name: "Normal",
  60147. height: math.unit(7, "feet"),
  60148. default: true
  60149. },
  60150. {
  60151. name: "Giant",
  60152. height: math.unit(1500, "feet")
  60153. },
  60154. {
  60155. name: "Mega",
  60156. height: math.unit(10, "miles")
  60157. },
  60158. {
  60159. name: "Giga",
  60160. height: math.unit(150, "miles")
  60161. },
  60162. {
  60163. name: "Tera",
  60164. height: math.unit(144000, "miles")
  60165. },
  60166. ]
  60167. ))
  60168. characterMakers.push(() => makeCharacter(
  60169. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60170. {
  60171. front: {
  60172. height: math.unit(6 + 2/12, "feet"),
  60173. name: "Front",
  60174. image: {
  60175. source: "./media/characters/reiku/front.svg",
  60176. extra: 1910/1757,
  60177. bottom: 103/2013
  60178. },
  60179. extraAttributes: {
  60180. "thighThickness": {
  60181. name: "Thigh Thickness",
  60182. power: 1,
  60183. type: "length",
  60184. base: math.unit(1.12, "feet")
  60185. },
  60186. "assThickness": {
  60187. name: "Ass Thickness",
  60188. power: 1,
  60189. type: "length",
  60190. base: math.unit(1.12*2, "feet")
  60191. },
  60192. }
  60193. },
  60194. side: {
  60195. height: math.unit(6 + 2/12, "feet"),
  60196. name: "Side",
  60197. image: {
  60198. source: "./media/characters/reiku/side.svg",
  60199. extra: 1846/1748,
  60200. bottom: 99/1945
  60201. },
  60202. extraAttributes: {
  60203. "thighThickness": {
  60204. name: "Thigh Thickness",
  60205. power: 1,
  60206. type: "length",
  60207. base: math.unit(1.12, "feet")
  60208. },
  60209. "assThickness": {
  60210. name: "Ass Thickness",
  60211. power: 1,
  60212. type: "length",
  60213. base: math.unit(1.12*2, "feet")
  60214. },
  60215. }
  60216. },
  60217. back: {
  60218. height: math.unit(6 + 2/12, "feet"),
  60219. name: "Back",
  60220. image: {
  60221. source: "./media/characters/reiku/back.svg",
  60222. extra: 1941/1786,
  60223. bottom: 34/1975
  60224. },
  60225. extraAttributes: {
  60226. "thighThickness": {
  60227. name: "Thigh Thickness",
  60228. power: 1,
  60229. type: "length",
  60230. base: math.unit(1.12, "feet")
  60231. },
  60232. "assThickness": {
  60233. name: "Ass Thickness",
  60234. power: 1,
  60235. type: "length",
  60236. base: math.unit(1.12*2, "feet")
  60237. },
  60238. }
  60239. },
  60240. head: {
  60241. height: math.unit(1.8, "feet"),
  60242. name: "Head",
  60243. image: {
  60244. source: "./media/characters/reiku/head.svg"
  60245. }
  60246. },
  60247. tailTop: {
  60248. height: math.unit(8.4, "feet"),
  60249. name: "Tail (Top)",
  60250. image: {
  60251. source: "./media/characters/reiku/tail-top.svg"
  60252. }
  60253. },
  60254. tailBottom: {
  60255. height: math.unit(8.4, "feet"),
  60256. name: "Tail (Bottom)",
  60257. image: {
  60258. source: "./media/characters/reiku/tail-bottom.svg"
  60259. }
  60260. },
  60261. foot: {
  60262. height: math.unit(2.6, "feet"),
  60263. name: "Foot",
  60264. image: {
  60265. source: "./media/characters/reiku/foot.svg"
  60266. }
  60267. },
  60268. footCurled: {
  60269. height: math.unit(2.3, "feet"),
  60270. name: "Foot (Curled)",
  60271. image: {
  60272. source: "./media/characters/reiku/foot-curled.svg"
  60273. }
  60274. },
  60275. footSide: {
  60276. height: math.unit(1.26, "feet"),
  60277. name: "Foot (Side)",
  60278. image: {
  60279. source: "./media/characters/reiku/foot-side.svg"
  60280. }
  60281. },
  60282. },
  60283. [
  60284. {
  60285. name: "Normal",
  60286. height: math.unit(6 + 2/12, "feet"),
  60287. default: true
  60288. },
  60289. ]
  60290. ))
  60291. characterMakers.push(() => makeCharacter(
  60292. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60293. {
  60294. front: {
  60295. height: math.unit(7, "feet"),
  60296. weight: math.unit(500, "kg"),
  60297. name: "Front",
  60298. image: {
  60299. source: "./media/characters/cialda/front.svg",
  60300. extra: 912/745,
  60301. bottom: 55/967
  60302. }
  60303. },
  60304. },
  60305. [
  60306. {
  60307. name: "Normal",
  60308. height: math.unit(7, "feet"),
  60309. default: true
  60310. },
  60311. ]
  60312. ))
  60313. characterMakers.push(() => makeCharacter(
  60314. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60315. {
  60316. side: {
  60317. height: math.unit(6, "feet"),
  60318. weight: math.unit(600, "lb"),
  60319. preyCapacity: math.unit(25, "liters"),
  60320. name: "Side",
  60321. image: {
  60322. source: "./media/characters/darkkin/side.svg",
  60323. extra: 1597/1447,
  60324. bottom: 101/1698
  60325. }
  60326. },
  60327. },
  60328. [
  60329. {
  60330. name: "Canon Height",
  60331. height: math.unit(568, "feet"),
  60332. default: true
  60333. },
  60334. ]
  60335. ))
  60336. characterMakers.push(() => makeCharacter(
  60337. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60338. {
  60339. front: {
  60340. height: math.unit(6, "feet"),
  60341. weight: math.unit(1500, "lb"),
  60342. preyCapacity: math.unit(3, "people"),
  60343. name: "Front",
  60344. image: {
  60345. source: "./media/characters/livnia/front.svg",
  60346. extra: 934/932,
  60347. bottom: 83/1017
  60348. }
  60349. },
  60350. back: {
  60351. height: math.unit(6, "feet"),
  60352. weight: math.unit(1500, "lb"),
  60353. preyCapacity: math.unit(3, "people"),
  60354. name: "Back",
  60355. image: {
  60356. source: "./media/characters/livnia/back.svg",
  60357. extra: 916/915,
  60358. bottom: 58/974
  60359. }
  60360. },
  60361. head: {
  60362. height: math.unit(1.53, "feet"),
  60363. name: "Head",
  60364. image: {
  60365. source: "./media/characters/livnia/head.svg"
  60366. }
  60367. },
  60368. maw: {
  60369. height: math.unit(0.78, "feet"),
  60370. name: "Maw",
  60371. image: {
  60372. source: "./media/characters/livnia/maw.svg"
  60373. }
  60374. },
  60375. genitals: {
  60376. height: math.unit(0.35, "feet"),
  60377. name: "Genitals",
  60378. image: {
  60379. source: "./media/characters/livnia/genitals.svg"
  60380. }
  60381. },
  60382. },
  60383. [
  60384. {
  60385. name: "Normal",
  60386. height: math.unit(1000, "feet"),
  60387. default: true
  60388. },
  60389. ]
  60390. ))
  60391. characterMakers.push(() => makeCharacter(
  60392. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60393. {
  60394. front: {
  60395. height: math.unit(4, "feet"),
  60396. weight: math.unit(73, "lb"),
  60397. name: "Front",
  60398. image: {
  60399. source: "./media/characters/hayaku/front.svg",
  60400. extra: 1011/888,
  60401. bottom: 33/1044
  60402. }
  60403. },
  60404. back: {
  60405. height: math.unit(4, "feet"),
  60406. weight: math.unit(73, "lb"),
  60407. name: "Back",
  60408. image: {
  60409. source: "./media/characters/hayaku/back.svg",
  60410. extra: 1040/930,
  60411. bottom: 20/1060
  60412. }
  60413. },
  60414. },
  60415. [
  60416. {
  60417. name: "Normal",
  60418. height: math.unit(4, "feet"),
  60419. default: true
  60420. },
  60421. ]
  60422. ))
  60423. characterMakers.push(() => makeCharacter(
  60424. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60425. {
  60426. front: {
  60427. height: math.unit(6 + 7/12, "feet"),
  60428. weight: math.unit(300, "lb"),
  60429. name: "Front",
  60430. image: {
  60431. source: "./media/characters/athena-bryzant/front.svg",
  60432. extra: 870/835,
  60433. bottom: 33/903
  60434. }
  60435. },
  60436. back: {
  60437. height: math.unit(6 + 7/12, "feet"),
  60438. weight: math.unit(300, "lb"),
  60439. name: "Back",
  60440. image: {
  60441. source: "./media/characters/athena-bryzant/back.svg",
  60442. extra: 858/823,
  60443. bottom: 30/888
  60444. }
  60445. },
  60446. head: {
  60447. height: math.unit(2.38, "feet"),
  60448. name: "Head",
  60449. image: {
  60450. source: "./media/characters/athena-bryzant/head.svg"
  60451. }
  60452. },
  60453. wings: {
  60454. height: math.unit(2.85, "feet"),
  60455. name: "Wings",
  60456. image: {
  60457. source: "./media/characters/athena-bryzant/wings.svg"
  60458. }
  60459. },
  60460. },
  60461. [
  60462. {
  60463. name: "Normal",
  60464. height: math.unit(6 + 7/12, "feet"),
  60465. default: true
  60466. },
  60467. {
  60468. name: "Big",
  60469. height: math.unit(8, "feet")
  60470. },
  60471. {
  60472. name: "Very Big",
  60473. height: math.unit(11, "feet")
  60474. },
  60475. ]
  60476. ))
  60477. characterMakers.push(() => makeCharacter(
  60478. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60479. {
  60480. side: {
  60481. height: math.unit(3, "meters"),
  60482. weight: math.unit(7500, "kg"),
  60483. preyCapacity: math.unit(1e12, "people"),
  60484. name: "Side",
  60485. image: {
  60486. source: "./media/characters/zel-kesh/side.svg",
  60487. extra: 910/407,
  60488. bottom: 147/1057
  60489. }
  60490. },
  60491. },
  60492. [
  60493. {
  60494. name: "Normal",
  60495. height: math.unit(3, "meters"),
  60496. default: true
  60497. },
  60498. ]
  60499. ))
  60500. characterMakers.push(() => makeCharacter(
  60501. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60502. {
  60503. front: {
  60504. height: math.unit(2, "meters"),
  60505. weight: math.unit(95, "kg"),
  60506. name: "Front",
  60507. image: {
  60508. source: "./media/characters/kane-fox/front.svg",
  60509. extra: 945/888,
  60510. bottom: 27/972
  60511. }
  60512. },
  60513. back: {
  60514. height: math.unit(2, "meters"),
  60515. weight: math.unit(95, "kg"),
  60516. name: "Back",
  60517. image: {
  60518. source: "./media/characters/kane-fox/back.svg",
  60519. extra: 959/914,
  60520. bottom: 15/974
  60521. }
  60522. },
  60523. frontLewd: {
  60524. height: math.unit(2, "meters"),
  60525. weight: math.unit(95, "kg"),
  60526. name: "Front (Lewd)",
  60527. image: {
  60528. source: "./media/characters/kane-fox/front-lewd.svg",
  60529. extra: 945/888,
  60530. bottom: 27/972
  60531. }
  60532. },
  60533. },
  60534. [
  60535. {
  60536. name: "Home Size",
  60537. height: math.unit(2, "meters"),
  60538. default: true
  60539. },
  60540. {
  60541. name: "Macro",
  60542. height: math.unit(200, "meters")
  60543. },
  60544. {
  60545. name: "Small Mega",
  60546. height: math.unit(3, "km")
  60547. },
  60548. {
  60549. name: "Mega",
  60550. height: math.unit(50, "km")
  60551. },
  60552. {
  60553. name: "Giga",
  60554. height: math.unit(200, "km")
  60555. },
  60556. {
  60557. name: "Giga+",
  60558. height: math.unit(2500, "km")
  60559. },
  60560. {
  60561. name: "Terra",
  60562. height: math.unit(70000, "km")
  60563. },
  60564. {
  60565. name: "Terra+",
  60566. height: math.unit(150000, "km")
  60567. },
  60568. {
  60569. name: "Terra++",
  60570. height: math.unit(400000, "km")
  60571. },
  60572. ]
  60573. ))
  60574. characterMakers.push(() => makeCharacter(
  60575. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60576. {
  60577. otter_front: {
  60578. height: math.unit(1.8, "meters"),
  60579. weight: math.unit(90, "kg"),
  60580. name: "Front",
  60581. image: {
  60582. source: "./media/characters/ayranus/otter-front.svg",
  60583. extra: 468/452,
  60584. bottom: 43/511
  60585. },
  60586. form: "otter",
  60587. },
  60588. otter_frontLewd: {
  60589. height: math.unit(1.8, "meters"),
  60590. weight: math.unit(90, "kg"),
  60591. name: "Front (Lewd)",
  60592. image: {
  60593. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60594. extra: 468/452,
  60595. bottom: 43/511
  60596. },
  60597. form: "otter",
  60598. },
  60599. lionbat_front: {
  60600. height: math.unit(1.8, "meters"),
  60601. weight: math.unit(90, "kg"),
  60602. name: "Front (Lewd)",
  60603. image: {
  60604. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60605. extra: 797/740,
  60606. bottom: 78/875
  60607. },
  60608. form: "lionbat",
  60609. },
  60610. paw: {
  60611. height: math.unit(1.5, "feet"),
  60612. name: "Paw",
  60613. image: {
  60614. source: "./media/characters/ayranus/paw.svg"
  60615. },
  60616. },
  60617. },
  60618. [
  60619. {
  60620. name: "Incognito",
  60621. height: math.unit(1.8, "meters"),
  60622. allForms: true
  60623. },
  60624. {
  60625. name: "Macro",
  60626. height: math.unit(60, "meters"),
  60627. allForms: true
  60628. },
  60629. {
  60630. name: "Macro+",
  60631. height: math.unit(200, "meters"),
  60632. allForms: true
  60633. },
  60634. {
  60635. name: "Mega",
  60636. height: math.unit(35, "km"),
  60637. allForms: true
  60638. },
  60639. {
  60640. name: "Giga",
  60641. height: math.unit(220, "km"),
  60642. allForms: true
  60643. },
  60644. {
  60645. name: "Giga+",
  60646. height: math.unit(1500, "km"),
  60647. allForms: true
  60648. },
  60649. {
  60650. name: "Terra",
  60651. height: math.unit(13000, "km"),
  60652. allForms: true
  60653. },
  60654. {
  60655. name: "Terra+",
  60656. height: math.unit(500000, "km"),
  60657. allForms: true
  60658. },
  60659. {
  60660. name: "Galactic",
  60661. height: math.unit(486080, "parsecs"),
  60662. default: true,
  60663. allForms: true
  60664. },
  60665. ],
  60666. {
  60667. "otter": {
  60668. name: "Otter",
  60669. default: true
  60670. },
  60671. "lionbat": {
  60672. name: "Lionbat",
  60673. },
  60674. }
  60675. ))
  60676. characterMakers.push(() => makeCharacter(
  60677. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60678. {
  60679. front: {
  60680. height: math.unit(7 + 4/12, "feet"),
  60681. weight: math.unit(400, "lb"),
  60682. name: "Front",
  60683. image: {
  60684. source: "./media/characters/proxy/front.svg",
  60685. extra: 1605/1542,
  60686. bottom: 55/1660
  60687. }
  60688. },
  60689. side: {
  60690. height: math.unit(7 + 4/12, "feet"),
  60691. weight: math.unit(400, "lb"),
  60692. name: "Side",
  60693. image: {
  60694. source: "./media/characters/proxy/side.svg",
  60695. extra: 794/759,
  60696. bottom: 6/800
  60697. }
  60698. },
  60699. hand: {
  60700. height: math.unit(1.54, "feet"),
  60701. name: "Hand",
  60702. image: {
  60703. source: "./media/characters/proxy/hand.svg"
  60704. }
  60705. },
  60706. paw: {
  60707. height: math.unit(1.53, "feet"),
  60708. name: "Paw",
  60709. image: {
  60710. source: "./media/characters/proxy/paw.svg"
  60711. }
  60712. },
  60713. maw: {
  60714. height: math.unit(1.9, "feet"),
  60715. name: "Maw",
  60716. image: {
  60717. source: "./media/characters/proxy/maw.svg"
  60718. }
  60719. },
  60720. },
  60721. [
  60722. {
  60723. name: "Normal",
  60724. height: math.unit(7 + 4/12, "feet"),
  60725. default: true
  60726. },
  60727. ]
  60728. ))
  60729. characterMakers.push(() => makeCharacter(
  60730. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60731. {
  60732. front: {
  60733. height: math.unit(4, "meters"),
  60734. name: "Front",
  60735. image: {
  60736. source: "./media/characters/crocozilla/front.svg",
  60737. extra: 1790/1742,
  60738. bottom: 78/1868
  60739. }
  60740. },
  60741. },
  60742. [
  60743. {
  60744. name: "Normal",
  60745. height: math.unit(4, "meters"),
  60746. default: true
  60747. },
  60748. ]
  60749. ))
  60750. characterMakers.push(() => makeCharacter(
  60751. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60752. {
  60753. front: {
  60754. height: math.unit(1.8, "meters"),
  60755. weight: math.unit(120, "kg"),
  60756. name: "Front",
  60757. image: {
  60758. source: "./media/characters/kurz/front.svg",
  60759. extra: 1960/1824,
  60760. bottom: 41/2001
  60761. }
  60762. },
  60763. back: {
  60764. height: math.unit(1.8, "meters"),
  60765. weight: math.unit(120, "kg"),
  60766. name: "Back",
  60767. image: {
  60768. source: "./media/characters/kurz/back.svg",
  60769. extra: 1906/1787,
  60770. bottom: 60/1966
  60771. }
  60772. },
  60773. frontLewd: {
  60774. height: math.unit(1.8, "meters"),
  60775. weight: math.unit(120, "kg"),
  60776. name: "Front (Lewd)",
  60777. image: {
  60778. source: "./media/characters/kurz/front-lewd.svg",
  60779. extra: 1960/1824,
  60780. bottom: 41/2001
  60781. }
  60782. },
  60783. maw: {
  60784. height: math.unit(0.69, "meters"),
  60785. name: "Maw",
  60786. image: {
  60787. source: "./media/characters/kurz/maw.svg"
  60788. }
  60789. },
  60790. },
  60791. [
  60792. {
  60793. name: "Original Size",
  60794. height: math.unit(1.8, "meters")
  60795. },
  60796. {
  60797. name: "Incognito Size",
  60798. height: math.unit(2.4, "meters"),
  60799. default: true
  60800. },
  60801. {
  60802. name: "Macro",
  60803. height: math.unit(30, "meters")
  60804. },
  60805. {
  60806. name: "Macro+",
  60807. height: math.unit(250, "meters")
  60808. },
  60809. {
  60810. name: "Mega",
  60811. height: math.unit(2, "km")
  60812. },
  60813. {
  60814. name: "Mega+",
  60815. height: math.unit(35, "km")
  60816. },
  60817. {
  60818. name: "Mega++",
  60819. height: math.unit(75, "km")
  60820. },
  60821. {
  60822. name: "Giga",
  60823. height: math.unit(250, "km")
  60824. },
  60825. {
  60826. name: "Terra",
  60827. height: math.unit(15000, "km")
  60828. },
  60829. {
  60830. name: "Terra+",
  60831. height: math.unit(2250000, "km")
  60832. },
  60833. ]
  60834. ))
  60835. characterMakers.push(() => makeCharacter(
  60836. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60837. {
  60838. front: {
  60839. height: math.unit(16 + 3/12, "feet"),
  60840. weight: math.unit(3575, "lb"),
  60841. name: "Front",
  60842. image: {
  60843. source: "./media/characters/nikita/front.svg",
  60844. extra: 1064/955,
  60845. bottom: 47/1111
  60846. }
  60847. },
  60848. },
  60849. [
  60850. {
  60851. name: "Normal",
  60852. height: math.unit(16 + 3/12, "feet"),
  60853. default: true
  60854. },
  60855. {
  60856. name: "Big",
  60857. height: math.unit(21, "feet")
  60858. },
  60859. {
  60860. name: "Biggest",
  60861. height: math.unit(50, "feet")
  60862. },
  60863. ]
  60864. ))
  60865. characterMakers.push(() => makeCharacter(
  60866. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60867. {
  60868. front: {
  60869. height: math.unit(1.92, "m"),
  60870. weight: math.unit(76, "kg"),
  60871. name: "Front",
  60872. image: {
  60873. source: "./media/characters/kyara/front.svg",
  60874. extra: 1550/1438,
  60875. bottom: 139/1689
  60876. }
  60877. },
  60878. back: {
  60879. height: math.unit(1.92, "m"),
  60880. weight: math.unit(76, "kg"),
  60881. name: "Back",
  60882. image: {
  60883. source: "./media/characters/kyara/back.svg",
  60884. extra: 1523/1427,
  60885. bottom: 83/1606
  60886. }
  60887. },
  60888. head: {
  60889. height: math.unit(1.22, "feet"),
  60890. name: "Head",
  60891. image: {
  60892. source: "./media/characters/kyara/head.svg"
  60893. }
  60894. },
  60895. maw: {
  60896. height: math.unit(0.73, "feet"),
  60897. name: "Maw",
  60898. image: {
  60899. source: "./media/characters/kyara/maw.svg"
  60900. }
  60901. },
  60902. paws: {
  60903. height: math.unit(0.95, "feet"),
  60904. name: "Paws",
  60905. image: {
  60906. source: "./media/characters/kyara/paws.svg"
  60907. }
  60908. },
  60909. },
  60910. [
  60911. {
  60912. name: "Normal",
  60913. height: math.unit(1.92, "meters"),
  60914. default: true
  60915. },
  60916. {
  60917. name: "Mini Macro",
  60918. height: math.unit(192, "meters")
  60919. },
  60920. {
  60921. name: "Macro",
  60922. height: math.unit(480, "meters")
  60923. },
  60924. {
  60925. name: "Mega Macro",
  60926. height: math.unit(1440, "meters")
  60927. },
  60928. ]
  60929. ))
  60930. characterMakers.push(() => makeCharacter(
  60931. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60932. {
  60933. front: {
  60934. height: math.unit(6, "feet"),
  60935. weight: math.unit(160, "lbs"),
  60936. preyCapacity: math.unit(0.05, "people"),
  60937. name: "Front",
  60938. image: {
  60939. source: "./media/characters/layla-amari/front.svg",
  60940. extra: 1922/1723,
  60941. bottom: 90/2012
  60942. }
  60943. },
  60944. back: {
  60945. height: math.unit(6, "feet"),
  60946. weight: math.unit(160, "lbs"),
  60947. preyCapacity: math.unit(0.05, "people"),
  60948. name: "Back",
  60949. image: {
  60950. source: "./media/characters/layla-amari/back.svg",
  60951. extra: 1917/1718,
  60952. bottom: 50/1967
  60953. }
  60954. },
  60955. frontDressed: {
  60956. height: math.unit(6, "feet"),
  60957. weight: math.unit(160, "lbs"),
  60958. preyCapacity: math.unit(0.05, "people"),
  60959. name: "Front (Dressed)",
  60960. image: {
  60961. source: "./media/characters/layla-amari/front-dressed.svg",
  60962. extra: 1922/1723,
  60963. bottom: 90/2012
  60964. }
  60965. },
  60966. face: {
  60967. height: math.unit(0.93, "feet"),
  60968. name: "Face",
  60969. image: {
  60970. source: "./media/characters/layla-amari/face.svg"
  60971. }
  60972. },
  60973. hand: {
  60974. height: math.unit(0.66 , "feet"),
  60975. name: "Hand",
  60976. image: {
  60977. source: "./media/characters/layla-amari/hand.svg"
  60978. }
  60979. },
  60980. foot: {
  60981. height: math.unit(1, "feet"),
  60982. name: "Foot",
  60983. image: {
  60984. source: "./media/characters/layla-amari/foot.svg"
  60985. }
  60986. },
  60987. necklace: {
  60988. height: math.unit(0.32, "feet"),
  60989. name: "Necklace",
  60990. image: {
  60991. source: "./media/characters/layla-amari/necklace.svg"
  60992. }
  60993. },
  60994. nipple: {
  60995. height: math.unit(0.2, "feet"),
  60996. name: "Nipple",
  60997. image: {
  60998. source: "./media/characters/layla-amari/nipple.svg"
  60999. }
  61000. },
  61001. slit: {
  61002. height: math.unit(0.26, "feet"),
  61003. name: "Slit",
  61004. image: {
  61005. source: "./media/characters/layla-amari/slit.svg"
  61006. }
  61007. },
  61008. },
  61009. [
  61010. {
  61011. name: "Natural",
  61012. height: math.unit(825, "feet"),
  61013. default: true
  61014. },
  61015. {
  61016. name: "Enhanced",
  61017. height: math.unit(8250, "feet")
  61018. },
  61019. {
  61020. name: "Apparent Size",
  61021. height: math.unit(9.04363e+8, "meters")
  61022. },
  61023. ]
  61024. ))
  61025. characterMakers.push(() => makeCharacter(
  61026. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61027. {
  61028. front: {
  61029. height: math.unit(1.3, "meters"),
  61030. name: "Front",
  61031. image: {
  61032. source: "./media/characters/percy/front.svg",
  61033. extra: 1444/1289,
  61034. bottom: 54/1498
  61035. }
  61036. },
  61037. },
  61038. [
  61039. {
  61040. name: "Normal",
  61041. height: math.unit(1.3, "meters"),
  61042. default: true
  61043. },
  61044. ]
  61045. ))
  61046. characterMakers.push(() => makeCharacter(
  61047. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61048. {
  61049. side: {
  61050. height: math.unit(10, "meters"),
  61051. name: "Side",
  61052. image: {
  61053. source: "./media/characters/grev/side.svg",
  61054. extra: 653/266,
  61055. bottom: 77/730
  61056. }
  61057. },
  61058. head: {
  61059. height: math.unit(16.2, "m"),
  61060. name: "Head",
  61061. image: {
  61062. source: "./media/characters/grev/head.svg"
  61063. }
  61064. },
  61065. dick: {
  61066. height: math.unit(2.8135932034, "m"),
  61067. name: "Dick",
  61068. image: {
  61069. source: "./media/characters/grev/dick.svg"
  61070. }
  61071. },
  61072. },
  61073. [
  61074. {
  61075. name: "Friend-Sized",
  61076. height: math.unit(80, "cm")
  61077. },
  61078. {
  61079. name: "Normal",
  61080. height: math.unit(10, "meters"),
  61081. default: true
  61082. },
  61083. {
  61084. name: "Macro",
  61085. height: math.unit(200, "meters")
  61086. },
  61087. ]
  61088. ))
  61089. characterMakers.push(() => makeCharacter(
  61090. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61091. {
  61092. front: {
  61093. height: math.unit(19.75, "feet"),
  61094. weight: math.unit(20000, "lb"),
  61095. name: "Front",
  61096. image: {
  61097. source: "./media/characters/azuuca/front.svg",
  61098. extra: 1593/1511,
  61099. bottom: 55/1648
  61100. }
  61101. },
  61102. },
  61103. [
  61104. {
  61105. name: "Normal",
  61106. height: math.unit(19.75, "feet"),
  61107. default: true
  61108. },
  61109. ]
  61110. ))
  61111. characterMakers.push(() => makeCharacter(
  61112. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61113. {
  61114. front: {
  61115. height: math.unit(15, "feet"),
  61116. weight: math.unit(1500, "lb"),
  61117. name: "Front",
  61118. image: {
  61119. source: "./media/characters/valuria/front.svg",
  61120. extra: 1588/1486,
  61121. bottom: 31/1619
  61122. }
  61123. },
  61124. },
  61125. [
  61126. {
  61127. name: "Normal",
  61128. height: math.unit(15, "feet"),
  61129. default: true
  61130. },
  61131. {
  61132. name: "Small",
  61133. height: math.unit(500, "feet")
  61134. },
  61135. {
  61136. name: "Macro",
  61137. height: math.unit(4000, "feet")
  61138. },
  61139. {
  61140. name: "Mega Macro",
  61141. height: math.unit(2000, "miles")
  61142. },
  61143. {
  61144. name: "Giga Macro",
  61145. height: math.unit(3e6, "miles")
  61146. },
  61147. ]
  61148. ))
  61149. characterMakers.push(() => makeCharacter(
  61150. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61151. {
  61152. front: {
  61153. height: math.unit(3500, "solarradii"),
  61154. name: "Front",
  61155. image: {
  61156. source: "./media/characters/terigaia/front.svg",
  61157. extra: 1531/1451,
  61158. bottom: 98/1629
  61159. }
  61160. },
  61161. },
  61162. [
  61163. {
  61164. name: "Normal",
  61165. height: math.unit(3500, "solarradii"),
  61166. default: true
  61167. },
  61168. ]
  61169. ))
  61170. characterMakers.push(() => makeCharacter(
  61171. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61172. {
  61173. front: {
  61174. height: math.unit(9.34, "feet"),
  61175. weight: math.unit(600, "lb"),
  61176. name: "Front",
  61177. image: {
  61178. source: "./media/characters/blair-blaziken/front.svg",
  61179. extra: 1557/1462,
  61180. bottom: 55/1612
  61181. }
  61182. },
  61183. },
  61184. [
  61185. {
  61186. name: "Normal",
  61187. height: math.unit(9.34, "feet"),
  61188. default: true
  61189. },
  61190. ]
  61191. ))
  61192. characterMakers.push(() => makeCharacter(
  61193. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61194. {
  61195. pistrogre_front: {
  61196. height: math.unit(10, "feet"),
  61197. weight: math.unit(10, "tons"),
  61198. name: "Front",
  61199. image: {
  61200. source: "./media/characters/braxia/pistrogre-front.svg",
  61201. extra: 1531/1334,
  61202. bottom: 114/1645
  61203. },
  61204. form: "pistrogre",
  61205. default: true
  61206. },
  61207. human_front: {
  61208. height: math.unit(10, "feet"),
  61209. weight: math.unit(10, "tons"),
  61210. name: "Front",
  61211. image: {
  61212. source: "./media/characters/braxia/human-front.svg",
  61213. extra: 1574/1501,
  61214. bottom: 37/1611
  61215. },
  61216. form: "human",
  61217. default: true
  61218. },
  61219. },
  61220. [
  61221. {
  61222. name: "Normal",
  61223. height: math.unit(10, "feet"),
  61224. default: true,
  61225. allForms: true
  61226. },
  61227. {
  61228. name: "Macro",
  61229. height: math.unit(1000, "feet"),
  61230. allForms: true
  61231. },
  61232. {
  61233. name: "Mega Macro",
  61234. height: math.unit(100, "miles"),
  61235. allForms: true
  61236. },
  61237. {
  61238. name: "Cosmic",
  61239. height: math.unit(1000000, "lightyears"),
  61240. allForms: true
  61241. },
  61242. {
  61243. name: "ϐѮԆԬӁꭍϞԢ",
  61244. height: math.unit(1000, "multiverses"),
  61245. allForms: true
  61246. },
  61247. ],
  61248. {
  61249. "pistrogre": {
  61250. name: "Pistrogre",
  61251. default: true
  61252. },
  61253. "human": {
  61254. name: "Human",
  61255. },
  61256. }
  61257. ))
  61258. characterMakers.push(() => makeCharacter(
  61259. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61260. {
  61261. front: {
  61262. height: math.unit(6 + 1/12, "feet"),
  61263. weight: math.unit(280, "lb"),
  61264. name: "Front",
  61265. image: {
  61266. source: "./media/characters/kiriga-yato/front.svg",
  61267. extra: 445/394,
  61268. bottom: 11/456
  61269. }
  61270. },
  61271. },
  61272. [
  61273. {
  61274. name: "Descended",
  61275. height: math.unit(3, "feet")
  61276. },
  61277. {
  61278. name: "Average",
  61279. height: math.unit(6 + 1/12, "feet"),
  61280. default: true
  61281. },
  61282. {
  61283. name: "Ascended",
  61284. height: math.unit(9 + 2/12, "feet")
  61285. },
  61286. ]
  61287. ))
  61288. characterMakers.push(() => makeCharacter(
  61289. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61290. {
  61291. front: {
  61292. height: math.unit(6, "feet"),
  61293. weight: math.unit(150, "lb"),
  61294. name: "Front",
  61295. image: {
  61296. source: "./media/characters/kylie/front.svg",
  61297. extra: 1114/1046,
  61298. bottom: 65/1179
  61299. },
  61300. extraAttributes: {
  61301. "hoofSize": {
  61302. name: "Hoof Size",
  61303. power: 2,
  61304. type: "area",
  61305. base: math.unit(0.034, "m^2")
  61306. },
  61307. "footSize": {
  61308. name: "Foot Size",
  61309. power: 2,
  61310. type: "area",
  61311. base: math.unit(0.75, "m^2")
  61312. },
  61313. }
  61314. },
  61315. side: {
  61316. height: math.unit(6, "feet"),
  61317. weight: math.unit(150, "lb"),
  61318. name: "Side",
  61319. image: {
  61320. source: "./media/characters/kylie/side.svg",
  61321. extra: 1178/1110,
  61322. bottom: 21/1199
  61323. },
  61324. extraAttributes: {
  61325. "hoofSize": {
  61326. name: "Hoof Size",
  61327. power: 2,
  61328. type: "area",
  61329. base: math.unit(0.034, "m^2")
  61330. },
  61331. "footSize": {
  61332. name: "Foot Size",
  61333. power: 2,
  61334. type: "area",
  61335. base: math.unit(0.75, "m^2")
  61336. },
  61337. }
  61338. },
  61339. back: {
  61340. height: math.unit(6, "feet"),
  61341. weight: math.unit(150, "lb"),
  61342. name: "Back",
  61343. image: {
  61344. source: "./media/characters/kylie/back.svg",
  61345. extra: 1115/1047,
  61346. bottom: 66/1181
  61347. },
  61348. extraAttributes: {
  61349. "hoofSize": {
  61350. name: "Hoof Size",
  61351. power: 2,
  61352. type: "area",
  61353. base: math.unit(0.034, "m^2")
  61354. },
  61355. "footSize": {
  61356. name: "Foot Size",
  61357. power: 2,
  61358. type: "area",
  61359. base: math.unit(0.75, "m^2")
  61360. },
  61361. }
  61362. },
  61363. head: {
  61364. height: math.unit(1.85, "feet"),
  61365. name: "Head",
  61366. image: {
  61367. source: "./media/characters/kylie/head.svg"
  61368. }
  61369. },
  61370. },
  61371. [
  61372. {
  61373. name: "Normal",
  61374. height: math.unit(90, "meters"),
  61375. default: true
  61376. },
  61377. ]
  61378. ))
  61379. characterMakers.push(() => makeCharacter(
  61380. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61381. {
  61382. front: {
  61383. height: math.unit(245, "feet"),
  61384. weight: math.unit(400000, "lb"),
  61385. name: "Front",
  61386. image: {
  61387. source: "./media/characters/sabado/front.svg",
  61388. extra: 1309/1164,
  61389. bottom: 29/1338
  61390. }
  61391. },
  61392. },
  61393. [
  61394. {
  61395. name: "Normal",
  61396. height: math.unit(245, "feet"),
  61397. default: true
  61398. },
  61399. ]
  61400. ))
  61401. characterMakers.push(() => makeCharacter(
  61402. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61403. {
  61404. shark_front: {
  61405. height: math.unit(2, "meters"),
  61406. weight: math.unit(200, "kg"),
  61407. name: "Front",
  61408. image: {
  61409. source: "./media/characters/zechal/shark-front.svg",
  61410. extra: 969/925,
  61411. bottom: 74/1043
  61412. },
  61413. form: "shark",
  61414. },
  61415. shark_back: {
  61416. height: math.unit(2, "meters"),
  61417. weight: math.unit(200, "kg"),
  61418. name: "Back",
  61419. image: {
  61420. source: "./media/characters/zechal/shark-back.svg",
  61421. extra: 994/949,
  61422. bottom: 176/1170
  61423. },
  61424. form: "shark",
  61425. },
  61426. shark_frontLewd: {
  61427. height: math.unit(2, "meters"),
  61428. weight: math.unit(200, "kg"),
  61429. name: "Front (Lewd)",
  61430. image: {
  61431. source: "./media/characters/zechal/shark-front-lewd.svg",
  61432. extra: 969/925,
  61433. bottom: 74/1043
  61434. },
  61435. form: "shark",
  61436. },
  61437. shark_side: {
  61438. height: math.unit(1.56, "meters"),
  61439. weight: math.unit(200, "kg"),
  61440. name: "Side",
  61441. image: {
  61442. source: "./media/characters/zechal/shark-side.svg"
  61443. },
  61444. form: "shark",
  61445. },
  61446. dragon_front: {
  61447. height: math.unit(2, "meters"),
  61448. weight: math.unit(200, "kg"),
  61449. name: "Front",
  61450. image: {
  61451. source: "./media/characters/zechal/dragon-front.svg",
  61452. extra: 1041/925,
  61453. bottom: 74/1115
  61454. },
  61455. form: "dragon",
  61456. },
  61457. dragon_back: {
  61458. height: math.unit(2, "meters"),
  61459. weight: math.unit(200, "kg"),
  61460. name: "Back",
  61461. image: {
  61462. source: "./media/characters/zechal/dragon-back.svg",
  61463. extra: 1061/949,
  61464. bottom: 176/1237
  61465. },
  61466. form: "dragon",
  61467. },
  61468. dragon_frontLewd: {
  61469. height: math.unit(2, "meters"),
  61470. weight: math.unit(200, "kg"),
  61471. name: "Front (Lewd)",
  61472. image: {
  61473. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61474. extra: 1041/925,
  61475. bottom: 74/1115
  61476. },
  61477. form: "dragon",
  61478. },
  61479. dragon_side: {
  61480. height: math.unit(1.56, "meters"),
  61481. weight: math.unit(200, "kg"),
  61482. name: "Side",
  61483. image: {
  61484. source: "./media/characters/zechal/dragon-side.svg"
  61485. },
  61486. form: "dragon",
  61487. },
  61488. foot: {
  61489. height: math.unit(0.5, "meters"),
  61490. name: "Foot",
  61491. image: {
  61492. source: "./media/characters/zechal/foot.svg"
  61493. }
  61494. },
  61495. sheathFront: {
  61496. height: math.unit(0.45, "meters"),
  61497. name: "Sheath (Front)",
  61498. image: {
  61499. source: "./media/characters/zechal/sheath-front.svg"
  61500. }
  61501. },
  61502. sheathSide: {
  61503. height: math.unit(0.45, "meters"),
  61504. name: "Sheath (Side)",
  61505. image: {
  61506. source: "./media/characters/zechal/sheath-side.svg"
  61507. }
  61508. },
  61509. },
  61510. [
  61511. {
  61512. name: "Incognito",
  61513. height: math.unit(2, "meters"),
  61514. allForms: true
  61515. },
  61516. {
  61517. name: "Small Rampage",
  61518. height: math.unit(25, "meters"),
  61519. allForms: true
  61520. },
  61521. {
  61522. name: "Home Size",
  61523. height: math.unit(250, "meters"),
  61524. allForms: true,
  61525. default: true
  61526. },
  61527. {
  61528. name: "Macro+",
  61529. height: math.unit(700, "meters"),
  61530. allForms: true
  61531. },
  61532. {
  61533. name: "Small Mega",
  61534. height: math.unit(3, "km"),
  61535. allForms: true
  61536. },
  61537. {
  61538. name: "Mega",
  61539. height: math.unit(15, "km"),
  61540. allForms: true
  61541. },
  61542. {
  61543. name: "Giga",
  61544. height: math.unit(300, "km"),
  61545. allForms: true
  61546. },
  61547. {
  61548. name: "Giga+",
  61549. height: math.unit(1750, "km"),
  61550. allForms: true
  61551. },
  61552. {
  61553. name: "Continental",
  61554. height: math.unit(5000, "km"),
  61555. allForms: true
  61556. },
  61557. {
  61558. name: "Terra",
  61559. height: math.unit(20000, "km"),
  61560. allForms: true
  61561. },
  61562. {
  61563. name: "Terra+",
  61564. height: math.unit(300000, "km"),
  61565. allForms: true
  61566. },
  61567. {
  61568. name: "Solar",
  61569. height: math.unit(40000000, "km"),
  61570. allForms: true
  61571. },
  61572. {
  61573. name: "Galactic",
  61574. height: math.unit(810133, "parsecs"),
  61575. allForms: true
  61576. },
  61577. {
  61578. name: "Universal",
  61579. height: math.unit(25, "universes"),
  61580. allForms: true
  61581. },
  61582. ],
  61583. {
  61584. "shark": {
  61585. name: "Shark",
  61586. default: true
  61587. },
  61588. "dragon": {
  61589. name: "Dragon",
  61590. },
  61591. }
  61592. ))
  61593. characterMakers.push(() => makeCharacter(
  61594. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61595. {
  61596. front: {
  61597. height: math.unit(2.2, "meters"),
  61598. weight: math.unit(150, "kg"),
  61599. name: "Front",
  61600. image: {
  61601. source: "./media/characters/sergis/front.svg",
  61602. extra: 1314/1312,
  61603. bottom: 112/1426
  61604. }
  61605. },
  61606. back: {
  61607. height: math.unit(2.2, "meters"),
  61608. weight: math.unit(150, "kg"),
  61609. name: "Back",
  61610. image: {
  61611. source: "./media/characters/sergis/back.svg",
  61612. extra: 1335/1333,
  61613. bottom: 19/1354
  61614. }
  61615. },
  61616. frontLewd: {
  61617. height: math.unit(2.2, "meters"),
  61618. weight: math.unit(150, "kg"),
  61619. name: "Front (Lewd)",
  61620. image: {
  61621. source: "./media/characters/sergis/front-lewd.svg",
  61622. extra: 1314/1312,
  61623. bottom: 112/1426
  61624. }
  61625. },
  61626. frontDressed: {
  61627. height: math.unit(2.2, "meters"),
  61628. weight: math.unit(150, "kg"),
  61629. name: "Front (Dressed)",
  61630. image: {
  61631. source: "./media/characters/sergis/front-dressed.svg",
  61632. extra: 1330/1328,
  61633. bottom: 95/1425
  61634. }
  61635. },
  61636. frontDressedLewd: {
  61637. height: math.unit(2.2, "meters"),
  61638. weight: math.unit(150, "kg"),
  61639. name: "Front (Dressed, Lewd)",
  61640. image: {
  61641. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61642. extra: 1330/1328,
  61643. bottom: 95/1425
  61644. }
  61645. },
  61646. maw: {
  61647. height: math.unit(0.48, "meters"),
  61648. name: "Maw",
  61649. image: {
  61650. source: "./media/characters/sergis/maw.svg"
  61651. }
  61652. },
  61653. sheath: {
  61654. height: math.unit(0.38, "meters"),
  61655. name: "Sheath",
  61656. image: {
  61657. source: "./media/characters/sergis/sheath.svg"
  61658. }
  61659. },
  61660. },
  61661. [
  61662. {
  61663. name: "Incognito Size",
  61664. height: math.unit(2.2, "meters")
  61665. },
  61666. {
  61667. name: "Small Macro",
  61668. height: math.unit(40, "meters")
  61669. },
  61670. {
  61671. name: "Macro",
  61672. height: math.unit(150, "meters")
  61673. },
  61674. {
  61675. name: "Macro+",
  61676. height: math.unit(300, "meters")
  61677. },
  61678. {
  61679. name: "Mega",
  61680. height: math.unit(2.5, "km")
  61681. },
  61682. {
  61683. name: "Mega+",
  61684. height: math.unit(30, "km")
  61685. },
  61686. {
  61687. name: "Home Size",
  61688. height: math.unit(300, "km"),
  61689. default: true
  61690. },
  61691. {
  61692. name: "Giga+",
  61693. height: math.unit(1000, "km")
  61694. },
  61695. {
  61696. name: "Giga++",
  61697. height: math.unit(6000, "km")
  61698. },
  61699. {
  61700. name: "Terra",
  61701. height: math.unit(70000, "km")
  61702. },
  61703. {
  61704. name: "Terra+",
  61705. height: math.unit(200000, "km")
  61706. },
  61707. {
  61708. name: "Galactic",
  61709. height: math.unit(634200, "lightyears")
  61710. },
  61711. ]
  61712. ))
  61713. characterMakers.push(() => makeCharacter(
  61714. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61715. {
  61716. standard: {
  61717. height: math.unit(1 + 5/12, "feet"),
  61718. name: "Standard",
  61719. image: {
  61720. source: "./media/characters/spade/standard.svg",
  61721. extra: 1794/1703,
  61722. bottom: 115/1909
  61723. }
  61724. },
  61725. disguised: {
  61726. height: math.unit(1 + 5/12, "feet"),
  61727. name: "Disguised",
  61728. image: {
  61729. source: "./media/characters/spade/disguised.svg",
  61730. extra: 1794/1700,
  61731. bottom: 98/1892
  61732. }
  61733. },
  61734. },
  61735. [
  61736. {
  61737. name: "Normal",
  61738. height: math.unit(1 + 5/12, "feet"),
  61739. default: true
  61740. },
  61741. ]
  61742. ))
  61743. characterMakers.push(() => makeCharacter(
  61744. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61745. {
  61746. frontNsfw: {
  61747. height: math.unit(5, "meters"),
  61748. weight: math.unit(2000, "kg"),
  61749. preyCapacity: math.unit(5, "people"),
  61750. name: "Front (NSFW)",
  61751. image: {
  61752. source: "./media/characters/zeanlain/front-nsfw.svg",
  61753. extra: 1087/938,
  61754. bottom: 93/1180
  61755. },
  61756. extraAttributes: {
  61757. "wingspan": {
  61758. name: "Wingspan",
  61759. power: 1,
  61760. type: "length",
  61761. base: math.unit(10, "meters")
  61762. },
  61763. "footSize": {
  61764. name: "Foot Size",
  61765. power: 1,
  61766. type: "length",
  61767. base: math.unit(0.68, "meters")
  61768. },
  61769. "cockLength": {
  61770. name: "Cock Length",
  61771. power: 1,
  61772. type: "length",
  61773. base: math.unit(1.69, "meters")
  61774. },
  61775. "ballVolume": {
  61776. name: "Ball Volume",
  61777. power: 3,
  61778. type: "volume",
  61779. base: math.unit(0.028, "m^3")
  61780. },
  61781. }
  61782. },
  61783. front: {
  61784. height: math.unit(5, "meters"),
  61785. weight: math.unit(2000, "kg"),
  61786. preyCapacity: math.unit(3, "people"),
  61787. name: "Front",
  61788. image: {
  61789. source: "./media/characters/zeanlain/front.svg",
  61790. extra: 1087/938,
  61791. bottom: 93/1180
  61792. },
  61793. extraAttributes: {
  61794. "wingspan": {
  61795. name: "Wingspan",
  61796. power: 1,
  61797. type: "length",
  61798. base: math.unit(10, "meters")
  61799. },
  61800. "footSize": {
  61801. name: "Foot Size",
  61802. power: 1,
  61803. type: "length",
  61804. base: math.unit(0.68, "meters")
  61805. },
  61806. }
  61807. },
  61808. },
  61809. [
  61810. {
  61811. name: "Normal",
  61812. height: math.unit(5, "meters"),
  61813. default: true
  61814. },
  61815. ]
  61816. ))
  61817. characterMakers.push(() => makeCharacter(
  61818. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61819. {
  61820. front: {
  61821. height: math.unit(10, "meters"),
  61822. weight: math.unit(250000, "kg"),
  61823. name: "Front",
  61824. image: {
  61825. source: "./media/characters/airamis/front.svg",
  61826. extra: 865/835,
  61827. bottom: 13/878
  61828. }
  61829. },
  61830. },
  61831. [
  61832. {
  61833. name: "Normal",
  61834. height: math.unit(10, "meters"),
  61835. default: true
  61836. },
  61837. ]
  61838. ))
  61839. characterMakers.push(() => makeCharacter(
  61840. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61841. {
  61842. front: {
  61843. height: math.unit(3 + 3/12, "feet"),
  61844. weight: math.unit(75, "lb"),
  61845. name: "Front",
  61846. image: {
  61847. source: "./media/characters/corra-tourmaline/front.svg",
  61848. extra: 1037/864,
  61849. bottom: 39/1076
  61850. }
  61851. },
  61852. back: {
  61853. height: math.unit(3 + 3/12, "feet"),
  61854. weight: math.unit(75, "lb"),
  61855. name: "Back",
  61856. image: {
  61857. source: "./media/characters/corra-tourmaline/back.svg",
  61858. extra: 1022/849,
  61859. bottom: 26/1048
  61860. }
  61861. },
  61862. dressed: {
  61863. height: math.unit(3 + 3/12, "feet"),
  61864. weight: math.unit(75, "lb"),
  61865. name: "Dressed",
  61866. image: {
  61867. source: "./media/characters/corra-tourmaline/dressed.svg",
  61868. extra: 1037/864,
  61869. bottom: 39/1076
  61870. }
  61871. },
  61872. beans: {
  61873. height: math.unit(0.37, "feet"),
  61874. name: "Beans",
  61875. image: {
  61876. source: "./media/characters/corra-tourmaline/beans.svg"
  61877. }
  61878. },
  61879. },
  61880. [
  61881. {
  61882. name: "Normal",
  61883. height: math.unit(3 + 3/12, "feet"),
  61884. default: true
  61885. },
  61886. {
  61887. name: "Macro",
  61888. height: math.unit(32, "feet")
  61889. },
  61890. ]
  61891. ))
  61892. characterMakers.push(() => makeCharacter(
  61893. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61894. {
  61895. front: {
  61896. height: math.unit(6 + 2/12, "feet"),
  61897. weight: math.unit(203, "lb"),
  61898. name: "Front",
  61899. image: {
  61900. source: "./media/characters/maki-kawa/front.svg",
  61901. extra: 950/890,
  61902. bottom: 62/1012
  61903. }
  61904. },
  61905. back: {
  61906. height: math.unit(6 + 2/12, "feet"),
  61907. weight: math.unit(203, "lb"),
  61908. name: "Back",
  61909. image: {
  61910. source: "./media/characters/maki-kawa/back.svg",
  61911. extra: 953/878,
  61912. bottom: 49/1002
  61913. }
  61914. },
  61915. frontBarista: {
  61916. height: math.unit(6 + 2/12, "feet"),
  61917. weight: math.unit(203, "lb"),
  61918. name: "Front (Barista)",
  61919. image: {
  61920. source: "./media/characters/maki-kawa/front-barista.svg",
  61921. extra: 943/883,
  61922. bottom: 69/1012
  61923. }
  61924. },
  61925. backBarista: {
  61926. height: math.unit(6 + 2/12, "feet"),
  61927. weight: math.unit(203, "lb"),
  61928. name: "Back (Barista)",
  61929. image: {
  61930. source: "./media/characters/maki-kawa/back-barista.svg",
  61931. extra: 953/878,
  61932. bottom: 49/1002
  61933. }
  61934. },
  61935. frontWrestler: {
  61936. height: math.unit(6 + 2/12, "feet"),
  61937. weight: math.unit(203, "lb"),
  61938. name: "Front (Wrestler)",
  61939. image: {
  61940. source: "./media/characters/maki-kawa/front-wrestler.svg",
  61941. extra: 950/890,
  61942. bottom: 62/1012
  61943. }
  61944. },
  61945. backWrestler: {
  61946. height: math.unit(6 + 2/12, "feet"),
  61947. weight: math.unit(203, "lb"),
  61948. name: "Back (Wrestler)",
  61949. image: {
  61950. source: "./media/characters/maki-kawa/back-wrestler.svg",
  61951. extra: 953/878,
  61952. bottom: 49/1002
  61953. }
  61954. },
  61955. headFront: {
  61956. height: math.unit(1.64, "feet"),
  61957. name: "Head (Front)",
  61958. image: {
  61959. source: "./media/characters/maki-kawa/head-front.svg"
  61960. }
  61961. },
  61962. headSide: {
  61963. height: math.unit(1.59, "feet"),
  61964. name: "Head (Side)",
  61965. image: {
  61966. source: "./media/characters/maki-kawa/head-side.svg"
  61967. }
  61968. },
  61969. paw: {
  61970. height: math.unit(0.9, "feet"),
  61971. name: "Paw",
  61972. image: {
  61973. source: "./media/characters/maki-kawa/paw.svg"
  61974. }
  61975. },
  61976. },
  61977. [
  61978. {
  61979. name: "Normal",
  61980. height: math.unit(6 + 2/12, "feet"),
  61981. default: true
  61982. },
  61983. {
  61984. name: "Macro",
  61985. height: math.unit(617, "feet")
  61986. },
  61987. ]
  61988. ))
  61989. characterMakers.push(() => makeCharacter(
  61990. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  61991. {
  61992. front: {
  61993. height: math.unit(10, "feet"),
  61994. weight: math.unit(1500, "lb"),
  61995. name: "Front",
  61996. image: {
  61997. source: "./media/characters/lennox/front.svg",
  61998. extra: 1623/1496,
  61999. bottom: 18/1641
  62000. }
  62001. },
  62002. back: {
  62003. height: math.unit(10, "feet"),
  62004. weight: math.unit(1500, "lb"),
  62005. name: "Back",
  62006. image: {
  62007. source: "./media/characters/lennox/back.svg",
  62008. extra: 1641/1481,
  62009. bottom: 13/1654
  62010. }
  62011. },
  62012. maw: {
  62013. height: math.unit(2.94, "feet"),
  62014. name: "Maw",
  62015. image: {
  62016. source: "./media/characters/lennox/maw.svg"
  62017. }
  62018. },
  62019. },
  62020. [
  62021. {
  62022. name: "Micro",
  62023. height: math.unit(1, "inch")
  62024. },
  62025. {
  62026. name: "Normal",
  62027. height: math.unit(10, "feet"),
  62028. default: true
  62029. },
  62030. {
  62031. name: "Macro",
  62032. height: math.unit(200, "feet")
  62033. },
  62034. ]
  62035. ))
  62036. characterMakers.push(() => makeCharacter(
  62037. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62038. {
  62039. frontDressed: {
  62040. height: math.unit(15 + 7/12, "feet"),
  62041. weight: math.unit(5000, "lb"),
  62042. name: "Front (Dressed)",
  62043. image: {
  62044. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62045. extra: 1136/1023,
  62046. bottom: 51/1187
  62047. }
  62048. },
  62049. backDressed: {
  62050. height: math.unit(15 + 7/12, "feet"),
  62051. weight: math.unit(5000, "lb"),
  62052. name: "Back (Dressed)",
  62053. image: {
  62054. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62055. extra: 2359/2143,
  62056. bottom: 103/2462
  62057. }
  62058. },
  62059. front: {
  62060. height: math.unit(15 + 7/12, "feet"),
  62061. weight: math.unit(5000, "lb"),
  62062. name: "Front",
  62063. image: {
  62064. source: "./media/characters/vyse-iron-thunder/front.svg",
  62065. extra: 1136/1023,
  62066. bottom: 51/1187
  62067. }
  62068. },
  62069. hand: {
  62070. height: math.unit(2.36, "feet"),
  62071. name: "Hand",
  62072. image: {
  62073. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62074. }
  62075. },
  62076. foot: {
  62077. height: math.unit(1.72, "feet"),
  62078. name: "Foot",
  62079. image: {
  62080. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62081. }
  62082. },
  62083. mouth: {
  62084. height: math.unit(2, "feet"),
  62085. name: "Mouth",
  62086. image: {
  62087. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62088. }
  62089. },
  62090. eye: {
  62091. height: math.unit(0.58, "feet"),
  62092. name: "Eye",
  62093. image: {
  62094. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62095. }
  62096. },
  62097. },
  62098. [
  62099. {
  62100. name: "Normal",
  62101. height: math.unit(15 + 7/12, "feet"),
  62102. default: true
  62103. },
  62104. {
  62105. name: "Macro",
  62106. height: math.unit(157, "feet")
  62107. },
  62108. {
  62109. name: "Macro+",
  62110. height: math.unit(1570, "feet")
  62111. },
  62112. {
  62113. name: "Macro++",
  62114. height: math.unit(15700, "feet")
  62115. },
  62116. {
  62117. name: "Macro+++",
  62118. height: math.unit(157000, "feet")
  62119. },
  62120. {
  62121. name: "Macro++++",
  62122. height: math.unit(1570000, "feet")
  62123. },
  62124. ]
  62125. ))
  62126. characterMakers.push(() => makeCharacter(
  62127. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62128. {
  62129. side: {
  62130. height: math.unit(6, "feet"),
  62131. weight: math.unit(115, "lb"),
  62132. name: "Side",
  62133. image: {
  62134. source: "./media/characters/moonbeam/side.svg",
  62135. extra: 839/485,
  62136. bottom: 60/899
  62137. }
  62138. },
  62139. },
  62140. [
  62141. {
  62142. name: "Normal",
  62143. height: math.unit(6, "feet"),
  62144. default: true
  62145. },
  62146. ]
  62147. ))
  62148. characterMakers.push(() => makeCharacter(
  62149. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62150. {
  62151. front: {
  62152. height: math.unit(3500, "miles"),
  62153. weight: math.unit(1659, "petatonnes"),
  62154. name: "Front",
  62155. image: {
  62156. source: "./media/characters/baltica/front.svg",
  62157. extra: 429/428,
  62158. bottom: 41/470
  62159. }
  62160. },
  62161. back: {
  62162. height: math.unit(3500, "miles"),
  62163. weight: math.unit(1659, "petatonnes"),
  62164. name: "Back",
  62165. image: {
  62166. source: "./media/characters/baltica/back.svg",
  62167. extra: 452/451,
  62168. bottom: 8/460
  62169. }
  62170. },
  62171. },
  62172. [
  62173. {
  62174. name: "Gigamacro",
  62175. height: math.unit(3500, "miles"),
  62176. default: true
  62177. },
  62178. ]
  62179. ))
  62180. characterMakers.push(() => makeCharacter(
  62181. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62182. {
  62183. front: {
  62184. height: math.unit(6 + 10/12, "feet"),
  62185. weight: math.unit(200, "lb"),
  62186. name: "Front",
  62187. image: {
  62188. source: "./media/characters/shadow-wolf/front.svg",
  62189. extra: 1931/1760,
  62190. bottom: 88/2019
  62191. }
  62192. },
  62193. },
  62194. [
  62195. {
  62196. name: "Normal",
  62197. height: math.unit(6 + 10/12, "feet"),
  62198. default: true
  62199. },
  62200. ]
  62201. ))
  62202. //characters
  62203. function makeCharacters() {
  62204. const results = [];
  62205. characterMakers.forEach(character => {
  62206. results.push(character());
  62207. });
  62208. return results;
  62209. }