less copy protection, more size visualization
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

64844 Zeilen
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. }
  2367. //species
  2368. function getSpeciesInfo(speciesList) {
  2369. let result = new Set();
  2370. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2371. result.add(entry)
  2372. });
  2373. return Array.from(result);
  2374. };
  2375. function getSpeciesInfoHelper(species) {
  2376. if (!speciesData[species]) {
  2377. console.warn(species + " doesn't exist");
  2378. return [];
  2379. }
  2380. if (speciesData[species].parents) {
  2381. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2382. } else {
  2383. return [species];
  2384. }
  2385. }
  2386. characterMakers.push(() => makeCharacter(
  2387. {
  2388. name: "Fen",
  2389. species: ["crux"],
  2390. description: {
  2391. title: "Bio",
  2392. text: "Very furry. Sheds on everything."
  2393. },
  2394. tags: [
  2395. "anthro",
  2396. "goo"
  2397. ]
  2398. },
  2399. {
  2400. front: {
  2401. height: math.unit(12, "feet"),
  2402. weight: math.unit(2400, "lb"),
  2403. preyCapacity: math.unit(1, "people"),
  2404. name: "Front",
  2405. image: {
  2406. source: "./media/characters/fen/front.svg",
  2407. extra: 1804/1562,
  2408. bottom: 205/2009
  2409. },
  2410. extraAttributes: {
  2411. pawSize: {
  2412. name: "Paw Size",
  2413. power: 2,
  2414. type: "area",
  2415. base: math.unit(0.35, "m^2")
  2416. }
  2417. }
  2418. },
  2419. diving: {
  2420. height: math.unit(4.9, "meters"),
  2421. weight: math.unit(2400, "lb"),
  2422. name: "Diving",
  2423. image: {
  2424. source: "./media/characters/fen/diving.svg"
  2425. }
  2426. },
  2427. sleeby: {
  2428. height: math.unit(3.45, "meters"),
  2429. weight: math.unit(2400, "lb"),
  2430. name: "Sleeby",
  2431. image: {
  2432. source: "./media/characters/fen/sleeby.svg"
  2433. }
  2434. },
  2435. goo: {
  2436. height: math.unit(12, "feet"),
  2437. weight: math.unit(3600, "lb"),
  2438. volume: math.unit(1000, "liters"),
  2439. preyCapacity: math.unit(6, "people"),
  2440. name: "Goo",
  2441. image: {
  2442. source: "./media/characters/fen/goo.svg",
  2443. extra: 1307/1071,
  2444. bottom: 134/1441
  2445. }
  2446. },
  2447. horror: {
  2448. height: math.unit(13.6, "feet"),
  2449. weight: math.unit(2400, "lb"),
  2450. preyCapacity: math.unit(1, "people"),
  2451. name: "Horror",
  2452. image: {
  2453. source: "./media/characters/fen/horror.svg",
  2454. extra: 893/797,
  2455. bottom: 0/893
  2456. }
  2457. },
  2458. gooNsfw: {
  2459. height: math.unit(12, "feet"),
  2460. weight: math.unit(3750, "lb"),
  2461. volume: math.unit(1000, "liters"),
  2462. preyCapacity: math.unit(6, "people"),
  2463. name: "Goo (NSFW)",
  2464. image: {
  2465. source: "./media/characters/fen/goo-nsfw.svg",
  2466. extra: 1875/1734,
  2467. bottom: 122/1997
  2468. }
  2469. },
  2470. maw: {
  2471. height: math.unit(5.03, "feet"),
  2472. name: "Maw",
  2473. image: {
  2474. source: "./media/characters/fen/maw.svg"
  2475. }
  2476. },
  2477. gooCeiling: {
  2478. height: math.unit(6.6, "feet"),
  2479. weight: math.unit(3000, "lb"),
  2480. volume: math.unit(1000, "liters"),
  2481. preyCapacity: math.unit(6, "people"),
  2482. name: "Maw (Goo)",
  2483. image: {
  2484. source: "./media/characters/fen/goo-maw.svg"
  2485. }
  2486. },
  2487. paw: {
  2488. height: math.unit(3.77, "feet"),
  2489. name: "Paw",
  2490. image: {
  2491. source: "./media/characters/fen/paw.svg"
  2492. },
  2493. extraAttributes: {
  2494. "toeSize": {
  2495. name: "Toe Size",
  2496. power: 2,
  2497. type: "area",
  2498. base: math.unit(0.02875, "m^2")
  2499. },
  2500. "pawSize": {
  2501. name: "Paw Size",
  2502. power: 2,
  2503. type: "area",
  2504. base: math.unit(0.378, "m^2")
  2505. },
  2506. }
  2507. },
  2508. tail: {
  2509. height: math.unit(12.1, "feet"),
  2510. name: "Tail",
  2511. image: {
  2512. source: "./media/characters/fen/tail.svg"
  2513. }
  2514. },
  2515. tailFull: {
  2516. height: math.unit(12.1, "feet"),
  2517. name: "Full Tail",
  2518. image: {
  2519. source: "./media/characters/fen/tail-full.svg"
  2520. }
  2521. },
  2522. back: {
  2523. height: math.unit(12, "feet"),
  2524. weight: math.unit(2400, "lb"),
  2525. name: "Back",
  2526. image: {
  2527. source: "./media/characters/fen/back.svg",
  2528. },
  2529. info: {
  2530. description: {
  2531. mode: "append",
  2532. text: "\n\nHe is not currently looking at you."
  2533. }
  2534. }
  2535. },
  2536. full: {
  2537. height: math.unit(1.85, "meter"),
  2538. weight: math.unit(3200, "lb"),
  2539. preyCapacity: math.unit(3, "people"),
  2540. name: "Full",
  2541. image: {
  2542. source: "./media/characters/fen/full.svg",
  2543. extra: 1133/859,
  2544. bottom: 145/1278
  2545. },
  2546. info: {
  2547. description: {
  2548. mode: "append",
  2549. text: "\n\nMunch."
  2550. }
  2551. }
  2552. },
  2553. gooLounging: {
  2554. height: math.unit(4.53, "feet"),
  2555. weight: math.unit(3000, "lb"),
  2556. preyCapacity: math.unit(6, "people"),
  2557. name: "Goo (Lounging)",
  2558. image: {
  2559. source: "./media/characters/fen/goo-lounging.svg",
  2560. bottom: 116 / 613
  2561. }
  2562. },
  2563. lounging: {
  2564. height: math.unit(10.52, "feet"),
  2565. weight: math.unit(2400, "lb"),
  2566. name: "Lounging",
  2567. image: {
  2568. source: "./media/characters/fen/lounging.svg"
  2569. }
  2570. },
  2571. },
  2572. [
  2573. {
  2574. name: "Small",
  2575. height: math.unit(2.2428, "meter")
  2576. },
  2577. {
  2578. name: "Normal",
  2579. height: math.unit(12, "feet"),
  2580. default: true,
  2581. },
  2582. {
  2583. name: "Big",
  2584. height: math.unit(20, "feet")
  2585. },
  2586. {
  2587. name: "Minimacro",
  2588. height: math.unit(40, "feet"),
  2589. info: {
  2590. description: {
  2591. mode: "append",
  2592. text: "\n\nTOO DAMN BIG"
  2593. }
  2594. }
  2595. },
  2596. {
  2597. name: "Macro",
  2598. height: math.unit(100, "feet"),
  2599. info: {
  2600. description: {
  2601. mode: "append",
  2602. text: "\n\nTOO DAMN BIG"
  2603. }
  2604. }
  2605. },
  2606. {
  2607. name: "Megamacro",
  2608. height: math.unit(2, "miles")
  2609. },
  2610. {
  2611. name: "Gigamacro",
  2612. height: math.unit(10, "earths")
  2613. },
  2614. ]
  2615. ))
  2616. characterMakers.push(() => makeCharacter(
  2617. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2618. {
  2619. front: {
  2620. height: math.unit(183, "cm"),
  2621. weight: math.unit(80, "kg"),
  2622. name: "Front",
  2623. image: {
  2624. source: "./media/characters/sofia-fluttertail/front.svg",
  2625. bottom: 0.01,
  2626. extra: 2154 / 2081
  2627. }
  2628. },
  2629. frontAlt: {
  2630. height: math.unit(183, "cm"),
  2631. weight: math.unit(80, "kg"),
  2632. name: "Front (alt)",
  2633. image: {
  2634. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2635. }
  2636. },
  2637. back: {
  2638. height: math.unit(183, "cm"),
  2639. weight: math.unit(80, "kg"),
  2640. name: "Back",
  2641. image: {
  2642. source: "./media/characters/sofia-fluttertail/back.svg"
  2643. }
  2644. },
  2645. kneeling: {
  2646. height: math.unit(125, "cm"),
  2647. weight: math.unit(80, "kg"),
  2648. name: "Kneeling",
  2649. image: {
  2650. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2651. extra: 1033 / 977,
  2652. bottom: 23.7 / 1057
  2653. }
  2654. },
  2655. maw: {
  2656. height: math.unit(183 / 5, "cm"),
  2657. name: "Maw",
  2658. image: {
  2659. source: "./media/characters/sofia-fluttertail/maw.svg"
  2660. }
  2661. },
  2662. mawcloseup: {
  2663. height: math.unit(183 / 5 * 0.41, "cm"),
  2664. name: "Maw (Closeup)",
  2665. image: {
  2666. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2667. }
  2668. },
  2669. paws: {
  2670. height: math.unit(1.17, "feet"),
  2671. name: "Paws",
  2672. image: {
  2673. source: "./media/characters/sofia-fluttertail/paws.svg",
  2674. extra: 851 / 851,
  2675. bottom: 17 / 868
  2676. }
  2677. },
  2678. },
  2679. [
  2680. {
  2681. name: "Normal",
  2682. height: math.unit(1.83, "meter")
  2683. },
  2684. {
  2685. name: "Size Thief",
  2686. height: math.unit(18, "feet")
  2687. },
  2688. {
  2689. name: "50 Foot Collie",
  2690. height: math.unit(50, "feet")
  2691. },
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(96, "feet"),
  2695. default: true
  2696. },
  2697. {
  2698. name: "Megamerger",
  2699. height: math.unit(650, "feet")
  2700. },
  2701. ]
  2702. ))
  2703. characterMakers.push(() => makeCharacter(
  2704. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2705. {
  2706. front: {
  2707. height: math.unit(7, "feet"),
  2708. weight: math.unit(100, "kg"),
  2709. name: "Front",
  2710. image: {
  2711. source: "./media/characters/march/front.svg",
  2712. extra: 1992/1851,
  2713. bottom: 39/2031
  2714. }
  2715. },
  2716. foot: {
  2717. height: math.unit(0.9, "feet"),
  2718. name: "Foot",
  2719. image: {
  2720. source: "./media/characters/march/foot.svg"
  2721. }
  2722. },
  2723. },
  2724. [
  2725. {
  2726. name: "Normal",
  2727. height: math.unit(7.9, "feet")
  2728. },
  2729. {
  2730. name: "Macro",
  2731. height: math.unit(220, "meters")
  2732. },
  2733. {
  2734. name: "Megamacro",
  2735. height: math.unit(2.98, "km"),
  2736. default: true
  2737. },
  2738. {
  2739. name: "Gigamacro",
  2740. height: math.unit(15963, "km")
  2741. },
  2742. {
  2743. name: "Teramacro",
  2744. height: math.unit(2980000000, "km")
  2745. },
  2746. {
  2747. name: "Examacro",
  2748. height: math.unit(250, "parsecs")
  2749. },
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(6, "feet"),
  2757. weight: math.unit(60, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/noir/front.svg",
  2761. extra: 1,
  2762. bottom: 0.032
  2763. }
  2764. },
  2765. },
  2766. [
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(6.6, "feet")
  2770. },
  2771. {
  2772. name: "Macro",
  2773. height: math.unit(500, "feet")
  2774. },
  2775. {
  2776. name: "Megamacro",
  2777. height: math.unit(2.5, "km"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Gigamacro",
  2782. height: math.unit(22500, "km")
  2783. },
  2784. {
  2785. name: "Teramacro",
  2786. height: math.unit(2500000000, "km")
  2787. },
  2788. {
  2789. name: "Examacro",
  2790. height: math.unit(200, "parsecs")
  2791. },
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2796. {
  2797. front: {
  2798. height: math.unit(7, "feet"),
  2799. weight: math.unit(100, "kg"),
  2800. name: "Front",
  2801. image: {
  2802. source: "./media/characters/okuri/front.svg",
  2803. extra: 739/665,
  2804. bottom: 39/778
  2805. }
  2806. },
  2807. back: {
  2808. height: math.unit(7, "feet"),
  2809. weight: math.unit(100, "kg"),
  2810. name: "Back",
  2811. image: {
  2812. source: "./media/characters/okuri/back.svg",
  2813. extra: 734/653,
  2814. bottom: 13/747
  2815. }
  2816. },
  2817. sitting: {
  2818. height: math.unit(2.95, "feet"),
  2819. weight: math.unit(100, "kg"),
  2820. name: "Sitting",
  2821. image: {
  2822. source: "./media/characters/okuri/sitting.svg",
  2823. extra: 370/318,
  2824. bottom: 99/469
  2825. }
  2826. },
  2827. },
  2828. [
  2829. {
  2830. name: "Smallest",
  2831. height: math.unit(5 + 2/12, "feet")
  2832. },
  2833. {
  2834. name: "Smaller",
  2835. height: math.unit(300, "feet")
  2836. },
  2837. {
  2838. name: "Small",
  2839. height: math.unit(1000, "feet")
  2840. },
  2841. {
  2842. name: "Macro",
  2843. height: math.unit(1, "mile")
  2844. },
  2845. {
  2846. name: "Mega Macro (Small)",
  2847. height: math.unit(20, "km")
  2848. },
  2849. {
  2850. name: "Mega Macro (Large)",
  2851. height: math.unit(600, "km")
  2852. },
  2853. {
  2854. name: "Giga Macro",
  2855. height: math.unit(10000, "km")
  2856. },
  2857. {
  2858. name: "Normal",
  2859. height: math.unit(577560, "km"),
  2860. default: true
  2861. },
  2862. {
  2863. name: "Large",
  2864. height: math.unit(4, "galaxies")
  2865. },
  2866. {
  2867. name: "Largest",
  2868. height: math.unit(15, "multiverses")
  2869. },
  2870. ]
  2871. ))
  2872. characterMakers.push(() => makeCharacter(
  2873. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2874. {
  2875. front: {
  2876. height: math.unit(7, "feet"),
  2877. weight: math.unit(100, "kg"),
  2878. name: "Front",
  2879. image: {
  2880. source: "./media/characters/manny/front.svg",
  2881. extra: 1,
  2882. bottom: 0.06
  2883. }
  2884. },
  2885. back: {
  2886. height: math.unit(7, "feet"),
  2887. weight: math.unit(100, "kg"),
  2888. name: "Back",
  2889. image: {
  2890. source: "./media/characters/manny/back.svg",
  2891. extra: 1,
  2892. bottom: 0.014
  2893. }
  2894. },
  2895. },
  2896. [
  2897. {
  2898. name: "Normal",
  2899. height: math.unit(7, "feet"),
  2900. },
  2901. {
  2902. name: "Macro",
  2903. height: math.unit(78, "feet"),
  2904. default: true
  2905. },
  2906. {
  2907. name: "Macro+",
  2908. height: math.unit(300, "meters")
  2909. },
  2910. {
  2911. name: "Macro++",
  2912. height: math.unit(2400, "meters")
  2913. },
  2914. {
  2915. name: "Megamacro",
  2916. height: math.unit(5167, "meters")
  2917. },
  2918. {
  2919. name: "Gigamacro",
  2920. height: math.unit(41769, "miles")
  2921. },
  2922. ]
  2923. ))
  2924. characterMakers.push(() => makeCharacter(
  2925. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2926. {
  2927. front: {
  2928. height: math.unit(7, "feet"),
  2929. weight: math.unit(100, "kg"),
  2930. name: "Front",
  2931. image: {
  2932. source: "./media/characters/adake/front-1.svg"
  2933. }
  2934. },
  2935. frontAlt: {
  2936. height: math.unit(7, "feet"),
  2937. weight: math.unit(100, "kg"),
  2938. name: "Front (Alt)",
  2939. image: {
  2940. source: "./media/characters/adake/front-2.svg",
  2941. extra: 1,
  2942. bottom: 0.01
  2943. }
  2944. },
  2945. back: {
  2946. height: math.unit(7, "feet"),
  2947. weight: math.unit(100, "kg"),
  2948. name: "Back",
  2949. image: {
  2950. source: "./media/characters/adake/back.svg",
  2951. }
  2952. },
  2953. kneel: {
  2954. height: math.unit(5.385, "feet"),
  2955. weight: math.unit(100, "kg"),
  2956. name: "Kneeling",
  2957. image: {
  2958. source: "./media/characters/adake/kneel.svg",
  2959. bottom: 0.052
  2960. }
  2961. },
  2962. },
  2963. [
  2964. {
  2965. name: "Normal",
  2966. height: math.unit(7, "feet"),
  2967. },
  2968. {
  2969. name: "Macro",
  2970. height: math.unit(78, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Macro+",
  2975. height: math.unit(300, "meters")
  2976. },
  2977. {
  2978. name: "Macro++",
  2979. height: math.unit(2400, "meters")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(5167, "meters")
  2984. },
  2985. {
  2986. name: "Gigamacro",
  2987. height: math.unit(41769, "miles")
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(1.65, "meters"),
  2996. weight: math.unit(50, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/elijah/front.svg",
  3000. extra: 858 / 830,
  3001. bottom: 95.5 / 953.8559
  3002. }
  3003. },
  3004. back: {
  3005. height: math.unit(1.65, "meters"),
  3006. weight: math.unit(50, "kg"),
  3007. name: "Back",
  3008. image: {
  3009. source: "./media/characters/elijah/back.svg",
  3010. extra: 895 / 850,
  3011. bottom: 5.3 / 897.956
  3012. }
  3013. },
  3014. frontNsfw: {
  3015. height: math.unit(1.65, "meters"),
  3016. weight: math.unit(50, "kg"),
  3017. name: "Front (NSFW)",
  3018. image: {
  3019. source: "./media/characters/elijah/front-nsfw.svg",
  3020. extra: 858 / 830,
  3021. bottom: 95.5 / 953.8559
  3022. }
  3023. },
  3024. backNsfw: {
  3025. height: math.unit(1.65, "meters"),
  3026. weight: math.unit(50, "kg"),
  3027. name: "Back (NSFW)",
  3028. image: {
  3029. source: "./media/characters/elijah/back-nsfw.svg",
  3030. extra: 895 / 850,
  3031. bottom: 5.3 / 897.956
  3032. }
  3033. },
  3034. dick: {
  3035. height: math.unit(1, "feet"),
  3036. name: "Dick",
  3037. image: {
  3038. source: "./media/characters/elijah/dick.svg"
  3039. }
  3040. },
  3041. beakOpen: {
  3042. height: math.unit(1.25, "feet"),
  3043. name: "Beak (Open)",
  3044. image: {
  3045. source: "./media/characters/elijah/beak-open.svg"
  3046. }
  3047. },
  3048. beakShut: {
  3049. height: math.unit(1.25, "feet"),
  3050. name: "Beak (Shut)",
  3051. image: {
  3052. source: "./media/characters/elijah/beak-shut.svg"
  3053. }
  3054. },
  3055. footFlexing: {
  3056. height: math.unit(1.61, "feet"),
  3057. name: "Foot (Flexing)",
  3058. image: {
  3059. source: "./media/characters/elijah/foot-flexing.svg"
  3060. }
  3061. },
  3062. footStepping: {
  3063. height: math.unit(1.44, "feet"),
  3064. name: "Foot (Stepping)",
  3065. image: {
  3066. source: "./media/characters/elijah/foot-stepping.svg"
  3067. }
  3068. },
  3069. plantigradeLeg: {
  3070. height: math.unit(2.34, "feet"),
  3071. name: "Plantigrade Leg",
  3072. image: {
  3073. source: "./media/characters/elijah/plantigrade-leg.svg"
  3074. }
  3075. },
  3076. plantigradeFootLeft: {
  3077. height: math.unit(0.9, "feet"),
  3078. name: "Plantigrade Foot (Left)",
  3079. image: {
  3080. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3081. }
  3082. },
  3083. plantigradeFootRight: {
  3084. height: math.unit(0.9, "feet"),
  3085. name: "Plantigrade Foot (Right)",
  3086. image: {
  3087. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3088. }
  3089. },
  3090. },
  3091. [
  3092. {
  3093. name: "Normal",
  3094. height: math.unit(1.65, "meters")
  3095. },
  3096. {
  3097. name: "Macro",
  3098. height: math.unit(55, "meters"),
  3099. default: true
  3100. },
  3101. {
  3102. name: "Macro+",
  3103. height: math.unit(105, "meters")
  3104. },
  3105. ]
  3106. ))
  3107. characterMakers.push(() => makeCharacter(
  3108. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3109. {
  3110. front: {
  3111. height: math.unit(7 + 2/12, "feet"),
  3112. weight: math.unit(320, "kg"),
  3113. preyCapacity: math.unit(0.276549935, "people"),
  3114. name: "Front",
  3115. image: {
  3116. source: "./media/characters/rai/front.svg",
  3117. extra: 1802/1696,
  3118. bottom: 68/1870
  3119. },
  3120. form: "anthro",
  3121. default: true
  3122. },
  3123. frontDressed: {
  3124. height: math.unit(7 + 2/12, "feet"),
  3125. weight: math.unit(320, "kg"),
  3126. preyCapacity: math.unit(0.276549935, "people"),
  3127. name: "Front (Dressed)",
  3128. image: {
  3129. source: "./media/characters/rai/front-dressed.svg",
  3130. extra: 1802/1696,
  3131. bottom: 68/1870
  3132. },
  3133. form: "anthro"
  3134. },
  3135. side: {
  3136. height: math.unit(7 + 2/12, "feet"),
  3137. weight: math.unit(320, "kg"),
  3138. preyCapacity: math.unit(0.276549935, "people"),
  3139. name: "Side",
  3140. image: {
  3141. source: "./media/characters/rai/side.svg",
  3142. extra: 1789/1710,
  3143. bottom: 115/1904
  3144. },
  3145. form: "anthro"
  3146. },
  3147. back: {
  3148. height: math.unit(7 + 2/12, "feet"),
  3149. weight: math.unit(320, "kg"),
  3150. preyCapacity: math.unit(0.276549935, "people"),
  3151. name: "Back",
  3152. image: {
  3153. source: "./media/characters/rai/back.svg",
  3154. extra: 1770/1707,
  3155. bottom: 28/1798
  3156. },
  3157. form: "anthro"
  3158. },
  3159. feral: {
  3160. height: math.unit(9.5, "feet"),
  3161. weight: math.unit(640, "kg"),
  3162. preyCapacity: math.unit(4, "people"),
  3163. name: "Feral",
  3164. image: {
  3165. source: "./media/characters/rai/feral.svg",
  3166. extra: 945/553,
  3167. bottom: 176/1121
  3168. },
  3169. form: "feral",
  3170. default: true
  3171. },
  3172. dragon: {
  3173. height: math.unit(23, "feet"),
  3174. weight: math.unit(50000, "lb"),
  3175. name: "Dragon",
  3176. image: {
  3177. source: "./media/characters/rai/dragon.svg",
  3178. extra: 2498 / 2030,
  3179. bottom: 85.2 / 2584
  3180. },
  3181. form: "dragon",
  3182. default: true
  3183. },
  3184. maw: {
  3185. height: math.unit(1.69, "feet"),
  3186. name: "Maw",
  3187. image: {
  3188. source: "./media/characters/rai/maw.svg"
  3189. },
  3190. form: "anthro"
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Normal",
  3196. height: math.unit(7 + 2/12, "feet"),
  3197. form: "anthro"
  3198. },
  3199. {
  3200. name: "Big",
  3201. height: math.unit(11, "feet"),
  3202. form: "anthro"
  3203. },
  3204. {
  3205. name: "Minimacro",
  3206. height: math.unit(77, "feet"),
  3207. form: "anthro"
  3208. },
  3209. {
  3210. name: "Macro",
  3211. height: math.unit(302, "feet"),
  3212. default: true,
  3213. form: "anthro"
  3214. },
  3215. {
  3216. name: "Normal",
  3217. height: math.unit(9.5, "feet"),
  3218. form: "feral",
  3219. default: true
  3220. },
  3221. {
  3222. name: "Normal",
  3223. height: math.unit(23, "feet"),
  3224. form: "dragon",
  3225. default: true
  3226. }
  3227. ],
  3228. {
  3229. "anthro": {
  3230. name: "Anthro",
  3231. default: true
  3232. },
  3233. "feral": {
  3234. name: "Feral",
  3235. },
  3236. "dragon": {
  3237. name: "Dragon",
  3238. },
  3239. }
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3243. {
  3244. frontDressed: {
  3245. height: math.unit(216, "feet"),
  3246. weight: math.unit(7000000, "lb"),
  3247. preyCapacity: math.unit(1321, "people"),
  3248. name: "Front (Dressed)",
  3249. image: {
  3250. source: "./media/characters/jazzy/front-dressed.svg",
  3251. extra: 2738 / 2651,
  3252. bottom: 41.8 / 2786
  3253. }
  3254. },
  3255. backDressed: {
  3256. height: math.unit(216, "feet"),
  3257. weight: math.unit(7000000, "lb"),
  3258. preyCapacity: math.unit(1321, "people"),
  3259. name: "Back (Dressed)",
  3260. image: {
  3261. source: "./media/characters/jazzy/back-dressed.svg",
  3262. extra: 2775 / 2673,
  3263. bottom: 36.8 / 2817
  3264. }
  3265. },
  3266. front: {
  3267. height: math.unit(216, "feet"),
  3268. weight: math.unit(7000000, "lb"),
  3269. preyCapacity: math.unit(1321, "people"),
  3270. name: "Front",
  3271. image: {
  3272. source: "./media/characters/jazzy/front.svg",
  3273. extra: 2738 / 2651,
  3274. bottom: 41.8 / 2786
  3275. }
  3276. },
  3277. back: {
  3278. height: math.unit(216, "feet"),
  3279. weight: math.unit(7000000, "lb"),
  3280. preyCapacity: math.unit(1321, "people"),
  3281. name: "Back",
  3282. image: {
  3283. source: "./media/characters/jazzy/back.svg",
  3284. extra: 2775 / 2673,
  3285. bottom: 36.8 / 2817
  3286. }
  3287. },
  3288. maw: {
  3289. height: math.unit(20, "feet"),
  3290. name: "Maw",
  3291. image: {
  3292. source: "./media/characters/jazzy/maw.svg"
  3293. }
  3294. },
  3295. paws: {
  3296. height: math.unit(27.5, "feet"),
  3297. name: "Paws",
  3298. image: {
  3299. source: "./media/characters/jazzy/paws.svg"
  3300. }
  3301. },
  3302. eye: {
  3303. height: math.unit(4.4, "feet"),
  3304. name: "Eye",
  3305. image: {
  3306. source: "./media/characters/jazzy/eye.svg"
  3307. }
  3308. },
  3309. droneOffense: {
  3310. height: math.unit(9.5, "inches"),
  3311. name: "Drone (Offense)",
  3312. image: {
  3313. source: "./media/characters/jazzy/drone-offense.svg"
  3314. }
  3315. },
  3316. droneRecon: {
  3317. height: math.unit(9.5, "inches"),
  3318. name: "Drone (Recon)",
  3319. image: {
  3320. source: "./media/characters/jazzy/drone-recon.svg"
  3321. }
  3322. },
  3323. droneDefense: {
  3324. height: math.unit(9.5, "inches"),
  3325. name: "Drone (Defense)",
  3326. image: {
  3327. source: "./media/characters/jazzy/drone-defense.svg"
  3328. }
  3329. },
  3330. },
  3331. [
  3332. {
  3333. name: "Macro",
  3334. height: math.unit(216, "feet"),
  3335. default: true
  3336. },
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3341. {
  3342. front: {
  3343. height: math.unit(9 + 6/12, "feet"),
  3344. weight: math.unit(700, "lb"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/flamm/front.svg",
  3348. extra: 1736/1596,
  3349. bottom: 93/1829
  3350. }
  3351. },
  3352. buff: {
  3353. height: math.unit(9 + 6/12, "feet"),
  3354. weight: math.unit(950, "lb"),
  3355. name: "Buff",
  3356. image: {
  3357. source: "./media/characters/flamm/buff.svg",
  3358. extra: 3018/2874,
  3359. bottom: 221/3239
  3360. }
  3361. },
  3362. },
  3363. [
  3364. {
  3365. name: "Normal",
  3366. height: math.unit(9.5, "feet")
  3367. },
  3368. {
  3369. name: "Macro",
  3370. height: math.unit(200, "feet"),
  3371. default: true
  3372. },
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3377. {
  3378. front: {
  3379. height: math.unit(5 + 3/12, "feet"),
  3380. weight: math.unit(60, "kg"),
  3381. name: "Front",
  3382. image: {
  3383. source: "./media/characters/zephiro/front.svg",
  3384. extra: 1873/1761,
  3385. bottom: 147/2020
  3386. }
  3387. },
  3388. side: {
  3389. height: math.unit(5 + 3/12, "feet"),
  3390. weight: math.unit(60, "kg"),
  3391. name: "Side",
  3392. image: {
  3393. source: "./media/characters/zephiro/side.svg",
  3394. extra: 1929/1827,
  3395. bottom: 65/1994
  3396. }
  3397. },
  3398. back: {
  3399. height: math.unit(5 + 3/12, "feet"),
  3400. weight: math.unit(60, "kg"),
  3401. name: "Back",
  3402. image: {
  3403. source: "./media/characters/zephiro/back.svg",
  3404. extra: 1926/1816,
  3405. bottom: 41/1967
  3406. }
  3407. },
  3408. hand: {
  3409. height: math.unit(0.68, "feet"),
  3410. name: "Hand",
  3411. image: {
  3412. source: "./media/characters/zephiro/hand.svg"
  3413. }
  3414. },
  3415. paw: {
  3416. height: math.unit(1, "feet"),
  3417. name: "Paw",
  3418. image: {
  3419. source: "./media/characters/zephiro/paw.svg"
  3420. }
  3421. },
  3422. beans: {
  3423. height: math.unit(0.93, "feet"),
  3424. name: "Beans",
  3425. image: {
  3426. source: "./media/characters/zephiro/beans.svg"
  3427. }
  3428. },
  3429. },
  3430. [
  3431. {
  3432. name: "Micro",
  3433. height: math.unit(3, "inches")
  3434. },
  3435. {
  3436. name: "Normal",
  3437. height: math.unit(5 + 3 / 12, "feet"),
  3438. default: true
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(118, "feet")
  3443. },
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3448. {
  3449. front: {
  3450. height: math.unit(5, "feet"),
  3451. weight: math.unit(90, "kg"),
  3452. preyCapacity: math.unit(14, "people"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/fory/front.svg",
  3456. extra: 2862 / 2674,
  3457. bottom: 180 / 3043.8
  3458. },
  3459. form: "weaselbun",
  3460. default: true,
  3461. extraAttributes: {
  3462. "pawSize": {
  3463. name: "Paw Size",
  3464. power: 2,
  3465. type: "area",
  3466. base: math.unit(0.1596, "m^2")
  3467. },
  3468. "pawLength": {
  3469. name: "Paw Length",
  3470. power: 1,
  3471. type: "length",
  3472. base: math.unit(0.7, "m")
  3473. }
  3474. }
  3475. },
  3476. back: {
  3477. height: math.unit(5, "feet"),
  3478. weight: math.unit(90, "kg"),
  3479. preyCapacity: math.unit(14, "people"),
  3480. name: "Back",
  3481. image: {
  3482. source: "./media/characters/fory/back.svg",
  3483. extra: 1790/1672,
  3484. bottom: 84/1874
  3485. },
  3486. form: "weaselbun",
  3487. extraAttributes: {
  3488. "pawSize": {
  3489. name: "Paw Size",
  3490. power: 2,
  3491. type: "area",
  3492. base: math.unit(0.1596, "m^2")
  3493. },
  3494. "pawLength": {
  3495. name: "Paw Length",
  3496. power: 1,
  3497. type: "length",
  3498. base: math.unit(0.7, "m")
  3499. }
  3500. }
  3501. },
  3502. paw: {
  3503. height: math.unit(2.14, "feet"),
  3504. name: "Paw",
  3505. image: {
  3506. source: "./media/characters/fory/paw.svg"
  3507. },
  3508. form: "weaselbun",
  3509. extraAttributes: {
  3510. "pawSize": {
  3511. name: "Paw Size",
  3512. power: 2,
  3513. type: "area",
  3514. base: math.unit(0.1596, "m^2")
  3515. },
  3516. "pawLength": {
  3517. name: "Paw Length",
  3518. power: 1,
  3519. type: "length",
  3520. base: math.unit(0.48, "m")
  3521. }
  3522. }
  3523. },
  3524. bunBack: {
  3525. height: math.unit(3, "feet"),
  3526. weight: math.unit(20, "kg"),
  3527. preyCapacity: math.unit(3, "people"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/fory/bun-back.svg",
  3531. extra: 1749/1564,
  3532. bottom: 246/1995
  3533. },
  3534. form: "bun",
  3535. default: true,
  3536. extraAttributes: {
  3537. "pawSize": {
  3538. name: "Paw Size",
  3539. power: 2,
  3540. type: "area",
  3541. base: math.unit(0.072, "m^2")
  3542. },
  3543. "pawLength": {
  3544. name: "Paw Length",
  3545. power: 1,
  3546. type: "length",
  3547. base: math.unit(0.45, "m")
  3548. }
  3549. }
  3550. },
  3551. },
  3552. [
  3553. {
  3554. name: "Normal",
  3555. height: math.unit(5, "feet"),
  3556. form: "weaselbun"
  3557. },
  3558. {
  3559. name: "Macro",
  3560. height: math.unit(50, "feet"),
  3561. default: true,
  3562. form: "weaselbun"
  3563. },
  3564. {
  3565. name: "Megamacro",
  3566. height: math.unit(10, "miles"),
  3567. form: "weaselbun"
  3568. },
  3569. {
  3570. name: "Gigamacro",
  3571. height: math.unit(5, "earths"),
  3572. form: "weaselbun"
  3573. },
  3574. {
  3575. name: "Normal",
  3576. height: math.unit(3, "feet"),
  3577. default: true,
  3578. form: "bun"
  3579. },
  3580. {
  3581. name: "Fun-Size",
  3582. height: math.unit(12, "feet"),
  3583. form: "bun"
  3584. },
  3585. {
  3586. name: "Macro",
  3587. height: math.unit(100, "feet"),
  3588. form: "bun"
  3589. },
  3590. {
  3591. name: "Planetary",
  3592. height: math.unit(3, "earths"),
  3593. form: "bun"
  3594. },
  3595. ],
  3596. {
  3597. "weaselbun": {
  3598. name: "Weaselbun",
  3599. default: true
  3600. },
  3601. "bun": {
  3602. name: "Bun",
  3603. },
  3604. }
  3605. ))
  3606. characterMakers.push(() => makeCharacter(
  3607. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3608. {
  3609. front: {
  3610. height: math.unit(7, "feet"),
  3611. weight: math.unit(90, "kg"),
  3612. name: "Front",
  3613. image: {
  3614. source: "./media/characters/kurrikage/front.svg",
  3615. extra: 1845/1733,
  3616. bottom: 119/1964
  3617. }
  3618. },
  3619. back: {
  3620. height: math.unit(7, "feet"),
  3621. weight: math.unit(90, "kg"),
  3622. name: "Back",
  3623. image: {
  3624. source: "./media/characters/kurrikage/back.svg",
  3625. extra: 1790/1677,
  3626. bottom: 61/1851
  3627. }
  3628. },
  3629. dressed: {
  3630. height: math.unit(7, "feet"),
  3631. weight: math.unit(90, "kg"),
  3632. name: "Dressed",
  3633. image: {
  3634. source: "./media/characters/kurrikage/dressed.svg",
  3635. extra: 1845/1733,
  3636. bottom: 119/1964
  3637. }
  3638. },
  3639. foot: {
  3640. height: math.unit(1.5, "feet"),
  3641. name: "Foot",
  3642. image: {
  3643. source: "./media/characters/kurrikage/foot.svg"
  3644. }
  3645. },
  3646. staff: {
  3647. height: math.unit(6.7, "feet"),
  3648. name: "Staff",
  3649. image: {
  3650. source: "./media/characters/kurrikage/staff.svg"
  3651. }
  3652. },
  3653. peek: {
  3654. height: math.unit(1.05, "feet"),
  3655. name: "Peeking",
  3656. image: {
  3657. source: "./media/characters/kurrikage/peek.svg",
  3658. bottom: 0.08
  3659. }
  3660. },
  3661. },
  3662. [
  3663. {
  3664. name: "Normal",
  3665. height: math.unit(12, "feet"),
  3666. default: true
  3667. },
  3668. {
  3669. name: "Big",
  3670. height: math.unit(20, "feet")
  3671. },
  3672. {
  3673. name: "Macro",
  3674. height: math.unit(500, "feet")
  3675. },
  3676. {
  3677. name: "Megamacro",
  3678. height: math.unit(20, "miles")
  3679. },
  3680. ]
  3681. ))
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3684. {
  3685. front: {
  3686. height: math.unit(6, "feet"),
  3687. weight: math.unit(75, "kg"),
  3688. name: "Front",
  3689. image: {
  3690. source: "./media/characters/shingo/front.svg",
  3691. extra: 1900/1825,
  3692. bottom: 82/1982
  3693. }
  3694. },
  3695. side: {
  3696. height: math.unit(6, "feet"),
  3697. weight: math.unit(75, "kg"),
  3698. name: "Side",
  3699. image: {
  3700. source: "./media/characters/shingo/side.svg",
  3701. extra: 1930/1865,
  3702. bottom: 16/1946
  3703. }
  3704. },
  3705. back: {
  3706. height: math.unit(6, "feet"),
  3707. weight: math.unit(75, "kg"),
  3708. name: "Back",
  3709. image: {
  3710. source: "./media/characters/shingo/back.svg",
  3711. extra: 1922/1852,
  3712. bottom: 16/1938
  3713. }
  3714. },
  3715. frontDressed: {
  3716. height: math.unit(6, "feet"),
  3717. weight: math.unit(150, "lb"),
  3718. name: "Front-dressed",
  3719. image: {
  3720. source: "./media/characters/shingo/front-dressed.svg",
  3721. extra: 1900/1825,
  3722. bottom: 82/1982
  3723. }
  3724. },
  3725. paw: {
  3726. height: math.unit(1.29, "feet"),
  3727. name: "Paw",
  3728. image: {
  3729. source: "./media/characters/shingo/paw.svg"
  3730. }
  3731. },
  3732. hand: {
  3733. height: math.unit(1.07, "feet"),
  3734. name: "Hand",
  3735. image: {
  3736. source: "./media/characters/shingo/hand.svg"
  3737. }
  3738. },
  3739. frontAlt: {
  3740. height: math.unit(6, "feet"),
  3741. weight: math.unit(75, "kg"),
  3742. name: "Front (Alt)",
  3743. image: {
  3744. source: "./media/characters/shingo/front-alt.svg",
  3745. extra: 3511 / 3338,
  3746. bottom: 0.005
  3747. }
  3748. },
  3749. frontAlt2: {
  3750. height: math.unit(6, "feet"),
  3751. weight: math.unit(75, "kg"),
  3752. name: "Front (Alt 2)",
  3753. image: {
  3754. source: "./media/characters/shingo/front-alt-2.svg",
  3755. extra: 706/681,
  3756. bottom: 11/717
  3757. }
  3758. },
  3759. pawAlt: {
  3760. height: math.unit(1, "feet"),
  3761. name: "Paw (Alt)",
  3762. image: {
  3763. source: "./media/characters/shingo/paw-alt.svg"
  3764. }
  3765. },
  3766. },
  3767. [
  3768. {
  3769. name: "Micro",
  3770. height: math.unit(4, "inches")
  3771. },
  3772. {
  3773. name: "Normal",
  3774. height: math.unit(6, "feet"),
  3775. default: true
  3776. },
  3777. {
  3778. name: "Macro",
  3779. height: math.unit(108, "feet")
  3780. },
  3781. {
  3782. name: "Macro+",
  3783. height: math.unit(1500, "feet")
  3784. },
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3789. {
  3790. side: {
  3791. height: math.unit(6, "feet"),
  3792. weight: math.unit(75, "kg"),
  3793. name: "Side",
  3794. image: {
  3795. source: "./media/characters/aigey/side.svg"
  3796. }
  3797. },
  3798. },
  3799. [
  3800. {
  3801. name: "Macro",
  3802. height: math.unit(200, "feet"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Megamacro",
  3807. height: math.unit(100, "miles")
  3808. },
  3809. ]
  3810. )
  3811. )
  3812. characterMakers.push(() => makeCharacter(
  3813. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3814. {
  3815. front: {
  3816. height: math.unit(5 + 5 / 12, "feet"),
  3817. weight: math.unit(75, "kg"),
  3818. name: "Front",
  3819. image: {
  3820. source: "./media/characters/natasha/front.svg",
  3821. extra: 859 / 824,
  3822. bottom: 23 / 879.6
  3823. }
  3824. },
  3825. frontNsfw: {
  3826. height: math.unit(5 + 5 / 12, "feet"),
  3827. weight: math.unit(75, "kg"),
  3828. name: "Front (NSFW)",
  3829. image: {
  3830. source: "./media/characters/natasha/front-nsfw.svg",
  3831. extra: 859 / 824,
  3832. bottom: 23 / 879.6
  3833. }
  3834. },
  3835. frontErect: {
  3836. height: math.unit(5 + 5 / 12, "feet"),
  3837. weight: math.unit(75, "kg"),
  3838. name: "Front (Erect)",
  3839. image: {
  3840. source: "./media/characters/natasha/front-erect.svg",
  3841. extra: 859 / 824,
  3842. bottom: 23 / 879.6
  3843. }
  3844. },
  3845. back: {
  3846. height: math.unit(5 + 5 / 12, "feet"),
  3847. weight: math.unit(75, "kg"),
  3848. name: "Back",
  3849. image: {
  3850. source: "./media/characters/natasha/back.svg",
  3851. extra: 887.9 / 852.6,
  3852. bottom: 9.7 / 896.4
  3853. }
  3854. },
  3855. backAlt: {
  3856. height: math.unit(5 + 5 / 12, "feet"),
  3857. weight: math.unit(75, "kg"),
  3858. name: "Back (Alt)",
  3859. image: {
  3860. source: "./media/characters/natasha/back-alt.svg",
  3861. extra: 1236.7 / 1192,
  3862. bottom: 22.3 / 1258.2
  3863. }
  3864. },
  3865. dick: {
  3866. height: math.unit(1.772, "feet"),
  3867. name: "Dick",
  3868. image: {
  3869. source: "./media/characters/natasha/dick.svg"
  3870. }
  3871. },
  3872. paw: {
  3873. height: math.unit(0.250, "meters"),
  3874. name: "Paw",
  3875. image: {
  3876. source: "./media/characters/natasha/paw.svg"
  3877. },
  3878. extraAttributes: {
  3879. "toeSize": {
  3880. name: "Toe Size",
  3881. power: 2,
  3882. type: "area",
  3883. base: math.unit(0.0024, "m^2")
  3884. },
  3885. "padSize": {
  3886. name: "Pad Size",
  3887. power: 2,
  3888. type: "area",
  3889. base: math.unit(0.00889, "m^2")
  3890. },
  3891. "pawSize": {
  3892. name: "Paw Size",
  3893. power: 2,
  3894. type: "area",
  3895. base: math.unit(0.023667, "m^2")
  3896. },
  3897. }
  3898. },
  3899. },
  3900. [
  3901. {
  3902. name: "Shortstack",
  3903. height: math.unit(3, "feet"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "Normal",
  3908. height: math.unit(5 + 5 / 12, "feet")
  3909. },
  3910. {
  3911. name: "Large",
  3912. height: math.unit(12, "feet")
  3913. },
  3914. {
  3915. name: "Macro",
  3916. height: math.unit(100, "feet")
  3917. },
  3918. {
  3919. name: "Macro+",
  3920. height: math.unit(260, "feet")
  3921. },
  3922. {
  3923. name: "Macro++",
  3924. height: math.unit(1, "mile")
  3925. },
  3926. ]
  3927. ))
  3928. characterMakers.push(() => makeCharacter(
  3929. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3930. {
  3931. front: {
  3932. height: math.unit(6, "feet"),
  3933. weight: math.unit(75, "kg"),
  3934. name: "Front",
  3935. image: {
  3936. source: "./media/characters/malik/front.svg",
  3937. extra: 1750/1561,
  3938. bottom: 80/1830
  3939. },
  3940. extraAttributes: {
  3941. "toeSize": {
  3942. name: "Toe Size",
  3943. power: 2,
  3944. type: "area",
  3945. base: math.unit(0.0159, "m^2")
  3946. },
  3947. "pawSize": {
  3948. name: "Paw Size",
  3949. power: 2,
  3950. type: "area",
  3951. base: math.unit(0.09834, "m^2")
  3952. },
  3953. }
  3954. },
  3955. side: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(75, "kg"),
  3958. name: "Side",
  3959. image: {
  3960. source: "./media/characters/malik/side.svg",
  3961. extra: 1802/1685,
  3962. bottom: 42/1844
  3963. },
  3964. extraAttributes: {
  3965. "toeSize": {
  3966. name: "Toe Size",
  3967. power: 2,
  3968. type: "area",
  3969. base: math.unit(0.0159, "m^2")
  3970. },
  3971. "pawSize": {
  3972. name: "Paw Size",
  3973. power: 2,
  3974. type: "area",
  3975. base: math.unit(0.09834, "m^2")
  3976. },
  3977. }
  3978. },
  3979. back: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(75, "kg"),
  3982. name: "Back",
  3983. image: {
  3984. source: "./media/characters/malik/back.svg",
  3985. extra: 1803/1607,
  3986. bottom: 33/1836
  3987. },
  3988. extraAttributes: {
  3989. "toeSize": {
  3990. name: "Toe Size",
  3991. power: 2,
  3992. type: "area",
  3993. base: math.unit(0.0159, "m^2")
  3994. },
  3995. "pawSize": {
  3996. name: "Paw Size",
  3997. power: 2,
  3998. type: "area",
  3999. base: math.unit(0.09834, "m^2")
  4000. },
  4001. }
  4002. },
  4003. },
  4004. [
  4005. {
  4006. name: "Macro",
  4007. height: math.unit(156, "feet"),
  4008. default: true
  4009. },
  4010. {
  4011. name: "Macro+",
  4012. height: math.unit(1188, "feet")
  4013. },
  4014. ]
  4015. ))
  4016. characterMakers.push(() => makeCharacter(
  4017. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4018. {
  4019. front: {
  4020. height: math.unit(6, "feet"),
  4021. weight: math.unit(75, "kg"),
  4022. name: "Front",
  4023. image: {
  4024. source: "./media/characters/sefer/front.svg",
  4025. extra: 848 / 659,
  4026. bottom: 28.3 / 876.442
  4027. }
  4028. },
  4029. back: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(75, "kg"),
  4032. name: "Back",
  4033. image: {
  4034. source: "./media/characters/sefer/back.svg",
  4035. extra: 864 / 695,
  4036. bottom: 10 / 871
  4037. }
  4038. },
  4039. frontDressed: {
  4040. height: math.unit(6, "feet"),
  4041. weight: math.unit(75, "kg"),
  4042. name: "Dressed",
  4043. image: {
  4044. source: "./media/characters/sefer/dressed.svg",
  4045. extra: 839 / 653,
  4046. bottom: 37.6 / 878
  4047. }
  4048. },
  4049. },
  4050. [
  4051. {
  4052. name: "Normal",
  4053. height: math.unit(6, "feet"),
  4054. default: true
  4055. },
  4056. {
  4057. name: "Big",
  4058. height: math.unit(8, "meters")
  4059. },
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4064. {
  4065. body: {
  4066. height: math.unit(2.2428, "meter"),
  4067. weight: math.unit(124.738, "kg"),
  4068. name: "Body",
  4069. image: {
  4070. extra: 1225 / 1050,
  4071. source: "./media/characters/north/front.svg"
  4072. }
  4073. }
  4074. },
  4075. [
  4076. {
  4077. name: "Micro",
  4078. height: math.unit(4, "inches")
  4079. },
  4080. {
  4081. name: "Macro",
  4082. height: math.unit(63, "meters")
  4083. },
  4084. {
  4085. name: "Megamacro",
  4086. height: math.unit(101, "miles"),
  4087. default: true
  4088. }
  4089. ]
  4090. ))
  4091. characterMakers.push(() => makeCharacter(
  4092. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4093. {
  4094. angled: {
  4095. height: math.unit(4, "meter"),
  4096. weight: math.unit(150, "kg"),
  4097. name: "Angled",
  4098. image: {
  4099. source: "./media/characters/talan/angled-sfw.svg",
  4100. bottom: 29 / 3734
  4101. }
  4102. },
  4103. angledNsfw: {
  4104. height: math.unit(4, "meter"),
  4105. weight: math.unit(150, "kg"),
  4106. name: "Angled (NSFW)",
  4107. image: {
  4108. source: "./media/characters/talan/angled-nsfw.svg",
  4109. bottom: 29 / 3734
  4110. }
  4111. },
  4112. frontNsfw: {
  4113. height: math.unit(4, "meter"),
  4114. weight: math.unit(150, "kg"),
  4115. name: "Front (NSFW)",
  4116. image: {
  4117. source: "./media/characters/talan/front-nsfw.svg",
  4118. bottom: 29 / 3734
  4119. }
  4120. },
  4121. sideNsfw: {
  4122. height: math.unit(4, "meter"),
  4123. weight: math.unit(150, "kg"),
  4124. name: "Side (NSFW)",
  4125. image: {
  4126. source: "./media/characters/talan/side-nsfw.svg",
  4127. bottom: 29 / 3734
  4128. }
  4129. },
  4130. back: {
  4131. height: math.unit(4, "meter"),
  4132. weight: math.unit(150, "kg"),
  4133. name: "Back",
  4134. image: {
  4135. source: "./media/characters/talan/back.svg"
  4136. }
  4137. },
  4138. dickBottom: {
  4139. height: math.unit(0.621, "meter"),
  4140. name: "Dick (Bottom)",
  4141. image: {
  4142. source: "./media/characters/talan/dick-bottom.svg"
  4143. }
  4144. },
  4145. dickTop: {
  4146. height: math.unit(0.621, "meter"),
  4147. name: "Dick (Top)",
  4148. image: {
  4149. source: "./media/characters/talan/dick-top.svg"
  4150. }
  4151. },
  4152. dickSide: {
  4153. height: math.unit(0.305, "meter"),
  4154. name: "Dick (Side)",
  4155. image: {
  4156. source: "./media/characters/talan/dick-side.svg"
  4157. }
  4158. },
  4159. dickFront: {
  4160. height: math.unit(0.305, "meter"),
  4161. name: "Dick (Front)",
  4162. image: {
  4163. source: "./media/characters/talan/dick-front.svg"
  4164. }
  4165. },
  4166. },
  4167. [
  4168. {
  4169. name: "Normal",
  4170. height: math.unit(4, "meters")
  4171. },
  4172. {
  4173. name: "Macro",
  4174. height: math.unit(100, "meters")
  4175. },
  4176. {
  4177. name: "Megamacro",
  4178. height: math.unit(2, "miles"),
  4179. default: true
  4180. },
  4181. {
  4182. name: "Gigamacro",
  4183. height: math.unit(5000, "miles")
  4184. },
  4185. {
  4186. name: "Teramacro",
  4187. height: math.unit(100, "parsecs")
  4188. }
  4189. ]
  4190. ))
  4191. characterMakers.push(() => makeCharacter(
  4192. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4193. {
  4194. front: {
  4195. height: math.unit(2, "meter"),
  4196. weight: math.unit(90, "kg"),
  4197. name: "Front",
  4198. image: {
  4199. source: "./media/characters/gael'rathus/front.svg"
  4200. }
  4201. },
  4202. frontAlt: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(90, "kg"),
  4205. name: "Front (alt)",
  4206. image: {
  4207. source: "./media/characters/gael'rathus/front-alt.svg"
  4208. }
  4209. },
  4210. frontAlt2: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(90, "kg"),
  4213. name: "Front (alt 2)",
  4214. image: {
  4215. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4216. }
  4217. }
  4218. },
  4219. [
  4220. {
  4221. name: "Normal",
  4222. height: math.unit(9, "feet"),
  4223. default: true
  4224. },
  4225. {
  4226. name: "Large",
  4227. height: math.unit(25, "feet")
  4228. },
  4229. {
  4230. name: "Macro",
  4231. height: math.unit(0.25, "miles")
  4232. },
  4233. {
  4234. name: "Megamacro",
  4235. height: math.unit(10, "miles")
  4236. }
  4237. ]
  4238. ))
  4239. characterMakers.push(() => makeCharacter(
  4240. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4241. {
  4242. side: {
  4243. height: math.unit(2, "meter"),
  4244. weight: math.unit(140, "kg"),
  4245. name: "Side",
  4246. image: {
  4247. source: "./media/characters/sosha/side.svg",
  4248. extra: 1170/1006,
  4249. bottom: 94/1264
  4250. }
  4251. },
  4252. maw: {
  4253. height: math.unit(2.87, "feet"),
  4254. name: "Maw",
  4255. image: {
  4256. source: "./media/characters/sosha/maw.svg",
  4257. extra: 966/865,
  4258. bottom: 0/966
  4259. }
  4260. },
  4261. cooch: {
  4262. height: math.unit(5.6, "feet"),
  4263. name: "Cooch",
  4264. image: {
  4265. source: "./media/characters/sosha/cooch.svg"
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(12, "feet"),
  4273. default: true
  4274. }
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4279. {
  4280. side: {
  4281. height: math.unit(5 + 5 / 12, "feet"),
  4282. weight: math.unit(170, "kg"),
  4283. name: "Side",
  4284. image: {
  4285. source: "./media/characters/runnola/side.svg",
  4286. extra: 741 / 448,
  4287. bottom: 0.05
  4288. }
  4289. },
  4290. },
  4291. [
  4292. {
  4293. name: "Small",
  4294. height: math.unit(3, "feet")
  4295. },
  4296. {
  4297. name: "Normal",
  4298. height: math.unit(5 + 5 / 12, "feet"),
  4299. default: true
  4300. },
  4301. {
  4302. name: "Big",
  4303. height: math.unit(10, "feet")
  4304. },
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(2, "meter"),
  4312. weight: math.unit(50, "kg"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/kurribird/front.svg",
  4316. bottom: 0.015
  4317. }
  4318. },
  4319. frontAlt: {
  4320. height: math.unit(1.5, "meter"),
  4321. weight: math.unit(50, "kg"),
  4322. name: "Front (Alt)",
  4323. image: {
  4324. source: "./media/characters/kurribird/front-alt.svg",
  4325. extra: 1.45
  4326. }
  4327. },
  4328. },
  4329. [
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(7, "feet")
  4333. },
  4334. {
  4335. name: "Big",
  4336. height: math.unit(12, "feet"),
  4337. default: true
  4338. },
  4339. {
  4340. name: "Macro",
  4341. height: math.unit(1500, "feet")
  4342. },
  4343. {
  4344. name: "Megamacro",
  4345. height: math.unit(2, "miles")
  4346. }
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4351. {
  4352. front: {
  4353. height: math.unit(2, "meter"),
  4354. weight: math.unit(80, "kg"),
  4355. name: "Front",
  4356. image: {
  4357. source: "./media/characters/elbial/front.svg",
  4358. extra: 1643 / 1556,
  4359. bottom: 60.2 / 1696
  4360. }
  4361. },
  4362. side: {
  4363. height: math.unit(2, "meter"),
  4364. weight: math.unit(80, "kg"),
  4365. name: "Side",
  4366. image: {
  4367. source: "./media/characters/elbial/side.svg",
  4368. extra: 1601/1528,
  4369. bottom: 97/1698
  4370. }
  4371. },
  4372. back: {
  4373. height: math.unit(2, "meter"),
  4374. weight: math.unit(80, "kg"),
  4375. name: "Back",
  4376. image: {
  4377. source: "./media/characters/elbial/back.svg",
  4378. extra: 1653/1569,
  4379. bottom: 20/1673
  4380. }
  4381. },
  4382. frontDressed: {
  4383. height: math.unit(2, "meter"),
  4384. weight: math.unit(80, "kg"),
  4385. name: "Front (Dressed)",
  4386. image: {
  4387. source: "./media/characters/elbial/front-dressed.svg",
  4388. extra: 1638/1569,
  4389. bottom: 70/1708
  4390. }
  4391. },
  4392. genitals: {
  4393. height: math.unit(2 / 3.367, "meter"),
  4394. name: "Genitals",
  4395. image: {
  4396. source: "./media/characters/elbial/genitals.svg"
  4397. }
  4398. },
  4399. },
  4400. [
  4401. {
  4402. name: "Large",
  4403. height: math.unit(100, "feet")
  4404. },
  4405. {
  4406. name: "Macro",
  4407. height: math.unit(500, "feet"),
  4408. default: true
  4409. },
  4410. {
  4411. name: "Megamacro",
  4412. height: math.unit(10, "miles")
  4413. },
  4414. {
  4415. name: "Gigamacro",
  4416. height: math.unit(25000, "miles")
  4417. },
  4418. {
  4419. name: "Full-Size",
  4420. height: math.unit(8000000, "gigaparsecs")
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4426. {
  4427. front: {
  4428. height: math.unit(2, "meter"),
  4429. weight: math.unit(60, "kg"),
  4430. name: "Front",
  4431. image: {
  4432. source: "./media/characters/noah/front.svg",
  4433. extra: 1383/1313,
  4434. bottom: 104/1487
  4435. }
  4436. },
  4437. hand: {
  4438. height: math.unit(0.6, "feet"),
  4439. name: "Hand",
  4440. image: {
  4441. source: "./media/characters/noah/hand.svg"
  4442. }
  4443. },
  4444. talons: {
  4445. height: math.unit(1.385, "feet"),
  4446. name: "Talons",
  4447. image: {
  4448. source: "./media/characters/noah/talons.svg"
  4449. }
  4450. },
  4451. beak: {
  4452. height: math.unit(0.43, "feet"),
  4453. name: "Beak",
  4454. image: {
  4455. source: "./media/characters/noah/beak.svg"
  4456. }
  4457. },
  4458. collar: {
  4459. height: math.unit(0.88, "feet"),
  4460. name: "Collar",
  4461. image: {
  4462. source: "./media/characters/noah/collar.svg"
  4463. }
  4464. },
  4465. eyeNarrow: {
  4466. height: math.unit(0.18, "feet"),
  4467. name: "Eye (Narrow)",
  4468. image: {
  4469. source: "./media/characters/noah/eye-narrow.svg"
  4470. }
  4471. },
  4472. eyeNormal: {
  4473. height: math.unit(0.18, "feet"),
  4474. name: "Eye (Normal)",
  4475. image: {
  4476. source: "./media/characters/noah/eye-normal.svg"
  4477. }
  4478. },
  4479. eyeWide: {
  4480. height: math.unit(0.18, "feet"),
  4481. name: "Eye (Wide)",
  4482. image: {
  4483. source: "./media/characters/noah/eye-wide.svg"
  4484. }
  4485. },
  4486. ear: {
  4487. height: math.unit(0.64, "feet"),
  4488. name: "Ear",
  4489. image: {
  4490. source: "./media/characters/noah/ear.svg"
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "Large",
  4497. height: math.unit(50, "feet")
  4498. },
  4499. {
  4500. name: "Macro",
  4501. height: math.unit(750, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(50, "miles")
  4507. },
  4508. {
  4509. name: "Gigamacro",
  4510. height: math.unit(100000, "miles")
  4511. },
  4512. {
  4513. name: "Full-Size",
  4514. height: math.unit(3000000000, "miles")
  4515. }
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4520. {
  4521. front: {
  4522. height: math.unit(2, "meter"),
  4523. weight: math.unit(80, "kg"),
  4524. name: "Front",
  4525. image: {
  4526. source: "./media/characters/natalya/front.svg"
  4527. }
  4528. },
  4529. back: {
  4530. height: math.unit(2, "meter"),
  4531. weight: math.unit(80, "kg"),
  4532. name: "Back",
  4533. image: {
  4534. source: "./media/characters/natalya/back.svg"
  4535. }
  4536. }
  4537. },
  4538. [
  4539. {
  4540. name: "Normal",
  4541. height: math.unit(150, "feet"),
  4542. default: true
  4543. },
  4544. {
  4545. name: "Megamacro",
  4546. height: math.unit(5, "miles")
  4547. },
  4548. {
  4549. name: "Full-Size",
  4550. height: math.unit(600, "kiloparsecs")
  4551. }
  4552. ]
  4553. ))
  4554. characterMakers.push(() => makeCharacter(
  4555. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4556. {
  4557. front: {
  4558. height: math.unit(2, "meter"),
  4559. weight: math.unit(50, "kg"),
  4560. name: "Front",
  4561. image: {
  4562. source: "./media/characters/erestrebah/front.svg",
  4563. extra: 1262/1162,
  4564. bottom: 96/1358
  4565. }
  4566. },
  4567. back: {
  4568. height: math.unit(2, "meter"),
  4569. weight: math.unit(50, "kg"),
  4570. name: "Back",
  4571. image: {
  4572. source: "./media/characters/erestrebah/back.svg",
  4573. extra: 1257/1139,
  4574. bottom: 13/1270
  4575. }
  4576. },
  4577. wing: {
  4578. height: math.unit(2, "meter"),
  4579. weight: math.unit(50, "kg"),
  4580. name: "Wing",
  4581. image: {
  4582. source: "./media/characters/erestrebah/wing.svg",
  4583. extra: 1262/1162,
  4584. bottom: 96/1358
  4585. }
  4586. },
  4587. mouth: {
  4588. height: math.unit(0.39, "feet"),
  4589. name: "Mouth",
  4590. image: {
  4591. source: "./media/characters/erestrebah/mouth.svg"
  4592. }
  4593. }
  4594. },
  4595. [
  4596. {
  4597. name: "Normal",
  4598. height: math.unit(10, "feet")
  4599. },
  4600. {
  4601. name: "Large",
  4602. height: math.unit(50, "feet"),
  4603. default: true
  4604. },
  4605. {
  4606. name: "Macro",
  4607. height: math.unit(300, "feet")
  4608. },
  4609. {
  4610. name: "Macro+",
  4611. height: math.unit(750, "feet")
  4612. },
  4613. {
  4614. name: "Megamacro",
  4615. height: math.unit(3, "miles")
  4616. }
  4617. ]
  4618. ))
  4619. characterMakers.push(() => makeCharacter(
  4620. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4621. {
  4622. front: {
  4623. height: math.unit(2, "meter"),
  4624. weight: math.unit(80, "kg"),
  4625. name: "Front",
  4626. image: {
  4627. source: "./media/characters/jennifer/front.svg",
  4628. bottom: 0.11,
  4629. extra: 1.16
  4630. }
  4631. },
  4632. frontAlt: {
  4633. height: math.unit(2, "meter"),
  4634. weight: math.unit(80, "kg"),
  4635. name: "Front (Alt)",
  4636. image: {
  4637. source: "./media/characters/jennifer/front-alt.svg"
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Canon Height",
  4644. height: math.unit(120, "feet"),
  4645. default: true
  4646. },
  4647. {
  4648. name: "Macro+",
  4649. height: math.unit(300, "feet")
  4650. },
  4651. {
  4652. name: "Megamacro",
  4653. height: math.unit(20000, "feet")
  4654. }
  4655. ]
  4656. ))
  4657. characterMakers.push(() => makeCharacter(
  4658. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4659. {
  4660. front: {
  4661. height: math.unit(2, "meter"),
  4662. weight: math.unit(50, "kg"),
  4663. name: "Front",
  4664. image: {
  4665. source: "./media/characters/kalista/front.svg",
  4666. extra: 1314/1145,
  4667. bottom: 101/1415
  4668. }
  4669. },
  4670. back: {
  4671. height: math.unit(2, "meter"),
  4672. weight: math.unit(50, "kg"),
  4673. name: "Back",
  4674. image: {
  4675. source: "./media/characters/kalista/back.svg",
  4676. extra: 1366 / 1156,
  4677. bottom: 33.9 / 1362.78
  4678. }
  4679. }
  4680. },
  4681. [
  4682. {
  4683. name: "Uncomfortably Small",
  4684. height: math.unit(10, "feet")
  4685. },
  4686. {
  4687. name: "Small",
  4688. height: math.unit(30, "feet")
  4689. },
  4690. {
  4691. name: "Macro",
  4692. height: math.unit(100, "feet"),
  4693. default: true
  4694. },
  4695. {
  4696. name: "Macro+",
  4697. height: math.unit(2000, "feet")
  4698. },
  4699. {
  4700. name: "True Form",
  4701. height: math.unit(8924, "miles")
  4702. }
  4703. ]
  4704. ))
  4705. characterMakers.push(() => makeCharacter(
  4706. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4707. {
  4708. front: {
  4709. height: math.unit(2, "meter"),
  4710. weight: math.unit(120, "kg"),
  4711. name: "Front",
  4712. image: {
  4713. source: "./media/characters/ggv/front.svg"
  4714. }
  4715. },
  4716. side: {
  4717. height: math.unit(2, "meter"),
  4718. weight: math.unit(120, "kg"),
  4719. name: "Side",
  4720. image: {
  4721. source: "./media/characters/ggv/side.svg"
  4722. }
  4723. }
  4724. },
  4725. [
  4726. {
  4727. name: "Extremely Puny",
  4728. height: math.unit(9 + 5 / 12, "feet")
  4729. },
  4730. {
  4731. name: "Horribly Small",
  4732. height: math.unit(47.7, "miles"),
  4733. default: true
  4734. },
  4735. {
  4736. name: "Reasonably Sized",
  4737. height: math.unit(25000, "parsecs")
  4738. },
  4739. {
  4740. name: "Slightly Uncompressed",
  4741. height: math.unit(7.77e31, "parsecs")
  4742. },
  4743. {
  4744. name: "Omniversal",
  4745. height: math.unit(1e300, "meters")
  4746. },
  4747. ]
  4748. ))
  4749. characterMakers.push(() => makeCharacter(
  4750. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4751. {
  4752. front: {
  4753. height: math.unit(2, "meter"),
  4754. weight: math.unit(75, "lb"),
  4755. name: "Front",
  4756. image: {
  4757. source: "./media/characters/napalm/front.svg"
  4758. }
  4759. },
  4760. back: {
  4761. height: math.unit(2, "meter"),
  4762. weight: math.unit(75, "lb"),
  4763. name: "Back",
  4764. image: {
  4765. source: "./media/characters/napalm/back.svg"
  4766. }
  4767. }
  4768. },
  4769. [
  4770. {
  4771. name: "Standard",
  4772. height: math.unit(55, "feet"),
  4773. default: true
  4774. }
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4779. {
  4780. front: {
  4781. height: math.unit(7 + 5 / 6, "feet"),
  4782. weight: math.unit(325, "lb"),
  4783. name: "Front",
  4784. image: {
  4785. source: "./media/characters/asana/front.svg",
  4786. extra: 1133 / 1060,
  4787. bottom: 15.2 / 1148.6
  4788. }
  4789. },
  4790. back: {
  4791. height: math.unit(7 + 5 / 6, "feet"),
  4792. weight: math.unit(325, "lb"),
  4793. name: "Back",
  4794. image: {
  4795. source: "./media/characters/asana/back.svg",
  4796. extra: 1114 / 1043,
  4797. bottom: 5 / 1120
  4798. }
  4799. },
  4800. dressedDark: {
  4801. height: math.unit(7 + 5 / 6, "feet"),
  4802. weight: math.unit(325, "lb"),
  4803. name: "Dressed (Dark)",
  4804. image: {
  4805. source: "./media/characters/asana/dressed-dark.svg",
  4806. extra: 1133 / 1060,
  4807. bottom: 15.2 / 1148.6
  4808. }
  4809. },
  4810. dressedLight: {
  4811. height: math.unit(7 + 5 / 6, "feet"),
  4812. weight: math.unit(325, "lb"),
  4813. name: "Dressed (Light)",
  4814. image: {
  4815. source: "./media/characters/asana/dressed-light.svg",
  4816. extra: 1133 / 1060,
  4817. bottom: 15.2 / 1148.6
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Standard",
  4824. height: math.unit(7 + 5 / 6, "feet"),
  4825. default: true
  4826. },
  4827. {
  4828. name: "Large",
  4829. height: math.unit(10, "meters")
  4830. },
  4831. {
  4832. name: "Macro",
  4833. height: math.unit(2500, "meters")
  4834. },
  4835. {
  4836. name: "Megamacro",
  4837. height: math.unit(5e6, "meters")
  4838. },
  4839. {
  4840. name: "Examacro",
  4841. height: math.unit(5e12, "lightyears")
  4842. },
  4843. {
  4844. name: "Max Size",
  4845. height: math.unit(1e31, "lightyears")
  4846. }
  4847. ]
  4848. ))
  4849. characterMakers.push(() => makeCharacter(
  4850. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4851. {
  4852. front: {
  4853. height: math.unit(2, "meter"),
  4854. weight: math.unit(60, "kg"),
  4855. name: "Front",
  4856. image: {
  4857. source: "./media/characters/ebony/front.svg",
  4858. bottom: 0.03,
  4859. extra: 1045 / 810 + 0.03
  4860. }
  4861. },
  4862. side: {
  4863. height: math.unit(2, "meter"),
  4864. weight: math.unit(60, "kg"),
  4865. name: "Side",
  4866. image: {
  4867. source: "./media/characters/ebony/side.svg",
  4868. bottom: 0.03,
  4869. extra: 1045 / 810 + 0.03
  4870. }
  4871. },
  4872. back: {
  4873. height: math.unit(2, "meter"),
  4874. weight: math.unit(60, "kg"),
  4875. name: "Back",
  4876. image: {
  4877. source: "./media/characters/ebony/back.svg",
  4878. bottom: 0.01,
  4879. extra: 1045 / 810 + 0.01
  4880. }
  4881. },
  4882. },
  4883. [
  4884. // TODO check why I did this lol
  4885. {
  4886. name: "Standard",
  4887. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(200, "feet")
  4893. },
  4894. {
  4895. name: "Gigamacro",
  4896. height: math.unit(13000, "km")
  4897. }
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4902. {
  4903. front: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(175, "lb"),
  4906. name: "Front",
  4907. image: {
  4908. source: "./media/characters/mountain/front.svg",
  4909. extra: 972 / 955,
  4910. bottom: 64 / 1036.6
  4911. }
  4912. },
  4913. back: {
  4914. height: math.unit(6, "feet"),
  4915. weight: math.unit(175, "lb"),
  4916. name: "Back",
  4917. image: {
  4918. source: "./media/characters/mountain/back.svg",
  4919. extra: 970 / 950,
  4920. bottom: 28.25 / 999
  4921. }
  4922. },
  4923. },
  4924. [
  4925. {
  4926. name: "Large",
  4927. height: math.unit(20, "meters")
  4928. },
  4929. {
  4930. name: "Macro",
  4931. height: math.unit(300, "meters")
  4932. },
  4933. {
  4934. name: "Gigamacro",
  4935. height: math.unit(10000, "km"),
  4936. default: true
  4937. },
  4938. {
  4939. name: "Examacro",
  4940. height: math.unit(10e9, "lightyears")
  4941. }
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4946. {
  4947. front: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(500, "lb"),
  4950. name: "Front",
  4951. image: {
  4952. source: "./media/characters/rick/front.svg"
  4953. }
  4954. }
  4955. },
  4956. [
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(8, "feet"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Macro",
  4964. height: math.unit(5, "km")
  4965. }
  4966. ]
  4967. ))
  4968. characterMakers.push(() => makeCharacter(
  4969. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4970. {
  4971. front: {
  4972. height: math.unit(8, "feet"),
  4973. weight: math.unit(120, "lb"),
  4974. name: "Front",
  4975. image: {
  4976. source: "./media/characters/ona/front.svg"
  4977. }
  4978. },
  4979. frontAlt: {
  4980. height: math.unit(8, "feet"),
  4981. weight: math.unit(120, "lb"),
  4982. name: "Front (Alt)",
  4983. image: {
  4984. source: "./media/characters/ona/front-alt.svg"
  4985. }
  4986. },
  4987. back: {
  4988. height: math.unit(8, "feet"),
  4989. weight: math.unit(120, "lb"),
  4990. name: "Back",
  4991. image: {
  4992. source: "./media/characters/ona/back.svg"
  4993. }
  4994. },
  4995. foot: {
  4996. height: math.unit(1.1, "feet"),
  4997. name: "Foot",
  4998. image: {
  4999. source: "./media/characters/ona/foot.svg"
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Megamacro",
  5006. height: math.unit(70, "km"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Gigamacro",
  5011. height: math.unit(681818, "miles")
  5012. },
  5013. {
  5014. name: "Examacro",
  5015. height: math.unit(3800000, "lightyears")
  5016. },
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(12, "feet"),
  5024. weight: math.unit(3000, "lb"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/mech/front.svg",
  5028. extra: 2900 / 2770,
  5029. bottom: 110 / 3010
  5030. }
  5031. },
  5032. back: {
  5033. height: math.unit(12, "feet"),
  5034. weight: math.unit(3000, "lb"),
  5035. name: "Back",
  5036. image: {
  5037. source: "./media/characters/mech/back.svg",
  5038. extra: 3011 / 2890,
  5039. bottom: 94 / 3105
  5040. }
  5041. },
  5042. maw: {
  5043. height: math.unit(3.07, "feet"),
  5044. name: "Maw",
  5045. image: {
  5046. source: "./media/characters/mech/maw.svg"
  5047. }
  5048. },
  5049. head: {
  5050. height: math.unit(3.07, "feet"),
  5051. name: "Head",
  5052. image: {
  5053. source: "./media/characters/mech/head.svg"
  5054. }
  5055. },
  5056. dick: {
  5057. height: math.unit(1.43, "feet"),
  5058. name: "Dick",
  5059. image: {
  5060. source: "./media/characters/mech/dick.svg"
  5061. }
  5062. },
  5063. },
  5064. [
  5065. {
  5066. name: "Normal",
  5067. height: math.unit(12, "feet")
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(300, "feet"),
  5072. default: true
  5073. },
  5074. {
  5075. name: "Macro+",
  5076. height: math.unit(1500, "feet")
  5077. },
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5082. {
  5083. front: {
  5084. height: math.unit(1.3, "meter"),
  5085. weight: math.unit(30, "kg"),
  5086. name: "Front",
  5087. image: {
  5088. source: "./media/characters/gregory/front.svg",
  5089. }
  5090. }
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(1.3, "meter"),
  5096. default: true
  5097. },
  5098. {
  5099. name: "Macro",
  5100. height: math.unit(20, "meter")
  5101. }
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5106. {
  5107. front: {
  5108. height: math.unit(2.8, "meter"),
  5109. weight: math.unit(200, "kg"),
  5110. name: "Front",
  5111. image: {
  5112. source: "./media/characters/elory/front.svg",
  5113. }
  5114. }
  5115. },
  5116. [
  5117. {
  5118. name: "Normal",
  5119. height: math.unit(2.8, "meter"),
  5120. default: true
  5121. },
  5122. {
  5123. name: "Macro",
  5124. height: math.unit(38, "meter")
  5125. }
  5126. ]
  5127. ))
  5128. characterMakers.push(() => makeCharacter(
  5129. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5130. {
  5131. front: {
  5132. height: math.unit(470, "feet"),
  5133. weight: math.unit(924, "tons"),
  5134. name: "Front",
  5135. image: {
  5136. source: "./media/characters/angelpatamon/front.svg",
  5137. }
  5138. }
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(470, "feet"),
  5144. default: true
  5145. },
  5146. {
  5147. name: "Deity Size I",
  5148. height: math.unit(28651.2, "km")
  5149. },
  5150. {
  5151. name: "Deity Size II",
  5152. height: math.unit(171907.2, "km")
  5153. }
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5158. {
  5159. side: {
  5160. height: math.unit(7.2, "meter"),
  5161. weight: math.unit(8.2, "tons"),
  5162. name: "Side",
  5163. image: {
  5164. source: "./media/characters/cryae/side.svg",
  5165. extra: 3500 / 1500
  5166. }
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(7.2, "meter"),
  5173. default: true
  5174. }
  5175. ]
  5176. ))
  5177. characterMakers.push(() => makeCharacter(
  5178. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5179. {
  5180. front: {
  5181. height: math.unit(6, "feet"),
  5182. weight: math.unit(175, "lb"),
  5183. name: "Front",
  5184. image: {
  5185. source: "./media/characters/xera/front.svg",
  5186. extra: 2377 / 1972,
  5187. bottom: 75.5 / 2452
  5188. }
  5189. },
  5190. side: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(175, "lb"),
  5193. name: "Side",
  5194. image: {
  5195. source: "./media/characters/xera/side.svg",
  5196. extra: 2345 / 2019,
  5197. bottom: 39.7 / 2384
  5198. }
  5199. },
  5200. back: {
  5201. height: math.unit(6, "feet"),
  5202. weight: math.unit(175, "lb"),
  5203. name: "Back",
  5204. image: {
  5205. source: "./media/characters/xera/back.svg",
  5206. extra: 2095 / 1984,
  5207. bottom: 67 / 2166
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Small",
  5214. height: math.unit(10, "feet")
  5215. },
  5216. {
  5217. name: "Macro",
  5218. height: math.unit(500, "meters"),
  5219. default: true
  5220. },
  5221. {
  5222. name: "Macro+",
  5223. height: math.unit(10, "km")
  5224. },
  5225. {
  5226. name: "Gigamacro",
  5227. height: math.unit(25000, "km")
  5228. },
  5229. {
  5230. name: "Teramacro",
  5231. height: math.unit(3e6, "km")
  5232. }
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5237. {
  5238. front: {
  5239. height: math.unit(6, "feet"),
  5240. weight: math.unit(175, "lb"),
  5241. name: "Front",
  5242. image: {
  5243. source: "./media/characters/nebula/front.svg",
  5244. extra: 2566 / 2362,
  5245. bottom: 81 / 2644
  5246. }
  5247. }
  5248. },
  5249. [
  5250. {
  5251. name: "Small",
  5252. height: math.unit(4.5, "meters")
  5253. },
  5254. {
  5255. name: "Macro",
  5256. height: math.unit(1500, "meters"),
  5257. default: true
  5258. },
  5259. {
  5260. name: "Megamacro",
  5261. height: math.unit(150, "km")
  5262. },
  5263. {
  5264. name: "Gigamacro",
  5265. height: math.unit(27000, "km")
  5266. }
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5271. {
  5272. front: {
  5273. height: math.unit(6, "feet"),
  5274. weight: math.unit(225, "lb"),
  5275. name: "Front",
  5276. image: {
  5277. source: "./media/characters/abysgar/front.svg",
  5278. extra: 1739/1614,
  5279. bottom: 71/1810
  5280. }
  5281. },
  5282. frontNsfw: {
  5283. height: math.unit(6, "feet"),
  5284. weight: math.unit(225, "lb"),
  5285. name: "Front (NSFW)",
  5286. image: {
  5287. source: "./media/characters/abysgar/front-nsfw.svg",
  5288. extra: 1739/1614,
  5289. bottom: 71/1810
  5290. }
  5291. },
  5292. back: {
  5293. height: math.unit(4.6, "feet"),
  5294. weight: math.unit(225, "lb"),
  5295. name: "Back",
  5296. image: {
  5297. source: "./media/characters/abysgar/back.svg",
  5298. extra: 1384/1327,
  5299. bottom: 0/1384
  5300. }
  5301. },
  5302. head: {
  5303. height: math.unit(1.25, "feet"),
  5304. name: "Head",
  5305. image: {
  5306. source: "./media/characters/abysgar/head.svg",
  5307. extra: 669/569,
  5308. bottom: 0/669
  5309. }
  5310. },
  5311. },
  5312. [
  5313. {
  5314. name: "Small",
  5315. height: math.unit(4.5, "meters")
  5316. },
  5317. {
  5318. name: "Macro",
  5319. height: math.unit(1250, "meters"),
  5320. default: true
  5321. },
  5322. {
  5323. name: "Megamacro",
  5324. height: math.unit(125, "km")
  5325. },
  5326. {
  5327. name: "Gigamacro",
  5328. height: math.unit(26000, "km")
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5334. {
  5335. front: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(180, "lb"),
  5338. name: "Front",
  5339. image: {
  5340. source: "./media/characters/yakuz/front.svg"
  5341. }
  5342. }
  5343. },
  5344. [
  5345. {
  5346. name: "Small",
  5347. height: math.unit(5, "meters")
  5348. },
  5349. {
  5350. name: "Macro",
  5351. height: math.unit(1500, "meters"),
  5352. default: true
  5353. },
  5354. {
  5355. name: "Megamacro",
  5356. height: math.unit(200, "km")
  5357. },
  5358. {
  5359. name: "Gigamacro",
  5360. height: math.unit(100000, "km")
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5366. {
  5367. front: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(175, "lb"),
  5370. name: "Front",
  5371. image: {
  5372. source: "./media/characters/mirova/front.svg",
  5373. extra: 3334 / 3071,
  5374. bottom: 42 / 3375.6
  5375. }
  5376. }
  5377. },
  5378. [
  5379. {
  5380. name: "Small",
  5381. height: math.unit(5, "meters")
  5382. },
  5383. {
  5384. name: "Macro",
  5385. height: math.unit(900, "meters"),
  5386. default: true
  5387. },
  5388. {
  5389. name: "Megamacro",
  5390. height: math.unit(135, "km")
  5391. },
  5392. {
  5393. name: "Gigamacro",
  5394. height: math.unit(20000, "km")
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5400. {
  5401. side: {
  5402. height: math.unit(28.35, "feet"),
  5403. weight: math.unit(99.75, "tons"),
  5404. name: "Side",
  5405. image: {
  5406. source: "./media/characters/asana-mech/side.svg",
  5407. extra: 923 / 699,
  5408. bottom: 50 / 975
  5409. }
  5410. },
  5411. chaingun: {
  5412. height: math.unit(7, "feet"),
  5413. weight: math.unit(2400, "lb"),
  5414. name: "Chaingun",
  5415. image: {
  5416. source: "./media/characters/asana-mech/chaingun.svg"
  5417. }
  5418. },
  5419. laser: {
  5420. height: math.unit(7.12, "feet"),
  5421. weight: math.unit(2000, "lb"),
  5422. name: "Laser",
  5423. image: {
  5424. source: "./media/characters/asana-mech/laser.svg"
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(28.35, "feet"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "Macro",
  5436. height: math.unit(2500, "feet")
  5437. },
  5438. {
  5439. name: "Megamacro",
  5440. height: math.unit(25, "miles")
  5441. },
  5442. {
  5443. name: "Examacro",
  5444. height: math.unit(6e8, "lightyears")
  5445. },
  5446. ]
  5447. ))
  5448. characterMakers.push(() => makeCharacter(
  5449. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5450. {
  5451. front: {
  5452. height: math.unit(5, "meters"),
  5453. weight: math.unit(1000, "kg"),
  5454. name: "Front",
  5455. image: {
  5456. source: "./media/characters/asche/front.svg",
  5457. extra: 1258 / 1190,
  5458. bottom: 47 / 1305
  5459. }
  5460. },
  5461. frontUnderwear: {
  5462. height: math.unit(5, "meters"),
  5463. weight: math.unit(1000, "kg"),
  5464. name: "Front (Underwear)",
  5465. image: {
  5466. source: "./media/characters/asche/front-underwear.svg",
  5467. extra: 1258 / 1190,
  5468. bottom: 47 / 1305
  5469. }
  5470. },
  5471. frontDressed: {
  5472. height: math.unit(5, "meters"),
  5473. weight: math.unit(1000, "kg"),
  5474. name: "Front (Dressed)",
  5475. image: {
  5476. source: "./media/characters/asche/front-dressed.svg",
  5477. extra: 1258 / 1190,
  5478. bottom: 47 / 1305
  5479. }
  5480. },
  5481. frontArmor: {
  5482. height: math.unit(5, "meters"),
  5483. weight: math.unit(1000, "kg"),
  5484. name: "Front (Armored)",
  5485. image: {
  5486. source: "./media/characters/asche/front-armored.svg",
  5487. extra: 1374 / 1308,
  5488. bottom: 23 / 1397
  5489. }
  5490. },
  5491. mp724: {
  5492. height: math.unit(0.96, "meters"),
  5493. weight: math.unit(38, "kg"),
  5494. name: "H&K MP724",
  5495. image: {
  5496. source: "./media/characters/asche/h&k-mp724.svg"
  5497. }
  5498. },
  5499. side: {
  5500. height: math.unit(5, "meters"),
  5501. weight: math.unit(1000, "kg"),
  5502. name: "Side",
  5503. image: {
  5504. source: "./media/characters/asche/side.svg",
  5505. extra: 1717 / 1609,
  5506. bottom: 0.005
  5507. }
  5508. },
  5509. back: {
  5510. height: math.unit(5, "meters"),
  5511. weight: math.unit(1000, "kg"),
  5512. name: "Back",
  5513. image: {
  5514. source: "./media/characters/asche/back.svg",
  5515. extra: 1570 / 1501
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "DEFCON 5",
  5522. height: math.unit(5, "meters")
  5523. },
  5524. {
  5525. name: "DEFCON 4",
  5526. height: math.unit(500, "meters"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "DEFCON 3",
  5531. height: math.unit(5, "km")
  5532. },
  5533. {
  5534. name: "DEFCON 2",
  5535. height: math.unit(500, "km")
  5536. },
  5537. {
  5538. name: "DEFCON 1",
  5539. height: math.unit(500000, "km")
  5540. },
  5541. {
  5542. name: "DEFCON 0",
  5543. height: math.unit(3, "gigaparsecs")
  5544. },
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5549. {
  5550. front: {
  5551. height: math.unit(7, "feet"),
  5552. weight: math.unit(92.7, "kg"),
  5553. name: "Front",
  5554. image: {
  5555. source: "./media/characters/gale/front.svg",
  5556. extra: 977/919,
  5557. bottom: 105/1082
  5558. }
  5559. },
  5560. side: {
  5561. height: math.unit(6.7, "feet"),
  5562. weight: math.unit(92.7, "kg"),
  5563. name: "Side",
  5564. image: {
  5565. source: "./media/characters/gale/side.svg",
  5566. extra: 978/922,
  5567. bottom: 140/1118
  5568. }
  5569. },
  5570. back: {
  5571. height: math.unit(7, "feet"),
  5572. weight: math.unit(92.7, "kg"),
  5573. name: "Back",
  5574. image: {
  5575. source: "./media/characters/gale/back.svg",
  5576. extra: 966/920,
  5577. bottom: 61/1027
  5578. }
  5579. },
  5580. maw: {
  5581. height: math.unit(2.23, "feet"),
  5582. name: "Maw",
  5583. image: {
  5584. source: "./media/characters/gale/maw.svg"
  5585. }
  5586. },
  5587. foot: {
  5588. height: math.unit(2.1, "feet"),
  5589. name: "Foot",
  5590. image: {
  5591. source: "./media/characters/gale/foot.svg"
  5592. }
  5593. },
  5594. },
  5595. [
  5596. {
  5597. name: "Normal",
  5598. height: math.unit(7, "feet")
  5599. },
  5600. {
  5601. name: "Macro",
  5602. height: math.unit(150, "feet"),
  5603. default: true
  5604. },
  5605. {
  5606. name: "Macro+",
  5607. height: math.unit(300, "feet")
  5608. },
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5613. {
  5614. front: {
  5615. height: math.unit(5 + 10/12, "feet"),
  5616. weight: math.unit(67, "kg"),
  5617. name: "Front",
  5618. image: {
  5619. source: "./media/characters/draylen/front.svg",
  5620. extra: 832/777,
  5621. bottom: 85/917
  5622. }
  5623. }
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(5 + 10/12, "feet")
  5629. },
  5630. {
  5631. name: "Macro",
  5632. height: math.unit(150, "feet"),
  5633. default: true
  5634. }
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5639. {
  5640. front: {
  5641. height: math.unit(7 + 9 / 12, "feet"),
  5642. weight: math.unit(379, "lbs"),
  5643. name: "Front",
  5644. image: {
  5645. source: "./media/characters/chez/front.svg"
  5646. }
  5647. },
  5648. side: {
  5649. height: math.unit(7 + 9 / 12, "feet"),
  5650. weight: math.unit(379, "lbs"),
  5651. name: "Side",
  5652. image: {
  5653. source: "./media/characters/chez/side.svg"
  5654. }
  5655. }
  5656. },
  5657. [
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(7 + 9 / 12, "feet"),
  5661. default: true
  5662. },
  5663. {
  5664. name: "God King",
  5665. height: math.unit(9750000, "meters")
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(275, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/kaylum/front.svg",
  5678. bottom: 0.01,
  5679. extra: 1166 / 1031
  5680. }
  5681. },
  5682. frontWingless: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(275, "lbs"),
  5685. name: "Front (Wingless)",
  5686. image: {
  5687. source: "./media/characters/kaylum/front-wingless.svg",
  5688. bottom: 0.01,
  5689. extra: 1117 / 1031
  5690. }
  5691. }
  5692. },
  5693. [
  5694. {
  5695. name: "Normal",
  5696. height: math.unit(3.05, "meters")
  5697. },
  5698. {
  5699. name: "Master",
  5700. height: math.unit(5.5, "meters")
  5701. },
  5702. {
  5703. name: "Rampage",
  5704. height: math.unit(19, "meters")
  5705. },
  5706. {
  5707. name: "Macro Lite",
  5708. height: math.unit(37, "meters")
  5709. },
  5710. {
  5711. name: "Hyper Predator",
  5712. height: math.unit(61, "meters")
  5713. },
  5714. {
  5715. name: "Macro",
  5716. height: math.unit(138, "meters"),
  5717. default: true
  5718. }
  5719. ]
  5720. ))
  5721. characterMakers.push(() => makeCharacter(
  5722. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5723. {
  5724. front: {
  5725. height: math.unit(5 + 5 / 12, "feet"),
  5726. weight: math.unit(120, "lbs"),
  5727. name: "Front",
  5728. image: {
  5729. source: "./media/characters/geta/front.svg",
  5730. extra: 1003/933,
  5731. bottom: 21/1024
  5732. }
  5733. },
  5734. paw: {
  5735. height: math.unit(0.35, "feet"),
  5736. name: "Paw",
  5737. image: {
  5738. source: "./media/characters/geta/paw.svg"
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Micro",
  5745. height: math.unit(3, "inches"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Normal",
  5750. height: math.unit(5 + 5 / 12, "feet")
  5751. }
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5756. {
  5757. front: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(300, "lbs"),
  5760. name: "Front",
  5761. image: {
  5762. source: "./media/characters/tyrnn/front.svg"
  5763. }
  5764. }
  5765. },
  5766. [
  5767. {
  5768. name: "Main Height",
  5769. height: math.unit(355, "feet"),
  5770. default: true
  5771. },
  5772. {
  5773. name: "Fave. Height",
  5774. height: math.unit(2400, "feet")
  5775. }
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(300, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/appledectomy/front.svg"
  5787. }
  5788. }
  5789. },
  5790. [
  5791. {
  5792. name: "Macro",
  5793. height: math.unit(2500, "feet")
  5794. },
  5795. {
  5796. name: "Megamacro",
  5797. height: math.unit(50, "miles"),
  5798. default: true
  5799. },
  5800. {
  5801. name: "Gigamacro",
  5802. height: math.unit(5000, "miles")
  5803. },
  5804. {
  5805. name: "Teramacro",
  5806. height: math.unit(250000, "miles")
  5807. },
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5812. {
  5813. front: {
  5814. height: math.unit(6, "feet"),
  5815. weight: math.unit(200, "lbs"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/vulpes/front.svg",
  5819. extra: 573 / 543,
  5820. bottom: 0.033
  5821. }
  5822. },
  5823. side: {
  5824. height: math.unit(6, "feet"),
  5825. weight: math.unit(200, "lbs"),
  5826. name: "Side",
  5827. image: {
  5828. source: "./media/characters/vulpes/side.svg",
  5829. extra: 577 / 549,
  5830. bottom: 11 / 588
  5831. }
  5832. },
  5833. back: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(200, "lbs"),
  5836. name: "Back",
  5837. image: {
  5838. source: "./media/characters/vulpes/back.svg",
  5839. extra: 573 / 549,
  5840. bottom: 20 / 593
  5841. }
  5842. },
  5843. feet: {
  5844. height: math.unit(1.276, "feet"),
  5845. name: "Feet",
  5846. image: {
  5847. source: "./media/characters/vulpes/feet.svg"
  5848. }
  5849. },
  5850. maw: {
  5851. height: math.unit(1.18, "feet"),
  5852. name: "Maw",
  5853. image: {
  5854. source: "./media/characters/vulpes/maw.svg"
  5855. }
  5856. },
  5857. },
  5858. [
  5859. {
  5860. name: "Micro",
  5861. height: math.unit(2, "inches")
  5862. },
  5863. {
  5864. name: "Normal",
  5865. height: math.unit(6.3, "feet")
  5866. },
  5867. {
  5868. name: "Macro",
  5869. height: math.unit(850, "feet")
  5870. },
  5871. {
  5872. name: "Megamacro",
  5873. height: math.unit(7500, "feet"),
  5874. default: true
  5875. },
  5876. {
  5877. name: "Gigamacro",
  5878. height: math.unit(570000, "miles")
  5879. }
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5884. {
  5885. front: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(210, "lbs"),
  5888. name: "Front",
  5889. image: {
  5890. source: "./media/characters/rain-fallen/front.svg"
  5891. }
  5892. },
  5893. side: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(210, "lbs"),
  5896. name: "Side",
  5897. image: {
  5898. source: "./media/characters/rain-fallen/side.svg"
  5899. }
  5900. },
  5901. back: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(210, "lbs"),
  5904. name: "Back",
  5905. image: {
  5906. source: "./media/characters/rain-fallen/back.svg"
  5907. }
  5908. },
  5909. feral: {
  5910. height: math.unit(9, "feet"),
  5911. weight: math.unit(700, "lbs"),
  5912. name: "Feral",
  5913. image: {
  5914. source: "./media/characters/rain-fallen/feral.svg"
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Meddling with Mortals",
  5921. height: math.unit(8 + 8/12, "feet")
  5922. },
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(5, "meter")
  5926. },
  5927. {
  5928. name: "Macro",
  5929. height: math.unit(150, "meter"),
  5930. default: true
  5931. },
  5932. {
  5933. name: "Megamacro",
  5934. height: math.unit(278e6, "meter")
  5935. },
  5936. {
  5937. name: "Gigamacro",
  5938. height: math.unit(2e9, "meter")
  5939. },
  5940. {
  5941. name: "Teramacro",
  5942. height: math.unit(8e12, "meter")
  5943. },
  5944. {
  5945. name: "Devourer",
  5946. height: math.unit(14, "zettameters")
  5947. },
  5948. {
  5949. name: "Scarlet King",
  5950. height: math.unit(18, "yottameters")
  5951. },
  5952. {
  5953. name: "Void",
  5954. height: math.unit(1e88, "yottameters")
  5955. }
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5960. {
  5961. standing: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(180, "lbs"),
  5964. name: "Standing",
  5965. image: {
  5966. source: "./media/characters/zaakira/standing.svg",
  5967. extra: 1599/1504,
  5968. bottom: 39/1638
  5969. }
  5970. },
  5971. laying: {
  5972. height: math.unit(3.3, "feet"),
  5973. weight: math.unit(180, "lbs"),
  5974. name: "Laying",
  5975. image: {
  5976. source: "./media/characters/zaakira/laying.svg"
  5977. }
  5978. },
  5979. },
  5980. [
  5981. {
  5982. name: "Normal",
  5983. height: math.unit(12, "feet")
  5984. },
  5985. {
  5986. name: "Macro",
  5987. height: math.unit(279, "feet"),
  5988. default: true
  5989. }
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5994. {
  5995. femSfw: {
  5996. height: math.unit(8, "feet"),
  5997. weight: math.unit(350, "lb"),
  5998. name: "Fem",
  5999. image: {
  6000. source: "./media/characters/sigvald/fem-sfw.svg",
  6001. extra: 182 / 164,
  6002. bottom: 8.7 / 190.5
  6003. }
  6004. },
  6005. femNsfw: {
  6006. height: math.unit(8, "feet"),
  6007. weight: math.unit(350, "lb"),
  6008. name: "Fem (NSFW)",
  6009. image: {
  6010. source: "./media/characters/sigvald/fem-nsfw.svg",
  6011. extra: 182 / 164,
  6012. bottom: 8.7 / 190.5
  6013. }
  6014. },
  6015. maleNsfw: {
  6016. height: math.unit(8, "feet"),
  6017. weight: math.unit(350, "lb"),
  6018. name: "Male (NSFW)",
  6019. image: {
  6020. source: "./media/characters/sigvald/male-nsfw.svg",
  6021. extra: 182 / 164,
  6022. bottom: 8.7 / 190.5
  6023. }
  6024. },
  6025. hermNsfw: {
  6026. height: math.unit(8, "feet"),
  6027. weight: math.unit(350, "lb"),
  6028. name: "Herm (NSFW)",
  6029. image: {
  6030. source: "./media/characters/sigvald/herm-nsfw.svg",
  6031. extra: 182 / 164,
  6032. bottom: 8.7 / 190.5
  6033. }
  6034. },
  6035. dick: {
  6036. height: math.unit(2.36, "feet"),
  6037. name: "Dick",
  6038. image: {
  6039. source: "./media/characters/sigvald/dick.svg"
  6040. }
  6041. },
  6042. eye: {
  6043. height: math.unit(0.31, "feet"),
  6044. name: "Eye",
  6045. image: {
  6046. source: "./media/characters/sigvald/eye.svg"
  6047. }
  6048. },
  6049. mouth: {
  6050. height: math.unit(0.92, "feet"),
  6051. name: "Mouth",
  6052. image: {
  6053. source: "./media/characters/sigvald/mouth.svg"
  6054. }
  6055. },
  6056. paws: {
  6057. height: math.unit(2.2, "feet"),
  6058. name: "Paws",
  6059. image: {
  6060. source: "./media/characters/sigvald/paws.svg"
  6061. }
  6062. }
  6063. },
  6064. [
  6065. {
  6066. name: "Normal",
  6067. height: math.unit(8, "feet")
  6068. },
  6069. {
  6070. name: "Large",
  6071. height: math.unit(12, "feet")
  6072. },
  6073. {
  6074. name: "Larger",
  6075. height: math.unit(20, "feet")
  6076. },
  6077. {
  6078. name: "Macro",
  6079. height: math.unit(150, "feet")
  6080. },
  6081. {
  6082. name: "Macro+",
  6083. height: math.unit(200, "feet"),
  6084. default: true
  6085. },
  6086. ]
  6087. ))
  6088. characterMakers.push(() => makeCharacter(
  6089. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6090. {
  6091. side: {
  6092. height: math.unit(12, "feet"),
  6093. weight: math.unit(2000, "kg"),
  6094. name: "Side",
  6095. image: {
  6096. source: "./media/characters/scott/side.svg",
  6097. extra: 754 / 724,
  6098. bottom: 0.069
  6099. }
  6100. },
  6101. upright: {
  6102. height: math.unit(12, "feet"),
  6103. weight: math.unit(2000, "kg"),
  6104. name: "Upright",
  6105. image: {
  6106. source: "./media/characters/scott/upright.svg",
  6107. extra: 3881 / 3722,
  6108. bottom: 0.05
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(12, "feet"),
  6116. default: true
  6117. },
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6122. {
  6123. side: {
  6124. height: math.unit(8, "meters"),
  6125. weight: math.unit(84755, "lbs"),
  6126. name: "Side",
  6127. image: {
  6128. source: "./media/characters/tobias/side.svg",
  6129. extra: 1474 / 1096,
  6130. bottom: 38.9 / 1513.1235
  6131. }
  6132. },
  6133. maw: {
  6134. height: math.unit(2.3, "meters"),
  6135. name: "Maw",
  6136. image: {
  6137. source: "./media/characters/tobias/maw.svg"
  6138. }
  6139. },
  6140. burp: {
  6141. height: math.unit(2.85, "meters"),
  6142. name: "Burp",
  6143. image: {
  6144. source: "./media/characters/tobias/burp.svg"
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(8, "meters"),
  6152. default: true
  6153. },
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6158. {
  6159. front: {
  6160. height: math.unit(5.5, "feet"),
  6161. weight: math.unit(400, "lbs"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/kieran/front.svg",
  6165. extra: 2694 / 2364,
  6166. bottom: 217 / 2908
  6167. }
  6168. },
  6169. side: {
  6170. height: math.unit(5.5, "feet"),
  6171. weight: math.unit(400, "lbs"),
  6172. name: "Side",
  6173. image: {
  6174. source: "./media/characters/kieran/side.svg",
  6175. extra: 875 / 777,
  6176. bottom: 84.6 / 959
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(5.5, "feet"),
  6184. default: true
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6190. {
  6191. side: {
  6192. height: math.unit(2, "meters"),
  6193. weight: math.unit(70, "kg"),
  6194. name: "Side",
  6195. image: {
  6196. source: "./media/characters/sanya/side.svg",
  6197. bottom: 0.02,
  6198. extra: 1.02
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Small",
  6205. height: math.unit(2, "meters")
  6206. },
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(3, "meters")
  6210. },
  6211. {
  6212. name: "Macro",
  6213. height: math.unit(16, "meters"),
  6214. default: true
  6215. },
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(2, "meters"),
  6223. weight: math.unit(120, "kg"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/miranda/front.svg",
  6227. extra: 195 / 185,
  6228. bottom: 10.9 / 206.5
  6229. }
  6230. },
  6231. back: {
  6232. height: math.unit(2, "meters"),
  6233. weight: math.unit(120, "kg"),
  6234. name: "Back",
  6235. image: {
  6236. source: "./media/characters/miranda/back.svg",
  6237. extra: 201 / 193,
  6238. bottom: 2.3 / 203.7
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(10, "feet"),
  6246. default: true
  6247. }
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "James", species: ["deer"], tags: ["anthro"] },
  6252. {
  6253. side: {
  6254. height: math.unit(2, "meters"),
  6255. weight: math.unit(100, "kg"),
  6256. name: "Front",
  6257. image: {
  6258. source: "./media/characters/james/front.svg",
  6259. extra: 10 / 8.5
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Normal",
  6266. height: math.unit(8.5, "feet"),
  6267. default: true
  6268. }
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6273. {
  6274. side: {
  6275. height: math.unit(9.5, "feet"),
  6276. weight: math.unit(2500, "lbs"),
  6277. name: "Side",
  6278. image: {
  6279. source: "./media/characters/heather/side.svg"
  6280. }
  6281. },
  6282. },
  6283. [
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(9.5, "feet"),
  6287. default: true
  6288. }
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6293. {
  6294. side: {
  6295. height: math.unit(6.5, "feet"),
  6296. weight: math.unit(400, "lbs"),
  6297. name: "Side",
  6298. image: {
  6299. source: "./media/characters/lukas/side.svg",
  6300. extra: 7.25 / 6.5
  6301. }
  6302. },
  6303. },
  6304. [
  6305. {
  6306. name: "Normal",
  6307. height: math.unit(6.5, "feet"),
  6308. default: true
  6309. }
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6314. {
  6315. side: {
  6316. height: math.unit(5, "feet"),
  6317. weight: math.unit(3000, "lbs"),
  6318. name: "Side",
  6319. image: {
  6320. source: "./media/characters/louise/side.svg"
  6321. }
  6322. },
  6323. },
  6324. [
  6325. {
  6326. name: "Normal",
  6327. height: math.unit(5, "feet"),
  6328. default: true
  6329. }
  6330. ]
  6331. ))
  6332. characterMakers.push(() => makeCharacter(
  6333. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6334. {
  6335. side: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(150, "lbs"),
  6338. name: "Side",
  6339. image: {
  6340. source: "./media/characters/ramona/side.svg",
  6341. extra: 871/854,
  6342. bottom: 41/912
  6343. }
  6344. },
  6345. },
  6346. [
  6347. {
  6348. name: "Normal",
  6349. height: math.unit(6 + 4/12, "feet")
  6350. },
  6351. {
  6352. name: "Minimacro",
  6353. height: math.unit(5.3, "meters"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Macro",
  6358. height: math.unit(20, "stories")
  6359. },
  6360. {
  6361. name: "Macro+",
  6362. height: math.unit(50, "stories")
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6368. {
  6369. standing: {
  6370. height: math.unit(5.75, "feet"),
  6371. weight: math.unit(160, "lbs"),
  6372. name: "Standing",
  6373. image: {
  6374. source: "./media/characters/deerpuff/standing.svg",
  6375. extra: 682 / 624
  6376. }
  6377. },
  6378. sitting: {
  6379. height: math.unit(5.75 / 1.79, "feet"),
  6380. weight: math.unit(160, "lbs"),
  6381. name: "Sitting",
  6382. image: {
  6383. source: "./media/characters/deerpuff/sitting.svg",
  6384. bottom: 44 / 400,
  6385. extra: 1
  6386. }
  6387. },
  6388. taurLaying: {
  6389. height: math.unit(6, "feet"),
  6390. weight: math.unit(400, "lbs"),
  6391. name: "Taur (Laying)",
  6392. image: {
  6393. source: "./media/characters/deerpuff/taur-laying.svg"
  6394. }
  6395. },
  6396. },
  6397. [
  6398. {
  6399. name: "Puffball",
  6400. height: math.unit(6, "inches")
  6401. },
  6402. {
  6403. name: "Normalpuff",
  6404. height: math.unit(5.75, "feet")
  6405. },
  6406. {
  6407. name: "Macropuff",
  6408. height: math.unit(1500, "feet"),
  6409. default: true
  6410. },
  6411. {
  6412. name: "Megapuff",
  6413. height: math.unit(500, "miles")
  6414. },
  6415. {
  6416. name: "Gigapuff",
  6417. height: math.unit(250000, "miles")
  6418. },
  6419. {
  6420. name: "Omegapuff",
  6421. height: math.unit(1000, "lightyears")
  6422. },
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6427. {
  6428. stomping: {
  6429. height: math.unit(6, "feet"),
  6430. weight: math.unit(170, "lbs"),
  6431. name: "Stomping",
  6432. image: {
  6433. source: "./media/characters/vivian/stomping.svg"
  6434. }
  6435. },
  6436. sitting: {
  6437. height: math.unit(6 / 1.75, "feet"),
  6438. weight: math.unit(170, "lbs"),
  6439. name: "Sitting",
  6440. image: {
  6441. source: "./media/characters/vivian/sitting.svg",
  6442. bottom: 1 / 6.4,
  6443. extra: 1,
  6444. }
  6445. },
  6446. },
  6447. [
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(7, "feet"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Macro",
  6455. height: math.unit(10, "stories")
  6456. },
  6457. {
  6458. name: "Macro+",
  6459. height: math.unit(30, "stories")
  6460. },
  6461. {
  6462. name: "Megamacro",
  6463. height: math.unit(10, "miles")
  6464. },
  6465. {
  6466. name: "Megamacro+",
  6467. height: math.unit(2750000, "meters")
  6468. },
  6469. ]
  6470. ))
  6471. characterMakers.push(() => makeCharacter(
  6472. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6473. {
  6474. front: {
  6475. height: math.unit(6, "feet"),
  6476. weight: math.unit(160, "lbs"),
  6477. name: "Front",
  6478. image: {
  6479. source: "./media/characters/prince/front.svg",
  6480. extra: 1938/1682,
  6481. bottom: 45/1983
  6482. }
  6483. },
  6484. back: {
  6485. height: math.unit(6, "feet"),
  6486. weight: math.unit(160, "lbs"),
  6487. name: "Back",
  6488. image: {
  6489. source: "./media/characters/prince/back.svg",
  6490. extra: 1955/1726,
  6491. bottom: 6/1961
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(7.75, "feet"),
  6499. default: true
  6500. },
  6501. {
  6502. name: "Not cute",
  6503. height: math.unit(17, "feet")
  6504. },
  6505. {
  6506. name: "I said NOT",
  6507. height: math.unit(91, "feet")
  6508. },
  6509. {
  6510. name: "Please stop",
  6511. height: math.unit(560, "feet")
  6512. },
  6513. {
  6514. name: "What have you done",
  6515. height: math.unit(2200, "feet")
  6516. },
  6517. {
  6518. name: "Deer God",
  6519. height: math.unit(3.6, "miles")
  6520. },
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6525. {
  6526. standing: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(300, "lbs"),
  6529. name: "Standing",
  6530. image: {
  6531. source: "./media/characters/psymon/standing.svg",
  6532. extra: 1888 / 1810,
  6533. bottom: 0.05
  6534. }
  6535. },
  6536. slithering: {
  6537. height: math.unit(6, "feet"),
  6538. weight: math.unit(300, "lbs"),
  6539. name: "Slithering",
  6540. image: {
  6541. source: "./media/characters/psymon/slithering.svg",
  6542. extra: 1330 / 1224
  6543. }
  6544. },
  6545. slitheringAlt: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(300, "lbs"),
  6548. name: "Slithering (Alt)",
  6549. image: {
  6550. source: "./media/characters/psymon/slithering-alt.svg",
  6551. extra: 1330 / 1224
  6552. }
  6553. },
  6554. },
  6555. [
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(11.25, "feet"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Large",
  6563. height: math.unit(27, "feet")
  6564. },
  6565. {
  6566. name: "Giant",
  6567. height: math.unit(87, "feet")
  6568. },
  6569. {
  6570. name: "Macro",
  6571. height: math.unit(365, "feet")
  6572. },
  6573. {
  6574. name: "Megamacro",
  6575. height: math.unit(3, "miles")
  6576. },
  6577. {
  6578. name: "World Serpent",
  6579. height: math.unit(8000, "miles")
  6580. },
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6585. {
  6586. front: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(180, "lbs"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/daimos/front.svg",
  6592. extra: 4160 / 3897,
  6593. bottom: 0.021
  6594. }
  6595. }
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(8, "feet"),
  6601. default: true
  6602. },
  6603. {
  6604. name: "Big Dog",
  6605. height: math.unit(22, "feet")
  6606. },
  6607. {
  6608. name: "Macro",
  6609. height: math.unit(127, "feet")
  6610. },
  6611. {
  6612. name: "Megamacro",
  6613. height: math.unit(3600, "feet")
  6614. },
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6619. {
  6620. side: {
  6621. height: math.unit(6, "feet"),
  6622. weight: math.unit(180, "lbs"),
  6623. name: "Side",
  6624. image: {
  6625. source: "./media/characters/blake/side.svg",
  6626. extra: 1212 / 1120,
  6627. bottom: 0.05
  6628. }
  6629. },
  6630. crouched: {
  6631. height: math.unit(6 * 0.57, "feet"),
  6632. weight: math.unit(180, "lbs"),
  6633. name: "Crouched",
  6634. image: {
  6635. source: "./media/characters/blake/crouched.svg",
  6636. extra: 840 / 587,
  6637. bottom: 0.04
  6638. }
  6639. },
  6640. bent: {
  6641. height: math.unit(6 * 0.75, "feet"),
  6642. weight: math.unit(180, "lbs"),
  6643. name: "Bent",
  6644. image: {
  6645. source: "./media/characters/blake/bent.svg",
  6646. extra: 592 / 544,
  6647. bottom: 0.035
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(8 + 1 / 6, "feet"),
  6655. default: true
  6656. },
  6657. {
  6658. name: "Big Backside",
  6659. height: math.unit(37, "feet")
  6660. },
  6661. {
  6662. name: "Subway Shredder",
  6663. height: math.unit(72, "feet")
  6664. },
  6665. {
  6666. name: "City Carver",
  6667. height: math.unit(1675, "feet")
  6668. },
  6669. {
  6670. name: "Tectonic Tweaker",
  6671. height: math.unit(2300, "miles")
  6672. },
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(6, "feet"),
  6680. weight: math.unit(180, "lbs"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/guisetto/front.svg",
  6684. extra: 856 / 817,
  6685. bottom: 0.06
  6686. }
  6687. },
  6688. airborne: {
  6689. height: math.unit(6, "feet"),
  6690. weight: math.unit(180, "lbs"),
  6691. name: "Airborne",
  6692. image: {
  6693. source: "./media/characters/guisetto/airborne.svg",
  6694. extra: 584 / 525
  6695. }
  6696. },
  6697. },
  6698. [
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(10 + 11 / 12, "feet"),
  6702. default: true
  6703. },
  6704. {
  6705. name: "Large",
  6706. height: math.unit(35, "feet")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(475, "feet")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(180, "lbs"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/luxor/front.svg",
  6723. extra: 2940 / 2152
  6724. }
  6725. },
  6726. back: {
  6727. height: math.unit(6, "feet"),
  6728. weight: math.unit(180, "lbs"),
  6729. name: "Back",
  6730. image: {
  6731. source: "./media/characters/luxor/back.svg",
  6732. extra: 1083 / 960
  6733. }
  6734. },
  6735. },
  6736. [
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(5 + 5 / 6, "feet"),
  6740. default: true
  6741. },
  6742. {
  6743. name: "Lamp",
  6744. height: math.unit(50, "feet")
  6745. },
  6746. {
  6747. name: "Lämp",
  6748. height: math.unit(300, "feet")
  6749. },
  6750. {
  6751. name: "The sun is a lamp",
  6752. height: math.unit(250000, "miles")
  6753. },
  6754. ]
  6755. ))
  6756. characterMakers.push(() => makeCharacter(
  6757. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6758. {
  6759. front: {
  6760. height: math.unit(6, "feet"),
  6761. weight: math.unit(50, "lbs"),
  6762. name: "Front",
  6763. image: {
  6764. source: "./media/characters/huoyan/front.svg"
  6765. }
  6766. },
  6767. side: {
  6768. height: math.unit(6, "feet"),
  6769. weight: math.unit(180, "lbs"),
  6770. name: "Side",
  6771. image: {
  6772. source: "./media/characters/huoyan/side.svg"
  6773. }
  6774. },
  6775. },
  6776. [
  6777. {
  6778. name: "Chef",
  6779. height: math.unit(9, "feet")
  6780. },
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(65, "feet"),
  6784. default: true
  6785. },
  6786. {
  6787. name: "Macro",
  6788. height: math.unit(780, "feet")
  6789. },
  6790. {
  6791. name: "Flaming Mountain",
  6792. height: math.unit(4.8, "miles")
  6793. },
  6794. {
  6795. name: "Celestial",
  6796. height: math.unit(765000, "miles")
  6797. },
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(5 + 3 / 4, "feet"),
  6805. weight: math.unit(120, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/tails/front.svg"
  6809. }
  6810. }
  6811. },
  6812. [
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(5 + 3 / 4, "feet"),
  6816. default: true
  6817. }
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(4, "feet"),
  6825. weight: math.unit(50, "lbs"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/rainy/front.svg"
  6829. }
  6830. }
  6831. },
  6832. [
  6833. {
  6834. name: "Macro",
  6835. height: math.unit(800, "feet"),
  6836. default: true
  6837. }
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(150, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/rainier/front.svg"
  6849. }
  6850. }
  6851. },
  6852. [
  6853. {
  6854. name: "Micro",
  6855. height: math.unit(2, "mm"),
  6856. default: true
  6857. }
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(8 + 4/12, "feet"),
  6865. weight: math.unit(450, "kilograms"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/andy-renard/front.svg",
  6869. extra: 862/809,
  6870. bottom: 85/947
  6871. },
  6872. extraAttributes: {
  6873. "pawSize": {
  6874. name: "Paw Size",
  6875. power: 2,
  6876. type: "area",
  6877. base: math.unit(0.45*0.3, "meters^2")
  6878. },
  6879. "handSize": {
  6880. name: "Hand Size",
  6881. power: 2,
  6882. type: "area",
  6883. base: math.unit(0.4 * 0.3, "meters^2")
  6884. },
  6885. "cockSize": {
  6886. name: "Cock Length",
  6887. power: 1,
  6888. type: "length",
  6889. base: math.unit(0.75, "meters")
  6890. },
  6891. "ballDiameter": {
  6892. name: "Ball Diameter",
  6893. power: 1,
  6894. type: "length",
  6895. base: math.unit(0.3, "meters")
  6896. },
  6897. "ballVolume": {
  6898. name: "Ball Volume",
  6899. power: 3,
  6900. type: "volume",
  6901. base: math.unit(0.01413716694, "meters^3")
  6902. },
  6903. }
  6904. },
  6905. back: {
  6906. height: math.unit(8 + 4/12, "feet"),
  6907. weight: math.unit(450, "kilograms"),
  6908. name: "Back",
  6909. image: {
  6910. source: "./media/characters/andy-renard/back.svg",
  6911. extra: 1112/1033,
  6912. bottom: 64/1176
  6913. },
  6914. extraAttributes: {
  6915. "pawSize": {
  6916. name: "Paw Size",
  6917. power: 2,
  6918. type: "area",
  6919. base: math.unit(0.45*0.3, "meters^2")
  6920. },
  6921. "handSize": {
  6922. name: "Hand Size",
  6923. power: 2,
  6924. type: "area",
  6925. base: math.unit(0.4 * 0.3, "meters^2")
  6926. },
  6927. "cockSize": {
  6928. name: "Cock Length",
  6929. power: 1,
  6930. type: "length",
  6931. base: math.unit(0.75, "meters")
  6932. },
  6933. "ballDiameter": {
  6934. name: "Ball Diameter",
  6935. power: 1,
  6936. type: "length",
  6937. base: math.unit(0.3, "meters")
  6938. },
  6939. "ballVolume": {
  6940. name: "Ball Volume",
  6941. power: 3,
  6942. type: "volume",
  6943. base: math.unit(0.01413716694, "meters^3")
  6944. },
  6945. }
  6946. },
  6947. },
  6948. [
  6949. {
  6950. name: "Tall",
  6951. height: math.unit(6 + 8/12, "feet")
  6952. },
  6953. {
  6954. name: "Very Tall",
  6955. height: math.unit(8 + 4/12, "feet")
  6956. },
  6957. {
  6958. name: "Mini Macro",
  6959. height: math.unit(15, "feet"),
  6960. default: true
  6961. },
  6962. {
  6963. name: "Giant",
  6964. height: math.unit(50, "feet")
  6965. },
  6966. {
  6967. name: "Nice",
  6968. height: math.unit(69, "feet")
  6969. },
  6970. {
  6971. name: "Macro",
  6972. height: math.unit(100, "feet")
  6973. },
  6974. {
  6975. name: "Enormous",
  6976. height: math.unit(500, "feet")
  6977. },
  6978. {
  6979. name: "Gargantuan",
  6980. height: math.unit(1000, "feet")
  6981. },
  6982. {
  6983. name: "Mega",
  6984. height: math.unit(1, "mile")
  6985. },
  6986. {
  6987. name: "Giga",
  6988. height: math.unit(50, "miles")
  6989. },
  6990. {
  6991. name: "Tera",
  6992. height: math.unit(1000, "miles")
  6993. },
  6994. {
  6995. name: "Cosmic",
  6996. height: math.unit(1.5, "galaxies")
  6997. },
  6998. {
  6999. name: "God",
  7000. height: math.unit(1.5, "universes")
  7001. },
  7002. {
  7003. name: "Chief Execute God",
  7004. height: math.unit(1.5, "multiverses")
  7005. },
  7006. ]
  7007. ))
  7008. characterMakers.push(() => makeCharacter(
  7009. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7010. {
  7011. front: {
  7012. height: math.unit(6, "feet"),
  7013. weight: math.unit(210, "lbs"),
  7014. name: "Front",
  7015. image: {
  7016. source: "./media/characters/cimmaron/front-sfw.svg",
  7017. extra: 701 / 676,
  7018. bottom: 0.046
  7019. }
  7020. },
  7021. back: {
  7022. height: math.unit(6, "feet"),
  7023. weight: math.unit(210, "lbs"),
  7024. name: "Back",
  7025. image: {
  7026. source: "./media/characters/cimmaron/back-sfw.svg",
  7027. extra: 701 / 676,
  7028. bottom: 0.046
  7029. }
  7030. },
  7031. frontNsfw: {
  7032. height: math.unit(6, "feet"),
  7033. weight: math.unit(210, "lbs"),
  7034. name: "Front (NSFW)",
  7035. image: {
  7036. source: "./media/characters/cimmaron/front-nsfw.svg",
  7037. extra: 701 / 676,
  7038. bottom: 0.046
  7039. }
  7040. },
  7041. backNsfw: {
  7042. height: math.unit(6, "feet"),
  7043. weight: math.unit(210, "lbs"),
  7044. name: "Back (NSFW)",
  7045. image: {
  7046. source: "./media/characters/cimmaron/back-nsfw.svg",
  7047. extra: 701 / 676,
  7048. bottom: 0.046
  7049. }
  7050. },
  7051. dick: {
  7052. height: math.unit(1.714, "feet"),
  7053. name: "Dick",
  7054. image: {
  7055. source: "./media/characters/cimmaron/dick.svg"
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(6, "feet"),
  7063. default: true
  7064. },
  7065. {
  7066. name: "Macro Mayor",
  7067. height: math.unit(350, "meters")
  7068. },
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7073. {
  7074. front: {
  7075. height: math.unit(6, "feet"),
  7076. weight: math.unit(200, "lbs"),
  7077. name: "Front",
  7078. image: {
  7079. source: "./media/characters/akari/front.svg",
  7080. extra: 962 / 901,
  7081. bottom: 0.04
  7082. }
  7083. }
  7084. },
  7085. [
  7086. {
  7087. name: "Micro",
  7088. height: math.unit(5, "inches"),
  7089. default: true
  7090. },
  7091. {
  7092. name: "Normal",
  7093. height: math.unit(7, "feet")
  7094. },
  7095. ]
  7096. ))
  7097. characterMakers.push(() => makeCharacter(
  7098. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7099. {
  7100. front: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(140, "lbs"),
  7103. name: "Front",
  7104. image: {
  7105. source: "./media/characters/cynosura/front.svg",
  7106. extra: 437/410,
  7107. bottom: 9/446
  7108. }
  7109. },
  7110. back: {
  7111. height: math.unit(6, "feet"),
  7112. weight: math.unit(140, "lbs"),
  7113. name: "Back",
  7114. image: {
  7115. source: "./media/characters/cynosura/back.svg",
  7116. extra: 1304/1160,
  7117. bottom: 71/1375
  7118. }
  7119. },
  7120. },
  7121. [
  7122. {
  7123. name: "Micro",
  7124. height: math.unit(4, "inches")
  7125. },
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(5.75, "feet"),
  7129. default: true
  7130. },
  7131. {
  7132. name: "Tall",
  7133. height: math.unit(10, "feet")
  7134. },
  7135. {
  7136. name: "Big",
  7137. height: math.unit(20, "feet")
  7138. },
  7139. {
  7140. name: "Macro",
  7141. height: math.unit(50, "feet")
  7142. },
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(13 + 2/12, "feet"),
  7150. weight: math.unit(800, "kg"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/gin/front.svg",
  7154. extra: 1312/1191,
  7155. bottom: 45/1357
  7156. }
  7157. },
  7158. mouth: {
  7159. height: math.unit(2.39 * 1.8, "feet"),
  7160. name: "Mouth",
  7161. image: {
  7162. source: "./media/characters/gin/mouth.svg"
  7163. }
  7164. },
  7165. hand: {
  7166. height: math.unit(1.57 * 2.19, "feet"),
  7167. name: "Hand",
  7168. image: {
  7169. source: "./media/characters/gin/hand.svg"
  7170. }
  7171. },
  7172. foot: {
  7173. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7174. name: "Foot",
  7175. image: {
  7176. source: "./media/characters/gin/foot.svg"
  7177. }
  7178. },
  7179. sole: {
  7180. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7181. name: "Sole",
  7182. image: {
  7183. source: "./media/characters/gin/sole.svg"
  7184. }
  7185. },
  7186. },
  7187. [
  7188. {
  7189. name: "Very Small",
  7190. height: math.unit(13 + 2 / 12, "feet")
  7191. },
  7192. {
  7193. name: "Micro",
  7194. height: math.unit(600, "miles")
  7195. },
  7196. {
  7197. name: "Regular",
  7198. height: math.unit(20, "earths"),
  7199. default: true
  7200. },
  7201. {
  7202. name: "Macro",
  7203. height: math.unit(2.2, "solarradii")
  7204. },
  7205. {
  7206. name: "Teramacro",
  7207. height: math.unit(1.2, "galaxies")
  7208. },
  7209. {
  7210. name: "Omegamacro",
  7211. height: math.unit(200, "universes")
  7212. },
  7213. ]
  7214. ))
  7215. characterMakers.push(() => makeCharacter(
  7216. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7217. {
  7218. front: {
  7219. height: math.unit(6 + 1 / 6, "feet"),
  7220. weight: math.unit(178, "lbs"),
  7221. name: "Front",
  7222. image: {
  7223. source: "./media/characters/guy/front.svg"
  7224. }
  7225. }
  7226. },
  7227. [
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(6 + 1 / 6, "feet"),
  7231. default: true
  7232. },
  7233. {
  7234. name: "Large",
  7235. height: math.unit(25 + 7 / 12, "feet")
  7236. },
  7237. {
  7238. name: "Macro",
  7239. height: math.unit(60 + 9 / 12, "feet")
  7240. },
  7241. {
  7242. name: "Macro+",
  7243. height: math.unit(246, "feet")
  7244. },
  7245. {
  7246. name: "Macro++",
  7247. height: math.unit(878, "feet")
  7248. }
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7253. {
  7254. front: {
  7255. height: math.unit(9, "feet"),
  7256. weight: math.unit(800, "lbs"),
  7257. name: "Front",
  7258. image: {
  7259. source: "./media/characters/tiberius/front.svg",
  7260. extra: 2295 / 2071
  7261. }
  7262. },
  7263. back: {
  7264. height: math.unit(9, "feet"),
  7265. weight: math.unit(800, "lbs"),
  7266. name: "Back",
  7267. image: {
  7268. source: "./media/characters/tiberius/back.svg",
  7269. extra: 2373 / 2160
  7270. }
  7271. },
  7272. },
  7273. [
  7274. {
  7275. name: "Normal",
  7276. height: math.unit(9, "feet"),
  7277. default: true
  7278. }
  7279. ]
  7280. ))
  7281. characterMakers.push(() => makeCharacter(
  7282. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7283. {
  7284. front: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(600, "lbs"),
  7287. name: "Front",
  7288. image: {
  7289. source: "./media/characters/surgo/front.svg",
  7290. extra: 3591 / 2227
  7291. }
  7292. },
  7293. back: {
  7294. height: math.unit(6, "feet"),
  7295. weight: math.unit(600, "lbs"),
  7296. name: "Back",
  7297. image: {
  7298. source: "./media/characters/surgo/back.svg",
  7299. extra: 3557 / 2228
  7300. }
  7301. },
  7302. laying: {
  7303. height: math.unit(6 * 0.85, "feet"),
  7304. weight: math.unit(600, "lbs"),
  7305. name: "Laying",
  7306. image: {
  7307. source: "./media/characters/surgo/laying.svg"
  7308. }
  7309. },
  7310. },
  7311. [
  7312. {
  7313. name: "Normal",
  7314. height: math.unit(6, "feet"),
  7315. default: true
  7316. }
  7317. ]
  7318. ))
  7319. characterMakers.push(() => makeCharacter(
  7320. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7321. {
  7322. side: {
  7323. height: math.unit(6, "feet"),
  7324. weight: math.unit(150, "lbs"),
  7325. name: "Side",
  7326. image: {
  7327. source: "./media/characters/cibus/side.svg",
  7328. extra: 800 / 400
  7329. }
  7330. },
  7331. },
  7332. [
  7333. {
  7334. name: "Normal",
  7335. height: math.unit(6, "feet"),
  7336. default: true
  7337. }
  7338. ]
  7339. ))
  7340. characterMakers.push(() => makeCharacter(
  7341. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7342. {
  7343. front: {
  7344. height: math.unit(6, "feet"),
  7345. weight: math.unit(240, "lbs"),
  7346. name: "Front",
  7347. image: {
  7348. source: "./media/characters/nibbles/front.svg"
  7349. }
  7350. },
  7351. side: {
  7352. height: math.unit(6, "feet"),
  7353. weight: math.unit(240, "lbs"),
  7354. name: "Side",
  7355. image: {
  7356. source: "./media/characters/nibbles/side.svg"
  7357. }
  7358. },
  7359. },
  7360. [
  7361. {
  7362. name: "Normal",
  7363. height: math.unit(9, "feet"),
  7364. default: true
  7365. }
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7370. {
  7371. side: {
  7372. height: math.unit(5 + 1 / 6, "feet"),
  7373. weight: math.unit(130, "lbs"),
  7374. name: "Side",
  7375. image: {
  7376. source: "./media/characters/rikky/side.svg",
  7377. extra: 851 / 801
  7378. }
  7379. },
  7380. },
  7381. [
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(5 + 1 / 6, "feet")
  7385. },
  7386. {
  7387. name: "Macro",
  7388. height: math.unit(152, "feet"),
  7389. default: true
  7390. },
  7391. {
  7392. name: "Megamacro",
  7393. height: math.unit(7, "miles")
  7394. }
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7399. {
  7400. side: {
  7401. height: math.unit(370, "cm"),
  7402. weight: math.unit(350, "lbs"),
  7403. name: "Side",
  7404. image: {
  7405. source: "./media/characters/malfressa/side.svg"
  7406. }
  7407. },
  7408. walking: {
  7409. height: math.unit(370, "cm"),
  7410. weight: math.unit(350, "lbs"),
  7411. name: "Walking",
  7412. image: {
  7413. source: "./media/characters/malfressa/walking.svg"
  7414. }
  7415. },
  7416. feral: {
  7417. height: math.unit(2500, "cm"),
  7418. weight: math.unit(100000, "lbs"),
  7419. name: "Feral",
  7420. image: {
  7421. source: "./media/characters/malfressa/feral.svg",
  7422. extra: 2108 / 837,
  7423. bottom: 0.02
  7424. }
  7425. },
  7426. },
  7427. [
  7428. {
  7429. name: "Normal",
  7430. height: math.unit(370, "cm")
  7431. },
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(300, "meters"),
  7435. default: true
  7436. }
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7441. {
  7442. front: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(60, "kg"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/jaro/front.svg",
  7448. extra: 845/817,
  7449. bottom: 45/890
  7450. }
  7451. },
  7452. back: {
  7453. height: math.unit(6, "feet"),
  7454. weight: math.unit(60, "kg"),
  7455. name: "Back",
  7456. image: {
  7457. source: "./media/characters/jaro/back.svg",
  7458. extra: 847/817,
  7459. bottom: 34/881
  7460. }
  7461. },
  7462. },
  7463. [
  7464. {
  7465. name: "Micro",
  7466. height: math.unit(7, "inches")
  7467. },
  7468. {
  7469. name: "Normal",
  7470. height: math.unit(5.5, "feet"),
  7471. default: true
  7472. },
  7473. {
  7474. name: "Minimacro",
  7475. height: math.unit(20, "feet")
  7476. },
  7477. {
  7478. name: "Macro",
  7479. height: math.unit(200, "meters")
  7480. }
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7485. {
  7486. front: {
  7487. height: math.unit(6, "feet"),
  7488. weight: math.unit(195, "lb"),
  7489. name: "Front",
  7490. image: {
  7491. source: "./media/characters/rogue/front.svg"
  7492. }
  7493. },
  7494. },
  7495. [
  7496. {
  7497. name: "Macro",
  7498. height: math.unit(90, "feet"),
  7499. default: true
  7500. },
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7505. {
  7506. standing: {
  7507. height: math.unit(5 + 8 / 12, "feet"),
  7508. weight: math.unit(140, "lb"),
  7509. name: "Standing",
  7510. image: {
  7511. source: "./media/characters/piper/standing.svg",
  7512. extra: 1440/1284,
  7513. bottom: 66/1506
  7514. }
  7515. },
  7516. running: {
  7517. height: math.unit(5 + 8 / 12, "feet"),
  7518. weight: math.unit(140, "lb"),
  7519. name: "Running",
  7520. image: {
  7521. source: "./media/characters/piper/running.svg",
  7522. extra: 3948/3655,
  7523. bottom: 0/3948
  7524. }
  7525. },
  7526. sole: {
  7527. height: math.unit(0.81, "feet"),
  7528. weight: math.unit(2, "kg"),
  7529. name: "Sole",
  7530. image: {
  7531. source: "./media/characters/piper/sole.svg"
  7532. }
  7533. },
  7534. nipple: {
  7535. height: math.unit(0.25, "feet"),
  7536. weight: math.unit(1.5, "lb"),
  7537. name: "Nipple",
  7538. image: {
  7539. source: "./media/characters/piper/nipple.svg"
  7540. }
  7541. },
  7542. head: {
  7543. height: math.unit(1.1, "feet"),
  7544. name: "Head",
  7545. image: {
  7546. source: "./media/characters/piper/head.svg"
  7547. }
  7548. },
  7549. },
  7550. [
  7551. {
  7552. name: "Micro",
  7553. height: math.unit(2, "inches")
  7554. },
  7555. {
  7556. name: "Normal",
  7557. height: math.unit(5 + 8 / 12, "feet")
  7558. },
  7559. {
  7560. name: "Macro",
  7561. height: math.unit(250, "feet"),
  7562. default: true
  7563. },
  7564. {
  7565. name: "Megamacro",
  7566. height: math.unit(7, "miles")
  7567. },
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7572. {
  7573. front: {
  7574. height: math.unit(6, "feet"),
  7575. weight: math.unit(220, "lb"),
  7576. name: "Front",
  7577. image: {
  7578. source: "./media/characters/gemini/front.svg"
  7579. }
  7580. },
  7581. back: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(220, "lb"),
  7584. name: "Back",
  7585. image: {
  7586. source: "./media/characters/gemini/back.svg"
  7587. }
  7588. },
  7589. kneeling: {
  7590. height: math.unit(6 / 1.5, "feet"),
  7591. weight: math.unit(220, "lb"),
  7592. name: "Kneeling",
  7593. image: {
  7594. source: "./media/characters/gemini/kneeling.svg",
  7595. bottom: 0.02
  7596. }
  7597. },
  7598. },
  7599. [
  7600. {
  7601. name: "Macro",
  7602. height: math.unit(300, "meters"),
  7603. default: true
  7604. },
  7605. {
  7606. name: "Megamacro",
  7607. height: math.unit(6900, "meters")
  7608. },
  7609. ]
  7610. ))
  7611. characterMakers.push(() => makeCharacter(
  7612. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7613. {
  7614. anthro: {
  7615. height: math.unit(2.35, "meters"),
  7616. weight: math.unit(73, "kg"),
  7617. name: "Anthro",
  7618. image: {
  7619. source: "./media/characters/alicia/anthro.svg",
  7620. extra: 2571 / 2385,
  7621. bottom: 75 / 2648
  7622. }
  7623. },
  7624. paw: {
  7625. height: math.unit(1.32, "feet"),
  7626. name: "Paw",
  7627. image: {
  7628. source: "./media/characters/alicia/paw.svg"
  7629. }
  7630. },
  7631. feral: {
  7632. height: math.unit(1.69, "meters"),
  7633. weight: math.unit(73, "kg"),
  7634. name: "Feral",
  7635. image: {
  7636. source: "./media/characters/alicia/feral.svg",
  7637. extra: 2123 / 1715,
  7638. bottom: 222 / 2349
  7639. }
  7640. },
  7641. },
  7642. [
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(2.35, "meters")
  7646. },
  7647. {
  7648. name: "Macro",
  7649. height: math.unit(60, "meters"),
  7650. default: true
  7651. },
  7652. {
  7653. name: "Megamacro",
  7654. height: math.unit(10000, "kilometers")
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(7, "feet"),
  7663. weight: math.unit(250, "lbs"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/archy/front.svg"
  7667. }
  7668. }
  7669. },
  7670. [
  7671. {
  7672. name: "Micro",
  7673. height: math.unit(1, "inch")
  7674. },
  7675. {
  7676. name: "Shorty",
  7677. height: math.unit(5, "feet")
  7678. },
  7679. {
  7680. name: "Normal",
  7681. height: math.unit(7, "feet")
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(600, "meters"),
  7686. default: true
  7687. },
  7688. {
  7689. name: "Megamacro",
  7690. height: math.unit(1, "mile")
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7696. {
  7697. front: {
  7698. height: math.unit(1.65, "meters"),
  7699. weight: math.unit(74, "kg"),
  7700. name: "Front",
  7701. image: {
  7702. source: "./media/characters/berri/front.svg",
  7703. extra: 857 / 837,
  7704. bottom: 18 / 877
  7705. }
  7706. },
  7707. bum: {
  7708. height: math.unit(1.46, "feet"),
  7709. name: "Bum",
  7710. image: {
  7711. source: "./media/characters/berri/bum.svg"
  7712. }
  7713. },
  7714. mouth: {
  7715. height: math.unit(0.44, "feet"),
  7716. name: "Mouth",
  7717. image: {
  7718. source: "./media/characters/berri/mouth.svg"
  7719. }
  7720. },
  7721. paw: {
  7722. height: math.unit(0.826, "feet"),
  7723. name: "Paw",
  7724. image: {
  7725. source: "./media/characters/berri/paw.svg"
  7726. }
  7727. },
  7728. },
  7729. [
  7730. {
  7731. name: "Normal",
  7732. height: math.unit(1.65, "meters")
  7733. },
  7734. {
  7735. name: "Macro",
  7736. height: math.unit(60, "m"),
  7737. default: true
  7738. },
  7739. {
  7740. name: "Megamacro",
  7741. height: math.unit(9.213, "km")
  7742. },
  7743. {
  7744. name: "Planet Eater",
  7745. height: math.unit(489, "megameters")
  7746. },
  7747. {
  7748. name: "Teramacro",
  7749. height: math.unit(2471635000000, "meters")
  7750. },
  7751. {
  7752. name: "Examacro",
  7753. height: math.unit(8.0624e+26, "meters")
  7754. }
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7759. {
  7760. front: {
  7761. height: math.unit(1.72, "meters"),
  7762. weight: math.unit(68, "kg"),
  7763. name: "Front",
  7764. image: {
  7765. source: "./media/characters/lexi/front.svg"
  7766. }
  7767. }
  7768. },
  7769. [
  7770. {
  7771. name: "Very Smol",
  7772. height: math.unit(10, "mm")
  7773. },
  7774. {
  7775. name: "Micro",
  7776. height: math.unit(6.8, "cm"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Normal",
  7781. height: math.unit(1.72, "m")
  7782. }
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7787. {
  7788. front: {
  7789. height: math.unit(1.69, "meters"),
  7790. weight: math.unit(68, "kg"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/martin/front.svg",
  7794. extra: 596 / 581
  7795. }
  7796. }
  7797. },
  7798. [
  7799. {
  7800. name: "Micro",
  7801. height: math.unit(6.85, "cm"),
  7802. default: true
  7803. },
  7804. {
  7805. name: "Normal",
  7806. height: math.unit(1.69, "m")
  7807. }
  7808. ]
  7809. ))
  7810. characterMakers.push(() => makeCharacter(
  7811. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7812. {
  7813. front: {
  7814. height: math.unit(1.69, "meters"),
  7815. weight: math.unit(68, "kg"),
  7816. name: "Front",
  7817. image: {
  7818. source: "./media/characters/juno/front.svg"
  7819. }
  7820. }
  7821. },
  7822. [
  7823. {
  7824. name: "Micro",
  7825. height: math.unit(7, "cm")
  7826. },
  7827. {
  7828. name: "Normal",
  7829. height: math.unit(1.89, "m")
  7830. },
  7831. {
  7832. name: "Macro",
  7833. height: math.unit(353, "meters"),
  7834. default: true
  7835. }
  7836. ]
  7837. ))
  7838. characterMakers.push(() => makeCharacter(
  7839. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7840. {
  7841. front: {
  7842. height: math.unit(1.93, "meters"),
  7843. weight: math.unit(83, "kg"),
  7844. name: "Front",
  7845. image: {
  7846. source: "./media/characters/samantha/front.svg"
  7847. }
  7848. },
  7849. frontClothed: {
  7850. height: math.unit(1.93, "meters"),
  7851. weight: math.unit(83, "kg"),
  7852. name: "Front (Clothed)",
  7853. image: {
  7854. source: "./media/characters/samantha/front-clothed.svg"
  7855. }
  7856. },
  7857. back: {
  7858. height: math.unit(1.93, "meters"),
  7859. weight: math.unit(83, "kg"),
  7860. name: "Back",
  7861. image: {
  7862. source: "./media/characters/samantha/back.svg"
  7863. }
  7864. },
  7865. },
  7866. [
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(1.93, "m")
  7870. },
  7871. {
  7872. name: "Macro",
  7873. height: math.unit(74, "meters"),
  7874. default: true
  7875. },
  7876. {
  7877. name: "Macro+",
  7878. height: math.unit(223, "meters"),
  7879. },
  7880. {
  7881. name: "Megamacro",
  7882. height: math.unit(8381, "meters"),
  7883. },
  7884. {
  7885. name: "Megamacro+",
  7886. height: math.unit(12000, "kilometers")
  7887. },
  7888. ]
  7889. ))
  7890. characterMakers.push(() => makeCharacter(
  7891. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7892. {
  7893. front: {
  7894. height: math.unit(1.92, "meters"),
  7895. weight: math.unit(80, "kg"),
  7896. name: "Front",
  7897. image: {
  7898. source: "./media/characters/dr-clay/front.svg"
  7899. }
  7900. },
  7901. frontClothed: {
  7902. height: math.unit(1.92, "meters"),
  7903. weight: math.unit(80, "kg"),
  7904. name: "Front (Clothed)",
  7905. image: {
  7906. source: "./media/characters/dr-clay/front-clothed.svg"
  7907. }
  7908. }
  7909. },
  7910. [
  7911. {
  7912. name: "Normal",
  7913. height: math.unit(1.92, "m")
  7914. },
  7915. {
  7916. name: "Macro",
  7917. height: math.unit(214, "meters"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Macro+",
  7922. height: math.unit(12.237, "meters"),
  7923. },
  7924. {
  7925. name: "Megamacro",
  7926. height: math.unit(557, "megameters"),
  7927. },
  7928. {
  7929. name: "Unimaginable",
  7930. height: math.unit(120e9, "lightyears")
  7931. },
  7932. ]
  7933. ))
  7934. characterMakers.push(() => makeCharacter(
  7935. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7936. {
  7937. front: {
  7938. height: math.unit(2, "meters"),
  7939. weight: math.unit(80, "kg"),
  7940. name: "Front",
  7941. image: {
  7942. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7943. }
  7944. }
  7945. },
  7946. [
  7947. {
  7948. name: "Teramacro",
  7949. height: math.unit(500000, "lightyears"),
  7950. default: true
  7951. },
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7956. {
  7957. crux: {
  7958. height: math.unit(2, "meters"),
  7959. weight: math.unit(150, "kg"),
  7960. name: "Crux",
  7961. image: {
  7962. source: "./media/characters/vemus/crux.svg",
  7963. extra: 1074/936,
  7964. bottom: 23/1097
  7965. }
  7966. },
  7967. skunkTanuki: {
  7968. height: math.unit(2, "meters"),
  7969. weight: math.unit(150, "kg"),
  7970. name: "Skunk-Tanuki",
  7971. image: {
  7972. source: "./media/characters/vemus/skunk-tanuki.svg",
  7973. extra: 926/893,
  7974. bottom: 20/946
  7975. }
  7976. },
  7977. },
  7978. [
  7979. {
  7980. name: "Normal",
  7981. height: math.unit(4, "meters"),
  7982. default: true
  7983. },
  7984. {
  7985. name: "Big",
  7986. height: math.unit(8, "meters")
  7987. },
  7988. {
  7989. name: "Macro",
  7990. height: math.unit(100, "meters")
  7991. },
  7992. {
  7993. name: "Macro+",
  7994. height: math.unit(1500, "meters")
  7995. },
  7996. {
  7997. name: "Stellar",
  7998. height: math.unit(14e8, "meters")
  7999. },
  8000. ]
  8001. ))
  8002. characterMakers.push(() => makeCharacter(
  8003. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8004. {
  8005. front: {
  8006. height: math.unit(2, "meters"),
  8007. weight: math.unit(70, "kg"),
  8008. name: "Front",
  8009. image: {
  8010. source: "./media/characters/beherit/front.svg",
  8011. extra: 1234/1109,
  8012. bottom: 55/1289
  8013. }
  8014. }
  8015. },
  8016. [
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(6, "feet")
  8020. },
  8021. {
  8022. name: "Lorg",
  8023. height: math.unit(25, "feet"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Lorger",
  8028. height: math.unit(75, "feet")
  8029. },
  8030. {
  8031. name: "Macro",
  8032. height: math.unit(200, "meters")
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8038. {
  8039. front: {
  8040. height: math.unit(2, "meters"),
  8041. weight: math.unit(150, "kg"),
  8042. name: "Front",
  8043. image: {
  8044. source: "./media/characters/everett/front.svg",
  8045. extra: 1017/866,
  8046. bottom: 86/1103
  8047. }
  8048. },
  8049. paw: {
  8050. height: math.unit(2 / 3.6, "meters"),
  8051. name: "Paw",
  8052. image: {
  8053. source: "./media/characters/everett/paw.svg"
  8054. }
  8055. },
  8056. },
  8057. [
  8058. {
  8059. name: "Normal",
  8060. height: math.unit(15, "feet"),
  8061. default: true
  8062. },
  8063. {
  8064. name: "Lorg",
  8065. height: math.unit(70, "feet"),
  8066. default: true
  8067. },
  8068. {
  8069. name: "Lorger",
  8070. height: math.unit(250, "feet")
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(500, "meters")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(2, "meters"),
  8083. weight: math.unit(86, "kg"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/rose/front.svg",
  8087. extra: 1785/1636,
  8088. bottom: 30/1815
  8089. },
  8090. form: "liom",
  8091. default: true
  8092. },
  8093. frontSporty: {
  8094. height: math.unit(2, "meters"),
  8095. weight: math.unit(86, "kg"),
  8096. name: "Front (Sporty)",
  8097. image: {
  8098. source: "./media/characters/rose/front-sporty.svg",
  8099. extra: 350/335,
  8100. bottom: 10/360
  8101. },
  8102. form: "liom"
  8103. },
  8104. frontAlt: {
  8105. height: math.unit(1.6, "meters"),
  8106. weight: math.unit(86, "kg"),
  8107. name: "Front (Alt)",
  8108. image: {
  8109. source: "./media/characters/rose/front-alt.svg",
  8110. extra: 299/283,
  8111. bottom: 3/302
  8112. },
  8113. form: "liom"
  8114. },
  8115. plush: {
  8116. height: math.unit(2, "meters"),
  8117. weight: math.unit(86/3, "kg"),
  8118. name: "Plush",
  8119. image: {
  8120. source: "./media/characters/rose/plush.svg",
  8121. extra: 361/337,
  8122. bottom: 11/372
  8123. },
  8124. form: "plush",
  8125. default: true
  8126. },
  8127. faeStanding: {
  8128. height: math.unit(10, "cm"),
  8129. weight: math.unit(10, "grams"),
  8130. name: "Standing",
  8131. image: {
  8132. source: "./media/characters/rose/fae-standing.svg",
  8133. extra: 1189/1060,
  8134. bottom: 27/1216
  8135. },
  8136. form: "fae",
  8137. default: true
  8138. },
  8139. faeSitting: {
  8140. height: math.unit(5, "cm"),
  8141. weight: math.unit(10, "grams"),
  8142. name: "Sitting",
  8143. image: {
  8144. source: "./media/characters/rose/fae-sitting.svg",
  8145. extra: 737/577,
  8146. bottom: 356/1093
  8147. },
  8148. form: "fae"
  8149. },
  8150. faePaw: {
  8151. height: math.unit(1.35, "cm"),
  8152. name: "Paw",
  8153. image: {
  8154. source: "./media/characters/rose/fae-paw.svg"
  8155. },
  8156. form: "fae"
  8157. },
  8158. },
  8159. [
  8160. {
  8161. name: "True Micro",
  8162. height: math.unit(9, "cm"),
  8163. form: "liom"
  8164. },
  8165. {
  8166. name: "Micro",
  8167. height: math.unit(16, "cm"),
  8168. form: "liom"
  8169. },
  8170. {
  8171. name: "Normal",
  8172. height: math.unit(1.85, "meters"),
  8173. default: true,
  8174. form: "liom"
  8175. },
  8176. {
  8177. name: "Mini-Macro",
  8178. height: math.unit(5, "meters"),
  8179. form: "liom"
  8180. },
  8181. {
  8182. name: "Macro",
  8183. height: math.unit(15, "meters"),
  8184. form: "liom"
  8185. },
  8186. {
  8187. name: "True Macro",
  8188. height: math.unit(40, "meters"),
  8189. form: "liom"
  8190. },
  8191. {
  8192. name: "City Scale",
  8193. height: math.unit(1, "km"),
  8194. form: "liom"
  8195. },
  8196. {
  8197. name: "Plushie",
  8198. height: math.unit(9, "cm"),
  8199. form: "plush",
  8200. default: true
  8201. },
  8202. {
  8203. name: "Fae",
  8204. height: math.unit(10, "cm"),
  8205. form: "fae",
  8206. default: true
  8207. },
  8208. ],
  8209. {
  8210. "liom": {
  8211. name: "Liom"
  8212. },
  8213. "plush": {
  8214. name: "Plush"
  8215. },
  8216. "fae": {
  8217. name: "Fae Fox",
  8218. default: true
  8219. }
  8220. }
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(2, "meters"),
  8227. weight: math.unit(350, "lbs"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/regal/front.svg"
  8231. }
  8232. },
  8233. back: {
  8234. height: math.unit(2, "meters"),
  8235. weight: math.unit(350, "lbs"),
  8236. name: "Back",
  8237. image: {
  8238. source: "./media/characters/regal/back.svg"
  8239. }
  8240. },
  8241. },
  8242. [
  8243. {
  8244. name: "Macro",
  8245. height: math.unit(350, "feet"),
  8246. default: true
  8247. }
  8248. ]
  8249. ))
  8250. characterMakers.push(() => makeCharacter(
  8251. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8252. {
  8253. standing: {
  8254. height: math.unit(4 + 11/12, "feet"),
  8255. weight: math.unit(100, "lb"),
  8256. name: "Standing",
  8257. image: {
  8258. source: "./media/characters/opal/standing.svg",
  8259. extra: 1588/1513,
  8260. bottom: 23/1611
  8261. }
  8262. },
  8263. sitting: {
  8264. height: math.unit(2.3, "feet"),
  8265. weight: math.unit(100, "lb"),
  8266. name: "Sitting",
  8267. image: {
  8268. source: "./media/characters/opal/sitting.svg",
  8269. extra: 1031/892,
  8270. bottom: 142/1173
  8271. }
  8272. },
  8273. hand: {
  8274. height: math.unit(0.59, "feet"),
  8275. name: "Hand",
  8276. image: {
  8277. source: "./media/characters/opal/hand.svg"
  8278. }
  8279. },
  8280. foot: {
  8281. height: math.unit(0.61, "feet"),
  8282. name: "Foot",
  8283. image: {
  8284. source: "./media/characters/opal/foot.svg"
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Small",
  8291. height: math.unit(4 + 11 / 12, "feet")
  8292. },
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(20, "feet"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Macro",
  8300. height: math.unit(120, "feet")
  8301. },
  8302. {
  8303. name: "Megamacro",
  8304. height: math.unit(80, "miles")
  8305. },
  8306. {
  8307. name: "True Size",
  8308. height: math.unit(100000, "lightyears")
  8309. },
  8310. ]
  8311. ))
  8312. characterMakers.push(() => makeCharacter(
  8313. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8314. {
  8315. front: {
  8316. height: math.unit(6, "feet"),
  8317. weight: math.unit(200, "lbs"),
  8318. name: "Front",
  8319. image: {
  8320. source: "./media/characters/vector-wuff/front.svg"
  8321. }
  8322. }
  8323. },
  8324. [
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(2.8, "meters")
  8328. },
  8329. {
  8330. name: "Macro",
  8331. height: math.unit(450, "meters"),
  8332. default: true
  8333. },
  8334. {
  8335. name: "Megamacro",
  8336. height: math.unit(15, "kilometers")
  8337. }
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8342. {
  8343. front: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(256, "lbs"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/dannik/front.svg"
  8349. }
  8350. }
  8351. },
  8352. [
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(69.57, "meters"),
  8356. default: true
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(6, "feet"),
  8365. weight: math.unit(120, "lbs"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/azura-saharah/front.svg"
  8369. }
  8370. },
  8371. back: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(120, "lbs"),
  8374. name: "Back",
  8375. image: {
  8376. source: "./media/characters/azura-saharah/back.svg"
  8377. }
  8378. },
  8379. },
  8380. [
  8381. {
  8382. name: "Macro",
  8383. height: math.unit(100, "feet"),
  8384. default: true
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8390. {
  8391. side: {
  8392. height: math.unit(5 + 4 / 12, "feet"),
  8393. weight: math.unit(163, "lbs"),
  8394. name: "Side",
  8395. image: {
  8396. source: "./media/characters/kennedy/side.svg"
  8397. }
  8398. }
  8399. },
  8400. [
  8401. {
  8402. name: "Standard Doggo",
  8403. height: math.unit(5 + 4 / 12, "feet")
  8404. },
  8405. {
  8406. name: "Big Doggo",
  8407. height: math.unit(25 + 3 / 12, "feet"),
  8408. default: true
  8409. },
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8414. {
  8415. front: {
  8416. height: math.unit(5 + 5/12, "feet"),
  8417. weight: math.unit(100, "lbs"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/odios-de-lunar/front.svg",
  8421. extra: 1468/1323,
  8422. bottom: 22/1490
  8423. }
  8424. }
  8425. },
  8426. [
  8427. {
  8428. name: "Micro",
  8429. height: math.unit(3, "inches")
  8430. },
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(5.5, "feet"),
  8434. default: true
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(100, "feet")
  8439. },
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8444. {
  8445. back: {
  8446. height: math.unit(6, "feet"),
  8447. weight: math.unit(220, "lbs"),
  8448. name: "Back",
  8449. image: {
  8450. source: "./media/characters/mandake/back.svg"
  8451. }
  8452. }
  8453. },
  8454. [
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(7, "feet"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Macro",
  8462. height: math.unit(78, "feet")
  8463. },
  8464. {
  8465. name: "Macro+",
  8466. height: math.unit(300, "meters")
  8467. },
  8468. {
  8469. name: "Macro++",
  8470. height: math.unit(2400, "feet")
  8471. },
  8472. {
  8473. name: "Megamacro",
  8474. height: math.unit(5167, "meters")
  8475. },
  8476. {
  8477. name: "Gigamacro",
  8478. height: math.unit(41769, "miles")
  8479. },
  8480. ]
  8481. ))
  8482. characterMakers.push(() => makeCharacter(
  8483. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8484. {
  8485. front: {
  8486. height: math.unit(6, "feet"),
  8487. weight: math.unit(120, "lbs"),
  8488. name: "Front",
  8489. image: {
  8490. source: "./media/characters/yozey/front.svg"
  8491. }
  8492. },
  8493. frontAlt: {
  8494. height: math.unit(6, "feet"),
  8495. weight: math.unit(120, "lbs"),
  8496. name: "Front (Alt)",
  8497. image: {
  8498. source: "./media/characters/yozey/front-alt.svg"
  8499. }
  8500. },
  8501. side: {
  8502. height: math.unit(6, "feet"),
  8503. weight: math.unit(120, "lbs"),
  8504. name: "Side",
  8505. image: {
  8506. source: "./media/characters/yozey/side.svg"
  8507. }
  8508. },
  8509. },
  8510. [
  8511. {
  8512. name: "Micro",
  8513. height: math.unit(3, "inches"),
  8514. default: true
  8515. },
  8516. {
  8517. name: "Normal",
  8518. height: math.unit(6, "feet")
  8519. }
  8520. ]
  8521. ))
  8522. characterMakers.push(() => makeCharacter(
  8523. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8524. {
  8525. front: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(103, "lbs"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/valeska-voss/front.svg"
  8531. }
  8532. }
  8533. },
  8534. [
  8535. {
  8536. name: "Mini-Sized Sub",
  8537. height: math.unit(3.1, "inches")
  8538. },
  8539. {
  8540. name: "Mid-Sized Sub",
  8541. height: math.unit(6.2, "inches")
  8542. },
  8543. {
  8544. name: "Full-Sized Sub",
  8545. height: math.unit(9.3, "inches")
  8546. },
  8547. {
  8548. name: "Normal",
  8549. height: math.unit(5 + 2 / 12, "foot"),
  8550. default: true
  8551. },
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(6, "feet"),
  8559. weight: math.unit(160, "lbs"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/gene-zeta/front.svg",
  8563. extra: 3006 / 2826,
  8564. bottom: 182 / 3188
  8565. }
  8566. }
  8567. },
  8568. [
  8569. {
  8570. name: "Micro",
  8571. height: math.unit(6, "inches")
  8572. },
  8573. {
  8574. name: "Normal",
  8575. height: math.unit(5 + 11 / 12, "foot"),
  8576. default: true
  8577. },
  8578. {
  8579. name: "Macro",
  8580. height: math.unit(140, "feet")
  8581. },
  8582. {
  8583. name: "Supercharged",
  8584. height: math.unit(2500, "feet")
  8585. },
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(6, "feet"),
  8593. weight: math.unit(350, "lbs"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/razinox/front.svg",
  8597. extra: 1686 / 1548,
  8598. bottom: 28.2 / 1868
  8599. }
  8600. },
  8601. back: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(350, "lbs"),
  8604. name: "Back",
  8605. image: {
  8606. source: "./media/characters/razinox/back.svg",
  8607. extra: 1660 / 1590,
  8608. bottom: 15 / 1665
  8609. }
  8610. },
  8611. },
  8612. [
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(10 + 8 / 12, "foot")
  8616. },
  8617. {
  8618. name: "Minimacro",
  8619. height: math.unit(15, "foot")
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(60, "foot"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Megamacro",
  8628. height: math.unit(5, "miles")
  8629. },
  8630. {
  8631. name: "Gigamacro",
  8632. height: math.unit(6000, "miles")
  8633. },
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8638. {
  8639. front: {
  8640. height: math.unit(6, "feet"),
  8641. weight: math.unit(150, "lbs"),
  8642. name: "Front",
  8643. image: {
  8644. source: "./media/characters/cobalt/front.svg"
  8645. }
  8646. }
  8647. },
  8648. [
  8649. {
  8650. name: "Normal",
  8651. height: math.unit(8 + 1 / 12, "foot")
  8652. },
  8653. {
  8654. name: "Macro",
  8655. height: math.unit(111, "foot"),
  8656. default: true
  8657. },
  8658. {
  8659. name: "Supracosmic",
  8660. height: math.unit(1e42, "feet")
  8661. },
  8662. ]
  8663. ))
  8664. characterMakers.push(() => makeCharacter(
  8665. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8666. {
  8667. front: {
  8668. height: math.unit(5, "inches"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/amanda/front.svg",
  8672. extra: 926/791,
  8673. bottom: 38/964
  8674. }
  8675. },
  8676. back: {
  8677. height: math.unit(5, "inches"),
  8678. name: "Back",
  8679. image: {
  8680. source: "./media/characters/amanda/back.svg",
  8681. extra: 909/805,
  8682. bottom: 43/952
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Micro",
  8689. height: math.unit(5, "inches"),
  8690. default: true
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(2.75, "meters"),
  8699. weight: math.unit(1200, "lb"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/teal/front.svg",
  8703. extra: 2463 / 2320,
  8704. bottom: 166 / 2629
  8705. }
  8706. },
  8707. back: {
  8708. height: math.unit(2.75, "meters"),
  8709. weight: math.unit(1200, "lb"),
  8710. name: "Back",
  8711. image: {
  8712. source: "./media/characters/teal/back.svg",
  8713. extra: 2580 / 2489,
  8714. bottom: 151 / 2731
  8715. }
  8716. },
  8717. sitting: {
  8718. height: math.unit(1.9, "meters"),
  8719. weight: math.unit(1200, "lb"),
  8720. name: "Sitting",
  8721. image: {
  8722. source: "./media/characters/teal/sitting.svg",
  8723. extra: 623 / 590,
  8724. bottom: 121 / 744
  8725. }
  8726. },
  8727. standing: {
  8728. height: math.unit(2.75, "meters"),
  8729. weight: math.unit(1200, "lb"),
  8730. name: "Standing",
  8731. image: {
  8732. source: "./media/characters/teal/standing.svg",
  8733. extra: 923 / 893,
  8734. bottom: 60 / 983
  8735. }
  8736. },
  8737. stretching: {
  8738. height: math.unit(3.65, "meters"),
  8739. weight: math.unit(1200, "lb"),
  8740. name: "Stretching",
  8741. image: {
  8742. source: "./media/characters/teal/stretching.svg",
  8743. extra: 1276 / 1244,
  8744. bottom: 0 / 1276
  8745. }
  8746. },
  8747. legged: {
  8748. height: math.unit(1.3, "meters"),
  8749. weight: math.unit(100, "lb"),
  8750. name: "Legged",
  8751. image: {
  8752. source: "./media/characters/teal/legged.svg",
  8753. extra: 462 / 437,
  8754. bottom: 24 / 486
  8755. }
  8756. },
  8757. naga: {
  8758. height: math.unit(5.4, "meters"),
  8759. weight: math.unit(4000, "lb"),
  8760. name: "Naga",
  8761. image: {
  8762. source: "./media/characters/teal/naga.svg",
  8763. extra: 1902 / 1858,
  8764. bottom: 0 / 1902
  8765. }
  8766. },
  8767. hand: {
  8768. height: math.unit(0.52, "meters"),
  8769. name: "Hand",
  8770. image: {
  8771. source: "./media/characters/teal/hand.svg"
  8772. }
  8773. },
  8774. maw: {
  8775. height: math.unit(0.43, "meters"),
  8776. name: "Maw",
  8777. image: {
  8778. source: "./media/characters/teal/maw.svg"
  8779. }
  8780. },
  8781. slit: {
  8782. height: math.unit(0.25, "meters"),
  8783. name: "Slit",
  8784. image: {
  8785. source: "./media/characters/teal/slit.svg"
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Normal",
  8792. height: math.unit(2.75, "meters"),
  8793. default: true
  8794. },
  8795. {
  8796. name: "Macro",
  8797. height: math.unit(300, "feet")
  8798. },
  8799. {
  8800. name: "Macro+",
  8801. height: math.unit(2000, "feet")
  8802. },
  8803. ]
  8804. ))
  8805. characterMakers.push(() => makeCharacter(
  8806. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8807. {
  8808. frontCat: {
  8809. height: math.unit(6, "feet"),
  8810. weight: math.unit(180, "lbs"),
  8811. name: "Front (Cat)",
  8812. image: {
  8813. source: "./media/characters/ravin-amulet/front-cat.svg"
  8814. }
  8815. },
  8816. frontCatAlt: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(180, "lbs"),
  8819. name: "Front (Alt, Cat)",
  8820. image: {
  8821. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8822. }
  8823. },
  8824. frontWerewolf: {
  8825. height: math.unit(6 * 1.2, "feet"),
  8826. weight: math.unit(225, "lbs"),
  8827. name: "Front (Werewolf)",
  8828. image: {
  8829. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8830. }
  8831. },
  8832. backWerewolf: {
  8833. height: math.unit(6 * 1.2, "feet"),
  8834. weight: math.unit(225, "lbs"),
  8835. name: "Back (Werewolf)",
  8836. image: {
  8837. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Nano",
  8844. height: math.unit(1, "micrometer")
  8845. },
  8846. {
  8847. name: "Micro",
  8848. height: math.unit(1, "inch")
  8849. },
  8850. {
  8851. name: "Normal",
  8852. height: math.unit(6, "feet"),
  8853. default: true
  8854. },
  8855. {
  8856. name: "Macro",
  8857. height: math.unit(60, "feet")
  8858. }
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8863. {
  8864. front: {
  8865. height: math.unit(6, "feet"),
  8866. weight: math.unit(165, "lbs"),
  8867. name: "Front",
  8868. image: {
  8869. source: "./media/characters/fluoresce/front.svg"
  8870. }
  8871. }
  8872. },
  8873. [
  8874. {
  8875. name: "Micro",
  8876. height: math.unit(6, "cm")
  8877. },
  8878. {
  8879. name: "Normal",
  8880. height: math.unit(5 + 7 / 12, "feet"),
  8881. default: true
  8882. },
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(56, "feet")
  8886. },
  8887. {
  8888. name: "Megamacro",
  8889. height: math.unit(1.9, "miles")
  8890. },
  8891. ]
  8892. ))
  8893. characterMakers.push(() => makeCharacter(
  8894. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8895. {
  8896. front: {
  8897. height: math.unit(9 + 6 / 12, "feet"),
  8898. weight: math.unit(523, "lbs"),
  8899. name: "Side",
  8900. image: {
  8901. source: "./media/characters/aurora/side.svg",
  8902. extra: 474/393,
  8903. bottom: 5/479
  8904. }
  8905. }
  8906. },
  8907. [
  8908. {
  8909. name: "Normal",
  8910. height: math.unit(9 + 6 / 12, "feet")
  8911. },
  8912. {
  8913. name: "Macro",
  8914. height: math.unit(96, "feet"),
  8915. default: true
  8916. },
  8917. {
  8918. name: "Macro+",
  8919. height: math.unit(243, "feet")
  8920. },
  8921. ]
  8922. ))
  8923. characterMakers.push(() => makeCharacter(
  8924. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8925. {
  8926. front: {
  8927. height: math.unit(194, "cm"),
  8928. weight: math.unit(90, "kg"),
  8929. name: "Front",
  8930. image: {
  8931. source: "./media/characters/ranek/front.svg",
  8932. extra: 1862/1791,
  8933. bottom: 80/1942
  8934. }
  8935. },
  8936. back: {
  8937. height: math.unit(194, "cm"),
  8938. weight: math.unit(90, "kg"),
  8939. name: "Back",
  8940. image: {
  8941. source: "./media/characters/ranek/back.svg",
  8942. extra: 1853/1787,
  8943. bottom: 74/1927
  8944. }
  8945. },
  8946. feral: {
  8947. height: math.unit(30, "cm"),
  8948. weight: math.unit(1.6, "lbs"),
  8949. name: "Feral",
  8950. image: {
  8951. source: "./media/characters/ranek/feral.svg",
  8952. extra: 990/631,
  8953. bottom: 29/1019
  8954. }
  8955. },
  8956. },
  8957. [
  8958. {
  8959. name: "Normal",
  8960. height: math.unit(194, "cm"),
  8961. default: true
  8962. },
  8963. {
  8964. name: "Macro",
  8965. height: math.unit(100, "meters")
  8966. },
  8967. ]
  8968. ))
  8969. characterMakers.push(() => makeCharacter(
  8970. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8971. {
  8972. front: {
  8973. height: math.unit(5 + 6 / 12, "feet"),
  8974. weight: math.unit(153, "lbs"),
  8975. name: "Front",
  8976. image: {
  8977. source: "./media/characters/andrew-cooper/front.svg"
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Nano",
  8984. height: math.unit(1, "mm")
  8985. },
  8986. {
  8987. name: "Micro",
  8988. height: math.unit(2, "inches")
  8989. },
  8990. {
  8991. name: "Normal",
  8992. height: math.unit(5 + 6 / 12, "feet"),
  8993. default: true
  8994. }
  8995. ]
  8996. ))
  8997. characterMakers.push(() => makeCharacter(
  8998. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8999. {
  9000. front: {
  9001. height: math.unit(6, "feet"),
  9002. weight: math.unit(180, "lbs"),
  9003. name: "Front",
  9004. image: {
  9005. source: "./media/characters/akane-sato/front.svg",
  9006. extra: 1219 / 1140
  9007. }
  9008. },
  9009. back: {
  9010. height: math.unit(6, "feet"),
  9011. weight: math.unit(180, "lbs"),
  9012. name: "Back",
  9013. image: {
  9014. source: "./media/characters/akane-sato/back.svg",
  9015. extra: 1219 / 1170
  9016. }
  9017. },
  9018. },
  9019. [
  9020. {
  9021. name: "Normal",
  9022. height: math.unit(2.5, "meters")
  9023. },
  9024. {
  9025. name: "Macro",
  9026. height: math.unit(250, "meters"),
  9027. default: true
  9028. },
  9029. {
  9030. name: "Megamacro",
  9031. height: math.unit(25, "km")
  9032. },
  9033. ]
  9034. ))
  9035. characterMakers.push(() => makeCharacter(
  9036. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9037. {
  9038. front: {
  9039. height: math.unit(6, "feet"),
  9040. weight: math.unit(65, "kg"),
  9041. name: "Front",
  9042. image: {
  9043. source: "./media/characters/rook/front.svg",
  9044. extra: 960 / 950
  9045. }
  9046. }
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(8.8, "feet")
  9052. },
  9053. {
  9054. name: "Macro",
  9055. height: math.unit(88, "feet"),
  9056. default: true
  9057. },
  9058. {
  9059. name: "Megamacro",
  9060. height: math.unit(8, "miles")
  9061. },
  9062. ]
  9063. ))
  9064. characterMakers.push(() => makeCharacter(
  9065. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9066. {
  9067. front: {
  9068. height: math.unit(12 + 2 / 12, "feet"),
  9069. weight: math.unit(808, "lbs"),
  9070. name: "Front",
  9071. image: {
  9072. source: "./media/characters/prodigy/front.svg"
  9073. }
  9074. }
  9075. },
  9076. [
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(12 + 2 / 12, "feet"),
  9080. default: true
  9081. },
  9082. {
  9083. name: "Macro",
  9084. height: math.unit(143, "feet")
  9085. },
  9086. {
  9087. name: "Macro+",
  9088. height: math.unit(400, "feet")
  9089. },
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9094. {
  9095. front: {
  9096. height: math.unit(6, "feet"),
  9097. weight: math.unit(225, "lbs"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/daniel/front.svg"
  9101. }
  9102. },
  9103. leaning: {
  9104. height: math.unit(6, "feet"),
  9105. weight: math.unit(225, "lbs"),
  9106. name: "Leaning",
  9107. image: {
  9108. source: "./media/characters/daniel/leaning.svg"
  9109. }
  9110. },
  9111. },
  9112. [
  9113. {
  9114. name: "Macro",
  9115. height: math.unit(1000, "feet"),
  9116. default: true
  9117. },
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(88, "lbs"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/chiros/front.svg",
  9129. extra: 306 / 226
  9130. }
  9131. },
  9132. side: {
  9133. height: math.unit(6, "feet"),
  9134. weight: math.unit(88, "lbs"),
  9135. name: "Side",
  9136. image: {
  9137. source: "./media/characters/chiros/side.svg",
  9138. extra: 306 / 226
  9139. }
  9140. },
  9141. },
  9142. [
  9143. {
  9144. name: "Normal",
  9145. height: math.unit(6, "cm"),
  9146. default: true
  9147. },
  9148. ]
  9149. ))
  9150. characterMakers.push(() => makeCharacter(
  9151. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9152. {
  9153. front: {
  9154. height: math.unit(6, "feet"),
  9155. weight: math.unit(100, "lbs"),
  9156. name: "Front",
  9157. image: {
  9158. source: "./media/characters/selka/front.svg",
  9159. extra: 947 / 887
  9160. }
  9161. }
  9162. },
  9163. [
  9164. {
  9165. name: "Normal",
  9166. height: math.unit(5, "cm"),
  9167. default: true
  9168. },
  9169. ]
  9170. ))
  9171. characterMakers.push(() => makeCharacter(
  9172. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9173. {
  9174. front: {
  9175. height: math.unit(8 + 3 / 12, "feet"),
  9176. weight: math.unit(424, "lbs"),
  9177. name: "Front",
  9178. image: {
  9179. source: "./media/characters/verin/front.svg",
  9180. extra: 1845 / 1550
  9181. }
  9182. },
  9183. frontArmored: {
  9184. height: math.unit(8 + 3 / 12, "feet"),
  9185. weight: math.unit(424, "lbs"),
  9186. name: "Front (Armored)",
  9187. image: {
  9188. source: "./media/characters/verin/front-armor.svg",
  9189. extra: 1845 / 1550,
  9190. bottom: 0.01
  9191. }
  9192. },
  9193. back: {
  9194. height: math.unit(8 + 3 / 12, "feet"),
  9195. weight: math.unit(424, "lbs"),
  9196. name: "Back",
  9197. image: {
  9198. source: "./media/characters/verin/back.svg",
  9199. bottom: 0.1,
  9200. extra: 1
  9201. }
  9202. },
  9203. foot: {
  9204. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9205. name: "Foot",
  9206. image: {
  9207. source: "./media/characters/verin/foot.svg"
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Normal",
  9214. height: math.unit(8 + 3 / 12, "feet")
  9215. },
  9216. {
  9217. name: "Minimacro",
  9218. height: math.unit(21, "feet"),
  9219. default: true
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(626, "feet")
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(2.718, "meters"),
  9232. weight: math.unit(150, "lbs"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/sovrim-terraquian/front.svg",
  9236. extra: 1752/1689,
  9237. bottom: 36/1788
  9238. }
  9239. },
  9240. back: {
  9241. height: math.unit(2.718, "meters"),
  9242. weight: math.unit(150, "lbs"),
  9243. name: "Back",
  9244. image: {
  9245. source: "./media/characters/sovrim-terraquian/back.svg",
  9246. extra: 1698/1657,
  9247. bottom: 58/1756
  9248. }
  9249. },
  9250. tongue: {
  9251. height: math.unit(2.865, "feet"),
  9252. name: "Tongue",
  9253. image: {
  9254. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9255. }
  9256. },
  9257. hand: {
  9258. height: math.unit(1.61, "feet"),
  9259. name: "Hand",
  9260. image: {
  9261. source: "./media/characters/sovrim-terraquian/hand.svg"
  9262. }
  9263. },
  9264. foot: {
  9265. height: math.unit(1.05, "feet"),
  9266. name: "Foot",
  9267. image: {
  9268. source: "./media/characters/sovrim-terraquian/foot.svg"
  9269. }
  9270. },
  9271. footAlt: {
  9272. height: math.unit(0.88, "feet"),
  9273. name: "Foot (Alt)",
  9274. image: {
  9275. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9276. }
  9277. },
  9278. },
  9279. [
  9280. {
  9281. name: "Micro",
  9282. height: math.unit(2, "inches")
  9283. },
  9284. {
  9285. name: "Small",
  9286. height: math.unit(1, "meter")
  9287. },
  9288. {
  9289. name: "Normal",
  9290. height: math.unit(Math.E, "meters"),
  9291. default: true
  9292. },
  9293. {
  9294. name: "Macro",
  9295. height: math.unit(20, "meters")
  9296. },
  9297. {
  9298. name: "Macro+",
  9299. height: math.unit(400, "meters")
  9300. },
  9301. ]
  9302. ))
  9303. characterMakers.push(() => makeCharacter(
  9304. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9305. {
  9306. front: {
  9307. height: math.unit(7, "feet"),
  9308. weight: math.unit(489, "lbs"),
  9309. name: "Front",
  9310. image: {
  9311. source: "./media/characters/reece-silvermane/front.svg",
  9312. bottom: 0.02,
  9313. extra: 1
  9314. }
  9315. },
  9316. },
  9317. [
  9318. {
  9319. name: "Macro",
  9320. height: math.unit(1.5, "miles"),
  9321. default: true
  9322. },
  9323. ]
  9324. ))
  9325. characterMakers.push(() => makeCharacter(
  9326. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9327. {
  9328. front: {
  9329. height: math.unit(6, "feet"),
  9330. weight: math.unit(78, "kg"),
  9331. name: "Front",
  9332. image: {
  9333. source: "./media/characters/kane/front.svg",
  9334. extra: 978 / 899
  9335. }
  9336. },
  9337. back: {
  9338. height: math.unit(6, "feet"),
  9339. weight: math.unit(78, "kg"),
  9340. name: "Back",
  9341. image: {
  9342. source: "./media/characters/kane/back.svg",
  9343. extra: 1966/1800,
  9344. bottom: 0/1966
  9345. }
  9346. },
  9347. head: {
  9348. height: math.unit(1.4, "feet"),
  9349. name: "Head",
  9350. image: {
  9351. source: "./media/characters/kane/head.svg"
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Normal",
  9358. height: math.unit(2.1, "m"),
  9359. },
  9360. {
  9361. name: "Macro",
  9362. height: math.unit(1, "km"),
  9363. default: true
  9364. },
  9365. ]
  9366. ))
  9367. characterMakers.push(() => makeCharacter(
  9368. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9369. {
  9370. front: {
  9371. height: math.unit(6, "feet"),
  9372. weight: math.unit(200, "kg"),
  9373. name: "Front",
  9374. image: {
  9375. source: "./media/characters/tegon/front.svg",
  9376. bottom: 0.01,
  9377. extra: 1
  9378. }
  9379. },
  9380. },
  9381. [
  9382. {
  9383. name: "Micro",
  9384. height: math.unit(1, "inch")
  9385. },
  9386. {
  9387. name: "Normal",
  9388. height: math.unit(6 + 3 / 12, "feet"),
  9389. default: true
  9390. },
  9391. {
  9392. name: "Macro",
  9393. height: math.unit(300, "feet")
  9394. },
  9395. {
  9396. name: "Megamacro",
  9397. height: math.unit(69, "miles")
  9398. },
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9403. {
  9404. side: {
  9405. height: math.unit(6, "feet"),
  9406. weight: math.unit(2304, "lbs"),
  9407. name: "Side",
  9408. image: {
  9409. source: "./media/characters/arcturax/side.svg",
  9410. extra: 790 / 376,
  9411. bottom: 0.01
  9412. }
  9413. },
  9414. },
  9415. [
  9416. {
  9417. name: "Micro",
  9418. height: math.unit(2, "inch")
  9419. },
  9420. {
  9421. name: "Normal",
  9422. height: math.unit(6, "feet")
  9423. },
  9424. {
  9425. name: "Macro",
  9426. height: math.unit(39, "feet"),
  9427. default: true
  9428. },
  9429. {
  9430. name: "Megamacro",
  9431. height: math.unit(7, "miles")
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9437. {
  9438. front: {
  9439. height: math.unit(6, "feet"),
  9440. weight: math.unit(50, "lbs"),
  9441. name: "Front",
  9442. image: {
  9443. source: "./media/characters/sentri/front.svg",
  9444. extra: 1750 / 1570,
  9445. bottom: 0.025
  9446. }
  9447. },
  9448. frontAlt: {
  9449. height: math.unit(6, "feet"),
  9450. weight: math.unit(50, "lbs"),
  9451. name: "Front (Alt)",
  9452. image: {
  9453. source: "./media/characters/sentri/front-alt.svg",
  9454. extra: 1750 / 1570,
  9455. bottom: 0.025
  9456. }
  9457. },
  9458. },
  9459. [
  9460. {
  9461. name: "Normal",
  9462. height: math.unit(15, "feet"),
  9463. default: true
  9464. },
  9465. {
  9466. name: "Macro",
  9467. height: math.unit(2500, "feet")
  9468. }
  9469. ]
  9470. ))
  9471. characterMakers.push(() => makeCharacter(
  9472. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9473. {
  9474. front: {
  9475. height: math.unit(5 + 8 / 12, "feet"),
  9476. weight: math.unit(130, "lbs"),
  9477. name: "Front",
  9478. image: {
  9479. source: "./media/characters/corvin/front.svg",
  9480. extra: 1803 / 1629
  9481. }
  9482. },
  9483. frontShirt: {
  9484. height: math.unit(5 + 8 / 12, "feet"),
  9485. weight: math.unit(130, "lbs"),
  9486. name: "Front (Shirt)",
  9487. image: {
  9488. source: "./media/characters/corvin/front-shirt.svg",
  9489. extra: 1803 / 1629
  9490. }
  9491. },
  9492. frontPoncho: {
  9493. height: math.unit(5 + 8 / 12, "feet"),
  9494. weight: math.unit(130, "lbs"),
  9495. name: "Front (Poncho)",
  9496. image: {
  9497. source: "./media/characters/corvin/front-poncho.svg",
  9498. extra: 1803 / 1629
  9499. }
  9500. },
  9501. side: {
  9502. height: math.unit(5 + 8 / 12, "feet"),
  9503. weight: math.unit(130, "lbs"),
  9504. name: "Side",
  9505. image: {
  9506. source: "./media/characters/corvin/side.svg",
  9507. extra: 1012 / 945
  9508. }
  9509. },
  9510. back: {
  9511. height: math.unit(5 + 8 / 12, "feet"),
  9512. weight: math.unit(130, "lbs"),
  9513. name: "Back",
  9514. image: {
  9515. source: "./media/characters/corvin/back.svg",
  9516. extra: 1803 / 1629
  9517. }
  9518. },
  9519. },
  9520. [
  9521. {
  9522. name: "Micro",
  9523. height: math.unit(3, "inches")
  9524. },
  9525. {
  9526. name: "Normal",
  9527. height: math.unit(5 + 8 / 12, "feet")
  9528. },
  9529. {
  9530. name: "Macro",
  9531. height: math.unit(300, "feet"),
  9532. default: true
  9533. },
  9534. {
  9535. name: "Megamacro",
  9536. height: math.unit(500, "miles")
  9537. }
  9538. ]
  9539. ))
  9540. characterMakers.push(() => makeCharacter(
  9541. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9542. {
  9543. front: {
  9544. height: math.unit(6, "feet"),
  9545. weight: math.unit(135, "lbs"),
  9546. name: "Front",
  9547. image: {
  9548. source: "./media/characters/q/front.svg",
  9549. extra: 854 / 752,
  9550. bottom: 0.005
  9551. }
  9552. },
  9553. back: {
  9554. height: math.unit(6, "feet"),
  9555. weight: math.unit(130, "lbs"),
  9556. name: "Back",
  9557. image: {
  9558. source: "./media/characters/q/back.svg",
  9559. extra: 854 / 752
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Macro",
  9566. height: math.unit(90, "feet"),
  9567. default: true
  9568. },
  9569. {
  9570. name: "Extra Macro",
  9571. height: math.unit(300, "feet"),
  9572. },
  9573. {
  9574. name: "BIG WALF",
  9575. height: math.unit(750, "feet"),
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(3, "feet"),
  9584. weight: math.unit(28, "lbs"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/citrine/front.svg"
  9588. }
  9589. }
  9590. },
  9591. [
  9592. {
  9593. name: "Normal",
  9594. height: math.unit(3, "feet"),
  9595. default: true
  9596. }
  9597. ]
  9598. ))
  9599. characterMakers.push(() => makeCharacter(
  9600. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9601. {
  9602. front: {
  9603. height: math.unit(14, "feet"),
  9604. weight: math.unit(1450, "kg"),
  9605. preyCapacity: math.unit(15, "people"),
  9606. name: "Front",
  9607. image: {
  9608. source: "./media/characters/aura-starwind/front.svg",
  9609. extra: 1440/1327,
  9610. bottom: 11/1451
  9611. }
  9612. },
  9613. side: {
  9614. height: math.unit(14, "feet"),
  9615. weight: math.unit(1450, "kg"),
  9616. preyCapacity: math.unit(15, "people"),
  9617. name: "Side",
  9618. image: {
  9619. source: "./media/characters/aura-starwind/side.svg",
  9620. extra: 1654 / 1497
  9621. }
  9622. },
  9623. taur: {
  9624. height: math.unit(18, "feet"),
  9625. weight: math.unit(5500, "kg"),
  9626. preyCapacity: math.unit(50, "people"),
  9627. name: "Taur",
  9628. image: {
  9629. source: "./media/characters/aura-starwind/taur.svg",
  9630. extra: 1760 / 1650
  9631. }
  9632. },
  9633. feral: {
  9634. height: math.unit(46, "feet"),
  9635. weight: math.unit(25000, "kg"),
  9636. preyCapacity: math.unit(120, "people"),
  9637. name: "Feral",
  9638. image: {
  9639. source: "./media/characters/aura-starwind/feral.svg"
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(14, "feet"),
  9647. default: true
  9648. },
  9649. {
  9650. name: "Macro",
  9651. height: math.unit(50, "meters")
  9652. },
  9653. {
  9654. name: "Megamacro",
  9655. height: math.unit(5000, "meters")
  9656. },
  9657. {
  9658. name: "Gigamacro",
  9659. height: math.unit(100000, "kilometers")
  9660. },
  9661. ]
  9662. ))
  9663. characterMakers.push(() => makeCharacter(
  9664. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9665. {
  9666. front: {
  9667. height: math.unit(2 + 7 / 12, "feet"),
  9668. weight: math.unit(32, "lbs"),
  9669. name: "Front",
  9670. image: {
  9671. source: "./media/characters/rivet/front.svg",
  9672. extra: 1716 / 1658,
  9673. bottom: 0.03
  9674. }
  9675. },
  9676. foot: {
  9677. height: math.unit(0.551, "feet"),
  9678. name: "Rivet's Foot",
  9679. image: {
  9680. source: "./media/characters/rivet/foot.svg"
  9681. },
  9682. rename: true
  9683. }
  9684. },
  9685. [
  9686. {
  9687. name: "Micro",
  9688. height: math.unit(1.5, "inches"),
  9689. },
  9690. {
  9691. name: "Normal",
  9692. height: math.unit(2 + 7 / 12, "feet"),
  9693. default: true
  9694. },
  9695. {
  9696. name: "Macro",
  9697. height: math.unit(85, "feet")
  9698. },
  9699. {
  9700. name: "Megamacro",
  9701. height: math.unit(2.2, "km")
  9702. }
  9703. ]
  9704. ))
  9705. characterMakers.push(() => makeCharacter(
  9706. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9707. {
  9708. front: {
  9709. height: math.unit(5 + 9 / 12, "feet"),
  9710. weight: math.unit(150, "lbs"),
  9711. name: "Front",
  9712. image: {
  9713. source: "./media/characters/coffee/front.svg",
  9714. extra: 946/880,
  9715. bottom: 66/1012
  9716. }
  9717. },
  9718. foot: {
  9719. height: math.unit(1.29, "feet"),
  9720. name: "Foot",
  9721. image: {
  9722. source: "./media/characters/coffee/foot.svg"
  9723. }
  9724. },
  9725. },
  9726. [
  9727. {
  9728. name: "Micro",
  9729. height: math.unit(2, "inches"),
  9730. },
  9731. {
  9732. name: "Normal",
  9733. height: math.unit(5 + 9 / 12, "feet"),
  9734. default: true
  9735. },
  9736. {
  9737. name: "Macro",
  9738. height: math.unit(800, "feet")
  9739. },
  9740. {
  9741. name: "Megamacro",
  9742. height: math.unit(25, "miles")
  9743. }
  9744. ]
  9745. ))
  9746. characterMakers.push(() => makeCharacter(
  9747. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9748. {
  9749. front: {
  9750. height: math.unit(6, "feet"),
  9751. weight: math.unit(200, "lbs"),
  9752. name: "Front",
  9753. image: {
  9754. source: "./media/characters/chari-gal/front.svg",
  9755. extra: 735/649,
  9756. bottom: 55/790
  9757. },
  9758. form: "normal",
  9759. default: true
  9760. },
  9761. back: {
  9762. height: math.unit(6, "feet"),
  9763. weight: math.unit(200, "lb"),
  9764. name: "Back",
  9765. image: {
  9766. source: "./media/characters/chari-gal/back.svg",
  9767. extra: 762/666,
  9768. bottom: 31/793
  9769. },
  9770. form: "normal"
  9771. },
  9772. mouth: {
  9773. height: math.unit(1.35, "feet"),
  9774. name: "Mouth",
  9775. image: {
  9776. source: "./media/characters/chari-gal/mouth.svg"
  9777. },
  9778. form: "normal"
  9779. },
  9780. gigantamax: {
  9781. height: math.unit(6 * 16, "feet"),
  9782. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9783. name: "Gigantamax",
  9784. image: {
  9785. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9786. extra: 1507/1149,
  9787. bottom: 254/1761
  9788. },
  9789. form: "gigantamax",
  9790. default: true
  9791. },
  9792. },
  9793. [
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(5 + 7 / 12, "feet"),
  9797. form: "normal",
  9798. },
  9799. {
  9800. name: "Macro",
  9801. height: math.unit(200, "feet"),
  9802. default: true,
  9803. form: "normal"
  9804. },
  9805. {
  9806. name: "Normal",
  9807. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9808. form: "gigantamax",
  9809. },
  9810. {
  9811. name: "Macro",
  9812. height: math.unit(16 * 200, "feet"),
  9813. default: true,
  9814. form: "gigantamax"
  9815. },
  9816. ],
  9817. {
  9818. "normal": {
  9819. name: "Normal",
  9820. default: true
  9821. },
  9822. "gigantamax": {
  9823. name: "Gigantamax",
  9824. },
  9825. }
  9826. ))
  9827. characterMakers.push(() => makeCharacter(
  9828. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9829. {
  9830. front: {
  9831. height: math.unit(6, "feet"),
  9832. weight: math.unit(150, "lbs"),
  9833. name: "Front",
  9834. image: {
  9835. source: "./media/characters/nova/front.svg",
  9836. extra: 5000 / 4722,
  9837. bottom: 0.02
  9838. }
  9839. }
  9840. },
  9841. [
  9842. {
  9843. name: "Micro-",
  9844. height: math.unit(0.8, "inches")
  9845. },
  9846. {
  9847. name: "Micro",
  9848. height: math.unit(2, "inches"),
  9849. default: true
  9850. },
  9851. ]
  9852. ))
  9853. characterMakers.push(() => makeCharacter(
  9854. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9855. {
  9856. koboldFront: {
  9857. height: math.unit(3 + 1 / 12, "feet"),
  9858. weight: math.unit(21.7, "lbs"),
  9859. name: "Front",
  9860. image: {
  9861. source: "./media/characters/argent/kobold-front.svg",
  9862. extra: 1471 / 1331,
  9863. bottom: 100.8 / 1575.5
  9864. },
  9865. form: "kobold",
  9866. default: true
  9867. },
  9868. dragonFront: {
  9869. height: math.unit(75, "inches"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/argent/dragon-front.svg",
  9873. extra: 1389/1248,
  9874. bottom: 54/1443
  9875. },
  9876. form: "dragon",
  9877. },
  9878. dragonBack: {
  9879. height: math.unit(75, "inches"),
  9880. name: "Back",
  9881. image: {
  9882. source: "./media/characters/argent/dragon-back.svg",
  9883. extra: 1399/1271,
  9884. bottom: 23/1422
  9885. },
  9886. form: "dragon",
  9887. },
  9888. dragonDressed: {
  9889. height: math.unit(75, "inches"),
  9890. name: "Dressed",
  9891. image: {
  9892. source: "./media/characters/argent/dragon-dressed.svg",
  9893. extra: 1350/1215,
  9894. bottom: 26/1376
  9895. },
  9896. form: "dragon"
  9897. },
  9898. dragonHead: {
  9899. height: math.unit(23.5, "inches"),
  9900. name: "Head",
  9901. image: {
  9902. source: "./media/characters/argent/dragon-head.svg"
  9903. },
  9904. form: "dragon",
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Micro",
  9910. height: math.unit(2, "inches"),
  9911. form: "kobold",
  9912. },
  9913. {
  9914. name: "Normal",
  9915. height: math.unit(3 + 1 / 12, "feet"),
  9916. form: "kobold",
  9917. default: true
  9918. },
  9919. {
  9920. name: "Macro",
  9921. height: math.unit(120, "feet"),
  9922. form: "kobold",
  9923. },
  9924. {
  9925. name: "Speck",
  9926. height: math.unit(1, "mm"),
  9927. form: "dragon",
  9928. },
  9929. {
  9930. name: "Tiny",
  9931. height: math.unit(1, "cm"),
  9932. form: "dragon",
  9933. },
  9934. {
  9935. name: "Micro",
  9936. height: math.unit(5, "cm"),
  9937. form: "dragon",
  9938. },
  9939. {
  9940. name: "Normal",
  9941. height: math.unit(75, "inches"),
  9942. form: "dragon",
  9943. default: true
  9944. },
  9945. {
  9946. name: "Extra Tall",
  9947. height: math.unit(9, "feet"),
  9948. form: "dragon",
  9949. },
  9950. {
  9951. name: "Inconvenient",
  9952. height: math.unit(5, "meters"),
  9953. form: "dragon",
  9954. },
  9955. {
  9956. name: "Macro",
  9957. height: math.unit(70, "meters"),
  9958. form: "dragon",
  9959. },
  9960. {
  9961. name: "Macro+",
  9962. height: math.unit(250, "meters"),
  9963. form: "dragon",
  9964. },
  9965. {
  9966. name: "Megamacro",
  9967. height: math.unit(20, "km"),
  9968. form: "dragon",
  9969. },
  9970. {
  9971. name: "Mountainous",
  9972. height: math.unit(100, "km"),
  9973. form: "dragon",
  9974. },
  9975. {
  9976. name: "Continental",
  9977. height: math.unit(2, "megameters"),
  9978. form: "dragon",
  9979. },
  9980. {
  9981. name: "Too Big",
  9982. height: math.unit(900, "megameters"),
  9983. form: "dragon",
  9984. },
  9985. ],
  9986. {
  9987. "kobold": {
  9988. name: "Kobold",
  9989. default: true
  9990. },
  9991. "dragon": {
  9992. name: "Dragon",
  9993. },
  9994. }
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9998. {
  9999. lamp: {
  10000. height: math.unit(7 * 1559 / 989, "feet"),
  10001. name: "Magic Lamp",
  10002. image: {
  10003. source: "./media/characters/mira-al-cul/lamp.svg",
  10004. extra: 1617 / 1559
  10005. }
  10006. },
  10007. front: {
  10008. height: math.unit(7, "feet"),
  10009. name: "Front",
  10010. image: {
  10011. source: "./media/characters/mira-al-cul/front.svg",
  10012. extra: 1044 / 990
  10013. }
  10014. },
  10015. },
  10016. [
  10017. {
  10018. name: "Heavily Restricted",
  10019. height: math.unit(7 * 1559 / 989, "feet")
  10020. },
  10021. {
  10022. name: "Freshly Freed",
  10023. height: math.unit(50 * 1559 / 989, "feet")
  10024. },
  10025. {
  10026. name: "World Encompassing",
  10027. height: math.unit(10000 * 1559 / 989, "miles")
  10028. },
  10029. {
  10030. name: "Galactic",
  10031. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10032. },
  10033. {
  10034. name: "Palmed Universe",
  10035. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10036. default: true
  10037. },
  10038. {
  10039. name: "Multiversal Matriarch",
  10040. height: math.unit(8.87e10, "yottameters")
  10041. },
  10042. {
  10043. name: "Void Mother",
  10044. height: math.unit(3.14e110, "yottaparsecs")
  10045. },
  10046. {
  10047. name: "Toying with Transcendence",
  10048. height: math.unit(1e307, "meters")
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10054. {
  10055. front: {
  10056. height: math.unit(17 + 1 / 12, "feet"),
  10057. weight: math.unit(476.2 * 5, "lbs"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/kuro-shi-uchū/front.svg",
  10061. extra: 2329 / 1835,
  10062. bottom: 0.02
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Micro",
  10069. height: math.unit(2, "inches")
  10070. },
  10071. {
  10072. name: "Normal",
  10073. height: math.unit(12, "meters")
  10074. },
  10075. {
  10076. name: "Planetary",
  10077. height: math.unit(0.00929, "AU"),
  10078. default: true
  10079. },
  10080. {
  10081. name: "Universal",
  10082. height: math.unit(20, "gigaparsecs")
  10083. },
  10084. ]
  10085. ))
  10086. characterMakers.push(() => makeCharacter(
  10087. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10088. {
  10089. front: {
  10090. height: math.unit(5 + 2 / 12, "feet"),
  10091. weight: math.unit(120, "lbs"),
  10092. name: "Front",
  10093. image: {
  10094. source: "./media/characters/katherine/front.svg",
  10095. extra: 2075 / 1969
  10096. }
  10097. },
  10098. dress: {
  10099. height: math.unit(5 + 2 / 12, "feet"),
  10100. weight: math.unit(120, "lbs"),
  10101. name: "Dress",
  10102. image: {
  10103. source: "./media/characters/katherine/dress.svg",
  10104. extra: 2258 / 2064
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Micro",
  10111. height: math.unit(1, "inches"),
  10112. default: true
  10113. },
  10114. {
  10115. name: "Normal",
  10116. height: math.unit(5 + 2 / 12, "feet")
  10117. },
  10118. {
  10119. name: "Macro",
  10120. height: math.unit(100, "meters")
  10121. },
  10122. {
  10123. name: "Megamacro",
  10124. height: math.unit(80, "miles")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(7 + 8 / 12, "feet"),
  10133. weight: math.unit(250, "lbs"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/yevis/front.svg",
  10137. extra: 1938 / 1755
  10138. }
  10139. }
  10140. },
  10141. [
  10142. {
  10143. name: "Mortal",
  10144. height: math.unit(7 + 8 / 12, "feet")
  10145. },
  10146. {
  10147. name: "Battle",
  10148. height: math.unit(25 + 11 / 12, "feet")
  10149. },
  10150. {
  10151. name: "Wrath",
  10152. height: math.unit(1654 + 11 / 12, "feet")
  10153. },
  10154. {
  10155. name: "Planet Destroyer",
  10156. height: math.unit(12000, "miles")
  10157. },
  10158. {
  10159. name: "Galaxy Conqueror",
  10160. height: math.unit(1.45, "zettameters"),
  10161. default: true
  10162. },
  10163. {
  10164. name: "Universal War",
  10165. height: math.unit(184, "gigaparsecs")
  10166. },
  10167. {
  10168. name: "Eternity War",
  10169. height: math.unit(1.98e55, "yottaparsecs")
  10170. },
  10171. ]
  10172. ))
  10173. characterMakers.push(() => makeCharacter(
  10174. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10175. {
  10176. front: {
  10177. height: math.unit(5 + 8 / 12, "feet"),
  10178. weight: math.unit(63, "kg"),
  10179. name: "Front",
  10180. image: {
  10181. source: "./media/characters/xavier/front.svg",
  10182. extra: 944 / 883
  10183. }
  10184. },
  10185. frontStretch: {
  10186. height: math.unit(5 + 8 / 12, "feet"),
  10187. weight: math.unit(63, "kg"),
  10188. name: "Stretching",
  10189. image: {
  10190. source: "./media/characters/xavier/front-stretch.svg",
  10191. extra: 962 / 820
  10192. }
  10193. },
  10194. },
  10195. [
  10196. {
  10197. name: "Normal",
  10198. height: math.unit(5 + 8 / 12, "feet")
  10199. },
  10200. {
  10201. name: "Macro",
  10202. height: math.unit(100, "meters"),
  10203. default: true
  10204. },
  10205. {
  10206. name: "McLargeHuge",
  10207. height: math.unit(10, "miles")
  10208. },
  10209. ]
  10210. ))
  10211. characterMakers.push(() => makeCharacter(
  10212. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10213. {
  10214. front: {
  10215. height: math.unit(5 + 5 / 12, "feet"),
  10216. weight: math.unit(150, "lb"),
  10217. name: "Front",
  10218. image: {
  10219. source: "./media/characters/joshii/front.svg",
  10220. extra: 765 / 653,
  10221. bottom: 51 / 816
  10222. }
  10223. },
  10224. foot: {
  10225. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10226. name: "Foot",
  10227. image: {
  10228. source: "./media/characters/joshii/foot.svg"
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Micro",
  10235. height: math.unit(2, "inches")
  10236. },
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(5 + 5 / 12, "feet")
  10240. },
  10241. {
  10242. name: "Macro",
  10243. height: math.unit(785, "feet"),
  10244. default: true
  10245. },
  10246. {
  10247. name: "Megamacro",
  10248. height: math.unit(24.5, "miles")
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(150, "lb"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/goddess-elizabeth/front.svg",
  10261. extra: 1800 / 1525,
  10262. bottom: 0.005
  10263. }
  10264. },
  10265. foot: {
  10266. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10267. name: "Foot",
  10268. image: {
  10269. source: "./media/characters/goddess-elizabeth/foot.svg"
  10270. }
  10271. },
  10272. mouth: {
  10273. height: math.unit(6, "feet"),
  10274. name: "Mouth",
  10275. image: {
  10276. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10277. }
  10278. },
  10279. },
  10280. [
  10281. {
  10282. name: "Micro",
  10283. height: math.unit(12, "feet")
  10284. },
  10285. {
  10286. name: "Normal",
  10287. height: math.unit(80, "miles"),
  10288. default: true
  10289. },
  10290. {
  10291. name: "Macro",
  10292. height: math.unit(15000, "parsecs")
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(5 + 9 / 12, "feet"),
  10301. weight: math.unit(144, "lb"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/kara/front.svg"
  10305. }
  10306. },
  10307. feet: {
  10308. height: math.unit(6 / 6.765, "feet"),
  10309. name: "Kara's Feet",
  10310. rename: true,
  10311. image: {
  10312. source: "./media/characters/kara/feet.svg"
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(5 + 9 / 12, "feet")
  10320. },
  10321. {
  10322. name: "Macro",
  10323. height: math.unit(174, "feet"),
  10324. default: true
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(18, "feet"),
  10333. weight: math.unit(4050, "lb"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/tyrone/front.svg",
  10337. extra: 2405 / 2270,
  10338. bottom: 182 / 2587
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(18, "feet"),
  10346. default: true
  10347. },
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(300, "feet")
  10351. },
  10352. {
  10353. name: "Megamacro",
  10354. height: math.unit(15, "km")
  10355. },
  10356. {
  10357. name: "Gigamacro",
  10358. height: math.unit(500, "km")
  10359. },
  10360. {
  10361. name: "Teramacro",
  10362. height: math.unit(0.5, "gigameters")
  10363. },
  10364. {
  10365. name: "Omnimacro",
  10366. height: math.unit(1e252, "yottauniverse")
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(7 + 8 / 12, "feet"),
  10375. weight: math.unit(120, "lb"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/danny/front.svg",
  10379. extra: 1490 / 1350
  10380. }
  10381. },
  10382. back: {
  10383. height: math.unit(7 + 8 / 12, "feet"),
  10384. weight: math.unit(120, "lb"),
  10385. name: "Back",
  10386. image: {
  10387. source: "./media/characters/danny/back.svg",
  10388. extra: 1490 / 1350
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Normal",
  10395. height: math.unit(7 + 8 / 12, "feet"),
  10396. default: true
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(3.5, "inches"),
  10405. weight: math.unit(19, "grams"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/mallow/front.svg",
  10409. extra: 471 / 431
  10410. }
  10411. },
  10412. back: {
  10413. height: math.unit(3.5, "inches"),
  10414. weight: math.unit(19, "grams"),
  10415. name: "Back",
  10416. image: {
  10417. source: "./media/characters/mallow/back.svg",
  10418. extra: 471 / 431
  10419. }
  10420. },
  10421. },
  10422. [
  10423. {
  10424. name: "Normal",
  10425. height: math.unit(3.5, "inches"),
  10426. default: true
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10432. {
  10433. front: {
  10434. height: math.unit(9, "feet"),
  10435. weight: math.unit(230, "kg"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/starry-aqua/front.svg"
  10439. }
  10440. },
  10441. back: {
  10442. height: math.unit(9, "feet"),
  10443. weight: math.unit(230, "kg"),
  10444. name: "Back",
  10445. image: {
  10446. source: "./media/characters/starry-aqua/back.svg"
  10447. }
  10448. },
  10449. hand: {
  10450. height: math.unit(9 * 0.1168, "feet"),
  10451. name: "Hand",
  10452. image: {
  10453. source: "./media/characters/starry-aqua/hand.svg"
  10454. }
  10455. },
  10456. foot: {
  10457. height: math.unit(9 * 0.18, "feet"),
  10458. name: "Foot",
  10459. image: {
  10460. source: "./media/characters/starry-aqua/foot.svg"
  10461. }
  10462. }
  10463. },
  10464. [
  10465. {
  10466. name: "Micro",
  10467. height: math.unit(3, "inches")
  10468. },
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(9, "feet")
  10472. },
  10473. {
  10474. name: "Macro",
  10475. height: math.unit(300, "feet"),
  10476. default: true
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(3200, "feet")
  10481. }
  10482. ]
  10483. ))
  10484. characterMakers.push(() => makeCharacter(
  10485. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10486. {
  10487. front: {
  10488. height: math.unit(15, "feet"),
  10489. weight: math.unit(5026, "lb"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/luka-towers/front.svg",
  10493. extra: 1269/1133,
  10494. bottom: 51/1320
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Normal",
  10501. height: math.unit(15, "feet"),
  10502. default: true
  10503. },
  10504. {
  10505. name: "Minimacro",
  10506. height: math.unit(25, "feet")
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(320, "feet")
  10511. },
  10512. {
  10513. name: "Megamacro",
  10514. height: math.unit(35000, "feet")
  10515. },
  10516. {
  10517. name: "Gigamacro",
  10518. height: math.unit(4000, "miles")
  10519. },
  10520. {
  10521. name: "Teramacro",
  10522. height: math.unit(15000, "miles")
  10523. },
  10524. ]
  10525. ))
  10526. characterMakers.push(() => makeCharacter(
  10527. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10528. {
  10529. front: {
  10530. height: math.unit(6, "feet"),
  10531. weight: math.unit(150, "lb"),
  10532. name: "Front",
  10533. image: {
  10534. source: "./media/characters/natalie-nightring/front.svg",
  10535. extra: 1,
  10536. bottom: 0.06
  10537. }
  10538. },
  10539. },
  10540. [
  10541. {
  10542. name: "Uh Oh",
  10543. height: math.unit(0.1, "mm")
  10544. },
  10545. {
  10546. name: "Small",
  10547. height: math.unit(3, "inches")
  10548. },
  10549. {
  10550. name: "Human Scale",
  10551. height: math.unit(6, "feet")
  10552. },
  10553. {
  10554. name: "Librarian",
  10555. height: math.unit(50, "feet"),
  10556. default: true
  10557. },
  10558. {
  10559. name: "Immense",
  10560. height: math.unit(200, "miles")
  10561. },
  10562. ]
  10563. ))
  10564. characterMakers.push(() => makeCharacter(
  10565. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10566. {
  10567. front: {
  10568. height: math.unit(6, "feet"),
  10569. weight: math.unit(180, "lbs"),
  10570. name: "Front",
  10571. image: {
  10572. source: "./media/characters/danni-rosie/front.svg",
  10573. extra: 1260 / 1128,
  10574. bottom: 0.022
  10575. }
  10576. },
  10577. },
  10578. [
  10579. {
  10580. name: "Micro",
  10581. height: math.unit(2, "inches"),
  10582. default: true
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10588. {
  10589. front: {
  10590. height: math.unit(5 + 9 / 12, "feet"),
  10591. weight: math.unit(220, "lb"),
  10592. name: "Front",
  10593. image: {
  10594. source: "./media/characters/samantha-kruse/front.svg",
  10595. extra: (985 / 935),
  10596. bottom: 0.03
  10597. }
  10598. },
  10599. frontUndressed: {
  10600. height: math.unit(5 + 9 / 12, "feet"),
  10601. weight: math.unit(220, "lb"),
  10602. name: "Front (Undressed)",
  10603. image: {
  10604. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10605. extra: (973 / 923),
  10606. bottom: 0.025
  10607. }
  10608. },
  10609. fat: {
  10610. height: math.unit(5 + 9 / 12, "feet"),
  10611. weight: math.unit(900, "lb"),
  10612. name: "Front (Fat)",
  10613. image: {
  10614. source: "./media/characters/samantha-kruse/fat.svg",
  10615. extra: 2688 / 2561
  10616. }
  10617. },
  10618. },
  10619. [
  10620. {
  10621. name: "Normal",
  10622. height: math.unit(5 + 9 / 12, "feet"),
  10623. default: true
  10624. }
  10625. ]
  10626. ))
  10627. characterMakers.push(() => makeCharacter(
  10628. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10629. {
  10630. back: {
  10631. height: math.unit(5 + 4 / 12, "feet"),
  10632. weight: math.unit(4963, "lb"),
  10633. name: "Back",
  10634. image: {
  10635. source: "./media/characters/amelia-rosie/back.svg",
  10636. extra: 1113 / 963,
  10637. bottom: 0.01
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Level 0",
  10644. height: math.unit(5 + 4 / 12, "feet")
  10645. },
  10646. {
  10647. name: "Level 1",
  10648. height: math.unit(164597, "feet"),
  10649. default: true
  10650. },
  10651. {
  10652. name: "Level 2",
  10653. height: math.unit(956243, "miles")
  10654. },
  10655. {
  10656. name: "Level 3",
  10657. height: math.unit(29421709423, "miles")
  10658. },
  10659. {
  10660. name: "Level 4",
  10661. height: math.unit(154, "lightyears")
  10662. },
  10663. {
  10664. name: "Level 5",
  10665. height: math.unit(4738272, "lightyears")
  10666. },
  10667. {
  10668. name: "Level 6",
  10669. height: math.unit(145787152896, "lightyears")
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10675. {
  10676. front: {
  10677. height: math.unit(5 + 11 / 12, "feet"),
  10678. weight: math.unit(65, "kg"),
  10679. name: "Front",
  10680. image: {
  10681. source: "./media/characters/rook-kitara/front.svg",
  10682. extra: 1347 / 1274,
  10683. bottom: 0.005
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Totally Unfair",
  10690. height: math.unit(1.8, "mm")
  10691. },
  10692. {
  10693. name: "Lap Rookie",
  10694. height: math.unit(1.4, "feet")
  10695. },
  10696. {
  10697. name: "Normal",
  10698. height: math.unit(5 + 11 / 12, "feet"),
  10699. default: true
  10700. },
  10701. {
  10702. name: "How Did This Happen",
  10703. height: math.unit(80, "miles")
  10704. }
  10705. ]
  10706. ))
  10707. characterMakers.push(() => makeCharacter(
  10708. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10709. {
  10710. front: {
  10711. height: math.unit(7, "feet"),
  10712. weight: math.unit(300, "lb"),
  10713. name: "Front",
  10714. image: {
  10715. source: "./media/characters/pisces/front.svg",
  10716. extra: 2255 / 2115,
  10717. bottom: 0.03
  10718. }
  10719. },
  10720. back: {
  10721. height: math.unit(7, "feet"),
  10722. weight: math.unit(300, "lb"),
  10723. name: "Back",
  10724. image: {
  10725. source: "./media/characters/pisces/back.svg",
  10726. extra: 2146 / 2055,
  10727. bottom: 0.04
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Normal",
  10734. height: math.unit(7, "feet"),
  10735. default: true
  10736. },
  10737. {
  10738. name: "Swimming Pool",
  10739. height: math.unit(12.2, "meters")
  10740. },
  10741. {
  10742. name: "Olympic Swimming Pool",
  10743. height: math.unit(56.3, "meters")
  10744. },
  10745. {
  10746. name: "Lake Superior",
  10747. height: math.unit(93900, "meters")
  10748. },
  10749. {
  10750. name: "Mediterranean Sea",
  10751. height: math.unit(644457, "meters")
  10752. },
  10753. {
  10754. name: "World's Oceans",
  10755. height: math.unit(4567491, "meters")
  10756. },
  10757. ]
  10758. ))
  10759. characterMakers.push(() => makeCharacter(
  10760. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10761. {
  10762. front: {
  10763. height: math.unit(2.3, "meters"),
  10764. weight: math.unit(120, "kg"),
  10765. name: "Front",
  10766. image: {
  10767. source: "./media/characters/zelas/front.svg"
  10768. }
  10769. },
  10770. side: {
  10771. height: math.unit(2.3, "meters"),
  10772. weight: math.unit(120, "kg"),
  10773. name: "Side",
  10774. image: {
  10775. source: "./media/characters/zelas/side.svg"
  10776. }
  10777. },
  10778. back: {
  10779. height: math.unit(2.3, "meters"),
  10780. weight: math.unit(120, "kg"),
  10781. name: "Back",
  10782. image: {
  10783. source: "./media/characters/zelas/back.svg"
  10784. }
  10785. },
  10786. foot: {
  10787. height: math.unit(1.116, "feet"),
  10788. name: "Foot",
  10789. image: {
  10790. source: "./media/characters/zelas/foot.svg"
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Normal",
  10797. height: math.unit(2.3, "meters")
  10798. },
  10799. {
  10800. name: "Macro",
  10801. height: math.unit(30, "meters"),
  10802. default: true
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10808. {
  10809. front: {
  10810. height: math.unit(1, "inch"),
  10811. weight: math.unit(0.21, "grams"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/talbot/front.svg",
  10815. extra: 594 / 544
  10816. }
  10817. },
  10818. },
  10819. [
  10820. {
  10821. name: "Micro",
  10822. height: math.unit(1, "inch"),
  10823. default: true
  10824. },
  10825. ]
  10826. ))
  10827. characterMakers.push(() => makeCharacter(
  10828. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10829. {
  10830. front: {
  10831. height: math.unit(3 + 3 / 12, "feet"),
  10832. weight: math.unit(51.8, "lb"),
  10833. name: "Front",
  10834. image: {
  10835. source: "./media/characters/fliss/front.svg",
  10836. extra: 840 / 640
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Teeny Tiny",
  10843. height: math.unit(1, "mm")
  10844. },
  10845. {
  10846. name: "Small",
  10847. height: math.unit(1, "inch"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "Standard Sylveon",
  10852. height: math.unit(3 + 3 / 12, "feet")
  10853. },
  10854. {
  10855. name: "Large Nuisance",
  10856. height: math.unit(33, "feet")
  10857. },
  10858. {
  10859. name: "City Filler",
  10860. height: math.unit(3000, "feet")
  10861. },
  10862. {
  10863. name: "New Horizon",
  10864. height: math.unit(6000, "miles")
  10865. },
  10866. ]
  10867. ))
  10868. characterMakers.push(() => makeCharacter(
  10869. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10870. {
  10871. front: {
  10872. height: math.unit(5, "cm"),
  10873. weight: math.unit(1.94, "g"),
  10874. name: "Front",
  10875. image: {
  10876. source: "./media/characters/fleta/front.svg",
  10877. extra: 835 / 803
  10878. }
  10879. },
  10880. back: {
  10881. height: math.unit(5, "cm"),
  10882. weight: math.unit(1.94, "g"),
  10883. name: "Back",
  10884. image: {
  10885. source: "./media/characters/fleta/back.svg",
  10886. extra: 835 / 803
  10887. }
  10888. },
  10889. },
  10890. [
  10891. {
  10892. name: "Micro",
  10893. height: math.unit(5, "cm"),
  10894. default: true
  10895. },
  10896. ]
  10897. ))
  10898. characterMakers.push(() => makeCharacter(
  10899. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10900. {
  10901. front: {
  10902. height: math.unit(6, "feet"),
  10903. weight: math.unit(225, "lb"),
  10904. name: "Front",
  10905. image: {
  10906. source: "./media/characters/dominic/front.svg",
  10907. extra: 1770 / 1620,
  10908. bottom: 0.025
  10909. }
  10910. },
  10911. back: {
  10912. height: math.unit(6, "feet"),
  10913. weight: math.unit(225, "lb"),
  10914. name: "Back",
  10915. image: {
  10916. source: "./media/characters/dominic/back.svg",
  10917. extra: 1745 / 1620,
  10918. bottom: 0.065
  10919. }
  10920. },
  10921. },
  10922. [
  10923. {
  10924. name: "Nano",
  10925. height: math.unit(0.1, "mm")
  10926. },
  10927. {
  10928. name: "Micro-",
  10929. height: math.unit(1, "mm")
  10930. },
  10931. {
  10932. name: "Micro",
  10933. height: math.unit(4, "inches")
  10934. },
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(6 + 4 / 12, "feet"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(115, "feet")
  10943. },
  10944. {
  10945. name: "Macro+",
  10946. height: math.unit(955, "feet")
  10947. },
  10948. {
  10949. name: "Megamacro",
  10950. height: math.unit(8990, "feet")
  10951. },
  10952. {
  10953. name: "Gigmacro",
  10954. height: math.unit(9310, "miles")
  10955. },
  10956. {
  10957. name: "Teramacro",
  10958. height: math.unit(1567005010, "miles")
  10959. },
  10960. {
  10961. name: "Examacro",
  10962. height: math.unit(1425, "parsecs")
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10968. {
  10969. front: {
  10970. height: math.unit(400, "feet"),
  10971. weight: math.unit(44444444, "lb"),
  10972. name: "Front",
  10973. image: {
  10974. source: "./media/characters/major-colonel/front.svg"
  10975. }
  10976. },
  10977. back: {
  10978. height: math.unit(400, "feet"),
  10979. weight: math.unit(44444444, "lb"),
  10980. name: "Back",
  10981. image: {
  10982. source: "./media/characters/major-colonel/back.svg"
  10983. }
  10984. },
  10985. },
  10986. [
  10987. {
  10988. name: "Macro",
  10989. height: math.unit(400, "feet"),
  10990. default: true
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10996. {
  10997. catFront: {
  10998. height: math.unit(6, "feet"),
  10999. weight: math.unit(120, "lb"),
  11000. name: "Front (Cat Side)",
  11001. image: {
  11002. source: "./media/characters/axel-lycan/cat-front.svg",
  11003. extra: 430 / 402,
  11004. bottom: 43 / 472.35
  11005. }
  11006. },
  11007. catBack: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(120, "lb"),
  11010. name: "Back (Cat Side)",
  11011. image: {
  11012. source: "./media/characters/axel-lycan/cat-back.svg",
  11013. extra: 447 / 419,
  11014. bottom: 23.3 / 469
  11015. }
  11016. },
  11017. wolfFront: {
  11018. height: math.unit(6, "feet"),
  11019. weight: math.unit(120, "lb"),
  11020. name: "Front (Wolf Side)",
  11021. image: {
  11022. source: "./media/characters/axel-lycan/wolf-front.svg",
  11023. extra: 485 / 456,
  11024. bottom: 19 / 504
  11025. }
  11026. },
  11027. wolfBack: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(120, "lb"),
  11030. name: "Back (Wolf Side)",
  11031. image: {
  11032. source: "./media/characters/axel-lycan/wolf-back.svg",
  11033. extra: 475 / 438,
  11034. bottom: 39.2 / 514
  11035. }
  11036. },
  11037. },
  11038. [
  11039. {
  11040. name: "Macro",
  11041. height: math.unit(1, "km"),
  11042. default: true
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(5 + 9 / 12, "feet"),
  11051. weight: math.unit(175, "lb"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/vanrel-hyena/front.svg",
  11055. extra: 1086 / 1010,
  11056. bottom: 0.04
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(5 + 9 / 12, "feet"),
  11064. default: true
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11070. {
  11071. front: {
  11072. height: math.unit(6, "feet"),
  11073. weight: math.unit(103, "lb"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/abbott-absol/front.svg",
  11077. extra: 765/694,
  11078. bottom: 47/812
  11079. }
  11080. },
  11081. },
  11082. [
  11083. {
  11084. name: "Megamicro",
  11085. height: math.unit(0.1, "mm")
  11086. },
  11087. {
  11088. name: "Micro",
  11089. height: math.unit(1, "inch")
  11090. },
  11091. {
  11092. name: "Normal",
  11093. height: math.unit(6, "feet"),
  11094. default: true
  11095. },
  11096. ]
  11097. ))
  11098. characterMakers.push(() => makeCharacter(
  11099. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11100. {
  11101. front: {
  11102. height: math.unit(6, "feet"),
  11103. weight: math.unit(264, "lb"),
  11104. name: "Front",
  11105. image: {
  11106. source: "./media/characters/hector/front.svg",
  11107. extra: 2280 / 2130,
  11108. bottom: 0.07
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Normal",
  11115. height: math.unit(12.25, "foot"),
  11116. default: true
  11117. },
  11118. {
  11119. name: "Macro",
  11120. height: math.unit(160, "feet")
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11126. {
  11127. front: {
  11128. height: math.unit(6, "feet"),
  11129. weight: math.unit(150, "lb"),
  11130. name: "Front",
  11131. image: {
  11132. source: "./media/characters/sal/front.svg",
  11133. extra: 1846 / 1699,
  11134. bottom: 0.04
  11135. }
  11136. },
  11137. },
  11138. [
  11139. {
  11140. name: "Megamacro",
  11141. height: math.unit(10, "miles"),
  11142. default: true
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11148. {
  11149. front: {
  11150. height: math.unit(3, "meters"),
  11151. weight: math.unit(450, "kg"),
  11152. name: "front",
  11153. image: {
  11154. source: "./media/characters/ranger/front.svg",
  11155. extra: 2401 / 2243,
  11156. bottom: 0.05
  11157. }
  11158. },
  11159. },
  11160. [
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(3, "meters"),
  11164. default: true
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(14, "feet"),
  11173. weight: math.unit(800, "kg"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/theresa/front.svg",
  11177. extra: 3575 / 3346,
  11178. bottom: 0.03
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Normal",
  11185. height: math.unit(14, "feet"),
  11186. default: true
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11192. {
  11193. front: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(3, "kg"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/ine/front.svg",
  11199. extra: 678 / 539,
  11200. bottom: 0.023
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(2.265, "feet"),
  11208. default: true
  11209. },
  11210. ]
  11211. ))
  11212. characterMakers.push(() => makeCharacter(
  11213. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11214. {
  11215. front: {
  11216. height: math.unit(5, "feet"),
  11217. weight: math.unit(30, "kg"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/vial/front.svg",
  11221. extra: 1365 / 1277,
  11222. bottom: 0.04
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Normal",
  11229. height: math.unit(5, "feet"),
  11230. default: true
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11236. {
  11237. side: {
  11238. height: math.unit(3.4, "meters"),
  11239. weight: math.unit(1000, "lb"),
  11240. name: "Side",
  11241. image: {
  11242. source: "./media/characters/rovoska/side.svg",
  11243. extra: 4403 / 1515
  11244. }
  11245. },
  11246. },
  11247. [
  11248. {
  11249. name: "Normal",
  11250. height: math.unit(3.4, "meters"),
  11251. default: true
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11257. {
  11258. front: {
  11259. height: math.unit(8, "feet"),
  11260. weight: math.unit(315, "lb"),
  11261. name: "Front",
  11262. image: {
  11263. source: "./media/characters/gunner-rotthbauer/front.svg"
  11264. }
  11265. },
  11266. back: {
  11267. height: math.unit(8, "feet"),
  11268. weight: math.unit(315, "lb"),
  11269. name: "Back",
  11270. image: {
  11271. source: "./media/characters/gunner-rotthbauer/back.svg"
  11272. }
  11273. },
  11274. },
  11275. [
  11276. {
  11277. name: "Micro",
  11278. height: math.unit(3.5, "inches")
  11279. },
  11280. {
  11281. name: "Normal",
  11282. height: math.unit(8, "feet"),
  11283. default: true
  11284. },
  11285. {
  11286. name: "Macro",
  11287. height: math.unit(250, "feet")
  11288. },
  11289. {
  11290. name: "Megamacro",
  11291. height: math.unit(1, "AU")
  11292. },
  11293. ]
  11294. ))
  11295. characterMakers.push(() => makeCharacter(
  11296. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11297. {
  11298. front: {
  11299. height: math.unit(5 + 5 / 12, "feet"),
  11300. weight: math.unit(140, "lb"),
  11301. name: "Front",
  11302. image: {
  11303. source: "./media/characters/allatia/front.svg",
  11304. extra: 1227 / 1180,
  11305. bottom: 0.027
  11306. }
  11307. },
  11308. },
  11309. [
  11310. {
  11311. name: "Normal",
  11312. height: math.unit(5 + 5 / 12, "feet")
  11313. },
  11314. {
  11315. name: "Macro",
  11316. height: math.unit(250, "feet"),
  11317. default: true
  11318. },
  11319. {
  11320. name: "Megamacro",
  11321. height: math.unit(8, "miles")
  11322. }
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11327. {
  11328. front: {
  11329. height: math.unit(6, "feet"),
  11330. weight: math.unit(120, "lb"),
  11331. name: "Front",
  11332. image: {
  11333. source: "./media/characters/tene/front.svg",
  11334. extra: 814/750,
  11335. bottom: 36/850
  11336. }
  11337. },
  11338. stomping: {
  11339. height: math.unit(2.025, "meters"),
  11340. weight: math.unit(120, "lb"),
  11341. name: "Stomping",
  11342. image: {
  11343. source: "./media/characters/tene/stomping.svg",
  11344. extra: 885/821,
  11345. bottom: 15/900
  11346. }
  11347. },
  11348. sitting: {
  11349. height: math.unit(1, "meter"),
  11350. weight: math.unit(120, "lb"),
  11351. name: "Sitting",
  11352. image: {
  11353. source: "./media/characters/tene/sitting.svg",
  11354. extra: 396/366,
  11355. bottom: 79/475
  11356. }
  11357. },
  11358. smiling: {
  11359. height: math.unit(1.2, "feet"),
  11360. name: "Smiling",
  11361. image: {
  11362. source: "./media/characters/tene/smiling.svg",
  11363. extra: 1364/1071,
  11364. bottom: 0/1364
  11365. }
  11366. },
  11367. smug: {
  11368. height: math.unit(1.3, "feet"),
  11369. name: "Smug",
  11370. image: {
  11371. source: "./media/characters/tene/smug.svg",
  11372. extra: 1323/1082,
  11373. bottom: 0/1323
  11374. }
  11375. },
  11376. feral: {
  11377. height: math.unit(3.9, "feet"),
  11378. weight: math.unit(250, "lb"),
  11379. name: "Feral",
  11380. image: {
  11381. source: "./media/characters/tene/feral.svg",
  11382. extra: 717 / 458,
  11383. bottom: 0.179
  11384. }
  11385. },
  11386. },
  11387. [
  11388. {
  11389. name: "Normal",
  11390. height: math.unit(6, "feet")
  11391. },
  11392. {
  11393. name: "Macro",
  11394. height: math.unit(300, "feet"),
  11395. default: true
  11396. },
  11397. {
  11398. name: "Megamacro",
  11399. height: math.unit(5, "miles")
  11400. },
  11401. ]
  11402. ))
  11403. characterMakers.push(() => makeCharacter(
  11404. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11405. {
  11406. side: {
  11407. height: math.unit(6, "feet"),
  11408. name: "Side",
  11409. image: {
  11410. source: "./media/characters/evander/side.svg",
  11411. extra: 877 / 477
  11412. }
  11413. },
  11414. },
  11415. [
  11416. {
  11417. name: "Normal",
  11418. height: math.unit(0.83, "meters"),
  11419. default: true
  11420. },
  11421. ]
  11422. ))
  11423. characterMakers.push(() => makeCharacter(
  11424. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11425. {
  11426. front: {
  11427. height: math.unit(12, "feet"),
  11428. weight: math.unit(1000, "lb"),
  11429. name: "Front",
  11430. image: {
  11431. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11432. extra: 1762 / 1611
  11433. }
  11434. },
  11435. back: {
  11436. height: math.unit(12, "feet"),
  11437. weight: math.unit(1000, "lb"),
  11438. name: "Back",
  11439. image: {
  11440. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11441. extra: 1762 / 1611
  11442. }
  11443. },
  11444. },
  11445. [
  11446. {
  11447. name: "Normal",
  11448. height: math.unit(12, "feet"),
  11449. default: true
  11450. },
  11451. {
  11452. name: "Kaiju",
  11453. height: math.unit(150, "feet")
  11454. },
  11455. ]
  11456. ))
  11457. characterMakers.push(() => makeCharacter(
  11458. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11459. {
  11460. front: {
  11461. height: math.unit(6, "feet"),
  11462. weight: math.unit(150, "lb"),
  11463. name: "Front",
  11464. image: {
  11465. source: "./media/characters/zero-alurus/front.svg"
  11466. }
  11467. },
  11468. back: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(150, "lb"),
  11471. name: "Back",
  11472. image: {
  11473. source: "./media/characters/zero-alurus/back.svg"
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(5 + 10 / 12, "feet")
  11481. },
  11482. {
  11483. name: "Macro",
  11484. height: math.unit(60, "feet"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Macro+",
  11489. height: math.unit(450, "feet")
  11490. },
  11491. ]
  11492. ))
  11493. characterMakers.push(() => makeCharacter(
  11494. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11495. {
  11496. front: {
  11497. height: math.unit(6, "feet"),
  11498. weight: math.unit(200, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/mega-shi/front.svg",
  11502. extra: 1279 / 1250,
  11503. bottom: 0.02
  11504. }
  11505. },
  11506. back: {
  11507. height: math.unit(6, "feet"),
  11508. weight: math.unit(200, "lb"),
  11509. name: "Back",
  11510. image: {
  11511. source: "./media/characters/mega-shi/back.svg",
  11512. extra: 1279 / 1250,
  11513. bottom: 0.02
  11514. }
  11515. },
  11516. },
  11517. [
  11518. {
  11519. name: "Micro",
  11520. height: math.unit(16 + 6 / 12, "feet")
  11521. },
  11522. {
  11523. name: "Third Dimension",
  11524. height: math.unit(40, "meters")
  11525. },
  11526. {
  11527. name: "Normal",
  11528. height: math.unit(660, "feet"),
  11529. default: true
  11530. },
  11531. {
  11532. name: "Megamacro",
  11533. height: math.unit(10, "miles")
  11534. },
  11535. {
  11536. name: "Planetary Launch",
  11537. height: math.unit(500, "miles")
  11538. },
  11539. {
  11540. name: "Interstellar",
  11541. height: math.unit(1e9, "miles")
  11542. },
  11543. {
  11544. name: "Leaving the Universe",
  11545. height: math.unit(1, "gigaparsec")
  11546. },
  11547. {
  11548. name: "Travelling Universes",
  11549. height: math.unit(30e15, "parsecs")
  11550. },
  11551. ]
  11552. ))
  11553. characterMakers.push(() => makeCharacter(
  11554. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11555. {
  11556. front: {
  11557. height: math.unit(5 + 4/12, "feet"),
  11558. weight: math.unit(120, "lb"),
  11559. name: "Front",
  11560. image: {
  11561. source: "./media/characters/odyssey/front.svg",
  11562. extra: 1747/1571,
  11563. bottom: 47/1794
  11564. }
  11565. },
  11566. side: {
  11567. height: math.unit(5.1, "feet"),
  11568. weight: math.unit(120, "lb"),
  11569. name: "Side",
  11570. image: {
  11571. source: "./media/characters/odyssey/side.svg",
  11572. extra: 1847/1619,
  11573. bottom: 47/1894
  11574. }
  11575. },
  11576. lounging: {
  11577. height: math.unit(1.464, "feet"),
  11578. weight: math.unit(120, "lb"),
  11579. name: "Lounging",
  11580. image: {
  11581. source: "./media/characters/odyssey/lounging.svg",
  11582. extra: 1235/837,
  11583. bottom: 551/1786
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Normal",
  11590. height: math.unit(5 + 4 / 12, "feet")
  11591. },
  11592. {
  11593. name: "Macro",
  11594. height: math.unit(1, "km")
  11595. },
  11596. {
  11597. name: "Megamacro",
  11598. height: math.unit(3000, "km")
  11599. },
  11600. {
  11601. name: "Gigamacro",
  11602. height: math.unit(1, "AU"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Omniversal",
  11607. height: math.unit(100e14, "lightyears")
  11608. },
  11609. ]
  11610. ))
  11611. characterMakers.push(() => makeCharacter(
  11612. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11613. {
  11614. front: {
  11615. height: math.unit(5 + 10/12, "feet"),
  11616. name: "Front",
  11617. image: {
  11618. source: "./media/characters/mekuto/front.svg",
  11619. extra: 875/835,
  11620. bottom: 46/921
  11621. }
  11622. },
  11623. },
  11624. [
  11625. {
  11626. name: "Minimicro",
  11627. height: math.unit(0.2, "inches")
  11628. },
  11629. {
  11630. name: "Micro",
  11631. height: math.unit(1.5, "inches")
  11632. },
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(5 + 10 / 12, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Minimacro",
  11640. height: math.unit(17 + 9 / 12, "feet")
  11641. },
  11642. {
  11643. name: "Macro",
  11644. height: math.unit(177.5, "feet")
  11645. },
  11646. {
  11647. name: "Megamacro",
  11648. height: math.unit(152, "miles")
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(6.5, "inches"),
  11657. weight: math.unit(13, "oz"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/dafydd-tomos/front.svg",
  11661. extra: 2990 / 2603,
  11662. bottom: 0.03
  11663. }
  11664. },
  11665. },
  11666. [
  11667. {
  11668. name: "Micro",
  11669. height: math.unit(6.5, "inches"),
  11670. default: true
  11671. },
  11672. ]
  11673. ))
  11674. characterMakers.push(() => makeCharacter(
  11675. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11676. {
  11677. front: {
  11678. height: math.unit(6, "feet"),
  11679. weight: math.unit(150, "lb"),
  11680. name: "Front",
  11681. image: {
  11682. source: "./media/characters/splinter/front.svg",
  11683. extra: 2990 / 2882,
  11684. bottom: 0.04
  11685. }
  11686. },
  11687. back: {
  11688. height: math.unit(6, "feet"),
  11689. weight: math.unit(150, "lb"),
  11690. name: "Back",
  11691. image: {
  11692. source: "./media/characters/splinter/back.svg",
  11693. extra: 2990 / 2882,
  11694. bottom: 0.04
  11695. }
  11696. },
  11697. },
  11698. [
  11699. {
  11700. name: "Normal",
  11701. height: math.unit(6, "feet")
  11702. },
  11703. {
  11704. name: "Macro",
  11705. height: math.unit(230, "meters"),
  11706. default: true
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11712. {
  11713. front: {
  11714. height: math.unit(4 + 10 / 12, "feet"),
  11715. weight: math.unit(480, "lb"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/snow-gabumon/front.svg",
  11719. extra: 1140 / 963,
  11720. bottom: 0.058
  11721. }
  11722. },
  11723. back: {
  11724. height: math.unit(4 + 10 / 12, "feet"),
  11725. weight: math.unit(480, "lb"),
  11726. name: "Back",
  11727. image: {
  11728. source: "./media/characters/snow-gabumon/back.svg",
  11729. extra: 1115 / 962,
  11730. bottom: 0.041
  11731. }
  11732. },
  11733. frontUndresed: {
  11734. height: math.unit(4 + 10 / 12, "feet"),
  11735. weight: math.unit(480, "lb"),
  11736. name: "Front (Undressed)",
  11737. image: {
  11738. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11739. extra: 1061 / 960,
  11740. bottom: 0.045
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "Micro",
  11747. height: math.unit(1, "inch")
  11748. },
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(4 + 10 / 12, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Macro",
  11756. height: math.unit(200, "feet")
  11757. },
  11758. {
  11759. name: "Megamacro",
  11760. height: math.unit(120, "miles")
  11761. },
  11762. {
  11763. name: "Gigamacro",
  11764. height: math.unit(9800, "miles")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11770. {
  11771. front: {
  11772. height: math.unit(1.7, "meters"),
  11773. weight: math.unit(140, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/moody/front.svg",
  11777. extra: 3226 / 3007,
  11778. bottom: 0.087
  11779. }
  11780. },
  11781. },
  11782. [
  11783. {
  11784. name: "Micro",
  11785. height: math.unit(1, "mm")
  11786. },
  11787. {
  11788. name: "Normal",
  11789. height: math.unit(1.7, "meters"),
  11790. default: true
  11791. },
  11792. {
  11793. name: "Macro",
  11794. height: math.unit(80, "meters")
  11795. },
  11796. {
  11797. name: "Macro+",
  11798. height: math.unit(500, "meters")
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11804. {
  11805. front: {
  11806. height: math.unit(6, "feet"),
  11807. weight: math.unit(150, "lb"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/zyas/front.svg",
  11811. extra: 1180 / 1120,
  11812. bottom: 0.045
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Normal",
  11819. height: math.unit(10, "feet"),
  11820. default: true
  11821. },
  11822. {
  11823. name: "Macro",
  11824. height: math.unit(500, "feet")
  11825. },
  11826. {
  11827. name: "Megamacro",
  11828. height: math.unit(5, "miles")
  11829. },
  11830. {
  11831. name: "Teramacro",
  11832. height: math.unit(150000, "miles")
  11833. },
  11834. ]
  11835. ))
  11836. characterMakers.push(() => makeCharacter(
  11837. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11838. {
  11839. front: {
  11840. height: math.unit(6, "feet"),
  11841. weight: math.unit(150, "lb"),
  11842. name: "Front",
  11843. image: {
  11844. source: "./media/characters/cuon/front.svg",
  11845. extra: 1390 / 1320,
  11846. bottom: 0.008
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Micro",
  11853. height: math.unit(3, "inches")
  11854. },
  11855. {
  11856. name: "Normal",
  11857. height: math.unit(18 + 9 / 12, "feet"),
  11858. default: true
  11859. },
  11860. {
  11861. name: "Macro",
  11862. height: math.unit(360, "feet")
  11863. },
  11864. {
  11865. name: "Megamacro",
  11866. height: math.unit(360, "miles")
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(2.4, "meters"),
  11875. weight: math.unit(70, "kg"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/nyanuxk/front.svg",
  11879. extra: 1172 / 1084,
  11880. bottom: 0.065
  11881. }
  11882. },
  11883. side: {
  11884. height: math.unit(2.4, "meters"),
  11885. weight: math.unit(70, "kg"),
  11886. name: "Side",
  11887. image: {
  11888. source: "./media/characters/nyanuxk/side.svg",
  11889. extra: 1190 / 1132,
  11890. bottom: 0.007
  11891. }
  11892. },
  11893. back: {
  11894. height: math.unit(2.4, "meters"),
  11895. weight: math.unit(70, "kg"),
  11896. name: "Back",
  11897. image: {
  11898. source: "./media/characters/nyanuxk/back.svg",
  11899. extra: 1200 / 1141,
  11900. bottom: 0.015
  11901. }
  11902. },
  11903. foot: {
  11904. height: math.unit(0.52, "meters"),
  11905. name: "Foot",
  11906. image: {
  11907. source: "./media/characters/nyanuxk/foot.svg"
  11908. }
  11909. },
  11910. },
  11911. [
  11912. {
  11913. name: "Micro",
  11914. height: math.unit(2, "cm")
  11915. },
  11916. {
  11917. name: "Normal",
  11918. height: math.unit(2.4, "meters"),
  11919. default: true
  11920. },
  11921. {
  11922. name: "Smaller Macro",
  11923. height: math.unit(120, "meters")
  11924. },
  11925. {
  11926. name: "Bigger Macro",
  11927. height: math.unit(1.2, "km")
  11928. },
  11929. {
  11930. name: "Megamacro",
  11931. height: math.unit(15, "kilometers")
  11932. },
  11933. {
  11934. name: "Gigamacro",
  11935. height: math.unit(2000, "km")
  11936. },
  11937. {
  11938. name: "Teramacro",
  11939. height: math.unit(500000, "km")
  11940. },
  11941. ]
  11942. ))
  11943. characterMakers.push(() => makeCharacter(
  11944. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11945. {
  11946. side: {
  11947. height: math.unit(6, "feet"),
  11948. name: "Side",
  11949. image: {
  11950. source: "./media/characters/ailbhe/side.svg",
  11951. extra: 757 / 464,
  11952. bottom: 0.041
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Normal",
  11959. height: math.unit(1.07, "meters"),
  11960. default: true
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(6, "feet"),
  11969. weight: math.unit(120, "kg"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/zevulfius/front.svg",
  11973. extra: 965 / 903
  11974. }
  11975. },
  11976. side: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(120, "kg"),
  11979. name: "Side",
  11980. image: {
  11981. source: "./media/characters/zevulfius/side.svg",
  11982. extra: 939 / 900
  11983. }
  11984. },
  11985. back: {
  11986. height: math.unit(6, "feet"),
  11987. weight: math.unit(120, "kg"),
  11988. name: "Back",
  11989. image: {
  11990. source: "./media/characters/zevulfius/back.svg",
  11991. extra: 918 / 854,
  11992. bottom: 0.005
  11993. }
  11994. },
  11995. foot: {
  11996. height: math.unit(6 / 3.72, "feet"),
  11997. name: "Foot",
  11998. image: {
  11999. source: "./media/characters/zevulfius/foot.svg"
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Macro",
  12006. height: math.unit(750, "meters")
  12007. },
  12008. {
  12009. name: "Megamacro",
  12010. height: math.unit(20, "km"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Gigamacro",
  12015. height: math.unit(2000, "km")
  12016. },
  12017. {
  12018. name: "Teramacro",
  12019. height: math.unit(250000, "km")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(100, "feet"),
  12028. weight: math.unit(350, "kg"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/rikes/front.svg",
  12032. extra: 1565 / 1483,
  12033. bottom: 0.017
  12034. }
  12035. },
  12036. },
  12037. [
  12038. {
  12039. name: "Macro",
  12040. height: math.unit(100, "feet"),
  12041. default: true
  12042. },
  12043. ]
  12044. ))
  12045. characterMakers.push(() => makeCharacter(
  12046. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12047. {
  12048. front: {
  12049. height: math.unit(8, "feet"),
  12050. weight: math.unit(356, "lb"),
  12051. name: "Front",
  12052. image: {
  12053. source: "./media/characters/adam-silver-mane/front.svg",
  12054. extra: 1036/937,
  12055. bottom: 63/1099
  12056. }
  12057. },
  12058. side: {
  12059. height: math.unit(8, "feet"),
  12060. weight: math.unit(356, "lb"),
  12061. name: "Side",
  12062. image: {
  12063. source: "./media/characters/adam-silver-mane/side.svg",
  12064. extra: 997/901,
  12065. bottom: 59/1056
  12066. }
  12067. },
  12068. frontNsfw: {
  12069. height: math.unit(8, "feet"),
  12070. weight: math.unit(356, "lb"),
  12071. name: "Front (NSFW)",
  12072. image: {
  12073. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12074. extra: 1036/937,
  12075. bottom: 63/1099
  12076. }
  12077. },
  12078. sideNsfw: {
  12079. height: math.unit(8, "feet"),
  12080. weight: math.unit(356, "lb"),
  12081. name: "Side (NSFW)",
  12082. image: {
  12083. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12084. extra: 997/901,
  12085. bottom: 59/1056
  12086. }
  12087. },
  12088. dick: {
  12089. height: math.unit(2.1, "feet"),
  12090. name: "Dick",
  12091. image: {
  12092. source: "./media/characters/adam-silver-mane/dick.svg"
  12093. }
  12094. },
  12095. taur: {
  12096. height: math.unit(16, "feet"),
  12097. weight: math.unit(1500, "kg"),
  12098. name: "Taur",
  12099. image: {
  12100. source: "./media/characters/adam-silver-mane/taur.svg",
  12101. extra: 1713 / 1571,
  12102. bottom: 0.01
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Normal",
  12109. height: math.unit(8, "feet")
  12110. },
  12111. {
  12112. name: "Minimacro",
  12113. height: math.unit(80, "feet")
  12114. },
  12115. {
  12116. name: "MDA",
  12117. height: math.unit(80, "meters")
  12118. },
  12119. {
  12120. name: "Macro",
  12121. height: math.unit(800, "feet"),
  12122. default: true
  12123. },
  12124. {
  12125. name: "Megamacro",
  12126. height: math.unit(8000, "feet")
  12127. },
  12128. {
  12129. name: "Gigamacro",
  12130. height: math.unit(800, "miles")
  12131. },
  12132. {
  12133. name: "Teramacro",
  12134. height: math.unit(80000, "miles")
  12135. },
  12136. {
  12137. name: "Celestial",
  12138. height: math.unit(8e6, "miles")
  12139. },
  12140. {
  12141. name: "Star Dragon",
  12142. height: math.unit(800000, "parsecs")
  12143. },
  12144. {
  12145. name: "Godly",
  12146. height: math.unit(800, "teraparsecs")
  12147. },
  12148. ]
  12149. ))
  12150. characterMakers.push(() => makeCharacter(
  12151. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12152. {
  12153. front: {
  12154. height: math.unit(6, "feet"),
  12155. weight: math.unit(150, "lb"),
  12156. name: "Front",
  12157. image: {
  12158. source: "./media/characters/ky'owin/front.svg",
  12159. extra: 3862/3053,
  12160. bottom: 74/3936
  12161. }
  12162. },
  12163. },
  12164. [
  12165. {
  12166. name: "Normal",
  12167. height: math.unit(6 + 8 / 12, "feet")
  12168. },
  12169. {
  12170. name: "Large",
  12171. height: math.unit(68, "feet")
  12172. },
  12173. {
  12174. name: "Macro",
  12175. height: math.unit(132, "feet")
  12176. },
  12177. {
  12178. name: "Macro+",
  12179. height: math.unit(340, "feet")
  12180. },
  12181. {
  12182. name: "Macro++",
  12183. height: math.unit(680, "feet"),
  12184. default: true
  12185. },
  12186. {
  12187. name: "Megamacro",
  12188. height: math.unit(1, "mile")
  12189. },
  12190. {
  12191. name: "Megamacro+",
  12192. height: math.unit(10, "miles")
  12193. },
  12194. ]
  12195. ))
  12196. characterMakers.push(() => makeCharacter(
  12197. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12198. {
  12199. front: {
  12200. height: math.unit(4, "feet"),
  12201. weight: math.unit(50, "lb"),
  12202. name: "Front",
  12203. image: {
  12204. source: "./media/characters/mal/front.svg",
  12205. extra: 785 / 724,
  12206. bottom: 0.07
  12207. }
  12208. },
  12209. },
  12210. [
  12211. {
  12212. name: "Micro",
  12213. height: math.unit(4, "inches")
  12214. },
  12215. {
  12216. name: "Normal",
  12217. height: math.unit(4, "feet"),
  12218. default: true
  12219. },
  12220. {
  12221. name: "Macro",
  12222. height: math.unit(200, "feet")
  12223. },
  12224. ]
  12225. ))
  12226. characterMakers.push(() => makeCharacter(
  12227. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12228. {
  12229. front: {
  12230. height: math.unit(6, "feet"),
  12231. weight: math.unit(150, "lb"),
  12232. name: "Front",
  12233. image: {
  12234. source: "./media/characters/jordan-deware/front.svg",
  12235. extra: 1191 / 1012
  12236. }
  12237. },
  12238. },
  12239. [
  12240. {
  12241. name: "Nano",
  12242. height: math.unit(0.01, "mm")
  12243. },
  12244. {
  12245. name: "Minimicro",
  12246. height: math.unit(1, "mm")
  12247. },
  12248. {
  12249. name: "Micro",
  12250. height: math.unit(0.5, "inches")
  12251. },
  12252. {
  12253. name: "Normal",
  12254. height: math.unit(4, "feet"),
  12255. default: true
  12256. },
  12257. {
  12258. name: "Minimacro",
  12259. height: math.unit(40, "meters")
  12260. },
  12261. {
  12262. name: "Small Macro",
  12263. height: math.unit(400, "meters")
  12264. },
  12265. {
  12266. name: "Macro",
  12267. height: math.unit(4, "miles")
  12268. },
  12269. {
  12270. name: "Megamacro",
  12271. height: math.unit(40, "miles")
  12272. },
  12273. {
  12274. name: "Megamacro+",
  12275. height: math.unit(400, "miles")
  12276. },
  12277. {
  12278. name: "Gigamacro",
  12279. height: math.unit(400000, "miles")
  12280. },
  12281. ]
  12282. ))
  12283. characterMakers.push(() => makeCharacter(
  12284. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12285. {
  12286. side: {
  12287. height: math.unit(6, "feet"),
  12288. weight: math.unit(150, "lb"),
  12289. name: "Side",
  12290. image: {
  12291. source: "./media/characters/kimiko/side.svg",
  12292. extra: 600 / 358
  12293. }
  12294. },
  12295. },
  12296. [
  12297. {
  12298. name: "Normal",
  12299. height: math.unit(15, "feet"),
  12300. default: true
  12301. },
  12302. {
  12303. name: "Macro",
  12304. height: math.unit(220, "feet")
  12305. },
  12306. {
  12307. name: "Macro+",
  12308. height: math.unit(1450, "feet")
  12309. },
  12310. {
  12311. name: "Megamacro",
  12312. height: math.unit(11500, "feet")
  12313. },
  12314. {
  12315. name: "Gigamacro",
  12316. height: math.unit(9500, "miles")
  12317. },
  12318. {
  12319. name: "Teramacro",
  12320. height: math.unit(2208005005, "miles")
  12321. },
  12322. {
  12323. name: "Examacro",
  12324. height: math.unit(2750, "parsecs")
  12325. },
  12326. {
  12327. name: "Zettamacro",
  12328. height: math.unit(101500, "parsecs")
  12329. },
  12330. ]
  12331. ))
  12332. characterMakers.push(() => makeCharacter(
  12333. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12334. {
  12335. front: {
  12336. height: math.unit(6, "feet"),
  12337. weight: math.unit(70, "kg"),
  12338. name: "Front",
  12339. image: {
  12340. source: "./media/characters/andrew-sleepy/front.svg"
  12341. }
  12342. },
  12343. side: {
  12344. height: math.unit(6, "feet"),
  12345. weight: math.unit(70, "kg"),
  12346. name: "Side",
  12347. image: {
  12348. source: "./media/characters/andrew-sleepy/side.svg"
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Micro",
  12355. height: math.unit(1, "mm"),
  12356. default: true
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12362. {
  12363. front: {
  12364. height: math.unit(6, "feet"),
  12365. weight: math.unit(150, "lb"),
  12366. name: "Front",
  12367. image: {
  12368. source: "./media/characters/judio/front.svg",
  12369. extra: 1258 / 1110
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Normal",
  12376. height: math.unit(5 + 6 / 12, "feet")
  12377. },
  12378. {
  12379. name: "Macro",
  12380. height: math.unit(1000, "feet"),
  12381. default: true
  12382. },
  12383. {
  12384. name: "Megamacro",
  12385. height: math.unit(10, "miles")
  12386. },
  12387. ]
  12388. ))
  12389. characterMakers.push(() => makeCharacter(
  12390. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12391. {
  12392. frontDressed: {
  12393. height: math.unit(6, "feet"),
  12394. weight: math.unit(68, "kg"),
  12395. name: "Front (Dressed)",
  12396. image: {
  12397. source: "./media/characters/nomaxice/front-dressed.svg",
  12398. extra: 1137/824,
  12399. bottom: 74/1211
  12400. }
  12401. },
  12402. frontShorts: {
  12403. height: math.unit(6, "feet"),
  12404. weight: math.unit(68, "kg"),
  12405. name: "Front (Shorts)",
  12406. image: {
  12407. source: "./media/characters/nomaxice/front-shorts.svg",
  12408. extra: 1137/824,
  12409. bottom: 74/1211
  12410. }
  12411. },
  12412. back: {
  12413. height: math.unit(6, "feet"),
  12414. weight: math.unit(68, "kg"),
  12415. name: "Back",
  12416. image: {
  12417. source: "./media/characters/nomaxice/back.svg",
  12418. extra: 822/786,
  12419. bottom: 39/861
  12420. }
  12421. },
  12422. hand: {
  12423. height: math.unit(0.565, "feet"),
  12424. name: "Hand",
  12425. image: {
  12426. source: "./media/characters/nomaxice/hand.svg"
  12427. }
  12428. },
  12429. foot: {
  12430. height: math.unit(1, "feet"),
  12431. name: "Foot",
  12432. image: {
  12433. source: "./media/characters/nomaxice/foot.svg"
  12434. }
  12435. },
  12436. },
  12437. [
  12438. {
  12439. name: "Micro",
  12440. height: math.unit(8, "cm")
  12441. },
  12442. {
  12443. name: "Norm",
  12444. height: math.unit(1.82, "m")
  12445. },
  12446. {
  12447. name: "Norm+",
  12448. height: math.unit(8.8, "feet"),
  12449. default: true
  12450. },
  12451. {
  12452. name: "Big",
  12453. height: math.unit(8, "meters")
  12454. },
  12455. {
  12456. name: "Macro",
  12457. height: math.unit(18, "meters")
  12458. },
  12459. {
  12460. name: "Macro+",
  12461. height: math.unit(88, "meters")
  12462. },
  12463. ]
  12464. ))
  12465. characterMakers.push(() => makeCharacter(
  12466. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12467. {
  12468. front: {
  12469. height: math.unit(12, "feet"),
  12470. weight: math.unit(1.5, "tons"),
  12471. name: "Front",
  12472. image: {
  12473. source: "./media/characters/dydros/front.svg",
  12474. extra: 863 / 800,
  12475. bottom: 0.015
  12476. }
  12477. },
  12478. back: {
  12479. height: math.unit(12, "feet"),
  12480. weight: math.unit(1.5, "tons"),
  12481. name: "Back",
  12482. image: {
  12483. source: "./media/characters/dydros/back.svg",
  12484. extra: 900 / 843,
  12485. bottom: 0.005
  12486. }
  12487. },
  12488. },
  12489. [
  12490. {
  12491. name: "Normal",
  12492. height: math.unit(12, "feet"),
  12493. default: true
  12494. },
  12495. ]
  12496. ))
  12497. characterMakers.push(() => makeCharacter(
  12498. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12499. {
  12500. front: {
  12501. height: math.unit(6, "feet"),
  12502. weight: math.unit(100, "kg"),
  12503. name: "Front",
  12504. image: {
  12505. source: "./media/characters/riggi/front.svg",
  12506. extra: 5787 / 5303
  12507. }
  12508. },
  12509. hyper: {
  12510. height: math.unit(6 * 5 / 3, "feet"),
  12511. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12512. name: "Hyper",
  12513. image: {
  12514. source: "./media/characters/riggi/hyper.svg",
  12515. extra: 3595 / 3485
  12516. }
  12517. },
  12518. },
  12519. [
  12520. {
  12521. name: "Small Macro",
  12522. height: math.unit(50, "feet")
  12523. },
  12524. {
  12525. name: "Default",
  12526. height: math.unit(200, "feet"),
  12527. default: true
  12528. },
  12529. {
  12530. name: "Loom",
  12531. height: math.unit(10000, "feet")
  12532. },
  12533. {
  12534. name: "Cruising Altitude",
  12535. height: math.unit(30000, "feet")
  12536. },
  12537. {
  12538. name: "Megamacro",
  12539. height: math.unit(100, "miles")
  12540. },
  12541. {
  12542. name: "Continent Sized",
  12543. height: math.unit(2800, "miles")
  12544. },
  12545. {
  12546. name: "Earth Sized",
  12547. height: math.unit(8000, "miles")
  12548. },
  12549. ]
  12550. ))
  12551. characterMakers.push(() => makeCharacter(
  12552. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12553. {
  12554. front: {
  12555. height: math.unit(6, "feet"),
  12556. weight: math.unit(250, "lb"),
  12557. name: "Front",
  12558. image: {
  12559. source: "./media/characters/alexi/front.svg",
  12560. extra: 3483 / 3291,
  12561. bottom: 0.04
  12562. }
  12563. },
  12564. back: {
  12565. height: math.unit(6, "feet"),
  12566. weight: math.unit(250, "lb"),
  12567. name: "Back",
  12568. image: {
  12569. source: "./media/characters/alexi/back.svg",
  12570. extra: 3533 / 3356,
  12571. bottom: 0.021
  12572. }
  12573. },
  12574. frontTransforming: {
  12575. height: math.unit(8.58, "feet"),
  12576. weight: math.unit(1300, "lb"),
  12577. name: "Transforming",
  12578. image: {
  12579. source: "./media/characters/alexi/front-transforming.svg",
  12580. extra: 437 / 409,
  12581. bottom: 19 / 458.66
  12582. }
  12583. },
  12584. frontTransformed: {
  12585. height: math.unit(12.5, "feet"),
  12586. weight: math.unit(4000, "lb"),
  12587. name: "Transformed",
  12588. image: {
  12589. source: "./media/characters/alexi/front-transformed.svg",
  12590. extra: 639 / 614,
  12591. bottom: 30.55 / 671
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Normal",
  12598. height: math.unit(14, "feet"),
  12599. default: true
  12600. },
  12601. {
  12602. name: "Minimacro",
  12603. height: math.unit(30, "meters")
  12604. },
  12605. {
  12606. name: "Macro",
  12607. height: math.unit(500, "meters")
  12608. },
  12609. {
  12610. name: "Megamacro",
  12611. height: math.unit(9000, "km")
  12612. },
  12613. {
  12614. name: "Teramacro",
  12615. height: math.unit(384000, "km")
  12616. },
  12617. ]
  12618. ))
  12619. characterMakers.push(() => makeCharacter(
  12620. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12621. {
  12622. front: {
  12623. height: math.unit(6, "feet"),
  12624. weight: math.unit(150, "lb"),
  12625. name: "Front",
  12626. image: {
  12627. source: "./media/characters/kayroo/front.svg",
  12628. extra: 1153 / 1038,
  12629. bottom: 0.06
  12630. }
  12631. },
  12632. foot: {
  12633. height: math.unit(6, "feet"),
  12634. weight: math.unit(150, "lb"),
  12635. name: "Foot",
  12636. image: {
  12637. source: "./media/characters/kayroo/foot.svg"
  12638. }
  12639. },
  12640. },
  12641. [
  12642. {
  12643. name: "Normal",
  12644. height: math.unit(8, "feet"),
  12645. default: true
  12646. },
  12647. {
  12648. name: "Minimacro",
  12649. height: math.unit(250, "feet")
  12650. },
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(2800, "feet")
  12654. },
  12655. {
  12656. name: "Megamacro",
  12657. height: math.unit(5200, "feet")
  12658. },
  12659. {
  12660. name: "Gigamacro",
  12661. height: math.unit(27000, "feet")
  12662. },
  12663. {
  12664. name: "Omega",
  12665. height: math.unit(45000, "feet")
  12666. },
  12667. ]
  12668. ))
  12669. characterMakers.push(() => makeCharacter(
  12670. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12671. {
  12672. front: {
  12673. height: math.unit(18, "feet"),
  12674. weight: math.unit(5800, "lb"),
  12675. name: "Front",
  12676. image: {
  12677. source: "./media/characters/rhys/front.svg",
  12678. extra: 3386 / 3090,
  12679. bottom: 0.07
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Normal",
  12686. height: math.unit(18, "feet"),
  12687. default: true
  12688. },
  12689. {
  12690. name: "Working Size",
  12691. height: math.unit(200, "feet")
  12692. },
  12693. {
  12694. name: "Demolition Size",
  12695. height: math.unit(2000, "feet")
  12696. },
  12697. {
  12698. name: "Maximum Licensed Size",
  12699. height: math.unit(5, "miles")
  12700. },
  12701. {
  12702. name: "Maximum Observed Size",
  12703. height: math.unit(10, "yottameters")
  12704. },
  12705. ]
  12706. ))
  12707. characterMakers.push(() => makeCharacter(
  12708. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12709. {
  12710. front: {
  12711. height: math.unit(6, "feet"),
  12712. weight: math.unit(250, "lb"),
  12713. name: "Front",
  12714. image: {
  12715. source: "./media/characters/toto/front.svg",
  12716. extra: 527 / 479,
  12717. bottom: 0.05
  12718. }
  12719. },
  12720. },
  12721. [
  12722. {
  12723. name: "Micro",
  12724. height: math.unit(3, "feet")
  12725. },
  12726. {
  12727. name: "Normal",
  12728. height: math.unit(10, "feet")
  12729. },
  12730. {
  12731. name: "Macro",
  12732. height: math.unit(150, "feet"),
  12733. default: true
  12734. },
  12735. {
  12736. name: "Megamacro",
  12737. height: math.unit(1200, "feet")
  12738. },
  12739. ]
  12740. ))
  12741. characterMakers.push(() => makeCharacter(
  12742. { name: "King", species: ["lion"], tags: ["anthro"] },
  12743. {
  12744. back: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(150, "lb"),
  12747. name: "Back",
  12748. image: {
  12749. source: "./media/characters/king/back.svg"
  12750. }
  12751. },
  12752. },
  12753. [
  12754. {
  12755. name: "Micro",
  12756. height: math.unit(2, "inches")
  12757. },
  12758. {
  12759. name: "Normal",
  12760. height: math.unit(8, "feet")
  12761. },
  12762. {
  12763. name: "Macro",
  12764. height: math.unit(200, "feet"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Megamacro",
  12769. height: math.unit(50, "miles")
  12770. },
  12771. ]
  12772. ))
  12773. characterMakers.push(() => makeCharacter(
  12774. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12775. {
  12776. front: {
  12777. height: math.unit(11, "feet"),
  12778. weight: math.unit(1400, "lb"),
  12779. name: "Front",
  12780. image: {
  12781. source: "./media/characters/cordite/front.svg",
  12782. extra: 1919/1827,
  12783. bottom: 40/1959
  12784. }
  12785. },
  12786. side: {
  12787. height: math.unit(11, "feet"),
  12788. weight: math.unit(1400, "lb"),
  12789. name: "Side",
  12790. image: {
  12791. source: "./media/characters/cordite/side.svg",
  12792. extra: 1908/1793,
  12793. bottom: 38/1946
  12794. }
  12795. },
  12796. back: {
  12797. height: math.unit(11, "feet"),
  12798. weight: math.unit(1400, "lb"),
  12799. name: "Back",
  12800. image: {
  12801. source: "./media/characters/cordite/back.svg",
  12802. extra: 1938/1837,
  12803. bottom: 10/1948
  12804. }
  12805. },
  12806. feral: {
  12807. height: math.unit(2, "feet"),
  12808. weight: math.unit(90, "lb"),
  12809. name: "Feral",
  12810. image: {
  12811. source: "./media/characters/cordite/feral.svg",
  12812. extra: 1260 / 755,
  12813. bottom: 0.05
  12814. }
  12815. },
  12816. },
  12817. [
  12818. {
  12819. name: "Normal",
  12820. height: math.unit(11, "feet"),
  12821. default: true
  12822. },
  12823. ]
  12824. ))
  12825. characterMakers.push(() => makeCharacter(
  12826. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12827. {
  12828. front: {
  12829. height: math.unit(6, "feet"),
  12830. weight: math.unit(150, "lb"),
  12831. name: "Front",
  12832. image: {
  12833. source: "./media/characters/pianostrong/front.svg",
  12834. extra: 6577 / 6254,
  12835. bottom: 0.02
  12836. }
  12837. },
  12838. side: {
  12839. height: math.unit(6, "feet"),
  12840. weight: math.unit(150, "lb"),
  12841. name: "Side",
  12842. image: {
  12843. source: "./media/characters/pianostrong/side.svg",
  12844. extra: 6106 / 5730
  12845. }
  12846. },
  12847. back: {
  12848. height: math.unit(6, "feet"),
  12849. weight: math.unit(150, "lb"),
  12850. name: "Back",
  12851. image: {
  12852. source: "./media/characters/pianostrong/back.svg",
  12853. extra: 6085 / 5733,
  12854. bottom: 0.01
  12855. }
  12856. },
  12857. },
  12858. [
  12859. {
  12860. name: "Macro",
  12861. height: math.unit(100, "feet")
  12862. },
  12863. {
  12864. name: "Macro+",
  12865. height: math.unit(300, "feet"),
  12866. default: true
  12867. },
  12868. {
  12869. name: "Macro++",
  12870. height: math.unit(1000, "feet")
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(6, "feet"),
  12879. weight: math.unit(150, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/kona/front.svg",
  12883. extra: 2960 / 2629,
  12884. bottom: 0.005
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Normal",
  12891. height: math.unit(11 + 8 / 12, "feet")
  12892. },
  12893. {
  12894. name: "Macro",
  12895. height: math.unit(850, "feet"),
  12896. default: true
  12897. },
  12898. {
  12899. name: "Macro+",
  12900. height: math.unit(1.5, "km"),
  12901. default: true
  12902. },
  12903. {
  12904. name: "Megamacro",
  12905. height: math.unit(80, "miles")
  12906. },
  12907. {
  12908. name: "Gigamacro",
  12909. height: math.unit(3500, "miles")
  12910. },
  12911. ]
  12912. ))
  12913. characterMakers.push(() => makeCharacter(
  12914. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12915. {
  12916. side: {
  12917. height: math.unit(1.9, "meters"),
  12918. weight: math.unit(326, "kg"),
  12919. name: "Side",
  12920. image: {
  12921. source: "./media/characters/levi/side.svg",
  12922. extra: 1704 / 1334,
  12923. bottom: 0.02
  12924. }
  12925. },
  12926. },
  12927. [
  12928. {
  12929. name: "Normal",
  12930. height: math.unit(1.9, "meters"),
  12931. default: true
  12932. },
  12933. {
  12934. name: "Macro",
  12935. height: math.unit(20, "meters")
  12936. },
  12937. {
  12938. name: "Macro+",
  12939. height: math.unit(200, "meters")
  12940. },
  12941. {
  12942. name: "Megamacro",
  12943. height: math.unit(2, "km")
  12944. },
  12945. {
  12946. name: "Megamacro+",
  12947. height: math.unit(20, "km")
  12948. },
  12949. {
  12950. name: "Gigamacro",
  12951. height: math.unit(2500, "km")
  12952. },
  12953. {
  12954. name: "Gigamacro+",
  12955. height: math.unit(120000, "km")
  12956. },
  12957. {
  12958. name: "Teramacro",
  12959. height: math.unit(7.77e6, "km")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(6 + 4/12, "feet"),
  12968. weight: math.unit(190, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/bmc/front.svg",
  12972. extra: 1626/1472,
  12973. bottom: 79/1705
  12974. }
  12975. },
  12976. back: {
  12977. height: math.unit(6 + 4/12, "feet"),
  12978. weight: math.unit(190, "lb"),
  12979. name: "Back",
  12980. image: {
  12981. source: "./media/characters/bmc/back.svg",
  12982. extra: 1640/1479,
  12983. bottom: 45/1685
  12984. }
  12985. },
  12986. frontArmor: {
  12987. height: math.unit(6 + 4/12, "feet"),
  12988. weight: math.unit(190, "lb"),
  12989. name: "Front-armor",
  12990. image: {
  12991. source: "./media/characters/bmc/front-armor.svg",
  12992. extra: 1538/1468,
  12993. bottom: 79/1617
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Human-sized",
  13000. height: math.unit(6 + 4 / 12, "feet")
  13001. },
  13002. {
  13003. name: "Interactive Size",
  13004. height: math.unit(25, "feet")
  13005. },
  13006. {
  13007. name: "Small",
  13008. height: math.unit(250, "feet")
  13009. },
  13010. {
  13011. name: "Normal",
  13012. height: math.unit(1250, "feet"),
  13013. default: true
  13014. },
  13015. {
  13016. name: "Good Day",
  13017. height: math.unit(88, "miles")
  13018. },
  13019. {
  13020. name: "Largest Measured Size",
  13021. height: math.unit(105.960, "galaxies")
  13022. },
  13023. ]
  13024. ))
  13025. characterMakers.push(() => makeCharacter(
  13026. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13027. {
  13028. front: {
  13029. height: math.unit(20, "feet"),
  13030. weight: math.unit(2016, "kg"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/sven-the-kaiju/front.svg",
  13034. extra: 1277/1250,
  13035. bottom: 35/1312
  13036. }
  13037. },
  13038. mouth: {
  13039. height: math.unit(1.85, "feet"),
  13040. name: "Mouth",
  13041. image: {
  13042. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13043. }
  13044. },
  13045. },
  13046. [
  13047. {
  13048. name: "Fairy",
  13049. height: math.unit(6, "inches")
  13050. },
  13051. {
  13052. name: "Normal",
  13053. height: math.unit(20, "feet"),
  13054. default: true
  13055. },
  13056. {
  13057. name: "Rampage",
  13058. height: math.unit(200, "feet")
  13059. },
  13060. {
  13061. name: "Archfey Forest Guardian",
  13062. height: math.unit(1, "mile")
  13063. },
  13064. ]
  13065. ))
  13066. characterMakers.push(() => makeCharacter(
  13067. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13068. {
  13069. front: {
  13070. height: math.unit(4, "meters"),
  13071. weight: math.unit(2, "tons"),
  13072. name: "Front",
  13073. image: {
  13074. source: "./media/characters/marik/front.svg",
  13075. extra: 1057 / 1003,
  13076. bottom: 0.08
  13077. }
  13078. },
  13079. },
  13080. [
  13081. {
  13082. name: "Normal",
  13083. height: math.unit(4, "meters"),
  13084. default: true
  13085. },
  13086. {
  13087. name: "Macro",
  13088. height: math.unit(20, "meters")
  13089. },
  13090. {
  13091. name: "Megamacro",
  13092. height: math.unit(50, "km")
  13093. },
  13094. {
  13095. name: "Gigamacro",
  13096. height: math.unit(100, "km")
  13097. },
  13098. {
  13099. name: "Alpha Macro",
  13100. height: math.unit(7.88e7, "yottameters")
  13101. },
  13102. ]
  13103. ))
  13104. characterMakers.push(() => makeCharacter(
  13105. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13106. {
  13107. front: {
  13108. height: math.unit(6, "feet"),
  13109. weight: math.unit(110, "lb"),
  13110. name: "Front",
  13111. image: {
  13112. source: "./media/characters/mel/front.svg",
  13113. extra: 736 / 617,
  13114. bottom: 0.017
  13115. }
  13116. },
  13117. },
  13118. [
  13119. {
  13120. name: "Pico",
  13121. height: math.unit(3, "pm")
  13122. },
  13123. {
  13124. name: "Nano",
  13125. height: math.unit(3, "nm")
  13126. },
  13127. {
  13128. name: "Micro",
  13129. height: math.unit(0.3, "mm"),
  13130. default: true
  13131. },
  13132. {
  13133. name: "Micro+",
  13134. height: math.unit(3, "mm")
  13135. },
  13136. {
  13137. name: "Normal",
  13138. height: math.unit(5 + 10.5 / 12, "feet")
  13139. },
  13140. ]
  13141. ))
  13142. characterMakers.push(() => makeCharacter(
  13143. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13144. {
  13145. kaiju: {
  13146. height: math.unit(1.75, "meters"),
  13147. weight: math.unit(55, "kg"),
  13148. name: "Kaiju",
  13149. image: {
  13150. source: "./media/characters/lykonous/kaiju.svg",
  13151. extra: 1055 / 946,
  13152. bottom: 0.135
  13153. }
  13154. },
  13155. },
  13156. [
  13157. {
  13158. name: "Normal",
  13159. height: math.unit(2.5, "meters"),
  13160. default: true
  13161. },
  13162. {
  13163. name: "Kaiju Dragon",
  13164. height: math.unit(60, "meters")
  13165. },
  13166. {
  13167. name: "Mega Kaiju",
  13168. height: math.unit(120, "km")
  13169. },
  13170. {
  13171. name: "Giga Kaiju",
  13172. height: math.unit(200, "megameters")
  13173. },
  13174. {
  13175. name: "Terra Kaiju",
  13176. height: math.unit(400, "gigameters")
  13177. },
  13178. {
  13179. name: "Kaiju Dragon God",
  13180. height: math.unit(13000, "exaparsecs")
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13186. {
  13187. front: {
  13188. height: math.unit(6, "feet"),
  13189. weight: math.unit(150, "lb"),
  13190. name: "Front",
  13191. image: {
  13192. source: "./media/characters/blü/front.svg",
  13193. extra: 1883 / 1564,
  13194. bottom: 0.031
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(13, "feet"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Big Boi",
  13206. height: math.unit(150, "meters")
  13207. },
  13208. {
  13209. name: "Mini Stomper",
  13210. height: math.unit(300, "meters")
  13211. },
  13212. {
  13213. name: "Macro",
  13214. height: math.unit(1000, "meters")
  13215. },
  13216. {
  13217. name: "Megamacro",
  13218. height: math.unit(11000, "meters")
  13219. },
  13220. {
  13221. name: "Gigamacro",
  13222. height: math.unit(11000, "km")
  13223. },
  13224. {
  13225. name: "Teramacro",
  13226. height: math.unit(420000, "km")
  13227. },
  13228. {
  13229. name: "Examacro",
  13230. height: math.unit(120, "parsecs")
  13231. },
  13232. {
  13233. name: "God Tho",
  13234. height: math.unit(98000000000, "parsecs")
  13235. },
  13236. ]
  13237. ))
  13238. characterMakers.push(() => makeCharacter(
  13239. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13240. {
  13241. taurFront: {
  13242. height: math.unit(6, "feet"),
  13243. weight: math.unit(200, "lb"),
  13244. name: "Taur (Front)",
  13245. image: {
  13246. source: "./media/characters/scales/taur-front.svg",
  13247. extra: 1,
  13248. bottom: 0.05
  13249. }
  13250. },
  13251. taurBack: {
  13252. height: math.unit(6, "feet"),
  13253. weight: math.unit(200, "lb"),
  13254. name: "Taur (Back)",
  13255. image: {
  13256. source: "./media/characters/scales/taur-back.svg",
  13257. extra: 1,
  13258. bottom: 0.08
  13259. }
  13260. },
  13261. anthro: {
  13262. height: math.unit(6 * 7 / 12, "feet"),
  13263. weight: math.unit(100, "lb"),
  13264. name: "Anthro",
  13265. image: {
  13266. source: "./media/characters/scales/anthro.svg",
  13267. extra: 1,
  13268. bottom: 0.06
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Normal",
  13275. height: math.unit(12, "feet"),
  13276. default: true
  13277. },
  13278. ]
  13279. ))
  13280. characterMakers.push(() => makeCharacter(
  13281. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13282. {
  13283. front: {
  13284. height: math.unit(6, "feet"),
  13285. weight: math.unit(150, "lb"),
  13286. name: "Front",
  13287. image: {
  13288. source: "./media/characters/koragos/front.svg",
  13289. extra: 841 / 794,
  13290. bottom: 0.035
  13291. }
  13292. },
  13293. back: {
  13294. height: math.unit(6, "feet"),
  13295. weight: math.unit(150, "lb"),
  13296. name: "Back",
  13297. image: {
  13298. source: "./media/characters/koragos/back.svg",
  13299. extra: 841 / 810,
  13300. bottom: 0.022
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(6 + 11 / 12, "feet"),
  13308. default: true
  13309. },
  13310. {
  13311. name: "Macro",
  13312. height: math.unit(490, "feet")
  13313. },
  13314. {
  13315. name: "Megamacro",
  13316. height: math.unit(10, "miles")
  13317. },
  13318. {
  13319. name: "Gigamacro",
  13320. height: math.unit(50, "miles")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(250, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/xylrem/front.svg",
  13333. extra: 3323 / 3050,
  13334. bottom: 0.065
  13335. }
  13336. },
  13337. },
  13338. [
  13339. {
  13340. name: "Micro",
  13341. height: math.unit(4, "feet")
  13342. },
  13343. {
  13344. name: "Normal",
  13345. height: math.unit(16, "feet"),
  13346. default: true
  13347. },
  13348. {
  13349. name: "Macro",
  13350. height: math.unit(2720, "feet")
  13351. },
  13352. {
  13353. name: "Megamacro",
  13354. height: math.unit(25000, "miles")
  13355. },
  13356. ]
  13357. ))
  13358. characterMakers.push(() => makeCharacter(
  13359. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13360. {
  13361. front: {
  13362. height: math.unit(8, "feet"),
  13363. weight: math.unit(250, "kg"),
  13364. name: "Front",
  13365. image: {
  13366. source: "./media/characters/ikideru/front.svg",
  13367. extra: 930 / 870,
  13368. bottom: 0.087
  13369. }
  13370. },
  13371. back: {
  13372. height: math.unit(8, "feet"),
  13373. weight: math.unit(250, "kg"),
  13374. name: "Back",
  13375. image: {
  13376. source: "./media/characters/ikideru/back.svg",
  13377. extra: 919 / 852,
  13378. bottom: 0.055
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Rare",
  13385. height: math.unit(8, "feet"),
  13386. default: true
  13387. },
  13388. {
  13389. name: "Playful Loom",
  13390. height: math.unit(80, "feet")
  13391. },
  13392. {
  13393. name: "City Leaner",
  13394. height: math.unit(230, "feet")
  13395. },
  13396. {
  13397. name: "Megamacro",
  13398. height: math.unit(2500, "feet")
  13399. },
  13400. {
  13401. name: "Gigamacro",
  13402. height: math.unit(26400, "feet")
  13403. },
  13404. {
  13405. name: "Tectonic Shifter",
  13406. height: math.unit(1.7, "megameters")
  13407. },
  13408. {
  13409. name: "Planet Carer",
  13410. height: math.unit(21, "megameters")
  13411. },
  13412. {
  13413. name: "God",
  13414. height: math.unit(11157.22, "parsecs")
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13420. {
  13421. front: {
  13422. height: math.unit(6, "feet"),
  13423. weight: math.unit(120, "lb"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/neo/front.svg"
  13427. }
  13428. },
  13429. },
  13430. [
  13431. {
  13432. name: "Micro",
  13433. height: math.unit(2, "inches"),
  13434. default: true
  13435. },
  13436. {
  13437. name: "Human Size",
  13438. height: math.unit(5 + 8 / 12, "feet")
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13444. {
  13445. front: {
  13446. height: math.unit(13 + 10 / 12, "feet"),
  13447. weight: math.unit(5320, "lb"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/chauncey-chantz/front.svg",
  13451. extra: 1587 / 1435,
  13452. bottom: 0.02
  13453. }
  13454. },
  13455. },
  13456. [
  13457. {
  13458. name: "Normal",
  13459. height: math.unit(13 + 10 / 12, "feet"),
  13460. default: true
  13461. },
  13462. {
  13463. name: "Macro",
  13464. height: math.unit(45, "feet")
  13465. },
  13466. {
  13467. name: "Megamacro",
  13468. height: math.unit(250, "miles")
  13469. },
  13470. {
  13471. name: "Planetary",
  13472. height: math.unit(10000, "miles")
  13473. },
  13474. {
  13475. name: "Galactic",
  13476. height: math.unit(40000, "parsecs")
  13477. },
  13478. {
  13479. name: "Universal",
  13480. height: math.unit(1, "yottameter")
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13486. {
  13487. front: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Front",
  13491. image: {
  13492. source: "./media/characters/epifox/front.svg",
  13493. extra: 1,
  13494. bottom: 0.075
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Micro",
  13501. height: math.unit(6, "inches")
  13502. },
  13503. {
  13504. name: "Normal",
  13505. height: math.unit(12, "feet"),
  13506. default: true
  13507. },
  13508. {
  13509. name: "Macro",
  13510. height: math.unit(3810, "feet")
  13511. },
  13512. {
  13513. name: "Megamacro",
  13514. height: math.unit(500, "miles")
  13515. },
  13516. ]
  13517. ))
  13518. characterMakers.push(() => makeCharacter(
  13519. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13520. {
  13521. front: {
  13522. height: math.unit(1.8796, "m"),
  13523. weight: math.unit(230, "lb"),
  13524. name: "Front",
  13525. image: {
  13526. source: "./media/characters/colin-t/front.svg",
  13527. extra: 1272 / 1193,
  13528. bottom: 0.07
  13529. }
  13530. },
  13531. },
  13532. [
  13533. {
  13534. name: "Micro",
  13535. height: math.unit(0.571, "meters")
  13536. },
  13537. {
  13538. name: "Normal",
  13539. height: math.unit(1.8796, "meters"),
  13540. default: true
  13541. },
  13542. {
  13543. name: "Tall",
  13544. height: math.unit(4, "meters")
  13545. },
  13546. {
  13547. name: "Macro",
  13548. height: math.unit(67.241, "meters")
  13549. },
  13550. {
  13551. name: "Megamacro",
  13552. height: math.unit(371.856, "meters")
  13553. },
  13554. {
  13555. name: "Planetary",
  13556. height: math.unit(12631.5689, "km")
  13557. },
  13558. ]
  13559. ))
  13560. characterMakers.push(() => makeCharacter(
  13561. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13562. {
  13563. front: {
  13564. height: math.unit(1.85, "meters"),
  13565. weight: math.unit(80, "kg"),
  13566. name: "Front",
  13567. image: {
  13568. source: "./media/characters/matvei/front.svg",
  13569. extra: 456/447,
  13570. bottom: 8/464
  13571. }
  13572. },
  13573. back: {
  13574. height: math.unit(1.85, "meters"),
  13575. weight: math.unit(80, "kg"),
  13576. name: "Back",
  13577. image: {
  13578. source: "./media/characters/matvei/back.svg",
  13579. extra: 434/427,
  13580. bottom: 11/445
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Normal",
  13587. height: math.unit(1.85, "meters"),
  13588. default: true
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13594. {
  13595. front: {
  13596. height: math.unit(5 + 9 / 12, "feet"),
  13597. weight: math.unit(70, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/quincy/front.svg",
  13601. extra: 3041 / 2751
  13602. }
  13603. },
  13604. back: {
  13605. height: math.unit(5 + 9 / 12, "feet"),
  13606. weight: math.unit(70, "lb"),
  13607. name: "Back",
  13608. image: {
  13609. source: "./media/characters/quincy/back.svg",
  13610. extra: 3041 / 2751
  13611. }
  13612. },
  13613. flying: {
  13614. height: math.unit(5 + 4 / 12, "feet"),
  13615. weight: math.unit(70, "lb"),
  13616. name: "Flying",
  13617. image: {
  13618. source: "./media/characters/quincy/flying.svg",
  13619. extra: 1044 / 930
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "Micro",
  13626. height: math.unit(3, "cm")
  13627. },
  13628. {
  13629. name: "Normal",
  13630. height: math.unit(5 + 9 / 12, "feet")
  13631. },
  13632. {
  13633. name: "Macro",
  13634. height: math.unit(200, "meters"),
  13635. default: true
  13636. },
  13637. {
  13638. name: "Megamacro",
  13639. height: math.unit(1000, "meters")
  13640. },
  13641. ]
  13642. ))
  13643. characterMakers.push(() => makeCharacter(
  13644. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13645. {
  13646. front: {
  13647. height: math.unit(3 + 11/12, "feet"),
  13648. weight: math.unit(50, "lb"),
  13649. name: "Front",
  13650. image: {
  13651. source: "./media/characters/vanrel/front.svg",
  13652. extra: 1104/949,
  13653. bottom: 52/1156
  13654. }
  13655. },
  13656. back: {
  13657. height: math.unit(3 + 11/12, "feet"),
  13658. weight: math.unit(50, "lb"),
  13659. name: "Back",
  13660. image: {
  13661. source: "./media/characters/vanrel/back.svg",
  13662. extra: 1119/976,
  13663. bottom: 37/1156
  13664. }
  13665. },
  13666. tome: {
  13667. height: math.unit(1.35, "feet"),
  13668. weight: math.unit(10, "lb"),
  13669. name: "Vanrel's Tome",
  13670. rename: true,
  13671. image: {
  13672. source: "./media/characters/vanrel/tome.svg"
  13673. }
  13674. },
  13675. beans: {
  13676. height: math.unit(0.89, "feet"),
  13677. name: "Beans",
  13678. image: {
  13679. source: "./media/characters/vanrel/beans.svg"
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Normal",
  13686. height: math.unit(3 + 11/12, "feet"),
  13687. default: true
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13693. {
  13694. front: {
  13695. height: math.unit(7 + 5 / 12, "feet"),
  13696. name: "Front",
  13697. image: {
  13698. source: "./media/characters/kuiper-vanrel/front.svg",
  13699. extra: 1219/1169,
  13700. bottom: 69/1288
  13701. }
  13702. },
  13703. back: {
  13704. height: math.unit(7 + 5 / 12, "feet"),
  13705. name: "Back",
  13706. image: {
  13707. source: "./media/characters/kuiper-vanrel/back.svg",
  13708. extra: 1236/1193,
  13709. bottom: 27/1263
  13710. }
  13711. },
  13712. foot: {
  13713. height: math.unit(0.55, "meters"),
  13714. name: "Foot",
  13715. image: {
  13716. source: "./media/characters/kuiper-vanrel/foot.svg",
  13717. }
  13718. },
  13719. battle: {
  13720. height: math.unit(6.824, "feet"),
  13721. name: "Battle",
  13722. image: {
  13723. source: "./media/characters/kuiper-vanrel/battle.svg",
  13724. extra: 1466 / 1327,
  13725. bottom: 29 / 1492.5
  13726. }
  13727. },
  13728. meerkui: {
  13729. height: math.unit(18, "inches"),
  13730. name: "Meerkui",
  13731. image: {
  13732. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13733. extra: 1354/1289,
  13734. bottom: 69/1423
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Normal",
  13741. height: math.unit(7 + 5 / 12, "feet"),
  13742. default: true
  13743. },
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13748. {
  13749. front: {
  13750. height: math.unit(8 + 5 / 12, "feet"),
  13751. name: "Front",
  13752. image: {
  13753. source: "./media/characters/keset-vanrel/front.svg",
  13754. extra: 1231/1148,
  13755. bottom: 82/1313
  13756. }
  13757. },
  13758. back: {
  13759. height: math.unit(8 + 5 / 12, "feet"),
  13760. name: "Back",
  13761. image: {
  13762. source: "./media/characters/keset-vanrel/back.svg",
  13763. extra: 1240/1174,
  13764. bottom: 33/1273
  13765. }
  13766. },
  13767. hand: {
  13768. height: math.unit(0.6, "meters"),
  13769. name: "Hand",
  13770. image: {
  13771. source: "./media/characters/keset-vanrel/hand.svg"
  13772. }
  13773. },
  13774. foot: {
  13775. height: math.unit(0.94978, "meters"),
  13776. name: "Foot",
  13777. image: {
  13778. source: "./media/characters/keset-vanrel/foot.svg"
  13779. }
  13780. },
  13781. battle: {
  13782. height: math.unit(7.408, "feet"),
  13783. name: "Battle",
  13784. image: {
  13785. source: "./media/characters/keset-vanrel/battle.svg",
  13786. extra: 1890 / 1386,
  13787. bottom: 73.28 / 1970
  13788. }
  13789. },
  13790. },
  13791. [
  13792. {
  13793. name: "Normal",
  13794. height: math.unit(8 + 5 / 12, "feet"),
  13795. default: true
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(6, "feet"),
  13804. weight: math.unit(150, "lb"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/neos/front.svg",
  13808. extra: 1696 / 992,
  13809. bottom: 0.14
  13810. }
  13811. },
  13812. },
  13813. [
  13814. {
  13815. name: "Normal",
  13816. height: math.unit(54, "cm"),
  13817. default: true
  13818. },
  13819. {
  13820. name: "Macro",
  13821. height: math.unit(100, "m")
  13822. },
  13823. {
  13824. name: "Megamacro",
  13825. height: math.unit(10, "km")
  13826. },
  13827. {
  13828. name: "Megamacro+",
  13829. height: math.unit(100, "km")
  13830. },
  13831. {
  13832. name: "Gigamacro",
  13833. height: math.unit(100, "Mm")
  13834. },
  13835. {
  13836. name: "Teramacro",
  13837. height: math.unit(100, "Gm")
  13838. },
  13839. {
  13840. name: "Examacro",
  13841. height: math.unit(100, "Em")
  13842. },
  13843. {
  13844. name: "Godly",
  13845. height: math.unit(10000, "Ym")
  13846. },
  13847. {
  13848. name: "Beyond Godly",
  13849. height: math.unit(25, "multiverses")
  13850. },
  13851. ]
  13852. ))
  13853. characterMakers.push(() => makeCharacter(
  13854. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13855. {
  13856. feminine: {
  13857. height: math.unit(5, "feet"),
  13858. weight: math.unit(100, "lb"),
  13859. name: "Feminine",
  13860. image: {
  13861. source: "./media/characters/sammy-mouse/feminine.svg",
  13862. extra: 2526 / 2425,
  13863. bottom: 0.123
  13864. }
  13865. },
  13866. masculine: {
  13867. height: math.unit(5, "feet"),
  13868. weight: math.unit(100, "lb"),
  13869. name: "Masculine",
  13870. image: {
  13871. source: "./media/characters/sammy-mouse/masculine.svg",
  13872. extra: 2526 / 2425,
  13873. bottom: 0.123
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Micro",
  13880. height: math.unit(5, "inches")
  13881. },
  13882. {
  13883. name: "Normal",
  13884. height: math.unit(5, "feet"),
  13885. default: true
  13886. },
  13887. {
  13888. name: "Macro",
  13889. height: math.unit(60, "feet")
  13890. },
  13891. ]
  13892. ))
  13893. characterMakers.push(() => makeCharacter(
  13894. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13895. {
  13896. front: {
  13897. height: math.unit(4, "feet"),
  13898. weight: math.unit(50, "lb"),
  13899. name: "Front",
  13900. image: {
  13901. source: "./media/characters/kole/front.svg",
  13902. extra: 1423 / 1303,
  13903. bottom: 0.025
  13904. }
  13905. },
  13906. back: {
  13907. height: math.unit(4, "feet"),
  13908. weight: math.unit(50, "lb"),
  13909. name: "Back",
  13910. image: {
  13911. source: "./media/characters/kole/back.svg",
  13912. extra: 1426 / 1280,
  13913. bottom: 0.02
  13914. }
  13915. },
  13916. },
  13917. [
  13918. {
  13919. name: "Normal",
  13920. height: math.unit(4, "feet"),
  13921. default: true
  13922. },
  13923. ]
  13924. ))
  13925. characterMakers.push(() => makeCharacter(
  13926. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13927. {
  13928. front: {
  13929. height: math.unit(2.5, "feet"),
  13930. weight: math.unit(32, "lb"),
  13931. name: "Front",
  13932. image: {
  13933. source: "./media/characters/rufran/front.svg",
  13934. extra: 1313/885,
  13935. bottom: 94/1407
  13936. }
  13937. },
  13938. side: {
  13939. height: math.unit(2.5, "feet"),
  13940. weight: math.unit(32, "lb"),
  13941. name: "Side",
  13942. image: {
  13943. source: "./media/characters/rufran/side.svg",
  13944. extra: 1109/852,
  13945. bottom: 118/1227
  13946. }
  13947. },
  13948. back: {
  13949. height: math.unit(2.5, "feet"),
  13950. weight: math.unit(32, "lb"),
  13951. name: "Back",
  13952. image: {
  13953. source: "./media/characters/rufran/back.svg",
  13954. extra: 1280/878,
  13955. bottom: 131/1411
  13956. }
  13957. },
  13958. mouth: {
  13959. height: math.unit(1.13, "feet"),
  13960. name: "Mouth",
  13961. image: {
  13962. source: "./media/characters/rufran/mouth.svg"
  13963. }
  13964. },
  13965. foot: {
  13966. height: math.unit(1.33, "feet"),
  13967. name: "Foot",
  13968. image: {
  13969. source: "./media/characters/rufran/foot.svg"
  13970. }
  13971. },
  13972. koboldFront: {
  13973. height: math.unit(2 + 6 / 12, "feet"),
  13974. weight: math.unit(20, "lb"),
  13975. name: "Front (Kobold)",
  13976. image: {
  13977. source: "./media/characters/rufran/kobold-front.svg",
  13978. extra: 2041 / 1839,
  13979. bottom: 0.055
  13980. }
  13981. },
  13982. koboldBack: {
  13983. height: math.unit(2 + 6 / 12, "feet"),
  13984. weight: math.unit(20, "lb"),
  13985. name: "Back (Kobold)",
  13986. image: {
  13987. source: "./media/characters/rufran/kobold-back.svg",
  13988. extra: 2054 / 1839,
  13989. bottom: 0.01
  13990. }
  13991. },
  13992. koboldHand: {
  13993. height: math.unit(0.2166, "meters"),
  13994. name: "Hand (Kobold)",
  13995. image: {
  13996. source: "./media/characters/rufran/kobold-hand.svg"
  13997. }
  13998. },
  13999. koboldFoot: {
  14000. height: math.unit(0.185, "meters"),
  14001. name: "Foot (Kobold)",
  14002. image: {
  14003. source: "./media/characters/rufran/kobold-foot.svg"
  14004. }
  14005. },
  14006. },
  14007. [
  14008. {
  14009. name: "Micro",
  14010. height: math.unit(1, "inch")
  14011. },
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(2 + 6 / 12, "feet"),
  14015. default: true
  14016. },
  14017. {
  14018. name: "Big",
  14019. height: math.unit(60, "feet")
  14020. },
  14021. {
  14022. name: "Macro",
  14023. height: math.unit(325, "feet")
  14024. },
  14025. ]
  14026. ))
  14027. characterMakers.push(() => makeCharacter(
  14028. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14029. {
  14030. front: {
  14031. height: math.unit(0.3, "meters"),
  14032. weight: math.unit(3.5, "kg"),
  14033. name: "Front",
  14034. image: {
  14035. source: "./media/characters/chip/front.svg",
  14036. extra: 748 / 674
  14037. }
  14038. },
  14039. },
  14040. [
  14041. {
  14042. name: "Micro",
  14043. height: math.unit(1, "inch"),
  14044. default: true
  14045. },
  14046. ]
  14047. ))
  14048. characterMakers.push(() => makeCharacter(
  14049. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14050. {
  14051. side: {
  14052. height: math.unit(2.3, "meters"),
  14053. weight: math.unit(3500, "lb"),
  14054. name: "Side",
  14055. image: {
  14056. source: "./media/characters/torvid/side.svg",
  14057. extra: 1972 / 722,
  14058. bottom: 0.035
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Normal",
  14065. height: math.unit(2.3, "meters"),
  14066. default: true
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(2, "meters"),
  14075. weight: math.unit(150.5, "kg"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/susan/front.svg",
  14079. extra: 693 / 635,
  14080. bottom: 0.05
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Megamacro",
  14087. height: math.unit(505, "miles"),
  14088. default: true
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(6, "feet"),
  14097. weight: math.unit(150, "lb"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/raindrops/front.svg",
  14101. extra: 2655 / 2461,
  14102. bottom: 49 / 2705
  14103. }
  14104. },
  14105. back: {
  14106. height: math.unit(6, "feet"),
  14107. weight: math.unit(150, "lb"),
  14108. name: "Back",
  14109. image: {
  14110. source: "./media/characters/raindrops/back.svg",
  14111. extra: 2574 / 2400,
  14112. bottom: 65 / 2634
  14113. }
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Micro",
  14119. height: math.unit(6, "inches")
  14120. },
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(6 + 2 / 12, "feet")
  14124. },
  14125. {
  14126. name: "Macro",
  14127. height: math.unit(131, "feet"),
  14128. default: true
  14129. },
  14130. {
  14131. name: "Megamacro",
  14132. height: math.unit(15, "miles")
  14133. },
  14134. {
  14135. name: "Gigamacro",
  14136. height: math.unit(4000, "miles")
  14137. },
  14138. {
  14139. name: "Teramacro",
  14140. height: math.unit(315000, "miles")
  14141. },
  14142. ]
  14143. ))
  14144. characterMakers.push(() => makeCharacter(
  14145. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14146. {
  14147. front: {
  14148. height: math.unit(2.794, "meters"),
  14149. weight: math.unit(325, "kg"),
  14150. name: "Front",
  14151. image: {
  14152. source: "./media/characters/tezwa/front.svg",
  14153. extra: 2083 / 1906,
  14154. bottom: 0.031
  14155. }
  14156. },
  14157. foot: {
  14158. height: math.unit(0.687, "meters"),
  14159. name: "Foot",
  14160. image: {
  14161. source: "./media/characters/tezwa/foot.svg"
  14162. }
  14163. },
  14164. },
  14165. [
  14166. {
  14167. name: "Normal",
  14168. height: math.unit(9 + 2 / 12, "feet"),
  14169. default: true
  14170. },
  14171. ]
  14172. ))
  14173. characterMakers.push(() => makeCharacter(
  14174. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14175. {
  14176. front: {
  14177. height: math.unit(58, "feet"),
  14178. weight: math.unit(89000, "lb"),
  14179. name: "Front",
  14180. image: {
  14181. source: "./media/characters/typhus/front.svg",
  14182. extra: 816 / 800,
  14183. bottom: 0.065
  14184. }
  14185. },
  14186. },
  14187. [
  14188. {
  14189. name: "Macro",
  14190. height: math.unit(58, "feet"),
  14191. default: true
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(12, "feet"),
  14200. weight: math.unit(6, "tonnes"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/lyra-von-wulf/front.svg",
  14204. extra: 1,
  14205. bottom: 0.10
  14206. }
  14207. },
  14208. frontMecha: {
  14209. height: math.unit(12, "feet"),
  14210. weight: math.unit(12, "tonnes"),
  14211. name: "Front (Mecha)",
  14212. image: {
  14213. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14214. extra: 1,
  14215. bottom: 0.042
  14216. }
  14217. },
  14218. maw: {
  14219. height: math.unit(2.2, "feet"),
  14220. name: "Maw",
  14221. image: {
  14222. source: "./media/characters/lyra-von-wulf/maw.svg"
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(12, "feet"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Classic",
  14234. height: math.unit(50, "feet")
  14235. },
  14236. {
  14237. name: "Macro",
  14238. height: math.unit(500, "feet")
  14239. },
  14240. {
  14241. name: "Megamacro",
  14242. height: math.unit(1, "mile")
  14243. },
  14244. {
  14245. name: "Gigamacro",
  14246. height: math.unit(400, "miles")
  14247. },
  14248. {
  14249. name: "Teramacro",
  14250. height: math.unit(22000, "miles")
  14251. },
  14252. {
  14253. name: "Solarmacro",
  14254. height: math.unit(8600000, "miles")
  14255. },
  14256. {
  14257. name: "Galactic",
  14258. height: math.unit(1057000, "lightyears")
  14259. },
  14260. ]
  14261. ))
  14262. characterMakers.push(() => makeCharacter(
  14263. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14264. {
  14265. front: {
  14266. height: math.unit(6 + 10 / 12, "feet"),
  14267. weight: math.unit(150, "lb"),
  14268. name: "Front",
  14269. image: {
  14270. source: "./media/characters/dixon/front.svg",
  14271. extra: 3361 / 3209,
  14272. bottom: 0.01
  14273. }
  14274. },
  14275. },
  14276. [
  14277. {
  14278. name: "Normal",
  14279. height: math.unit(6 + 10 / 12, "feet"),
  14280. default: true
  14281. },
  14282. {
  14283. name: "Big",
  14284. height: math.unit(12, "meters")
  14285. },
  14286. {
  14287. name: "Macro",
  14288. height: math.unit(500, "meters")
  14289. },
  14290. {
  14291. name: "Megamacro",
  14292. height: math.unit(2, "km")
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14298. {
  14299. front: {
  14300. height: math.unit(185, "cm"),
  14301. weight: math.unit(68, "kg"),
  14302. name: "Front",
  14303. image: {
  14304. source: "./media/characters/kauko/front.svg",
  14305. extra: 1455 / 1421,
  14306. bottom: 0.03
  14307. }
  14308. },
  14309. back: {
  14310. height: math.unit(185, "cm"),
  14311. weight: math.unit(68, "kg"),
  14312. name: "Back",
  14313. image: {
  14314. source: "./media/characters/kauko/back.svg",
  14315. extra: 1455 / 1421,
  14316. bottom: 0.004
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Normal",
  14323. height: math.unit(185, "cm"),
  14324. default: true
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14330. {
  14331. frontSfw: {
  14332. height: math.unit(5, "meters"),
  14333. weight: math.unit(4250, "lb"),
  14334. name: "Front",
  14335. image: {
  14336. source: "./media/characters/varg/front-sfw.svg",
  14337. extra: 1103/1010,
  14338. bottom: 50/1153
  14339. },
  14340. form: "anthro",
  14341. default: true
  14342. },
  14343. backSfw: {
  14344. height: math.unit(5, "meters"),
  14345. weight: math.unit(4250, "lb"),
  14346. name: "Back",
  14347. image: {
  14348. source: "./media/characters/varg/back-sfw.svg",
  14349. extra: 1038/1022,
  14350. bottom: 36/1074
  14351. },
  14352. form: "anthro"
  14353. },
  14354. frontNsfw: {
  14355. height: math.unit(5, "meters"),
  14356. weight: math.unit(4250, "lb"),
  14357. name: "Front (NSFW)",
  14358. image: {
  14359. source: "./media/characters/varg/front-nsfw.svg",
  14360. extra: 1103/1010,
  14361. bottom: 50/1153
  14362. },
  14363. form: "anthro"
  14364. },
  14365. sheath: {
  14366. height: math.unit(3.8, "feet"),
  14367. weight: math.unit(90, "kilograms"),
  14368. name: "Sheath",
  14369. image: {
  14370. source: "./media/characters/varg/sheath.svg"
  14371. },
  14372. form: "anthro"
  14373. },
  14374. dick: {
  14375. height: math.unit(4.6, "feet"),
  14376. weight: math.unit(451, "kilograms"),
  14377. name: "Dick",
  14378. image: {
  14379. source: "./media/characters/varg/dick.svg"
  14380. },
  14381. form: "anthro"
  14382. },
  14383. feralSfw: {
  14384. height: math.unit(5, "meters"),
  14385. weight: math.unit(100000, "lb"),
  14386. name: "Side",
  14387. image: {
  14388. source: "./media/characters/varg/feral-sfw.svg",
  14389. extra: 1065/511,
  14390. bottom: 211/1276
  14391. },
  14392. form: "feral",
  14393. default: true
  14394. },
  14395. feralNsfw: {
  14396. height: math.unit(5, "meters"),
  14397. weight: math.unit(100000, "lb"),
  14398. name: "Side (NSFW)",
  14399. image: {
  14400. source: "./media/characters/varg/feral-nsfw.svg",
  14401. extra: 1065/511,
  14402. bottom: 211/1276
  14403. },
  14404. form: "feral",
  14405. },
  14406. feralSheath: {
  14407. height: math.unit(9.8, "feet"),
  14408. weight: math.unit(2000, "kilograms"),
  14409. name: "Sheath",
  14410. image: {
  14411. source: "./media/characters/varg/sheath.svg"
  14412. },
  14413. form: "feral"
  14414. },
  14415. feralDick: {
  14416. height: math.unit(13.11, "feet"),
  14417. weight: math.unit(10440, "kilograms"),
  14418. name: "Dick",
  14419. image: {
  14420. source: "./media/characters/varg/dick.svg"
  14421. },
  14422. form: "feral"
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(5, "meters"),
  14429. form: "anthro"
  14430. },
  14431. {
  14432. name: "Macro",
  14433. height: math.unit(200, "meters"),
  14434. form: "anthro"
  14435. },
  14436. {
  14437. name: "Megamacro",
  14438. height: math.unit(20, "kilometers"),
  14439. form: "anthro"
  14440. },
  14441. {
  14442. name: "True Size",
  14443. height: math.unit(211, "km"),
  14444. form: "anthro",
  14445. default: true
  14446. },
  14447. {
  14448. name: "Gigamacro",
  14449. height: math.unit(1000, "km"),
  14450. form: "anthro"
  14451. },
  14452. {
  14453. name: "Gigamacro+",
  14454. height: math.unit(8000, "km"),
  14455. form: "anthro"
  14456. },
  14457. {
  14458. name: "Teramacro",
  14459. height: math.unit(1000000, "km"),
  14460. form: "anthro"
  14461. },
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(5, "meters"),
  14465. form: "feral"
  14466. },
  14467. {
  14468. name: "Macro",
  14469. height: math.unit(200, "meters"),
  14470. form: "feral"
  14471. },
  14472. {
  14473. name: "Megamacro",
  14474. height: math.unit(20, "kilometers"),
  14475. form: "feral"
  14476. },
  14477. {
  14478. name: "True Size",
  14479. height: math.unit(211, "km"),
  14480. form: "feral",
  14481. default: true
  14482. },
  14483. {
  14484. name: "Gigamacro",
  14485. height: math.unit(1000, "km"),
  14486. form: "feral"
  14487. },
  14488. {
  14489. name: "Gigamacro+",
  14490. height: math.unit(8000, "km"),
  14491. form: "feral"
  14492. },
  14493. {
  14494. name: "Teramacro",
  14495. height: math.unit(1000000, "km"),
  14496. form: "feral"
  14497. },
  14498. ],
  14499. {
  14500. "anthro": {
  14501. name: "Anthro",
  14502. default: true
  14503. },
  14504. "feral": {
  14505. name: "Feral",
  14506. },
  14507. }
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14511. {
  14512. front: {
  14513. height: math.unit(7 + 7 / 12, "feet"),
  14514. weight: math.unit(267, "lb"),
  14515. name: "Front",
  14516. image: {
  14517. source: "./media/characters/dayza/front.svg",
  14518. extra: 1262 / 1200,
  14519. bottom: 0.035
  14520. }
  14521. },
  14522. side: {
  14523. height: math.unit(7 + 7 / 12, "feet"),
  14524. weight: math.unit(267, "lb"),
  14525. name: "Side",
  14526. image: {
  14527. source: "./media/characters/dayza/side.svg",
  14528. extra: 1295 / 1245,
  14529. bottom: 0.05
  14530. }
  14531. },
  14532. back: {
  14533. height: math.unit(7 + 7 / 12, "feet"),
  14534. weight: math.unit(267, "lb"),
  14535. name: "Back",
  14536. image: {
  14537. source: "./media/characters/dayza/back.svg",
  14538. extra: 1241 / 1170
  14539. }
  14540. },
  14541. },
  14542. [
  14543. {
  14544. name: "Normal",
  14545. height: math.unit(7 + 7 / 12, "feet"),
  14546. default: true
  14547. },
  14548. {
  14549. name: "Macro",
  14550. height: math.unit(155, "feet")
  14551. },
  14552. ]
  14553. ))
  14554. characterMakers.push(() => makeCharacter(
  14555. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14556. {
  14557. front: {
  14558. height: math.unit(6 + 5 / 12, "feet"),
  14559. weight: math.unit(160, "lb"),
  14560. name: "Front",
  14561. image: {
  14562. source: "./media/characters/xanthos/front.svg",
  14563. extra: 1,
  14564. bottom: 0.04
  14565. }
  14566. },
  14567. back: {
  14568. height: math.unit(6 + 5 / 12, "feet"),
  14569. weight: math.unit(160, "lb"),
  14570. name: "Back",
  14571. image: {
  14572. source: "./media/characters/xanthos/back.svg",
  14573. extra: 1,
  14574. bottom: 0.03
  14575. }
  14576. },
  14577. hand: {
  14578. height: math.unit(0.928, "feet"),
  14579. name: "Hand",
  14580. image: {
  14581. source: "./media/characters/xanthos/hand.svg"
  14582. }
  14583. },
  14584. foot: {
  14585. height: math.unit(1.286, "feet"),
  14586. name: "Foot",
  14587. image: {
  14588. source: "./media/characters/xanthos/foot.svg"
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(6 + 5 / 12, "feet"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "Normal+",
  14600. height: math.unit(6, "meters")
  14601. },
  14602. {
  14603. name: "Macro",
  14604. height: math.unit(40, "feet")
  14605. },
  14606. {
  14607. name: "Macro+",
  14608. height: math.unit(200, "meters")
  14609. },
  14610. {
  14611. name: "Megamacro",
  14612. height: math.unit(20, "km")
  14613. },
  14614. {
  14615. name: "Megamacro+",
  14616. height: math.unit(100, "km")
  14617. },
  14618. {
  14619. name: "Gigamacro",
  14620. height: math.unit(200, "megameters")
  14621. },
  14622. {
  14623. name: "Gigamacro+",
  14624. height: math.unit(1.5, "gigameters")
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(6 + 3 / 12, "feet"),
  14633. weight: math.unit(215, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/grynn/front.svg",
  14637. extra: 4627 / 4209,
  14638. bottom: 0.047
  14639. }
  14640. },
  14641. },
  14642. [
  14643. {
  14644. name: "Micro",
  14645. height: math.unit(6, "inches")
  14646. },
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(6 + 3 / 12, "feet"),
  14650. default: true
  14651. },
  14652. {
  14653. name: "Big",
  14654. height: math.unit(104, "feet")
  14655. },
  14656. {
  14657. name: "Macro",
  14658. height: math.unit(944, "feet")
  14659. },
  14660. {
  14661. name: "Macro+",
  14662. height: math.unit(9480, "feet")
  14663. },
  14664. {
  14665. name: "Megamacro",
  14666. height: math.unit(78752, "feet")
  14667. },
  14668. {
  14669. name: "Megamacro+",
  14670. height: math.unit(630128, "feet")
  14671. },
  14672. {
  14673. name: "Megamacro++",
  14674. height: math.unit(3150695, "feet")
  14675. },
  14676. ]
  14677. ))
  14678. characterMakers.push(() => makeCharacter(
  14679. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14680. {
  14681. front: {
  14682. height: math.unit(7 + 5 / 12, "feet"),
  14683. weight: math.unit(450, "lb"),
  14684. name: "Front",
  14685. image: {
  14686. source: "./media/characters/mocha-aura/front.svg",
  14687. extra: 1907 / 1817,
  14688. bottom: 0.04
  14689. }
  14690. },
  14691. back: {
  14692. height: math.unit(7 + 5 / 12, "feet"),
  14693. weight: math.unit(450, "lb"),
  14694. name: "Back",
  14695. image: {
  14696. source: "./media/characters/mocha-aura/back.svg",
  14697. extra: 1900 / 1825,
  14698. bottom: 0.045
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Nano",
  14705. height: math.unit(1, "nm")
  14706. },
  14707. {
  14708. name: "Megamicro",
  14709. height: math.unit(1, "mm")
  14710. },
  14711. {
  14712. name: "Micro",
  14713. height: math.unit(3, "inches")
  14714. },
  14715. {
  14716. name: "Normal",
  14717. height: math.unit(7 + 5 / 12, "feet"),
  14718. default: true
  14719. },
  14720. {
  14721. name: "Macro",
  14722. height: math.unit(30, "feet")
  14723. },
  14724. {
  14725. name: "Megamacro",
  14726. height: math.unit(3500, "feet")
  14727. },
  14728. {
  14729. name: "Teramacro",
  14730. height: math.unit(500000, "miles")
  14731. },
  14732. {
  14733. name: "Petamacro",
  14734. height: math.unit(50000000000000000, "parsecs")
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14740. {
  14741. front: {
  14742. height: math.unit(6, "feet"),
  14743. weight: math.unit(150, "lb"),
  14744. name: "Front",
  14745. image: {
  14746. source: "./media/characters/ilisha-devya/front.svg",
  14747. extra: 1053/1049,
  14748. bottom: 270/1323
  14749. }
  14750. },
  14751. back: {
  14752. height: math.unit(6, "feet"),
  14753. weight: math.unit(150, "lb"),
  14754. name: "Back",
  14755. image: {
  14756. source: "./media/characters/ilisha-devya/back.svg",
  14757. extra: 1131/1128,
  14758. bottom: 39/1170
  14759. }
  14760. },
  14761. },
  14762. [
  14763. {
  14764. name: "Macro",
  14765. height: math.unit(500, "feet"),
  14766. default: true
  14767. },
  14768. {
  14769. name: "Megamacro",
  14770. height: math.unit(10, "miles")
  14771. },
  14772. {
  14773. name: "Gigamacro",
  14774. height: math.unit(100000, "miles")
  14775. },
  14776. {
  14777. name: "Examacro",
  14778. height: math.unit(1e9, "lightyears")
  14779. },
  14780. {
  14781. name: "Omniversal",
  14782. height: math.unit(1e33, "lightyears")
  14783. },
  14784. {
  14785. name: "Beyond Infinite",
  14786. height: math.unit(1e100, "lightyears")
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14792. {
  14793. Side: {
  14794. height: math.unit(6, "feet"),
  14795. weight: math.unit(150, "lb"),
  14796. name: "Side",
  14797. image: {
  14798. source: "./media/characters/mira/side.svg",
  14799. extra: 900 / 799,
  14800. bottom: 0.02
  14801. }
  14802. },
  14803. },
  14804. [
  14805. {
  14806. name: "Human Size",
  14807. height: math.unit(6, "feet")
  14808. },
  14809. {
  14810. name: "Macro",
  14811. height: math.unit(100, "feet"),
  14812. default: true
  14813. },
  14814. {
  14815. name: "Megamacro",
  14816. height: math.unit(10, "miles")
  14817. },
  14818. {
  14819. name: "Gigamacro",
  14820. height: math.unit(25000, "miles")
  14821. },
  14822. {
  14823. name: "Teramacro",
  14824. height: math.unit(300, "AU")
  14825. },
  14826. {
  14827. name: "Full Size",
  14828. height: math.unit(4.5e10, "lightyears")
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(6, "feet"),
  14837. weight: math.unit(150, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/holly/front.svg",
  14841. extra: 639 / 606
  14842. }
  14843. },
  14844. back: {
  14845. height: math.unit(6, "feet"),
  14846. weight: math.unit(150, "lb"),
  14847. name: "Back",
  14848. image: {
  14849. source: "./media/characters/holly/back.svg",
  14850. extra: 623 / 598
  14851. }
  14852. },
  14853. frontWorking: {
  14854. height: math.unit(6, "feet"),
  14855. weight: math.unit(150, "lb"),
  14856. name: "Front (Working)",
  14857. image: {
  14858. source: "./media/characters/holly/front-working.svg",
  14859. extra: 607 / 577,
  14860. bottom: 0.048
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(12 + 3 / 12, "feet"),
  14868. default: true
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(6, "feet"),
  14877. weight: math.unit(150, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/porter/front.svg",
  14881. extra: 1,
  14882. bottom: 0.01
  14883. }
  14884. },
  14885. frontRobes: {
  14886. height: math.unit(6, "feet"),
  14887. weight: math.unit(150, "lb"),
  14888. name: "Front (Robes)",
  14889. image: {
  14890. source: "./media/characters/porter/front-robes.svg",
  14891. extra: 1.01,
  14892. bottom: 0.01
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Normal",
  14899. height: math.unit(11 + 9 / 12, "feet"),
  14900. default: true
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14906. {
  14907. legendary: {
  14908. height: math.unit(6, "feet"),
  14909. weight: math.unit(150, "lb"),
  14910. name: "Legendary",
  14911. image: {
  14912. source: "./media/characters/lucy/legendary.svg",
  14913. extra: 1355 / 1100,
  14914. bottom: 0.045
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Legendary",
  14921. height: math.unit(86882 * 2, "miles"),
  14922. default: true
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(6, "feet"),
  14931. weight: math.unit(150, "lb"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/drusilla/front.svg",
  14935. extra: 678 / 635,
  14936. bottom: 0.03
  14937. }
  14938. },
  14939. back: {
  14940. height: math.unit(6, "feet"),
  14941. weight: math.unit(150, "lb"),
  14942. name: "Back",
  14943. image: {
  14944. source: "./media/characters/drusilla/back.svg",
  14945. extra: 678 / 635,
  14946. bottom: 0.005
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Macro",
  14953. height: math.unit(100, "feet")
  14954. },
  14955. {
  14956. name: "Canon Height",
  14957. height: math.unit(2000, "feet"),
  14958. default: true
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(6, "feet"),
  14967. weight: math.unit(180, "lb"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/renard-thatch/front.svg",
  14971. extra: 2411 / 2275,
  14972. bottom: 0.01
  14973. }
  14974. },
  14975. frontPosing: {
  14976. height: math.unit(6, "feet"),
  14977. weight: math.unit(180, "lb"),
  14978. name: "Front (Posing)",
  14979. image: {
  14980. source: "./media/characters/renard-thatch/front-posing.svg",
  14981. extra: 2381 / 2261,
  14982. bottom: 0.01
  14983. }
  14984. },
  14985. back: {
  14986. height: math.unit(6, "feet"),
  14987. weight: math.unit(180, "lb"),
  14988. name: "Back",
  14989. image: {
  14990. source: "./media/characters/renard-thatch/back.svg",
  14991. extra: 2428 / 2288
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Micro",
  14998. height: math.unit(3, "inches")
  14999. },
  15000. {
  15001. name: "Default",
  15002. height: math.unit(6, "feet"),
  15003. default: true
  15004. },
  15005. {
  15006. name: "Macro",
  15007. height: math.unit(75, "feet")
  15008. },
  15009. ]
  15010. ))
  15011. characterMakers.push(() => makeCharacter(
  15012. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15013. {
  15014. front: {
  15015. height: math.unit(1450, "feet"),
  15016. weight: math.unit(1.21e6, "tons"),
  15017. name: "Front",
  15018. image: {
  15019. source: "./media/characters/sekvra/front.svg",
  15020. extra: 1193/1190,
  15021. bottom: 78/1271
  15022. }
  15023. },
  15024. side: {
  15025. height: math.unit(1450, "feet"),
  15026. weight: math.unit(1.21e6, "tons"),
  15027. name: "Side",
  15028. image: {
  15029. source: "./media/characters/sekvra/side.svg",
  15030. extra: 1193/1190,
  15031. bottom: 52/1245
  15032. }
  15033. },
  15034. back: {
  15035. height: math.unit(1450, "feet"),
  15036. weight: math.unit(1.21e6, "tons"),
  15037. name: "Back",
  15038. image: {
  15039. source: "./media/characters/sekvra/back.svg",
  15040. extra: 1219/1216,
  15041. bottom: 21/1240
  15042. }
  15043. },
  15044. frontClothed: {
  15045. height: math.unit(1450, "feet"),
  15046. weight: math.unit(1.21e6, "tons"),
  15047. name: "Front (Clothed)",
  15048. image: {
  15049. source: "./media/characters/sekvra/front-clothed.svg",
  15050. extra: 1192/1189,
  15051. bottom: 79/1271
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Macro",
  15058. height: math.unit(1450, "feet"),
  15059. default: true
  15060. },
  15061. {
  15062. name: "Megamacro",
  15063. height: math.unit(15000, "feet")
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(6, "feet"),
  15072. weight: math.unit(150, "lb"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/carmine/front.svg",
  15076. extra: 1557/1538,
  15077. bottom: 68/1625
  15078. }
  15079. },
  15080. frontArmor: {
  15081. height: math.unit(6, "feet"),
  15082. weight: math.unit(150, "lb"),
  15083. name: "Front (Armor)",
  15084. image: {
  15085. source: "./media/characters/carmine/front-armor.svg",
  15086. extra: 1549/1530,
  15087. bottom: 82/1631
  15088. }
  15089. },
  15090. mouth: {
  15091. height: math.unit(0.55, "feet"),
  15092. name: "Mouth",
  15093. image: {
  15094. source: "./media/characters/carmine/mouth.svg"
  15095. }
  15096. },
  15097. hand: {
  15098. height: math.unit(1.05, "feet"),
  15099. name: "Hand",
  15100. image: {
  15101. source: "./media/characters/carmine/hand.svg"
  15102. }
  15103. },
  15104. foot: {
  15105. height: math.unit(0.6, "feet"),
  15106. name: "Foot",
  15107. image: {
  15108. source: "./media/characters/carmine/foot.svg"
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Large",
  15115. height: math.unit(1, "mile")
  15116. },
  15117. {
  15118. name: "Huge",
  15119. height: math.unit(40, "miles"),
  15120. default: true
  15121. },
  15122. {
  15123. name: "Colossal",
  15124. height: math.unit(2500, "miles")
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15130. {
  15131. front: {
  15132. height: math.unit(6, "feet"),
  15133. weight: math.unit(150, "lb"),
  15134. name: "Front",
  15135. image: {
  15136. source: "./media/characters/elyssia/front.svg",
  15137. extra: 2201 / 2035,
  15138. bottom: 0.05
  15139. }
  15140. },
  15141. frontClothed: {
  15142. height: math.unit(6, "feet"),
  15143. weight: math.unit(150, "lb"),
  15144. name: "Front (Clothed)",
  15145. image: {
  15146. source: "./media/characters/elyssia/front-clothed.svg",
  15147. extra: 2201 / 2035,
  15148. bottom: 0.05
  15149. }
  15150. },
  15151. back: {
  15152. height: math.unit(6, "feet"),
  15153. weight: math.unit(150, "lb"),
  15154. name: "Back",
  15155. image: {
  15156. source: "./media/characters/elyssia/back.svg",
  15157. extra: 2201 / 2035,
  15158. bottom: 0.013
  15159. }
  15160. },
  15161. },
  15162. [
  15163. {
  15164. name: "Smaller",
  15165. height: math.unit(150, "feet")
  15166. },
  15167. {
  15168. name: "Standard",
  15169. height: math.unit(1400, "feet"),
  15170. default: true
  15171. },
  15172. {
  15173. name: "Distracted",
  15174. height: math.unit(15000, "feet")
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(7 + 4/12, "feet"),
  15183. weight: math.unit(690, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/geno-maxwell/front.svg",
  15187. extra: 984/856,
  15188. bottom: 87/1071
  15189. }
  15190. },
  15191. back: {
  15192. height: math.unit(7 + 4/12, "feet"),
  15193. weight: math.unit(690, "lb"),
  15194. name: "Back",
  15195. image: {
  15196. source: "./media/characters/geno-maxwell/back.svg",
  15197. extra: 981/854,
  15198. bottom: 57/1038
  15199. }
  15200. },
  15201. frontCostume: {
  15202. height: math.unit(7 + 4/12, "feet"),
  15203. weight: math.unit(690, "lb"),
  15204. name: "Front (Costume)",
  15205. image: {
  15206. source: "./media/characters/geno-maxwell/front-costume.svg",
  15207. extra: 984/856,
  15208. bottom: 87/1071
  15209. }
  15210. },
  15211. backcostume: {
  15212. height: math.unit(7 + 4/12, "feet"),
  15213. weight: math.unit(690, "lb"),
  15214. name: "Back (Costume)",
  15215. image: {
  15216. source: "./media/characters/geno-maxwell/back-costume.svg",
  15217. extra: 981/854,
  15218. bottom: 57/1038
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Micro",
  15225. height: math.unit(3, "inches")
  15226. },
  15227. {
  15228. name: "Normal",
  15229. height: math.unit(7 + 4 / 12, "feet"),
  15230. default: true
  15231. },
  15232. {
  15233. name: "Macro",
  15234. height: math.unit(220, "feet")
  15235. },
  15236. {
  15237. name: "Megamacro",
  15238. height: math.unit(11, "miles")
  15239. },
  15240. ]
  15241. ))
  15242. characterMakers.push(() => makeCharacter(
  15243. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15244. {
  15245. front: {
  15246. height: math.unit(7 + 4/12, "feet"),
  15247. weight: math.unit(750, "lb"),
  15248. name: "Front",
  15249. image: {
  15250. source: "./media/characters/regena-maxwell/front.svg",
  15251. extra: 984/856,
  15252. bottom: 87/1071
  15253. }
  15254. },
  15255. back: {
  15256. height: math.unit(7 + 4/12, "feet"),
  15257. weight: math.unit(750, "lb"),
  15258. name: "Back",
  15259. image: {
  15260. source: "./media/characters/regena-maxwell/back.svg",
  15261. extra: 981/854,
  15262. bottom: 57/1038
  15263. }
  15264. },
  15265. frontCostume: {
  15266. height: math.unit(7 + 4/12, "feet"),
  15267. weight: math.unit(750, "lb"),
  15268. name: "Front (Costume)",
  15269. image: {
  15270. source: "./media/characters/regena-maxwell/front-costume.svg",
  15271. extra: 984/856,
  15272. bottom: 87/1071
  15273. }
  15274. },
  15275. backcostume: {
  15276. height: math.unit(7 + 4/12, "feet"),
  15277. weight: math.unit(750, "lb"),
  15278. name: "Back (Costume)",
  15279. image: {
  15280. source: "./media/characters/regena-maxwell/back-costume.svg",
  15281. extra: 981/854,
  15282. bottom: 57/1038
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Normal",
  15289. height: math.unit(7 + 4 / 12, "feet"),
  15290. default: true
  15291. },
  15292. {
  15293. name: "Macro",
  15294. height: math.unit(220, "feet")
  15295. },
  15296. {
  15297. name: "Megamacro",
  15298. height: math.unit(11, "miles")
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15304. {
  15305. front: {
  15306. height: math.unit(6, "feet"),
  15307. weight: math.unit(150, "lb"),
  15308. name: "Front",
  15309. image: {
  15310. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15311. extra: 860 / 690,
  15312. bottom: 0.03
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(1.7, "meters"),
  15320. default: true
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15326. {
  15327. front: {
  15328. height: math.unit(6, "feet"),
  15329. weight: math.unit(150, "lb"),
  15330. name: "Front",
  15331. image: {
  15332. source: "./media/characters/quilly/front.svg",
  15333. extra: 890 / 776
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Gigamacro",
  15340. height: math.unit(404090, "miles"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(7 + 8 / 12, "feet"),
  15350. weight: math.unit(350, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/tempest/front.svg",
  15354. extra: 1175 / 1086,
  15355. bottom: 0.02
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(7 + 8 / 12, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15369. {
  15370. side: {
  15371. height: math.unit(4 + 5 / 12, "feet"),
  15372. weight: math.unit(80, "lb"),
  15373. name: "Side",
  15374. image: {
  15375. source: "./media/characters/rodger/side.svg",
  15376. extra: 1235 / 1118
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Micro",
  15383. height: math.unit(1, "inch")
  15384. },
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(4 + 5 / 12, "feet"),
  15388. default: true
  15389. },
  15390. {
  15391. name: "Macro",
  15392. height: math.unit(120, "feet")
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(150, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/danyel/front.svg",
  15405. extra: 1185 / 1123,
  15406. bottom: 0.05
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Shrunken",
  15413. height: math.unit(0.5, "mm")
  15414. },
  15415. {
  15416. name: "Micro",
  15417. height: math.unit(1, "mm"),
  15418. default: true
  15419. },
  15420. {
  15421. name: "Upsized",
  15422. height: math.unit(5 + 5 / 12, "feet")
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(5 + 6 / 12, "feet"),
  15431. weight: math.unit(200, "lb"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/vivian-bijoux/front.svg",
  15435. extra: 1217/1209,
  15436. bottom: 76/1293
  15437. }
  15438. },
  15439. back: {
  15440. height: math.unit(5 + 6 / 12, "feet"),
  15441. weight: math.unit(200, "lb"),
  15442. name: "Back",
  15443. image: {
  15444. source: "./media/characters/vivian-bijoux/back.svg",
  15445. extra: 1214/1208,
  15446. bottom: 51/1265
  15447. }
  15448. },
  15449. dressed: {
  15450. height: math.unit(5 + 6 / 12, "feet"),
  15451. weight: math.unit(200, "lb"),
  15452. name: "Dressed",
  15453. image: {
  15454. source: "./media/characters/vivian-bijoux/dressed.svg",
  15455. extra: 1217/1209,
  15456. bottom: 76/1293
  15457. }
  15458. },
  15459. },
  15460. [
  15461. {
  15462. name: "Normal",
  15463. height: math.unit(5 + 6 / 12, "feet"),
  15464. default: true
  15465. },
  15466. {
  15467. name: "Bad Dream",
  15468. height: math.unit(500, "feet")
  15469. },
  15470. {
  15471. name: "Nightmare",
  15472. height: math.unit(500, "miles")
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15478. {
  15479. front: {
  15480. height: math.unit(6 + 1 / 12, "feet"),
  15481. weight: math.unit(260, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/zeta/front.svg",
  15485. extra: 1968 / 1889,
  15486. bottom: 0.06
  15487. }
  15488. },
  15489. back: {
  15490. height: math.unit(6 + 1 / 12, "feet"),
  15491. weight: math.unit(260, "lb"),
  15492. name: "Back",
  15493. image: {
  15494. source: "./media/characters/zeta/back.svg",
  15495. extra: 1944 / 1858,
  15496. bottom: 0.03
  15497. }
  15498. },
  15499. hand: {
  15500. height: math.unit(1.112, "feet"),
  15501. name: "Hand",
  15502. image: {
  15503. source: "./media/characters/zeta/hand.svg"
  15504. }
  15505. },
  15506. foot: {
  15507. height: math.unit(1.48, "feet"),
  15508. name: "Foot",
  15509. image: {
  15510. source: "./media/characters/zeta/foot.svg"
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Micro",
  15517. height: math.unit(6, "inches")
  15518. },
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(6 + 1 / 12, "feet"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Macro",
  15526. height: math.unit(20, "feet")
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(150, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/jamie-larsen/front.svg",
  15539. extra: 962 / 933,
  15540. bottom: 0.02
  15541. }
  15542. },
  15543. back: {
  15544. height: math.unit(6, "feet"),
  15545. weight: math.unit(150, "lb"),
  15546. name: "Back",
  15547. image: {
  15548. source: "./media/characters/jamie-larsen/back.svg",
  15549. extra: 997 / 946
  15550. }
  15551. },
  15552. },
  15553. [
  15554. {
  15555. name: "Macro",
  15556. height: math.unit(28 + 7 / 12, "feet"),
  15557. default: true
  15558. },
  15559. {
  15560. name: "Macro+",
  15561. height: math.unit(180, "feet")
  15562. },
  15563. {
  15564. name: "Megamacro",
  15565. height: math.unit(10, "miles")
  15566. },
  15567. {
  15568. name: "Gigamacro",
  15569. height: math.unit(200000, "miles")
  15570. },
  15571. ]
  15572. ))
  15573. characterMakers.push(() => makeCharacter(
  15574. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15575. {
  15576. front: {
  15577. height: math.unit(6, "feet"),
  15578. weight: math.unit(120, "lb"),
  15579. name: "Front",
  15580. image: {
  15581. source: "./media/characters/vance/front.svg",
  15582. extra: 1980 / 1890,
  15583. bottom: 0.09
  15584. }
  15585. },
  15586. back: {
  15587. height: math.unit(6, "feet"),
  15588. weight: math.unit(120, "lb"),
  15589. name: "Back",
  15590. image: {
  15591. source: "./media/characters/vance/back.svg",
  15592. extra: 2081 / 1994,
  15593. bottom: 0.014
  15594. }
  15595. },
  15596. hand: {
  15597. height: math.unit(0.88, "feet"),
  15598. name: "Hand",
  15599. image: {
  15600. source: "./media/characters/vance/hand.svg"
  15601. }
  15602. },
  15603. foot: {
  15604. height: math.unit(0.64, "feet"),
  15605. name: "Foot",
  15606. image: {
  15607. source: "./media/characters/vance/foot.svg"
  15608. }
  15609. },
  15610. },
  15611. [
  15612. {
  15613. name: "Small",
  15614. height: math.unit(90, "feet"),
  15615. default: true
  15616. },
  15617. {
  15618. name: "Macro",
  15619. height: math.unit(100, "meters")
  15620. },
  15621. {
  15622. name: "Megamacro",
  15623. height: math.unit(15, "miles")
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(6, "feet"),
  15632. weight: math.unit(180, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/xochitl/front.svg",
  15636. extra: 2297 / 2261,
  15637. bottom: 0.065
  15638. }
  15639. },
  15640. back: {
  15641. height: math.unit(6, "feet"),
  15642. weight: math.unit(180, "lb"),
  15643. name: "Back",
  15644. image: {
  15645. source: "./media/characters/xochitl/back.svg",
  15646. extra: 2386 / 2354,
  15647. bottom: 0.01
  15648. }
  15649. },
  15650. foot: {
  15651. height: math.unit(6 / 5 * 1.15, "feet"),
  15652. weight: math.unit(150, "lb"),
  15653. name: "Foot",
  15654. image: {
  15655. source: "./media/characters/xochitl/foot.svg"
  15656. }
  15657. },
  15658. },
  15659. [
  15660. {
  15661. name: "Macro",
  15662. height: math.unit(80, "feet")
  15663. },
  15664. {
  15665. name: "Macro+",
  15666. height: math.unit(400, "feet"),
  15667. default: true
  15668. },
  15669. {
  15670. name: "Gigamacro",
  15671. height: math.unit(80000, "miles")
  15672. },
  15673. {
  15674. name: "Gigamacro+",
  15675. height: math.unit(400000, "miles")
  15676. },
  15677. {
  15678. name: "Teramacro",
  15679. height: math.unit(300, "AU")
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(6, "feet"),
  15688. weight: math.unit(150, "lb"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/vincent/front.svg",
  15692. extra: 1130 / 1080,
  15693. bottom: 0.055
  15694. }
  15695. },
  15696. beak: {
  15697. height: math.unit(6 * 0.1, "feet"),
  15698. name: "Beak",
  15699. image: {
  15700. source: "./media/characters/vincent/beak.svg"
  15701. }
  15702. },
  15703. hand: {
  15704. height: math.unit(6 * 0.85, "feet"),
  15705. weight: math.unit(150, "lb"),
  15706. name: "Hand",
  15707. image: {
  15708. source: "./media/characters/vincent/hand.svg"
  15709. }
  15710. },
  15711. foot: {
  15712. height: math.unit(6 * 0.19, "feet"),
  15713. weight: math.unit(150, "lb"),
  15714. name: "Foot",
  15715. image: {
  15716. source: "./media/characters/vincent/foot.svg"
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Base",
  15723. height: math.unit(6 + 5 / 12, "feet"),
  15724. default: true
  15725. },
  15726. {
  15727. name: "Macro",
  15728. height: math.unit(300, "feet")
  15729. },
  15730. {
  15731. name: "Megamacro",
  15732. height: math.unit(2, "miles")
  15733. },
  15734. {
  15735. name: "Gigamacro",
  15736. height: math.unit(1000, "miles")
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15742. {
  15743. front: {
  15744. height: math.unit(2, "meters"),
  15745. weight: math.unit(500, "kg"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/coatl/front.svg",
  15749. extra: 3948 / 3500,
  15750. bottom: 0.082
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Normal",
  15757. height: math.unit(4, "meters")
  15758. },
  15759. {
  15760. name: "Macro",
  15761. height: math.unit(100, "meters"),
  15762. default: true
  15763. },
  15764. {
  15765. name: "Macro+",
  15766. height: math.unit(300, "meters")
  15767. },
  15768. {
  15769. name: "Megamacro",
  15770. height: math.unit(3, "gigameters")
  15771. },
  15772. {
  15773. name: "Megamacro+",
  15774. height: math.unit(300, "terameters")
  15775. },
  15776. {
  15777. name: "Megamacro++",
  15778. height: math.unit(3, "lightyears")
  15779. },
  15780. ]
  15781. ))
  15782. characterMakers.push(() => makeCharacter(
  15783. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15784. {
  15785. front: {
  15786. height: math.unit(6, "feet"),
  15787. weight: math.unit(50, "kg"),
  15788. name: "front",
  15789. image: {
  15790. source: "./media/characters/shiroryu/front.svg",
  15791. extra: 1990 / 1935
  15792. }
  15793. },
  15794. },
  15795. [
  15796. {
  15797. name: "Mortal Mingling",
  15798. height: math.unit(3, "meters")
  15799. },
  15800. {
  15801. name: "Kaiju-ish",
  15802. height: math.unit(250, "meters")
  15803. },
  15804. {
  15805. name: "Somewhat Godly",
  15806. height: math.unit(400, "km"),
  15807. default: true
  15808. },
  15809. {
  15810. name: "Planetary",
  15811. height: math.unit(300, "megameters")
  15812. },
  15813. {
  15814. name: "Galaxy-dwarfing",
  15815. height: math.unit(450, "kiloparsecs")
  15816. },
  15817. {
  15818. name: "Universe Eater",
  15819. height: math.unit(150, "gigaparsecs")
  15820. },
  15821. {
  15822. name: "Almost Immeasurable",
  15823. height: math.unit(1.3e266, "yottaparsecs")
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(6, "feet"),
  15832. weight: math.unit(150, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/umeko/front.svg",
  15836. extra: 1,
  15837. bottom: 0.019
  15838. }
  15839. },
  15840. frontArmored: {
  15841. height: math.unit(6, "feet"),
  15842. weight: math.unit(150, "lb"),
  15843. name: "Front (Armored)",
  15844. image: {
  15845. source: "./media/characters/umeko/front-armored.svg",
  15846. extra: 1,
  15847. bottom: 0.021
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Macro",
  15854. height: math.unit(220, "feet"),
  15855. default: true
  15856. },
  15857. {
  15858. name: "Guardian Dragon",
  15859. height: math.unit(50, "miles")
  15860. },
  15861. {
  15862. name: "Cosmic",
  15863. height: math.unit(800000, "miles")
  15864. },
  15865. ]
  15866. ))
  15867. characterMakers.push(() => makeCharacter(
  15868. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15869. {
  15870. front: {
  15871. height: math.unit(6, "feet"),
  15872. weight: math.unit(150, "lb"),
  15873. name: "Front",
  15874. image: {
  15875. source: "./media/characters/cassidy/front.svg",
  15876. extra: 810/808,
  15877. bottom: 41/851
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Canon Height",
  15884. height: math.unit(120, "feet"),
  15885. default: true
  15886. },
  15887. {
  15888. name: "Macro+",
  15889. height: math.unit(400, "feet")
  15890. },
  15891. {
  15892. name: "Macro++",
  15893. height: math.unit(4000, "feet")
  15894. },
  15895. {
  15896. name: "Megamacro",
  15897. height: math.unit(3, "miles")
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15903. {
  15904. front: {
  15905. height: math.unit(6, "feet"),
  15906. weight: math.unit(150, "lb"),
  15907. name: "Front",
  15908. image: {
  15909. source: "./media/characters/isaac/front.svg",
  15910. extra: 896 / 815,
  15911. bottom: 0.11
  15912. }
  15913. },
  15914. },
  15915. [
  15916. {
  15917. name: "Human Size",
  15918. height: math.unit(8, "feet"),
  15919. default: true
  15920. },
  15921. {
  15922. name: "Macro",
  15923. height: math.unit(400, "feet")
  15924. },
  15925. {
  15926. name: "Megamacro",
  15927. height: math.unit(50, "miles")
  15928. },
  15929. {
  15930. name: "Canon Height",
  15931. height: math.unit(200, "AU")
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(6, "feet"),
  15940. weight: math.unit(72, "kg"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/sleekit/front.svg",
  15944. extra: 4693 / 4487,
  15945. bottom: 0.012
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Minimum Height",
  15952. height: math.unit(10, "meters")
  15953. },
  15954. {
  15955. name: "Smaller",
  15956. height: math.unit(25, "meters")
  15957. },
  15958. {
  15959. name: "Larger",
  15960. height: math.unit(38, "meters"),
  15961. default: true
  15962. },
  15963. {
  15964. name: "Maximum height",
  15965. height: math.unit(100, "meters")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(6, "feet"),
  15974. weight: math.unit(150, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/nillia/front.svg",
  15978. extra: 719/665,
  15979. bottom: 6/725
  15980. }
  15981. },
  15982. back: {
  15983. height: math.unit(6, "feet"),
  15984. weight: math.unit(150, "lb"),
  15985. name: "Back",
  15986. image: {
  15987. source: "./media/characters/nillia/back.svg",
  15988. extra: 705/651,
  15989. bottom: 5/710
  15990. }
  15991. },
  15992. },
  15993. [
  15994. {
  15995. name: "Canon Height",
  15996. height: math.unit(489, "feet"),
  15997. default: true
  15998. }
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16003. {
  16004. front: {
  16005. height: math.unit(6, "feet"),
  16006. weight: math.unit(150, "lb"),
  16007. name: "Front",
  16008. image: {
  16009. source: "./media/characters/mesmyriza/front.svg",
  16010. extra: 1541/1291,
  16011. bottom: 87/1628
  16012. }
  16013. },
  16014. foot: {
  16015. height: math.unit(6 / (250 / 35), "feet"),
  16016. name: "Foot",
  16017. image: {
  16018. source: "./media/characters/mesmyriza/foot.svg"
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Macro",
  16025. height: math.unit(457, "meters"),
  16026. default: true
  16027. },
  16028. {
  16029. name: "Megamacro",
  16030. height: math.unit(8, "megameters")
  16031. },
  16032. ]
  16033. ))
  16034. characterMakers.push(() => makeCharacter(
  16035. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16036. {
  16037. front: {
  16038. height: math.unit(6, "feet"),
  16039. weight: math.unit(250, "lb"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/saudade/front.svg",
  16043. extra: 1172 / 1139,
  16044. bottom: 0.035
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Micro",
  16051. height: math.unit(3, "inches")
  16052. },
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(6, "feet"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(50, "feet")
  16061. },
  16062. {
  16063. name: "Megamacro",
  16064. height: math.unit(2800, "feet")
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(5 + 4 / 12, "feet"),
  16073. weight: math.unit(100, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/keireer/front.svg",
  16077. extra: 716 / 666,
  16078. bottom: 0.05
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Normal",
  16085. height: math.unit(5 + 4 / 12, "feet"),
  16086. default: true
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(5.5, "feet"),
  16095. weight: math.unit(90, "kg"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/mirja/front.svg",
  16099. extra: 1452/1262,
  16100. bottom: 67/1519
  16101. }
  16102. },
  16103. frontDressed: {
  16104. height: math.unit(5.5, "feet"),
  16105. weight: math.unit(90, "lb"),
  16106. name: "Front (Dressed)",
  16107. image: {
  16108. source: "./media/characters/mirja/dressed.svg",
  16109. extra: 1452/1262,
  16110. bottom: 67/1519
  16111. }
  16112. },
  16113. back: {
  16114. height: math.unit(6, "feet"),
  16115. weight: math.unit(90, "lb"),
  16116. name: "Back",
  16117. image: {
  16118. source: "./media/characters/mirja/back.svg",
  16119. extra: 1892/1795,
  16120. bottom: 48/1940
  16121. }
  16122. },
  16123. maw: {
  16124. height: math.unit(1.312, "feet"),
  16125. name: "Maw",
  16126. image: {
  16127. source: "./media/characters/mirja/maw.svg"
  16128. }
  16129. },
  16130. paw: {
  16131. height: math.unit(1.15, "feet"),
  16132. name: "Paw",
  16133. image: {
  16134. source: "./media/characters/mirja/paw.svg"
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "\"Incognito\"",
  16141. height: math.unit(3, "meters")
  16142. },
  16143. {
  16144. name: "Strolling Size",
  16145. height: math.unit(15, "km")
  16146. },
  16147. {
  16148. name: "Larger Strolling Size",
  16149. height: math.unit(400, "km")
  16150. },
  16151. {
  16152. name: "Preferred Size",
  16153. height: math.unit(5000, "km"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "True Size",
  16158. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(15, "feet"),
  16167. weight: math.unit(880, "kg"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/nightraver/front.svg",
  16171. extra: 2444 / 2160,
  16172. bottom: 0.027
  16173. }
  16174. },
  16175. back: {
  16176. height: math.unit(15, "feet"),
  16177. weight: math.unit(880, "kg"),
  16178. name: "Back",
  16179. image: {
  16180. source: "./media/characters/nightraver/back.svg",
  16181. extra: 2309 / 2180,
  16182. bottom: 0.005
  16183. }
  16184. },
  16185. sole: {
  16186. height: math.unit(2.878, "feet"),
  16187. name: "Sole",
  16188. image: {
  16189. source: "./media/characters/nightraver/sole.svg"
  16190. }
  16191. },
  16192. foot: {
  16193. height: math.unit(2.285, "feet"),
  16194. name: "Foot",
  16195. image: {
  16196. source: "./media/characters/nightraver/foot.svg"
  16197. }
  16198. },
  16199. maw: {
  16200. height: math.unit(2.67, "feet"),
  16201. name: "Maw",
  16202. image: {
  16203. source: "./media/characters/nightraver/maw.svg"
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Micro",
  16210. height: math.unit(1, "cm")
  16211. },
  16212. {
  16213. name: "Normal",
  16214. height: math.unit(15, "feet"),
  16215. default: true
  16216. },
  16217. {
  16218. name: "Macro",
  16219. height: math.unit(300, "feet")
  16220. },
  16221. {
  16222. name: "Megamacro",
  16223. height: math.unit(300, "miles")
  16224. },
  16225. {
  16226. name: "Gigamacro",
  16227. height: math.unit(10000, "miles")
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16233. {
  16234. side: {
  16235. height: math.unit(2, "inches"),
  16236. weight: math.unit(5, "grams"),
  16237. name: "Side",
  16238. image: {
  16239. source: "./media/characters/arc/side.svg"
  16240. }
  16241. },
  16242. },
  16243. [
  16244. {
  16245. name: "Micro",
  16246. height: math.unit(2, "inches"),
  16247. default: true
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16253. {
  16254. front: {
  16255. height: math.unit(1.1938, "meters"),
  16256. weight: math.unit(54, "kg"),
  16257. name: "Front",
  16258. image: {
  16259. source: "./media/characters/nebula-shahar/front.svg",
  16260. extra: 1642 / 1436,
  16261. bottom: 0.06
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Megamicro",
  16268. height: math.unit(0.3, "mm")
  16269. },
  16270. {
  16271. name: "Micro",
  16272. height: math.unit(3, "cm")
  16273. },
  16274. {
  16275. name: "Normal",
  16276. height: math.unit(138, "cm"),
  16277. default: true
  16278. },
  16279. {
  16280. name: "Macro",
  16281. height: math.unit(30, "m")
  16282. },
  16283. ]
  16284. ))
  16285. characterMakers.push(() => makeCharacter(
  16286. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16287. {
  16288. front: {
  16289. height: math.unit(5.24, "feet"),
  16290. weight: math.unit(150, "lb"),
  16291. name: "Front",
  16292. image: {
  16293. source: "./media/characters/shayla/front.svg",
  16294. extra: 1512 / 1414,
  16295. bottom: 0.01
  16296. }
  16297. },
  16298. back: {
  16299. height: math.unit(5.24, "feet"),
  16300. weight: math.unit(150, "lb"),
  16301. name: "Back",
  16302. image: {
  16303. source: "./media/characters/shayla/back.svg",
  16304. extra: 1512 / 1414
  16305. }
  16306. },
  16307. hand: {
  16308. height: math.unit(0.7781496062992126, "feet"),
  16309. name: "Hand",
  16310. image: {
  16311. source: "./media/characters/shayla/hand.svg"
  16312. }
  16313. },
  16314. foot: {
  16315. height: math.unit(1.4206036745406823, "feet"),
  16316. name: "Foot",
  16317. image: {
  16318. source: "./media/characters/shayla/foot.svg"
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Micro",
  16325. height: math.unit(0.32, "feet")
  16326. },
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(5.24, "feet"),
  16330. default: true
  16331. },
  16332. {
  16333. name: "Macro",
  16334. height: math.unit(492.12, "feet")
  16335. },
  16336. {
  16337. name: "Megamacro",
  16338. height: math.unit(186.41, "miles")
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(2.2, "m"),
  16347. weight: math.unit(120, "kg"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/pia-jr/front.svg",
  16351. extra: 1000 / 970,
  16352. bottom: 0.035
  16353. }
  16354. },
  16355. hand: {
  16356. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16357. name: "Hand",
  16358. image: {
  16359. source: "./media/characters/pia-jr/hand.svg"
  16360. }
  16361. },
  16362. paw: {
  16363. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16364. name: "Paw",
  16365. image: {
  16366. source: "./media/characters/pia-jr/paw.svg"
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Micro",
  16373. height: math.unit(1.2, "cm")
  16374. },
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(2.2, "m"),
  16378. default: true
  16379. },
  16380. {
  16381. name: "Macro",
  16382. height: math.unit(180, "m")
  16383. },
  16384. {
  16385. name: "Megamacro",
  16386. height: math.unit(420, "km")
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16392. {
  16393. front: {
  16394. height: math.unit(2, "m"),
  16395. weight: math.unit(115, "kg"),
  16396. name: "Front",
  16397. image: {
  16398. source: "./media/characters/pia-sr/front.svg",
  16399. extra: 760 / 730,
  16400. bottom: 0.015
  16401. }
  16402. },
  16403. back: {
  16404. height: math.unit(2, "m"),
  16405. weight: math.unit(115, "kg"),
  16406. name: "Back",
  16407. image: {
  16408. source: "./media/characters/pia-sr/back.svg",
  16409. extra: 760 / 730,
  16410. bottom: 0.01
  16411. }
  16412. },
  16413. hand: {
  16414. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16415. name: "Hand",
  16416. image: {
  16417. source: "./media/characters/pia-sr/hand.svg"
  16418. }
  16419. },
  16420. foot: {
  16421. height: math.unit(1.83, "feet"),
  16422. name: "Foot",
  16423. image: {
  16424. source: "./media/characters/pia-sr/foot.svg"
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Micro",
  16431. height: math.unit(88, "mm")
  16432. },
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(2, "m"),
  16436. default: true
  16437. },
  16438. {
  16439. name: "Macro",
  16440. height: math.unit(200, "m")
  16441. },
  16442. {
  16443. name: "Megamacro",
  16444. height: math.unit(420, "km")
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(8 + 2 / 12, "feet"),
  16453. weight: math.unit(300, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/kibibyte/front.svg",
  16457. extra: 2221 / 2098,
  16458. bottom: 0.04
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(8 + 2 / 12, "feet"),
  16466. default: true
  16467. },
  16468. {
  16469. name: "Socialable Macro",
  16470. height: math.unit(50, "feet")
  16471. },
  16472. {
  16473. name: "Macro",
  16474. height: math.unit(300, "feet")
  16475. },
  16476. {
  16477. name: "Megamacro",
  16478. height: math.unit(500, "miles")
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(6, "feet"),
  16487. weight: math.unit(150, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/felix/front.svg",
  16491. extra: 762 / 722,
  16492. bottom: 0.02
  16493. }
  16494. },
  16495. frontClothed: {
  16496. height: math.unit(6, "feet"),
  16497. weight: math.unit(150, "lb"),
  16498. name: "Front (Clothed)",
  16499. image: {
  16500. source: "./media/characters/felix/front-clothed.svg",
  16501. extra: 762 / 722,
  16502. bottom: 0.02
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(6 + 8 / 12, "feet"),
  16510. default: true
  16511. },
  16512. {
  16513. name: "Macro",
  16514. height: math.unit(2600, "feet")
  16515. },
  16516. {
  16517. name: "Megamacro",
  16518. height: math.unit(450, "miles")
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16524. {
  16525. front: {
  16526. height: math.unit(6 + 1 / 12, "feet"),
  16527. weight: math.unit(250, "lb"),
  16528. name: "Front",
  16529. image: {
  16530. source: "./media/characters/tobo/front.svg",
  16531. extra: 608 / 586,
  16532. bottom: 0.023
  16533. }
  16534. },
  16535. back: {
  16536. height: math.unit(6 + 1 / 12, "feet"),
  16537. weight: math.unit(250, "lb"),
  16538. name: "Back",
  16539. image: {
  16540. source: "./media/characters/tobo/back.svg",
  16541. extra: 608 / 586
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Nano",
  16548. height: math.unit(2, "nm")
  16549. },
  16550. {
  16551. name: "Megamicro",
  16552. height: math.unit(0.1, "mm")
  16553. },
  16554. {
  16555. name: "Micro",
  16556. height: math.unit(1, "inch"),
  16557. default: true
  16558. },
  16559. {
  16560. name: "Human-sized",
  16561. height: math.unit(6 + 1 / 12, "feet")
  16562. },
  16563. {
  16564. name: "Macro",
  16565. height: math.unit(250, "feet")
  16566. },
  16567. {
  16568. name: "Megamacro",
  16569. height: math.unit(75, "miles")
  16570. },
  16571. {
  16572. name: "Texas-sized",
  16573. height: math.unit(750, "miles")
  16574. },
  16575. {
  16576. name: "Teramacro",
  16577. height: math.unit(50000, "miles")
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16583. {
  16584. front: {
  16585. height: math.unit(6, "feet"),
  16586. weight: math.unit(269, "lb"),
  16587. name: "Front",
  16588. image: {
  16589. source: "./media/characters/danny-kapowsky/front.svg",
  16590. extra: 766 / 736,
  16591. bottom: 0.044
  16592. }
  16593. },
  16594. back: {
  16595. height: math.unit(6, "feet"),
  16596. weight: math.unit(269, "lb"),
  16597. name: "Back",
  16598. image: {
  16599. source: "./media/characters/danny-kapowsky/back.svg",
  16600. extra: 797 / 760,
  16601. bottom: 0.025
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Macro",
  16608. height: math.unit(150, "feet"),
  16609. default: true
  16610. },
  16611. {
  16612. name: "Macro+",
  16613. height: math.unit(200, "feet")
  16614. },
  16615. {
  16616. name: "Macro++",
  16617. height: math.unit(300, "feet")
  16618. },
  16619. {
  16620. name: "Macro+++",
  16621. height: math.unit(400, "feet")
  16622. },
  16623. ]
  16624. ))
  16625. characterMakers.push(() => makeCharacter(
  16626. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16627. {
  16628. side: {
  16629. height: math.unit(6, "feet"),
  16630. weight: math.unit(170, "lb"),
  16631. name: "Side",
  16632. image: {
  16633. source: "./media/characters/finn/side.svg",
  16634. extra: 1953 / 1807,
  16635. bottom: 0.057
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Megamacro",
  16642. height: math.unit(14445, "feet"),
  16643. default: true
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16649. {
  16650. front: {
  16651. height: math.unit(5 + 6 / 12, "feet"),
  16652. weight: math.unit(125, "lb"),
  16653. name: "Front",
  16654. image: {
  16655. source: "./media/characters/roy/front.svg",
  16656. extra: 1,
  16657. bottom: 0.11
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Micro",
  16664. height: math.unit(3, "inches"),
  16665. default: true
  16666. },
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(5 + 6 / 12, "feet")
  16670. },
  16671. {
  16672. name: "Lesser Macro",
  16673. height: math.unit(60, "feet")
  16674. },
  16675. {
  16676. name: "Greater Macro",
  16677. height: math.unit(120, "feet")
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(6, "feet"),
  16686. weight: math.unit(100, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/aevsivs/front.svg",
  16690. extra: 1,
  16691. bottom: 0.03
  16692. }
  16693. },
  16694. back: {
  16695. height: math.unit(6, "feet"),
  16696. weight: math.unit(100, "lb"),
  16697. name: "Back",
  16698. image: {
  16699. source: "./media/characters/aevsivs/back.svg"
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Micro",
  16706. height: math.unit(2, "inches"),
  16707. default: true
  16708. },
  16709. {
  16710. name: "Normal",
  16711. height: math.unit(5, "feet")
  16712. },
  16713. ]
  16714. ))
  16715. characterMakers.push(() => makeCharacter(
  16716. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16717. {
  16718. front: {
  16719. height: math.unit(5 + 7 / 12, "feet"),
  16720. weight: math.unit(159, "lb"),
  16721. name: "Front",
  16722. image: {
  16723. source: "./media/characters/hildegard/front.svg",
  16724. extra: 289 / 269,
  16725. bottom: 7.63 / 297.8
  16726. }
  16727. },
  16728. back: {
  16729. height: math.unit(5 + 7 / 12, "feet"),
  16730. weight: math.unit(159, "lb"),
  16731. name: "Back",
  16732. image: {
  16733. source: "./media/characters/hildegard/back.svg",
  16734. extra: 280 / 260,
  16735. bottom: 2.3 / 282
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(5 + 7 / 12, "feet"),
  16743. default: true
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16749. {
  16750. bernard: {
  16751. height: math.unit(2 + 7 / 12, "feet"),
  16752. weight: math.unit(66, "lb"),
  16753. name: "Bernard",
  16754. rename: true,
  16755. image: {
  16756. source: "./media/characters/bernard-wilder/bernard.svg",
  16757. extra: 192 / 128,
  16758. bottom: 0.05
  16759. }
  16760. },
  16761. wilder: {
  16762. height: math.unit(5 + 8 / 12, "feet"),
  16763. weight: math.unit(143, "lb"),
  16764. name: "Wilder",
  16765. rename: true,
  16766. image: {
  16767. source: "./media/characters/bernard-wilder/wilder.svg",
  16768. extra: 361 / 312,
  16769. bottom: 0.02
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(2 + 7 / 12, "feet"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16783. {
  16784. anthro: {
  16785. height: math.unit(6 + 1 / 12, "feet"),
  16786. weight: math.unit(155, "lb"),
  16787. name: "Anthro",
  16788. image: {
  16789. source: "./media/characters/hearth/anthro.svg",
  16790. extra: 1178/1136,
  16791. bottom: 28/1206
  16792. }
  16793. },
  16794. feral: {
  16795. height: math.unit(3.78, "feet"),
  16796. weight: math.unit(35, "kg"),
  16797. name: "Feral",
  16798. image: {
  16799. source: "./media/characters/hearth/feral.svg",
  16800. extra: 153 / 135,
  16801. bottom: 0.03
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Normal",
  16808. height: math.unit(6 + 1 / 12, "feet"),
  16809. default: true
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(6, "feet"),
  16818. weight: math.unit(182, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/ingrid/front.svg",
  16822. extra: 294 / 268,
  16823. bottom: 0.027
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(6, "feet"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16837. {
  16838. eevee: {
  16839. height: math.unit(2 + 10 / 12, "feet"),
  16840. weight: math.unit(86, "lb"),
  16841. name: "Malgam",
  16842. image: {
  16843. source: "./media/characters/malgam/eevee.svg",
  16844. extra: 952/784,
  16845. bottom: 38/990
  16846. }
  16847. },
  16848. sylveon: {
  16849. height: math.unit(4, "feet"),
  16850. weight: math.unit(101, "lb"),
  16851. name: "Future Malgam",
  16852. rename: true,
  16853. image: {
  16854. source: "./media/characters/malgam/sylveon.svg",
  16855. extra: 371 / 325,
  16856. bottom: 0.015
  16857. }
  16858. },
  16859. gigantamax: {
  16860. height: math.unit(50, "feet"),
  16861. name: "Gigantamax Malgam",
  16862. rename: true,
  16863. image: {
  16864. source: "./media/characters/malgam/gigantamax.svg"
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Normal",
  16871. height: math.unit(2 + 10 / 12, "feet"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16878. {
  16879. front: {
  16880. height: math.unit(5 + 11 / 12, "feet"),
  16881. weight: math.unit(188, "lb"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/fleur/front.svg",
  16885. extra: 309 / 283,
  16886. bottom: 0.007
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(5 + 11 / 12, "feet"),
  16894. default: true
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16900. {
  16901. front: {
  16902. height: math.unit(5 + 4 / 12, "feet"),
  16903. weight: math.unit(122, "lb"),
  16904. name: "Front",
  16905. image: {
  16906. source: "./media/characters/jude/front.svg",
  16907. extra: 288 / 273,
  16908. bottom: 0.03
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Normal",
  16915. height: math.unit(5 + 4 / 12, "feet"),
  16916. default: true
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(5 + 11 / 12, "feet"),
  16925. weight: math.unit(190, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/seara/front.svg",
  16929. extra: 1,
  16930. bottom: 0.05
  16931. }
  16932. },
  16933. },
  16934. [
  16935. {
  16936. name: "Normal",
  16937. height: math.unit(5 + 11 / 12, "feet"),
  16938. default: true
  16939. },
  16940. ]
  16941. ))
  16942. characterMakers.push(() => makeCharacter(
  16943. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16944. {
  16945. front: {
  16946. height: math.unit(16 + 5 / 12, "feet"),
  16947. weight: math.unit(524, "lb"),
  16948. name: "Front",
  16949. image: {
  16950. source: "./media/characters/caspian-lugia/front.svg",
  16951. extra: 1,
  16952. bottom: 0.04
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Normal",
  16959. height: math.unit(16 + 5 / 12, "feet"),
  16960. default: true
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16966. {
  16967. front: {
  16968. height: math.unit(5 + 7 / 12, "feet"),
  16969. weight: math.unit(170, "lb"),
  16970. name: "Front",
  16971. image: {
  16972. source: "./media/characters/mika/front.svg",
  16973. extra: 1,
  16974. bottom: 0.016
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(5 + 7 / 12, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16988. {
  16989. front: {
  16990. height: math.unit(6 + 2 / 12, "feet"),
  16991. weight: math.unit(268, "lb"),
  16992. name: "Front",
  16993. image: {
  16994. source: "./media/characters/sol/front.svg",
  16995. extra: 247 / 231,
  16996. bottom: 0.05
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(6 + 2 / 12, "feet"),
  17004. default: true
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17010. {
  17011. buizel: {
  17012. height: math.unit(2 + 5 / 12, "feet"),
  17013. weight: math.unit(87, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/umiko/buizel.svg",
  17017. extra: 172 / 157,
  17018. bottom: 0.01
  17019. },
  17020. form: "buizel",
  17021. default: true
  17022. },
  17023. floatzel: {
  17024. height: math.unit(5 + 9 / 12, "feet"),
  17025. weight: math.unit(250, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/umiko/floatzel.svg",
  17029. extra: 1076/1006,
  17030. bottom: 15/1091
  17031. },
  17032. form: "floatzel",
  17033. default: true
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(2 + 5 / 12, "feet"),
  17040. form: "buizel",
  17041. default: true
  17042. },
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(5 + 9 / 12, "feet"),
  17046. form: "floatzel",
  17047. default: true
  17048. },
  17049. ],
  17050. {
  17051. "buizel": {
  17052. name: "Buizel"
  17053. },
  17054. "floatzel": {
  17055. name: "Floatzel",
  17056. default: true
  17057. }
  17058. }
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17062. {
  17063. front: {
  17064. height: math.unit(6 + 2 / 12, "feet"),
  17065. weight: math.unit(146, "lb"),
  17066. name: "Front",
  17067. image: {
  17068. source: "./media/characters/iliac/front.svg",
  17069. extra: 389 / 365,
  17070. bottom: 0.035
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(6 + 2 / 12, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(6, "feet"),
  17087. weight: math.unit(170, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/topaz/front.svg",
  17091. extra: 317 / 303,
  17092. bottom: 0.055
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(6, "feet"),
  17100. default: true
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17106. {
  17107. front: {
  17108. height: math.unit(5 + 11 / 12, "feet"),
  17109. weight: math.unit(144, "lb"),
  17110. name: "Front",
  17111. image: {
  17112. source: "./media/characters/gabriel/front.svg",
  17113. extra: 285 / 262,
  17114. bottom: 0.004
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(5 + 11 / 12, "feet"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17128. {
  17129. side: {
  17130. height: math.unit(6 + 5 / 12, "feet"),
  17131. weight: math.unit(300, "lb"),
  17132. name: "Side",
  17133. image: {
  17134. source: "./media/characters/tempest-suicune/side.svg",
  17135. extra: 195 / 154,
  17136. bottom: 0.04
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(6 + 5 / 12, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(7 + 2 / 12, "feet"),
  17153. weight: math.unit(322, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/vulcan/front.svg",
  17157. extra: 154 / 147,
  17158. bottom: 0.04
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(7 + 2 / 12, "feet"),
  17166. default: true
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(5 + 10 / 12, "feet"),
  17175. weight: math.unit(264, "lb"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/gault/front.svg",
  17179. extra: 161 / 140,
  17180. bottom: 0.028
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(5 + 10 / 12, "feet"),
  17188. default: true
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17194. {
  17195. front: {
  17196. height: math.unit(6, "feet"),
  17197. weight: math.unit(150, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/shard/front.svg",
  17201. extra: 273 / 238,
  17202. bottom: 0.02
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(3 + 6 / 12, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17216. {
  17217. front: {
  17218. height: math.unit(5 + 11 / 12, "feet"),
  17219. weight: math.unit(146, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/ashe/front.svg",
  17223. extra: 400 / 373,
  17224. bottom: 0.01
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(5 + 11 / 12, "feet"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17238. {
  17239. front: {
  17240. height: math.unit(5 + 5 / 12, "feet"),
  17241. weight: math.unit(135, "lb"),
  17242. name: "Front",
  17243. image: {
  17244. source: "./media/characters/beatrix/front.svg",
  17245. extra: 392 / 379,
  17246. bottom: 0.01
  17247. }
  17248. },
  17249. },
  17250. [
  17251. {
  17252. name: "Normal",
  17253. height: math.unit(6, "feet"),
  17254. default: true
  17255. },
  17256. ]
  17257. ))
  17258. characterMakers.push(() => makeCharacter(
  17259. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17260. {
  17261. front: {
  17262. height: math.unit(6 + 2/12, "feet"),
  17263. weight: math.unit(135, "lb"),
  17264. name: "Front",
  17265. image: {
  17266. source: "./media/characters/ignatius/front.svg",
  17267. extra: 1380/1259,
  17268. bottom: 27/1407
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(6 + 2/12, "feet"),
  17276. default: true
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17282. {
  17283. front: {
  17284. height: math.unit(6 + 2 / 12, "feet"),
  17285. weight: math.unit(138, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/mei-li/front.svg",
  17289. extra: 237 / 229,
  17290. bottom: 0.03
  17291. }
  17292. },
  17293. },
  17294. [
  17295. {
  17296. name: "Normal",
  17297. height: math.unit(6 + 2 / 12, "feet"),
  17298. default: true
  17299. },
  17300. ]
  17301. ))
  17302. characterMakers.push(() => makeCharacter(
  17303. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17304. {
  17305. front: {
  17306. height: math.unit(2 + 4 / 12, "feet"),
  17307. weight: math.unit(62, "lb"),
  17308. name: "Front",
  17309. image: {
  17310. source: "./media/characters/puru/front.svg",
  17311. extra: 206 / 149,
  17312. bottom: 0.06
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(2 + 4 / 12, "feet"),
  17320. default: true
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17326. {
  17327. anthro: {
  17328. height: math.unit(5 + 8/12, "feet"),
  17329. weight: math.unit(200, "lb"),
  17330. energyNeed: math.unit(2000, "kcal"),
  17331. name: "Anthro",
  17332. image: {
  17333. source: "./media/characters/kee/anthro.svg",
  17334. extra: 3251/3184,
  17335. bottom: 250/3501
  17336. }
  17337. },
  17338. taur: {
  17339. height: math.unit(11, "feet"),
  17340. weight: math.unit(500, "lb"),
  17341. energyNeed: math.unit(5000, "kcal"),
  17342. name: "Taur",
  17343. image: {
  17344. source: "./media/characters/kee/taur.svg",
  17345. extra: 1362/1320,
  17346. bottom: 83/1445
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(5 + 8/12, "feet"),
  17354. default: true
  17355. },
  17356. {
  17357. name: "Macro",
  17358. height: math.unit(35, "feet")
  17359. },
  17360. ]
  17361. ))
  17362. characterMakers.push(() => makeCharacter(
  17363. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17364. {
  17365. anthro: {
  17366. height: math.unit(7, "feet"),
  17367. weight: math.unit(190, "lb"),
  17368. name: "Anthro",
  17369. image: {
  17370. source: "./media/characters/cobalt-dracha/anthro.svg",
  17371. extra: 231 / 225,
  17372. bottom: 0.04
  17373. }
  17374. },
  17375. feral: {
  17376. height: math.unit(9 + 7 / 12, "feet"),
  17377. weight: math.unit(294, "lb"),
  17378. name: "Feral",
  17379. image: {
  17380. source: "./media/characters/cobalt-dracha/feral.svg",
  17381. extra: 692 / 633,
  17382. bottom: 0.05
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(7, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17396. {
  17397. fallen: {
  17398. height: math.unit(11 + 8 / 12, "feet"),
  17399. weight: math.unit(485, "lb"),
  17400. name: "Java (Fallen)",
  17401. rename: true,
  17402. image: {
  17403. source: "./media/characters/java/fallen.svg",
  17404. extra: 226 / 208,
  17405. bottom: 0.005
  17406. }
  17407. },
  17408. godkin: {
  17409. height: math.unit(10 + 6 / 12, "feet"),
  17410. weight: math.unit(328, "lb"),
  17411. name: "Java (Godkin)",
  17412. rename: true,
  17413. image: {
  17414. source: "./media/characters/java/godkin.svg",
  17415. extra: 1104/1068,
  17416. bottom: 36/1140
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(11 + 8 / 12, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(5 + 9 / 12, "feet"),
  17433. weight: math.unit(170, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/purna/front.svg",
  17437. extra: 239 / 229,
  17438. bottom: 0.01
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(5 + 9 / 12, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(5 + 9 / 12, "feet"),
  17455. weight: math.unit(142, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/kuva/front.svg",
  17459. extra: 281 / 271,
  17460. bottom: 0.006
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(5 + 9 / 12, "feet"),
  17468. default: true
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17474. {
  17475. anthro: {
  17476. height: math.unit(9 + 2 / 12, "feet"),
  17477. weight: math.unit(270, "lb"),
  17478. name: "Anthro",
  17479. image: {
  17480. source: "./media/characters/embra/anthro.svg",
  17481. extra: 200 / 187,
  17482. bottom: 0.02
  17483. }
  17484. },
  17485. feral: {
  17486. height: math.unit(18 + 8 / 12, "feet"),
  17487. weight: math.unit(576, "lb"),
  17488. name: "Feral",
  17489. image: {
  17490. source: "./media/characters/embra/feral.svg",
  17491. extra: 152 / 137,
  17492. bottom: 0.037
  17493. }
  17494. },
  17495. },
  17496. [
  17497. {
  17498. name: "Normal",
  17499. height: math.unit(9 + 2 / 12, "feet"),
  17500. default: true
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17506. {
  17507. anthro: {
  17508. height: math.unit(10 + 9 / 12, "feet"),
  17509. weight: math.unit(224, "lb"),
  17510. name: "Anthro",
  17511. image: {
  17512. source: "./media/characters/grottos/anthro.svg",
  17513. extra: 350 / 332,
  17514. bottom: 0.045
  17515. }
  17516. },
  17517. feral: {
  17518. height: math.unit(20 + 7 / 12, "feet"),
  17519. weight: math.unit(629, "lb"),
  17520. name: "Feral",
  17521. image: {
  17522. source: "./media/characters/grottos/feral.svg",
  17523. extra: 207 / 190,
  17524. bottom: 0.05
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(10 + 9 / 12, "feet"),
  17532. default: true
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17538. {
  17539. anthro: {
  17540. height: math.unit(9 + 6 / 12, "feet"),
  17541. weight: math.unit(298, "lb"),
  17542. name: "Anthro",
  17543. image: {
  17544. source: "./media/characters/frifna/anthro.svg",
  17545. extra: 282 / 269,
  17546. bottom: 0.015
  17547. }
  17548. },
  17549. feral: {
  17550. height: math.unit(16 + 2 / 12, "feet"),
  17551. weight: math.unit(624, "lb"),
  17552. name: "Feral",
  17553. image: {
  17554. source: "./media/characters/frifna/feral.svg"
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(9 + 6 / 12, "feet"),
  17562. default: true
  17563. },
  17564. ]
  17565. ))
  17566. characterMakers.push(() => makeCharacter(
  17567. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17568. {
  17569. front: {
  17570. height: math.unit(6 + 2 / 12, "feet"),
  17571. weight: math.unit(168, "lb"),
  17572. name: "Front",
  17573. image: {
  17574. source: "./media/characters/elise/front.svg",
  17575. extra: 276 / 271
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(6 + 2 / 12, "feet"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(5 + 10 / 12, "feet"),
  17592. weight: math.unit(210, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/glade/front.svg",
  17596. extra: 258 / 247,
  17597. bottom: 0.008
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Normal",
  17604. height: math.unit(5 + 10 / 12, "feet"),
  17605. default: true
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(5 + 10 / 12, "feet"),
  17614. weight: math.unit(129, "lb"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/rina/front.svg",
  17618. extra: 266 / 255,
  17619. bottom: 0.005
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(5 + 10 / 12, "feet"),
  17627. default: true
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17633. {
  17634. front: {
  17635. height: math.unit(6 + 1 / 12, "feet"),
  17636. weight: math.unit(192, "lb"),
  17637. name: "Front",
  17638. image: {
  17639. source: "./media/characters/veronica/front.svg",
  17640. extra: 319 / 309,
  17641. bottom: 0.005
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(6 + 1 / 12, "feet"),
  17649. default: true
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17655. {
  17656. front: {
  17657. height: math.unit(9 + 3 / 12, "feet"),
  17658. weight: math.unit(1100, "lb"),
  17659. name: "Front",
  17660. image: {
  17661. source: "./media/characters/braxton/front.svg",
  17662. extra: 1057 / 984,
  17663. bottom: 0.05
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(9 + 3 / 12, "feet")
  17671. },
  17672. {
  17673. name: "Giant",
  17674. height: math.unit(300, "feet"),
  17675. default: true
  17676. },
  17677. {
  17678. name: "Macro",
  17679. height: math.unit(700, "feet")
  17680. },
  17681. {
  17682. name: "Megamacro",
  17683. height: math.unit(6000, "feet")
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(6 + 7 / 12, "feet"),
  17692. weight: math.unit(150, "lb"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/blue-feyonics/front.svg",
  17696. extra: 1403 / 1306,
  17697. bottom: 0.047
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(6 + 7 / 12, "feet"),
  17705. default: true
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17711. {
  17712. front: {
  17713. height: math.unit(1.8, "meters"),
  17714. weight: math.unit(60, "kg"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/maxwell/front.svg",
  17718. extra: 2060 / 1873
  17719. }
  17720. },
  17721. },
  17722. [
  17723. {
  17724. name: "Micro",
  17725. height: math.unit(1, "mm")
  17726. },
  17727. {
  17728. name: "Normal",
  17729. height: math.unit(1.8, "meter"),
  17730. default: true
  17731. },
  17732. {
  17733. name: "Macro",
  17734. height: math.unit(30, "meters")
  17735. },
  17736. {
  17737. name: "Megamacro",
  17738. height: math.unit(10, "km")
  17739. },
  17740. ]
  17741. ))
  17742. characterMakers.push(() => makeCharacter(
  17743. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17744. {
  17745. front: {
  17746. height: math.unit(6, "feet"),
  17747. weight: math.unit(150, "lb"),
  17748. name: "Front",
  17749. image: {
  17750. source: "./media/characters/jack/front.svg",
  17751. extra: 1754 / 1640,
  17752. bottom: 0.01
  17753. }
  17754. },
  17755. },
  17756. [
  17757. {
  17758. name: "Normal",
  17759. height: math.unit(80000, "feet"),
  17760. default: true
  17761. },
  17762. {
  17763. name: "Max size",
  17764. height: math.unit(10, "lightyears")
  17765. },
  17766. ]
  17767. ))
  17768. characterMakers.push(() => makeCharacter(
  17769. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17770. {
  17771. urban: {
  17772. height: math.unit(5, "feet"),
  17773. weight: math.unit(240, "lb"),
  17774. name: "Urban",
  17775. image: {
  17776. source: "./media/characters/cafat/urban.svg",
  17777. extra: 1223/1126,
  17778. bottom: 205/1428
  17779. }
  17780. },
  17781. summer: {
  17782. height: math.unit(5, "feet"),
  17783. weight: math.unit(240, "lb"),
  17784. name: "Summer",
  17785. image: {
  17786. source: "./media/characters/cafat/summer.svg",
  17787. extra: 1223/1126,
  17788. bottom: 205/1428
  17789. }
  17790. },
  17791. winter: {
  17792. height: math.unit(5, "feet"),
  17793. weight: math.unit(240, "lb"),
  17794. name: "Winter",
  17795. image: {
  17796. source: "./media/characters/cafat/winter.svg",
  17797. extra: 1223/1126,
  17798. bottom: 205/1428
  17799. }
  17800. },
  17801. lingerie: {
  17802. height: math.unit(5, "feet"),
  17803. weight: math.unit(240, "lb"),
  17804. name: "Lingerie",
  17805. image: {
  17806. source: "./media/characters/cafat/lingerie.svg",
  17807. extra: 1223/1126,
  17808. bottom: 205/1428
  17809. }
  17810. },
  17811. upright: {
  17812. height: math.unit(6.3, "feet"),
  17813. weight: math.unit(240, "lb"),
  17814. name: "Upright",
  17815. image: {
  17816. source: "./media/characters/cafat/upright.svg",
  17817. bottom: 0.01
  17818. }
  17819. },
  17820. uprightFull: {
  17821. height: math.unit(6.3, "feet"),
  17822. weight: math.unit(240, "lb"),
  17823. name: "Upright (Full)",
  17824. image: {
  17825. source: "./media/characters/cafat/upright-full.svg",
  17826. bottom: 0.01
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Small",
  17833. height: math.unit(5, "feet"),
  17834. default: true
  17835. },
  17836. {
  17837. name: "Large",
  17838. height: math.unit(13, "feet")
  17839. },
  17840. ]
  17841. ))
  17842. characterMakers.push(() => makeCharacter(
  17843. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17844. {
  17845. front: {
  17846. height: math.unit(6, "feet"),
  17847. weight: math.unit(150, "lb"),
  17848. name: "Front",
  17849. image: {
  17850. source: "./media/characters/verin-raharra/front.svg",
  17851. extra: 5019 / 4835,
  17852. bottom: 0.023
  17853. }
  17854. },
  17855. },
  17856. [
  17857. {
  17858. name: "Normal",
  17859. height: math.unit(7 + 5 / 12, "feet"),
  17860. default: true
  17861. },
  17862. {
  17863. name: "Upsized",
  17864. height: math.unit(20, "feet")
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17870. {
  17871. front: {
  17872. height: math.unit(7, "feet"),
  17873. weight: math.unit(230, "lb"),
  17874. name: "Front",
  17875. image: {
  17876. source: "./media/characters/nakata/front.svg",
  17877. extra: 1.005,
  17878. bottom: 0.01
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Normal",
  17885. height: math.unit(7, "feet"),
  17886. default: true
  17887. },
  17888. {
  17889. name: "Big",
  17890. height: math.unit(14, "feet")
  17891. },
  17892. {
  17893. name: "Macro",
  17894. height: math.unit(400, "feet")
  17895. },
  17896. ]
  17897. ))
  17898. characterMakers.push(() => makeCharacter(
  17899. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17900. {
  17901. front: {
  17902. height: math.unit(4.91, "feet"),
  17903. weight: math.unit(100, "lb"),
  17904. name: "Front",
  17905. image: {
  17906. source: "./media/characters/lily/front.svg",
  17907. extra: 1585 / 1415,
  17908. bottom: 0.02
  17909. }
  17910. },
  17911. },
  17912. [
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(4.91, "feet"),
  17916. default: true
  17917. },
  17918. ]
  17919. ))
  17920. characterMakers.push(() => makeCharacter(
  17921. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17922. {
  17923. laying: {
  17924. height: math.unit(4 + 4 / 12, "feet"),
  17925. weight: math.unit(600, "lb"),
  17926. name: "Laying",
  17927. image: {
  17928. source: "./media/characters/sheila/laying.svg",
  17929. extra: 1333 / 1265,
  17930. bottom: 0.16
  17931. }
  17932. },
  17933. },
  17934. [
  17935. {
  17936. name: "Normal",
  17937. height: math.unit(4 + 4 / 12, "feet"),
  17938. default: true
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17944. {
  17945. front: {
  17946. height: math.unit(6, "feet"),
  17947. weight: math.unit(190, "lb"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/sax/front.svg",
  17951. extra: 1187 / 973,
  17952. bottom: 0.042
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Micro",
  17959. height: math.unit(4, "inches"),
  17960. default: true
  17961. },
  17962. ]
  17963. ))
  17964. characterMakers.push(() => makeCharacter(
  17965. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17966. {
  17967. front: {
  17968. height: math.unit(6, "feet"),
  17969. weight: math.unit(150, "lb"),
  17970. name: "Front",
  17971. image: {
  17972. source: "./media/characters/pandora/front.svg",
  17973. extra: 2720 / 2556,
  17974. bottom: 0.015
  17975. }
  17976. },
  17977. back: {
  17978. height: math.unit(6, "feet"),
  17979. weight: math.unit(150, "lb"),
  17980. name: "Back",
  17981. image: {
  17982. source: "./media/characters/pandora/back.svg",
  17983. extra: 2720 / 2556,
  17984. bottom: 0.01
  17985. }
  17986. },
  17987. beans: {
  17988. height: math.unit(6 / 8, "feet"),
  17989. name: "Beans",
  17990. image: {
  17991. source: "./media/characters/pandora/beans.svg"
  17992. }
  17993. },
  17994. collar: {
  17995. height: math.unit(0.31, "feet"),
  17996. name: "Collar",
  17997. image: {
  17998. source: "./media/characters/pandora/collar.svg"
  17999. }
  18000. },
  18001. skirt: {
  18002. height: math.unit(6, "feet"),
  18003. weight: math.unit(150, "lb"),
  18004. name: "Skirt",
  18005. image: {
  18006. source: "./media/characters/pandora/skirt.svg",
  18007. extra: 1622 / 1525,
  18008. bottom: 0.015
  18009. }
  18010. },
  18011. hoodie: {
  18012. height: math.unit(6, "feet"),
  18013. weight: math.unit(150, "lb"),
  18014. name: "Hoodie",
  18015. image: {
  18016. source: "./media/characters/pandora/hoodie.svg",
  18017. extra: 1622 / 1525,
  18018. bottom: 0.015
  18019. }
  18020. },
  18021. casual: {
  18022. height: math.unit(6, "feet"),
  18023. weight: math.unit(150, "lb"),
  18024. name: "Casual",
  18025. image: {
  18026. source: "./media/characters/pandora/casual.svg",
  18027. extra: 1622 / 1525,
  18028. bottom: 0.015
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Normal",
  18035. height: math.unit(6, "feet")
  18036. },
  18037. {
  18038. name: "Big Steppy",
  18039. height: math.unit(1, "km"),
  18040. default: true
  18041. },
  18042. {
  18043. name: "Galactic Steppy",
  18044. height: math.unit(2, "gigameters")
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18050. {
  18051. side: {
  18052. height: math.unit(10, "feet"),
  18053. weight: math.unit(800, "kg"),
  18054. name: "Side",
  18055. image: {
  18056. source: "./media/characters/venio-darcony/side.svg",
  18057. extra: 1373 / 1003,
  18058. bottom: 0.037
  18059. }
  18060. },
  18061. front: {
  18062. height: math.unit(19, "feet"),
  18063. weight: math.unit(800, "kg"),
  18064. name: "Front",
  18065. image: {
  18066. source: "./media/characters/venio-darcony/front.svg"
  18067. }
  18068. },
  18069. back: {
  18070. height: math.unit(19, "feet"),
  18071. weight: math.unit(800, "kg"),
  18072. name: "Back",
  18073. image: {
  18074. source: "./media/characters/venio-darcony/back.svg"
  18075. }
  18076. },
  18077. sideNsfw: {
  18078. height: math.unit(10, "feet"),
  18079. weight: math.unit(800, "kg"),
  18080. name: "Side (NSFW)",
  18081. image: {
  18082. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18083. extra: 1373 / 1003,
  18084. bottom: 0.037
  18085. }
  18086. },
  18087. frontNsfw: {
  18088. height: math.unit(19, "feet"),
  18089. weight: math.unit(800, "kg"),
  18090. name: "Front (NSFW)",
  18091. image: {
  18092. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18093. }
  18094. },
  18095. backNsfw: {
  18096. height: math.unit(19, "feet"),
  18097. weight: math.unit(800, "kg"),
  18098. name: "Back (NSFW)",
  18099. image: {
  18100. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18101. }
  18102. },
  18103. sideArmored: {
  18104. height: math.unit(10, "feet"),
  18105. weight: math.unit(800, "kg"),
  18106. name: "Side (Armored)",
  18107. image: {
  18108. source: "./media/characters/venio-darcony/side-armored.svg",
  18109. extra: 1373 / 1003,
  18110. bottom: 0.037
  18111. }
  18112. },
  18113. frontArmored: {
  18114. height: math.unit(19, "feet"),
  18115. weight: math.unit(900, "kg"),
  18116. name: "Front (Armored)",
  18117. image: {
  18118. source: "./media/characters/venio-darcony/front-armored.svg"
  18119. }
  18120. },
  18121. backArmored: {
  18122. height: math.unit(19, "feet"),
  18123. weight: math.unit(900, "kg"),
  18124. name: "Back (Armored)",
  18125. image: {
  18126. source: "./media/characters/venio-darcony/back-armored.svg"
  18127. }
  18128. },
  18129. sword: {
  18130. height: math.unit(10, "feet"),
  18131. weight: math.unit(50, "lb"),
  18132. name: "Sword",
  18133. image: {
  18134. source: "./media/characters/venio-darcony/sword.svg"
  18135. }
  18136. },
  18137. },
  18138. [
  18139. {
  18140. name: "Normal",
  18141. height: math.unit(10, "feet")
  18142. },
  18143. {
  18144. name: "Macro",
  18145. height: math.unit(130, "feet"),
  18146. default: true
  18147. },
  18148. {
  18149. name: "Macro+",
  18150. height: math.unit(240, "feet")
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18156. {
  18157. front: {
  18158. height: math.unit(6, "feet"),
  18159. weight: math.unit(150, "lb"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/veski/front.svg",
  18163. extra: 1299 / 1225,
  18164. bottom: 0.04
  18165. }
  18166. },
  18167. back: {
  18168. height: math.unit(6, "feet"),
  18169. weight: math.unit(150, "lb"),
  18170. name: "Back",
  18171. image: {
  18172. source: "./media/characters/veski/back.svg",
  18173. extra: 1299 / 1225,
  18174. bottom: 0.008
  18175. }
  18176. },
  18177. maw: {
  18178. height: math.unit(1.5 * 1.21, "feet"),
  18179. name: "Maw",
  18180. image: {
  18181. source: "./media/characters/veski/maw.svg"
  18182. }
  18183. },
  18184. },
  18185. [
  18186. {
  18187. name: "Macro",
  18188. height: math.unit(2, "km"),
  18189. default: true
  18190. },
  18191. ]
  18192. ))
  18193. characterMakers.push(() => makeCharacter(
  18194. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18195. {
  18196. front: {
  18197. height: math.unit(5 + 7 / 12, "feet"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/isabelle/front.svg",
  18201. extra: 2130 / 1976,
  18202. bottom: 0.05
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Supermicro",
  18209. height: math.unit(10, "micrometers")
  18210. },
  18211. {
  18212. name: "Micro",
  18213. height: math.unit(1, "inch")
  18214. },
  18215. {
  18216. name: "Tiny",
  18217. height: math.unit(5, "inches")
  18218. },
  18219. {
  18220. name: "Standard",
  18221. height: math.unit(5 + 7 / 12, "inches")
  18222. },
  18223. {
  18224. name: "Macro",
  18225. height: math.unit(80, "meters"),
  18226. default: true
  18227. },
  18228. {
  18229. name: "Megamacro",
  18230. height: math.unit(250, "meters")
  18231. },
  18232. {
  18233. name: "Gigamacro",
  18234. height: math.unit(5, "km")
  18235. },
  18236. {
  18237. name: "Cosmic",
  18238. height: math.unit(2.5e6, "miles")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(6, "feet"),
  18247. weight: math.unit(150, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/hanzo/front.svg",
  18251. extra: 374 / 344,
  18252. bottom: 0.02
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Normal",
  18259. height: math.unit(8, "feet"),
  18260. default: true
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(7, "feet"),
  18269. weight: math.unit(130, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/anna/front.svg",
  18273. extra: 169 / 145,
  18274. bottom: 0.06
  18275. }
  18276. },
  18277. full: {
  18278. height: math.unit(4.96, "feet"),
  18279. weight: math.unit(220, "lb"),
  18280. name: "Full",
  18281. image: {
  18282. source: "./media/characters/anna/full.svg",
  18283. extra: 138 / 114,
  18284. bottom: 0.15
  18285. }
  18286. },
  18287. tongue: {
  18288. height: math.unit(2.53, "feet"),
  18289. name: "Tongue",
  18290. image: {
  18291. source: "./media/characters/anna/tongue.svg"
  18292. }
  18293. },
  18294. },
  18295. [
  18296. {
  18297. name: "Normal",
  18298. height: math.unit(7, "feet"),
  18299. default: true
  18300. },
  18301. ]
  18302. ))
  18303. characterMakers.push(() => makeCharacter(
  18304. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18305. {
  18306. front: {
  18307. height: math.unit(7, "feet"),
  18308. weight: math.unit(150, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/ian-corvid/front.svg",
  18312. extra: 150 / 142,
  18313. bottom: 0.02
  18314. }
  18315. },
  18316. back: {
  18317. height: math.unit(7, "feet"),
  18318. weight: math.unit(150, "lb"),
  18319. name: "Back",
  18320. image: {
  18321. source: "./media/characters/ian-corvid/back.svg",
  18322. extra: 150 / 143,
  18323. bottom: 0.01
  18324. }
  18325. },
  18326. stomping: {
  18327. height: math.unit(7, "feet"),
  18328. weight: math.unit(150, "lb"),
  18329. name: "Stomping",
  18330. image: {
  18331. source: "./media/characters/ian-corvid/stomping.svg",
  18332. extra: 76 / 72
  18333. }
  18334. },
  18335. sitting: {
  18336. height: math.unit(7 / 1.8, "feet"),
  18337. weight: math.unit(150, "lb"),
  18338. name: "Sitting",
  18339. image: {
  18340. source: "./media/characters/ian-corvid/sitting.svg",
  18341. extra: 1400 / 1269,
  18342. bottom: 0.15
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Tiny Microw",
  18349. height: math.unit(1, "inch")
  18350. },
  18351. {
  18352. name: "Microw",
  18353. height: math.unit(6, "inches")
  18354. },
  18355. {
  18356. name: "Crow",
  18357. height: math.unit(7 + 1 / 12, "feet"),
  18358. default: true
  18359. },
  18360. {
  18361. name: "Macrow",
  18362. height: math.unit(176, "feet")
  18363. },
  18364. ]
  18365. ))
  18366. characterMakers.push(() => makeCharacter(
  18367. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18368. {
  18369. front: {
  18370. height: math.unit(5 + 7 / 12, "feet"),
  18371. weight: math.unit(147, "lb"),
  18372. name: "Front",
  18373. image: {
  18374. source: "./media/characters/natalie-kellon/front.svg",
  18375. extra: 1214 / 1141,
  18376. bottom: 0.02
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Micro",
  18383. height: math.unit(1 / 16, "inch")
  18384. },
  18385. {
  18386. name: "Tiny",
  18387. height: math.unit(4, "inches")
  18388. },
  18389. {
  18390. name: "Normal",
  18391. height: math.unit(5 + 7 / 12, "feet"),
  18392. default: true
  18393. },
  18394. {
  18395. name: "Amazon",
  18396. height: math.unit(12, "feet")
  18397. },
  18398. {
  18399. name: "Giantess",
  18400. height: math.unit(160, "meters")
  18401. },
  18402. {
  18403. name: "Titaness",
  18404. height: math.unit(800, "meters")
  18405. },
  18406. ]
  18407. ))
  18408. characterMakers.push(() => makeCharacter(
  18409. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18410. {
  18411. front: {
  18412. height: math.unit(6, "feet"),
  18413. weight: math.unit(150, "lb"),
  18414. name: "Front",
  18415. image: {
  18416. source: "./media/characters/alluria/front.svg",
  18417. extra: 806 / 738,
  18418. bottom: 0.01
  18419. }
  18420. },
  18421. side: {
  18422. height: math.unit(6, "feet"),
  18423. weight: math.unit(150, "lb"),
  18424. name: "Side",
  18425. image: {
  18426. source: "./media/characters/alluria/side.svg",
  18427. extra: 800 / 750,
  18428. }
  18429. },
  18430. back: {
  18431. height: math.unit(6, "feet"),
  18432. weight: math.unit(150, "lb"),
  18433. name: "Back",
  18434. image: {
  18435. source: "./media/characters/alluria/back.svg",
  18436. extra: 806 / 738,
  18437. }
  18438. },
  18439. frontMaid: {
  18440. height: math.unit(6, "feet"),
  18441. weight: math.unit(150, "lb"),
  18442. name: "Front (Maid)",
  18443. image: {
  18444. source: "./media/characters/alluria/front-maid.svg",
  18445. extra: 806 / 738,
  18446. bottom: 0.01
  18447. }
  18448. },
  18449. sideMaid: {
  18450. height: math.unit(6, "feet"),
  18451. weight: math.unit(150, "lb"),
  18452. name: "Side (Maid)",
  18453. image: {
  18454. source: "./media/characters/alluria/side-maid.svg",
  18455. extra: 800 / 750,
  18456. bottom: 0.005
  18457. }
  18458. },
  18459. backMaid: {
  18460. height: math.unit(6, "feet"),
  18461. weight: math.unit(150, "lb"),
  18462. name: "Back (Maid)",
  18463. image: {
  18464. source: "./media/characters/alluria/back-maid.svg",
  18465. extra: 806 / 738,
  18466. }
  18467. },
  18468. },
  18469. [
  18470. {
  18471. name: "Micro",
  18472. height: math.unit(6, "inches"),
  18473. default: true
  18474. },
  18475. ]
  18476. ))
  18477. characterMakers.push(() => makeCharacter(
  18478. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18479. {
  18480. front: {
  18481. height: math.unit(6, "feet"),
  18482. weight: math.unit(150, "lb"),
  18483. name: "Front",
  18484. image: {
  18485. source: "./media/characters/kyle/front.svg",
  18486. extra: 1069 / 962,
  18487. bottom: 77.228 / 1727.45
  18488. }
  18489. },
  18490. },
  18491. [
  18492. {
  18493. name: "Macro",
  18494. height: math.unit(150, "feet"),
  18495. default: true
  18496. },
  18497. ]
  18498. ))
  18499. characterMakers.push(() => makeCharacter(
  18500. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18501. {
  18502. front: {
  18503. height: math.unit(6, "feet"),
  18504. weight: math.unit(300, "lb"),
  18505. name: "Front",
  18506. image: {
  18507. source: "./media/characters/duncan/front.svg",
  18508. extra: 1650 / 1482,
  18509. bottom: 0.05
  18510. }
  18511. },
  18512. },
  18513. [
  18514. {
  18515. name: "Macro",
  18516. height: math.unit(100, "feet"),
  18517. default: true
  18518. },
  18519. ]
  18520. ))
  18521. characterMakers.push(() => makeCharacter(
  18522. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18523. {
  18524. front: {
  18525. height: math.unit(5 + 4 / 12, "feet"),
  18526. weight: math.unit(220, "lb"),
  18527. name: "Front",
  18528. image: {
  18529. source: "./media/characters/memory/front.svg",
  18530. extra: 3641 / 3545,
  18531. bottom: 0.03
  18532. }
  18533. },
  18534. back: {
  18535. height: math.unit(5 + 4 / 12, "feet"),
  18536. weight: math.unit(220, "lb"),
  18537. name: "Back",
  18538. image: {
  18539. source: "./media/characters/memory/back.svg",
  18540. extra: 3641 / 3545,
  18541. bottom: 0.025
  18542. }
  18543. },
  18544. frontSkirt: {
  18545. height: math.unit(5 + 4 / 12, "feet"),
  18546. weight: math.unit(220, "lb"),
  18547. name: "Front (Skirt)",
  18548. image: {
  18549. source: "./media/characters/memory/front-skirt.svg",
  18550. extra: 3641 / 3545,
  18551. bottom: 0.03
  18552. }
  18553. },
  18554. frontDress: {
  18555. height: math.unit(5 + 4 / 12, "feet"),
  18556. weight: math.unit(220, "lb"),
  18557. name: "Front (Dress)",
  18558. image: {
  18559. source: "./media/characters/memory/front-dress.svg",
  18560. extra: 3641 / 3545,
  18561. bottom: 0.03
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Micro",
  18568. height: math.unit(6, "inches"),
  18569. default: true
  18570. },
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(5 + 4 / 12, "feet")
  18574. },
  18575. ]
  18576. ))
  18577. characterMakers.push(() => makeCharacter(
  18578. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18579. {
  18580. front: {
  18581. height: math.unit(4 + 11 / 12, "feet"),
  18582. weight: math.unit(100, "lb"),
  18583. name: "Front",
  18584. image: {
  18585. source: "./media/characters/luno/front.svg",
  18586. extra: 1535 / 1487,
  18587. bottom: 0.03
  18588. }
  18589. },
  18590. },
  18591. [
  18592. {
  18593. name: "Micro",
  18594. height: math.unit(3, "inches")
  18595. },
  18596. {
  18597. name: "Normal",
  18598. height: math.unit(4 + 11 / 12, "feet"),
  18599. default: true
  18600. },
  18601. {
  18602. name: "Macro",
  18603. height: math.unit(300, "feet")
  18604. },
  18605. {
  18606. name: "Megamacro",
  18607. height: math.unit(700, "miles")
  18608. },
  18609. ]
  18610. ))
  18611. characterMakers.push(() => makeCharacter(
  18612. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18613. {
  18614. front: {
  18615. height: math.unit(6 + 2 / 12, "feet"),
  18616. weight: math.unit(170, "lb"),
  18617. name: "Front",
  18618. image: {
  18619. source: "./media/characters/jamesy/front.svg",
  18620. extra: 440 / 382,
  18621. bottom: 0.005
  18622. }
  18623. },
  18624. },
  18625. [
  18626. {
  18627. name: "Micro",
  18628. height: math.unit(3, "inches")
  18629. },
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(6 + 2 / 12, "feet"),
  18633. default: true
  18634. },
  18635. {
  18636. name: "Macro",
  18637. height: math.unit(300, "feet")
  18638. },
  18639. {
  18640. name: "Megamacro",
  18641. height: math.unit(700, "miles")
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18647. {
  18648. front: {
  18649. height: math.unit(6, "feet"),
  18650. weight: math.unit(160, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/mark/front.svg",
  18654. extra: 3300 / 3100,
  18655. bottom: 136.42 / 3440.47
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Macro",
  18662. height: math.unit(120, "meters")
  18663. },
  18664. {
  18665. name: "Bigger Macro",
  18666. height: math.unit(350, "meters")
  18667. },
  18668. {
  18669. name: "Megamacro",
  18670. height: math.unit(8, "km"),
  18671. default: true
  18672. },
  18673. {
  18674. name: "Continental",
  18675. height: math.unit(4550, "km")
  18676. },
  18677. {
  18678. name: "Planetary",
  18679. height: math.unit(65000, "km")
  18680. },
  18681. ]
  18682. ))
  18683. characterMakers.push(() => makeCharacter(
  18684. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18685. {
  18686. front: {
  18687. height: math.unit(6, "feet"),
  18688. weight: math.unit(400, "lb"),
  18689. name: "Front",
  18690. image: {
  18691. source: "./media/characters/mac/front.svg",
  18692. extra: 1048 / 987.7,
  18693. bottom: 60 / 1107.6,
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Macro",
  18700. height: math.unit(500, "feet"),
  18701. default: true
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18707. {
  18708. front: {
  18709. height: math.unit(5 + 2 / 12, "feet"),
  18710. weight: math.unit(190, "lb"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/bari/front.svg",
  18714. extra: 3156 / 2880,
  18715. bottom: 0.03
  18716. }
  18717. },
  18718. back: {
  18719. height: math.unit(5 + 2 / 12, "feet"),
  18720. weight: math.unit(190, "lb"),
  18721. name: "Back",
  18722. image: {
  18723. source: "./media/characters/bari/back.svg",
  18724. extra: 3260 / 2834,
  18725. bottom: 0.025
  18726. }
  18727. },
  18728. frontPlush: {
  18729. height: math.unit(5 + 2 / 12, "feet"),
  18730. weight: math.unit(190, "lb"),
  18731. name: "Front (Plush)",
  18732. image: {
  18733. source: "./media/characters/bari/front-plush.svg",
  18734. extra: 1112 / 1061,
  18735. bottom: 0.002
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Micro",
  18742. height: math.unit(3, "inches")
  18743. },
  18744. {
  18745. name: "Normal",
  18746. height: math.unit(5 + 2 / 12, "feet"),
  18747. default: true
  18748. },
  18749. {
  18750. name: "Macro",
  18751. height: math.unit(20, "feet")
  18752. },
  18753. ]
  18754. ))
  18755. characterMakers.push(() => makeCharacter(
  18756. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18757. {
  18758. front: {
  18759. height: math.unit(6 + 1 / 12, "feet"),
  18760. weight: math.unit(275, "lb"),
  18761. name: "Front",
  18762. image: {
  18763. source: "./media/characters/hunter-misha-raven/front.svg"
  18764. }
  18765. },
  18766. },
  18767. [
  18768. {
  18769. name: "Mortal",
  18770. height: math.unit(6 + 1 / 12, "feet")
  18771. },
  18772. {
  18773. name: "Divine",
  18774. height: math.unit(1.12134e34, "parsecs"),
  18775. default: true
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(6 + 3 / 12, "feet"),
  18784. weight: math.unit(220, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/max-calore/front.svg",
  18788. extra: 1700 / 1648,
  18789. bottom: 0.01
  18790. }
  18791. },
  18792. back: {
  18793. height: math.unit(6 + 3 / 12, "feet"),
  18794. weight: math.unit(220, "lb"),
  18795. name: "Back",
  18796. image: {
  18797. source: "./media/characters/max-calore/back.svg",
  18798. extra: 1700 / 1648,
  18799. bottom: 0.01
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(6 + 3 / 12, "feet"),
  18807. default: true
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18813. {
  18814. side: {
  18815. height: math.unit(2 + 8 / 12, "feet"),
  18816. weight: math.unit(99, "lb"),
  18817. name: "Side",
  18818. image: {
  18819. source: "./media/characters/aspen/side.svg",
  18820. extra: 152 / 138,
  18821. bottom: 0.032
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(2 + 8 / 12, "feet"),
  18829. default: true
  18830. },
  18831. ]
  18832. ))
  18833. characterMakers.push(() => makeCharacter(
  18834. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18835. {
  18836. side: {
  18837. height: math.unit(3 + 2 / 12, "feet"),
  18838. weight: math.unit(224, "lb"),
  18839. name: "Side",
  18840. image: {
  18841. source: "./media/characters/sheila-feral-wolf/side.svg",
  18842. extra: 179 / 166,
  18843. bottom: 0.03
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(3 + 2 / 12, "feet"),
  18851. default: true
  18852. },
  18853. ]
  18854. ))
  18855. characterMakers.push(() => makeCharacter(
  18856. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18857. {
  18858. side: {
  18859. height: math.unit(1 + 9 / 12, "feet"),
  18860. weight: math.unit(38, "lb"),
  18861. name: "Side",
  18862. image: {
  18863. source: "./media/characters/michelle/side.svg",
  18864. extra: 147 / 136.7,
  18865. bottom: 0.03
  18866. }
  18867. },
  18868. },
  18869. [
  18870. {
  18871. name: "Normal",
  18872. height: math.unit(1 + 9 / 12, "feet"),
  18873. default: true
  18874. },
  18875. ]
  18876. ))
  18877. characterMakers.push(() => makeCharacter(
  18878. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18879. {
  18880. front: {
  18881. height: math.unit(1.54, "feet"),
  18882. weight: math.unit(50, "lb"),
  18883. name: "Front",
  18884. image: {
  18885. source: "./media/characters/nino/front.svg"
  18886. }
  18887. },
  18888. },
  18889. [
  18890. {
  18891. name: "Normal",
  18892. height: math.unit(1.54, "feet"),
  18893. default: true
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18899. {
  18900. front: {
  18901. height: math.unit(1.49, "feet"),
  18902. weight: math.unit(45, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/viola/front.svg"
  18906. }
  18907. },
  18908. },
  18909. [
  18910. {
  18911. name: "Normal",
  18912. height: math.unit(1.49, "feet"),
  18913. default: true
  18914. },
  18915. ]
  18916. ))
  18917. characterMakers.push(() => makeCharacter(
  18918. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18919. {
  18920. front: {
  18921. height: math.unit(6 + 5 / 12, "feet"),
  18922. weight: math.unit(580, "lb"),
  18923. name: "Front",
  18924. image: {
  18925. source: "./media/characters/atlas/front.svg",
  18926. extra: 298.5 / 290,
  18927. bottom: 0.015
  18928. }
  18929. },
  18930. },
  18931. [
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(6 + 5 / 12, "feet"),
  18935. default: true
  18936. },
  18937. ]
  18938. ))
  18939. characterMakers.push(() => makeCharacter(
  18940. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18941. {
  18942. side: {
  18943. height: math.unit(15.6, "inches"),
  18944. weight: math.unit(10, "lb"),
  18945. name: "Side",
  18946. image: {
  18947. source: "./media/characters/davy/side.svg",
  18948. extra: 200 / 170,
  18949. bottom: 0.01
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Normal",
  18956. height: math.unit(15.6, "inches"),
  18957. default: true
  18958. },
  18959. ]
  18960. ))
  18961. characterMakers.push(() => makeCharacter(
  18962. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18963. {
  18964. side: {
  18965. height: math.unit(4 + 8 / 12, "feet"),
  18966. weight: math.unit(166, "lb"),
  18967. name: "Side",
  18968. image: {
  18969. source: "./media/characters/fiona/side.svg",
  18970. extra: 232 / 220,
  18971. bottom: 0.03
  18972. }
  18973. },
  18974. },
  18975. [
  18976. {
  18977. name: "Normal",
  18978. height: math.unit(4 + 8 / 12, "feet"),
  18979. default: true
  18980. },
  18981. ]
  18982. ))
  18983. characterMakers.push(() => makeCharacter(
  18984. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18985. {
  18986. front: {
  18987. height: math.unit(26, "inches"),
  18988. weight: math.unit(35, "lb"),
  18989. name: "Front",
  18990. image: {
  18991. source: "./media/characters/lyla/front.svg",
  18992. bottom: 0.1
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(3, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  19006. {
  19007. side: {
  19008. height: math.unit(1.8, "feet"),
  19009. weight: math.unit(44, "lb"),
  19010. name: "Side",
  19011. image: {
  19012. source: "./media/characters/perseus/side.svg",
  19013. bottom: 0.21
  19014. }
  19015. },
  19016. },
  19017. [
  19018. {
  19019. name: "Normal",
  19020. height: math.unit(1.8, "feet"),
  19021. default: true
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19027. {
  19028. side: {
  19029. height: math.unit(4 + 2 / 12, "feet"),
  19030. weight: math.unit(20, "lb"),
  19031. name: "Side",
  19032. image: {
  19033. source: "./media/characters/remus/side.svg"
  19034. }
  19035. },
  19036. },
  19037. [
  19038. {
  19039. name: "Normal",
  19040. height: math.unit(4 + 2 / 12, "feet"),
  19041. default: true
  19042. },
  19043. ]
  19044. ))
  19045. characterMakers.push(() => makeCharacter(
  19046. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19047. {
  19048. front: {
  19049. height: math.unit(4 + 11 / 12, "feet"),
  19050. weight: math.unit(114, "lb"),
  19051. name: "Front",
  19052. image: {
  19053. source: "./media/characters/raf/front.svg",
  19054. extra: 1504/1339,
  19055. bottom: 26/1530
  19056. }
  19057. },
  19058. side: {
  19059. height: math.unit(4 + 11 / 12, "feet"),
  19060. weight: math.unit(114, "lb"),
  19061. name: "Side",
  19062. image: {
  19063. source: "./media/characters/raf/side.svg",
  19064. extra: 1466/1316,
  19065. bottom: 29/1495
  19066. }
  19067. },
  19068. paw: {
  19069. height: math.unit(1.45, "feet"),
  19070. name: "Paw",
  19071. image: {
  19072. source: "./media/characters/raf/paw.svg"
  19073. },
  19074. extraAttributes: {
  19075. "toeSize": {
  19076. name: "Toe Size",
  19077. power: 2,
  19078. type: "area",
  19079. base: math.unit(0.004, "m^2")
  19080. },
  19081. "padSize": {
  19082. name: "Pad Size",
  19083. power: 2,
  19084. type: "area",
  19085. base: math.unit(0.04, "m^2")
  19086. },
  19087. "footSize": {
  19088. name: "Foot Size",
  19089. power: 2,
  19090. type: "area",
  19091. base: math.unit(0.08, "m^2")
  19092. },
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Micro",
  19099. height: math.unit(2, "inches")
  19100. },
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(4 + 11 / 12, "feet"),
  19104. default: true
  19105. },
  19106. {
  19107. name: "Macro",
  19108. height: math.unit(70, "feet")
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(1.5, "meters"),
  19117. weight: math.unit(68, "kg"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/liam-einarr/front.svg",
  19121. extra: 2822 / 2666
  19122. }
  19123. },
  19124. back: {
  19125. height: math.unit(1.5, "meters"),
  19126. weight: math.unit(68, "kg"),
  19127. name: "Back",
  19128. image: {
  19129. source: "./media/characters/liam-einarr/back.svg",
  19130. extra: 2822 / 2666,
  19131. bottom: 0.015
  19132. }
  19133. },
  19134. },
  19135. [
  19136. {
  19137. name: "Normal",
  19138. height: math.unit(1.5, "meters"),
  19139. default: true
  19140. },
  19141. {
  19142. name: "Macro",
  19143. height: math.unit(150, "meters")
  19144. },
  19145. {
  19146. name: "Megamacro",
  19147. height: math.unit(35, "km")
  19148. },
  19149. ]
  19150. ))
  19151. characterMakers.push(() => makeCharacter(
  19152. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19153. {
  19154. front: {
  19155. height: math.unit(6, "feet"),
  19156. weight: math.unit(75, "kg"),
  19157. name: "Front",
  19158. image: {
  19159. source: "./media/characters/linda/front.svg",
  19160. extra: 930 / 874,
  19161. bottom: 0.004
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Normal",
  19168. height: math.unit(6, "feet"),
  19169. default: true
  19170. },
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19175. {
  19176. front: {
  19177. height: math.unit(6 + 8 / 12, "feet"),
  19178. weight: math.unit(220, "lb"),
  19179. name: "Front",
  19180. image: {
  19181. source: "./media/characters/caylex/front.svg",
  19182. extra: 821 / 772,
  19183. bottom: 0.07
  19184. }
  19185. },
  19186. back: {
  19187. height: math.unit(6 + 8 / 12, "feet"),
  19188. weight: math.unit(220, "lb"),
  19189. name: "Back",
  19190. image: {
  19191. source: "./media/characters/caylex/back.svg",
  19192. extra: 821 / 772,
  19193. bottom: 0.022
  19194. }
  19195. },
  19196. hand: {
  19197. height: math.unit(1.25, "feet"),
  19198. name: "Hand",
  19199. image: {
  19200. source: "./media/characters/caylex/hand.svg"
  19201. }
  19202. },
  19203. foot: {
  19204. height: math.unit(1.6, "feet"),
  19205. name: "Foot",
  19206. image: {
  19207. source: "./media/characters/caylex/foot.svg"
  19208. }
  19209. },
  19210. armored: {
  19211. height: math.unit(6 + 8 / 12, "feet"),
  19212. weight: math.unit(250, "lb"),
  19213. name: "Armored",
  19214. image: {
  19215. source: "./media/characters/caylex/armored.svg",
  19216. extra: 1420 / 1310,
  19217. bottom: 0.045
  19218. }
  19219. },
  19220. },
  19221. [
  19222. {
  19223. name: "Normal",
  19224. height: math.unit(6 + 8 / 12, "feet"),
  19225. default: true
  19226. },
  19227. {
  19228. name: "Normal+",
  19229. height: math.unit(12, "feet")
  19230. },
  19231. ]
  19232. ))
  19233. characterMakers.push(() => makeCharacter(
  19234. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19235. {
  19236. front: {
  19237. height: math.unit(7 + 6 / 12, "feet"),
  19238. weight: math.unit(288, "lb"),
  19239. name: "Front",
  19240. image: {
  19241. source: "./media/characters/alana/front.svg",
  19242. extra: 679 / 653,
  19243. bottom: 22.5 / 701
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(7 + 6 / 12, "feet")
  19251. },
  19252. {
  19253. name: "Large",
  19254. height: math.unit(50, "feet")
  19255. },
  19256. {
  19257. name: "Macro",
  19258. height: math.unit(100, "feet"),
  19259. default: true
  19260. },
  19261. {
  19262. name: "Macro+",
  19263. height: math.unit(200, "feet")
  19264. },
  19265. ]
  19266. ))
  19267. characterMakers.push(() => makeCharacter(
  19268. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19269. {
  19270. front: {
  19271. height: math.unit(6 + 1 / 12, "feet"),
  19272. weight: math.unit(210, "lb"),
  19273. name: "Front",
  19274. image: {
  19275. source: "./media/characters/hasani/front.svg",
  19276. extra: 244 / 232,
  19277. bottom: 0.01
  19278. }
  19279. },
  19280. back: {
  19281. height: math.unit(6 + 1 / 12, "feet"),
  19282. weight: math.unit(210, "lb"),
  19283. name: "Back",
  19284. image: {
  19285. source: "./media/characters/hasani/back.svg",
  19286. extra: 244 / 232,
  19287. bottom: 0.01
  19288. }
  19289. },
  19290. },
  19291. [
  19292. {
  19293. name: "Normal",
  19294. height: math.unit(6 + 1 / 12, "feet")
  19295. },
  19296. {
  19297. name: "Macro",
  19298. height: math.unit(175, "feet"),
  19299. default: true
  19300. },
  19301. ]
  19302. ))
  19303. characterMakers.push(() => makeCharacter(
  19304. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19305. {
  19306. front: {
  19307. height: math.unit(1.82, "meters"),
  19308. weight: math.unit(140, "lb"),
  19309. name: "Front",
  19310. image: {
  19311. source: "./media/characters/nita/front.svg",
  19312. extra: 2473 / 2363,
  19313. bottom: 0.01
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(1.82, "m")
  19321. },
  19322. {
  19323. name: "Macro",
  19324. height: math.unit(300, "m")
  19325. },
  19326. {
  19327. name: "Mistake Canon",
  19328. height: math.unit(0.5, "miles"),
  19329. default: true
  19330. },
  19331. {
  19332. name: "Big Mistake",
  19333. height: math.unit(13, "miles")
  19334. },
  19335. {
  19336. name: "Playing God",
  19337. height: math.unit(2450, "miles")
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(4, "feet"),
  19346. weight: math.unit(120, "lb"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/shiriko/front.svg",
  19350. extra: 970/934,
  19351. bottom: 5/975
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Normal",
  19358. height: math.unit(4, "feet"),
  19359. default: true
  19360. },
  19361. ]
  19362. ))
  19363. characterMakers.push(() => makeCharacter(
  19364. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19365. {
  19366. front: {
  19367. height: math.unit(6, "feet"),
  19368. name: "front",
  19369. image: {
  19370. source: "./media/characters/deja/front.svg",
  19371. extra: 926 / 840,
  19372. bottom: 0.07
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Planck Length",
  19379. height: math.unit(1.6e-35, "meters")
  19380. },
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(30.48, "meters"),
  19384. default: true
  19385. },
  19386. {
  19387. name: "Universal",
  19388. height: math.unit(8.8e26, "meters")
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19394. {
  19395. side: {
  19396. height: math.unit(8, "feet"),
  19397. weight: math.unit(6300, "lb"),
  19398. name: "Side",
  19399. image: {
  19400. source: "./media/characters/anima/side.svg",
  19401. bottom: 0.035
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Normal",
  19408. height: math.unit(8, "feet"),
  19409. default: true
  19410. },
  19411. ]
  19412. ))
  19413. characterMakers.push(() => makeCharacter(
  19414. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19415. {
  19416. front: {
  19417. height: math.unit(8, "feet"),
  19418. weight: math.unit(350, "lb"),
  19419. name: "Front",
  19420. image: {
  19421. source: "./media/characters/bianca/front.svg",
  19422. extra: 234 / 225,
  19423. bottom: 0.03
  19424. }
  19425. },
  19426. },
  19427. [
  19428. {
  19429. name: "Normal",
  19430. height: math.unit(8, "feet"),
  19431. default: true
  19432. },
  19433. ]
  19434. ))
  19435. characterMakers.push(() => makeCharacter(
  19436. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19437. {
  19438. front: {
  19439. height: math.unit(11 + 5/12, "feet"),
  19440. weight: math.unit(1200, "lb"),
  19441. name: "Front",
  19442. image: {
  19443. source: "./media/characters/adinia/front.svg",
  19444. extra: 1767/1641,
  19445. bottom: 44/1811
  19446. },
  19447. extraAttributes: {
  19448. "energyIntake": {
  19449. name: "Energy Intake",
  19450. power: 3,
  19451. type: "energy",
  19452. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19453. },
  19454. }
  19455. },
  19456. back: {
  19457. height: math.unit(11 + 5/12, "feet"),
  19458. weight: math.unit(1200, "lb"),
  19459. name: "Back",
  19460. image: {
  19461. source: "./media/characters/adinia/back.svg",
  19462. extra: 1834/1684,
  19463. bottom: 14/1848
  19464. },
  19465. extraAttributes: {
  19466. "energyIntake": {
  19467. name: "Energy Intake",
  19468. power: 3,
  19469. type: "energy",
  19470. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19471. },
  19472. }
  19473. },
  19474. maw: {
  19475. height: math.unit(3.79, "feet"),
  19476. name: "Maw",
  19477. image: {
  19478. source: "./media/characters/adinia/maw.svg"
  19479. }
  19480. },
  19481. rump: {
  19482. height: math.unit(4.6, "feet"),
  19483. name: "Rump",
  19484. image: {
  19485. source: "./media/characters/adinia/rump.svg"
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(11 + 5 / 12, "feet"),
  19493. default: true
  19494. },
  19495. ]
  19496. ))
  19497. characterMakers.push(() => makeCharacter(
  19498. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19499. {
  19500. front: {
  19501. height: math.unit(3, "meters"),
  19502. weight: math.unit(200, "kg"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/lykasa/front.svg",
  19506. extra: 1076 / 976,
  19507. bottom: 0.06
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(3, "meters")
  19515. },
  19516. {
  19517. name: "Kaiju",
  19518. height: math.unit(120, "meters"),
  19519. default: true
  19520. },
  19521. {
  19522. name: "Mega Kaiju",
  19523. height: math.unit(240, "km")
  19524. },
  19525. {
  19526. name: "Giga Kaiju",
  19527. height: math.unit(400, "megameters")
  19528. },
  19529. {
  19530. name: "Tera Kaiju",
  19531. height: math.unit(800, "gigameters")
  19532. },
  19533. {
  19534. name: "Kaiju Dragon Goddess",
  19535. height: math.unit(26, "zettaparsecs")
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19541. {
  19542. side: {
  19543. height: math.unit(283 / 124 * 6, "feet"),
  19544. weight: math.unit(35000, "lb"),
  19545. name: "Side",
  19546. image: {
  19547. source: "./media/characters/malfaren/side.svg",
  19548. extra: 1310/529,
  19549. bottom: 24/1334
  19550. }
  19551. },
  19552. front: {
  19553. height: math.unit(22.36, "feet"),
  19554. weight: math.unit(35000, "lb"),
  19555. name: "Front",
  19556. image: {
  19557. source: "./media/characters/malfaren/front.svg",
  19558. extra: 1237/1115,
  19559. bottom: 32/1269
  19560. }
  19561. },
  19562. maw: {
  19563. height: math.unit(6.9, "feet"),
  19564. name: "Maw",
  19565. image: {
  19566. source: "./media/characters/malfaren/maw.svg"
  19567. }
  19568. },
  19569. dick: {
  19570. height: math.unit(6.19, "feet"),
  19571. name: "Dick",
  19572. image: {
  19573. source: "./media/characters/malfaren/dick.svg"
  19574. }
  19575. },
  19576. eye: {
  19577. height: math.unit(0.69, "feet"),
  19578. name: "Eye",
  19579. image: {
  19580. source: "./media/characters/malfaren/eye.svg"
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Big",
  19587. height: math.unit(283 / 162 * 6, "feet"),
  19588. },
  19589. {
  19590. name: "Bigger",
  19591. height: math.unit(283 / 124 * 6, "feet")
  19592. },
  19593. {
  19594. name: "Massive",
  19595. height: math.unit(283 / 92 * 6, "feet"),
  19596. default: true
  19597. },
  19598. {
  19599. name: "👀💦",
  19600. height: math.unit(283 / 73 * 6, "feet"),
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(1.7, "m"),
  19609. weight: math.unit(70, "kg"),
  19610. name: "Front",
  19611. image: {
  19612. source: "./media/characters/kernel/front.svg",
  19613. extra: 222 / 210,
  19614. bottom: 0.007
  19615. }
  19616. },
  19617. },
  19618. [
  19619. {
  19620. name: "Nano",
  19621. height: math.unit(17, "micrometers")
  19622. },
  19623. {
  19624. name: "Micro",
  19625. height: math.unit(1.7, "mm")
  19626. },
  19627. {
  19628. name: "Small",
  19629. height: math.unit(1.7, "cm")
  19630. },
  19631. {
  19632. name: "Normal",
  19633. height: math.unit(1.7, "m"),
  19634. default: true
  19635. },
  19636. ]
  19637. ))
  19638. characterMakers.push(() => makeCharacter(
  19639. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19640. {
  19641. front: {
  19642. height: math.unit(1.75, "meters"),
  19643. weight: math.unit(65, "kg"),
  19644. name: "Front",
  19645. image: {
  19646. source: "./media/characters/jayne-folest/front.svg",
  19647. extra: 2115 / 2007,
  19648. bottom: 0.02
  19649. }
  19650. },
  19651. back: {
  19652. height: math.unit(1.75, "meters"),
  19653. weight: math.unit(65, "kg"),
  19654. name: "Back",
  19655. image: {
  19656. source: "./media/characters/jayne-folest/back.svg",
  19657. extra: 2115 / 2007,
  19658. bottom: 0.005
  19659. }
  19660. },
  19661. frontClothed: {
  19662. height: math.unit(1.75, "meters"),
  19663. weight: math.unit(65, "kg"),
  19664. name: "Front (Clothed)",
  19665. image: {
  19666. source: "./media/characters/jayne-folest/front-clothed.svg",
  19667. extra: 2115 / 2007,
  19668. bottom: 0.035
  19669. }
  19670. },
  19671. hand: {
  19672. height: math.unit(1 / 1.260, "feet"),
  19673. name: "Hand",
  19674. image: {
  19675. source: "./media/characters/jayne-folest/hand.svg"
  19676. }
  19677. },
  19678. foot: {
  19679. height: math.unit(1 / 0.918, "feet"),
  19680. name: "Foot",
  19681. image: {
  19682. source: "./media/characters/jayne-folest/foot.svg"
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Micro",
  19689. height: math.unit(4, "cm")
  19690. },
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(1.75, "meters")
  19694. },
  19695. {
  19696. name: "Macro",
  19697. height: math.unit(47.5, "meters"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(180, "cm"),
  19707. weight: math.unit(70, "kg"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/algier/front.svg",
  19711. extra: 596 / 572,
  19712. bottom: 0.04
  19713. }
  19714. },
  19715. back: {
  19716. height: math.unit(180, "cm"),
  19717. weight: math.unit(70, "kg"),
  19718. name: "Back",
  19719. image: {
  19720. source: "./media/characters/algier/back.svg",
  19721. extra: 596 / 572,
  19722. bottom: 0.025
  19723. }
  19724. },
  19725. frontdressed: {
  19726. height: math.unit(180, "cm"),
  19727. weight: math.unit(150, "kg"),
  19728. name: "Front-dressed",
  19729. image: {
  19730. source: "./media/characters/algier/front-dressed.svg",
  19731. extra: 596 / 572,
  19732. bottom: 0.038
  19733. }
  19734. },
  19735. },
  19736. [
  19737. {
  19738. name: "Micro",
  19739. height: math.unit(5, "cm")
  19740. },
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(180, "cm"),
  19744. default: true
  19745. },
  19746. {
  19747. name: "Macro",
  19748. height: math.unit(64, "m")
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19754. {
  19755. upright: {
  19756. height: math.unit(7, "feet"),
  19757. weight: math.unit(300, "lb"),
  19758. name: "Upright",
  19759. image: {
  19760. source: "./media/characters/pretzel/upright.svg",
  19761. extra: 534 / 522,
  19762. bottom: 0.065
  19763. }
  19764. },
  19765. sprawling: {
  19766. height: math.unit(3.75, "feet"),
  19767. weight: math.unit(300, "lb"),
  19768. name: "Sprawling",
  19769. image: {
  19770. source: "./media/characters/pretzel/sprawling.svg",
  19771. extra: 314 / 281,
  19772. bottom: 0.1
  19773. }
  19774. },
  19775. tongue: {
  19776. height: math.unit(2, "feet"),
  19777. name: "Tongue",
  19778. image: {
  19779. source: "./media/characters/pretzel/tongue.svg"
  19780. }
  19781. },
  19782. },
  19783. [
  19784. {
  19785. name: "Normal",
  19786. height: math.unit(7, "feet"),
  19787. default: true
  19788. },
  19789. {
  19790. name: "Oversized",
  19791. height: math.unit(15, "feet")
  19792. },
  19793. {
  19794. name: "Huge",
  19795. height: math.unit(30, "feet")
  19796. },
  19797. {
  19798. name: "Macro",
  19799. height: math.unit(250, "feet")
  19800. },
  19801. ]
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19805. {
  19806. sideFront: {
  19807. height: math.unit(5 + 2 / 12, "feet"),
  19808. weight: math.unit(120, "lb"),
  19809. name: "Front Side",
  19810. image: {
  19811. source: "./media/characters/roxi/side-front.svg",
  19812. extra: 2924 / 2717,
  19813. bottom: 0.08
  19814. }
  19815. },
  19816. sideBack: {
  19817. height: math.unit(5 + 2 / 12, "feet"),
  19818. weight: math.unit(120, "lb"),
  19819. name: "Back Side",
  19820. image: {
  19821. source: "./media/characters/roxi/side-back.svg",
  19822. extra: 2904 / 2693,
  19823. bottom: 0.06
  19824. }
  19825. },
  19826. front: {
  19827. height: math.unit(5 + 2 / 12, "feet"),
  19828. weight: math.unit(120, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/roxi/front.svg",
  19832. extra: 2028 / 1907,
  19833. bottom: 0.01
  19834. }
  19835. },
  19836. frontAlt: {
  19837. height: math.unit(5 + 2 / 12, "feet"),
  19838. weight: math.unit(120, "lb"),
  19839. name: "Front (Alt)",
  19840. image: {
  19841. source: "./media/characters/roxi/front-alt.svg",
  19842. extra: 1828 / 1798,
  19843. bottom: 0.01
  19844. }
  19845. },
  19846. sitting: {
  19847. height: math.unit(2.8, "feet"),
  19848. weight: math.unit(120, "lb"),
  19849. name: "Sitting",
  19850. image: {
  19851. source: "./media/characters/roxi/sitting.svg",
  19852. extra: 2660 / 2462,
  19853. bottom: 0.1
  19854. }
  19855. },
  19856. },
  19857. [
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(5 + 2 / 12, "feet"),
  19861. default: true
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19867. {
  19868. side: {
  19869. height: math.unit(55, "feet"),
  19870. weight: math.unit(153, "tons"),
  19871. name: "Side",
  19872. image: {
  19873. source: "./media/characters/shadow/side.svg",
  19874. extra: 701 / 628,
  19875. bottom: 0.02
  19876. }
  19877. },
  19878. flying: {
  19879. height: math.unit(145, "feet"),
  19880. weight: math.unit(153, "tons"),
  19881. name: "Flying",
  19882. image: {
  19883. source: "./media/characters/shadow/flying.svg"
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(55, "feet"),
  19891. default: true
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19897. {
  19898. front: {
  19899. height: math.unit(6, "feet"),
  19900. weight: math.unit(200, "lb"),
  19901. name: "Front",
  19902. image: {
  19903. source: "./media/characters/marcie/front.svg",
  19904. extra: 960 / 876,
  19905. bottom: 58 / 1017.87
  19906. }
  19907. },
  19908. },
  19909. [
  19910. {
  19911. name: "Macro",
  19912. height: math.unit(1, "mile"),
  19913. default: true
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(7, "feet"),
  19922. weight: math.unit(200, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/kachina/front.svg",
  19926. extra: 1290.68 / 1119,
  19927. bottom: 36.5 / 1327.18
  19928. }
  19929. },
  19930. },
  19931. [
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(7, "feet"),
  19935. default: true
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19941. {
  19942. looking: {
  19943. height: math.unit(2, "meters"),
  19944. weight: math.unit(300, "kg"),
  19945. name: "Looking",
  19946. image: {
  19947. source: "./media/characters/kash/looking.svg",
  19948. extra: 474 / 344,
  19949. bottom: 0.03
  19950. }
  19951. },
  19952. side: {
  19953. height: math.unit(2, "meters"),
  19954. weight: math.unit(300, "kg"),
  19955. name: "Side",
  19956. image: {
  19957. source: "./media/characters/kash/side.svg",
  19958. extra: 302 / 251,
  19959. bottom: 0.03
  19960. }
  19961. },
  19962. front: {
  19963. height: math.unit(2, "meters"),
  19964. weight: math.unit(300, "kg"),
  19965. name: "Front",
  19966. image: {
  19967. source: "./media/characters/kash/front.svg",
  19968. extra: 495 / 360,
  19969. bottom: 0.015
  19970. }
  19971. },
  19972. },
  19973. [
  19974. {
  19975. name: "Normal",
  19976. height: math.unit(2, "meters"),
  19977. default: true
  19978. },
  19979. {
  19980. name: "Big",
  19981. height: math.unit(3, "meters")
  19982. },
  19983. {
  19984. name: "Large",
  19985. height: math.unit(5, "meters")
  19986. },
  19987. ]
  19988. ))
  19989. characterMakers.push(() => makeCharacter(
  19990. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19991. {
  19992. feeding: {
  19993. height: math.unit(6.7, "feet"),
  19994. weight: math.unit(350, "lb"),
  19995. name: "Feeding",
  19996. image: {
  19997. source: "./media/characters/lalim/feeding.svg",
  19998. }
  19999. },
  20000. },
  20001. [
  20002. {
  20003. name: "Normal",
  20004. height: math.unit(6.7, "feet"),
  20005. default: true
  20006. },
  20007. ]
  20008. ))
  20009. characterMakers.push(() => makeCharacter(
  20010. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20011. {
  20012. front: {
  20013. height: math.unit(9.5, "feet"),
  20014. weight: math.unit(600, "lb"),
  20015. name: "Front",
  20016. image: {
  20017. source: "./media/characters/de'vout/front.svg",
  20018. extra: 1443 / 1328,
  20019. bottom: 0.025
  20020. }
  20021. },
  20022. back: {
  20023. height: math.unit(9.5, "feet"),
  20024. weight: math.unit(600, "lb"),
  20025. name: "Back",
  20026. image: {
  20027. source: "./media/characters/de'vout/back.svg",
  20028. extra: 1443 / 1328
  20029. }
  20030. },
  20031. frontDressed: {
  20032. height: math.unit(9.5, "feet"),
  20033. weight: math.unit(600, "lb"),
  20034. name: "Front (Dressed",
  20035. image: {
  20036. source: "./media/characters/de'vout/front-dressed.svg",
  20037. extra: 1443 / 1328,
  20038. bottom: 0.025
  20039. }
  20040. },
  20041. backDressed: {
  20042. height: math.unit(9.5, "feet"),
  20043. weight: math.unit(600, "lb"),
  20044. name: "Back (Dressed",
  20045. image: {
  20046. source: "./media/characters/de'vout/back-dressed.svg",
  20047. extra: 1443 / 1328
  20048. }
  20049. },
  20050. },
  20051. [
  20052. {
  20053. name: "Normal",
  20054. height: math.unit(9.5, "feet"),
  20055. default: true
  20056. },
  20057. ]
  20058. ))
  20059. characterMakers.push(() => makeCharacter(
  20060. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20061. {
  20062. front: {
  20063. height: math.unit(8, "feet"),
  20064. weight: math.unit(225, "lb"),
  20065. name: "Front",
  20066. image: {
  20067. source: "./media/characters/talana/front.svg",
  20068. extra: 1410 / 1300,
  20069. bottom: 0.015
  20070. }
  20071. },
  20072. frontDressed: {
  20073. height: math.unit(8, "feet"),
  20074. weight: math.unit(225, "lb"),
  20075. name: "Front (Dressed",
  20076. image: {
  20077. source: "./media/characters/talana/front-dressed.svg",
  20078. extra: 1410 / 1300,
  20079. bottom: 0.015
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(8, "feet"),
  20087. default: true
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20093. {
  20094. side: {
  20095. height: math.unit(7.2, "feet"),
  20096. weight: math.unit(150, "lb"),
  20097. name: "Side",
  20098. image: {
  20099. source: "./media/characters/xeauvok/side.svg",
  20100. extra: 1975 / 1523,
  20101. bottom: 0.07
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(7.2, "feet"),
  20109. default: true
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20115. {
  20116. side: {
  20117. height: math.unit(4, "meters"),
  20118. weight: math.unit(2200, "kg"),
  20119. name: "Side",
  20120. image: {
  20121. source: "./media/characters/zara/side.svg",
  20122. extra: 765/744,
  20123. bottom: 156/921
  20124. }
  20125. },
  20126. },
  20127. [
  20128. {
  20129. name: "Normal",
  20130. height: math.unit(4, "meters"),
  20131. default: true
  20132. },
  20133. ]
  20134. ))
  20135. characterMakers.push(() => makeCharacter(
  20136. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20137. {
  20138. side: {
  20139. height: math.unit(6, "feet"),
  20140. weight: math.unit(150, "lb"),
  20141. name: "Side",
  20142. image: {
  20143. source: "./media/characters/richard-dragon/side.svg",
  20144. extra: 845 / 340,
  20145. bottom: 0.017
  20146. }
  20147. },
  20148. maw: {
  20149. height: math.unit(2.97, "feet"),
  20150. name: "Maw",
  20151. image: {
  20152. source: "./media/characters/richard-dragon/maw.svg"
  20153. }
  20154. },
  20155. },
  20156. [
  20157. ]
  20158. ))
  20159. characterMakers.push(() => makeCharacter(
  20160. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20161. {
  20162. front: {
  20163. height: math.unit(4, "feet"),
  20164. weight: math.unit(100, "lb"),
  20165. name: "Front",
  20166. image: {
  20167. source: "./media/characters/richard-smeargle/front.svg",
  20168. extra: 2952 / 2820,
  20169. bottom: 0.028
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(4, "feet"),
  20177. default: true
  20178. },
  20179. {
  20180. name: "Dynamax",
  20181. height: math.unit(20, "meters")
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20187. {
  20188. front: {
  20189. height: math.unit(6, "feet"),
  20190. weight: math.unit(110, "lb"),
  20191. name: "Front",
  20192. image: {
  20193. source: "./media/characters/klay/front.svg",
  20194. extra: 962 / 883,
  20195. bottom: 0.04
  20196. }
  20197. },
  20198. back: {
  20199. height: math.unit(6, "feet"),
  20200. weight: math.unit(110, "lb"),
  20201. name: "Back",
  20202. image: {
  20203. source: "./media/characters/klay/back.svg",
  20204. extra: 962 / 883
  20205. }
  20206. },
  20207. beans: {
  20208. height: math.unit(1.15, "feet"),
  20209. name: "Beans",
  20210. image: {
  20211. source: "./media/characters/klay/beans.svg"
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Micro",
  20218. height: math.unit(6, "inches")
  20219. },
  20220. {
  20221. name: "Mini",
  20222. height: math.unit(3, "feet")
  20223. },
  20224. {
  20225. name: "Normal",
  20226. height: math.unit(6, "feet"),
  20227. default: true
  20228. },
  20229. {
  20230. name: "Big",
  20231. height: math.unit(25, "feet")
  20232. },
  20233. {
  20234. name: "Macro",
  20235. height: math.unit(100, "feet")
  20236. },
  20237. {
  20238. name: "Megamacro",
  20239. height: math.unit(400, "feet")
  20240. },
  20241. ]
  20242. ))
  20243. characterMakers.push(() => makeCharacter(
  20244. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20245. {
  20246. front: {
  20247. height: math.unit(6, "feet"),
  20248. weight: math.unit(160, "lb"),
  20249. name: "Front",
  20250. image: {
  20251. source: "./media/characters/marcus/front.svg",
  20252. extra: 734 / 676,
  20253. bottom: 0.03
  20254. }
  20255. },
  20256. },
  20257. [
  20258. {
  20259. name: "Little",
  20260. height: math.unit(6, "feet")
  20261. },
  20262. {
  20263. name: "Normal",
  20264. height: math.unit(110, "feet"),
  20265. default: true
  20266. },
  20267. {
  20268. name: "Macro",
  20269. height: math.unit(250, "feet")
  20270. },
  20271. {
  20272. name: "Megamacro",
  20273. height: math.unit(1000, "feet")
  20274. },
  20275. ]
  20276. ))
  20277. characterMakers.push(() => makeCharacter(
  20278. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20279. {
  20280. front: {
  20281. height: math.unit(7, "feet"),
  20282. weight: math.unit(275, "lb"),
  20283. name: "Front",
  20284. image: {
  20285. source: "./media/characters/claude-delroute/front.svg",
  20286. extra: 902/827,
  20287. bottom: 26/928
  20288. }
  20289. },
  20290. side: {
  20291. height: math.unit(7, "feet"),
  20292. weight: math.unit(275, "lb"),
  20293. name: "Side",
  20294. image: {
  20295. source: "./media/characters/claude-delroute/side.svg",
  20296. extra: 908/853,
  20297. bottom: 16/924
  20298. }
  20299. },
  20300. back: {
  20301. height: math.unit(7, "feet"),
  20302. weight: math.unit(275, "lb"),
  20303. name: "Back",
  20304. image: {
  20305. source: "./media/characters/claude-delroute/back.svg",
  20306. extra: 911/829,
  20307. bottom: 18/929
  20308. }
  20309. },
  20310. maw: {
  20311. height: math.unit(0.6407, "meters"),
  20312. name: "Maw",
  20313. image: {
  20314. source: "./media/characters/claude-delroute/maw.svg"
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Normal",
  20321. height: math.unit(7, "feet"),
  20322. default: true
  20323. },
  20324. {
  20325. name: "Lorge",
  20326. height: math.unit(20, "feet")
  20327. },
  20328. ]
  20329. ))
  20330. characterMakers.push(() => makeCharacter(
  20331. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20332. {
  20333. front: {
  20334. height: math.unit(8 + 4 / 12, "feet"),
  20335. weight: math.unit(600, "lb"),
  20336. name: "Front",
  20337. image: {
  20338. source: "./media/characters/dragonien/front.svg",
  20339. extra: 100 / 94,
  20340. bottom: 3.3 / 103.3445
  20341. }
  20342. },
  20343. back: {
  20344. height: math.unit(8 + 4 / 12, "feet"),
  20345. weight: math.unit(600, "lb"),
  20346. name: "Back",
  20347. image: {
  20348. source: "./media/characters/dragonien/back.svg",
  20349. extra: 776 / 746,
  20350. bottom: 6.4 / 782.0616
  20351. }
  20352. },
  20353. foot: {
  20354. height: math.unit(1.54, "feet"),
  20355. name: "Foot",
  20356. image: {
  20357. source: "./media/characters/dragonien/foot.svg",
  20358. }
  20359. },
  20360. },
  20361. [
  20362. {
  20363. name: "Normal",
  20364. height: math.unit(8 + 4 / 12, "feet"),
  20365. default: true
  20366. },
  20367. {
  20368. name: "Macro",
  20369. height: math.unit(200, "feet")
  20370. },
  20371. {
  20372. name: "Megamacro",
  20373. height: math.unit(1, "mile")
  20374. },
  20375. {
  20376. name: "Gigamacro",
  20377. height: math.unit(1000, "miles")
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20383. {
  20384. front: {
  20385. height: math.unit(5 + 2 / 12, "feet"),
  20386. weight: math.unit(110, "lb"),
  20387. name: "Front",
  20388. image: {
  20389. source: "./media/characters/desta/front.svg",
  20390. extra: 767 / 726,
  20391. bottom: 11.7 / 779
  20392. }
  20393. },
  20394. back: {
  20395. height: math.unit(5 + 2 / 12, "feet"),
  20396. weight: math.unit(110, "lb"),
  20397. name: "Back",
  20398. image: {
  20399. source: "./media/characters/desta/back.svg",
  20400. extra: 777 / 728,
  20401. bottom: 6 / 784
  20402. }
  20403. },
  20404. frontAlt: {
  20405. height: math.unit(5 + 2 / 12, "feet"),
  20406. weight: math.unit(110, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/desta/front-alt.svg",
  20410. extra: 1482 / 1417
  20411. }
  20412. },
  20413. side: {
  20414. height: math.unit(5 + 2 / 12, "feet"),
  20415. weight: math.unit(110, "lb"),
  20416. name: "Side",
  20417. image: {
  20418. source: "./media/characters/desta/side.svg",
  20419. extra: 2579 / 2491,
  20420. bottom: 0.053
  20421. }
  20422. },
  20423. },
  20424. [
  20425. {
  20426. name: "Micro",
  20427. height: math.unit(6, "inches")
  20428. },
  20429. {
  20430. name: "Normal",
  20431. height: math.unit(5 + 2 / 12, "feet"),
  20432. default: true
  20433. },
  20434. {
  20435. name: "Macro",
  20436. height: math.unit(62, "feet")
  20437. },
  20438. {
  20439. name: "Megamacro",
  20440. height: math.unit(1800, "feet")
  20441. },
  20442. ]
  20443. ))
  20444. characterMakers.push(() => makeCharacter(
  20445. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20446. {
  20447. front: {
  20448. height: math.unit(10, "feet"),
  20449. weight: math.unit(700, "lb"),
  20450. name: "Front",
  20451. image: {
  20452. source: "./media/characters/storm-alystar/front.svg",
  20453. extra: 2112 / 1898,
  20454. bottom: 0.034
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Micro",
  20461. height: math.unit(3.5, "inches")
  20462. },
  20463. {
  20464. name: "Normal",
  20465. height: math.unit(10, "feet"),
  20466. default: true
  20467. },
  20468. {
  20469. name: "Macro",
  20470. height: math.unit(400, "feet")
  20471. },
  20472. {
  20473. name: "Deific",
  20474. height: math.unit(60, "miles")
  20475. },
  20476. ]
  20477. ))
  20478. characterMakers.push(() => makeCharacter(
  20479. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20480. {
  20481. front: {
  20482. height: math.unit(2.35, "meters"),
  20483. weight: math.unit(119, "kg"),
  20484. name: "Front",
  20485. image: {
  20486. source: "./media/characters/ilia/front.svg",
  20487. extra: 1285 / 1255,
  20488. bottom: 0.06
  20489. }
  20490. },
  20491. },
  20492. [
  20493. {
  20494. name: "Normal",
  20495. height: math.unit(2.35, "meters")
  20496. },
  20497. {
  20498. name: "Macro",
  20499. height: math.unit(140, "meters"),
  20500. default: true
  20501. },
  20502. {
  20503. name: "Megamacro",
  20504. height: math.unit(100, "miles")
  20505. },
  20506. ]
  20507. ))
  20508. characterMakers.push(() => makeCharacter(
  20509. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20510. {
  20511. front: {
  20512. height: math.unit(6 + 5 / 12, "feet"),
  20513. weight: math.unit(190, "lb"),
  20514. name: "Front",
  20515. image: {
  20516. source: "./media/characters/kingdead/front.svg",
  20517. extra: 1228 / 1177
  20518. }
  20519. },
  20520. },
  20521. [
  20522. {
  20523. name: "Micro",
  20524. height: math.unit(7, "inches")
  20525. },
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(6 + 5 / 12, "feet")
  20529. },
  20530. {
  20531. name: "Macro",
  20532. height: math.unit(150, "feet"),
  20533. default: true
  20534. },
  20535. {
  20536. name: "Megamacro",
  20537. height: math.unit(200, "miles")
  20538. },
  20539. ]
  20540. ))
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20543. {
  20544. front: {
  20545. height: math.unit(8, "feet"),
  20546. weight: math.unit(600, "lb"),
  20547. name: "Front",
  20548. image: {
  20549. source: "./media/characters/kyrehx/front.svg",
  20550. extra: 1195 / 1095,
  20551. bottom: 0.034
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Micro",
  20558. height: math.unit(2, "inches")
  20559. },
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(8, "feet"),
  20563. default: true
  20564. },
  20565. {
  20566. name: "Macro",
  20567. height: math.unit(255, "feet")
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20573. {
  20574. front: {
  20575. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20576. weight: math.unit(184, "lb"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/xang/front.svg",
  20580. extra: 845 / 755
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20588. default: true
  20589. },
  20590. {
  20591. name: "Macro",
  20592. height: math.unit(0.935 * 146, "feet")
  20593. },
  20594. {
  20595. name: "Megamacro",
  20596. height: math.unit(0.935 * 3, "miles")
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20602. {
  20603. frontDressed: {
  20604. height: math.unit(5 + 7 / 12, "feet"),
  20605. weight: math.unit(140, "lb"),
  20606. name: "Front (Dressed)",
  20607. image: {
  20608. source: "./media/characters/doc-weardno/front-dressed.svg",
  20609. extra: 263 / 234
  20610. }
  20611. },
  20612. backDressed: {
  20613. height: math.unit(5 + 7 / 12, "feet"),
  20614. weight: math.unit(140, "lb"),
  20615. name: "Back (Dressed)",
  20616. image: {
  20617. source: "./media/characters/doc-weardno/back-dressed.svg",
  20618. extra: 266 / 238
  20619. }
  20620. },
  20621. front: {
  20622. height: math.unit(5 + 7 / 12, "feet"),
  20623. weight: math.unit(140, "lb"),
  20624. name: "Front",
  20625. image: {
  20626. source: "./media/characters/doc-weardno/front.svg",
  20627. extra: 254 / 233
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Micro",
  20634. height: math.unit(3, "inches")
  20635. },
  20636. {
  20637. name: "Normal",
  20638. height: math.unit(5 + 7 / 12, "feet"),
  20639. default: true
  20640. },
  20641. {
  20642. name: "Macro",
  20643. height: math.unit(25, "feet")
  20644. },
  20645. {
  20646. name: "Megamacro",
  20647. height: math.unit(2, "miles")
  20648. },
  20649. ]
  20650. ))
  20651. characterMakers.push(() => makeCharacter(
  20652. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20653. {
  20654. front: {
  20655. height: math.unit(6 + 2 / 12, "feet"),
  20656. weight: math.unit(153, "lb"),
  20657. name: "Front",
  20658. image: {
  20659. source: "./media/characters/seth-whilst/front.svg",
  20660. bottom: 0.07
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Micro",
  20667. height: math.unit(5, "inches")
  20668. },
  20669. {
  20670. name: "Normal",
  20671. height: math.unit(6 + 2 / 12, "feet"),
  20672. default: true
  20673. },
  20674. ]
  20675. ))
  20676. characterMakers.push(() => makeCharacter(
  20677. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20678. {
  20679. front: {
  20680. height: math.unit(3, "inches"),
  20681. weight: math.unit(8, "grams"),
  20682. name: "Front",
  20683. image: {
  20684. source: "./media/characters/pocket-jabari/front.svg",
  20685. extra: 1024 / 974,
  20686. bottom: 0.039
  20687. }
  20688. },
  20689. },
  20690. [
  20691. {
  20692. name: "Minimicro",
  20693. height: math.unit(8, "mm")
  20694. },
  20695. {
  20696. name: "Micro",
  20697. height: math.unit(3, "inches"),
  20698. default: true
  20699. },
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(3, "feet")
  20703. },
  20704. ]
  20705. ))
  20706. characterMakers.push(() => makeCharacter(
  20707. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20708. {
  20709. frontDressed: {
  20710. height: math.unit(15, "feet"),
  20711. weight: math.unit(3280, "lb"),
  20712. name: "Front (Dressed)",
  20713. image: {
  20714. source: "./media/characters/sapphy/front-dressed.svg",
  20715. extra: 1951/1654,
  20716. bottom: 194/2145
  20717. },
  20718. form: "anthro",
  20719. default: true
  20720. },
  20721. backDressed: {
  20722. height: math.unit(15, "feet"),
  20723. weight: math.unit(3280, "lb"),
  20724. name: "Back (Dressed)",
  20725. image: {
  20726. source: "./media/characters/sapphy/back-dressed.svg",
  20727. extra: 2058/1918,
  20728. bottom: 125/2183
  20729. },
  20730. form: "anthro"
  20731. },
  20732. frontNude: {
  20733. height: math.unit(15, "feet"),
  20734. weight: math.unit(3280, "lb"),
  20735. name: "Front (Nude)",
  20736. image: {
  20737. source: "./media/characters/sapphy/front-nude.svg",
  20738. extra: 1951/1654,
  20739. bottom: 194/2145
  20740. },
  20741. form: "anthro"
  20742. },
  20743. backNude: {
  20744. height: math.unit(15, "feet"),
  20745. weight: math.unit(3280, "lb"),
  20746. name: "Back (Nude)",
  20747. image: {
  20748. source: "./media/characters/sapphy/back-nude.svg",
  20749. extra: 2058/1918,
  20750. bottom: 125/2183
  20751. },
  20752. form: "anthro"
  20753. },
  20754. full: {
  20755. height: math.unit(15, "feet"),
  20756. weight: math.unit(3280, "lb"),
  20757. name: "Full",
  20758. image: {
  20759. source: "./media/characters/sapphy/full.svg",
  20760. extra: 1396/1317,
  20761. bottom: 44/1440
  20762. },
  20763. form: "anthro"
  20764. },
  20765. dick: {
  20766. height: math.unit(3.8, "feet"),
  20767. name: "Dick",
  20768. image: {
  20769. source: "./media/characters/sapphy/dick.svg"
  20770. },
  20771. form: "anthro"
  20772. },
  20773. feral: {
  20774. height: math.unit(35, "feet"),
  20775. weight: math.unit(160, "tons"),
  20776. name: "Feral",
  20777. image: {
  20778. source: "./media/characters/sapphy/feral.svg",
  20779. extra: 1050/573,
  20780. bottom: 60/1110
  20781. },
  20782. form: "feral",
  20783. default: true
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Normal",
  20789. height: math.unit(15, "feet"),
  20790. form: "anthro"
  20791. },
  20792. {
  20793. name: "Casual Macro",
  20794. height: math.unit(120, "feet"),
  20795. form: "anthro"
  20796. },
  20797. {
  20798. name: "Macro",
  20799. height: math.unit(2150, "feet"),
  20800. default: true,
  20801. form: "anthro"
  20802. },
  20803. {
  20804. name: "Megamacro",
  20805. height: math.unit(8, "miles"),
  20806. form: "anthro"
  20807. },
  20808. {
  20809. name: "Galaxy Mom",
  20810. height: math.unit(6, "megalightyears"),
  20811. form: "anthro"
  20812. },
  20813. {
  20814. name: "Normal",
  20815. height: math.unit(35, "feet"),
  20816. form: "feral",
  20817. default: true
  20818. },
  20819. {
  20820. name: "Macro",
  20821. height: math.unit(300, "feet"),
  20822. form: "feral"
  20823. },
  20824. {
  20825. name: "Galaxy Mom",
  20826. height: math.unit(10, "megalightyears"),
  20827. form: "feral"
  20828. },
  20829. ],
  20830. {
  20831. "anthro": {
  20832. name: "Anthro",
  20833. default: true
  20834. },
  20835. "feral": {
  20836. name: "Feral"
  20837. }
  20838. }
  20839. ))
  20840. characterMakers.push(() => makeCharacter(
  20841. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20842. {
  20843. hyenaFront: {
  20844. height: math.unit(6, "feet"),
  20845. weight: math.unit(190, "lb"),
  20846. name: "Front",
  20847. image: {
  20848. source: "./media/characters/kiro/hyena-front.svg",
  20849. extra: 927/839,
  20850. bottom: 91/1018
  20851. },
  20852. form: "hyena",
  20853. default: true
  20854. },
  20855. front: {
  20856. height: math.unit(6, "feet"),
  20857. weight: math.unit(170, "lb"),
  20858. name: "Front",
  20859. image: {
  20860. source: "./media/characters/kiro/front.svg",
  20861. extra: 1064 / 1012,
  20862. bottom: 0.052
  20863. },
  20864. form: "folf",
  20865. default: true
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Micro",
  20871. height: math.unit(6, "inches"),
  20872. form: "folf"
  20873. },
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(6, "feet"),
  20877. form: "folf",
  20878. default: true
  20879. },
  20880. {
  20881. name: "Macro",
  20882. height: math.unit(72, "feet"),
  20883. form: "folf"
  20884. },
  20885. {
  20886. name: "Micro",
  20887. height: math.unit(6, "inches"),
  20888. form: "hyena"
  20889. },
  20890. {
  20891. name: "Normal",
  20892. height: math.unit(6, "feet"),
  20893. form: "hyena",
  20894. default: true
  20895. },
  20896. {
  20897. name: "Macro",
  20898. height: math.unit(72, "feet"),
  20899. form: "hyena"
  20900. },
  20901. ],
  20902. {
  20903. "hyena": {
  20904. name: "Hyena",
  20905. default: true
  20906. },
  20907. "folf": {
  20908. name: "Folf",
  20909. },
  20910. }
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20914. {
  20915. front: {
  20916. height: math.unit(5 + 9 / 12, "feet"),
  20917. weight: math.unit(175, "lb"),
  20918. name: "Front",
  20919. image: {
  20920. source: "./media/characters/irishfox/front.svg",
  20921. extra: 1912 / 1680,
  20922. bottom: 0.02
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Nano",
  20929. height: math.unit(1, "mm")
  20930. },
  20931. {
  20932. name: "Micro",
  20933. height: math.unit(2, "inches")
  20934. },
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(5 + 9 / 12, "feet"),
  20938. default: true
  20939. },
  20940. {
  20941. name: "Macro",
  20942. height: math.unit(45, "feet")
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(6 + 1 / 12, "feet"),
  20951. weight: math.unit(75, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/aronai-sieyes/front.svg",
  20955. extra: 1532/1450,
  20956. bottom: 42/1574
  20957. }
  20958. },
  20959. side: {
  20960. height: math.unit(6 + 1 / 12, "feet"),
  20961. weight: math.unit(75, "lb"),
  20962. name: "Side",
  20963. image: {
  20964. source: "./media/characters/aronai-sieyes/side.svg",
  20965. extra: 1422/1365,
  20966. bottom: 148/1570
  20967. }
  20968. },
  20969. back: {
  20970. height: math.unit(6 + 1 / 12, "feet"),
  20971. weight: math.unit(75, "lb"),
  20972. name: "Back",
  20973. image: {
  20974. source: "./media/characters/aronai-sieyes/back.svg",
  20975. extra: 1526/1464,
  20976. bottom: 51/1577
  20977. }
  20978. },
  20979. dressed: {
  20980. height: math.unit(6 + 1 / 12, "feet"),
  20981. weight: math.unit(75, "lb"),
  20982. name: "Dressed",
  20983. image: {
  20984. source: "./media/characters/aronai-sieyes/dressed.svg",
  20985. extra: 1559/1483,
  20986. bottom: 39/1598
  20987. }
  20988. },
  20989. slit: {
  20990. height: math.unit(1.3, "feet"),
  20991. name: "Slit",
  20992. image: {
  20993. source: "./media/characters/aronai-sieyes/slit.svg"
  20994. }
  20995. },
  20996. slitSpread: {
  20997. height: math.unit(0.9, "feet"),
  20998. name: "Slit (Spread)",
  20999. image: {
  21000. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21001. }
  21002. },
  21003. rump: {
  21004. height: math.unit(1.3, "feet"),
  21005. name: "Rump",
  21006. image: {
  21007. source: "./media/characters/aronai-sieyes/rump.svg"
  21008. }
  21009. },
  21010. maw: {
  21011. height: math.unit(1.25, "feet"),
  21012. name: "Maw",
  21013. image: {
  21014. source: "./media/characters/aronai-sieyes/maw.svg"
  21015. }
  21016. },
  21017. feral: {
  21018. height: math.unit(18, "feet"),
  21019. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21020. name: "Feral",
  21021. image: {
  21022. source: "./media/characters/aronai-sieyes/feral.svg",
  21023. extra: 1530 / 1240,
  21024. bottom: 0.035
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Micro",
  21031. height: math.unit(2, "inches")
  21032. },
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(6 + 1 / 12, "feet"),
  21036. default: true
  21037. }
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21042. {
  21043. front: {
  21044. height: math.unit(12, "feet"),
  21045. weight: math.unit(410, "kg"),
  21046. name: "Front",
  21047. image: {
  21048. source: "./media/characters/xuna/front.svg",
  21049. extra: 2184 / 1980
  21050. }
  21051. },
  21052. side: {
  21053. height: math.unit(12, "feet"),
  21054. weight: math.unit(410, "kg"),
  21055. name: "Side",
  21056. image: {
  21057. source: "./media/characters/xuna/side.svg",
  21058. extra: 2184 / 1980
  21059. }
  21060. },
  21061. back: {
  21062. height: math.unit(12, "feet"),
  21063. weight: math.unit(410, "kg"),
  21064. name: "Back",
  21065. image: {
  21066. source: "./media/characters/xuna/back.svg",
  21067. extra: 2184 / 1980
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Nano glow",
  21074. height: math.unit(10, "nm")
  21075. },
  21076. {
  21077. name: "Micro floof",
  21078. height: math.unit(0.3, "m")
  21079. },
  21080. {
  21081. name: "Huggable softy boi",
  21082. height: math.unit(3.6576, "m"),
  21083. default: true
  21084. },
  21085. {
  21086. name: "Admirable floof",
  21087. height: math.unit(80, "meters")
  21088. },
  21089. {
  21090. name: "Gentle macro",
  21091. height: math.unit(300, "meters")
  21092. },
  21093. {
  21094. name: "Very careful floof",
  21095. height: math.unit(3200, "meters")
  21096. },
  21097. {
  21098. name: "The mega floof",
  21099. height: math.unit(36000, "meters")
  21100. },
  21101. {
  21102. name: "Giga-fur-Wicker",
  21103. height: math.unit(4800000, "meters")
  21104. },
  21105. {
  21106. name: "Licky world",
  21107. height: math.unit(20000000, "meters")
  21108. },
  21109. {
  21110. name: "Floofy cyan sun",
  21111. height: math.unit(1500000000, "meters")
  21112. },
  21113. {
  21114. name: "Milky Wicker",
  21115. height: math.unit(1000000000000000000000, "meters")
  21116. },
  21117. {
  21118. name: "The observing Wicker",
  21119. height: math.unit(999999999999999999999999999, "meters")
  21120. },
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21125. {
  21126. front: {
  21127. height: math.unit(5 + 9 / 12, "feet"),
  21128. weight: math.unit(150, "lb"),
  21129. name: "Front",
  21130. image: {
  21131. source: "./media/characters/arokha-sieyes/front.svg",
  21132. extra: 1425 / 1284,
  21133. bottom: 0.05
  21134. }
  21135. },
  21136. },
  21137. [
  21138. {
  21139. name: "Normal",
  21140. height: math.unit(5 + 9 / 12, "feet")
  21141. },
  21142. {
  21143. name: "Macro",
  21144. height: math.unit(30, "meters"),
  21145. default: true
  21146. },
  21147. ]
  21148. ))
  21149. characterMakers.push(() => makeCharacter(
  21150. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21151. {
  21152. front: {
  21153. height: math.unit(6, "feet"),
  21154. weight: math.unit(180, "lb"),
  21155. name: "Front",
  21156. image: {
  21157. source: "./media/characters/arokh-sieyes/front.svg",
  21158. extra: 1830 / 1769,
  21159. bottom: 0.01
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Normal",
  21166. height: math.unit(6, "feet")
  21167. },
  21168. {
  21169. name: "Macro",
  21170. height: math.unit(30, "meters"),
  21171. default: true
  21172. },
  21173. ]
  21174. ))
  21175. characterMakers.push(() => makeCharacter(
  21176. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21177. {
  21178. side: {
  21179. height: math.unit(13 + 1 / 12, "feet"),
  21180. weight: math.unit(8.5, "tonnes"),
  21181. preyCapacity: math.unit(36, "people"),
  21182. name: "Side",
  21183. image: {
  21184. source: "./media/characters/goldeneye/side.svg",
  21185. extra: 1139/741,
  21186. bottom: 98/1237
  21187. }
  21188. },
  21189. front: {
  21190. height: math.unit(5.1, "feet"),
  21191. weight: math.unit(8.5, "tonnes"),
  21192. preyCapacity: math.unit(36, "people"),
  21193. name: "Front",
  21194. image: {
  21195. source: "./media/characters/goldeneye/front.svg",
  21196. extra: 635/365,
  21197. bottom: 598/1233
  21198. }
  21199. },
  21200. maw: {
  21201. height: math.unit(6.6, "feet"),
  21202. name: "Maw",
  21203. image: {
  21204. source: "./media/characters/goldeneye/maw.svg"
  21205. }
  21206. },
  21207. headFront: {
  21208. height: math.unit(8, "feet"),
  21209. name: "Head (Front)",
  21210. image: {
  21211. source: "./media/characters/goldeneye/head-front.svg"
  21212. }
  21213. },
  21214. headSide: {
  21215. height: math.unit(6, "feet"),
  21216. name: "Head (Side)",
  21217. image: {
  21218. source: "./media/characters/goldeneye/head-side.svg"
  21219. }
  21220. },
  21221. headBack: {
  21222. height: math.unit(8, "feet"),
  21223. name: "Head (Back)",
  21224. image: {
  21225. source: "./media/characters/goldeneye/head-back.svg"
  21226. }
  21227. },
  21228. paw: {
  21229. height: math.unit(3.4, "feet"),
  21230. name: "Paw",
  21231. image: {
  21232. source: "./media/characters/goldeneye/paw.svg"
  21233. }
  21234. },
  21235. toering: {
  21236. height: math.unit(0.45, "feet"),
  21237. name: "Toering",
  21238. image: {
  21239. source: "./media/characters/goldeneye/toering.svg"
  21240. }
  21241. },
  21242. eyes: {
  21243. height: math.unit(0.5, "feet"),
  21244. name: "Eyes",
  21245. image: {
  21246. source: "./media/characters/goldeneye/eyes.svg"
  21247. }
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(13 + 1 / 12, "feet"),
  21254. default: true
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21260. {
  21261. front: {
  21262. height: math.unit(6 + 1 / 12, "feet"),
  21263. weight: math.unit(210, "lb"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/leonardo-lycheborne/front.svg",
  21267. extra: 776/723,
  21268. bottom: 34/810
  21269. }
  21270. },
  21271. side: {
  21272. height: math.unit(6 + 1 / 12, "feet"),
  21273. weight: math.unit(210, "lb"),
  21274. name: "Side",
  21275. image: {
  21276. source: "./media/characters/leonardo-lycheborne/side.svg",
  21277. extra: 780/728,
  21278. bottom: 12/792
  21279. }
  21280. },
  21281. back: {
  21282. height: math.unit(6 + 1 / 12, "feet"),
  21283. weight: math.unit(210, "lb"),
  21284. name: "Back",
  21285. image: {
  21286. source: "./media/characters/leonardo-lycheborne/back.svg",
  21287. extra: 775/721,
  21288. bottom: 17/792
  21289. }
  21290. },
  21291. hand: {
  21292. height: math.unit(1.08, "feet"),
  21293. name: "Hand",
  21294. image: {
  21295. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21296. }
  21297. },
  21298. foot: {
  21299. height: math.unit(1.32, "feet"),
  21300. name: "Foot",
  21301. image: {
  21302. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21303. }
  21304. },
  21305. maw: {
  21306. height: math.unit(1, "feet"),
  21307. name: "Maw",
  21308. image: {
  21309. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21310. }
  21311. },
  21312. were: {
  21313. height: math.unit(20, "feet"),
  21314. weight: math.unit(7800, "lb"),
  21315. name: "Were",
  21316. image: {
  21317. source: "./media/characters/leonardo-lycheborne/were.svg",
  21318. extra: 1224/1165,
  21319. bottom: 72/1296
  21320. }
  21321. },
  21322. feral: {
  21323. height: math.unit(7.5, "feet"),
  21324. weight: math.unit(600, "lb"),
  21325. name: "Feral",
  21326. image: {
  21327. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21328. extra: 797/702,
  21329. bottom: 139/936
  21330. }
  21331. },
  21332. taur: {
  21333. height: math.unit(11, "feet"),
  21334. weight: math.unit(3300, "lb"),
  21335. name: "Taur",
  21336. image: {
  21337. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21338. extra: 1271/1197,
  21339. bottom: 47/1318
  21340. }
  21341. },
  21342. barghest: {
  21343. height: math.unit(11, "feet"),
  21344. weight: math.unit(1300, "lb"),
  21345. name: "Barghest",
  21346. image: {
  21347. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21348. extra: 1291/1204,
  21349. bottom: 37/1328
  21350. }
  21351. },
  21352. dick: {
  21353. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21354. name: "Dick",
  21355. image: {
  21356. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21357. }
  21358. },
  21359. dickWere: {
  21360. height: math.unit((20) / 3.8, "feet"),
  21361. name: "Dick (Were)",
  21362. image: {
  21363. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21364. }
  21365. },
  21366. },
  21367. [
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(6 + 1 / 12, "feet"),
  21371. default: true
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21377. {
  21378. front: {
  21379. height: math.unit(10, "feet"),
  21380. weight: math.unit(350, "lb"),
  21381. name: "Front",
  21382. image: {
  21383. source: "./media/characters/jet/front.svg",
  21384. extra: 2050 / 1980,
  21385. bottom: 0.013
  21386. }
  21387. },
  21388. back: {
  21389. height: math.unit(10, "feet"),
  21390. weight: math.unit(350, "lb"),
  21391. name: "Back",
  21392. image: {
  21393. source: "./media/characters/jet/back.svg",
  21394. extra: 2050 / 1980,
  21395. bottom: 0.013
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Micro",
  21402. height: math.unit(6, "inches")
  21403. },
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(10, "feet"),
  21407. default: true
  21408. },
  21409. {
  21410. name: "Macro",
  21411. height: math.unit(100, "feet")
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21417. {
  21418. front: {
  21419. height: math.unit(15, "feet"),
  21420. weight: math.unit(2800, "lb"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/tanarath/front.svg",
  21424. extra: 2392 / 2220,
  21425. bottom: 0.03
  21426. }
  21427. },
  21428. back: {
  21429. height: math.unit(15, "feet"),
  21430. weight: math.unit(2800, "lb"),
  21431. name: "Back",
  21432. image: {
  21433. source: "./media/characters/tanarath/back.svg",
  21434. extra: 2392 / 2220,
  21435. bottom: 0.03
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(15, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(7 + 1 / 12, "feet"),
  21452. weight: math.unit(175, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/patty-cattybatty/front.svg",
  21456. extra: 908 / 874,
  21457. bottom: 0.025
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Micro",
  21464. height: math.unit(1, "inch")
  21465. },
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(7 + 1 / 12, "feet")
  21469. },
  21470. {
  21471. name: "Mini Macro",
  21472. height: math.unit(155, "feet")
  21473. },
  21474. {
  21475. name: "Macro",
  21476. height: math.unit(1077, "feet")
  21477. },
  21478. {
  21479. name: "Mega Macro",
  21480. height: math.unit(47650, "feet"),
  21481. default: true
  21482. },
  21483. {
  21484. name: "Giga Macro",
  21485. height: math.unit(440, "miles")
  21486. },
  21487. {
  21488. name: "Tera Macro",
  21489. height: math.unit(8700, "miles")
  21490. },
  21491. {
  21492. name: "Planetary Macro",
  21493. height: math.unit(32700, "miles")
  21494. },
  21495. {
  21496. name: "Solar Macro",
  21497. height: math.unit(550000, "miles")
  21498. },
  21499. {
  21500. name: "Celestial Macro",
  21501. height: math.unit(2.5, "AU")
  21502. },
  21503. ]
  21504. ))
  21505. characterMakers.push(() => makeCharacter(
  21506. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21507. {
  21508. front: {
  21509. height: math.unit(4 + 5 / 12, "feet"),
  21510. weight: math.unit(90, "lb"),
  21511. name: "Front",
  21512. image: {
  21513. source: "./media/characters/cappu/front.svg",
  21514. extra: 1247 / 1152,
  21515. bottom: 0.012
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(4 + 5 / 12, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21529. {
  21530. frontDressed: {
  21531. height: math.unit(70, "cm"),
  21532. weight: math.unit(6, "kg"),
  21533. name: "Front (Dressed)",
  21534. image: {
  21535. source: "./media/characters/sebi/front-dressed.svg",
  21536. extra: 713.5 / 686.5,
  21537. bottom: 0.003
  21538. }
  21539. },
  21540. front: {
  21541. height: math.unit(70, "cm"),
  21542. weight: math.unit(5, "kg"),
  21543. name: "Front",
  21544. image: {
  21545. source: "./media/characters/sebi/front.svg",
  21546. extra: 713.5 / 686.5,
  21547. bottom: 0.003
  21548. }
  21549. }
  21550. },
  21551. [
  21552. {
  21553. name: "Normal",
  21554. height: math.unit(70, "cm"),
  21555. default: true
  21556. },
  21557. {
  21558. name: "Macro",
  21559. height: math.unit(8, "meters")
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21565. {
  21566. front: {
  21567. height: math.unit(6, "feet"),
  21568. weight: math.unit(150, "lb"),
  21569. name: "Front",
  21570. image: {
  21571. source: "./media/characters/typhek/front.svg",
  21572. extra: 1948 / 1929,
  21573. bottom: 0.025
  21574. }
  21575. },
  21576. side: {
  21577. height: math.unit(6, "feet"),
  21578. weight: math.unit(150, "lb"),
  21579. name: "Side",
  21580. image: {
  21581. source: "./media/characters/typhek/side.svg",
  21582. extra: 2034 / 2010,
  21583. bottom: 0.003
  21584. }
  21585. },
  21586. back: {
  21587. height: math.unit(6, "feet"),
  21588. weight: math.unit(150, "lb"),
  21589. name: "Back",
  21590. image: {
  21591. source: "./media/characters/typhek/back.svg",
  21592. extra: 2005 / 1978,
  21593. bottom: 0.004
  21594. }
  21595. },
  21596. palm: {
  21597. height: math.unit(1.2, "feet"),
  21598. name: "Palm",
  21599. image: {
  21600. source: "./media/characters/typhek/palm.svg"
  21601. }
  21602. },
  21603. fist: {
  21604. height: math.unit(1.1, "feet"),
  21605. name: "Fist",
  21606. image: {
  21607. source: "./media/characters/typhek/fist.svg"
  21608. }
  21609. },
  21610. foot: {
  21611. height: math.unit(1.57, "feet"),
  21612. name: "Foot",
  21613. image: {
  21614. source: "./media/characters/typhek/foot.svg"
  21615. }
  21616. },
  21617. sole: {
  21618. height: math.unit(2.05, "feet"),
  21619. name: "Sole",
  21620. image: {
  21621. source: "./media/characters/typhek/sole.svg"
  21622. }
  21623. },
  21624. },
  21625. [
  21626. {
  21627. name: "Macro",
  21628. height: math.unit(40, "stories"),
  21629. default: true
  21630. },
  21631. {
  21632. name: "Megamacro",
  21633. height: math.unit(1, "mile")
  21634. },
  21635. {
  21636. name: "Gigamacro",
  21637. height: math.unit(4000, "solarradii")
  21638. },
  21639. {
  21640. name: "Universal",
  21641. height: math.unit(1.1, "universes")
  21642. }
  21643. ]
  21644. ))
  21645. characterMakers.push(() => makeCharacter(
  21646. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21647. {
  21648. side: {
  21649. height: math.unit(5 + 7 / 12, "feet"),
  21650. weight: math.unit(150, "lb"),
  21651. name: "Side",
  21652. image: {
  21653. source: "./media/characters/kassy/side.svg",
  21654. extra: 1280 / 1225,
  21655. bottom: 0.002
  21656. }
  21657. },
  21658. front: {
  21659. height: math.unit(5 + 7 / 12, "feet"),
  21660. weight: math.unit(150, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/kassy/front.svg",
  21664. extra: 1280 / 1225,
  21665. bottom: 0.025
  21666. }
  21667. },
  21668. back: {
  21669. height: math.unit(5 + 7 / 12, "feet"),
  21670. weight: math.unit(150, "lb"),
  21671. name: "Back",
  21672. image: {
  21673. source: "./media/characters/kassy/back.svg",
  21674. extra: 1280 / 1225,
  21675. bottom: 0.002
  21676. }
  21677. },
  21678. foot: {
  21679. height: math.unit(1.266, "feet"),
  21680. name: "Foot",
  21681. image: {
  21682. source: "./media/characters/kassy/foot.svg"
  21683. }
  21684. },
  21685. },
  21686. [
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(5 + 7 / 12, "feet")
  21690. },
  21691. {
  21692. name: "Macro",
  21693. height: math.unit(137, "feet"),
  21694. default: true
  21695. },
  21696. {
  21697. name: "Megamacro",
  21698. height: math.unit(1, "mile")
  21699. },
  21700. ]
  21701. ))
  21702. characterMakers.push(() => makeCharacter(
  21703. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21704. {
  21705. front: {
  21706. height: math.unit(6 + 1 / 12, "feet"),
  21707. weight: math.unit(200, "lb"),
  21708. name: "Front",
  21709. image: {
  21710. source: "./media/characters/neil/front.svg",
  21711. extra: 1326 / 1250,
  21712. bottom: 0.023
  21713. }
  21714. },
  21715. },
  21716. [
  21717. {
  21718. name: "Normal",
  21719. height: math.unit(6 + 1 / 12, "feet"),
  21720. default: true
  21721. },
  21722. {
  21723. name: "Macro",
  21724. height: math.unit(200, "feet")
  21725. },
  21726. ]
  21727. ))
  21728. characterMakers.push(() => makeCharacter(
  21729. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21730. {
  21731. front: {
  21732. height: math.unit(5 + 9 / 12, "feet"),
  21733. weight: math.unit(190, "lb"),
  21734. name: "Front",
  21735. image: {
  21736. source: "./media/characters/atticus/front.svg",
  21737. extra: 2934 / 2785,
  21738. bottom: 0.025
  21739. }
  21740. },
  21741. },
  21742. [
  21743. {
  21744. name: "Normal",
  21745. height: math.unit(5 + 9 / 12, "feet"),
  21746. default: true
  21747. },
  21748. {
  21749. name: "Macro",
  21750. height: math.unit(180, "feet")
  21751. },
  21752. ]
  21753. ))
  21754. characterMakers.push(() => makeCharacter(
  21755. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21756. {
  21757. side: {
  21758. height: math.unit(9, "feet"),
  21759. weight: math.unit(650, "lb"),
  21760. name: "Side",
  21761. image: {
  21762. source: "./media/characters/milo/side.svg",
  21763. extra: 2644 / 2310,
  21764. bottom: 0.032
  21765. }
  21766. },
  21767. },
  21768. [
  21769. {
  21770. name: "Normal",
  21771. height: math.unit(9, "feet"),
  21772. default: true
  21773. },
  21774. {
  21775. name: "Macro",
  21776. height: math.unit(300, "feet")
  21777. },
  21778. ]
  21779. ))
  21780. characterMakers.push(() => makeCharacter(
  21781. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21782. {
  21783. side: {
  21784. height: math.unit(8, "meters"),
  21785. weight: math.unit(90000, "kg"),
  21786. name: "Side",
  21787. image: {
  21788. source: "./media/characters/ijzer/side.svg",
  21789. extra: 2756 / 1600,
  21790. bottom: 0.01
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Small",
  21797. height: math.unit(3, "meters")
  21798. },
  21799. {
  21800. name: "Normal",
  21801. height: math.unit(8, "meters"),
  21802. default: true
  21803. },
  21804. {
  21805. name: "Normal+",
  21806. height: math.unit(10, "meters")
  21807. },
  21808. {
  21809. name: "Bigger",
  21810. height: math.unit(24, "meters")
  21811. },
  21812. {
  21813. name: "Huge",
  21814. height: math.unit(80, "meters")
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21820. {
  21821. front: {
  21822. height: math.unit(6 + 2 / 12, "feet"),
  21823. weight: math.unit(153, "lb"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/luca-cervicum/front.svg",
  21827. extra: 370 / 327,
  21828. bottom: 0.015
  21829. }
  21830. },
  21831. back: {
  21832. height: math.unit(6 + 2 / 12, "feet"),
  21833. weight: math.unit(153, "lb"),
  21834. name: "Back",
  21835. image: {
  21836. source: "./media/characters/luca-cervicum/back.svg",
  21837. extra: 367 / 333,
  21838. bottom: 0.005
  21839. }
  21840. },
  21841. frontGear: {
  21842. height: math.unit(6 + 2 / 12, "feet"),
  21843. weight: math.unit(173, "lb"),
  21844. name: "Front (Gear)",
  21845. image: {
  21846. source: "./media/characters/luca-cervicum/front-gear.svg",
  21847. extra: 377 / 333,
  21848. bottom: 0.006
  21849. }
  21850. },
  21851. },
  21852. [
  21853. {
  21854. name: "Normal",
  21855. height: math.unit(6 + 2 / 12, "feet"),
  21856. default: true
  21857. },
  21858. ]
  21859. ))
  21860. characterMakers.push(() => makeCharacter(
  21861. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21862. {
  21863. front: {
  21864. height: math.unit(6 + 1 / 12, "feet"),
  21865. weight: math.unit(304, "lb"),
  21866. name: "Front",
  21867. image: {
  21868. source: "./media/characters/oliver/front.svg",
  21869. extra: 157 / 143,
  21870. bottom: 0.08
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Normal",
  21877. height: math.unit(6 + 1 / 12, "feet"),
  21878. default: true
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21884. {
  21885. front: {
  21886. height: math.unit(5 + 7 / 12, "feet"),
  21887. weight: math.unit(140, "lb"),
  21888. name: "Front",
  21889. image: {
  21890. source: "./media/characters/shane/front.svg",
  21891. extra: 304 / 289,
  21892. bottom: 0.005
  21893. }
  21894. },
  21895. },
  21896. [
  21897. {
  21898. name: "Normal",
  21899. height: math.unit(5 + 7 / 12, "feet"),
  21900. default: true
  21901. },
  21902. ]
  21903. ))
  21904. characterMakers.push(() => makeCharacter(
  21905. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21906. {
  21907. front: {
  21908. height: math.unit(5 + 9 / 12, "feet"),
  21909. weight: math.unit(178, "lb"),
  21910. name: "Front",
  21911. image: {
  21912. source: "./media/characters/shin/front.svg",
  21913. extra: 159 / 151,
  21914. bottom: 0.015
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Normal",
  21921. height: math.unit(5 + 9 / 12, "feet"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21928. {
  21929. front: {
  21930. height: math.unit(5 + 10 / 12, "feet"),
  21931. weight: math.unit(168, "lb"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/xerxes/front.svg",
  21935. extra: 282 / 260,
  21936. bottom: 0.045
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Normal",
  21943. height: math.unit(5 + 10 / 12, "feet"),
  21944. default: true
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21950. {
  21951. front: {
  21952. height: math.unit(6 + 7 / 12, "feet"),
  21953. weight: math.unit(208, "lb"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/chaska/front.svg",
  21957. extra: 332 / 319,
  21958. bottom: 0.015
  21959. }
  21960. },
  21961. },
  21962. [
  21963. {
  21964. name: "Normal",
  21965. height: math.unit(6 + 7 / 12, "feet"),
  21966. default: true
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(5 + 8 / 12, "feet"),
  21975. weight: math.unit(208, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/enuk/front.svg",
  21979. extra: 437 / 406,
  21980. bottom: 0.02
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Normal",
  21987. height: math.unit(5 + 8 / 12, "feet"),
  21988. default: true
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21994. {
  21995. front: {
  21996. height: math.unit(5 + 10 / 12, "feet"),
  21997. weight: math.unit(252, "lb"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/bruun/front.svg",
  22001. extra: 197 / 187,
  22002. bottom: 0.012
  22003. }
  22004. },
  22005. },
  22006. [
  22007. {
  22008. name: "Normal",
  22009. height: math.unit(5 + 10 / 12, "feet"),
  22010. default: true
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22016. {
  22017. front: {
  22018. height: math.unit(6 + 10 / 12, "feet"),
  22019. weight: math.unit(255, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/alexeev/front.svg",
  22023. extra: 213 / 200,
  22024. bottom: 0.05
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(6 + 10 / 12, "feet"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(2 + 8 / 12, "feet"),
  22041. weight: math.unit(22, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/evelyn/front.svg",
  22045. extra: 208 / 180
  22046. }
  22047. },
  22048. },
  22049. [
  22050. {
  22051. name: "Normal",
  22052. height: math.unit(2 + 8 / 12, "feet"),
  22053. default: true
  22054. },
  22055. ]
  22056. ))
  22057. characterMakers.push(() => makeCharacter(
  22058. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22059. {
  22060. front: {
  22061. height: math.unit(5 + 9 / 12, "feet"),
  22062. weight: math.unit(139, "lb"),
  22063. name: "Front",
  22064. image: {
  22065. source: "./media/characters/inca/front.svg",
  22066. extra: 294 / 291,
  22067. bottom: 0.03
  22068. }
  22069. },
  22070. },
  22071. [
  22072. {
  22073. name: "Normal",
  22074. height: math.unit(5 + 9 / 12, "feet"),
  22075. default: true
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22081. {
  22082. front: {
  22083. height: math.unit(6 + 3 / 12, "feet"),
  22084. weight: math.unit(185, "lb"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/mera/front.svg",
  22088. extra: 291 / 277,
  22089. bottom: 0.03
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(6 + 3 / 12, "feet"),
  22097. default: true
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22103. {
  22104. front: {
  22105. height: math.unit(6 + 7 / 12, "feet"),
  22106. weight: math.unit(160, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/ceres/front.svg",
  22110. extra: 1023 / 950,
  22111. bottom: 0.027
  22112. }
  22113. },
  22114. back: {
  22115. height: math.unit(6 + 7 / 12, "feet"),
  22116. weight: math.unit(160, "lb"),
  22117. name: "Back",
  22118. image: {
  22119. source: "./media/characters/ceres/back.svg",
  22120. extra: 1023 / 950
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(6 + 7 / 12, "feet"),
  22128. default: true
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(5 + 10 / 12, "feet"),
  22137. weight: math.unit(150, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/kris/front.svg",
  22141. extra: 885 / 803,
  22142. bottom: 0.03
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Normal",
  22149. height: math.unit(5 + 10 / 12, "feet"),
  22150. default: true
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22156. {
  22157. dragon_front: {
  22158. height: math.unit(5, "feet"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/taluthus/dragon-front.svg",
  22162. extra: 1203/1098,
  22163. bottom: 46/1249
  22164. },
  22165. form: "dragon",
  22166. default: true
  22167. },
  22168. dragon_maw: {
  22169. height: math.unit(2.35, "feet"),
  22170. name: "Maw",
  22171. image: {
  22172. source: "./media/characters/taluthus/dragon-maw.svg"
  22173. },
  22174. form: "dragon",
  22175. },
  22176. kitsune_front: {
  22177. height: math.unit(7, "feet"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/taluthus/kitsune-front.svg",
  22181. extra: 900/841,
  22182. bottom: 65/965
  22183. },
  22184. form: "kitsune",
  22185. default: true
  22186. },
  22187. },
  22188. [
  22189. {
  22190. name: "Normal",
  22191. height: math.unit(5, "feet"),
  22192. form: "dragon",
  22193. default: true,
  22194. },
  22195. {
  22196. name: "Normal",
  22197. height: math.unit(7, "feet"),
  22198. form: "kitsune",
  22199. default: true
  22200. },
  22201. {
  22202. name: "Macro",
  22203. height: math.unit(300, "feet"),
  22204. allForms: true
  22205. },
  22206. ],
  22207. {
  22208. "dragon": {
  22209. name: "Dragon",
  22210. default: true
  22211. },
  22212. "kitsune": {
  22213. name: "Kitsune",
  22214. },
  22215. }
  22216. ))
  22217. characterMakers.push(() => makeCharacter(
  22218. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22219. {
  22220. front: {
  22221. height: math.unit(5 + 9 / 12, "feet"),
  22222. weight: math.unit(145, "lb"),
  22223. name: "Front",
  22224. image: {
  22225. source: "./media/characters/dawn/front.svg",
  22226. extra: 2094 / 2016,
  22227. bottom: 0.025
  22228. }
  22229. },
  22230. back: {
  22231. height: math.unit(5 + 9 / 12, "feet"),
  22232. weight: math.unit(160, "lb"),
  22233. name: "Back",
  22234. image: {
  22235. source: "./media/characters/dawn/back.svg",
  22236. extra: 2112 / 2080,
  22237. bottom: 0.005
  22238. }
  22239. },
  22240. },
  22241. [
  22242. {
  22243. name: "Normal",
  22244. height: math.unit(6 + 7 / 12, "feet"),
  22245. default: true
  22246. },
  22247. ]
  22248. ))
  22249. characterMakers.push(() => makeCharacter(
  22250. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22251. {
  22252. anthro: {
  22253. height: math.unit(8 + 3 / 12, "feet"),
  22254. weight: math.unit(450, "lb"),
  22255. name: "Anthro",
  22256. image: {
  22257. source: "./media/characters/arador/anthro.svg",
  22258. extra: 1835 / 1718,
  22259. bottom: 0.025
  22260. }
  22261. },
  22262. feral: {
  22263. height: math.unit(4, "feet"),
  22264. weight: math.unit(200, "lb"),
  22265. name: "Feral",
  22266. image: {
  22267. source: "./media/characters/arador/feral.svg",
  22268. extra: 1683 / 1514,
  22269. bottom: 0.07
  22270. }
  22271. },
  22272. },
  22273. [
  22274. {
  22275. name: "Normal",
  22276. height: math.unit(8 + 3 / 12, "feet")
  22277. },
  22278. {
  22279. name: "Macro",
  22280. height: math.unit(82.5, "feet"),
  22281. default: true
  22282. },
  22283. ]
  22284. ))
  22285. characterMakers.push(() => makeCharacter(
  22286. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22287. {
  22288. front: {
  22289. height: math.unit(5 + 10 / 12, "feet"),
  22290. weight: math.unit(125, "lb"),
  22291. name: "Front",
  22292. image: {
  22293. source: "./media/characters/dharsi/front.svg",
  22294. extra: 716 / 630,
  22295. bottom: 0.035
  22296. }
  22297. },
  22298. },
  22299. [
  22300. {
  22301. name: "Nano",
  22302. height: math.unit(100, "nm")
  22303. },
  22304. {
  22305. name: "Micro",
  22306. height: math.unit(2, "inches")
  22307. },
  22308. {
  22309. name: "Normal",
  22310. height: math.unit(5 + 10 / 12, "feet"),
  22311. default: true
  22312. },
  22313. {
  22314. name: "Macro",
  22315. height: math.unit(1000, "feet")
  22316. },
  22317. {
  22318. name: "Megamacro",
  22319. height: math.unit(10, "miles")
  22320. },
  22321. {
  22322. name: "Gigamacro",
  22323. height: math.unit(3000, "miles")
  22324. },
  22325. {
  22326. name: "Teramacro",
  22327. height: math.unit(500000, "miles")
  22328. },
  22329. {
  22330. name: "Teramacro+",
  22331. height: math.unit(30, "galaxies")
  22332. },
  22333. ]
  22334. ))
  22335. characterMakers.push(() => makeCharacter(
  22336. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22337. {
  22338. front: {
  22339. height: math.unit(6, "feet"),
  22340. weight: math.unit(150, "lb"),
  22341. name: "Front",
  22342. image: {
  22343. source: "./media/characters/deathy/front.svg",
  22344. extra: 1552 / 1463,
  22345. bottom: 0.025
  22346. }
  22347. },
  22348. side: {
  22349. height: math.unit(6, "feet"),
  22350. weight: math.unit(150, "lb"),
  22351. name: "Side",
  22352. image: {
  22353. source: "./media/characters/deathy/side.svg",
  22354. extra: 1604 / 1455,
  22355. bottom: 0.025
  22356. }
  22357. },
  22358. back: {
  22359. height: math.unit(6, "feet"),
  22360. weight: math.unit(150, "lb"),
  22361. name: "Back",
  22362. image: {
  22363. source: "./media/characters/deathy/back.svg",
  22364. extra: 1580 / 1463,
  22365. bottom: 0.005
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Micro",
  22372. height: math.unit(5, "millimeters")
  22373. },
  22374. {
  22375. name: "Normal",
  22376. height: math.unit(6 + 5 / 12, "feet"),
  22377. default: true
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22383. {
  22384. front: {
  22385. height: math.unit(16, "feet"),
  22386. weight: math.unit(4000, "lb"),
  22387. name: "Front",
  22388. image: {
  22389. source: "./media/characters/juniper/front.svg",
  22390. bottom: 0.04
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Normal",
  22397. height: math.unit(16, "feet"),
  22398. default: true
  22399. },
  22400. ]
  22401. ))
  22402. characterMakers.push(() => makeCharacter(
  22403. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22404. {
  22405. front: {
  22406. height: math.unit(6, "feet"),
  22407. weight: math.unit(150, "lb"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/hipster/front.svg",
  22411. extra: 1312 / 1209,
  22412. bottom: 0.025
  22413. }
  22414. },
  22415. back: {
  22416. height: math.unit(6, "feet"),
  22417. weight: math.unit(150, "lb"),
  22418. name: "Back",
  22419. image: {
  22420. source: "./media/characters/hipster/back.svg",
  22421. extra: 1281 / 1196,
  22422. bottom: 0.01
  22423. }
  22424. },
  22425. },
  22426. [
  22427. {
  22428. name: "Micro",
  22429. height: math.unit(1, "mm")
  22430. },
  22431. {
  22432. name: "Normal",
  22433. height: math.unit(4, "inches"),
  22434. default: true
  22435. },
  22436. {
  22437. name: "Macro",
  22438. height: math.unit(500, "feet")
  22439. },
  22440. {
  22441. name: "Megamacro",
  22442. height: math.unit(1000, "miles")
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22448. {
  22449. front: {
  22450. height: math.unit(6, "feet"),
  22451. weight: math.unit(150, "lb"),
  22452. name: "Front",
  22453. image: {
  22454. source: "./media/characters/tendirmuldr/front.svg",
  22455. extra: 1878 / 1772,
  22456. bottom: 0.015
  22457. }
  22458. },
  22459. },
  22460. [
  22461. {
  22462. name: "Megamacro",
  22463. height: math.unit(1500, "miles"),
  22464. default: true
  22465. },
  22466. ]
  22467. ))
  22468. characterMakers.push(() => makeCharacter(
  22469. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22470. {
  22471. front: {
  22472. height: math.unit(14, "feet"),
  22473. weight: math.unit(12000, "lb"),
  22474. name: "Front",
  22475. image: {
  22476. source: "./media/characters/mort/front.svg",
  22477. extra: 365 / 318,
  22478. bottom: 0.01
  22479. }
  22480. },
  22481. side: {
  22482. height: math.unit(14, "feet"),
  22483. weight: math.unit(12000, "lb"),
  22484. name: "Side",
  22485. image: {
  22486. source: "./media/characters/mort/side.svg",
  22487. extra: 365 / 318,
  22488. bottom: 0.052
  22489. },
  22490. default: true
  22491. },
  22492. back: {
  22493. height: math.unit(14, "feet"),
  22494. weight: math.unit(12000, "lb"),
  22495. name: "Back",
  22496. image: {
  22497. source: "./media/characters/mort/back.svg",
  22498. extra: 371 / 332,
  22499. bottom: 0.18
  22500. }
  22501. },
  22502. },
  22503. [
  22504. {
  22505. name: "Normal",
  22506. height: math.unit(14, "feet"),
  22507. default: true
  22508. },
  22509. ]
  22510. ))
  22511. characterMakers.push(() => makeCharacter(
  22512. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22513. {
  22514. front: {
  22515. height: math.unit(8, "feet"),
  22516. weight: math.unit(1, "ton"),
  22517. name: "Front",
  22518. image: {
  22519. source: "./media/characters/lycoa/front.svg",
  22520. extra: 1836/1728,
  22521. bottom: 81/1917
  22522. }
  22523. },
  22524. back: {
  22525. height: math.unit(8, "feet"),
  22526. weight: math.unit(1, "ton"),
  22527. name: "Back",
  22528. image: {
  22529. source: "./media/characters/lycoa/back.svg",
  22530. extra: 1785/1720,
  22531. bottom: 91/1876
  22532. }
  22533. },
  22534. head: {
  22535. height: math.unit(1.6243, "feet"),
  22536. name: "Head",
  22537. image: {
  22538. source: "./media/characters/lycoa/head.svg",
  22539. extra: 1011/782,
  22540. bottom: 0/1011
  22541. }
  22542. },
  22543. tailmaw: {
  22544. height: math.unit(1.9, "feet"),
  22545. name: "Tailmaw",
  22546. image: {
  22547. source: "./media/characters/lycoa/tailmaw.svg"
  22548. }
  22549. },
  22550. tentacles: {
  22551. height: math.unit(2.1, "feet"),
  22552. name: "Tentacles",
  22553. image: {
  22554. source: "./media/characters/lycoa/tentacles.svg"
  22555. }
  22556. },
  22557. dick: {
  22558. height: math.unit(1.73, "feet"),
  22559. name: "Dick",
  22560. image: {
  22561. source: "./media/characters/lycoa/dick.svg"
  22562. }
  22563. },
  22564. },
  22565. [
  22566. {
  22567. name: "Normal",
  22568. height: math.unit(8, "feet"),
  22569. default: true
  22570. },
  22571. {
  22572. name: "Macro",
  22573. height: math.unit(30, "feet")
  22574. },
  22575. ]
  22576. ))
  22577. characterMakers.push(() => makeCharacter(
  22578. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22579. {
  22580. front: {
  22581. height: math.unit(4 + 2 / 12, "feet"),
  22582. weight: math.unit(70, "lb"),
  22583. name: "Front",
  22584. image: {
  22585. source: "./media/characters/naldara/front.svg",
  22586. extra: 1664/1387,
  22587. bottom: 81/1745
  22588. },
  22589. form: "anthro",
  22590. default: true
  22591. },
  22592. naga: {
  22593. height: math.unit(20, "feet"),
  22594. weight: math.unit(15000, "kg"),
  22595. name: "Front",
  22596. image: {
  22597. source: "./media/characters/naldara/naga.svg",
  22598. extra: 1590/1396,
  22599. bottom: 285/1875
  22600. },
  22601. form: "naga",
  22602. default: true
  22603. },
  22604. },
  22605. [
  22606. {
  22607. name: "Normal",
  22608. height: math.unit(4 + 2 / 12, "feet"),
  22609. form: "anthro",
  22610. default: true
  22611. },
  22612. {
  22613. name: "Normal",
  22614. height: math.unit(20, "feet"),
  22615. form: "naga",
  22616. default: true
  22617. },
  22618. ],
  22619. {
  22620. "anthro": {
  22621. name: "Anthro",
  22622. default: true
  22623. },
  22624. "naga": {
  22625. name: "Naga"
  22626. }
  22627. }
  22628. ))
  22629. characterMakers.push(() => makeCharacter(
  22630. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22631. {
  22632. front: {
  22633. height: math.unit(13 + 7 / 12, "feet"),
  22634. weight: math.unit(1500, "lb"),
  22635. name: "Front",
  22636. image: {
  22637. source: "./media/characters/briar/front.svg",
  22638. extra: 1223/1157,
  22639. bottom: 123/1346
  22640. }
  22641. },
  22642. },
  22643. [
  22644. {
  22645. name: "Normal",
  22646. height: math.unit(13 + 7 / 12, "feet"),
  22647. default: true
  22648. },
  22649. ]
  22650. ))
  22651. characterMakers.push(() => makeCharacter(
  22652. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22653. {
  22654. side: {
  22655. height: math.unit(16, "feet"),
  22656. weight: math.unit(500, "lb"),
  22657. name: "Side",
  22658. image: {
  22659. source: "./media/characters/vanguard/side.svg",
  22660. extra: 1022/914,
  22661. bottom: 30/1052
  22662. }
  22663. },
  22664. sideAlt: {
  22665. height: math.unit(10, "feet"),
  22666. weight: math.unit(500, "lb"),
  22667. name: "Side (Alt)",
  22668. image: {
  22669. source: "./media/characters/vanguard/side-alt.svg",
  22670. extra: 502 / 425,
  22671. bottom: 0.087
  22672. }
  22673. },
  22674. },
  22675. [
  22676. {
  22677. name: "Normal",
  22678. height: math.unit(17.71, "feet"),
  22679. default: true
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22685. {
  22686. front: {
  22687. height: math.unit(7.5, "feet"),
  22688. weight: math.unit(2, "lb"),
  22689. name: "Front",
  22690. image: {
  22691. source: "./media/characters/artemis/work-safe-front.svg",
  22692. extra: 1192 / 1075,
  22693. bottom: 0.07
  22694. },
  22695. form: "work-safe",
  22696. default: true
  22697. },
  22698. frontNsfw: {
  22699. height: math.unit(7.5, "feet"),
  22700. weight: math.unit(2, "lb"),
  22701. name: "Front",
  22702. image: {
  22703. source: "./media/characters/artemis/calibrating-front.svg",
  22704. extra: 1192 / 1075,
  22705. bottom: 0.07
  22706. },
  22707. form: "calibrating",
  22708. default: true
  22709. },
  22710. frontNsfwer: {
  22711. height: math.unit(7.5, "feet"),
  22712. weight: math.unit(2, "lb"),
  22713. name: "Front",
  22714. image: {
  22715. source: "./media/characters/artemis/oversize-load-front.svg",
  22716. extra: 1192 / 1075,
  22717. bottom: 0.07
  22718. },
  22719. form: "oversize-load",
  22720. default: true
  22721. },
  22722. side: {
  22723. height: math.unit(7.5, "feet"),
  22724. weight: math.unit(2, "lb"),
  22725. name: "Side",
  22726. image: {
  22727. source: "./media/characters/artemis/work-safe-side.svg",
  22728. extra: 1192 / 1075,
  22729. bottom: 0.07
  22730. },
  22731. form: "work-safe"
  22732. },
  22733. sideNsfw: {
  22734. height: math.unit(7.5, "feet"),
  22735. weight: math.unit(2, "lb"),
  22736. name: "Side",
  22737. image: {
  22738. source: "./media/characters/artemis/calibrating-side.svg",
  22739. extra: 1192 / 1075,
  22740. bottom: 0.07
  22741. },
  22742. form: "calibrating"
  22743. },
  22744. sideNsfwer: {
  22745. height: math.unit(7.5, "feet"),
  22746. weight: math.unit(2, "lb"),
  22747. name: "Side",
  22748. image: {
  22749. source: "./media/characters/artemis/oversize-load-side.svg",
  22750. extra: 1192 / 1075,
  22751. bottom: 0.07
  22752. },
  22753. form: "oversize-load"
  22754. },
  22755. maw: {
  22756. height: math.unit(1.1, "feet"),
  22757. name: "Maw",
  22758. image: {
  22759. source: "./media/characters/artemis/maw.svg"
  22760. },
  22761. form: "work-safe"
  22762. },
  22763. stomach: {
  22764. height: math.unit(0.95, "feet"),
  22765. name: "Stomach",
  22766. image: {
  22767. source: "./media/characters/artemis/stomach.svg"
  22768. },
  22769. form: "work-safe"
  22770. },
  22771. dickCanine: {
  22772. height: math.unit(1, "feet"),
  22773. name: "Dick (Canine)",
  22774. image: {
  22775. source: "./media/characters/artemis/dick-canine.svg"
  22776. },
  22777. form: "calibrating"
  22778. },
  22779. dickEquine: {
  22780. height: math.unit(0.85, "feet"),
  22781. name: "Dick (Equine)",
  22782. image: {
  22783. source: "./media/characters/artemis/dick-equine.svg"
  22784. },
  22785. form: "calibrating"
  22786. },
  22787. dickExotic: {
  22788. height: math.unit(0.85, "feet"),
  22789. name: "Dick (Exotic)",
  22790. image: {
  22791. source: "./media/characters/artemis/dick-exotic.svg"
  22792. },
  22793. form: "calibrating"
  22794. },
  22795. dickCanineBigger: {
  22796. height: math.unit(1 * 1.33, "feet"),
  22797. name: "Dick (Canine)",
  22798. image: {
  22799. source: "./media/characters/artemis/dick-canine.svg"
  22800. },
  22801. form: "oversize-load"
  22802. },
  22803. dickEquineBigger: {
  22804. height: math.unit(0.85 * 1.33, "feet"),
  22805. name: "Dick (Equine)",
  22806. image: {
  22807. source: "./media/characters/artemis/dick-equine.svg"
  22808. },
  22809. form: "oversize-load"
  22810. },
  22811. dickExoticBigger: {
  22812. height: math.unit(0.85 * 1.33, "feet"),
  22813. name: "Dick (Exotic)",
  22814. image: {
  22815. source: "./media/characters/artemis/dick-exotic.svg"
  22816. },
  22817. form: "oversize-load"
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Normal",
  22823. height: math.unit(7.5, "feet"),
  22824. form: "work-safe",
  22825. default: true
  22826. },
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(7.5, "feet"),
  22830. form: "calibrating",
  22831. default: true
  22832. },
  22833. {
  22834. name: "Normal",
  22835. height: math.unit(7.5, "feet"),
  22836. form: "oversize-load",
  22837. default: true
  22838. },
  22839. {
  22840. name: "Enlarged",
  22841. height: math.unit(12, "feet"),
  22842. form: "work-safe",
  22843. },
  22844. {
  22845. name: "Enlarged",
  22846. height: math.unit(12, "feet"),
  22847. form: "calibrating",
  22848. },
  22849. {
  22850. name: "Enlarged",
  22851. height: math.unit(12, "feet"),
  22852. form: "oversize-load",
  22853. },
  22854. ],
  22855. {
  22856. "work-safe": {
  22857. name: "Work-Safe",
  22858. default: true
  22859. },
  22860. "calibrating": {
  22861. name: "Calibrating"
  22862. },
  22863. "oversize-load": {
  22864. name: "Oversize Load"
  22865. }
  22866. }
  22867. ))
  22868. characterMakers.push(() => makeCharacter(
  22869. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22870. {
  22871. front: {
  22872. height: math.unit(5 + 3 / 12, "feet"),
  22873. weight: math.unit(160, "lb"),
  22874. name: "Front",
  22875. image: {
  22876. source: "./media/characters/kira/front.svg",
  22877. extra: 906 / 786,
  22878. bottom: 0.01
  22879. }
  22880. },
  22881. back: {
  22882. height: math.unit(5 + 3 / 12, "feet"),
  22883. weight: math.unit(160, "lb"),
  22884. name: "Back",
  22885. image: {
  22886. source: "./media/characters/kira/back.svg",
  22887. extra: 882 / 757,
  22888. bottom: 0.005
  22889. }
  22890. },
  22891. frontDressed: {
  22892. height: math.unit(5 + 3 / 12, "feet"),
  22893. weight: math.unit(160, "lb"),
  22894. name: "Front (Dressed)",
  22895. image: {
  22896. source: "./media/characters/kira/front-dressed.svg",
  22897. extra: 906 / 786,
  22898. bottom: 0.01
  22899. }
  22900. },
  22901. beans: {
  22902. height: math.unit(0.92, "feet"),
  22903. name: "Beans",
  22904. image: {
  22905. source: "./media/characters/kira/beans.svg"
  22906. }
  22907. },
  22908. },
  22909. [
  22910. {
  22911. name: "Normal",
  22912. height: math.unit(5 + 3 / 12, "feet"),
  22913. default: true
  22914. },
  22915. ]
  22916. ))
  22917. characterMakers.push(() => makeCharacter(
  22918. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22919. {
  22920. front: {
  22921. height: math.unit(5 + 4 / 12, "feet"),
  22922. weight: math.unit(145, "lb"),
  22923. name: "Front",
  22924. image: {
  22925. source: "./media/characters/scramble/front.svg",
  22926. extra: 763 / 727,
  22927. bottom: 0.05
  22928. }
  22929. },
  22930. back: {
  22931. height: math.unit(5 + 4 / 12, "feet"),
  22932. weight: math.unit(145, "lb"),
  22933. name: "Back",
  22934. image: {
  22935. source: "./media/characters/scramble/back.svg",
  22936. extra: 826 / 737,
  22937. bottom: 0.002
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "Normal",
  22944. height: math.unit(5 + 4 / 12, "feet"),
  22945. default: true
  22946. },
  22947. ]
  22948. ))
  22949. characterMakers.push(() => makeCharacter(
  22950. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22951. {
  22952. side: {
  22953. height: math.unit(6 + 2 / 12, "feet"),
  22954. weight: math.unit(190, "lb"),
  22955. name: "Side",
  22956. image: {
  22957. source: "./media/characters/biscuit/side.svg",
  22958. extra: 858 / 791,
  22959. bottom: 0.044
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "Normal",
  22966. height: math.unit(6 + 2 / 12, "feet"),
  22967. default: true
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22973. {
  22974. front: {
  22975. height: math.unit(5 + 2 / 12, "feet"),
  22976. weight: math.unit(120, "lb"),
  22977. name: "Front",
  22978. image: {
  22979. source: "./media/characters/poffin/front.svg",
  22980. extra: 786 / 680,
  22981. bottom: 0.005
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Normal",
  22988. height: math.unit(5 + 2 / 12, "feet"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(6 + 3 / 12, "feet"),
  22998. weight: math.unit(519, "lb"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/dhari/front.svg",
  23002. extra: 1048 / 946,
  23003. bottom: 0.015
  23004. }
  23005. },
  23006. back: {
  23007. height: math.unit(6 + 3 / 12, "feet"),
  23008. weight: math.unit(519, "lb"),
  23009. name: "Back",
  23010. image: {
  23011. source: "./media/characters/dhari/back.svg",
  23012. extra: 1048 / 931,
  23013. bottom: 0.005
  23014. }
  23015. },
  23016. frontDressed: {
  23017. height: math.unit(6 + 3 / 12, "feet"),
  23018. weight: math.unit(519, "lb"),
  23019. name: "Front (Dressed)",
  23020. image: {
  23021. source: "./media/characters/dhari/front-dressed.svg",
  23022. extra: 1713 / 1546,
  23023. bottom: 0.02
  23024. }
  23025. },
  23026. backDressed: {
  23027. height: math.unit(6 + 3 / 12, "feet"),
  23028. weight: math.unit(519, "lb"),
  23029. name: "Back (Dressed)",
  23030. image: {
  23031. source: "./media/characters/dhari/back-dressed.svg",
  23032. extra: 1699 / 1537,
  23033. bottom: 0.01
  23034. }
  23035. },
  23036. maw: {
  23037. height: math.unit(0.95, "feet"),
  23038. name: "Maw",
  23039. image: {
  23040. source: "./media/characters/dhari/maw.svg"
  23041. }
  23042. },
  23043. wereFront: {
  23044. height: math.unit(12 + 8 / 12, "feet"),
  23045. weight: math.unit(4000, "lb"),
  23046. name: "Front (Were)",
  23047. image: {
  23048. source: "./media/characters/dhari/were-front.svg",
  23049. extra: 1065 / 969,
  23050. bottom: 0.015
  23051. }
  23052. },
  23053. wereBack: {
  23054. height: math.unit(12 + 8 / 12, "feet"),
  23055. weight: math.unit(4000, "lb"),
  23056. name: "Back (Were)",
  23057. image: {
  23058. source: "./media/characters/dhari/were-back.svg",
  23059. extra: 1065 / 969,
  23060. bottom: 0.012
  23061. }
  23062. },
  23063. wereMaw: {
  23064. height: math.unit(0.625, "meters"),
  23065. name: "Maw (Were)",
  23066. image: {
  23067. source: "./media/characters/dhari/were-maw.svg"
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(6 + 3 / 12, "feet"),
  23075. default: true
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23081. {
  23082. anthro: {
  23083. height: math.unit(5 + 7 / 12, "feet"),
  23084. weight: math.unit(175, "lb"),
  23085. name: "Anthro",
  23086. image: {
  23087. source: "./media/characters/rena-dyne/anthro.svg",
  23088. extra: 1849 / 1785,
  23089. bottom: 0.005
  23090. }
  23091. },
  23092. taur: {
  23093. height: math.unit(15 + 6 / 12, "feet"),
  23094. weight: math.unit(8000, "lb"),
  23095. name: "Taur",
  23096. image: {
  23097. source: "./media/characters/rena-dyne/taur.svg",
  23098. extra: 2315 / 2234,
  23099. bottom: 0.033
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Normal",
  23106. height: math.unit(5 + 7 / 12, "feet"),
  23107. default: true
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23113. {
  23114. front: {
  23115. height: math.unit(8, "feet"),
  23116. weight: math.unit(600, "lb"),
  23117. name: "Front",
  23118. image: {
  23119. source: "./media/characters/weremeep/front.svg",
  23120. extra: 970/849,
  23121. bottom: 7/977
  23122. }
  23123. },
  23124. },
  23125. [
  23126. {
  23127. name: "Normal",
  23128. height: math.unit(8, "feet"),
  23129. default: true
  23130. },
  23131. {
  23132. name: "Lorg",
  23133. height: math.unit(12, "feet")
  23134. },
  23135. {
  23136. name: "Oh Lawd She Comin'",
  23137. height: math.unit(20, "feet")
  23138. },
  23139. ]
  23140. ))
  23141. characterMakers.push(() => makeCharacter(
  23142. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23143. {
  23144. front: {
  23145. height: math.unit(4, "feet"),
  23146. weight: math.unit(90, "lb"),
  23147. name: "Front",
  23148. image: {
  23149. source: "./media/characters/reza/front.svg",
  23150. extra: 1183 / 1111,
  23151. bottom: 0.017
  23152. }
  23153. },
  23154. back: {
  23155. height: math.unit(4, "feet"),
  23156. weight: math.unit(90, "lb"),
  23157. name: "Back",
  23158. image: {
  23159. source: "./media/characters/reza/back.svg",
  23160. extra: 1183 / 1111,
  23161. bottom: 0.01
  23162. }
  23163. },
  23164. drake: {
  23165. height: math.unit(30, "feet"),
  23166. weight: math.unit(246960, "lb"),
  23167. name: "Drake",
  23168. image: {
  23169. source: "./media/characters/reza/drake.svg",
  23170. extra: 2350 / 2024,
  23171. bottom: 60.7 / 2403
  23172. }
  23173. },
  23174. },
  23175. [
  23176. {
  23177. name: "Normal",
  23178. height: math.unit(4, "feet"),
  23179. default: true
  23180. },
  23181. ]
  23182. ))
  23183. characterMakers.push(() => makeCharacter(
  23184. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23185. {
  23186. side: {
  23187. height: math.unit(15, "feet"),
  23188. weight: math.unit(14, "tons"),
  23189. name: "Side",
  23190. image: {
  23191. source: "./media/characters/athea/side.svg",
  23192. extra: 960 / 540,
  23193. bottom: 0.003
  23194. }
  23195. },
  23196. sitting: {
  23197. height: math.unit(6 * 2.85, "feet"),
  23198. weight: math.unit(14, "tons"),
  23199. name: "Sitting",
  23200. image: {
  23201. source: "./media/characters/athea/sitting.svg",
  23202. extra: 621 / 581,
  23203. bottom: 0.075
  23204. }
  23205. },
  23206. maw: {
  23207. height: math.unit(7.59498031496063, "feet"),
  23208. name: "Maw",
  23209. image: {
  23210. source: "./media/characters/athea/maw.svg"
  23211. }
  23212. },
  23213. },
  23214. [
  23215. {
  23216. name: "Lap Cat",
  23217. height: math.unit(2.5, "feet")
  23218. },
  23219. {
  23220. name: "Minimacro",
  23221. height: math.unit(15, "feet"),
  23222. default: true
  23223. },
  23224. {
  23225. name: "Macro",
  23226. height: math.unit(120, "feet")
  23227. },
  23228. {
  23229. name: "Macro+",
  23230. height: math.unit(640, "feet")
  23231. },
  23232. {
  23233. name: "Colossus",
  23234. height: math.unit(2.2, "miles")
  23235. },
  23236. ]
  23237. ))
  23238. characterMakers.push(() => makeCharacter(
  23239. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23240. {
  23241. front: {
  23242. height: math.unit(8 + 8 / 12, "feet"),
  23243. weight: math.unit(130, "kg"),
  23244. name: "Front",
  23245. image: {
  23246. source: "./media/characters/seroko/front.svg",
  23247. extra: 1385 / 1280,
  23248. bottom: 0.025
  23249. }
  23250. },
  23251. back: {
  23252. height: math.unit(8 + 8 / 12, "feet"),
  23253. weight: math.unit(130, "kg"),
  23254. name: "Back",
  23255. image: {
  23256. source: "./media/characters/seroko/back.svg",
  23257. extra: 1369 / 1238,
  23258. bottom: 0.018
  23259. }
  23260. },
  23261. frontDressed: {
  23262. height: math.unit(8 + 8 / 12, "feet"),
  23263. weight: math.unit(130, "kg"),
  23264. name: "Front (Dressed)",
  23265. image: {
  23266. source: "./media/characters/seroko/front-dressed.svg",
  23267. extra: 1366 / 1275,
  23268. bottom: 0.03
  23269. }
  23270. },
  23271. },
  23272. [
  23273. {
  23274. name: "Normal",
  23275. height: math.unit(8 + 8 / 12, "feet"),
  23276. default: true
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23282. {
  23283. front: {
  23284. height: math.unit(5.5, "feet"),
  23285. weight: math.unit(160, "lb"),
  23286. name: "Front",
  23287. image: {
  23288. source: "./media/characters/quatzi/front.svg",
  23289. extra: 2346 / 2242,
  23290. bottom: 0.015
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Normal",
  23297. height: math.unit(5.5, "feet"),
  23298. default: true
  23299. },
  23300. {
  23301. name: "Big",
  23302. height: math.unit(7.7, "feet")
  23303. },
  23304. ]
  23305. ))
  23306. characterMakers.push(() => makeCharacter(
  23307. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23308. {
  23309. front: {
  23310. height: math.unit(5 + 11 / 12, "feet"),
  23311. weight: math.unit(180, "lb"),
  23312. name: "Front",
  23313. image: {
  23314. source: "./media/characters/sen/front.svg",
  23315. extra: 1321 / 1254,
  23316. bottom: 0.015
  23317. }
  23318. },
  23319. side: {
  23320. height: math.unit(5 + 11 / 12, "feet"),
  23321. weight: math.unit(180, "lb"),
  23322. name: "Side",
  23323. image: {
  23324. source: "./media/characters/sen/side.svg",
  23325. extra: 1321 / 1254,
  23326. bottom: 0.007
  23327. }
  23328. },
  23329. back: {
  23330. height: math.unit(5 + 11 / 12, "feet"),
  23331. weight: math.unit(180, "lb"),
  23332. name: "Back",
  23333. image: {
  23334. source: "./media/characters/sen/back.svg",
  23335. extra: 1321 / 1254
  23336. }
  23337. },
  23338. },
  23339. [
  23340. {
  23341. name: "Normal",
  23342. height: math.unit(5 + 11 / 12, "feet"),
  23343. default: true
  23344. },
  23345. ]
  23346. ))
  23347. characterMakers.push(() => makeCharacter(
  23348. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23349. {
  23350. front: {
  23351. height: math.unit(166.6, "cm"),
  23352. weight: math.unit(66.6, "kg"),
  23353. name: "Front",
  23354. image: {
  23355. source: "./media/characters/fruity/front.svg",
  23356. extra: 1510 / 1386,
  23357. bottom: 0.04
  23358. }
  23359. },
  23360. back: {
  23361. height: math.unit(166.6, "cm"),
  23362. weight: math.unit(66.6, "lb"),
  23363. name: "Back",
  23364. image: {
  23365. source: "./media/characters/fruity/back.svg",
  23366. extra: 1563 / 1435,
  23367. bottom: 0.005
  23368. }
  23369. },
  23370. },
  23371. [
  23372. {
  23373. name: "Normal",
  23374. height: math.unit(166.6, "cm"),
  23375. default: true
  23376. },
  23377. {
  23378. name: "Demonic",
  23379. height: math.unit(166.6, "feet")
  23380. },
  23381. ]
  23382. ))
  23383. characterMakers.push(() => makeCharacter(
  23384. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23385. {
  23386. side: {
  23387. height: math.unit(10, "feet"),
  23388. weight: math.unit(500, "lb"),
  23389. name: "Side",
  23390. image: {
  23391. source: "./media/characters/zost/side.svg",
  23392. extra: 2870/2533,
  23393. bottom: 252/3122
  23394. }
  23395. },
  23396. mawFront: {
  23397. height: math.unit(1.08, "meters"),
  23398. name: "Maw (Front)",
  23399. image: {
  23400. source: "./media/characters/zost/maw-front.svg"
  23401. }
  23402. },
  23403. mawSide: {
  23404. height: math.unit(2.66, "feet"),
  23405. name: "Maw (Side)",
  23406. image: {
  23407. source: "./media/characters/zost/maw-side.svg"
  23408. }
  23409. },
  23410. wingspan: {
  23411. height: math.unit(7.4, "feet"),
  23412. name: "Wingspan",
  23413. image: {
  23414. source: "./media/characters/zost/wingspan.svg"
  23415. }
  23416. },
  23417. },
  23418. [
  23419. {
  23420. name: "Normal",
  23421. height: math.unit(10, "feet"),
  23422. default: true
  23423. },
  23424. ]
  23425. ))
  23426. characterMakers.push(() => makeCharacter(
  23427. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23428. {
  23429. front: {
  23430. height: math.unit(5 + 4 / 12, "feet"),
  23431. weight: math.unit(120, "lb"),
  23432. name: "Front",
  23433. image: {
  23434. source: "./media/characters/luci/front.svg",
  23435. extra: 1985 / 1884,
  23436. bottom: 0.04
  23437. }
  23438. },
  23439. back: {
  23440. height: math.unit(5 + 4 / 12, "feet"),
  23441. weight: math.unit(120, "lb"),
  23442. name: "Back",
  23443. image: {
  23444. source: "./media/characters/luci/back.svg",
  23445. extra: 1892 / 1791,
  23446. bottom: 0.002
  23447. }
  23448. },
  23449. },
  23450. [
  23451. {
  23452. name: "Normal",
  23453. height: math.unit(5 + 4 / 12, "feet"),
  23454. default: true
  23455. },
  23456. ]
  23457. ))
  23458. characterMakers.push(() => makeCharacter(
  23459. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23460. {
  23461. front: {
  23462. height: math.unit(1500, "feet"),
  23463. weight: math.unit(3.8e6, "tons"),
  23464. name: "Front",
  23465. image: {
  23466. source: "./media/characters/2th/front.svg",
  23467. extra: 3489 / 3350,
  23468. bottom: 0.1
  23469. }
  23470. },
  23471. foot: {
  23472. height: math.unit(461, "feet"),
  23473. name: "Foot",
  23474. image: {
  23475. source: "./media/characters/2th/foot.svg"
  23476. }
  23477. },
  23478. },
  23479. [
  23480. {
  23481. name: "\"Micro\"",
  23482. height: math.unit(15 + 7 / 12, "feet")
  23483. },
  23484. {
  23485. name: "Normal",
  23486. height: math.unit(1500, "feet"),
  23487. default: true
  23488. },
  23489. {
  23490. name: "Macro",
  23491. height: math.unit(5000, "feet")
  23492. },
  23493. {
  23494. name: "Megamacro",
  23495. height: math.unit(15, "miles")
  23496. },
  23497. {
  23498. name: "Gigamacro",
  23499. height: math.unit(4000, "miles")
  23500. },
  23501. {
  23502. name: "Galactic",
  23503. height: math.unit(50, "AU")
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23509. {
  23510. front: {
  23511. height: math.unit(5 + 6 / 12, "feet"),
  23512. weight: math.unit(220, "lb"),
  23513. name: "Front",
  23514. image: {
  23515. source: "./media/characters/amethyst/front.svg",
  23516. extra: 2078 / 2040,
  23517. bottom: 0.045
  23518. }
  23519. },
  23520. back: {
  23521. height: math.unit(5 + 6 / 12, "feet"),
  23522. weight: math.unit(220, "lb"),
  23523. name: "Back",
  23524. image: {
  23525. source: "./media/characters/amethyst/back.svg",
  23526. extra: 2021 / 1989,
  23527. bottom: 0.02
  23528. }
  23529. },
  23530. },
  23531. [
  23532. {
  23533. name: "Normal",
  23534. height: math.unit(5 + 6 / 12, "feet"),
  23535. default: true
  23536. },
  23537. ]
  23538. ))
  23539. characterMakers.push(() => makeCharacter(
  23540. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23541. {
  23542. front: {
  23543. height: math.unit(4 + 11 / 12, "feet"),
  23544. weight: math.unit(120, "lb"),
  23545. name: "Front",
  23546. image: {
  23547. source: "./media/characters/yumi-akiyama/front.svg",
  23548. extra: 1327 / 1235,
  23549. bottom: 0.02
  23550. }
  23551. },
  23552. back: {
  23553. height: math.unit(4 + 11 / 12, "feet"),
  23554. weight: math.unit(120, "lb"),
  23555. name: "Back",
  23556. image: {
  23557. source: "./media/characters/yumi-akiyama/back.svg",
  23558. extra: 1287 / 1245,
  23559. bottom: 0.002
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Galactic",
  23566. height: math.unit(50, "galaxies"),
  23567. default: true
  23568. },
  23569. {
  23570. name: "Universal",
  23571. height: math.unit(100, "universes")
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(8, "feet"),
  23580. weight: math.unit(500, "lb"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/rifter-yrmori/front.svg",
  23584. extra: 1180 / 1125,
  23585. bottom: 0.02
  23586. }
  23587. },
  23588. back: {
  23589. height: math.unit(8, "feet"),
  23590. weight: math.unit(500, "lb"),
  23591. name: "Back",
  23592. image: {
  23593. source: "./media/characters/rifter-yrmori/back.svg",
  23594. extra: 1190 / 1145,
  23595. bottom: 0.001
  23596. }
  23597. },
  23598. wings: {
  23599. height: math.unit(7.75, "feet"),
  23600. weight: math.unit(500, "lb"),
  23601. name: "Wings",
  23602. image: {
  23603. source: "./media/characters/rifter-yrmori/wings.svg",
  23604. extra: 1357 / 1285
  23605. }
  23606. },
  23607. maw: {
  23608. height: math.unit(0.8, "feet"),
  23609. name: "Maw",
  23610. image: {
  23611. source: "./media/characters/rifter-yrmori/maw.svg"
  23612. }
  23613. },
  23614. mawfront: {
  23615. height: math.unit(1.45, "feet"),
  23616. name: "Maw (Front)",
  23617. image: {
  23618. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Normal",
  23625. height: math.unit(8, "feet"),
  23626. default: true
  23627. },
  23628. {
  23629. name: "Macro",
  23630. height: math.unit(42, "meters")
  23631. },
  23632. ]
  23633. ))
  23634. characterMakers.push(() => makeCharacter(
  23635. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23636. {
  23637. were: {
  23638. height: math.unit(25 + 6 / 12, "feet"),
  23639. weight: math.unit(10000, "lb"),
  23640. name: "Were",
  23641. image: {
  23642. source: "./media/characters/tahajin/were.svg",
  23643. extra: 801 / 770,
  23644. bottom: 0.042
  23645. }
  23646. },
  23647. aquatic: {
  23648. height: math.unit(6 + 4 / 12, "feet"),
  23649. weight: math.unit(160, "lb"),
  23650. name: "Aquatic",
  23651. image: {
  23652. source: "./media/characters/tahajin/aquatic.svg",
  23653. extra: 572 / 542,
  23654. bottom: 0.04
  23655. }
  23656. },
  23657. chow: {
  23658. height: math.unit(8 + 11 / 12, "feet"),
  23659. weight: math.unit(450, "lb"),
  23660. name: "Chow",
  23661. image: {
  23662. source: "./media/characters/tahajin/chow.svg",
  23663. extra: 660 / 640,
  23664. bottom: 0.015
  23665. }
  23666. },
  23667. demiNaga: {
  23668. height: math.unit(6 + 8 / 12, "feet"),
  23669. weight: math.unit(300, "lb"),
  23670. name: "Demi Naga",
  23671. image: {
  23672. source: "./media/characters/tahajin/demi-naga.svg",
  23673. extra: 643 / 615,
  23674. bottom: 0.1
  23675. }
  23676. },
  23677. data: {
  23678. height: math.unit(5, "inches"),
  23679. weight: math.unit(0.1, "lb"),
  23680. name: "Data",
  23681. image: {
  23682. source: "./media/characters/tahajin/data.svg"
  23683. }
  23684. },
  23685. fluu: {
  23686. height: math.unit(5 + 7 / 12, "feet"),
  23687. weight: math.unit(140, "lb"),
  23688. name: "Fluu",
  23689. image: {
  23690. source: "./media/characters/tahajin/fluu.svg",
  23691. extra: 628 / 592,
  23692. bottom: 0.02
  23693. }
  23694. },
  23695. starWarrior: {
  23696. height: math.unit(4 + 5 / 12, "feet"),
  23697. weight: math.unit(50, "lb"),
  23698. name: "Star Warrior",
  23699. image: {
  23700. source: "./media/characters/tahajin/star-warrior.svg"
  23701. }
  23702. },
  23703. },
  23704. [
  23705. {
  23706. name: "Normal",
  23707. height: math.unit(25 + 6 / 12, "feet"),
  23708. default: true
  23709. },
  23710. ]
  23711. ))
  23712. characterMakers.push(() => makeCharacter(
  23713. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23714. {
  23715. front: {
  23716. height: math.unit(8, "feet"),
  23717. weight: math.unit(350, "lb"),
  23718. name: "Front",
  23719. image: {
  23720. source: "./media/characters/gabira/front.svg",
  23721. extra: 1261/1154,
  23722. bottom: 51/1312
  23723. }
  23724. },
  23725. back: {
  23726. height: math.unit(8, "feet"),
  23727. weight: math.unit(350, "lb"),
  23728. name: "Back",
  23729. image: {
  23730. source: "./media/characters/gabira/back.svg",
  23731. extra: 1265/1163,
  23732. bottom: 46/1311
  23733. }
  23734. },
  23735. head: {
  23736. height: math.unit(2.85, "feet"),
  23737. name: "Head",
  23738. image: {
  23739. source: "./media/characters/gabira/head.svg"
  23740. }
  23741. },
  23742. },
  23743. [
  23744. {
  23745. name: "Normal",
  23746. height: math.unit(8, "feet"),
  23747. default: true
  23748. },
  23749. ]
  23750. ))
  23751. characterMakers.push(() => makeCharacter(
  23752. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23753. {
  23754. front: {
  23755. height: math.unit(5 + 3 / 12, "feet"),
  23756. weight: math.unit(137, "lb"),
  23757. name: "Front",
  23758. image: {
  23759. source: "./media/characters/sasha-katraine/front.svg",
  23760. extra: 1745/1694,
  23761. bottom: 37/1782
  23762. }
  23763. },
  23764. back: {
  23765. height: math.unit(5 + 3 / 12, "feet"),
  23766. weight: math.unit(137, "lb"),
  23767. name: "Back",
  23768. image: {
  23769. source: "./media/characters/sasha-katraine/back.svg",
  23770. extra: 1776/1699,
  23771. bottom: 26/1802
  23772. }
  23773. },
  23774. },
  23775. [
  23776. {
  23777. name: "Micro",
  23778. height: math.unit(5, "inches")
  23779. },
  23780. {
  23781. name: "Normal",
  23782. height: math.unit(5 + 3 / 12, "feet"),
  23783. default: true
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23789. {
  23790. side: {
  23791. height: math.unit(4, "inches"),
  23792. weight: math.unit(200, "grams"),
  23793. name: "Side",
  23794. image: {
  23795. source: "./media/characters/der/side.svg",
  23796. extra: 719 / 400,
  23797. bottom: 30.6 / 749.9187
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Micro",
  23804. height: math.unit(4, "inches"),
  23805. default: true
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23811. {
  23812. side: {
  23813. height: math.unit(30, "meters"),
  23814. weight: math.unit(700, "tonnes"),
  23815. name: "Side",
  23816. image: {
  23817. source: "./media/characters/fixerdragon/side.svg",
  23818. extra: (1293.0514 - 116.03) / 1106.86,
  23819. bottom: 116.03 / 1293.0514
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Planck",
  23826. height: math.unit(1.6e-35, "meters")
  23827. },
  23828. {
  23829. name: "Micro",
  23830. height: math.unit(0.4, "meters")
  23831. },
  23832. {
  23833. name: "Normal",
  23834. height: math.unit(30, "meters"),
  23835. default: true
  23836. },
  23837. {
  23838. name: "Megamacro",
  23839. height: math.unit(1.2, "megameters")
  23840. },
  23841. {
  23842. name: "Teramacro",
  23843. height: math.unit(130, "terameters")
  23844. },
  23845. {
  23846. name: "Yottamacro",
  23847. height: math.unit(6200, "yottameters")
  23848. },
  23849. ]
  23850. ));
  23851. characterMakers.push(() => makeCharacter(
  23852. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23853. {
  23854. front: {
  23855. height: math.unit(8, "feet"),
  23856. weight: math.unit(250, "lb"),
  23857. name: "Front",
  23858. image: {
  23859. source: "./media/characters/kite/front.svg",
  23860. extra: 2796 / 2659,
  23861. bottom: 0.002
  23862. }
  23863. },
  23864. },
  23865. [
  23866. {
  23867. name: "Normal",
  23868. height: math.unit(8, "feet"),
  23869. default: true
  23870. },
  23871. {
  23872. name: "Macro",
  23873. height: math.unit(360, "feet")
  23874. },
  23875. {
  23876. name: "Megamacro",
  23877. height: math.unit(1500, "feet")
  23878. },
  23879. ]
  23880. ))
  23881. characterMakers.push(() => makeCharacter(
  23882. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23883. {
  23884. anthro_front: {
  23885. height: math.unit(5 + 11/12, "feet"),
  23886. weight: math.unit(170, "lb"),
  23887. name: "Front",
  23888. image: {
  23889. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23890. extra: 1735/1585,
  23891. bottom: 96/1831
  23892. },
  23893. form: "anthro",
  23894. default: true
  23895. },
  23896. anthro_back: {
  23897. height: math.unit(5 + 11/12, "feet"),
  23898. weight: math.unit(170, "lb"),
  23899. name: "Back",
  23900. image: {
  23901. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23902. extra: 1749/1607,
  23903. bottom: 28/1777
  23904. },
  23905. form: "anthro"
  23906. },
  23907. anthro_male: {
  23908. height: math.unit(5 + 11/12, "feet"),
  23909. weight: math.unit(170, "lb"),
  23910. name: "Male",
  23911. image: {
  23912. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23913. extra: 1855/1713,
  23914. bottom: 63/1918
  23915. },
  23916. form: "anthro"
  23917. },
  23918. taur_front: {
  23919. height: math.unit(5 + 7/12, "feet"),
  23920. weight: math.unit(170, "lb"),
  23921. name: "Front",
  23922. image: {
  23923. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23924. extra: 1151/1059,
  23925. bottom: 356/1507
  23926. },
  23927. form: "taur",
  23928. default: true
  23929. },
  23930. anthro_frontDressed: {
  23931. height: math.unit(5 + 11/12, "feet"),
  23932. weight: math.unit(170, "lb"),
  23933. name: "Front (Dressed)",
  23934. image: {
  23935. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23936. extra: 1735/1585,
  23937. bottom: 96/1831
  23938. },
  23939. form: "anthro"
  23940. },
  23941. anthro_backDressed: {
  23942. height: math.unit(5 + 11/12, "feet"),
  23943. weight: math.unit(170, "lb"),
  23944. name: "Back (Dressed)",
  23945. image: {
  23946. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23947. extra: 1749/1607,
  23948. bottom: 28/1777
  23949. },
  23950. form: "anthro"
  23951. },
  23952. anthro_maleDressed: {
  23953. height: math.unit(5 + 11/12, "feet"),
  23954. weight: math.unit(170, "lb"),
  23955. name: "Male (Dressed)",
  23956. image: {
  23957. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23958. extra: 1855/1713,
  23959. bottom: 63/1918
  23960. },
  23961. form: "anthro"
  23962. },
  23963. taur_frontDressed: {
  23964. height: math.unit(5 + 7/12, "feet"),
  23965. weight: math.unit(170, "lb"),
  23966. name: "Front (Dressed)",
  23967. image: {
  23968. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23969. extra: 1151/1059,
  23970. bottom: 356/1507
  23971. },
  23972. form: "taur"
  23973. },
  23974. maw: {
  23975. height: math.unit(1.46, "feet"),
  23976. name: "Maw",
  23977. image: {
  23978. source: "./media/characters/poojawa-vynar/maw.svg"
  23979. },
  23980. allForms: true
  23981. },
  23982. head: {
  23983. height: math.unit(2.34, "feet"),
  23984. name: "Head",
  23985. image: {
  23986. source: "./media/characters/poojawa-vynar/head.svg"
  23987. },
  23988. allForms: true
  23989. },
  23990. leftPaw: {
  23991. height: math.unit(1.72, "feet"),
  23992. name: "Left Paw",
  23993. image: {
  23994. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23995. },
  23996. allForms: true
  23997. },
  23998. rightPaw: {
  23999. height: math.unit(1.61, "feet"),
  24000. name: "Right Paw",
  24001. image: {
  24002. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24003. },
  24004. allForms: true
  24005. },
  24006. toering: {
  24007. height: math.unit(2.9, "inches"),
  24008. name: "Toering",
  24009. image: {
  24010. source: "./media/characters/poojawa-vynar/toering.svg"
  24011. },
  24012. allForms: true
  24013. },
  24014. shaft: {
  24015. height: math.unit(0.625, "feet"),
  24016. name: "Shaft",
  24017. image: {
  24018. source: "./media/characters/poojawa-vynar/shaft.svg"
  24019. },
  24020. allForms: true
  24021. },
  24022. spade: {
  24023. height: math.unit(0.42, "feet"),
  24024. name: "Spade",
  24025. image: {
  24026. source: "./media/characters/poojawa-vynar/spade.svg"
  24027. },
  24028. allForms: true
  24029. },
  24030. },
  24031. [
  24032. {
  24033. name: "Shortstack",
  24034. height: math.unit(4, "feet"),
  24035. form: "anthro"
  24036. },
  24037. {
  24038. name: "Normal",
  24039. height: math.unit(5 + 11 / 12, "feet"),
  24040. form: "anthro",
  24041. default: true
  24042. },
  24043. {
  24044. name: "Tauric",
  24045. height: math.unit(4, "meters"),
  24046. form: "taur",
  24047. default: true
  24048. },
  24049. ],
  24050. {
  24051. "anthro": {
  24052. name: "Anthro",
  24053. default: true
  24054. },
  24055. "taur": {
  24056. name: "Taur",
  24057. },
  24058. }
  24059. ))
  24060. characterMakers.push(() => makeCharacter(
  24061. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24062. {
  24063. front: {
  24064. height: math.unit(293, "meters"),
  24065. weight: math.unit(70400, "tons"),
  24066. name: "Front",
  24067. image: {
  24068. source: "./media/characters/violette/front.svg",
  24069. extra: 1227 / 1180,
  24070. bottom: 0.005
  24071. }
  24072. },
  24073. back: {
  24074. height: math.unit(293, "meters"),
  24075. weight: math.unit(70400, "tons"),
  24076. name: "Back",
  24077. image: {
  24078. source: "./media/characters/violette/back.svg",
  24079. extra: 1227 / 1180,
  24080. bottom: 0.005
  24081. }
  24082. },
  24083. },
  24084. [
  24085. {
  24086. name: "Macro",
  24087. height: math.unit(293, "meters"),
  24088. default: true
  24089. },
  24090. ]
  24091. ))
  24092. characterMakers.push(() => makeCharacter(
  24093. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24094. {
  24095. front: {
  24096. height: math.unit(1050, "feet"),
  24097. weight: math.unit(200000, "tons"),
  24098. name: "Front",
  24099. image: {
  24100. source: "./media/characters/alessandra/front.svg",
  24101. extra: 960 / 912,
  24102. bottom: 0.06
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Macro",
  24109. height: math.unit(1050, "feet")
  24110. },
  24111. {
  24112. name: "Macro+",
  24113. height: math.unit(900, "meters"),
  24114. default: true
  24115. },
  24116. ]
  24117. ))
  24118. characterMakers.push(() => makeCharacter(
  24119. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24120. {
  24121. front: {
  24122. height: math.unit(5, "feet"),
  24123. weight: math.unit(187, "lb"),
  24124. name: "Front",
  24125. image: {
  24126. source: "./media/characters/person/front.svg",
  24127. extra: 3087 / 2945,
  24128. bottom: 91 / 3181
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Micro",
  24135. height: math.unit(3, "inches")
  24136. },
  24137. {
  24138. name: "Normal",
  24139. height: math.unit(5, "feet"),
  24140. default: true
  24141. },
  24142. {
  24143. name: "Macro",
  24144. height: math.unit(90, "feet")
  24145. },
  24146. {
  24147. name: "Max Size",
  24148. height: math.unit(280, "feet")
  24149. },
  24150. ]
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24154. {
  24155. front: {
  24156. height: math.unit(4.5, "meters"),
  24157. weight: math.unit(3200, "lb"),
  24158. name: "Front",
  24159. image: {
  24160. source: "./media/characters/ty/front.svg",
  24161. extra: 1038 / 960,
  24162. bottom: 31.156 / 1068
  24163. }
  24164. },
  24165. back: {
  24166. height: math.unit(4.5, "meters"),
  24167. weight: math.unit(3200, "lb"),
  24168. name: "Back",
  24169. image: {
  24170. source: "./media/characters/ty/back.svg",
  24171. extra: 1044 / 966,
  24172. bottom: 7.48 / 1049
  24173. }
  24174. },
  24175. },
  24176. [
  24177. {
  24178. name: "Normal",
  24179. height: math.unit(4.5, "meters"),
  24180. default: true
  24181. },
  24182. ]
  24183. ))
  24184. characterMakers.push(() => makeCharacter(
  24185. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24186. {
  24187. front: {
  24188. height: math.unit(5 + 4 / 12, "feet"),
  24189. weight: math.unit(115, "lb"),
  24190. name: "Front",
  24191. image: {
  24192. source: "./media/characters/rocky/front.svg",
  24193. extra: 1012 / 975,
  24194. bottom: 54 / 1066
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Normal",
  24201. height: math.unit(5 + 4 / 12, "feet"),
  24202. default: true
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24208. {
  24209. upright: {
  24210. height: math.unit(6, "meters"),
  24211. weight: math.unit(4000, "kg"),
  24212. name: "Upright",
  24213. image: {
  24214. source: "./media/characters/ruin/upright.svg",
  24215. extra: 668 / 661,
  24216. bottom: 42 / 799.8396
  24217. }
  24218. },
  24219. },
  24220. [
  24221. {
  24222. name: "Normal",
  24223. height: math.unit(6, "meters"),
  24224. default: true
  24225. },
  24226. ]
  24227. ))
  24228. characterMakers.push(() => makeCharacter(
  24229. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24230. {
  24231. front: {
  24232. height: math.unit(5, "feet"),
  24233. weight: math.unit(106, "lb"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/robin/front.svg",
  24237. extra: 862 / 799,
  24238. bottom: 42.4 / 914.8856
  24239. }
  24240. },
  24241. },
  24242. [
  24243. {
  24244. name: "Normal",
  24245. height: math.unit(5, "feet"),
  24246. default: true
  24247. },
  24248. ]
  24249. ))
  24250. characterMakers.push(() => makeCharacter(
  24251. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24252. {
  24253. side: {
  24254. height: math.unit(3, "feet"),
  24255. weight: math.unit(225, "lb"),
  24256. name: "Side",
  24257. image: {
  24258. source: "./media/characters/saian/side.svg",
  24259. extra: 566 / 356,
  24260. bottom: 79.7 / 643
  24261. }
  24262. },
  24263. maw: {
  24264. height: math.unit(2.85, "feet"),
  24265. name: "Maw",
  24266. image: {
  24267. source: "./media/characters/saian/maw.svg"
  24268. }
  24269. },
  24270. },
  24271. [
  24272. {
  24273. name: "Normal",
  24274. height: math.unit(3, "feet"),
  24275. default: true
  24276. },
  24277. ]
  24278. ))
  24279. characterMakers.push(() => makeCharacter(
  24280. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24281. {
  24282. side: {
  24283. height: math.unit(8, "feet"),
  24284. weight: math.unit(300, "lb"),
  24285. name: "Side",
  24286. image: {
  24287. source: "./media/characters/equus-silvermane/side.svg",
  24288. extra: 2176 / 2050,
  24289. bottom: 65.7 / 2245
  24290. }
  24291. },
  24292. front: {
  24293. height: math.unit(8, "feet"),
  24294. weight: math.unit(300, "lb"),
  24295. name: "Front",
  24296. image: {
  24297. source: "./media/characters/equus-silvermane/front.svg",
  24298. extra: 4633 / 4400,
  24299. bottom: 71.3 / 4706.915
  24300. }
  24301. },
  24302. sideStepping: {
  24303. height: math.unit(8, "feet"),
  24304. weight: math.unit(300, "lb"),
  24305. name: "Side (Stepping)",
  24306. image: {
  24307. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24308. extra: 1968 / 1860,
  24309. bottom: 16.4 / 1989
  24310. }
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(8, "feet")
  24317. },
  24318. {
  24319. name: "Minimacro",
  24320. height: math.unit(75, "feet"),
  24321. default: true
  24322. },
  24323. {
  24324. name: "Macro",
  24325. height: math.unit(150, "feet")
  24326. },
  24327. {
  24328. name: "Macro+",
  24329. height: math.unit(1000, "feet")
  24330. },
  24331. {
  24332. name: "Megamacro",
  24333. height: math.unit(1, "mile")
  24334. },
  24335. ]
  24336. ))
  24337. characterMakers.push(() => makeCharacter(
  24338. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24339. {
  24340. side: {
  24341. height: math.unit(20, "feet"),
  24342. weight: math.unit(30000, "kg"),
  24343. name: "Side",
  24344. image: {
  24345. source: "./media/characters/windar/side.svg",
  24346. extra: 1491 / 1248,
  24347. bottom: 82.56 / 1568
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Normal",
  24354. height: math.unit(20, "feet"),
  24355. default: true
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24361. {
  24362. side: {
  24363. height: math.unit(15.66, "feet"),
  24364. weight: math.unit(150, "lb"),
  24365. name: "Side",
  24366. image: {
  24367. source: "./media/characters/melody/side.svg",
  24368. extra: 1097 / 944,
  24369. bottom: 11.8 / 1109
  24370. }
  24371. },
  24372. sideOutfit: {
  24373. height: math.unit(15.66, "feet"),
  24374. weight: math.unit(150, "lb"),
  24375. name: "Side (Outfit)",
  24376. image: {
  24377. source: "./media/characters/melody/side-outfit.svg",
  24378. extra: 1097 / 944,
  24379. bottom: 11.8 / 1109
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(15.66, "feet"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24393. {
  24394. armoredFront: {
  24395. height: math.unit(8, "feet"),
  24396. weight: math.unit(325, "lb"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/windera/armored-front.svg",
  24400. extra: 1830/1598,
  24401. bottom: 151/1981
  24402. },
  24403. form: "armored",
  24404. default: true
  24405. },
  24406. macroFront: {
  24407. height: math.unit(70, "feet"),
  24408. weight: math.unit(315453, "lb"),
  24409. name: "Front",
  24410. image: {
  24411. source: "./media/characters/windera/macro-front.svg",
  24412. extra: 963/883,
  24413. bottom: 23/986
  24414. },
  24415. form: "macro",
  24416. default: true
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Normal",
  24422. height: math.unit(8, "feet"),
  24423. default: true,
  24424. form: "armored"
  24425. },
  24426. {
  24427. name: "Normal",
  24428. height: math.unit(70, "feet"),
  24429. default: true,
  24430. form: "macro"
  24431. },
  24432. ],
  24433. {
  24434. "armored": {
  24435. name: "Armored",
  24436. default: true
  24437. },
  24438. "macro": {
  24439. name: "Macro",
  24440. },
  24441. }
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24445. {
  24446. front: {
  24447. height: math.unit(28.75, "feet"),
  24448. weight: math.unit(2000, "kg"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/sonear/front.svg",
  24452. extra: 1041.1 / 964.9,
  24453. bottom: 53.7 / 1096.6
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Normal",
  24460. height: math.unit(28.75, "feet"),
  24461. default: true
  24462. },
  24463. ]
  24464. ))
  24465. characterMakers.push(() => makeCharacter(
  24466. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24467. {
  24468. side: {
  24469. height: math.unit(25.5, "feet"),
  24470. weight: math.unit(23000, "kg"),
  24471. name: "Side",
  24472. image: {
  24473. source: "./media/characters/kanara/side.svg"
  24474. }
  24475. },
  24476. },
  24477. [
  24478. {
  24479. name: "Normal",
  24480. height: math.unit(25.5, "feet"),
  24481. default: true
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24487. {
  24488. side: {
  24489. height: math.unit(10, "feet"),
  24490. weight: math.unit(1000, "kg"),
  24491. name: "Side",
  24492. image: {
  24493. source: "./media/characters/ereus/side.svg",
  24494. extra: 1157 / 959,
  24495. bottom: 153 / 1312.5
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(10, "feet"),
  24503. default: true
  24504. },
  24505. ]
  24506. ))
  24507. characterMakers.push(() => makeCharacter(
  24508. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24509. {
  24510. side: {
  24511. height: math.unit(4.5, "feet"),
  24512. weight: math.unit(500, "lb"),
  24513. name: "Side",
  24514. image: {
  24515. source: "./media/characters/e-ter/side.svg",
  24516. extra: 1550 / 1248,
  24517. bottom: 146 / 1694
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Normal",
  24524. height: math.unit(4.5, "feet"),
  24525. default: true
  24526. },
  24527. ]
  24528. ))
  24529. characterMakers.push(() => makeCharacter(
  24530. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24531. {
  24532. side: {
  24533. height: math.unit(9.7, "feet"),
  24534. weight: math.unit(4000, "kg"),
  24535. name: "Side",
  24536. image: {
  24537. source: "./media/characters/yamie/side.svg"
  24538. }
  24539. },
  24540. },
  24541. [
  24542. {
  24543. name: "Normal",
  24544. height: math.unit(9.7, "feet"),
  24545. default: true
  24546. },
  24547. ]
  24548. ))
  24549. characterMakers.push(() => makeCharacter(
  24550. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24551. {
  24552. front: {
  24553. height: math.unit(50, "feet"),
  24554. weight: math.unit(50000, "kg"),
  24555. name: "Front",
  24556. image: {
  24557. source: "./media/characters/anders/front.svg",
  24558. extra: 570 / 539,
  24559. bottom: 14.7 / 586.7
  24560. }
  24561. },
  24562. },
  24563. [
  24564. {
  24565. name: "Large",
  24566. height: math.unit(50, "feet")
  24567. },
  24568. {
  24569. name: "Macro",
  24570. height: math.unit(2000, "feet"),
  24571. default: true
  24572. },
  24573. {
  24574. name: "Megamacro",
  24575. height: math.unit(12, "miles")
  24576. },
  24577. ]
  24578. ))
  24579. characterMakers.push(() => makeCharacter(
  24580. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24581. {
  24582. front: {
  24583. height: math.unit(7 + 2 / 12, "feet"),
  24584. weight: math.unit(300, "lb"),
  24585. name: "Front",
  24586. image: {
  24587. source: "./media/characters/reban/front.svg",
  24588. extra: 1287/1212,
  24589. bottom: 148/1435
  24590. }
  24591. },
  24592. head: {
  24593. height: math.unit(1.95, "feet"),
  24594. name: "Head",
  24595. image: {
  24596. source: "./media/characters/reban/head.svg"
  24597. }
  24598. },
  24599. maw: {
  24600. height: math.unit(0.95, "feet"),
  24601. name: "Maw",
  24602. image: {
  24603. source: "./media/characters/reban/maw.svg"
  24604. }
  24605. },
  24606. foot: {
  24607. height: math.unit(1.65, "feet"),
  24608. name: "Foot",
  24609. image: {
  24610. source: "./media/characters/reban/foot.svg"
  24611. }
  24612. },
  24613. dick: {
  24614. height: math.unit(7 / 5, "feet"),
  24615. name: "Dick",
  24616. image: {
  24617. source: "./media/characters/reban/dick.svg"
  24618. }
  24619. },
  24620. },
  24621. [
  24622. {
  24623. name: "Natural Height",
  24624. height: math.unit(7 + 2 / 12, "feet")
  24625. },
  24626. {
  24627. name: "Macro",
  24628. height: math.unit(500, "feet"),
  24629. default: true
  24630. },
  24631. {
  24632. name: "Canon Height",
  24633. height: math.unit(50, "AU")
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24639. {
  24640. front: {
  24641. height: math.unit(6, "feet"),
  24642. weight: math.unit(150, "lb"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/terrance-keayes/front.svg",
  24646. extra: 1.005,
  24647. bottom: 151 / 1615
  24648. }
  24649. },
  24650. side: {
  24651. height: math.unit(6, "feet"),
  24652. weight: math.unit(150, "lb"),
  24653. name: "Side",
  24654. image: {
  24655. source: "./media/characters/terrance-keayes/side.svg",
  24656. extra: 1.005,
  24657. bottom: 129.4 / 1544
  24658. }
  24659. },
  24660. back: {
  24661. height: math.unit(6, "feet"),
  24662. weight: math.unit(150, "lb"),
  24663. name: "Back",
  24664. image: {
  24665. source: "./media/characters/terrance-keayes/back.svg",
  24666. extra: 1.005,
  24667. bottom: 58.4 / 1557.3
  24668. }
  24669. },
  24670. dick: {
  24671. height: math.unit(6 * 0.208, "feet"),
  24672. name: "Dick",
  24673. image: {
  24674. source: "./media/characters/terrance-keayes/dick.svg"
  24675. }
  24676. },
  24677. },
  24678. [
  24679. {
  24680. name: "Canon Height",
  24681. height: math.unit(35, "miles"),
  24682. default: true
  24683. },
  24684. ]
  24685. ))
  24686. characterMakers.push(() => makeCharacter(
  24687. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24688. {
  24689. front: {
  24690. height: math.unit(6, "feet"),
  24691. weight: math.unit(150, "lb"),
  24692. name: "Front",
  24693. image: {
  24694. source: "./media/characters/ofelia/front.svg",
  24695. extra: 1130/1117,
  24696. bottom: 91/1221
  24697. }
  24698. },
  24699. back: {
  24700. height: math.unit(6, "feet"),
  24701. weight: math.unit(150, "lb"),
  24702. name: "Back",
  24703. image: {
  24704. source: "./media/characters/ofelia/back.svg",
  24705. extra: 1172/1159,
  24706. bottom: 28/1200
  24707. }
  24708. },
  24709. maw: {
  24710. height: math.unit(1, "feet"),
  24711. name: "Maw",
  24712. image: {
  24713. source: "./media/characters/ofelia/maw.svg"
  24714. }
  24715. },
  24716. foot: {
  24717. height: math.unit(1.949, "feet"),
  24718. name: "Foot",
  24719. image: {
  24720. source: "./media/characters/ofelia/foot.svg"
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Canon Height",
  24727. height: math.unit(2000, "miles"),
  24728. default: true
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(6, "feet"),
  24737. weight: math.unit(150, "lb"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/samuel/front.svg",
  24741. extra: 265 / 258,
  24742. bottom: 2 / 266.1566
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Macro",
  24749. height: math.unit(100, "feet"),
  24750. default: true
  24751. },
  24752. {
  24753. name: "Full Size",
  24754. height: math.unit(1000, "miles")
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24760. {
  24761. front: {
  24762. height: math.unit(6, "feet"),
  24763. weight: math.unit(300, "lb"),
  24764. name: "Front",
  24765. image: {
  24766. source: "./media/characters/beishir-kiel/front.svg",
  24767. extra: 569 / 547,
  24768. bottom: 41.9 / 609
  24769. }
  24770. },
  24771. maw: {
  24772. height: math.unit(6 * 0.202, "feet"),
  24773. name: "Maw",
  24774. image: {
  24775. source: "./media/characters/beishir-kiel/maw.svg"
  24776. }
  24777. },
  24778. },
  24779. [
  24780. {
  24781. name: "Macro",
  24782. height: math.unit(300, "feet"),
  24783. default: true
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24789. {
  24790. front: {
  24791. height: math.unit(5 + 7/12, "feet"),
  24792. weight: math.unit(120, "lb"),
  24793. name: "Front",
  24794. image: {
  24795. source: "./media/characters/logan-grey/front.svg",
  24796. extra: 1836/1738,
  24797. bottom: 108/1944
  24798. }
  24799. },
  24800. back: {
  24801. height: math.unit(5 + 7/12, "feet"),
  24802. weight: math.unit(120, "lb"),
  24803. name: "Back",
  24804. image: {
  24805. source: "./media/characters/logan-grey/back.svg",
  24806. extra: 1880/1794,
  24807. bottom: 24/1904
  24808. }
  24809. },
  24810. frontSfw: {
  24811. height: math.unit(5 + 7/12, "feet"),
  24812. weight: math.unit(120, "lb"),
  24813. name: "Front (SFW)",
  24814. image: {
  24815. source: "./media/characters/logan-grey/front-sfw.svg",
  24816. extra: 1836/1738,
  24817. bottom: 108/1944
  24818. }
  24819. },
  24820. backSfw: {
  24821. height: math.unit(5 + 7/12, "feet"),
  24822. weight: math.unit(120, "lb"),
  24823. name: "Back (SFW)",
  24824. image: {
  24825. source: "./media/characters/logan-grey/back-sfw.svg",
  24826. extra: 1880/1794,
  24827. bottom: 24/1904
  24828. }
  24829. },
  24830. hands: {
  24831. height: math.unit(0.84, "feet"),
  24832. name: "Hands",
  24833. image: {
  24834. source: "./media/characters/logan-grey/hands.svg"
  24835. }
  24836. },
  24837. paws: {
  24838. height: math.unit(0.72, "feet"),
  24839. name: "Paws",
  24840. image: {
  24841. source: "./media/characters/logan-grey/paws.svg"
  24842. }
  24843. },
  24844. cock: {
  24845. height: math.unit(1.45, "feet"),
  24846. name: "Cock",
  24847. image: {
  24848. source: "./media/characters/logan-grey/cock.svg"
  24849. }
  24850. },
  24851. cockAlt: {
  24852. height: math.unit(1.437, "feet"),
  24853. name: "Cock (alt)",
  24854. image: {
  24855. source: "./media/characters/logan-grey/cock-alt.svg"
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Normal",
  24862. height: math.unit(5 + 8 / 12, "feet")
  24863. },
  24864. {
  24865. name: "The 500 Foot Femboy",
  24866. height: math.unit(500, "feet"),
  24867. default: true
  24868. },
  24869. {
  24870. name: "Megmacro",
  24871. height: math.unit(20, "miles")
  24872. },
  24873. ]
  24874. ))
  24875. characterMakers.push(() => makeCharacter(
  24876. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24877. {
  24878. front: {
  24879. height: math.unit(8 + 2 / 12, "feet"),
  24880. weight: math.unit(275, "lb"),
  24881. name: "Front",
  24882. image: {
  24883. source: "./media/characters/draganta/front.svg",
  24884. extra: 1177 / 1135,
  24885. bottom: 33.46 / 1212.1
  24886. }
  24887. },
  24888. },
  24889. [
  24890. {
  24891. name: "Normal",
  24892. height: math.unit(8 + 6 / 12, "feet"),
  24893. default: true
  24894. },
  24895. {
  24896. name: "Macro",
  24897. height: math.unit(150, "feet")
  24898. },
  24899. {
  24900. name: "Megamacro",
  24901. height: math.unit(1000, "miles")
  24902. },
  24903. ]
  24904. ))
  24905. characterMakers.push(() => makeCharacter(
  24906. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24907. {
  24908. front: {
  24909. height: math.unit(1.72, "m"),
  24910. weight: math.unit(80, "lb"),
  24911. name: "Front",
  24912. image: {
  24913. source: "./media/characters/voski/front.svg",
  24914. extra: 2076.22 / 2022.4,
  24915. bottom: 102.7 / 2177.3866
  24916. }
  24917. },
  24918. frontFlaccid: {
  24919. height: math.unit(1.72, "m"),
  24920. weight: math.unit(80, "lb"),
  24921. name: "Front (Flaccid)",
  24922. image: {
  24923. source: "./media/characters/voski/front-flaccid.svg",
  24924. extra: 2076.22 / 2022.4,
  24925. bottom: 102.7 / 2177.3866
  24926. }
  24927. },
  24928. frontErect: {
  24929. height: math.unit(1.72, "m"),
  24930. weight: math.unit(80, "lb"),
  24931. name: "Front (Erect)",
  24932. image: {
  24933. source: "./media/characters/voski/front-erect.svg",
  24934. extra: 2076.22 / 2022.4,
  24935. bottom: 102.7 / 2177.3866
  24936. }
  24937. },
  24938. back: {
  24939. height: math.unit(1.72, "m"),
  24940. weight: math.unit(80, "lb"),
  24941. name: "Back",
  24942. image: {
  24943. source: "./media/characters/voski/back.svg",
  24944. extra: 2104 / 2051,
  24945. bottom: 10.45 / 2113.63
  24946. }
  24947. },
  24948. },
  24949. [
  24950. {
  24951. name: "Normal",
  24952. height: math.unit(1.72, "m")
  24953. },
  24954. {
  24955. name: "Macro",
  24956. height: math.unit(55, "m"),
  24957. default: true
  24958. },
  24959. {
  24960. name: "Macro+",
  24961. height: math.unit(300, "m")
  24962. },
  24963. {
  24964. name: "Macro++",
  24965. height: math.unit(700, "m")
  24966. },
  24967. {
  24968. name: "Macro+++",
  24969. height: math.unit(4500, "m")
  24970. },
  24971. {
  24972. name: "Macro++++",
  24973. height: math.unit(45, "km")
  24974. },
  24975. {
  24976. name: "Macro+++++",
  24977. height: math.unit(1220, "km")
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24983. {
  24984. front: {
  24985. height: math.unit(2.3, "m"),
  24986. weight: math.unit(304, "kg"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/icowom-lee/front.svg",
  24990. extra: 985 / 955,
  24991. bottom: 25.4 / 1012
  24992. }
  24993. },
  24994. fronttentacles: {
  24995. height: math.unit(2.3, "m"),
  24996. weight: math.unit(304, "kg"),
  24997. name: "Front-tentacles",
  24998. image: {
  24999. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25000. extra: 985 / 955,
  25001. bottom: 25.4 / 1012
  25002. }
  25003. },
  25004. back: {
  25005. height: math.unit(2.3, "m"),
  25006. weight: math.unit(304, "kg"),
  25007. name: "Back",
  25008. image: {
  25009. source: "./media/characters/icowom-lee/back.svg",
  25010. extra: 975 / 954,
  25011. bottom: 9.5 / 985
  25012. }
  25013. },
  25014. backtentacles: {
  25015. height: math.unit(2.3, "m"),
  25016. weight: math.unit(304, "kg"),
  25017. name: "Back-tentacles",
  25018. image: {
  25019. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25020. extra: 975 / 954,
  25021. bottom: 9.5 / 985
  25022. }
  25023. },
  25024. frontDressed: {
  25025. height: math.unit(2.3, "m"),
  25026. weight: math.unit(304, "kg"),
  25027. name: "Front (Dressed)",
  25028. image: {
  25029. source: "./media/characters/icowom-lee/front-dressed.svg",
  25030. extra: 3076 / 2933,
  25031. bottom: 51.4 / 3125.1889
  25032. }
  25033. },
  25034. rump: {
  25035. height: math.unit(0.776, "meters"),
  25036. name: "Rump",
  25037. image: {
  25038. source: "./media/characters/icowom-lee/rump.svg"
  25039. }
  25040. },
  25041. genitals: {
  25042. height: math.unit(0.78, "meters"),
  25043. name: "Genitals",
  25044. image: {
  25045. source: "./media/characters/icowom-lee/genitals.svg"
  25046. }
  25047. },
  25048. },
  25049. [
  25050. {
  25051. name: "Normal",
  25052. height: math.unit(2.3, "meters"),
  25053. default: true
  25054. },
  25055. {
  25056. name: "Macro",
  25057. height: math.unit(94, "meters"),
  25058. default: true
  25059. },
  25060. ]
  25061. ))
  25062. characterMakers.push(() => makeCharacter(
  25063. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25064. {
  25065. front: {
  25066. height: math.unit(22, "meters"),
  25067. weight: math.unit(21000, "kg"),
  25068. name: "Front",
  25069. image: {
  25070. source: "./media/characters/shock-diamond/front.svg",
  25071. extra: 2204 / 2053,
  25072. bottom: 65 / 2239.47
  25073. }
  25074. },
  25075. frontNude: {
  25076. height: math.unit(22, "meters"),
  25077. weight: math.unit(21000, "kg"),
  25078. name: "Front (Nude)",
  25079. image: {
  25080. source: "./media/characters/shock-diamond/front-nude.svg",
  25081. extra: 2514 / 2285,
  25082. bottom: 13 / 2527.56
  25083. }
  25084. },
  25085. },
  25086. [
  25087. {
  25088. name: "Normal",
  25089. height: math.unit(3, "meters")
  25090. },
  25091. {
  25092. name: "Macro",
  25093. height: math.unit(22, "meters"),
  25094. default: true
  25095. },
  25096. ]
  25097. ))
  25098. characterMakers.push(() => makeCharacter(
  25099. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25100. {
  25101. front: {
  25102. height: math.unit(5 + 4/12, "feet"),
  25103. weight: math.unit(125, "lb"),
  25104. name: "Front",
  25105. image: {
  25106. source: "./media/characters/rory/front.svg",
  25107. extra: 1790/1681,
  25108. bottom: 66/1856
  25109. },
  25110. form: "normal",
  25111. default: true
  25112. },
  25113. back: {
  25114. height: math.unit(5 + 4/12, "feet"),
  25115. weight: math.unit(125, "lb"),
  25116. name: "Back",
  25117. image: {
  25118. source: "./media/characters/rory/back.svg",
  25119. extra: 1805/1690,
  25120. bottom: 56/1861
  25121. },
  25122. form: "normal"
  25123. },
  25124. frontDressed: {
  25125. height: math.unit(5 + 4/12, "feet"),
  25126. weight: math.unit(125, "lb"),
  25127. name: "Front (Dressed)",
  25128. image: {
  25129. source: "./media/characters/rory/front-dressed.svg",
  25130. extra: 1790/1681,
  25131. bottom: 66/1856
  25132. },
  25133. form: "normal"
  25134. },
  25135. backDressed: {
  25136. height: math.unit(5 + 4/12, "feet"),
  25137. weight: math.unit(125, "lb"),
  25138. name: "Back (Dressed)",
  25139. image: {
  25140. source: "./media/characters/rory/back-dressed.svg",
  25141. extra: 1805/1690,
  25142. bottom: 56/1861
  25143. },
  25144. form: "normal"
  25145. },
  25146. frontNsfw: {
  25147. height: math.unit(5 + 4/12, "feet"),
  25148. weight: math.unit(125, "lb"),
  25149. name: "Front (NSFW)",
  25150. image: {
  25151. source: "./media/characters/rory/front-nsfw.svg",
  25152. extra: 1790/1681,
  25153. bottom: 66/1856
  25154. },
  25155. form: "normal"
  25156. },
  25157. backNsfw: {
  25158. height: math.unit(5 + 4/12, "feet"),
  25159. weight: math.unit(125, "lb"),
  25160. name: "Back (NSFW)",
  25161. image: {
  25162. source: "./media/characters/rory/back-nsfw.svg",
  25163. extra: 1805/1690,
  25164. bottom: 56/1861
  25165. },
  25166. form: "normal"
  25167. },
  25168. dick: {
  25169. height: math.unit(0.8, "feet"),
  25170. name: "Dick",
  25171. image: {
  25172. source: "./media/characters/rory/dick.svg"
  25173. },
  25174. form: "normal"
  25175. },
  25176. thicc_front: {
  25177. height: math.unit(5 + 4/12, "feet"),
  25178. weight: math.unit(195, "lb"),
  25179. name: "Front",
  25180. image: {
  25181. source: "./media/characters/rory/thicc-front.svg",
  25182. extra: 1220/1100,
  25183. bottom: 103/1323
  25184. },
  25185. form: "thicc",
  25186. default: true
  25187. },
  25188. thicc_back: {
  25189. height: math.unit(5 + 4/12, "feet"),
  25190. weight: math.unit(195, "lb"),
  25191. name: "Back",
  25192. image: {
  25193. source: "./media/characters/rory/thicc-back.svg",
  25194. extra: 1166/1086,
  25195. bottom: 35/1201
  25196. },
  25197. form: "thicc"
  25198. },
  25199. },
  25200. [
  25201. {
  25202. name: "Micro",
  25203. height: math.unit(3, "inches"),
  25204. allForms: true
  25205. },
  25206. {
  25207. name: "Normal",
  25208. height: math.unit(5 + 4/12, "feet"),
  25209. allForms: true,
  25210. default: true
  25211. },
  25212. {
  25213. name: "Macro",
  25214. height: math.unit(90, "feet"),
  25215. allForms: true
  25216. },
  25217. {
  25218. name: "Supercharged",
  25219. height: math.unit(270, "feet"),
  25220. allForms: true
  25221. },
  25222. ],
  25223. {
  25224. "normal": {
  25225. name: "Normal",
  25226. default: true
  25227. },
  25228. "thicc": {
  25229. name: "Thicc",
  25230. },
  25231. }
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(5 + 9 / 12, "feet"),
  25238. weight: math.unit(190, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/sprisk/front.svg",
  25242. extra: 1225 / 1180,
  25243. bottom: 42.7 / 1266.4
  25244. }
  25245. },
  25246. frontNsfw: {
  25247. height: math.unit(5 + 9 / 12, "feet"),
  25248. weight: math.unit(190, "lb"),
  25249. name: "Front (NSFW)",
  25250. image: {
  25251. source: "./media/characters/sprisk/front-nsfw.svg",
  25252. extra: 1225 / 1180,
  25253. bottom: 42.7 / 1266.4
  25254. }
  25255. },
  25256. back: {
  25257. height: math.unit(5 + 9 / 12, "feet"),
  25258. weight: math.unit(190, "lb"),
  25259. name: "Back",
  25260. image: {
  25261. source: "./media/characters/sprisk/back.svg",
  25262. extra: 1247 / 1200,
  25263. bottom: 5.6 / 1253.04
  25264. }
  25265. },
  25266. },
  25267. [
  25268. {
  25269. name: "Tiny",
  25270. height: math.unit(2, "inches")
  25271. },
  25272. {
  25273. name: "Normal",
  25274. height: math.unit(5 + 9 / 12, "feet"),
  25275. default: true
  25276. },
  25277. {
  25278. name: "Mini Macro",
  25279. height: math.unit(18, "feet")
  25280. },
  25281. {
  25282. name: "Macro",
  25283. height: math.unit(100, "feet")
  25284. },
  25285. {
  25286. name: "MACRO",
  25287. height: math.unit(50, "miles")
  25288. },
  25289. {
  25290. name: "M A C R O",
  25291. height: math.unit(300, "miles")
  25292. },
  25293. ]
  25294. ))
  25295. characterMakers.push(() => makeCharacter(
  25296. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25297. {
  25298. side: {
  25299. height: math.unit(15.6, "meters"),
  25300. weight: math.unit(700000, "kg"),
  25301. name: "Side",
  25302. image: {
  25303. source: "./media/characters/bunsen/side.svg",
  25304. extra: 1644 / 358
  25305. }
  25306. },
  25307. foot: {
  25308. height: math.unit(1.611 * 1644 / 358, "meter"),
  25309. name: "Foot",
  25310. image: {
  25311. source: "./media/characters/bunsen/foot.svg"
  25312. }
  25313. },
  25314. },
  25315. [
  25316. {
  25317. name: "Small",
  25318. height: math.unit(10, "feet")
  25319. },
  25320. {
  25321. name: "Normal",
  25322. height: math.unit(15.6, "meters"),
  25323. default: true
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25329. {
  25330. front: {
  25331. height: math.unit(4 + 11 / 12, "feet"),
  25332. weight: math.unit(140, "lb"),
  25333. name: "Front",
  25334. image: {
  25335. source: "./media/characters/sesh/front.svg",
  25336. extra: 3420 / 3231,
  25337. bottom: 72 / 3949.5
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(4 + 11 / 12, "feet")
  25345. },
  25346. {
  25347. name: "Grown",
  25348. height: math.unit(15, "feet"),
  25349. default: true
  25350. },
  25351. {
  25352. name: "Macro",
  25353. height: math.unit(1500, "feet")
  25354. },
  25355. {
  25356. name: "Megamacro",
  25357. height: math.unit(30, "miles")
  25358. },
  25359. {
  25360. name: "Continental",
  25361. height: math.unit(3000, "miles")
  25362. },
  25363. {
  25364. name: "Gravity Mass",
  25365. height: math.unit(300000, "miles")
  25366. },
  25367. {
  25368. name: "Planet Buster",
  25369. height: math.unit(30000000, "miles")
  25370. },
  25371. {
  25372. name: "Big",
  25373. height: math.unit(3000000000, "miles")
  25374. },
  25375. ]
  25376. ))
  25377. characterMakers.push(() => makeCharacter(
  25378. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25379. {
  25380. front: {
  25381. height: math.unit(9, "feet"),
  25382. weight: math.unit(350, "lb"),
  25383. name: "Front",
  25384. image: {
  25385. source: "./media/characters/pepper/front.svg",
  25386. extra: 1448 / 1312,
  25387. bottom: 9.4 / 1457.88
  25388. }
  25389. },
  25390. back: {
  25391. height: math.unit(9, "feet"),
  25392. weight: math.unit(350, "lb"),
  25393. name: "Back",
  25394. image: {
  25395. source: "./media/characters/pepper/back.svg",
  25396. extra: 1423 / 1300,
  25397. bottom: 4.6 / 1429
  25398. }
  25399. },
  25400. maw: {
  25401. height: math.unit(0.932, "feet"),
  25402. name: "Maw",
  25403. image: {
  25404. source: "./media/characters/pepper/maw.svg"
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(9, "feet"),
  25412. default: true
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(6, "feet"),
  25421. weight: math.unit(150, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/maelstrom/front.svg",
  25425. extra: 2100 / 1883,
  25426. bottom: 94 / 2196.7
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Less Kaiju",
  25433. height: math.unit(200, "feet")
  25434. },
  25435. {
  25436. name: "Kaiju",
  25437. height: math.unit(400, "feet"),
  25438. default: true
  25439. },
  25440. {
  25441. name: "Kaiju-er",
  25442. height: math.unit(600, "feet")
  25443. },
  25444. ]
  25445. ))
  25446. characterMakers.push(() => makeCharacter(
  25447. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25448. {
  25449. front: {
  25450. height: math.unit(6 + 5 / 12, "feet"),
  25451. weight: math.unit(180, "lb"),
  25452. name: "Front",
  25453. image: {
  25454. source: "./media/characters/lexir/front.svg",
  25455. extra: 180 / 172,
  25456. bottom: 12 / 192
  25457. }
  25458. },
  25459. back: {
  25460. height: math.unit(6 + 5 / 12, "feet"),
  25461. weight: math.unit(180, "lb"),
  25462. name: "Back",
  25463. image: {
  25464. source: "./media/characters/lexir/back.svg",
  25465. extra: 1273/1201,
  25466. bottom: 39/1312
  25467. }
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Very Smal",
  25473. height: math.unit(1, "nm")
  25474. },
  25475. {
  25476. name: "Normal",
  25477. height: math.unit(6 + 5 / 12, "feet"),
  25478. default: true
  25479. },
  25480. {
  25481. name: "Macro",
  25482. height: math.unit(1, "mile")
  25483. },
  25484. {
  25485. name: "Megamacro",
  25486. height: math.unit(50, "miles")
  25487. },
  25488. ]
  25489. ))
  25490. characterMakers.push(() => makeCharacter(
  25491. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25492. {
  25493. front: {
  25494. height: math.unit(1.5, "meters"),
  25495. weight: math.unit(100, "lb"),
  25496. name: "Front",
  25497. image: {
  25498. source: "./media/characters/maksio/front.svg",
  25499. extra: 1549 / 1531,
  25500. bottom: 123.7 / 1674.5429
  25501. }
  25502. },
  25503. back: {
  25504. height: math.unit(1.5, "meters"),
  25505. weight: math.unit(100, "lb"),
  25506. name: "Back",
  25507. image: {
  25508. source: "./media/characters/maksio/back.svg",
  25509. extra: 1541 / 1509,
  25510. bottom: 97 / 1639
  25511. }
  25512. },
  25513. hand: {
  25514. height: math.unit(0.621, "feet"),
  25515. name: "Hand",
  25516. image: {
  25517. source: "./media/characters/maksio/hand.svg"
  25518. }
  25519. },
  25520. foot: {
  25521. height: math.unit(1.611, "feet"),
  25522. name: "Foot",
  25523. image: {
  25524. source: "./media/characters/maksio/foot.svg"
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Shrunken",
  25531. height: math.unit(10, "cm")
  25532. },
  25533. {
  25534. name: "Normal",
  25535. height: math.unit(150, "cm"),
  25536. default: true
  25537. },
  25538. ]
  25539. ))
  25540. characterMakers.push(() => makeCharacter(
  25541. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25542. {
  25543. front: {
  25544. height: math.unit(100, "feet"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/erza-bear/front.svg",
  25548. extra: 2449 / 2390,
  25549. bottom: 46 / 2494
  25550. }
  25551. },
  25552. back: {
  25553. height: math.unit(100, "feet"),
  25554. name: "Back",
  25555. image: {
  25556. source: "./media/characters/erza-bear/back.svg",
  25557. extra: 2489 / 2430,
  25558. bottom: 85.4 / 2480
  25559. }
  25560. },
  25561. tail: {
  25562. height: math.unit(42, "feet"),
  25563. name: "Tail",
  25564. image: {
  25565. source: "./media/characters/erza-bear/tail.svg"
  25566. }
  25567. },
  25568. tongue: {
  25569. height: math.unit(8, "feet"),
  25570. name: "Tongue",
  25571. image: {
  25572. source: "./media/characters/erza-bear/tongue.svg"
  25573. }
  25574. },
  25575. dick: {
  25576. height: math.unit(10.5, "feet"),
  25577. name: "Dick",
  25578. image: {
  25579. source: "./media/characters/erza-bear/dick.svg"
  25580. }
  25581. },
  25582. dickVertical: {
  25583. height: math.unit(16.9, "feet"),
  25584. name: "Dick (Vertical)",
  25585. image: {
  25586. source: "./media/characters/erza-bear/dick-vertical.svg"
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Macro",
  25593. height: math.unit(100, "feet"),
  25594. default: true
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25600. {
  25601. front: {
  25602. height: math.unit(172, "cm"),
  25603. weight: math.unit(73, "kg"),
  25604. name: "Front",
  25605. image: {
  25606. source: "./media/characters/violet-flor/front.svg",
  25607. extra: 1530 / 1442,
  25608. bottom: 61.9 / 1588.8
  25609. }
  25610. },
  25611. back: {
  25612. height: math.unit(180, "cm"),
  25613. weight: math.unit(73, "kg"),
  25614. name: "Back",
  25615. image: {
  25616. source: "./media/characters/violet-flor/back.svg",
  25617. extra: 1692 / 1630,
  25618. bottom: 20 / 1712
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(172, "cm"),
  25626. default: true
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25632. {
  25633. front: {
  25634. height: math.unit(6, "feet"),
  25635. weight: math.unit(220, "lb"),
  25636. name: "Front",
  25637. image: {
  25638. source: "./media/characters/lynn-rhea/front.svg",
  25639. extra: 310 / 273
  25640. }
  25641. },
  25642. back: {
  25643. height: math.unit(6, "feet"),
  25644. weight: math.unit(220, "lb"),
  25645. name: "Back",
  25646. image: {
  25647. source: "./media/characters/lynn-rhea/back.svg",
  25648. extra: 310 / 273
  25649. }
  25650. },
  25651. dicks: {
  25652. height: math.unit(0.9, "feet"),
  25653. name: "Dicks",
  25654. image: {
  25655. source: "./media/characters/lynn-rhea/dicks.svg"
  25656. }
  25657. },
  25658. slit: {
  25659. height: math.unit(0.4, "feet"),
  25660. name: "Slit",
  25661. image: {
  25662. source: "./media/characters/lynn-rhea/slit.svg"
  25663. }
  25664. },
  25665. },
  25666. [
  25667. {
  25668. name: "Micro",
  25669. height: math.unit(1, "inch")
  25670. },
  25671. {
  25672. name: "Macro",
  25673. height: math.unit(60, "feet"),
  25674. default: true
  25675. },
  25676. {
  25677. name: "Megamacro",
  25678. height: math.unit(2, "miles")
  25679. },
  25680. {
  25681. name: "Gigamacro",
  25682. height: math.unit(3, "earths")
  25683. },
  25684. {
  25685. name: "Galactic",
  25686. height: math.unit(0.8, "galaxies")
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25692. {
  25693. front: {
  25694. height: math.unit(1600, "feet"),
  25695. weight: math.unit(85758785169, "kg"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/valathos/front.svg",
  25699. extra: 1451 / 1339
  25700. }
  25701. },
  25702. },
  25703. [
  25704. {
  25705. name: "Macro",
  25706. height: math.unit(1600, "feet"),
  25707. default: true
  25708. },
  25709. ]
  25710. ))
  25711. characterMakers.push(() => makeCharacter(
  25712. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25713. {
  25714. front: {
  25715. height: math.unit(7 + 5 / 12, "feet"),
  25716. weight: math.unit(300, "lb"),
  25717. name: "Front",
  25718. image: {
  25719. source: "./media/characters/azula/front.svg",
  25720. extra: 3208 / 2880,
  25721. bottom: 80.2 / 3277
  25722. }
  25723. },
  25724. back: {
  25725. height: math.unit(7 + 5 / 12, "feet"),
  25726. weight: math.unit(300, "lb"),
  25727. name: "Back",
  25728. image: {
  25729. source: "./media/characters/azula/back.svg",
  25730. extra: 3169 / 2822,
  25731. bottom: 150.6 / 3321
  25732. }
  25733. },
  25734. },
  25735. [
  25736. {
  25737. name: "Normal",
  25738. height: math.unit(7 + 5 / 12, "feet"),
  25739. default: true
  25740. },
  25741. {
  25742. name: "Big",
  25743. height: math.unit(20, "feet")
  25744. },
  25745. ]
  25746. ))
  25747. characterMakers.push(() => makeCharacter(
  25748. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25749. {
  25750. front: {
  25751. height: math.unit(5 + 1 / 12, "feet"),
  25752. weight: math.unit(110, "lb"),
  25753. name: "Front",
  25754. image: {
  25755. source: "./media/characters/rupert/front.svg",
  25756. extra: 1549 / 1495,
  25757. bottom: 54.2 / 1604.4
  25758. }
  25759. },
  25760. },
  25761. [
  25762. {
  25763. name: "Normal",
  25764. height: math.unit(5 + 1 / 12, "feet"),
  25765. default: true
  25766. },
  25767. ]
  25768. ))
  25769. characterMakers.push(() => makeCharacter(
  25770. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25771. {
  25772. front: {
  25773. height: math.unit(8 + 4 / 12, "feet"),
  25774. weight: math.unit(350, "lb"),
  25775. name: "Front",
  25776. image: {
  25777. source: "./media/characters/sheera-castellar/front.svg",
  25778. extra: 1957 / 1894,
  25779. bottom: 26.97 / 1975.017
  25780. }
  25781. },
  25782. side: {
  25783. height: math.unit(8 + 4 / 12, "feet"),
  25784. weight: math.unit(350, "lb"),
  25785. name: "Side",
  25786. image: {
  25787. source: "./media/characters/sheera-castellar/side.svg",
  25788. extra: 1957 / 1894
  25789. }
  25790. },
  25791. back: {
  25792. height: math.unit(8 + 4 / 12, "feet"),
  25793. weight: math.unit(350, "lb"),
  25794. name: "Back",
  25795. image: {
  25796. source: "./media/characters/sheera-castellar/back.svg",
  25797. extra: 1957 / 1894
  25798. }
  25799. },
  25800. angled: {
  25801. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25802. weight: math.unit(350, "lb"),
  25803. name: "Angled",
  25804. image: {
  25805. source: "./media/characters/sheera-castellar/angled.svg",
  25806. extra: 1807 / 1707,
  25807. bottom: 68 / 1875
  25808. }
  25809. },
  25810. genitals: {
  25811. height: math.unit(2.2, "feet"),
  25812. name: "Genitals",
  25813. image: {
  25814. source: "./media/characters/sheera-castellar/genitals.svg"
  25815. }
  25816. },
  25817. taur: {
  25818. height: math.unit(10 + 6/12, "feet"),
  25819. name: "Taur",
  25820. image: {
  25821. source: "./media/characters/sheera-castellar/taur.svg",
  25822. extra: 2017/1909,
  25823. bottom: 185/2202
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Normal",
  25830. height: math.unit(8 + 4 / 12, "feet")
  25831. },
  25832. {
  25833. name: "Macro",
  25834. height: math.unit(150, "feet"),
  25835. default: true
  25836. },
  25837. {
  25838. name: "Macro+",
  25839. height: math.unit(800, "feet")
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25845. {
  25846. front: {
  25847. height: math.unit(6, "feet"),
  25848. weight: math.unit(150, "lb"),
  25849. name: "Front",
  25850. image: {
  25851. source: "./media/characters/jaipur/front.svg",
  25852. extra: 3860 / 3731,
  25853. bottom: 287 / 4140
  25854. }
  25855. },
  25856. back: {
  25857. height: math.unit(6, "feet"),
  25858. weight: math.unit(150, "lb"),
  25859. name: "Back",
  25860. image: {
  25861. source: "./media/characters/jaipur/back.svg",
  25862. extra: 1637/1561,
  25863. bottom: 154/1791
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "Normal",
  25870. height: math.unit(1.85, "meters"),
  25871. default: true
  25872. },
  25873. {
  25874. name: "Macro",
  25875. height: math.unit(150, "meters")
  25876. },
  25877. {
  25878. name: "Macro+",
  25879. height: math.unit(0.5, "miles")
  25880. },
  25881. {
  25882. name: "Macro++",
  25883. height: math.unit(2.5, "miles")
  25884. },
  25885. {
  25886. name: "Macro+++",
  25887. height: math.unit(12, "miles")
  25888. },
  25889. {
  25890. name: "Macro++++",
  25891. height: math.unit(120, "miles")
  25892. },
  25893. {
  25894. name: "Macro+++++",
  25895. height: math.unit(1200, "miles")
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25901. {
  25902. front: {
  25903. height: math.unit(6, "feet"),
  25904. weight: math.unit(150, "lb"),
  25905. name: "Front",
  25906. image: {
  25907. source: "./media/characters/sheila-wolf/front.svg",
  25908. extra: 1931 / 1808,
  25909. bottom: 29.5 / 1960
  25910. }
  25911. },
  25912. dick: {
  25913. height: math.unit(1.464, "feet"),
  25914. name: "Dick",
  25915. image: {
  25916. source: "./media/characters/sheila-wolf/dick.svg"
  25917. }
  25918. },
  25919. muzzle: {
  25920. height: math.unit(0.513, "feet"),
  25921. name: "Muzzle",
  25922. image: {
  25923. source: "./media/characters/sheila-wolf/muzzle.svg"
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Macro",
  25930. height: math.unit(70, "feet"),
  25931. default: true
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(32, "meters"),
  25940. weight: math.unit(300000, "kg"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/almor/front.svg",
  25944. extra: 1408 / 1322,
  25945. bottom: 94.6 / 1506.5
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Macro",
  25952. height: math.unit(32, "meters"),
  25953. default: true
  25954. },
  25955. ]
  25956. ))
  25957. characterMakers.push(() => makeCharacter(
  25958. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25959. {
  25960. front: {
  25961. height: math.unit(7, "feet"),
  25962. weight: math.unit(200, "lb"),
  25963. name: "Front",
  25964. image: {
  25965. source: "./media/characters/silver/front.svg",
  25966. extra: 472.1 / 450.5,
  25967. bottom: 26.5 / 499.424
  25968. }
  25969. },
  25970. },
  25971. [
  25972. {
  25973. name: "Normal",
  25974. height: math.unit(7, "feet"),
  25975. default: true
  25976. },
  25977. {
  25978. name: "Macro",
  25979. height: math.unit(800, "feet")
  25980. },
  25981. {
  25982. name: "Megamacro",
  25983. height: math.unit(250, "miles")
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(6, "feet"),
  25992. weight: math.unit(150, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/pliskin/front.svg",
  25996. extra: 1469 / 1359,
  25997. bottom: 70 / 1540
  25998. }
  25999. },
  26000. },
  26001. [
  26002. {
  26003. name: "Micro",
  26004. height: math.unit(3, "inches")
  26005. },
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(5 + 11 / 12, "feet"),
  26009. default: true
  26010. },
  26011. {
  26012. name: "Macro",
  26013. height: math.unit(120, "feet")
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26019. {
  26020. front: {
  26021. height: math.unit(6, "feet"),
  26022. weight: math.unit(150, "lb"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/sammy/front.svg",
  26026. extra: 1193 / 1089,
  26027. bottom: 30.5 / 1226
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Macro",
  26034. height: math.unit(1700, "feet"),
  26035. default: true
  26036. },
  26037. {
  26038. name: "Examacro",
  26039. height: math.unit(2.5e9, "lightyears")
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(21, "meters"),
  26048. weight: math.unit(12, "tonnes"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/kuru/front.svg",
  26052. extra: 4301 / 3785,
  26053. bottom: 371.3 / 4691
  26054. }
  26055. },
  26056. },
  26057. [
  26058. {
  26059. name: "Macro",
  26060. height: math.unit(21, "meters"),
  26061. default: true
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26067. {
  26068. front: {
  26069. height: math.unit(23, "meters"),
  26070. weight: math.unit(12.2, "tonnes"),
  26071. name: "Front",
  26072. image: {
  26073. source: "./media/characters/rakka/front.svg",
  26074. extra: 4670 / 4169,
  26075. bottom: 301 / 4968.7
  26076. }
  26077. },
  26078. },
  26079. [
  26080. {
  26081. name: "Macro",
  26082. height: math.unit(23, "meters"),
  26083. default: true
  26084. },
  26085. ]
  26086. ))
  26087. characterMakers.push(() => makeCharacter(
  26088. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26089. {
  26090. front: {
  26091. height: math.unit(6, "feet"),
  26092. weight: math.unit(150, "lb"),
  26093. name: "Front",
  26094. image: {
  26095. source: "./media/characters/rhys-feline/front.svg",
  26096. extra: 2488 / 2308,
  26097. bottom: 35.67 / 2519.19
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Really Small",
  26104. height: math.unit(1, "nm")
  26105. },
  26106. {
  26107. name: "Micro",
  26108. height: math.unit(4, "inches")
  26109. },
  26110. {
  26111. name: "Normal",
  26112. height: math.unit(4 + 10 / 12, "feet"),
  26113. default: true
  26114. },
  26115. {
  26116. name: "Macro",
  26117. height: math.unit(100, "feet")
  26118. },
  26119. {
  26120. name: "Megamacto",
  26121. height: math.unit(50, "miles")
  26122. },
  26123. ]
  26124. ))
  26125. characterMakers.push(() => makeCharacter(
  26126. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26127. {
  26128. side: {
  26129. height: math.unit(30, "feet"),
  26130. weight: math.unit(35000, "kg"),
  26131. name: "Side",
  26132. image: {
  26133. source: "./media/characters/alydar/side.svg",
  26134. extra: 234 / 222,
  26135. bottom: 6.5 / 241
  26136. }
  26137. },
  26138. front: {
  26139. height: math.unit(30, "feet"),
  26140. weight: math.unit(35000, "kg"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/alydar/front.svg",
  26144. extra: 223.37 / 210.2,
  26145. bottom: 22.3 / 246.76
  26146. }
  26147. },
  26148. top: {
  26149. height: math.unit(64.54, "feet"),
  26150. weight: math.unit(35000, "kg"),
  26151. name: "Top",
  26152. image: {
  26153. source: "./media/characters/alydar/top.svg"
  26154. }
  26155. },
  26156. anthro: {
  26157. height: math.unit(30, "feet"),
  26158. weight: math.unit(9000, "kg"),
  26159. name: "Anthro",
  26160. image: {
  26161. source: "./media/characters/alydar/anthro.svg",
  26162. extra: 432 / 421,
  26163. bottom: 7.18 / 440
  26164. }
  26165. },
  26166. maw: {
  26167. height: math.unit(11.693, "feet"),
  26168. name: "Maw",
  26169. image: {
  26170. source: "./media/characters/alydar/maw.svg"
  26171. }
  26172. },
  26173. head: {
  26174. height: math.unit(11.693, "feet"),
  26175. name: "Head",
  26176. image: {
  26177. source: "./media/characters/alydar/head.svg"
  26178. }
  26179. },
  26180. headAlt: {
  26181. height: math.unit(12.861, "feet"),
  26182. name: "Head (Alt)",
  26183. image: {
  26184. source: "./media/characters/alydar/head-alt.svg"
  26185. }
  26186. },
  26187. wing: {
  26188. height: math.unit(20.712, "feet"),
  26189. name: "Wing",
  26190. image: {
  26191. source: "./media/characters/alydar/wing.svg"
  26192. }
  26193. },
  26194. wingFeather: {
  26195. height: math.unit(9.662, "feet"),
  26196. name: "Wing Feather",
  26197. image: {
  26198. source: "./media/characters/alydar/wing-feather.svg"
  26199. }
  26200. },
  26201. countourFeather: {
  26202. height: math.unit(4.154, "feet"),
  26203. name: "Contour Feather",
  26204. image: {
  26205. source: "./media/characters/alydar/contour-feather.svg"
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Diplomatic",
  26212. height: math.unit(13, "feet"),
  26213. default: true
  26214. },
  26215. {
  26216. name: "Small",
  26217. height: math.unit(30, "feet")
  26218. },
  26219. {
  26220. name: "Normal",
  26221. height: math.unit(95, "feet"),
  26222. default: true
  26223. },
  26224. {
  26225. name: "Large",
  26226. height: math.unit(285, "feet")
  26227. },
  26228. {
  26229. name: "Incomprehensible",
  26230. height: math.unit(450, "megameters")
  26231. },
  26232. ]
  26233. ))
  26234. characterMakers.push(() => makeCharacter(
  26235. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26236. {
  26237. side: {
  26238. height: math.unit(11, "feet"),
  26239. weight: math.unit(1750, "kg"),
  26240. name: "Side",
  26241. image: {
  26242. source: "./media/characters/selicia/side.svg",
  26243. extra: 440 / 396,
  26244. bottom: 24.8 / 465.979
  26245. }
  26246. },
  26247. maw: {
  26248. height: math.unit(4.665, "feet"),
  26249. name: "Maw",
  26250. image: {
  26251. source: "./media/characters/selicia/maw.svg"
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(11, "feet"),
  26259. default: true
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26265. {
  26266. side: {
  26267. height: math.unit(2 + 6 / 12, "feet"),
  26268. weight: math.unit(30, "lb"),
  26269. name: "Side",
  26270. image: {
  26271. source: "./media/characters/layla/side.svg",
  26272. extra: 244 / 188,
  26273. bottom: 18.2 / 262.1
  26274. }
  26275. },
  26276. back: {
  26277. height: math.unit(2 + 6 / 12, "feet"),
  26278. weight: math.unit(30, "lb"),
  26279. name: "Back",
  26280. image: {
  26281. source: "./media/characters/layla/back.svg",
  26282. extra: 308 / 241.5,
  26283. bottom: 8.9 / 316.8
  26284. }
  26285. },
  26286. cumming: {
  26287. height: math.unit(2 + 6 / 12, "feet"),
  26288. weight: math.unit(30, "lb"),
  26289. name: "Cumming",
  26290. image: {
  26291. source: "./media/characters/layla/cumming.svg",
  26292. extra: 342 / 279,
  26293. bottom: 595 / 938
  26294. }
  26295. },
  26296. dickFlaccid: {
  26297. height: math.unit(2.595, "feet"),
  26298. name: "Flaccid Genitals",
  26299. image: {
  26300. source: "./media/characters/layla/dick-flaccid.svg"
  26301. }
  26302. },
  26303. dickErect: {
  26304. height: math.unit(2.359, "feet"),
  26305. name: "Erect Genitals",
  26306. image: {
  26307. source: "./media/characters/layla/dick-erect.svg"
  26308. }
  26309. },
  26310. dragon: {
  26311. height: math.unit(40, "feet"),
  26312. name: "Dragon",
  26313. image: {
  26314. source: "./media/characters/layla/dragon.svg",
  26315. extra: 610/535,
  26316. bottom: 367/977
  26317. }
  26318. },
  26319. taur: {
  26320. height: math.unit(30, "feet"),
  26321. name: "Taur",
  26322. image: {
  26323. source: "./media/characters/layla/taur.svg",
  26324. extra: 1268/1199,
  26325. bottom: 112/1380
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Micro",
  26332. height: math.unit(1, "inch")
  26333. },
  26334. {
  26335. name: "Small",
  26336. height: math.unit(1, "foot")
  26337. },
  26338. {
  26339. name: "Normal",
  26340. height: math.unit(2 + 6 / 12, "feet"),
  26341. default: true
  26342. },
  26343. {
  26344. name: "Macro",
  26345. height: math.unit(200, "feet")
  26346. },
  26347. {
  26348. name: "Megamacro",
  26349. height: math.unit(1000, "miles")
  26350. },
  26351. {
  26352. name: "Planetary",
  26353. height: math.unit(8000, "miles")
  26354. },
  26355. {
  26356. name: "True Layla",
  26357. height: math.unit(200000 * 7, "multiverses")
  26358. },
  26359. ]
  26360. ))
  26361. characterMakers.push(() => makeCharacter(
  26362. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26363. {
  26364. back: {
  26365. height: math.unit(10.5, "feet"),
  26366. weight: math.unit(800, "lb"),
  26367. name: "Back",
  26368. image: {
  26369. source: "./media/characters/knox/back.svg",
  26370. extra: 1486 / 1089,
  26371. bottom: 107 / 1601.4
  26372. }
  26373. },
  26374. side: {
  26375. height: math.unit(10.5, "feet"),
  26376. weight: math.unit(800, "lb"),
  26377. name: "Side",
  26378. image: {
  26379. source: "./media/characters/knox/side.svg",
  26380. extra: 244 / 218,
  26381. bottom: 14 / 260
  26382. }
  26383. },
  26384. },
  26385. [
  26386. {
  26387. name: "Compact",
  26388. height: math.unit(10.5, "feet"),
  26389. default: true
  26390. },
  26391. {
  26392. name: "Dynamax",
  26393. height: math.unit(210, "feet")
  26394. },
  26395. {
  26396. name: "Full Macro",
  26397. height: math.unit(850, "feet")
  26398. },
  26399. ]
  26400. ))
  26401. characterMakers.push(() => makeCharacter(
  26402. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26403. {
  26404. front: {
  26405. height: math.unit(28, "feet"),
  26406. weight: math.unit(10500, "lb"),
  26407. name: "Front",
  26408. image: {
  26409. source: "./media/characters/kayda/front.svg",
  26410. extra: 1536 / 1428,
  26411. bottom: 68.7 / 1603
  26412. }
  26413. },
  26414. back: {
  26415. height: math.unit(28, "feet"),
  26416. weight: math.unit(10500, "lb"),
  26417. name: "Back",
  26418. image: {
  26419. source: "./media/characters/kayda/back.svg",
  26420. extra: 1557 / 1464,
  26421. bottom: 39.5 / 1597.49
  26422. }
  26423. },
  26424. dick: {
  26425. height: math.unit(3.858, "feet"),
  26426. name: "Dick",
  26427. image: {
  26428. source: "./media/characters/kayda/dick.svg"
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Macro",
  26435. height: math.unit(28, "feet"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(10 + 11 / 12, "feet"),
  26445. weight: math.unit(1400, "lb"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/brian/front.svg",
  26449. extra: 737 / 692,
  26450. bottom: 55.4 / 785
  26451. }
  26452. },
  26453. },
  26454. [
  26455. {
  26456. name: "Normal",
  26457. height: math.unit(10 + 11 / 12, "feet"),
  26458. default: true
  26459. },
  26460. ]
  26461. ))
  26462. characterMakers.push(() => makeCharacter(
  26463. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26464. {
  26465. front: {
  26466. height: math.unit(5 + 8 / 12, "feet"),
  26467. weight: math.unit(140, "lb"),
  26468. name: "Front",
  26469. image: {
  26470. source: "./media/characters/khemri/front.svg",
  26471. extra: 4780 / 4059,
  26472. bottom: 80.1 / 4859.25
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Micro",
  26479. height: math.unit(6, "inches")
  26480. },
  26481. {
  26482. name: "Normal",
  26483. height: math.unit(5 + 8 / 12, "feet"),
  26484. default: true
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26490. {
  26491. front: {
  26492. height: math.unit(13, "feet"),
  26493. weight: math.unit(1700, "lb"),
  26494. name: "Front",
  26495. image: {
  26496. source: "./media/characters/felix-braveheart/front.svg",
  26497. extra: 1222 / 1157,
  26498. bottom: 53.2 / 1280
  26499. }
  26500. },
  26501. back: {
  26502. height: math.unit(13, "feet"),
  26503. weight: math.unit(1700, "lb"),
  26504. name: "Back",
  26505. image: {
  26506. source: "./media/characters/felix-braveheart/back.svg",
  26507. extra: 1277 / 1203,
  26508. bottom: 50.2 / 1327
  26509. }
  26510. },
  26511. feral: {
  26512. height: math.unit(6, "feet"),
  26513. weight: math.unit(400, "lb"),
  26514. name: "Feral",
  26515. image: {
  26516. source: "./media/characters/felix-braveheart/feral.svg",
  26517. extra: 682 / 625,
  26518. bottom: 6.9 / 688
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(13, "feet"),
  26526. default: true
  26527. },
  26528. ]
  26529. ))
  26530. characterMakers.push(() => makeCharacter(
  26531. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26532. {
  26533. side: {
  26534. height: math.unit(5 + 11 / 12, "feet"),
  26535. weight: math.unit(1400, "lb"),
  26536. name: "Side",
  26537. image: {
  26538. source: "./media/characters/shadow-blade/side.svg",
  26539. extra: 1726 / 1267,
  26540. bottom: 58.4 / 1785
  26541. }
  26542. },
  26543. },
  26544. [
  26545. {
  26546. name: "Normal",
  26547. height: math.unit(5 + 11 / 12, "feet"),
  26548. default: true
  26549. },
  26550. ]
  26551. ))
  26552. characterMakers.push(() => makeCharacter(
  26553. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26554. {
  26555. front: {
  26556. height: math.unit(1 + 6 / 12, "feet"),
  26557. weight: math.unit(25, "lb"),
  26558. name: "Front",
  26559. image: {
  26560. source: "./media/characters/karla-halldor/front.svg",
  26561. extra: 1459 / 1383,
  26562. bottom: 12 / 1472
  26563. }
  26564. },
  26565. },
  26566. [
  26567. {
  26568. name: "Normal",
  26569. height: math.unit(1 + 6 / 12, "feet"),
  26570. default: true
  26571. },
  26572. ]
  26573. ))
  26574. characterMakers.push(() => makeCharacter(
  26575. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26576. {
  26577. front: {
  26578. height: math.unit(6 + 2 / 12, "feet"),
  26579. weight: math.unit(160, "lb"),
  26580. name: "Front",
  26581. image: {
  26582. source: "./media/characters/ariam/front.svg",
  26583. extra: 1073/976,
  26584. bottom: 52/1125
  26585. }
  26586. },
  26587. back: {
  26588. height: math.unit(6 + 2/12, "feet"),
  26589. weight: math.unit(160, "lb"),
  26590. name: "Back",
  26591. image: {
  26592. source: "./media/characters/ariam/back.svg",
  26593. extra: 1103/1023,
  26594. bottom: 9/1112
  26595. }
  26596. },
  26597. dressed: {
  26598. height: math.unit(6 + 2/12, "feet"),
  26599. weight: math.unit(160, "lb"),
  26600. name: "Dressed",
  26601. image: {
  26602. source: "./media/characters/ariam/dressed.svg",
  26603. extra: 1099/1009,
  26604. bottom: 25/1124
  26605. }
  26606. },
  26607. squatting: {
  26608. height: math.unit(4.1, "feet"),
  26609. weight: math.unit(160, "lb"),
  26610. name: "Squatting",
  26611. image: {
  26612. source: "./media/characters/ariam/squatting.svg",
  26613. extra: 2617 / 2112,
  26614. bottom: 61.2 / 2681,
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(6 + 2 / 12, "feet"),
  26622. default: true
  26623. },
  26624. {
  26625. name: "Normal+",
  26626. height: math.unit(4, "meters")
  26627. },
  26628. {
  26629. name: "Macro",
  26630. height: math.unit(50, "meters")
  26631. },
  26632. {
  26633. name: "Macro+",
  26634. height: math.unit(100, "meters")
  26635. },
  26636. {
  26637. name: "Megamacro",
  26638. height: math.unit(20, "km")
  26639. },
  26640. {
  26641. name: "Caretaker",
  26642. height: math.unit(444, "megameters")
  26643. },
  26644. ]
  26645. ))
  26646. characterMakers.push(() => makeCharacter(
  26647. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26648. {
  26649. front: {
  26650. height: math.unit(1.67, "meters"),
  26651. weight: math.unit(140, "lb"),
  26652. name: "Front",
  26653. image: {
  26654. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26655. extra: 438 / 410,
  26656. bottom: 0.75 / 439
  26657. }
  26658. },
  26659. },
  26660. [
  26661. {
  26662. name: "Shrunken",
  26663. height: math.unit(7.6, "cm")
  26664. },
  26665. {
  26666. name: "Human Scale",
  26667. height: math.unit(1.67, "meters")
  26668. },
  26669. {
  26670. name: "Wolxi Scale",
  26671. height: math.unit(36.7, "meters"),
  26672. default: true
  26673. },
  26674. ]
  26675. ))
  26676. characterMakers.push(() => makeCharacter(
  26677. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26678. {
  26679. front: {
  26680. height: math.unit(1.73, "meters"),
  26681. weight: math.unit(240, "lb"),
  26682. name: "Front",
  26683. image: {
  26684. source: "./media/characters/izue-two-mothers/front.svg",
  26685. extra: 469 / 437,
  26686. bottom: 1.24 / 470.6
  26687. }
  26688. },
  26689. },
  26690. [
  26691. {
  26692. name: "Shrunken",
  26693. height: math.unit(7.86, "cm")
  26694. },
  26695. {
  26696. name: "Human Scale",
  26697. height: math.unit(1.73, "meters")
  26698. },
  26699. {
  26700. name: "Wolxi Scale",
  26701. height: math.unit(38, "meters"),
  26702. default: true
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26708. {
  26709. front: {
  26710. height: math.unit(1.55, "meters"),
  26711. weight: math.unit(120, "lb"),
  26712. name: "Front",
  26713. image: {
  26714. source: "./media/characters/teeku-love-shack/front.svg",
  26715. extra: 387 / 362,
  26716. bottom: 1.51 / 388
  26717. }
  26718. },
  26719. },
  26720. [
  26721. {
  26722. name: "Shrunken",
  26723. height: math.unit(7, "cm")
  26724. },
  26725. {
  26726. name: "Human Scale",
  26727. height: math.unit(1.55, "meters")
  26728. },
  26729. {
  26730. name: "Wolxi Scale",
  26731. height: math.unit(34.1, "meters"),
  26732. default: true
  26733. },
  26734. ]
  26735. ))
  26736. characterMakers.push(() => makeCharacter(
  26737. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26738. {
  26739. front: {
  26740. height: math.unit(1.83, "meters"),
  26741. weight: math.unit(135, "lb"),
  26742. name: "Front",
  26743. image: {
  26744. source: "./media/characters/dejma-the-red/front.svg",
  26745. extra: 480 / 458,
  26746. bottom: 1.8 / 482
  26747. }
  26748. },
  26749. },
  26750. [
  26751. {
  26752. name: "Shrunken",
  26753. height: math.unit(8.3, "cm")
  26754. },
  26755. {
  26756. name: "Human Scale",
  26757. height: math.unit(1.83, "meters")
  26758. },
  26759. {
  26760. name: "Wolxi Scale",
  26761. height: math.unit(40, "meters"),
  26762. default: true
  26763. },
  26764. ]
  26765. ))
  26766. characterMakers.push(() => makeCharacter(
  26767. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26768. {
  26769. front: {
  26770. height: math.unit(1.78, "meters"),
  26771. weight: math.unit(65, "kg"),
  26772. name: "Front",
  26773. image: {
  26774. source: "./media/characters/aki/front.svg",
  26775. extra: 452 / 415
  26776. }
  26777. },
  26778. frontNsfw: {
  26779. height: math.unit(1.78, "meters"),
  26780. weight: math.unit(65, "kg"),
  26781. name: "Front (NSFW)",
  26782. image: {
  26783. source: "./media/characters/aki/front-nsfw.svg",
  26784. extra: 452 / 415
  26785. }
  26786. },
  26787. back: {
  26788. height: math.unit(1.78, "meters"),
  26789. weight: math.unit(65, "kg"),
  26790. name: "Back",
  26791. image: {
  26792. source: "./media/characters/aki/back.svg",
  26793. extra: 452 / 415
  26794. }
  26795. },
  26796. rump: {
  26797. height: math.unit(2.05, "feet"),
  26798. name: "Rump",
  26799. image: {
  26800. source: "./media/characters/aki/rump.svg"
  26801. }
  26802. },
  26803. dick: {
  26804. height: math.unit(0.95, "feet"),
  26805. name: "Dick",
  26806. image: {
  26807. source: "./media/characters/aki/dick.svg"
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Micro",
  26814. height: math.unit(15, "cm")
  26815. },
  26816. {
  26817. name: "Normal",
  26818. height: math.unit(178, "cm"),
  26819. default: true
  26820. },
  26821. {
  26822. name: "Macro",
  26823. height: math.unit(214, "m")
  26824. },
  26825. {
  26826. name: "Macro+",
  26827. height: math.unit(534, "m")
  26828. },
  26829. ]
  26830. ))
  26831. characterMakers.push(() => makeCharacter(
  26832. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26833. {
  26834. front: {
  26835. height: math.unit(5 + 5 / 12, "feet"),
  26836. weight: math.unit(120, "lb"),
  26837. name: "Front",
  26838. image: {
  26839. source: "./media/characters/ari/front.svg",
  26840. extra: 1550/1471,
  26841. bottom: 39/1589
  26842. }
  26843. },
  26844. },
  26845. [
  26846. {
  26847. name: "Normal",
  26848. height: math.unit(5 + 5 / 12, "feet")
  26849. },
  26850. {
  26851. name: "Macro",
  26852. height: math.unit(100, "feet"),
  26853. default: true
  26854. },
  26855. {
  26856. name: "Megamacro",
  26857. height: math.unit(100, "miles")
  26858. },
  26859. {
  26860. name: "Gigamacro",
  26861. height: math.unit(80000, "miles")
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26867. {
  26868. side: {
  26869. height: math.unit(9, "feet"),
  26870. weight: math.unit(400, "kg"),
  26871. name: "Side",
  26872. image: {
  26873. source: "./media/characters/bolt/side.svg",
  26874. extra: 1126 / 896,
  26875. bottom: 60 / 1187.3,
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Micro",
  26882. height: math.unit(5, "inches")
  26883. },
  26884. {
  26885. name: "Normal",
  26886. height: math.unit(9, "feet"),
  26887. default: true
  26888. },
  26889. {
  26890. name: "Macro",
  26891. height: math.unit(700, "feet")
  26892. },
  26893. {
  26894. name: "Max Size",
  26895. height: math.unit(1.52e22, "yottameters")
  26896. },
  26897. ]
  26898. ))
  26899. characterMakers.push(() => makeCharacter(
  26900. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26901. {
  26902. front: {
  26903. height: math.unit(4.3, "meters"),
  26904. weight: math.unit(3, "tons"),
  26905. name: "Front",
  26906. image: {
  26907. source: "./media/characters/draekon-sylviar/front.svg",
  26908. extra: 2072/1512,
  26909. bottom: 74/2146
  26910. }
  26911. },
  26912. back: {
  26913. height: math.unit(4.3, "meters"),
  26914. weight: math.unit(3, "tons"),
  26915. name: "Back",
  26916. image: {
  26917. source: "./media/characters/draekon-sylviar/back.svg",
  26918. extra: 1639/1483,
  26919. bottom: 41/1680
  26920. }
  26921. },
  26922. feral: {
  26923. height: math.unit(1.15, "meters"),
  26924. weight: math.unit(3, "tons"),
  26925. name: "Feral",
  26926. image: {
  26927. source: "./media/characters/draekon-sylviar/feral.svg",
  26928. extra: 1033/395,
  26929. bottom: 130/1163
  26930. }
  26931. },
  26932. maw: {
  26933. height: math.unit(1.3, "meters"),
  26934. name: "Maw",
  26935. image: {
  26936. source: "./media/characters/draekon-sylviar/maw.svg"
  26937. }
  26938. },
  26939. mawSeparated: {
  26940. height: math.unit(1.53, "meters"),
  26941. name: "Separated Maw",
  26942. image: {
  26943. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26944. }
  26945. },
  26946. tail: {
  26947. height: math.unit(1.15, "meters"),
  26948. name: "Tail",
  26949. image: {
  26950. source: "./media/characters/draekon-sylviar/tail.svg"
  26951. }
  26952. },
  26953. tailDick: {
  26954. height: math.unit(1.15, "meters"),
  26955. name: "Tail (Dick)",
  26956. image: {
  26957. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26958. }
  26959. },
  26960. tailDickSeparated: {
  26961. height: math.unit(1.19, "meters"),
  26962. name: "Tail (Separated Dick)",
  26963. image: {
  26964. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26965. }
  26966. },
  26967. slit: {
  26968. height: math.unit(1, "meters"),
  26969. name: "Slit",
  26970. image: {
  26971. source: "./media/characters/draekon-sylviar/slit.svg"
  26972. }
  26973. },
  26974. dick: {
  26975. height: math.unit(1.15, "meters"),
  26976. name: "Dick",
  26977. image: {
  26978. source: "./media/characters/draekon-sylviar/dick.svg"
  26979. }
  26980. },
  26981. dickSeparated: {
  26982. height: math.unit(1.1, "meters"),
  26983. name: "Separated Dick",
  26984. image: {
  26985. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26986. }
  26987. },
  26988. sheath: {
  26989. height: math.unit(1.15, "meters"),
  26990. name: "Sheath",
  26991. image: {
  26992. source: "./media/characters/draekon-sylviar/sheath.svg"
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Small",
  26999. height: math.unit(4.53 / 2, "meters"),
  27000. default: true
  27001. },
  27002. {
  27003. name: "Normal",
  27004. height: math.unit(4.53, "meters"),
  27005. default: true
  27006. },
  27007. {
  27008. name: "Large",
  27009. height: math.unit(4.53 * 2, "meters"),
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27015. {
  27016. front: {
  27017. height: math.unit(6 + 2 / 12, "feet"),
  27018. weight: math.unit(180, "lb"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/brawler/front.svg",
  27022. extra: 3301 / 3027,
  27023. bottom: 138 / 3439
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Normal",
  27030. height: math.unit(6 + 2 / 12, "feet"),
  27031. default: true
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(11, "feet"),
  27040. weight: math.unit(1000, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/alex/front.svg",
  27044. bottom: 44.5 / 620
  27045. }
  27046. },
  27047. },
  27048. [
  27049. {
  27050. name: "Micro",
  27051. height: math.unit(5, "inches")
  27052. },
  27053. {
  27054. name: "Normal",
  27055. height: math.unit(11, "feet"),
  27056. default: true
  27057. },
  27058. {
  27059. name: "Macro",
  27060. height: math.unit(9.5e9, "feet")
  27061. },
  27062. {
  27063. name: "Max Size",
  27064. height: math.unit(1.4e283, "yottameters")
  27065. },
  27066. ]
  27067. ))
  27068. characterMakers.push(() => makeCharacter(
  27069. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27070. {
  27071. female: {
  27072. height: math.unit(29.9, "m"),
  27073. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27074. name: "Female",
  27075. image: {
  27076. source: "./media/characters/zenari/female.svg",
  27077. extra: 3281.6 / 3217,
  27078. bottom: 72.2 / 3353
  27079. }
  27080. },
  27081. male: {
  27082. height: math.unit(27.7, "m"),
  27083. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27084. name: "Male",
  27085. image: {
  27086. source: "./media/characters/zenari/male.svg",
  27087. extra: 3008 / 2991,
  27088. bottom: 54.6 / 3069
  27089. }
  27090. },
  27091. },
  27092. [
  27093. {
  27094. name: "Macro",
  27095. height: math.unit(29.7, "meters"),
  27096. default: true
  27097. },
  27098. ]
  27099. ))
  27100. characterMakers.push(() => makeCharacter(
  27101. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27102. {
  27103. female: {
  27104. height: math.unit(23.8, "m"),
  27105. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27106. name: "Female",
  27107. image: {
  27108. source: "./media/characters/mactarian/female.svg",
  27109. extra: 2662 / 2569,
  27110. bottom: 73 / 2736
  27111. }
  27112. },
  27113. male: {
  27114. height: math.unit(23.8, "m"),
  27115. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27116. name: "Male",
  27117. image: {
  27118. source: "./media/characters/mactarian/male.svg",
  27119. extra: 2673 / 2600,
  27120. bottom: 76 / 2750
  27121. }
  27122. },
  27123. },
  27124. [
  27125. {
  27126. name: "Macro",
  27127. height: math.unit(23.8, "meters"),
  27128. default: true
  27129. },
  27130. ]
  27131. ))
  27132. characterMakers.push(() => makeCharacter(
  27133. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27134. {
  27135. female: {
  27136. height: math.unit(19.3, "m"),
  27137. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27138. name: "Female",
  27139. image: {
  27140. source: "./media/characters/umok/female.svg",
  27141. extra: 2186 / 2078,
  27142. bottom: 87 / 2277
  27143. }
  27144. },
  27145. male: {
  27146. height: math.unit(19.5, "m"),
  27147. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27148. name: "Male",
  27149. image: {
  27150. source: "./media/characters/umok/male.svg",
  27151. extra: 2233 / 2140,
  27152. bottom: 24.4 / 2258
  27153. }
  27154. },
  27155. },
  27156. [
  27157. {
  27158. name: "Macro",
  27159. height: math.unit(19.3, "meters"),
  27160. default: true
  27161. },
  27162. ]
  27163. ))
  27164. characterMakers.push(() => makeCharacter(
  27165. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27166. {
  27167. female: {
  27168. height: math.unit(26.15, "m"),
  27169. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27170. name: "Female",
  27171. image: {
  27172. source: "./media/characters/joraxian/female.svg",
  27173. extra: 2912 / 2824,
  27174. bottom: 36 / 2956
  27175. }
  27176. },
  27177. male: {
  27178. height: math.unit(25.4, "m"),
  27179. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27180. name: "Male",
  27181. image: {
  27182. source: "./media/characters/joraxian/male.svg",
  27183. extra: 2877 / 2721,
  27184. bottom: 82 / 2967
  27185. }
  27186. },
  27187. },
  27188. [
  27189. {
  27190. name: "Macro",
  27191. height: math.unit(26.15, "meters"),
  27192. default: true
  27193. },
  27194. ]
  27195. ))
  27196. characterMakers.push(() => makeCharacter(
  27197. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27198. {
  27199. female: {
  27200. height: math.unit(21.6, "m"),
  27201. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27202. name: "Female",
  27203. image: {
  27204. source: "./media/characters/sthara/female.svg",
  27205. extra: 2516 / 2347,
  27206. bottom: 21.5 / 2537
  27207. }
  27208. },
  27209. male: {
  27210. height: math.unit(24, "m"),
  27211. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27212. name: "Male",
  27213. image: {
  27214. source: "./media/characters/sthara/male.svg",
  27215. extra: 2732 / 2607,
  27216. bottom: 23 / 2732
  27217. }
  27218. },
  27219. },
  27220. [
  27221. {
  27222. name: "Macro",
  27223. height: math.unit(21.6, "meters"),
  27224. default: true
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27230. {
  27231. front: {
  27232. height: math.unit(6 + 4 / 12, "feet"),
  27233. weight: math.unit(175, "lb"),
  27234. name: "Front",
  27235. image: {
  27236. source: "./media/characters/luka-bryzant/front.svg",
  27237. extra: 311 / 289,
  27238. bottom: 4 / 315
  27239. }
  27240. },
  27241. back: {
  27242. height: math.unit(6 + 4 / 12, "feet"),
  27243. weight: math.unit(175, "lb"),
  27244. name: "Back",
  27245. image: {
  27246. source: "./media/characters/luka-bryzant/back.svg",
  27247. extra: 311 / 289,
  27248. bottom: 3.8 / 313.7
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Micro",
  27255. height: math.unit(10, "inches")
  27256. },
  27257. {
  27258. name: "Normal",
  27259. height: math.unit(6 + 4 / 12, "feet"),
  27260. default: true
  27261. },
  27262. {
  27263. name: "Large",
  27264. height: math.unit(12, "feet")
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(5 + 7 / 12, "feet"),
  27273. weight: math.unit(185, "lb"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/aman-aquila/front.svg",
  27277. extra: 1013 / 976,
  27278. bottom: 45.6 / 1057
  27279. }
  27280. },
  27281. side: {
  27282. height: math.unit(5 + 7 / 12, "feet"),
  27283. weight: math.unit(185, "lb"),
  27284. name: "Side",
  27285. image: {
  27286. source: "./media/characters/aman-aquila/side.svg",
  27287. extra: 1054 / 1011,
  27288. bottom: 15 / 1070
  27289. }
  27290. },
  27291. back: {
  27292. height: math.unit(5 + 7 / 12, "feet"),
  27293. weight: math.unit(185, "lb"),
  27294. name: "Back",
  27295. image: {
  27296. source: "./media/characters/aman-aquila/back.svg",
  27297. extra: 1026 / 970,
  27298. bottom: 12 / 1039
  27299. }
  27300. },
  27301. head: {
  27302. height: math.unit(1.211, "feet"),
  27303. name: "Head",
  27304. image: {
  27305. source: "./media/characters/aman-aquila/head.svg",
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Minimicro",
  27312. height: math.unit(0.057, "inches")
  27313. },
  27314. {
  27315. name: "Micro",
  27316. height: math.unit(7, "inches")
  27317. },
  27318. {
  27319. name: "Mini",
  27320. height: math.unit(3 + 7 / 12, "feet")
  27321. },
  27322. {
  27323. name: "Normal",
  27324. height: math.unit(5 + 7 / 12, "feet"),
  27325. default: true
  27326. },
  27327. {
  27328. name: "Macro",
  27329. height: math.unit(157 + 7 / 12, "feet")
  27330. },
  27331. {
  27332. name: "Megamacro",
  27333. height: math.unit(1557 + 7 / 12, "feet")
  27334. },
  27335. {
  27336. name: "Gigamacro",
  27337. height: math.unit(15557 + 7 / 12, "feet")
  27338. },
  27339. ]
  27340. ))
  27341. characterMakers.push(() => makeCharacter(
  27342. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27343. {
  27344. front: {
  27345. height: math.unit(3 + 2 / 12, "inches"),
  27346. weight: math.unit(0.3, "ounces"),
  27347. name: "Front",
  27348. image: {
  27349. source: "./media/characters/hiphae/front.svg",
  27350. extra: 1931 / 1683,
  27351. bottom: 24 / 1955
  27352. }
  27353. },
  27354. },
  27355. [
  27356. {
  27357. name: "Normal",
  27358. height: math.unit(3 + 1 / 2, "inches"),
  27359. default: true
  27360. },
  27361. ]
  27362. ))
  27363. characterMakers.push(() => makeCharacter(
  27364. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27365. {
  27366. front: {
  27367. height: math.unit(5 + 10 / 12, "feet"),
  27368. weight: math.unit(165, "lb"),
  27369. name: "Front",
  27370. image: {
  27371. source: "./media/characters/nicky/front.svg",
  27372. extra: 3144 / 2886,
  27373. bottom: 45.6 / 3192
  27374. }
  27375. },
  27376. back: {
  27377. height: math.unit(5 + 10 / 12, "feet"),
  27378. weight: math.unit(165, "lb"),
  27379. name: "Back",
  27380. image: {
  27381. source: "./media/characters/nicky/back.svg",
  27382. extra: 3055 / 2804,
  27383. bottom: 28.4 / 3087
  27384. }
  27385. },
  27386. frontclothed: {
  27387. height: math.unit(5 + 10 / 12, "feet"),
  27388. weight: math.unit(165, "lb"),
  27389. name: "Front-clothed",
  27390. image: {
  27391. source: "./media/characters/nicky/front-clothed.svg",
  27392. extra: 3184.9 / 2926.9,
  27393. bottom: 86.5 / 3239.9
  27394. }
  27395. },
  27396. foot: {
  27397. height: math.unit(1.16, "feet"),
  27398. name: "Foot",
  27399. image: {
  27400. source: "./media/characters/nicky/foot.svg"
  27401. }
  27402. },
  27403. feet: {
  27404. height: math.unit(1.34, "feet"),
  27405. name: "Feet",
  27406. image: {
  27407. source: "./media/characters/nicky/feet.svg"
  27408. }
  27409. },
  27410. maw: {
  27411. height: math.unit(0.9, "feet"),
  27412. name: "Maw",
  27413. image: {
  27414. source: "./media/characters/nicky/maw.svg"
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(5 + 10 / 12, "feet"),
  27422. default: true
  27423. },
  27424. {
  27425. name: "Macro",
  27426. height: math.unit(60, "feet")
  27427. },
  27428. {
  27429. name: "Megamacro",
  27430. height: math.unit(1, "mile")
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27436. {
  27437. side: {
  27438. height: math.unit(10, "feet"),
  27439. weight: math.unit(600, "lb"),
  27440. name: "Side",
  27441. image: {
  27442. source: "./media/characters/blair/side.svg",
  27443. bottom: 16.6 / 475,
  27444. extra: 458 / 431
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Micro",
  27451. height: math.unit(8, "inches")
  27452. },
  27453. {
  27454. name: "Normal",
  27455. height: math.unit(10, "feet"),
  27456. default: true
  27457. },
  27458. {
  27459. name: "Macro",
  27460. height: math.unit(180, "feet")
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(5 + 4 / 12, "feet"),
  27469. weight: math.unit(125, "lb"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/fisher/front.svg",
  27473. extra: 444 / 390,
  27474. bottom: 2 / 444.8
  27475. }
  27476. },
  27477. },
  27478. [
  27479. {
  27480. name: "Micro",
  27481. height: math.unit(4, "inches")
  27482. },
  27483. {
  27484. name: "Normal",
  27485. height: math.unit(5 + 4 / 12, "feet"),
  27486. default: true
  27487. },
  27488. {
  27489. name: "Macro",
  27490. height: math.unit(100, "feet")
  27491. },
  27492. ]
  27493. ))
  27494. characterMakers.push(() => makeCharacter(
  27495. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27496. {
  27497. front: {
  27498. height: math.unit(6.71, "feet"),
  27499. weight: math.unit(200, "lb"),
  27500. preyCapacity: math.unit(1000000, "people"),
  27501. name: "Front",
  27502. image: {
  27503. source: "./media/characters/gliss/front.svg",
  27504. extra: 2347 / 2231,
  27505. bottom: 113 / 2462
  27506. }
  27507. },
  27508. hammerspaceSize: {
  27509. height: math.unit(6.71 * 717, "feet"),
  27510. weight: math.unit(200, "lb"),
  27511. preyCapacity: math.unit(1000000, "people"),
  27512. name: "Hammerspace Size",
  27513. image: {
  27514. source: "./media/characters/gliss/front.svg",
  27515. extra: 2347 / 2231,
  27516. bottom: 113 / 2462
  27517. }
  27518. },
  27519. },
  27520. [
  27521. {
  27522. name: "Normal",
  27523. height: math.unit(6.71, "feet"),
  27524. default: true
  27525. },
  27526. ]
  27527. ))
  27528. characterMakers.push(() => makeCharacter(
  27529. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27530. {
  27531. side: {
  27532. height: math.unit(1.44, "m"),
  27533. weight: math.unit(80, "kg"),
  27534. name: "Side",
  27535. image: {
  27536. source: "./media/characters/dune-anderson/side.svg",
  27537. bottom: 49 / 1426
  27538. }
  27539. },
  27540. },
  27541. [
  27542. {
  27543. name: "Wolf-sized",
  27544. height: math.unit(1.44, "meters")
  27545. },
  27546. {
  27547. name: "Normal",
  27548. height: math.unit(5.05, "meters"),
  27549. default: true
  27550. },
  27551. {
  27552. name: "Big",
  27553. height: math.unit(14.4, "meters")
  27554. },
  27555. {
  27556. name: "Huge",
  27557. height: math.unit(144, "meters")
  27558. },
  27559. ]
  27560. ))
  27561. characterMakers.push(() => makeCharacter(
  27562. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27563. {
  27564. front: {
  27565. height: math.unit(6, "feet"),
  27566. weight: math.unit(220, "lb"),
  27567. name: "Front",
  27568. image: {
  27569. source: "./media/characters/hind/front.svg",
  27570. extra: 1912/1787,
  27571. bottom: 52/1964
  27572. }
  27573. },
  27574. back: {
  27575. height: math.unit(6, "feet"),
  27576. weight: math.unit(220, "lb"),
  27577. name: "Back",
  27578. image: {
  27579. source: "./media/characters/hind/back.svg",
  27580. extra: 1901/1794,
  27581. bottom: 26/1927
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(6, "feet"),
  27589. default: true
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27595. {
  27596. front: {
  27597. height: math.unit(2.1, "meters"),
  27598. weight: math.unit(150, "lb"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/tharquench-sizestealer/front.svg",
  27602. extra: 1605/1470,
  27603. bottom: 36/1641
  27604. }
  27605. },
  27606. frontAlt: {
  27607. height: math.unit(2.1, "meters"),
  27608. weight: math.unit(150, "lb"),
  27609. name: "Front (Alt)",
  27610. image: {
  27611. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27612. extra: 2318 / 2063,
  27613. bottom: 93.4 / 2410
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Nano",
  27620. height: math.unit(1, "mm")
  27621. },
  27622. {
  27623. name: "Micro",
  27624. height: math.unit(1, "cm")
  27625. },
  27626. {
  27627. name: "Normal",
  27628. height: math.unit(2.1, "meters"),
  27629. default: true
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27635. {
  27636. front: {
  27637. height: math.unit(7 + 5 / 12, "feet"),
  27638. weight: math.unit(357, "lb"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/solex-draconov/front.svg",
  27642. extra: 1993 / 1865,
  27643. bottom: 117 / 2111
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Natural Height",
  27650. height: math.unit(7 + 5 / 12, "feet"),
  27651. default: true
  27652. },
  27653. {
  27654. name: "Macro",
  27655. height: math.unit(350, "feet")
  27656. },
  27657. {
  27658. name: "Macro+",
  27659. height: math.unit(1000, "feet")
  27660. },
  27661. {
  27662. name: "Megamacro",
  27663. height: math.unit(20, "km")
  27664. },
  27665. {
  27666. name: "Megamacro+",
  27667. height: math.unit(1000, "km")
  27668. },
  27669. {
  27670. name: "Gigamacro",
  27671. height: math.unit(2.5, "Gm")
  27672. },
  27673. {
  27674. name: "Teramacro",
  27675. height: math.unit(15, "Tm")
  27676. },
  27677. {
  27678. name: "Galactic",
  27679. height: math.unit(30, "Zm")
  27680. },
  27681. {
  27682. name: "Universal",
  27683. height: math.unit(21000, "Ym")
  27684. },
  27685. {
  27686. name: "Omniversal",
  27687. height: math.unit(9.861e50, "Ym")
  27688. },
  27689. {
  27690. name: "Existential",
  27691. height: math.unit(1e300, "meters")
  27692. },
  27693. ]
  27694. ))
  27695. characterMakers.push(() => makeCharacter(
  27696. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27697. {
  27698. side: {
  27699. height: math.unit(25, "feet"),
  27700. weight: math.unit(90000, "lb"),
  27701. name: "Side",
  27702. image: {
  27703. source: "./media/characters/mandarax/side.svg",
  27704. extra: 614 / 332,
  27705. bottom: 55 / 630
  27706. }
  27707. },
  27708. lounging: {
  27709. height: math.unit(15.4, "feet"),
  27710. weight: math.unit(90000, "lb"),
  27711. name: "Lounging",
  27712. image: {
  27713. source: "./media/characters/mandarax/lounging.svg",
  27714. extra: 817/609,
  27715. bottom: 685/1502
  27716. }
  27717. },
  27718. head: {
  27719. height: math.unit(11.4, "feet"),
  27720. name: "Head",
  27721. image: {
  27722. source: "./media/characters/mandarax/head.svg"
  27723. }
  27724. },
  27725. belly: {
  27726. height: math.unit(33, "feet"),
  27727. name: "Belly",
  27728. preyCapacity: math.unit(500, "people"),
  27729. image: {
  27730. source: "./media/characters/mandarax/belly.svg"
  27731. }
  27732. },
  27733. dick: {
  27734. height: math.unit(8.46, "feet"),
  27735. name: "Dick",
  27736. image: {
  27737. source: "./media/characters/mandarax/dick.svg"
  27738. }
  27739. },
  27740. top: {
  27741. height: math.unit(28, "meters"),
  27742. name: "Top",
  27743. image: {
  27744. source: "./media/characters/mandarax/top.svg"
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(25, "feet"),
  27752. default: true
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27758. {
  27759. front: {
  27760. height: math.unit(5, "feet"),
  27761. weight: math.unit(90, "lb"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/pixil/front.svg",
  27765. extra: 2000 / 1618,
  27766. bottom: 12.3 / 2011
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Normal",
  27773. height: math.unit(5, "feet"),
  27774. default: true
  27775. },
  27776. {
  27777. name: "Megamacro",
  27778. height: math.unit(10, "miles"),
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27784. {
  27785. front: {
  27786. height: math.unit(7 + 2 / 12, "feet"),
  27787. weight: math.unit(200, "lb"),
  27788. name: "Front",
  27789. image: {
  27790. source: "./media/characters/angel/front.svg",
  27791. extra: 1946/1840,
  27792. bottom: 30/1976
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(7 + 2 / 12, "feet"),
  27800. default: true
  27801. },
  27802. {
  27803. name: "Macro",
  27804. height: math.unit(1000, "feet")
  27805. },
  27806. {
  27807. name: "Megamacro",
  27808. height: math.unit(2, "miles")
  27809. },
  27810. {
  27811. name: "Gigamacro",
  27812. height: math.unit(20, "earths")
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27818. {
  27819. front: {
  27820. height: math.unit(5, "feet"),
  27821. weight: math.unit(180, "lb"),
  27822. name: "Front",
  27823. image: {
  27824. source: "./media/characters/mekana/front.svg",
  27825. extra: 1671 / 1605,
  27826. bottom: 3.5 / 1691
  27827. }
  27828. },
  27829. side: {
  27830. height: math.unit(5, "feet"),
  27831. weight: math.unit(180, "lb"),
  27832. name: "Side",
  27833. image: {
  27834. source: "./media/characters/mekana/side.svg",
  27835. extra: 1671 / 1605,
  27836. bottom: 3.5 / 1691
  27837. }
  27838. },
  27839. back: {
  27840. height: math.unit(5, "feet"),
  27841. weight: math.unit(180, "lb"),
  27842. name: "Back",
  27843. image: {
  27844. source: "./media/characters/mekana/back.svg",
  27845. extra: 1671 / 1605,
  27846. bottom: 3.5 / 1691
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(5, "feet"),
  27854. default: true
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(4 + 6 / 12, "feet"),
  27863. weight: math.unit(80, "lb"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/pixie/front.svg",
  27867. extra: 1924 / 1825,
  27868. bottom: 22.4 / 1946
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Normal",
  27875. height: math.unit(4 + 6 / 12, "feet"),
  27876. default: true
  27877. },
  27878. {
  27879. name: "Macro",
  27880. height: math.unit(40, "feet")
  27881. },
  27882. ]
  27883. ))
  27884. characterMakers.push(() => makeCharacter(
  27885. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27886. {
  27887. front: {
  27888. height: math.unit(2.1, "meters"),
  27889. weight: math.unit(200, "lb"),
  27890. name: "Front",
  27891. image: {
  27892. source: "./media/characters/the-lascivious/front.svg",
  27893. extra: 1 / 0.893,
  27894. bottom: 3.5 / 573.7
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Human Scale",
  27901. height: math.unit(2.1, "meters")
  27902. },
  27903. {
  27904. name: "Wolxi Scale",
  27905. height: math.unit(46.2, "m"),
  27906. default: true
  27907. },
  27908. {
  27909. name: "Boinker of Buildings",
  27910. height: math.unit(10, "km")
  27911. },
  27912. {
  27913. name: "Shagger of Skyscrapers",
  27914. height: math.unit(40, "km")
  27915. },
  27916. {
  27917. name: "Banger of Boroughs",
  27918. height: math.unit(4000, "km")
  27919. },
  27920. {
  27921. name: "Screwer of States",
  27922. height: math.unit(100000, "km")
  27923. },
  27924. {
  27925. name: "Pounder of Planets",
  27926. height: math.unit(2000000, "km")
  27927. },
  27928. ]
  27929. ))
  27930. characterMakers.push(() => makeCharacter(
  27931. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27932. {
  27933. front: {
  27934. height: math.unit(6, "feet"),
  27935. weight: math.unit(150, "lb"),
  27936. name: "Front",
  27937. image: {
  27938. source: "./media/characters/aj/front.svg",
  27939. extra: 2039 / 1562,
  27940. bottom: 40 / 2079
  27941. }
  27942. },
  27943. },
  27944. [
  27945. {
  27946. name: "Normal",
  27947. height: math.unit(11 + 6 / 12, "feet"),
  27948. default: true
  27949. },
  27950. {
  27951. name: "Megamacro",
  27952. height: math.unit(60, "megameters")
  27953. },
  27954. ]
  27955. ))
  27956. characterMakers.push(() => makeCharacter(
  27957. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27958. {
  27959. side: {
  27960. height: math.unit(31 + 8 / 12, "feet"),
  27961. weight: math.unit(75000, "kg"),
  27962. name: "Side",
  27963. image: {
  27964. source: "./media/characters/koros/side.svg",
  27965. extra: 1442 / 1297,
  27966. bottom: 122.7 / 1562
  27967. }
  27968. },
  27969. dicksKingsCrown: {
  27970. height: math.unit(6, "feet"),
  27971. name: "Dicks (King's Crown)",
  27972. image: {
  27973. source: "./media/characters/koros/dicks-kings-crown.svg"
  27974. }
  27975. },
  27976. dicksTailSet: {
  27977. height: math.unit(3, "feet"),
  27978. name: "Dicks (Tail Set)",
  27979. image: {
  27980. source: "./media/characters/koros/dicks-tail-set.svg"
  27981. }
  27982. },
  27983. dickCumming: {
  27984. height: math.unit(7.98, "feet"),
  27985. name: "Dick (Cumming)",
  27986. image: {
  27987. source: "./media/characters/koros/dick-cumming.svg"
  27988. }
  27989. },
  27990. dicksBack: {
  27991. height: math.unit(5.9, "feet"),
  27992. name: "Dicks (Back)",
  27993. image: {
  27994. source: "./media/characters/koros/dicks-back.svg"
  27995. }
  27996. },
  27997. dicksFront: {
  27998. height: math.unit(3.72, "feet"),
  27999. name: "Dicks (Front)",
  28000. image: {
  28001. source: "./media/characters/koros/dicks-front.svg"
  28002. }
  28003. },
  28004. dicksPeeking: {
  28005. height: math.unit(3.0, "feet"),
  28006. name: "Dicks (Peeking)",
  28007. image: {
  28008. source: "./media/characters/koros/dicks-peeking.svg"
  28009. }
  28010. },
  28011. eye: {
  28012. height: math.unit(1.7, "feet"),
  28013. name: "Eye",
  28014. image: {
  28015. source: "./media/characters/koros/eye.svg"
  28016. }
  28017. },
  28018. headFront: {
  28019. height: math.unit(11.69, "feet"),
  28020. name: "Head (Front)",
  28021. image: {
  28022. source: "./media/characters/koros/head-front.svg"
  28023. }
  28024. },
  28025. headSide: {
  28026. height: math.unit(14, "feet"),
  28027. name: "Head (Side)",
  28028. image: {
  28029. source: "./media/characters/koros/head-side.svg"
  28030. }
  28031. },
  28032. leg: {
  28033. height: math.unit(17, "feet"),
  28034. name: "Leg",
  28035. image: {
  28036. source: "./media/characters/koros/leg.svg"
  28037. }
  28038. },
  28039. mawSide: {
  28040. height: math.unit(12.8, "feet"),
  28041. name: "Maw (Side)",
  28042. image: {
  28043. source: "./media/characters/koros/maw-side.svg"
  28044. }
  28045. },
  28046. mawSpitting: {
  28047. height: math.unit(17, "feet"),
  28048. name: "Maw (Spitting)",
  28049. image: {
  28050. source: "./media/characters/koros/maw-spitting.svg"
  28051. }
  28052. },
  28053. slit: {
  28054. height: math.unit(2.8, "feet"),
  28055. name: "Slit",
  28056. image: {
  28057. source: "./media/characters/koros/slit.svg"
  28058. }
  28059. },
  28060. stomach: {
  28061. height: math.unit(6.8, "feet"),
  28062. preyCapacity: math.unit(20, "people"),
  28063. name: "Stomach",
  28064. image: {
  28065. source: "./media/characters/koros/stomach.svg"
  28066. }
  28067. },
  28068. wingspanBottom: {
  28069. height: math.unit(114, "feet"),
  28070. name: "Wingspan (Bottom)",
  28071. image: {
  28072. source: "./media/characters/koros/wingspan-bottom.svg"
  28073. }
  28074. },
  28075. wingspanTop: {
  28076. height: math.unit(104, "feet"),
  28077. name: "Wingspan (Top)",
  28078. image: {
  28079. source: "./media/characters/koros/wingspan-top.svg"
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(31 + 8 / 12, "feet"),
  28087. default: true
  28088. },
  28089. ]
  28090. ))
  28091. characterMakers.push(() => makeCharacter(
  28092. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28093. {
  28094. front: {
  28095. height: math.unit(18 + 5 / 12, "feet"),
  28096. weight: math.unit(3750, "kg"),
  28097. name: "Front",
  28098. image: {
  28099. source: "./media/characters/vexx/front.svg",
  28100. extra: 426 / 396,
  28101. bottom: 31.5 / 458
  28102. }
  28103. },
  28104. maw: {
  28105. height: math.unit(6, "feet"),
  28106. name: "Maw",
  28107. image: {
  28108. source: "./media/characters/vexx/maw.svg"
  28109. }
  28110. },
  28111. },
  28112. [
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(18 + 5 / 12, "feet"),
  28116. default: true
  28117. },
  28118. ]
  28119. ))
  28120. characterMakers.push(() => makeCharacter(
  28121. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28122. {
  28123. front: {
  28124. height: math.unit(17 + 6 / 12, "feet"),
  28125. weight: math.unit(150, "lb"),
  28126. name: "Front",
  28127. image: {
  28128. source: "./media/characters/baadra/front.svg",
  28129. extra: 1694/1553,
  28130. bottom: 179/1873
  28131. }
  28132. },
  28133. frontAlt: {
  28134. height: math.unit(17 + 6 / 12, "feet"),
  28135. weight: math.unit(150, "lb"),
  28136. name: "Front (Alt)",
  28137. image: {
  28138. source: "./media/characters/baadra/front-alt.svg",
  28139. extra: 3137 / 2890,
  28140. bottom: 168.4 / 3305
  28141. }
  28142. },
  28143. back: {
  28144. height: math.unit(17 + 6 / 12, "feet"),
  28145. weight: math.unit(150, "lb"),
  28146. name: "Back",
  28147. image: {
  28148. source: "./media/characters/baadra/back.svg",
  28149. extra: 3142 / 2890,
  28150. bottom: 220 / 3371
  28151. }
  28152. },
  28153. head: {
  28154. height: math.unit(5.45, "feet"),
  28155. name: "Head",
  28156. image: {
  28157. source: "./media/characters/baadra/head.svg"
  28158. }
  28159. },
  28160. headAngry: {
  28161. height: math.unit(4.95, "feet"),
  28162. name: "Head (Angry)",
  28163. image: {
  28164. source: "./media/characters/baadra/head-angry.svg"
  28165. }
  28166. },
  28167. headOpen: {
  28168. height: math.unit(6, "feet"),
  28169. name: "Head (Open)",
  28170. image: {
  28171. source: "./media/characters/baadra/head-open.svg"
  28172. }
  28173. },
  28174. },
  28175. [
  28176. {
  28177. name: "Normal",
  28178. height: math.unit(17 + 6 / 12, "feet"),
  28179. default: true
  28180. },
  28181. ]
  28182. ))
  28183. characterMakers.push(() => makeCharacter(
  28184. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28185. {
  28186. front: {
  28187. height: math.unit(7 + 3 / 12, "feet"),
  28188. weight: math.unit(180, "lb"),
  28189. name: "Front",
  28190. image: {
  28191. source: "./media/characters/juri/front.svg",
  28192. extra: 1401 / 1237,
  28193. bottom: 18.5 / 1418
  28194. }
  28195. },
  28196. side: {
  28197. height: math.unit(7 + 3 / 12, "feet"),
  28198. weight: math.unit(180, "lb"),
  28199. name: "Side",
  28200. image: {
  28201. source: "./media/characters/juri/side.svg",
  28202. extra: 1424 / 1242,
  28203. bottom: 18.5 / 1447
  28204. }
  28205. },
  28206. sitting: {
  28207. height: math.unit(6, "feet"),
  28208. weight: math.unit(180, "lb"),
  28209. name: "Sitting",
  28210. image: {
  28211. source: "./media/characters/juri/sitting.svg",
  28212. extra: 1270 / 1143,
  28213. bottom: 100 / 1343
  28214. }
  28215. },
  28216. back: {
  28217. height: math.unit(7 + 3 / 12, "feet"),
  28218. weight: math.unit(180, "lb"),
  28219. name: "Back",
  28220. image: {
  28221. source: "./media/characters/juri/back.svg",
  28222. extra: 1377 / 1240,
  28223. bottom: 23.7 / 1405
  28224. }
  28225. },
  28226. maw: {
  28227. height: math.unit(2.8, "feet"),
  28228. name: "Maw",
  28229. image: {
  28230. source: "./media/characters/juri/maw.svg"
  28231. }
  28232. },
  28233. stomach: {
  28234. height: math.unit(0.89, "feet"),
  28235. preyCapacity: math.unit(4, "liters"),
  28236. name: "Stomach",
  28237. image: {
  28238. source: "./media/characters/juri/stomach.svg"
  28239. }
  28240. },
  28241. },
  28242. [
  28243. {
  28244. name: "Normal",
  28245. height: math.unit(7 + 3 / 12, "feet"),
  28246. default: true
  28247. },
  28248. ]
  28249. ))
  28250. characterMakers.push(() => makeCharacter(
  28251. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28252. {
  28253. fox: {
  28254. height: math.unit(5 + 6 / 12, "feet"),
  28255. weight: math.unit(140, "lb"),
  28256. name: "Fox",
  28257. image: {
  28258. source: "./media/characters/maxene-sita/fox.svg",
  28259. extra: 146 / 138,
  28260. bottom: 2.1 / 148.19
  28261. }
  28262. },
  28263. foxLaying: {
  28264. height: math.unit(1.70, "feet"),
  28265. weight: math.unit(140, "lb"),
  28266. name: "Fox (Laying)",
  28267. image: {
  28268. source: "./media/characters/maxene-sita/fox-laying.svg",
  28269. extra: 910 / 572,
  28270. bottom: 71 / 981
  28271. }
  28272. },
  28273. kitsune: {
  28274. height: math.unit(10, "feet"),
  28275. weight: math.unit(800, "lb"),
  28276. name: "Kitsune",
  28277. image: {
  28278. source: "./media/characters/maxene-sita/kitsune.svg",
  28279. extra: 185 / 176,
  28280. bottom: 4.7 / 189.9
  28281. }
  28282. },
  28283. hellhound: {
  28284. height: math.unit(10, "feet"),
  28285. weight: math.unit(700, "lb"),
  28286. name: "Hellhound",
  28287. image: {
  28288. source: "./media/characters/maxene-sita/hellhound.svg",
  28289. extra: 1600 / 1545,
  28290. bottom: 81 / 1681
  28291. }
  28292. },
  28293. },
  28294. [
  28295. {
  28296. name: "Normal",
  28297. height: math.unit(5 + 6 / 12, "feet"),
  28298. default: true
  28299. },
  28300. ]
  28301. ))
  28302. characterMakers.push(() => makeCharacter(
  28303. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28304. {
  28305. front: {
  28306. height: math.unit(3 + 4 / 12, "feet"),
  28307. weight: math.unit(70, "lb"),
  28308. name: "Front",
  28309. image: {
  28310. source: "./media/characters/maia/front.svg",
  28311. extra: 227 / 219.5,
  28312. bottom: 40 / 267
  28313. }
  28314. },
  28315. back: {
  28316. height: math.unit(3 + 4 / 12, "feet"),
  28317. weight: math.unit(70, "lb"),
  28318. name: "Back",
  28319. image: {
  28320. source: "./media/characters/maia/back.svg",
  28321. extra: 237 / 225
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Normal",
  28328. height: math.unit(3 + 4 / 12, "feet"),
  28329. default: true
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28335. {
  28336. front: {
  28337. height: math.unit(5 + 10 / 12, "feet"),
  28338. weight: math.unit(197, "lb"),
  28339. name: "Front",
  28340. image: {
  28341. source: "./media/characters/jabaro/front.svg",
  28342. extra: 225 / 216,
  28343. bottom: 5.06 / 230
  28344. }
  28345. },
  28346. back: {
  28347. height: math.unit(5 + 10 / 12, "feet"),
  28348. weight: math.unit(197, "lb"),
  28349. name: "Back",
  28350. image: {
  28351. source: "./media/characters/jabaro/back.svg",
  28352. extra: 225 / 219,
  28353. bottom: 1.9 / 227
  28354. }
  28355. },
  28356. },
  28357. [
  28358. {
  28359. name: "Normal",
  28360. height: math.unit(5 + 10 / 12, "feet"),
  28361. default: true
  28362. },
  28363. ]
  28364. ))
  28365. characterMakers.push(() => makeCharacter(
  28366. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28367. {
  28368. front: {
  28369. height: math.unit(5 + 8 / 12, "feet"),
  28370. weight: math.unit(139, "lb"),
  28371. name: "Front",
  28372. image: {
  28373. source: "./media/characters/risa/front.svg",
  28374. extra: 270 / 260,
  28375. bottom: 11.2 / 282
  28376. }
  28377. },
  28378. back: {
  28379. height: math.unit(5 + 8 / 12, "feet"),
  28380. weight: math.unit(139, "lb"),
  28381. name: "Back",
  28382. image: {
  28383. source: "./media/characters/risa/back.svg",
  28384. extra: 264 / 255,
  28385. bottom: 4 / 268
  28386. }
  28387. },
  28388. },
  28389. [
  28390. {
  28391. name: "Normal",
  28392. height: math.unit(5 + 8 / 12, "feet"),
  28393. default: true
  28394. },
  28395. ]
  28396. ))
  28397. characterMakers.push(() => makeCharacter(
  28398. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28399. {
  28400. front: {
  28401. height: math.unit(2 + 11 / 12, "feet"),
  28402. weight: math.unit(30, "lb"),
  28403. name: "Front",
  28404. image: {
  28405. source: "./media/characters/weatley/front.svg",
  28406. bottom: 10.7 / 414,
  28407. extra: 403.5 / 362
  28408. }
  28409. },
  28410. back: {
  28411. height: math.unit(2 + 11 / 12, "feet"),
  28412. weight: math.unit(30, "lb"),
  28413. name: "Back",
  28414. image: {
  28415. source: "./media/characters/weatley/back.svg",
  28416. bottom: 10.7 / 414,
  28417. extra: 403.5 / 362
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Normal",
  28424. height: math.unit(2 + 11 / 12, "feet"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(5 + 2 / 12, "feet"),
  28434. weight: math.unit(50, "kg"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/mercury-crescent/front.svg",
  28438. extra: 1088 / 1033,
  28439. bottom: 18.9 / 1109
  28440. }
  28441. },
  28442. },
  28443. [
  28444. {
  28445. name: "Normal",
  28446. height: math.unit(5 + 2 / 12, "feet"),
  28447. default: true
  28448. },
  28449. ]
  28450. ))
  28451. characterMakers.push(() => makeCharacter(
  28452. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28453. {
  28454. front: {
  28455. height: math.unit(2, "feet"),
  28456. weight: math.unit(15, "kg"),
  28457. name: "Front",
  28458. image: {
  28459. source: "./media/characters/diamond-jones/front.svg",
  28460. extra: 727/723,
  28461. bottom: 46/773
  28462. }
  28463. },
  28464. },
  28465. [
  28466. {
  28467. name: "Normal",
  28468. height: math.unit(2, "feet"),
  28469. default: true
  28470. },
  28471. ]
  28472. ))
  28473. characterMakers.push(() => makeCharacter(
  28474. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28475. {
  28476. front: {
  28477. height: math.unit(3, "feet"),
  28478. weight: math.unit(30, "kg"),
  28479. name: "Front",
  28480. image: {
  28481. source: "./media/characters/sweet-bit/front.svg",
  28482. extra: 675 / 567,
  28483. bottom: 27.7 / 703
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Normal",
  28490. height: math.unit(3, "feet"),
  28491. default: true
  28492. },
  28493. ]
  28494. ))
  28495. characterMakers.push(() => makeCharacter(
  28496. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28497. {
  28498. side: {
  28499. height: math.unit(9.178, "feet"),
  28500. weight: math.unit(500, "lb"),
  28501. name: "Side",
  28502. image: {
  28503. source: "./media/characters/umbrazen/side.svg",
  28504. extra: 1730 / 1473,
  28505. bottom: 34.6 / 1765
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(9.178, "feet"),
  28513. default: true
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28519. {
  28520. front: {
  28521. height: math.unit(10, "feet"),
  28522. weight: math.unit(750, "lb"),
  28523. name: "Front",
  28524. image: {
  28525. source: "./media/characters/arlist/front.svg",
  28526. extra: 961 / 778,
  28527. bottom: 6.2 / 986
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Normal",
  28534. height: math.unit(10, "feet"),
  28535. default: true
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(5 + 1 / 12, "feet"),
  28544. weight: math.unit(110, "lb"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/aradel/front.svg",
  28548. extra: 324 / 303,
  28549. bottom: 3.6 / 329.4
  28550. }
  28551. },
  28552. },
  28553. [
  28554. {
  28555. name: "Normal",
  28556. height: math.unit(5 + 1 / 12, "feet"),
  28557. default: true
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28563. {
  28564. dressed: {
  28565. height: math.unit(3 + 8 / 12, "feet"),
  28566. weight: math.unit(50, "lb"),
  28567. name: "Dressed",
  28568. image: {
  28569. source: "./media/characters/serryn/dressed.svg",
  28570. extra: 1792 / 1656,
  28571. bottom: 43.5 / 1840
  28572. }
  28573. },
  28574. nude: {
  28575. height: math.unit(3 + 8 / 12, "feet"),
  28576. weight: math.unit(50, "lb"),
  28577. name: "Nude",
  28578. image: {
  28579. source: "./media/characters/serryn/nude.svg",
  28580. extra: 1792 / 1656,
  28581. bottom: 43.5 / 1840
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Normal",
  28588. height: math.unit(3 + 8 / 12, "feet"),
  28589. default: true
  28590. },
  28591. ]
  28592. ))
  28593. characterMakers.push(() => makeCharacter(
  28594. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28595. {
  28596. front: {
  28597. height: math.unit(7 + 10 / 12, "feet"),
  28598. weight: math.unit(255, "lb"),
  28599. name: "Front",
  28600. image: {
  28601. source: "./media/characters/xavier-thyme/front.svg",
  28602. extra: 3733 / 3642,
  28603. bottom: 131 / 3869
  28604. }
  28605. },
  28606. frontRaven: {
  28607. height: math.unit(7 + 10 / 12, "feet"),
  28608. weight: math.unit(255, "lb"),
  28609. name: "Front (Raven)",
  28610. image: {
  28611. source: "./media/characters/xavier-thyme/front-raven.svg",
  28612. extra: 4385 / 3642,
  28613. bottom: 131 / 4517
  28614. }
  28615. },
  28616. },
  28617. [
  28618. {
  28619. name: "Normal",
  28620. height: math.unit(7 + 10 / 12, "feet"),
  28621. default: true
  28622. },
  28623. ]
  28624. ))
  28625. characterMakers.push(() => makeCharacter(
  28626. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28627. {
  28628. front: {
  28629. height: math.unit(1.6, "m"),
  28630. weight: math.unit(50, "kg"),
  28631. name: "Front",
  28632. image: {
  28633. source: "./media/characters/kiki/front.svg",
  28634. extra: 4682 / 3610,
  28635. bottom: 115 / 4777
  28636. }
  28637. },
  28638. },
  28639. [
  28640. {
  28641. name: "Normal",
  28642. height: math.unit(1.6, "meters"),
  28643. default: true
  28644. },
  28645. ]
  28646. ))
  28647. characterMakers.push(() => makeCharacter(
  28648. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28649. {
  28650. front: {
  28651. height: math.unit(50, "m"),
  28652. weight: math.unit(500, "tonnes"),
  28653. name: "Front",
  28654. image: {
  28655. source: "./media/characters/ryoko/front.svg",
  28656. extra: 4632 / 3926,
  28657. bottom: 193 / 4823
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Normal",
  28664. height: math.unit(50, "meters"),
  28665. default: true
  28666. },
  28667. ]
  28668. ))
  28669. characterMakers.push(() => makeCharacter(
  28670. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28671. {
  28672. front: {
  28673. height: math.unit(30, "m"),
  28674. weight: math.unit(22, "tonnes"),
  28675. name: "Front",
  28676. image: {
  28677. source: "./media/characters/elio/front.svg",
  28678. extra: 4582 / 3720,
  28679. bottom: 236 / 4828
  28680. }
  28681. },
  28682. },
  28683. [
  28684. {
  28685. name: "Normal",
  28686. height: math.unit(30, "meters"),
  28687. default: true
  28688. },
  28689. ]
  28690. ))
  28691. characterMakers.push(() => makeCharacter(
  28692. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28693. {
  28694. front: {
  28695. height: math.unit(6 + 3 / 12, "feet"),
  28696. weight: math.unit(120, "lb"),
  28697. name: "Front",
  28698. image: {
  28699. source: "./media/characters/azura/front.svg",
  28700. extra: 1149 / 1135,
  28701. bottom: 45 / 1194
  28702. }
  28703. },
  28704. frontClothed: {
  28705. height: math.unit(6 + 3 / 12, "feet"),
  28706. weight: math.unit(120, "lb"),
  28707. name: "Front (Clothed)",
  28708. image: {
  28709. source: "./media/characters/azura/front-clothed.svg",
  28710. extra: 1149 / 1135,
  28711. bottom: 45 / 1194
  28712. }
  28713. },
  28714. },
  28715. [
  28716. {
  28717. name: "Normal",
  28718. height: math.unit(6 + 3 / 12, "feet"),
  28719. default: true
  28720. },
  28721. {
  28722. name: "Macro",
  28723. height: math.unit(20 + 6 / 12, "feet")
  28724. },
  28725. {
  28726. name: "Megamacro",
  28727. height: math.unit(12, "miles")
  28728. },
  28729. {
  28730. name: "Gigamacro",
  28731. height: math.unit(10000, "miles")
  28732. },
  28733. {
  28734. name: "Teramacro",
  28735. height: math.unit(900000, "miles")
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28741. {
  28742. front: {
  28743. height: math.unit(12, "feet"),
  28744. weight: math.unit(1, "ton"),
  28745. capacity: math.unit(660000, "gallons"),
  28746. name: "Front",
  28747. image: {
  28748. source: "./media/characters/zeus/front.svg",
  28749. extra: 5005 / 4717,
  28750. bottom: 363 / 5388
  28751. }
  28752. },
  28753. },
  28754. [
  28755. {
  28756. name: "Normal",
  28757. height: math.unit(12, "feet")
  28758. },
  28759. {
  28760. name: "Preferred Size",
  28761. height: math.unit(0.5, "miles"),
  28762. default: true
  28763. },
  28764. {
  28765. name: "Giga Horse",
  28766. height: math.unit(300, "miles")
  28767. },
  28768. {
  28769. name: "Riding Planets",
  28770. height: math.unit(30, "megameters")
  28771. },
  28772. {
  28773. name: "Cosmic Giant",
  28774. height: math.unit(3, "zettameters")
  28775. },
  28776. {
  28777. name: "Breeding God",
  28778. height: math.unit(9.92e22, "yottameters")
  28779. },
  28780. ]
  28781. ))
  28782. characterMakers.push(() => makeCharacter(
  28783. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28784. {
  28785. side: {
  28786. height: math.unit(9, "feet"),
  28787. weight: math.unit(1500, "kg"),
  28788. name: "Side",
  28789. image: {
  28790. source: "./media/characters/fang/side.svg",
  28791. extra: 924 / 866,
  28792. bottom: 47.5 / 972.3
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Normal",
  28799. height: math.unit(9, "feet"),
  28800. default: true
  28801. },
  28802. {
  28803. name: "Macro",
  28804. height: math.unit(75 + 6 / 12, "feet")
  28805. },
  28806. {
  28807. name: "Teramacro",
  28808. height: math.unit(50000, "miles")
  28809. },
  28810. ]
  28811. ))
  28812. characterMakers.push(() => makeCharacter(
  28813. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28814. {
  28815. front: {
  28816. height: math.unit(10, "feet"),
  28817. weight: math.unit(2, "tons"),
  28818. name: "Front",
  28819. image: {
  28820. source: "./media/characters/rekhit/front.svg",
  28821. extra: 2796 / 2590,
  28822. bottom: 225 / 3022
  28823. }
  28824. },
  28825. },
  28826. [
  28827. {
  28828. name: "Normal",
  28829. height: math.unit(10, "feet"),
  28830. default: true
  28831. },
  28832. {
  28833. name: "Macro",
  28834. height: math.unit(500, "feet")
  28835. },
  28836. ]
  28837. ))
  28838. characterMakers.push(() => makeCharacter(
  28839. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28840. {
  28841. front: {
  28842. height: math.unit(7 + 6.451 / 12, "feet"),
  28843. weight: math.unit(310, "lb"),
  28844. name: "Front",
  28845. image: {
  28846. source: "./media/characters/dahlia-verrick/front.svg",
  28847. extra: 1488 / 1365,
  28848. bottom: 6.2 / 1495
  28849. }
  28850. },
  28851. back: {
  28852. height: math.unit(7 + 6.451 / 12, "feet"),
  28853. weight: math.unit(310, "lb"),
  28854. name: "Back",
  28855. image: {
  28856. source: "./media/characters/dahlia-verrick/back.svg",
  28857. extra: 1472 / 1351,
  28858. bottom: 5.28 / 1477
  28859. }
  28860. },
  28861. frontBusiness: {
  28862. height: math.unit(7 + 6.451 / 12, "feet"),
  28863. weight: math.unit(200, "lb"),
  28864. name: "Front (Business)",
  28865. image: {
  28866. source: "./media/characters/dahlia-verrick/front-business.svg",
  28867. extra: 1478 / 1381,
  28868. bottom: 5.5 / 1484
  28869. }
  28870. },
  28871. frontCasual: {
  28872. height: math.unit(7 + 6.451 / 12, "feet"),
  28873. weight: math.unit(200, "lb"),
  28874. name: "Front (Casual)",
  28875. image: {
  28876. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28877. extra: 1478 / 1381,
  28878. bottom: 5.5 / 1484
  28879. }
  28880. },
  28881. },
  28882. [
  28883. {
  28884. name: "Travel-Sized",
  28885. height: math.unit(7.45, "inches")
  28886. },
  28887. {
  28888. name: "Normal",
  28889. height: math.unit(7 + 6.451 / 12, "feet"),
  28890. default: true
  28891. },
  28892. {
  28893. name: "Hitting the Town",
  28894. height: math.unit(37 + 8 / 12, "feet")
  28895. },
  28896. {
  28897. name: "Stomp in the Suburbs",
  28898. height: math.unit(964 + 9.728 / 12, "feet")
  28899. },
  28900. {
  28901. name: "Sit on the City",
  28902. height: math.unit(61747 + 10.592 / 12, "feet")
  28903. },
  28904. {
  28905. name: "Glomp the Globe",
  28906. height: math.unit(252919327 + 4.832 / 12, "feet")
  28907. },
  28908. ]
  28909. ))
  28910. characterMakers.push(() => makeCharacter(
  28911. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28912. {
  28913. front: {
  28914. height: math.unit(6 + 4 / 12, "feet"),
  28915. weight: math.unit(320, "lb"),
  28916. name: "Front",
  28917. image: {
  28918. source: "./media/characters/balina-mahigan/front.svg",
  28919. extra: 447 / 428,
  28920. bottom: 18 / 466
  28921. }
  28922. },
  28923. back: {
  28924. height: math.unit(6 + 4 / 12, "feet"),
  28925. weight: math.unit(320, "lb"),
  28926. name: "Back",
  28927. image: {
  28928. source: "./media/characters/balina-mahigan/back.svg",
  28929. extra: 445 / 428,
  28930. bottom: 4.07 / 448
  28931. }
  28932. },
  28933. arm: {
  28934. height: math.unit(1.88, "feet"),
  28935. name: "Arm",
  28936. image: {
  28937. source: "./media/characters/balina-mahigan/arm.svg"
  28938. }
  28939. },
  28940. backPort: {
  28941. height: math.unit(0.685, "feet"),
  28942. name: "Back Port",
  28943. image: {
  28944. source: "./media/characters/balina-mahigan/back-port.svg"
  28945. }
  28946. },
  28947. hoofpaw: {
  28948. height: math.unit(1.41, "feet"),
  28949. name: "Hoofpaw",
  28950. image: {
  28951. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28952. }
  28953. },
  28954. leftHandBack: {
  28955. height: math.unit(0.938, "feet"),
  28956. name: "Left Hand (Back)",
  28957. image: {
  28958. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28959. }
  28960. },
  28961. leftHandFront: {
  28962. height: math.unit(0.938, "feet"),
  28963. name: "Left Hand (Front)",
  28964. image: {
  28965. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28966. }
  28967. },
  28968. rightHandBack: {
  28969. height: math.unit(0.95, "feet"),
  28970. name: "Right Hand (Back)",
  28971. image: {
  28972. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28973. }
  28974. },
  28975. rightHandFront: {
  28976. height: math.unit(0.95, "feet"),
  28977. name: "Right Hand (Front)",
  28978. image: {
  28979. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Normal",
  28986. height: math.unit(6 + 4 / 12, "feet"),
  28987. default: true
  28988. },
  28989. ]
  28990. ))
  28991. characterMakers.push(() => makeCharacter(
  28992. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28993. {
  28994. front: {
  28995. height: math.unit(6, "feet"),
  28996. weight: math.unit(320, "lb"),
  28997. name: "Front",
  28998. image: {
  28999. source: "./media/characters/balina-mejeri/front.svg",
  29000. extra: 517 / 488,
  29001. bottom: 44.2 / 561
  29002. }
  29003. },
  29004. },
  29005. [
  29006. {
  29007. name: "Normal",
  29008. height: math.unit(6 + 4 / 12, "feet")
  29009. },
  29010. {
  29011. name: "Business",
  29012. height: math.unit(155, "feet"),
  29013. default: true
  29014. },
  29015. ]
  29016. ))
  29017. characterMakers.push(() => makeCharacter(
  29018. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29019. {
  29020. kneeling: {
  29021. height: math.unit(6 + 4 / 12, "feet"),
  29022. weight: math.unit(300 * 20, "lb"),
  29023. name: "Kneeling",
  29024. image: {
  29025. source: "./media/characters/balbarian/kneeling.svg",
  29026. extra: 922 / 862,
  29027. bottom: 42.4 / 965
  29028. }
  29029. },
  29030. },
  29031. [
  29032. {
  29033. name: "Normal",
  29034. height: math.unit(6 + 4 / 12, "feet")
  29035. },
  29036. {
  29037. name: "Treasured",
  29038. height: math.unit(18 + 9 / 12, "feet"),
  29039. default: true
  29040. },
  29041. {
  29042. name: "Macro",
  29043. height: math.unit(900, "feet")
  29044. },
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29049. {
  29050. front: {
  29051. height: math.unit(6 + 4 / 12, "feet"),
  29052. weight: math.unit(325, "lb"),
  29053. name: "Front",
  29054. image: {
  29055. source: "./media/characters/balina-amarini/front.svg",
  29056. extra: 415 / 403,
  29057. bottom: 19 / 433.4
  29058. }
  29059. },
  29060. back: {
  29061. height: math.unit(6 + 4 / 12, "feet"),
  29062. weight: math.unit(325, "lb"),
  29063. name: "Back",
  29064. image: {
  29065. source: "./media/characters/balina-amarini/back.svg",
  29066. extra: 415 / 403,
  29067. bottom: 13.5 / 432
  29068. }
  29069. },
  29070. overdrive: {
  29071. height: math.unit(6 + 4 / 12, "feet"),
  29072. weight: math.unit(400, "lb"),
  29073. name: "Overdrive",
  29074. image: {
  29075. source: "./media/characters/balina-amarini/overdrive.svg",
  29076. extra: 269 / 259,
  29077. bottom: 12 / 282
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Boom",
  29084. height: math.unit(9 + 10 / 12, "feet"),
  29085. default: true
  29086. },
  29087. {
  29088. name: "Macro",
  29089. height: math.unit(280, "feet")
  29090. },
  29091. ]
  29092. ))
  29093. characterMakers.push(() => makeCharacter(
  29094. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29095. {
  29096. goddess: {
  29097. height: math.unit(600, "feet"),
  29098. weight: math.unit(2000000, "tons"),
  29099. name: "Goddess",
  29100. image: {
  29101. source: "./media/characters/lady-kubwa/goddess.svg",
  29102. extra: 1240.5 / 1223,
  29103. bottom: 22 / 1263
  29104. }
  29105. },
  29106. goddesser: {
  29107. height: math.unit(900, "feet"),
  29108. weight: math.unit(20000000, "lb"),
  29109. name: "Goddess-er",
  29110. image: {
  29111. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29112. extra: 899 / 888,
  29113. bottom: 12.6 / 912
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Macro",
  29120. height: math.unit(600, "feet"),
  29121. default: true
  29122. },
  29123. {
  29124. name: "Megamacro",
  29125. height: math.unit(250, "miles")
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(7 + 7 / 12, "feet"),
  29134. weight: math.unit(250, "lb"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/tala-grovehorn/front.svg",
  29138. extra: 2636 / 2525,
  29139. bottom: 147 / 2781
  29140. }
  29141. },
  29142. back: {
  29143. height: math.unit(7 + 7 / 12, "feet"),
  29144. weight: math.unit(250, "lb"),
  29145. name: "Back",
  29146. image: {
  29147. source: "./media/characters/tala-grovehorn/back.svg",
  29148. extra: 2635 / 2539,
  29149. bottom: 100 / 2732.8
  29150. }
  29151. },
  29152. mouth: {
  29153. height: math.unit(1.15, "feet"),
  29154. name: "Mouth",
  29155. image: {
  29156. source: "./media/characters/tala-grovehorn/mouth.svg"
  29157. }
  29158. },
  29159. dick: {
  29160. height: math.unit(2.36, "feet"),
  29161. name: "Dick",
  29162. image: {
  29163. source: "./media/characters/tala-grovehorn/dick.svg"
  29164. }
  29165. },
  29166. slit: {
  29167. height: math.unit(0.61, "feet"),
  29168. name: "Slit",
  29169. image: {
  29170. source: "./media/characters/tala-grovehorn/slit.svg"
  29171. }
  29172. },
  29173. },
  29174. [
  29175. ]
  29176. ))
  29177. characterMakers.push(() => makeCharacter(
  29178. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29179. {
  29180. front: {
  29181. height: math.unit(7 + 7 / 12, "feet"),
  29182. weight: math.unit(225, "lb"),
  29183. name: "Front",
  29184. image: {
  29185. source: "./media/characters/epona/front.svg",
  29186. extra: 2445 / 2290,
  29187. bottom: 251 / 2696
  29188. }
  29189. },
  29190. back: {
  29191. height: math.unit(7 + 7 / 12, "feet"),
  29192. weight: math.unit(225, "lb"),
  29193. name: "Back",
  29194. image: {
  29195. source: "./media/characters/epona/back.svg",
  29196. extra: 2546 / 2408,
  29197. bottom: 44 / 2589
  29198. }
  29199. },
  29200. genitals: {
  29201. height: math.unit(1.5, "feet"),
  29202. name: "Genitals",
  29203. image: {
  29204. source: "./media/characters/epona/genitals.svg"
  29205. }
  29206. },
  29207. },
  29208. [
  29209. {
  29210. name: "Normal",
  29211. height: math.unit(7 + 7 / 12, "feet"),
  29212. default: true
  29213. },
  29214. ]
  29215. ))
  29216. characterMakers.push(() => makeCharacter(
  29217. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29218. {
  29219. front: {
  29220. height: math.unit(7, "feet"),
  29221. weight: math.unit(518, "lb"),
  29222. name: "Front",
  29223. image: {
  29224. source: "./media/characters/avia-bloodbourn/front.svg",
  29225. extra: 1466 / 1350,
  29226. bottom: 65 / 1527
  29227. }
  29228. },
  29229. },
  29230. [
  29231. ]
  29232. ))
  29233. characterMakers.push(() => makeCharacter(
  29234. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29235. {
  29236. front: {
  29237. height: math.unit(9.35, "feet"),
  29238. weight: math.unit(600, "lb"),
  29239. name: "Front",
  29240. image: {
  29241. source: "./media/characters/amera/front.svg",
  29242. extra: 891 / 818,
  29243. bottom: 30 / 922.7
  29244. }
  29245. },
  29246. back: {
  29247. height: math.unit(9.35, "feet"),
  29248. weight: math.unit(600, "lb"),
  29249. name: "Back",
  29250. image: {
  29251. source: "./media/characters/amera/back.svg",
  29252. extra: 876 / 824,
  29253. bottom: 6.8 / 884
  29254. }
  29255. },
  29256. dick: {
  29257. height: math.unit(2.14, "feet"),
  29258. name: "Dick",
  29259. image: {
  29260. source: "./media/characters/amera/dick.svg"
  29261. }
  29262. },
  29263. },
  29264. [
  29265. {
  29266. name: "Normal",
  29267. height: math.unit(9.35, "feet"),
  29268. default: true
  29269. },
  29270. ]
  29271. ))
  29272. characterMakers.push(() => makeCharacter(
  29273. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29274. {
  29275. kneeling: {
  29276. height: math.unit(3 + 4 / 12, "feet"),
  29277. weight: math.unit(90, "lb"),
  29278. name: "Kneeling",
  29279. image: {
  29280. source: "./media/characters/rosewen/kneeling.svg",
  29281. extra: 1835 / 1571,
  29282. bottom: 27.7 / 1862
  29283. }
  29284. },
  29285. },
  29286. [
  29287. {
  29288. name: "Normal",
  29289. height: math.unit(3 + 4 / 12, "feet"),
  29290. default: true
  29291. },
  29292. ]
  29293. ))
  29294. characterMakers.push(() => makeCharacter(
  29295. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29296. {
  29297. front: {
  29298. height: math.unit(5 + 10 / 12, "feet"),
  29299. weight: math.unit(200, "lb"),
  29300. name: "Front",
  29301. image: {
  29302. source: "./media/characters/sabah/front.svg",
  29303. extra: 849 / 763,
  29304. bottom: 33.9 / 881
  29305. }
  29306. },
  29307. },
  29308. [
  29309. {
  29310. name: "Normal",
  29311. height: math.unit(5 + 10 / 12, "feet"),
  29312. default: true
  29313. },
  29314. ]
  29315. ))
  29316. characterMakers.push(() => makeCharacter(
  29317. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29318. {
  29319. front: {
  29320. height: math.unit(3 + 5 / 12, "feet"),
  29321. weight: math.unit(40, "kg"),
  29322. name: "Front",
  29323. image: {
  29324. source: "./media/characters/purple-flame/front.svg",
  29325. extra: 1577 / 1412,
  29326. bottom: 97 / 1694
  29327. }
  29328. },
  29329. frontDressed: {
  29330. height: math.unit(3 + 5 / 12, "feet"),
  29331. weight: math.unit(40, "kg"),
  29332. name: "Front (Dressed)",
  29333. image: {
  29334. source: "./media/characters/purple-flame/front-dressed.svg",
  29335. extra: 1577 / 1412,
  29336. bottom: 97 / 1694
  29337. }
  29338. },
  29339. headphones: {
  29340. height: math.unit(0.85, "feet"),
  29341. name: "Headphones",
  29342. image: {
  29343. source: "./media/characters/purple-flame/headphones.svg"
  29344. }
  29345. },
  29346. },
  29347. [
  29348. {
  29349. name: "Really Small",
  29350. height: math.unit(5, "cm")
  29351. },
  29352. {
  29353. name: "Micro",
  29354. height: math.unit(1 + 5 / 12, "feet")
  29355. },
  29356. {
  29357. name: "Normal",
  29358. height: math.unit(3 + 5 / 12, "feet"),
  29359. default: true
  29360. },
  29361. {
  29362. name: "Minimacro",
  29363. height: math.unit(125, "feet")
  29364. },
  29365. {
  29366. name: "Macro",
  29367. height: math.unit(0.5, "miles")
  29368. },
  29369. {
  29370. name: "Megamacro",
  29371. height: math.unit(50, "miles")
  29372. },
  29373. {
  29374. name: "Gigantic",
  29375. height: math.unit(750, "miles")
  29376. },
  29377. {
  29378. name: "Planetary",
  29379. height: math.unit(15000, "miles")
  29380. },
  29381. ]
  29382. ))
  29383. characterMakers.push(() => makeCharacter(
  29384. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29385. {
  29386. front: {
  29387. height: math.unit(14, "feet"),
  29388. weight: math.unit(959, "lb"),
  29389. name: "Front",
  29390. image: {
  29391. source: "./media/characters/arsenal/front.svg",
  29392. extra: 2357 / 2157,
  29393. bottom: 93 / 2458
  29394. }
  29395. },
  29396. },
  29397. [
  29398. {
  29399. name: "Normal",
  29400. height: math.unit(14, "feet"),
  29401. default: true
  29402. },
  29403. ]
  29404. ))
  29405. characterMakers.push(() => makeCharacter(
  29406. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29407. {
  29408. front: {
  29409. height: math.unit(6, "feet"),
  29410. weight: math.unit(150, "lb"),
  29411. name: "Front",
  29412. image: {
  29413. source: "./media/characters/adira/front.svg",
  29414. extra: 1078 / 1029,
  29415. bottom: 87 / 1166
  29416. }
  29417. },
  29418. },
  29419. [
  29420. {
  29421. name: "Micro",
  29422. height: math.unit(4, "inches"),
  29423. default: true
  29424. },
  29425. {
  29426. name: "Macro",
  29427. height: math.unit(50, "feet")
  29428. },
  29429. ]
  29430. ))
  29431. characterMakers.push(() => makeCharacter(
  29432. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29433. {
  29434. front: {
  29435. height: math.unit(16, "feet"),
  29436. weight: math.unit(1000, "lb"),
  29437. name: "Front",
  29438. image: {
  29439. source: "./media/characters/grim/front.svg",
  29440. extra: 622 / 614,
  29441. bottom: 18.1 / 642
  29442. }
  29443. },
  29444. back: {
  29445. height: math.unit(16, "feet"),
  29446. weight: math.unit(1000, "lb"),
  29447. name: "Back",
  29448. image: {
  29449. source: "./media/characters/grim/back.svg",
  29450. extra: 610.6 / 602,
  29451. bottom: 40.8 / 652
  29452. }
  29453. },
  29454. hunched: {
  29455. height: math.unit(9.75, "feet"),
  29456. weight: math.unit(1000, "lb"),
  29457. name: "Hunched",
  29458. image: {
  29459. source: "./media/characters/grim/hunched.svg",
  29460. extra: 304 / 297,
  29461. bottom: 35.4 / 394
  29462. }
  29463. },
  29464. },
  29465. [
  29466. {
  29467. name: "Normal",
  29468. height: math.unit(16, "feet"),
  29469. default: true
  29470. },
  29471. ]
  29472. ))
  29473. characterMakers.push(() => makeCharacter(
  29474. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29475. {
  29476. front: {
  29477. height: math.unit(2.3, "meters"),
  29478. weight: math.unit(300, "lb"),
  29479. name: "Front",
  29480. image: {
  29481. source: "./media/characters/sinja/front-sfw.svg",
  29482. extra: 1393 / 1294,
  29483. bottom: 70 / 1463
  29484. }
  29485. },
  29486. frontNsfw: {
  29487. height: math.unit(2.3, "meters"),
  29488. weight: math.unit(300, "lb"),
  29489. name: "Front (NSFW)",
  29490. image: {
  29491. source: "./media/characters/sinja/front-nsfw.svg",
  29492. extra: 1393 / 1294,
  29493. bottom: 70 / 1463
  29494. }
  29495. },
  29496. back: {
  29497. height: math.unit(2.3, "meters"),
  29498. weight: math.unit(300, "lb"),
  29499. name: "Back",
  29500. image: {
  29501. source: "./media/characters/sinja/back.svg",
  29502. extra: 1393 / 1294,
  29503. bottom: 70 / 1463
  29504. }
  29505. },
  29506. head: {
  29507. height: math.unit(1.771, "feet"),
  29508. name: "Head",
  29509. image: {
  29510. source: "./media/characters/sinja/head.svg"
  29511. }
  29512. },
  29513. slit: {
  29514. height: math.unit(0.8, "feet"),
  29515. name: "Slit",
  29516. image: {
  29517. source: "./media/characters/sinja/slit.svg"
  29518. }
  29519. },
  29520. },
  29521. [
  29522. {
  29523. name: "Normal",
  29524. height: math.unit(2.3, "meters")
  29525. },
  29526. {
  29527. name: "Macro",
  29528. height: math.unit(91, "meters"),
  29529. default: true
  29530. },
  29531. {
  29532. name: "Megamacro",
  29533. height: math.unit(91440, "meters")
  29534. },
  29535. {
  29536. name: "Gigamacro",
  29537. height: math.unit(60960000, "meters")
  29538. },
  29539. {
  29540. name: "Teramacro",
  29541. height: math.unit(9144000000, "meters")
  29542. },
  29543. ]
  29544. ))
  29545. characterMakers.push(() => makeCharacter(
  29546. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29547. {
  29548. front: {
  29549. height: math.unit(1.7, "meters"),
  29550. weight: math.unit(130, "lb"),
  29551. name: "Front",
  29552. image: {
  29553. source: "./media/characters/kyu/front.svg",
  29554. extra: 415 / 395,
  29555. bottom: 5 / 420
  29556. }
  29557. },
  29558. head: {
  29559. height: math.unit(1.75, "feet"),
  29560. name: "Head",
  29561. image: {
  29562. source: "./media/characters/kyu/head.svg"
  29563. }
  29564. },
  29565. foot: {
  29566. height: math.unit(0.81, "feet"),
  29567. name: "Foot",
  29568. image: {
  29569. source: "./media/characters/kyu/foot.svg"
  29570. }
  29571. },
  29572. },
  29573. [
  29574. {
  29575. name: "Normal",
  29576. height: math.unit(1.7, "meters")
  29577. },
  29578. {
  29579. name: "Macro",
  29580. height: math.unit(131, "feet"),
  29581. default: true
  29582. },
  29583. {
  29584. name: "Megamacro",
  29585. height: math.unit(91440, "meters")
  29586. },
  29587. {
  29588. name: "Gigamacro",
  29589. height: math.unit(60960000, "meters")
  29590. },
  29591. {
  29592. name: "Teramacro",
  29593. height: math.unit(9144000000, "meters")
  29594. },
  29595. ]
  29596. ))
  29597. characterMakers.push(() => makeCharacter(
  29598. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29599. {
  29600. front: {
  29601. height: math.unit(7 + 1 / 12, "feet"),
  29602. weight: math.unit(250, "lb"),
  29603. name: "Front",
  29604. image: {
  29605. source: "./media/characters/joey/front.svg",
  29606. extra: 1791 / 1537,
  29607. bottom: 28 / 1816
  29608. }
  29609. },
  29610. },
  29611. [
  29612. {
  29613. name: "Micro",
  29614. height: math.unit(3, "inches")
  29615. },
  29616. {
  29617. name: "Normal",
  29618. height: math.unit(7 + 1 / 12, "feet"),
  29619. default: true
  29620. },
  29621. ]
  29622. ))
  29623. characterMakers.push(() => makeCharacter(
  29624. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29625. {
  29626. front: {
  29627. height: math.unit(165, "cm"),
  29628. weight: math.unit(140, "lb"),
  29629. name: "Front",
  29630. image: {
  29631. source: "./media/characters/sam-evans/front.svg",
  29632. extra: 3417 / 3230,
  29633. bottom: 41.3 / 3417
  29634. }
  29635. },
  29636. frontSixTails: {
  29637. height: math.unit(165, "cm"),
  29638. weight: math.unit(140, "lb"),
  29639. name: "Front-six-tails",
  29640. image: {
  29641. source: "./media/characters/sam-evans/front-six-tails.svg",
  29642. extra: 3417 / 3230,
  29643. bottom: 41.3 / 3417
  29644. }
  29645. },
  29646. back: {
  29647. height: math.unit(165, "cm"),
  29648. weight: math.unit(140, "lb"),
  29649. name: "Back",
  29650. image: {
  29651. source: "./media/characters/sam-evans/back.svg",
  29652. extra: 3227 / 3032,
  29653. bottom: 6.8 / 3234
  29654. }
  29655. },
  29656. face: {
  29657. height: math.unit(0.68, "feet"),
  29658. name: "Face",
  29659. image: {
  29660. source: "./media/characters/sam-evans/face.svg"
  29661. }
  29662. },
  29663. },
  29664. [
  29665. {
  29666. name: "Normal",
  29667. height: math.unit(165, "cm"),
  29668. default: true
  29669. },
  29670. {
  29671. name: "Macro",
  29672. height: math.unit(100, "meters")
  29673. },
  29674. {
  29675. name: "Macro+",
  29676. height: math.unit(800, "meters")
  29677. },
  29678. {
  29679. name: "Macro++",
  29680. height: math.unit(3, "km")
  29681. },
  29682. {
  29683. name: "Macro+++",
  29684. height: math.unit(30, "km")
  29685. },
  29686. ]
  29687. ))
  29688. characterMakers.push(() => makeCharacter(
  29689. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29690. {
  29691. front: {
  29692. height: math.unit(10, "feet"),
  29693. weight: math.unit(750, "lb"),
  29694. name: "Front",
  29695. image: {
  29696. source: "./media/characters/juliet-a/front.svg",
  29697. extra: 1766 / 1720,
  29698. bottom: 43 / 1809
  29699. }
  29700. },
  29701. back: {
  29702. height: math.unit(10, "feet"),
  29703. weight: math.unit(750, "lb"),
  29704. name: "Back",
  29705. image: {
  29706. source: "./media/characters/juliet-a/back.svg",
  29707. extra: 1781 / 1734,
  29708. bottom: 35 / 1810,
  29709. }
  29710. },
  29711. },
  29712. [
  29713. {
  29714. name: "Normal",
  29715. height: math.unit(10, "feet"),
  29716. default: true
  29717. },
  29718. {
  29719. name: "Dragon Form",
  29720. height: math.unit(250, "feet")
  29721. },
  29722. {
  29723. name: "Macro",
  29724. height: math.unit(1000, "feet")
  29725. },
  29726. {
  29727. name: "Megamacro",
  29728. height: math.unit(10000, "feet")
  29729. }
  29730. ]
  29731. ))
  29732. characterMakers.push(() => makeCharacter(
  29733. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29734. {
  29735. regular: {
  29736. height: math.unit(7 + 3 / 12, "feet"),
  29737. weight: math.unit(260, "lb"),
  29738. name: "Regular",
  29739. image: {
  29740. source: "./media/characters/wild/regular.svg",
  29741. extra: 97.45 / 92,
  29742. bottom: 6.8 / 104.3
  29743. }
  29744. },
  29745. biggums: {
  29746. height: math.unit(8 + 6 / 12, "feet"),
  29747. weight: math.unit(425, "lb"),
  29748. name: "Biggums",
  29749. image: {
  29750. source: "./media/characters/wild/biggums.svg",
  29751. extra: 97.45 / 92,
  29752. bottom: 7.5 / 132.34
  29753. }
  29754. },
  29755. mawRegular: {
  29756. height: math.unit(1.24, "feet"),
  29757. name: "Maw (Regular)",
  29758. image: {
  29759. source: "./media/characters/wild/maw.svg"
  29760. }
  29761. },
  29762. mawBiggums: {
  29763. height: math.unit(1.47, "feet"),
  29764. name: "Maw (Biggums)",
  29765. image: {
  29766. source: "./media/characters/wild/maw.svg"
  29767. }
  29768. },
  29769. },
  29770. [
  29771. {
  29772. name: "Normal",
  29773. height: math.unit(7 + 3 / 12, "feet"),
  29774. default: true
  29775. },
  29776. ]
  29777. ))
  29778. characterMakers.push(() => makeCharacter(
  29779. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29780. {
  29781. front: {
  29782. height: math.unit(2.5, "meters"),
  29783. weight: math.unit(200, "kg"),
  29784. name: "Front",
  29785. image: {
  29786. source: "./media/characters/vidar/front.svg",
  29787. extra: 2994 / 2795,
  29788. bottom: 56 / 3061
  29789. }
  29790. },
  29791. back: {
  29792. height: math.unit(2.5, "meters"),
  29793. weight: math.unit(200, "kg"),
  29794. name: "Back",
  29795. image: {
  29796. source: "./media/characters/vidar/back.svg",
  29797. extra: 3131 / 2928,
  29798. bottom: 13.5 / 3141.5
  29799. }
  29800. },
  29801. feral: {
  29802. height: math.unit(2.5, "meters"),
  29803. weight: math.unit(2000, "kg"),
  29804. name: "Feral",
  29805. image: {
  29806. source: "./media/characters/vidar/feral.svg",
  29807. extra: 2790 / 1765,
  29808. bottom: 6 / 2796
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Normal",
  29815. height: math.unit(2.5, "meters"),
  29816. default: true
  29817. },
  29818. {
  29819. name: "Macro",
  29820. height: math.unit(100, "meters")
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29826. {
  29827. front: {
  29828. height: math.unit(5 + 9 / 12, "feet"),
  29829. weight: math.unit(120, "lb"),
  29830. name: "Front",
  29831. image: {
  29832. source: "./media/characters/ash/front.svg",
  29833. extra: 2189 / 1961,
  29834. bottom: 5.2 / 2194
  29835. }
  29836. },
  29837. },
  29838. [
  29839. {
  29840. name: "Normal",
  29841. height: math.unit(5 + 9 / 12, "feet"),
  29842. default: true
  29843. },
  29844. ]
  29845. ))
  29846. characterMakers.push(() => makeCharacter(
  29847. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29848. {
  29849. front: {
  29850. height: math.unit(9, "feet"),
  29851. weight: math.unit(10000, "lb"),
  29852. name: "Front",
  29853. image: {
  29854. source: "./media/characters/gygabite/front.svg",
  29855. bottom: 31.7 / 537.8,
  29856. extra: 505 / 370
  29857. }
  29858. },
  29859. },
  29860. [
  29861. {
  29862. name: "Normal",
  29863. height: math.unit(9, "feet"),
  29864. default: true
  29865. },
  29866. ]
  29867. ))
  29868. characterMakers.push(() => makeCharacter(
  29869. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29870. {
  29871. front: {
  29872. height: math.unit(12, "feet"),
  29873. weight: math.unit(4000, "lb"),
  29874. name: "Front",
  29875. image: {
  29876. source: "./media/characters/p0tat0/front.svg",
  29877. extra: 1065 / 921,
  29878. bottom: 55.7 / 1121.25
  29879. }
  29880. },
  29881. },
  29882. [
  29883. {
  29884. name: "Normal",
  29885. height: math.unit(12, "feet"),
  29886. default: true
  29887. },
  29888. ]
  29889. ))
  29890. characterMakers.push(() => makeCharacter(
  29891. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29892. {
  29893. side: {
  29894. height: math.unit(6.5, "feet"),
  29895. weight: math.unit(800, "lb"),
  29896. name: "Side",
  29897. image: {
  29898. source: "./media/characters/dusk/side.svg",
  29899. extra: 615 / 373,
  29900. bottom: 53 / 664
  29901. }
  29902. },
  29903. sitting: {
  29904. height: math.unit(7, "feet"),
  29905. weight: math.unit(800, "lb"),
  29906. name: "Sitting",
  29907. image: {
  29908. source: "./media/characters/dusk/sitting.svg",
  29909. extra: 753 / 425,
  29910. bottom: 33 / 774
  29911. }
  29912. },
  29913. head: {
  29914. height: math.unit(6.1, "feet"),
  29915. name: "Head",
  29916. image: {
  29917. source: "./media/characters/dusk/head.svg"
  29918. }
  29919. },
  29920. },
  29921. [
  29922. {
  29923. name: "Normal",
  29924. height: math.unit(7, "feet"),
  29925. default: true
  29926. },
  29927. ]
  29928. ))
  29929. characterMakers.push(() => makeCharacter(
  29930. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29931. {
  29932. front: {
  29933. height: math.unit(15, "feet"),
  29934. weight: math.unit(7000, "lb"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/jay-direwolf/front.svg",
  29938. extra: 1810 / 1732,
  29939. bottom: 66 / 1892
  29940. }
  29941. },
  29942. },
  29943. [
  29944. {
  29945. name: "Normal",
  29946. height: math.unit(15, "feet"),
  29947. default: true
  29948. },
  29949. ]
  29950. ))
  29951. characterMakers.push(() => makeCharacter(
  29952. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29953. {
  29954. front: {
  29955. height: math.unit(4 + 9 / 12, "feet"),
  29956. weight: math.unit(130, "lb"),
  29957. name: "Front",
  29958. image: {
  29959. source: "./media/characters/anchovie/front.svg",
  29960. extra: 382 / 350,
  29961. bottom: 25 / 409
  29962. }
  29963. },
  29964. back: {
  29965. height: math.unit(4 + 9 / 12, "feet"),
  29966. weight: math.unit(130, "lb"),
  29967. name: "Back",
  29968. image: {
  29969. source: "./media/characters/anchovie/back.svg",
  29970. extra: 385 / 352,
  29971. bottom: 16.6 / 402
  29972. }
  29973. },
  29974. frontDressed: {
  29975. height: math.unit(4 + 9 / 12, "feet"),
  29976. weight: math.unit(130, "lb"),
  29977. name: "Front (Dressed)",
  29978. image: {
  29979. source: "./media/characters/anchovie/front-dressed.svg",
  29980. extra: 382 / 350,
  29981. bottom: 25 / 409
  29982. }
  29983. },
  29984. backDressed: {
  29985. height: math.unit(4 + 9 / 12, "feet"),
  29986. weight: math.unit(130, "lb"),
  29987. name: "Back (Dressed)",
  29988. image: {
  29989. source: "./media/characters/anchovie/back-dressed.svg",
  29990. extra: 385 / 352,
  29991. bottom: 16.6 / 402
  29992. }
  29993. },
  29994. },
  29995. [
  29996. {
  29997. name: "Micro",
  29998. height: math.unit(6.4, "inches")
  29999. },
  30000. {
  30001. name: "Normal",
  30002. height: math.unit(4 + 9 / 12, "feet"),
  30003. default: true
  30004. },
  30005. ]
  30006. ))
  30007. characterMakers.push(() => makeCharacter(
  30008. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30009. {
  30010. front: {
  30011. height: math.unit(2, "meters"),
  30012. weight: math.unit(180, "lb"),
  30013. name: "Front",
  30014. image: {
  30015. source: "./media/characters/acidrenamon/front.svg",
  30016. extra: 987 / 890,
  30017. bottom: 22.8 / 1009
  30018. }
  30019. },
  30020. back: {
  30021. height: math.unit(2, "meters"),
  30022. weight: math.unit(180, "lb"),
  30023. name: "Back",
  30024. image: {
  30025. source: "./media/characters/acidrenamon/back.svg",
  30026. extra: 983 / 891,
  30027. bottom: 8.4 / 992
  30028. }
  30029. },
  30030. head: {
  30031. height: math.unit(1.92, "feet"),
  30032. name: "Head",
  30033. image: {
  30034. source: "./media/characters/acidrenamon/head.svg"
  30035. }
  30036. },
  30037. rump: {
  30038. height: math.unit(1.72, "feet"),
  30039. name: "Rump",
  30040. image: {
  30041. source: "./media/characters/acidrenamon/rump.svg"
  30042. }
  30043. },
  30044. tail: {
  30045. height: math.unit(4.2, "feet"),
  30046. name: "Tail",
  30047. image: {
  30048. source: "./media/characters/acidrenamon/tail.svg"
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Normal",
  30055. height: math.unit(2, "meters"),
  30056. default: true
  30057. },
  30058. {
  30059. name: "Minimacro",
  30060. height: math.unit(7, "meters")
  30061. },
  30062. {
  30063. name: "Macro",
  30064. height: math.unit(200, "meters")
  30065. },
  30066. {
  30067. name: "Gigamacro",
  30068. height: math.unit(0.2, "earths")
  30069. },
  30070. ]
  30071. ))
  30072. characterMakers.push(() => makeCharacter(
  30073. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30074. {
  30075. front: {
  30076. height: math.unit(152, "feet"),
  30077. name: "Front",
  30078. image: {
  30079. source: "./media/characters/kenzie-lee/front.svg",
  30080. extra: 1869/1774,
  30081. bottom: 128/1997
  30082. }
  30083. },
  30084. side: {
  30085. height: math.unit(86, "feet"),
  30086. name: "Side",
  30087. image: {
  30088. source: "./media/characters/kenzie-lee/side.svg",
  30089. extra: 930/815,
  30090. bottom: 177/1107
  30091. }
  30092. },
  30093. paw: {
  30094. height: math.unit(15, "feet"),
  30095. name: "Paw",
  30096. image: {
  30097. source: "./media/characters/kenzie-lee/paw.svg"
  30098. }
  30099. },
  30100. },
  30101. [
  30102. {
  30103. name: "Kenzie Flea",
  30104. height: math.unit(2, "mm"),
  30105. default: true
  30106. },
  30107. {
  30108. name: "Micro",
  30109. height: math.unit(2, "inches")
  30110. },
  30111. {
  30112. name: "Normal",
  30113. height: math.unit(152, "feet")
  30114. },
  30115. {
  30116. name: "Megamacro",
  30117. height: math.unit(7, "miles")
  30118. },
  30119. {
  30120. name: "Gigamacro",
  30121. height: math.unit(8000, "miles")
  30122. },
  30123. ]
  30124. ))
  30125. characterMakers.push(() => makeCharacter(
  30126. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30127. {
  30128. front: {
  30129. height: math.unit(6, "feet"),
  30130. name: "Front",
  30131. image: {
  30132. source: "./media/characters/withers/front.svg",
  30133. extra: 1935/1760,
  30134. bottom: 72/2007
  30135. }
  30136. },
  30137. back: {
  30138. height: math.unit(6, "feet"),
  30139. name: "Back",
  30140. image: {
  30141. source: "./media/characters/withers/back.svg",
  30142. extra: 1944/1792,
  30143. bottom: 12/1956
  30144. }
  30145. },
  30146. dressed: {
  30147. height: math.unit(6, "feet"),
  30148. name: "Dressed",
  30149. image: {
  30150. source: "./media/characters/withers/dressed.svg",
  30151. extra: 1937/1765,
  30152. bottom: 73/2010
  30153. }
  30154. },
  30155. phase1: {
  30156. height: math.unit(1.1, "feet"),
  30157. name: "Phase 1",
  30158. image: {
  30159. source: "./media/characters/withers/phase-1.svg",
  30160. extra: 1885/1232,
  30161. bottom: 0/1885
  30162. }
  30163. },
  30164. phase2: {
  30165. height: math.unit(1.05, "feet"),
  30166. name: "Phase 2",
  30167. image: {
  30168. source: "./media/characters/withers/phase-2.svg",
  30169. extra: 1792/1090,
  30170. bottom: 0/1792
  30171. }
  30172. },
  30173. partyWipe: {
  30174. height: math.unit(1.1, "feet"),
  30175. name: "Party Wipe",
  30176. image: {
  30177. source: "./media/characters/withers/party-wipe.svg",
  30178. extra: 1864/1207,
  30179. bottom: 0/1864
  30180. }
  30181. },
  30182. },
  30183. [
  30184. {
  30185. name: "Macro",
  30186. height: math.unit(167, "feet"),
  30187. default: true
  30188. },
  30189. {
  30190. name: "Megamacro",
  30191. height: math.unit(15, "miles")
  30192. }
  30193. ]
  30194. ))
  30195. characterMakers.push(() => makeCharacter(
  30196. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30197. {
  30198. front: {
  30199. height: math.unit(6 + 7 / 12, "feet"),
  30200. weight: math.unit(250, "lb"),
  30201. name: "Front",
  30202. image: {
  30203. source: "./media/characters/nemoskii/front.svg",
  30204. extra: 2270 / 1734,
  30205. bottom: 86 / 2354
  30206. }
  30207. },
  30208. back: {
  30209. height: math.unit(6 + 7 / 12, "feet"),
  30210. weight: math.unit(250, "lb"),
  30211. name: "Back",
  30212. image: {
  30213. source: "./media/characters/nemoskii/back.svg",
  30214. extra: 1845 / 1788,
  30215. bottom: 10.5 / 1852
  30216. }
  30217. },
  30218. head: {
  30219. height: math.unit(1.31, "feet"),
  30220. name: "Head",
  30221. image: {
  30222. source: "./media/characters/nemoskii/head.svg"
  30223. }
  30224. },
  30225. },
  30226. [
  30227. {
  30228. name: "Micro",
  30229. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30230. },
  30231. {
  30232. name: "Normal",
  30233. height: math.unit(6 + 7 / 12, "feet"),
  30234. default: true
  30235. },
  30236. {
  30237. name: "Macro",
  30238. height: math.unit((6 + 7 / 12) * 150, "feet")
  30239. },
  30240. {
  30241. name: "Macro+",
  30242. height: math.unit((6 + 7 / 12) * 500, "feet")
  30243. },
  30244. {
  30245. name: "Megamacro",
  30246. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30247. },
  30248. ]
  30249. ))
  30250. characterMakers.push(() => makeCharacter(
  30251. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30252. {
  30253. front: {
  30254. height: math.unit(1, "mile"),
  30255. weight: math.unit(265261.9, "lb"),
  30256. name: "Front",
  30257. image: {
  30258. source: "./media/characters/shui/front.svg",
  30259. extra: 1633 / 1564,
  30260. bottom: 91.5 / 1726
  30261. }
  30262. },
  30263. },
  30264. [
  30265. {
  30266. name: "Macro",
  30267. height: math.unit(1, "mile"),
  30268. default: true
  30269. },
  30270. ]
  30271. ))
  30272. characterMakers.push(() => makeCharacter(
  30273. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30274. {
  30275. front: {
  30276. height: math.unit(12 + 6 / 12, "feet"),
  30277. weight: math.unit(1342, "lb"),
  30278. name: "Front",
  30279. image: {
  30280. source: "./media/characters/arokh-takakura/front.svg",
  30281. extra: 1089 / 1043,
  30282. bottom: 77.4 / 1176.7
  30283. }
  30284. },
  30285. back: {
  30286. height: math.unit(12 + 6 / 12, "feet"),
  30287. weight: math.unit(1342, "lb"),
  30288. name: "Back",
  30289. image: {
  30290. source: "./media/characters/arokh-takakura/back.svg",
  30291. extra: 1046 / 1019,
  30292. bottom: 102 / 1150
  30293. }
  30294. },
  30295. },
  30296. [
  30297. {
  30298. name: "Big",
  30299. height: math.unit(12 + 6 / 12, "feet"),
  30300. default: true
  30301. },
  30302. ]
  30303. ))
  30304. characterMakers.push(() => makeCharacter(
  30305. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30306. {
  30307. front: {
  30308. height: math.unit(5 + 6 / 12, "feet"),
  30309. weight: math.unit(150, "lb"),
  30310. name: "Front",
  30311. image: {
  30312. source: "./media/characters/theo/front.svg",
  30313. extra: 1184 / 1131,
  30314. bottom: 7.4 / 1191
  30315. }
  30316. },
  30317. },
  30318. [
  30319. {
  30320. name: "Micro",
  30321. height: math.unit(5, "inches")
  30322. },
  30323. {
  30324. name: "Normal",
  30325. height: math.unit(5 + 6 / 12, "feet"),
  30326. default: true
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30332. {
  30333. front: {
  30334. height: math.unit(5 + 9 / 12, "feet"),
  30335. weight: math.unit(130, "lb"),
  30336. name: "Front",
  30337. image: {
  30338. source: "./media/characters/cecelia-swift/front.svg",
  30339. extra: 502 / 484,
  30340. bottom: 23 / 523
  30341. }
  30342. },
  30343. back: {
  30344. height: math.unit(5 + 9 / 12, "feet"),
  30345. weight: math.unit(130, "lb"),
  30346. name: "Back",
  30347. image: {
  30348. source: "./media/characters/cecelia-swift/back.svg",
  30349. extra: 499 / 485,
  30350. bottom: 12 / 511
  30351. }
  30352. },
  30353. head: {
  30354. height: math.unit(0.90, "feet"),
  30355. name: "Head",
  30356. image: {
  30357. source: "./media/characters/cecelia-swift/head.svg"
  30358. }
  30359. },
  30360. rump: {
  30361. height: math.unit(1.75, "feet"),
  30362. name: "Rump",
  30363. image: {
  30364. source: "./media/characters/cecelia-swift/rump.svg"
  30365. }
  30366. },
  30367. },
  30368. [
  30369. {
  30370. name: "Normal",
  30371. height: math.unit(5 + 9 / 12, "feet"),
  30372. default: true
  30373. },
  30374. {
  30375. name: "Big",
  30376. height: math.unit(50, "feet")
  30377. },
  30378. {
  30379. name: "Macro",
  30380. height: math.unit(100, "feet")
  30381. },
  30382. {
  30383. name: "Macro+",
  30384. height: math.unit(500, "feet")
  30385. },
  30386. {
  30387. name: "Macro++",
  30388. height: math.unit(1000, "feet")
  30389. },
  30390. ]
  30391. ))
  30392. characterMakers.push(() => makeCharacter(
  30393. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30394. {
  30395. front: {
  30396. height: math.unit(6, "feet"),
  30397. weight: math.unit(150, "lb"),
  30398. name: "Front",
  30399. image: {
  30400. source: "./media/characters/kaunan/front.svg",
  30401. extra: 2890 / 2523,
  30402. bottom: 49 / 2939
  30403. }
  30404. },
  30405. },
  30406. [
  30407. {
  30408. name: "Macro",
  30409. height: math.unit(150, "feet"),
  30410. default: true
  30411. },
  30412. ]
  30413. ))
  30414. characterMakers.push(() => makeCharacter(
  30415. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30416. {
  30417. dressed: {
  30418. height: math.unit(175, "cm"),
  30419. weight: math.unit(60, "kg"),
  30420. name: "Dressed",
  30421. image: {
  30422. source: "./media/characters/fei/dressed.svg",
  30423. extra: 1402/1278,
  30424. bottom: 27/1429
  30425. }
  30426. },
  30427. nude: {
  30428. height: math.unit(175, "cm"),
  30429. weight: math.unit(60, "kg"),
  30430. name: "Nude",
  30431. image: {
  30432. source: "./media/characters/fei/nude.svg",
  30433. extra: 1402/1278,
  30434. bottom: 27/1429
  30435. }
  30436. },
  30437. heels: {
  30438. height: math.unit(0.466, "feet"),
  30439. name: "Heels",
  30440. image: {
  30441. source: "./media/characters/fei/heels.svg",
  30442. extra: 156/152,
  30443. bottom: 28/184
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "Mortal",
  30450. height: math.unit(175, "cm")
  30451. },
  30452. {
  30453. name: "Normal",
  30454. height: math.unit(3500, "m")
  30455. },
  30456. {
  30457. name: "Stroll",
  30458. height: math.unit(18.4, "km"),
  30459. default: true
  30460. },
  30461. {
  30462. name: "Showoff",
  30463. height: math.unit(175, "km")
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30469. {
  30470. front: {
  30471. height: math.unit(7, "feet"),
  30472. weight: math.unit(1000, "kg"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/edrax/front.svg",
  30476. extra: 2838 / 2550,
  30477. bottom: 130 / 2968
  30478. }
  30479. },
  30480. },
  30481. [
  30482. {
  30483. name: "Small",
  30484. height: math.unit(7, "feet")
  30485. },
  30486. {
  30487. name: "Normal",
  30488. height: math.unit(1500, "meters")
  30489. },
  30490. {
  30491. name: "Mega",
  30492. height: math.unit(12000000, "km"),
  30493. default: true
  30494. },
  30495. {
  30496. name: "Megamacro",
  30497. height: math.unit(10600000, "lightyears")
  30498. },
  30499. {
  30500. name: "Hypermacro",
  30501. height: math.unit(256, "yottameters")
  30502. },
  30503. ]
  30504. ))
  30505. characterMakers.push(() => makeCharacter(
  30506. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30507. {
  30508. front: {
  30509. height: math.unit(10, "feet"),
  30510. weight: math.unit(750, "lb"),
  30511. name: "Front",
  30512. image: {
  30513. source: "./media/characters/clove/front.svg",
  30514. extra: 1918/1751,
  30515. bottom: 52/1970
  30516. }
  30517. },
  30518. back: {
  30519. height: math.unit(10, "feet"),
  30520. weight: math.unit(750, "lb"),
  30521. name: "Back",
  30522. image: {
  30523. source: "./media/characters/clove/back.svg",
  30524. extra: 1912/1747,
  30525. bottom: 50/1962
  30526. }
  30527. },
  30528. },
  30529. [
  30530. {
  30531. name: "Normal",
  30532. height: math.unit(10, "feet"),
  30533. default: true
  30534. },
  30535. ]
  30536. ))
  30537. characterMakers.push(() => makeCharacter(
  30538. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30539. {
  30540. front: {
  30541. height: math.unit(4, "feet"),
  30542. weight: math.unit(50, "lb"),
  30543. name: "Front",
  30544. image: {
  30545. source: "./media/characters/alex-rabbit/front.svg",
  30546. extra: 507 / 458,
  30547. bottom: 18.5 / 527
  30548. }
  30549. },
  30550. back: {
  30551. height: math.unit(4, "feet"),
  30552. weight: math.unit(50, "lb"),
  30553. name: "Back",
  30554. image: {
  30555. source: "./media/characters/alex-rabbit/back.svg",
  30556. extra: 502 / 460,
  30557. bottom: 18.9 / 521
  30558. }
  30559. },
  30560. },
  30561. [
  30562. {
  30563. name: "Normal",
  30564. height: math.unit(4, "feet"),
  30565. default: true
  30566. },
  30567. ]
  30568. ))
  30569. characterMakers.push(() => makeCharacter(
  30570. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30571. {
  30572. front: {
  30573. height: math.unit(1 + 3 / 12, "feet"),
  30574. weight: math.unit(80, "lb"),
  30575. name: "Front",
  30576. image: {
  30577. source: "./media/characters/zander-rose/front.svg",
  30578. extra: 916 / 797,
  30579. bottom: 17 / 933
  30580. }
  30581. },
  30582. back: {
  30583. height: math.unit(1 + 3 / 12, "feet"),
  30584. weight: math.unit(80, "lb"),
  30585. name: "Back",
  30586. image: {
  30587. source: "./media/characters/zander-rose/back.svg",
  30588. extra: 903 / 779,
  30589. bottom: 31 / 934
  30590. }
  30591. },
  30592. },
  30593. [
  30594. {
  30595. name: "Normal",
  30596. height: math.unit(1 + 3 / 12, "feet"),
  30597. default: true
  30598. },
  30599. ]
  30600. ))
  30601. characterMakers.push(() => makeCharacter(
  30602. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30603. {
  30604. anthro: {
  30605. height: math.unit(6, "feet"),
  30606. weight: math.unit(150, "lb"),
  30607. name: "Anthro",
  30608. image: {
  30609. source: "./media/characters/razz/anthro.svg",
  30610. extra: 1437 / 1343,
  30611. bottom: 48 / 1485
  30612. }
  30613. },
  30614. feral: {
  30615. height: math.unit(6, "feet"),
  30616. weight: math.unit(150, "lb"),
  30617. name: "Feral",
  30618. image: {
  30619. source: "./media/characters/razz/feral.svg",
  30620. extra: 2569 / 1385,
  30621. bottom: 95 / 2664
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Normal",
  30628. height: math.unit(6, "feet"),
  30629. default: true
  30630. },
  30631. ]
  30632. ))
  30633. characterMakers.push(() => makeCharacter(
  30634. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30635. {
  30636. front: {
  30637. height: math.unit(9 + 4 / 12, "feet"),
  30638. weight: math.unit(500, "lb"),
  30639. name: "Front",
  30640. image: {
  30641. source: "./media/characters/morrigan/front.svg",
  30642. extra: 2707 / 2579,
  30643. bottom: 156 / 2863
  30644. }
  30645. },
  30646. },
  30647. [
  30648. {
  30649. name: "Normal",
  30650. height: math.unit(9 + 4 / 12, "feet"),
  30651. default: true
  30652. },
  30653. ]
  30654. ))
  30655. characterMakers.push(() => makeCharacter(
  30656. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30657. {
  30658. front: {
  30659. height: math.unit(5, "stories"),
  30660. weight: math.unit(4000, "lb"),
  30661. name: "Front",
  30662. image: {
  30663. source: "./media/characters/jenene/front.svg",
  30664. extra: 1780 / 1710,
  30665. bottom: 57 / 1837
  30666. }
  30667. },
  30668. },
  30669. [
  30670. {
  30671. name: "Normal",
  30672. height: math.unit(5, "stories"),
  30673. default: true
  30674. },
  30675. ]
  30676. ))
  30677. characterMakers.push(() => makeCharacter(
  30678. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30679. {
  30680. taurSfw: {
  30681. height: math.unit(10, "meters"),
  30682. weight: math.unit(17500, "kg"),
  30683. name: "Taur",
  30684. image: {
  30685. source: "./media/characters/faey/taur-sfw.svg",
  30686. extra: 1200 / 968,
  30687. bottom: 41 / 1241
  30688. }
  30689. },
  30690. chestmaw: {
  30691. height: math.unit(2.01, "meters"),
  30692. name: "Chestmaw",
  30693. image: {
  30694. source: "./media/characters/faey/chestmaw.svg"
  30695. }
  30696. },
  30697. foot: {
  30698. height: math.unit(2.43, "meters"),
  30699. name: "Foot",
  30700. image: {
  30701. source: "./media/characters/faey/foot.svg"
  30702. }
  30703. },
  30704. jaws: {
  30705. height: math.unit(1.66, "meters"),
  30706. name: "Jaws",
  30707. image: {
  30708. source: "./media/characters/faey/jaws.svg"
  30709. }
  30710. },
  30711. tongues: {
  30712. height: math.unit(2.01, "meters"),
  30713. name: "Tongues",
  30714. image: {
  30715. source: "./media/characters/faey/tongues.svg"
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Small",
  30722. height: math.unit(10, "meters"),
  30723. default: true
  30724. },
  30725. {
  30726. name: "Big",
  30727. height: math.unit(500000, "km")
  30728. },
  30729. ]
  30730. ))
  30731. characterMakers.push(() => makeCharacter(
  30732. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30733. {
  30734. front: {
  30735. height: math.unit(7, "feet"),
  30736. weight: math.unit(275, "lb"),
  30737. name: "Front",
  30738. image: {
  30739. source: "./media/characters/roku/front.svg",
  30740. extra: 903 / 878,
  30741. bottom: 37 / 940
  30742. }
  30743. },
  30744. },
  30745. [
  30746. {
  30747. name: "Normal",
  30748. height: math.unit(7, "feet"),
  30749. default: true
  30750. },
  30751. {
  30752. name: "Macro",
  30753. height: math.unit(500, "feet")
  30754. },
  30755. {
  30756. name: "Megamacro",
  30757. height: math.unit(200, "miles")
  30758. },
  30759. ]
  30760. ))
  30761. characterMakers.push(() => makeCharacter(
  30762. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30763. {
  30764. front: {
  30765. height: math.unit(6 + 2 / 12, "feet"),
  30766. weight: math.unit(150, "lb"),
  30767. name: "Front",
  30768. image: {
  30769. source: "./media/characters/lira/front.svg",
  30770. extra: 1727 / 1605,
  30771. bottom: 26 / 1753
  30772. }
  30773. },
  30774. back: {
  30775. height: math.unit(6 + 2 / 12, "feet"),
  30776. weight: math.unit(150, "lb"),
  30777. name: "Back",
  30778. image: {
  30779. source: "./media/characters/lira/back.svg",
  30780. extra: 1713/1621,
  30781. bottom: 20/1733
  30782. }
  30783. },
  30784. hand: {
  30785. height: math.unit(0.75, "feet"),
  30786. name: "Hand",
  30787. image: {
  30788. source: "./media/characters/lira/hand.svg"
  30789. }
  30790. },
  30791. maw: {
  30792. height: math.unit(0.65, "feet"),
  30793. name: "Maw",
  30794. image: {
  30795. source: "./media/characters/lira/maw.svg"
  30796. }
  30797. },
  30798. pawDigi: {
  30799. height: math.unit(1.6, "feet"),
  30800. name: "Paw Digi",
  30801. image: {
  30802. source: "./media/characters/lira/paw-digi.svg"
  30803. }
  30804. },
  30805. pawPlanti: {
  30806. height: math.unit(1.4, "feet"),
  30807. name: "Paw Planti",
  30808. image: {
  30809. source: "./media/characters/lira/paw-planti.svg"
  30810. }
  30811. },
  30812. },
  30813. [
  30814. {
  30815. name: "Normal",
  30816. height: math.unit(6 + 2 / 12, "feet"),
  30817. default: true
  30818. },
  30819. {
  30820. name: "Macro",
  30821. height: math.unit(100, "feet")
  30822. },
  30823. {
  30824. name: "Macro²",
  30825. height: math.unit(1600, "feet")
  30826. },
  30827. {
  30828. name: "Planetary",
  30829. height: math.unit(20, "earths")
  30830. },
  30831. ]
  30832. ))
  30833. characterMakers.push(() => makeCharacter(
  30834. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30835. {
  30836. front: {
  30837. height: math.unit(6, "feet"),
  30838. weight: math.unit(150, "lb"),
  30839. name: "Front",
  30840. image: {
  30841. source: "./media/characters/hadjet/front.svg",
  30842. extra: 1480 / 1346,
  30843. bottom: 26 / 1506
  30844. }
  30845. },
  30846. frontNsfw: {
  30847. height: math.unit(6, "feet"),
  30848. weight: math.unit(150, "lb"),
  30849. name: "Front (NSFW)",
  30850. image: {
  30851. source: "./media/characters/hadjet/front-nsfw.svg",
  30852. extra: 1440 / 1358,
  30853. bottom: 52 / 1492
  30854. }
  30855. },
  30856. },
  30857. [
  30858. {
  30859. name: "Macro",
  30860. height: math.unit(10, "stories"),
  30861. default: true
  30862. },
  30863. {
  30864. name: "Megamacro",
  30865. height: math.unit(1.5, "miles")
  30866. },
  30867. {
  30868. name: "Megamacro+",
  30869. height: math.unit(5, "miles")
  30870. },
  30871. ]
  30872. ))
  30873. characterMakers.push(() => makeCharacter(
  30874. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30875. {
  30876. side: {
  30877. height: math.unit(106, "feet"),
  30878. weight: math.unit(500, "tonnes"),
  30879. name: "Side",
  30880. image: {
  30881. source: "./media/characters/kodran/side.svg",
  30882. extra: 553 / 480,
  30883. bottom: 33 / 586
  30884. }
  30885. },
  30886. front: {
  30887. height: math.unit(132, "feet"),
  30888. weight: math.unit(500, "tonnes"),
  30889. name: "Front",
  30890. image: {
  30891. source: "./media/characters/kodran/front.svg",
  30892. extra: 667 / 643,
  30893. bottom: 42 / 709
  30894. }
  30895. },
  30896. flying: {
  30897. height: math.unit(350, "feet"),
  30898. weight: math.unit(500, "tonnes"),
  30899. name: "Flying",
  30900. image: {
  30901. source: "./media/characters/kodran/flying.svg"
  30902. }
  30903. },
  30904. foot: {
  30905. height: math.unit(33, "feet"),
  30906. name: "Foot",
  30907. image: {
  30908. source: "./media/characters/kodran/foot.svg"
  30909. }
  30910. },
  30911. footFront: {
  30912. height: math.unit(19, "feet"),
  30913. name: "Foot (Front)",
  30914. image: {
  30915. source: "./media/characters/kodran/foot-front.svg",
  30916. extra: 261 / 261,
  30917. bottom: 91 / 352
  30918. }
  30919. },
  30920. headFront: {
  30921. height: math.unit(53, "feet"),
  30922. name: "Head (Front)",
  30923. image: {
  30924. source: "./media/characters/kodran/head-front.svg"
  30925. }
  30926. },
  30927. headSide: {
  30928. height: math.unit(65, "feet"),
  30929. name: "Head (Side)",
  30930. image: {
  30931. source: "./media/characters/kodran/head-side.svg"
  30932. }
  30933. },
  30934. throat: {
  30935. height: math.unit(79, "feet"),
  30936. name: "Throat",
  30937. image: {
  30938. source: "./media/characters/kodran/throat.svg"
  30939. }
  30940. },
  30941. },
  30942. [
  30943. {
  30944. name: "Large",
  30945. height: math.unit(106, "feet"),
  30946. default: true
  30947. },
  30948. ]
  30949. ))
  30950. characterMakers.push(() => makeCharacter(
  30951. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30952. {
  30953. side: {
  30954. height: math.unit(11, "feet"),
  30955. weight: math.unit(150, "lb"),
  30956. name: "Side",
  30957. image: {
  30958. source: "./media/characters/pyxaron/side.svg",
  30959. extra: 305 / 195,
  30960. bottom: 17 / 322
  30961. }
  30962. },
  30963. },
  30964. [
  30965. {
  30966. name: "Normal",
  30967. height: math.unit(11, "feet"),
  30968. default: true
  30969. },
  30970. ]
  30971. ))
  30972. characterMakers.push(() => makeCharacter(
  30973. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30974. {
  30975. front: {
  30976. height: math.unit(6, "feet"),
  30977. weight: math.unit(150, "lb"),
  30978. name: "Front",
  30979. image: {
  30980. source: "./media/characters/meep/front.svg",
  30981. extra: 88 / 80,
  30982. bottom: 6 / 94
  30983. }
  30984. },
  30985. },
  30986. [
  30987. {
  30988. name: "Fun Sized",
  30989. height: math.unit(2, "inches"),
  30990. default: true
  30991. },
  30992. {
  30993. name: "Friend Sized",
  30994. height: math.unit(8, "inches")
  30995. },
  30996. ]
  30997. ))
  30998. characterMakers.push(() => makeCharacter(
  30999. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31000. {
  31001. front: {
  31002. height: math.unit(15, "feet"),
  31003. weight: math.unit(2500, "lb"),
  31004. name: "Front",
  31005. image: {
  31006. source: "./media/characters/holly-rabbit/front.svg",
  31007. extra: 1433 / 1233,
  31008. bottom: 125 / 1558
  31009. }
  31010. },
  31011. dick: {
  31012. height: math.unit(4.6, "feet"),
  31013. name: "Dick",
  31014. image: {
  31015. source: "./media/characters/holly-rabbit/dick.svg"
  31016. }
  31017. },
  31018. },
  31019. [
  31020. {
  31021. name: "Normal",
  31022. height: math.unit(15, "feet"),
  31023. default: true
  31024. },
  31025. {
  31026. name: "Macro",
  31027. height: math.unit(250, "feet")
  31028. },
  31029. {
  31030. name: "Macro+",
  31031. height: math.unit(2500, "feet")
  31032. },
  31033. ]
  31034. ))
  31035. characterMakers.push(() => makeCharacter(
  31036. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31037. {
  31038. front: {
  31039. height: math.unit(3.02, "meters"),
  31040. weight: math.unit(500, "kg"),
  31041. name: "Front",
  31042. image: {
  31043. source: "./media/characters/drena/front.svg",
  31044. extra: 282 / 243,
  31045. bottom: 8 / 290
  31046. }
  31047. },
  31048. side: {
  31049. height: math.unit(3.02, "meters"),
  31050. weight: math.unit(500, "kg"),
  31051. name: "Side",
  31052. image: {
  31053. source: "./media/characters/drena/side.svg",
  31054. extra: 280 / 245,
  31055. bottom: 10 / 290
  31056. }
  31057. },
  31058. back: {
  31059. height: math.unit(3.02, "meters"),
  31060. weight: math.unit(500, "kg"),
  31061. name: "Back",
  31062. image: {
  31063. source: "./media/characters/drena/back.svg",
  31064. extra: 278 / 243,
  31065. bottom: 2 / 280
  31066. }
  31067. },
  31068. foot: {
  31069. height: math.unit(0.75, "meters"),
  31070. name: "Foot",
  31071. image: {
  31072. source: "./media/characters/drena/foot.svg"
  31073. }
  31074. },
  31075. maw: {
  31076. height: math.unit(0.82, "meters"),
  31077. name: "Maw",
  31078. image: {
  31079. source: "./media/characters/drena/maw.svg"
  31080. }
  31081. },
  31082. eating: {
  31083. height: math.unit(0.75, "meters"),
  31084. name: "Eating",
  31085. image: {
  31086. source: "./media/characters/drena/eating.svg"
  31087. }
  31088. },
  31089. rump: {
  31090. height: math.unit(0.93, "meters"),
  31091. name: "Rump",
  31092. image: {
  31093. source: "./media/characters/drena/rump.svg"
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Normal",
  31100. height: math.unit(3.02, "meters"),
  31101. default: true
  31102. },
  31103. ]
  31104. ))
  31105. characterMakers.push(() => makeCharacter(
  31106. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31107. {
  31108. front: {
  31109. height: math.unit(6 + 4 / 12, "feet"),
  31110. weight: math.unit(250, "lb"),
  31111. name: "Front",
  31112. image: {
  31113. source: "./media/characters/remmyzilla/front.svg",
  31114. extra: 4033 / 3588,
  31115. bottom: 123 / 4156
  31116. }
  31117. },
  31118. back: {
  31119. height: math.unit(6 + 4 / 12, "feet"),
  31120. weight: math.unit(250, "lb"),
  31121. name: "Back",
  31122. image: {
  31123. source: "./media/characters/remmyzilla/back.svg",
  31124. extra: 1696/1602,
  31125. bottom: 63/1759
  31126. }
  31127. },
  31128. paw: {
  31129. height: math.unit(1.73, "feet"),
  31130. name: "Paw",
  31131. image: {
  31132. source: "./media/characters/remmyzilla/paw.svg"
  31133. },
  31134. extraAttributes: {
  31135. "toeSize": {
  31136. name: "Toe Size",
  31137. power: 2,
  31138. type: "area",
  31139. base: math.unit(0.0035, "m^2")
  31140. },
  31141. "padSize": {
  31142. name: "Pad Size",
  31143. power: 2,
  31144. type: "area",
  31145. base: math.unit(0.015, "m^2")
  31146. },
  31147. "pawsize": {
  31148. name: "Paw Size",
  31149. power: 2,
  31150. type: "area",
  31151. base: math.unit(0.072, "m^2")
  31152. },
  31153. }
  31154. },
  31155. maw: {
  31156. height: math.unit(1.73, "feet"),
  31157. name: "Maw",
  31158. image: {
  31159. source: "./media/characters/remmyzilla/maw.svg"
  31160. }
  31161. },
  31162. },
  31163. [
  31164. {
  31165. name: "Normal",
  31166. height: math.unit(6 + 4 / 12, "feet")
  31167. },
  31168. {
  31169. name: "Minimacro",
  31170. height: math.unit(12 + 8 / 12, "feet")
  31171. },
  31172. {
  31173. name: "Normal",
  31174. height: math.unit(640, "feet"),
  31175. default: true
  31176. },
  31177. {
  31178. name: "Megamacro",
  31179. height: math.unit(6400, "feet")
  31180. },
  31181. {
  31182. name: "Gigamacro",
  31183. height: math.unit(64000, "miles")
  31184. },
  31185. ]
  31186. ))
  31187. characterMakers.push(() => makeCharacter(
  31188. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31189. {
  31190. front: {
  31191. height: math.unit(2.5, "meters"),
  31192. weight: math.unit(300, "lb"),
  31193. name: "Front",
  31194. image: {
  31195. source: "./media/characters/lawrence/front.svg",
  31196. extra: 357 / 335,
  31197. bottom: 30 / 387
  31198. }
  31199. },
  31200. back: {
  31201. height: math.unit(2.5, "meters"),
  31202. weight: math.unit(300, "lb"),
  31203. name: "Back",
  31204. image: {
  31205. source: "./media/characters/lawrence/back.svg",
  31206. extra: 357 / 338,
  31207. bottom: 16 / 373
  31208. }
  31209. },
  31210. head: {
  31211. height: math.unit(0.9, "meter"),
  31212. name: "Head",
  31213. image: {
  31214. source: "./media/characters/lawrence/head.svg"
  31215. }
  31216. },
  31217. maw: {
  31218. height: math.unit(0.7, "meter"),
  31219. name: "Maw",
  31220. image: {
  31221. source: "./media/characters/lawrence/maw.svg"
  31222. }
  31223. },
  31224. footBottom: {
  31225. height: math.unit(0.5, "meter"),
  31226. name: "Foot (Bottom)",
  31227. image: {
  31228. source: "./media/characters/lawrence/foot-bottom.svg"
  31229. }
  31230. },
  31231. footTop: {
  31232. height: math.unit(0.5, "meter"),
  31233. name: "Foot (Top)",
  31234. image: {
  31235. source: "./media/characters/lawrence/foot-top.svg"
  31236. }
  31237. },
  31238. },
  31239. [
  31240. {
  31241. name: "Normal",
  31242. height: math.unit(2.5, "meters"),
  31243. default: true
  31244. },
  31245. {
  31246. name: "Macro",
  31247. height: math.unit(95, "meters")
  31248. },
  31249. {
  31250. name: "Megamacro",
  31251. height: math.unit(150, "km")
  31252. },
  31253. ]
  31254. ))
  31255. characterMakers.push(() => makeCharacter(
  31256. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31257. {
  31258. front: {
  31259. height: math.unit(4.2, "meters"),
  31260. preyCapacity: math.unit(50, "m^3"),
  31261. weight: math.unit(30, "tonnes"),
  31262. name: "Front",
  31263. image: {
  31264. source: "./media/characters/sydney/front.svg",
  31265. extra: 1177/1129,
  31266. bottom: 197/1374
  31267. },
  31268. extraAttributes: {
  31269. "length": {
  31270. name: "Length",
  31271. power: 1,
  31272. type: "length",
  31273. base: math.unit(21, "meters")
  31274. },
  31275. }
  31276. },
  31277. },
  31278. [
  31279. {
  31280. name: "Normal",
  31281. height: math.unit(4.2, "meters"),
  31282. default: true
  31283. },
  31284. ]
  31285. ))
  31286. characterMakers.push(() => makeCharacter(
  31287. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31288. {
  31289. back: {
  31290. height: math.unit(201, "feet"),
  31291. name: "Back",
  31292. image: {
  31293. source: "./media/characters/jessica/back.svg",
  31294. extra: 273 / 259,
  31295. bottom: 7 / 280
  31296. }
  31297. },
  31298. },
  31299. [
  31300. {
  31301. name: "Normal",
  31302. height: math.unit(201, "feet"),
  31303. default: true
  31304. },
  31305. {
  31306. name: "Megamacro",
  31307. height: math.unit(8, "miles")
  31308. },
  31309. ]
  31310. ))
  31311. characterMakers.push(() => makeCharacter(
  31312. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31313. {
  31314. side: {
  31315. height: math.unit(5.6, "m"),
  31316. weight: math.unit(8000, "kg"),
  31317. name: "Side",
  31318. image: {
  31319. source: "./media/characters/victoria/side.svg",
  31320. extra: 1542/1229,
  31321. bottom: 124/1666
  31322. }
  31323. },
  31324. maw: {
  31325. height: math.unit(7.14, "feet"),
  31326. name: "Maw",
  31327. image: {
  31328. source: "./media/characters/victoria/maw.svg"
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Normal",
  31335. height: math.unit(5.6, "m"),
  31336. default: true
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31342. {
  31343. front: {
  31344. height: math.unit(5 + 6 / 12, "feet"),
  31345. name: "Front",
  31346. image: {
  31347. source: "./media/characters/cat/front.svg",
  31348. extra: 1449/1295,
  31349. bottom: 34/1483
  31350. },
  31351. form: "cat",
  31352. default: true
  31353. },
  31354. back: {
  31355. height: math.unit(5 + 6 / 12, "feet"),
  31356. name: "Back",
  31357. image: {
  31358. source: "./media/characters/cat/back.svg",
  31359. extra: 1466/1301,
  31360. bottom: 19/1485
  31361. },
  31362. form: "cat"
  31363. },
  31364. taur: {
  31365. height: math.unit(7, "feet"),
  31366. name: "Taur",
  31367. image: {
  31368. source: "./media/characters/cat/taur.svg",
  31369. extra: 1389/1233,
  31370. bottom: 83/1472
  31371. },
  31372. form: "taur",
  31373. default: true
  31374. },
  31375. lucarioFront: {
  31376. height: math.unit(4, "feet"),
  31377. name: "Lucario (Front)",
  31378. image: {
  31379. source: "./media/characters/cat/lucario-front.svg",
  31380. extra: 1149/1019,
  31381. bottom: 84/1233
  31382. },
  31383. form: "lucario",
  31384. default: true
  31385. },
  31386. lucarioBack: {
  31387. height: math.unit(4, "feet"),
  31388. name: "Lucario (Back)",
  31389. image: {
  31390. source: "./media/characters/cat/lucario-back.svg",
  31391. extra: 1190/1059,
  31392. bottom: 33/1223
  31393. },
  31394. form: "lucario"
  31395. },
  31396. megaLucario: {
  31397. height: math.unit(4, "feet"),
  31398. name: "Mega Lucario",
  31399. image: {
  31400. source: "./media/characters/cat/mega-lucario.svg",
  31401. extra: 1515 / 1319,
  31402. bottom: 63 / 1578
  31403. },
  31404. form: "lucario"
  31405. },
  31406. nickit: {
  31407. height: math.unit(2, "feet"),
  31408. name: "Nickit",
  31409. image: {
  31410. source: "./media/characters/cat/nickit.svg",
  31411. extra: 1980 / 1585,
  31412. bottom: 102 / 2082
  31413. },
  31414. form: "nickit",
  31415. default: true
  31416. },
  31417. lopunnyFront: {
  31418. height: math.unit(5, "feet"),
  31419. name: "Lopunny (Front)",
  31420. image: {
  31421. source: "./media/characters/cat/lopunny-front.svg",
  31422. extra: 1782 / 1469,
  31423. bottom: 38 / 1820
  31424. },
  31425. form: "lopunny",
  31426. default: true
  31427. },
  31428. lopunnyBack: {
  31429. height: math.unit(5, "feet"),
  31430. name: "Lopunny (Back)",
  31431. image: {
  31432. source: "./media/characters/cat/lopunny-back.svg",
  31433. extra: 1660 / 1490,
  31434. bottom: 25 / 1685
  31435. },
  31436. form: "lopunny"
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Really small",
  31442. height: math.unit(1, "nm"),
  31443. allForms: true
  31444. },
  31445. {
  31446. name: "Micro",
  31447. height: math.unit(5, "inches"),
  31448. allForms: true
  31449. },
  31450. {
  31451. name: "Normal",
  31452. height: math.unit(5 + 6 / 12, "feet"),
  31453. default: true,
  31454. form: "cat"
  31455. },
  31456. {
  31457. name: "Normal",
  31458. height: math.unit(7, "feet"),
  31459. default: true,
  31460. form: "taur"
  31461. },
  31462. {
  31463. name: "Normal",
  31464. height: math.unit(4, "feet"),
  31465. default: true,
  31466. form: "lucario"
  31467. },
  31468. {
  31469. name: "Normal",
  31470. height: math.unit(2, "feet"),
  31471. default: true,
  31472. form: "nickit"
  31473. },
  31474. {
  31475. name: "Normal",
  31476. height: math.unit(5, "feet"),
  31477. default: true,
  31478. form: "lopunny"
  31479. },
  31480. {
  31481. name: "Macro",
  31482. height: math.unit(50, "feet"),
  31483. allForms: true
  31484. },
  31485. {
  31486. name: "Macro+",
  31487. height: math.unit(150, "feet"),
  31488. allForms: true
  31489. },
  31490. {
  31491. name: "Megamacro",
  31492. height: math.unit(100, "miles"),
  31493. allForms: true
  31494. },
  31495. ],
  31496. {
  31497. "cat": {
  31498. name: "Cat",
  31499. default: true
  31500. },
  31501. "taur": {
  31502. name: "Taur",
  31503. },
  31504. "lucario": {
  31505. name: "Lucario",
  31506. },
  31507. "nickit": {
  31508. name: "Nickit",
  31509. },
  31510. "lopunny": {
  31511. name: "Lopunny",
  31512. }
  31513. }
  31514. ))
  31515. characterMakers.push(() => makeCharacter(
  31516. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31517. {
  31518. front: {
  31519. height: math.unit(63.4, "meters"),
  31520. weight: math.unit(3.28349e+6, "kilograms"),
  31521. name: "Front",
  31522. image: {
  31523. source: "./media/characters/kirina-violet/front.svg",
  31524. extra: 2812 / 2725,
  31525. bottom: 0 / 2812
  31526. }
  31527. },
  31528. back: {
  31529. height: math.unit(63.4, "meters"),
  31530. weight: math.unit(3.28349e+6, "kilograms"),
  31531. name: "Back",
  31532. image: {
  31533. source: "./media/characters/kirina-violet/back.svg",
  31534. extra: 2812 / 2725,
  31535. bottom: 0 / 2812
  31536. }
  31537. },
  31538. mouth: {
  31539. height: math.unit(4.35, "meters"),
  31540. name: "Mouth",
  31541. image: {
  31542. source: "./media/characters/kirina-violet/mouth.svg"
  31543. }
  31544. },
  31545. paw: {
  31546. height: math.unit(5.6, "meters"),
  31547. name: "Paw",
  31548. image: {
  31549. source: "./media/characters/kirina-violet/paw.svg"
  31550. }
  31551. },
  31552. tail: {
  31553. height: math.unit(18, "meters"),
  31554. name: "Tail",
  31555. image: {
  31556. source: "./media/characters/kirina-violet/tail.svg"
  31557. }
  31558. },
  31559. },
  31560. [
  31561. {
  31562. name: "Macro",
  31563. height: math.unit(63.4, "meters"),
  31564. default: true
  31565. },
  31566. ]
  31567. ))
  31568. characterMakers.push(() => makeCharacter(
  31569. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31570. {
  31571. front: {
  31572. height: math.unit(75, "feet"),
  31573. name: "Front",
  31574. image: {
  31575. source: "./media/characters/cat-gigachu/front.svg",
  31576. extra: 1239/1027,
  31577. bottom: 32/1271
  31578. }
  31579. },
  31580. back: {
  31581. height: math.unit(75, "feet"),
  31582. name: "Back",
  31583. image: {
  31584. source: "./media/characters/cat-gigachu/back.svg",
  31585. extra: 1229/1030,
  31586. bottom: 9/1238
  31587. }
  31588. },
  31589. },
  31590. [
  31591. {
  31592. name: "Dynamax",
  31593. height: math.unit(75, "feet"),
  31594. default: true
  31595. },
  31596. ]
  31597. ))
  31598. characterMakers.push(() => makeCharacter(
  31599. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31600. {
  31601. front: {
  31602. height: math.unit(6, "feet"),
  31603. weight: math.unit(150, "lb"),
  31604. name: "Front",
  31605. image: {
  31606. source: "./media/characters/sfaiyan/front.svg",
  31607. extra: 999 / 978,
  31608. bottom: 5 / 1004
  31609. }
  31610. },
  31611. },
  31612. [
  31613. {
  31614. name: "Normal",
  31615. height: math.unit(1.82, "meters")
  31616. },
  31617. {
  31618. name: "Giant",
  31619. height: math.unit(2.27, "km"),
  31620. default: true
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31626. {
  31627. front: {
  31628. height: math.unit(179, "cm"),
  31629. weight: math.unit(100, "kg"),
  31630. name: "Front",
  31631. image: {
  31632. source: "./media/characters/raunehkeli/front.svg",
  31633. extra: 1934 / 1926,
  31634. bottom: 0 / 1934
  31635. }
  31636. },
  31637. },
  31638. [
  31639. {
  31640. name: "Normal",
  31641. height: math.unit(179, "cm")
  31642. },
  31643. {
  31644. name: "Maximum",
  31645. height: math.unit(575, "meters"),
  31646. default: true
  31647. },
  31648. ]
  31649. ))
  31650. characterMakers.push(() => makeCharacter(
  31651. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31652. {
  31653. front: {
  31654. height: math.unit(6, "feet"),
  31655. weight: math.unit(150, "lb"),
  31656. name: "Front",
  31657. image: {
  31658. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31659. extra: 2625 / 2518,
  31660. bottom: 60 / 2685
  31661. }
  31662. },
  31663. },
  31664. [
  31665. {
  31666. name: "Normal",
  31667. height: math.unit(6 + 2 / 12, "feet")
  31668. },
  31669. {
  31670. name: "Macro",
  31671. height: math.unit(1180, "feet"),
  31672. default: true
  31673. },
  31674. ]
  31675. ))
  31676. characterMakers.push(() => makeCharacter(
  31677. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31678. {
  31679. front: {
  31680. height: math.unit(5 + 6 / 12, "feet"),
  31681. weight: math.unit(108, "lb"),
  31682. name: "Front",
  31683. image: {
  31684. source: "./media/characters/lilith-zott/front.svg",
  31685. extra: 2510 / 2238,
  31686. bottom: 100 / 2610
  31687. }
  31688. },
  31689. frontDressed: {
  31690. height: math.unit(5 + 6 / 12, "feet"),
  31691. weight: math.unit(108, "lb"),
  31692. name: "Front (Dressed)",
  31693. image: {
  31694. source: "./media/characters/lilith-zott/front-dressed.svg",
  31695. extra: 2510 / 2238,
  31696. bottom: 100 / 2610
  31697. }
  31698. },
  31699. },
  31700. [
  31701. {
  31702. name: "Normal",
  31703. height: math.unit(5 + 6 / 12, "feet")
  31704. },
  31705. {
  31706. name: "Macro",
  31707. height: math.unit(1030, "feet"),
  31708. default: true
  31709. },
  31710. ]
  31711. ))
  31712. characterMakers.push(() => makeCharacter(
  31713. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31714. {
  31715. front: {
  31716. height: math.unit(6, "feet"),
  31717. weight: math.unit(150, "lb"),
  31718. name: "Front",
  31719. image: {
  31720. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31721. extra: 2567 / 2435,
  31722. bottom: 39 / 2606
  31723. }
  31724. },
  31725. frontSuper: {
  31726. height: math.unit(6, "feet"),
  31727. name: "Front (Super)",
  31728. image: {
  31729. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31730. extra: 2567 / 2435,
  31731. bottom: 39 / 2606
  31732. }
  31733. },
  31734. },
  31735. [
  31736. {
  31737. name: "Normal",
  31738. height: math.unit(5 + 10 / 12, "feet")
  31739. },
  31740. {
  31741. name: "Macro",
  31742. height: math.unit(1100, "feet"),
  31743. default: true
  31744. },
  31745. ]
  31746. ))
  31747. characterMakers.push(() => makeCharacter(
  31748. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31749. {
  31750. front: {
  31751. height: math.unit(100, "miles"),
  31752. name: "Front",
  31753. image: {
  31754. source: "./media/characters/sona/front.svg",
  31755. extra: 2433 / 2201,
  31756. bottom: 53 / 2486
  31757. }
  31758. },
  31759. foot: {
  31760. height: math.unit(16.1, "miles"),
  31761. name: "Foot",
  31762. image: {
  31763. source: "./media/characters/sona/foot.svg"
  31764. }
  31765. },
  31766. },
  31767. [
  31768. {
  31769. name: "Macro",
  31770. height: math.unit(100, "miles"),
  31771. default: true
  31772. },
  31773. ]
  31774. ))
  31775. characterMakers.push(() => makeCharacter(
  31776. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31777. {
  31778. front: {
  31779. height: math.unit(6, "feet"),
  31780. weight: math.unit(150, "lb"),
  31781. name: "Front",
  31782. image: {
  31783. source: "./media/characters/bailey/front.svg",
  31784. extra: 1778 / 1724,
  31785. bottom: 30 / 1808
  31786. }
  31787. },
  31788. },
  31789. [
  31790. {
  31791. name: "Micro",
  31792. height: math.unit(4, "inches")
  31793. },
  31794. {
  31795. name: "Normal",
  31796. height: math.unit(5 + 5 / 12, "feet"),
  31797. default: true
  31798. },
  31799. {
  31800. name: "Macro",
  31801. height: math.unit(250, "feet")
  31802. },
  31803. {
  31804. name: "Megamacro",
  31805. height: math.unit(100, "miles")
  31806. },
  31807. ]
  31808. ))
  31809. characterMakers.push(() => makeCharacter(
  31810. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31811. {
  31812. front: {
  31813. height: math.unit(5 + 2 / 12, "feet"),
  31814. weight: math.unit(120, "lb"),
  31815. name: "Front",
  31816. image: {
  31817. source: "./media/characters/snaps/front.svg",
  31818. extra: 2370 / 2177,
  31819. bottom: 48 / 2418
  31820. }
  31821. },
  31822. back: {
  31823. height: math.unit(5 + 2 / 12, "feet"),
  31824. weight: math.unit(120, "lb"),
  31825. name: "Back",
  31826. image: {
  31827. source: "./media/characters/snaps/back.svg",
  31828. extra: 2408 / 2258,
  31829. bottom: 15 / 2423
  31830. }
  31831. },
  31832. },
  31833. [
  31834. {
  31835. name: "Micro",
  31836. height: math.unit(9, "inches")
  31837. },
  31838. {
  31839. name: "Normal",
  31840. height: math.unit(5 + 2 / 12, "feet"),
  31841. default: true
  31842. },
  31843. {
  31844. name: "Mini Macro",
  31845. height: math.unit(10, "feet")
  31846. },
  31847. ]
  31848. ))
  31849. characterMakers.push(() => makeCharacter(
  31850. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31851. {
  31852. front: {
  31853. height: math.unit(1.8, "meters"),
  31854. weight: math.unit(85, "kg"),
  31855. name: "Front",
  31856. image: {
  31857. source: "./media/characters/azteck/front.svg",
  31858. extra: 2815 / 2625,
  31859. bottom: 89 / 2904
  31860. }
  31861. },
  31862. back: {
  31863. height: math.unit(1.8, "meters"),
  31864. weight: math.unit(85, "kg"),
  31865. name: "Back",
  31866. image: {
  31867. source: "./media/characters/azteck/back.svg",
  31868. extra: 2856 / 2648,
  31869. bottom: 85 / 2941
  31870. }
  31871. },
  31872. frontDressed: {
  31873. height: math.unit(1.8, "meters"),
  31874. weight: math.unit(85, "kg"),
  31875. name: "Front (Dressed)",
  31876. image: {
  31877. source: "./media/characters/azteck/front-dressed.svg",
  31878. extra: 2147 / 2003,
  31879. bottom: 68 / 2215
  31880. }
  31881. },
  31882. head: {
  31883. height: math.unit(0.47, "meters"),
  31884. weight: math.unit(85, "kg"),
  31885. name: "Head",
  31886. image: {
  31887. source: "./media/characters/azteck/head.svg"
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Bite sized",
  31894. height: math.unit(16, "cm")
  31895. },
  31896. {
  31897. name: "Normal",
  31898. height: math.unit(1.8, "meters"),
  31899. default: true
  31900. },
  31901. ]
  31902. ))
  31903. characterMakers.push(() => makeCharacter(
  31904. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31905. {
  31906. front: {
  31907. height: math.unit(6, "feet"),
  31908. weight: math.unit(150, "lb"),
  31909. name: "Front",
  31910. image: {
  31911. source: "./media/characters/pidge/front.svg",
  31912. extra: 1936/1820,
  31913. bottom: 0/1936
  31914. }
  31915. },
  31916. back: {
  31917. height: math.unit(6, "feet"),
  31918. weight: math.unit(150, "lb"),
  31919. name: "Back",
  31920. image: {
  31921. source: "./media/characters/pidge/back.svg",
  31922. extra: 1938/1843,
  31923. bottom: 0/1938
  31924. }
  31925. },
  31926. casual: {
  31927. height: math.unit(6, "feet"),
  31928. weight: math.unit(150, "lb"),
  31929. name: "Casual",
  31930. image: {
  31931. source: "./media/characters/pidge/casual.svg",
  31932. extra: 1936/1820,
  31933. bottom: 0/1936
  31934. }
  31935. },
  31936. tech: {
  31937. height: math.unit(6, "feet"),
  31938. weight: math.unit(150, "lb"),
  31939. name: "Tech",
  31940. image: {
  31941. source: "./media/characters/pidge/tech.svg",
  31942. extra: 1802/1682,
  31943. bottom: 0/1802
  31944. }
  31945. },
  31946. head: {
  31947. height: math.unit(1.61, "feet"),
  31948. name: "Head",
  31949. image: {
  31950. source: "./media/characters/pidge/head.svg"
  31951. }
  31952. },
  31953. collar: {
  31954. height: math.unit(0.82, "feet"),
  31955. name: "Collar",
  31956. image: {
  31957. source: "./media/characters/pidge/collar.svg"
  31958. }
  31959. },
  31960. },
  31961. [
  31962. {
  31963. name: "Macro",
  31964. height: math.unit(2, "mile"),
  31965. default: true
  31966. },
  31967. {
  31968. name: "PUPPY",
  31969. height: math.unit(20, "miles")
  31970. },
  31971. ]
  31972. ))
  31973. characterMakers.push(() => makeCharacter(
  31974. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31975. {
  31976. front: {
  31977. height: math.unit(6, "feet"),
  31978. weight: math.unit(150, "lb"),
  31979. name: "Front",
  31980. image: {
  31981. source: "./media/characters/en/front.svg",
  31982. extra: 1697 / 1563,
  31983. bottom: 103 / 1800
  31984. }
  31985. },
  31986. back: {
  31987. height: math.unit(6, "feet"),
  31988. weight: math.unit(150, "lb"),
  31989. name: "Back",
  31990. image: {
  31991. source: "./media/characters/en/back.svg",
  31992. extra: 1700 / 1570,
  31993. bottom: 51 / 1751
  31994. }
  31995. },
  31996. frontDressed: {
  31997. height: math.unit(6, "feet"),
  31998. weight: math.unit(150, "lb"),
  31999. name: "Front (Dressed)",
  32000. image: {
  32001. source: "./media/characters/en/front-dressed.svg",
  32002. extra: 1697 / 1563,
  32003. bottom: 103 / 1800
  32004. }
  32005. },
  32006. backDressed: {
  32007. height: math.unit(6, "feet"),
  32008. weight: math.unit(150, "lb"),
  32009. name: "Back (Dressed)",
  32010. image: {
  32011. source: "./media/characters/en/back-dressed.svg",
  32012. extra: 1700 / 1570,
  32013. bottom: 51 / 1751
  32014. }
  32015. },
  32016. },
  32017. [
  32018. {
  32019. name: "Macro",
  32020. height: math.unit(210, "feet"),
  32021. default: true
  32022. },
  32023. ]
  32024. ))
  32025. characterMakers.push(() => makeCharacter(
  32026. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32027. {
  32028. front: {
  32029. height: math.unit(6, "feet"),
  32030. weight: math.unit(150, "lb"),
  32031. name: "Front",
  32032. image: {
  32033. source: "./media/characters/haze-orris/front.svg",
  32034. extra: 3975 / 3525,
  32035. bottom: 137 / 4112
  32036. }
  32037. },
  32038. },
  32039. [
  32040. {
  32041. name: "Micro",
  32042. height: math.unit(150, "mm"),
  32043. default: true
  32044. },
  32045. ]
  32046. ))
  32047. characterMakers.push(() => makeCharacter(
  32048. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32049. {
  32050. front: {
  32051. height: math.unit(6, "feet"),
  32052. weight: math.unit(150, "lb"),
  32053. name: "Front",
  32054. image: {
  32055. source: "./media/characters/casselene-yaro/front.svg",
  32056. extra: 4721 / 4541,
  32057. bottom: 82 / 4803
  32058. }
  32059. },
  32060. back: {
  32061. height: math.unit(6, "feet"),
  32062. weight: math.unit(150, "lb"),
  32063. name: "Back",
  32064. image: {
  32065. source: "./media/characters/casselene-yaro/back.svg",
  32066. extra: 4569 / 4377,
  32067. bottom: 69 / 4638
  32068. }
  32069. },
  32070. dressed: {
  32071. height: math.unit(6, "feet"),
  32072. weight: math.unit(150, "lb"),
  32073. name: "Dressed",
  32074. image: {
  32075. source: "./media/characters/casselene-yaro/dressed.svg",
  32076. extra: 4721 / 4541,
  32077. bottom: 82 / 4803
  32078. }
  32079. },
  32080. maw: {
  32081. height: math.unit(1, "feet"),
  32082. name: "Maw",
  32083. image: {
  32084. source: "./media/characters/casselene-yaro/maw.svg"
  32085. }
  32086. },
  32087. },
  32088. [
  32089. {
  32090. name: "Macro",
  32091. height: math.unit(190, "feet"),
  32092. default: true
  32093. },
  32094. ]
  32095. ))
  32096. characterMakers.push(() => makeCharacter(
  32097. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32098. {
  32099. front: {
  32100. height: math.unit(10, "feet"),
  32101. weight: math.unit(15015, "lb"),
  32102. name: "Front",
  32103. image: {
  32104. source: "./media/characters/platine/front.svg",
  32105. extra: 1741/1650,
  32106. bottom: 84/1825
  32107. }
  32108. },
  32109. side: {
  32110. height: math.unit(10, "feet"),
  32111. weight: math.unit(15015, "lb"),
  32112. name: "Side",
  32113. image: {
  32114. source: "./media/characters/platine/side.svg",
  32115. extra: 1790/1705,
  32116. bottom: 29/1819
  32117. }
  32118. },
  32119. },
  32120. [
  32121. {
  32122. name: "Normal",
  32123. height: math.unit(10, "feet"),
  32124. default: true
  32125. },
  32126. {
  32127. name: "Macro",
  32128. height: math.unit(100, "feet")
  32129. },
  32130. {
  32131. name: "Megamacro",
  32132. height: math.unit(1000, "feet")
  32133. },
  32134. ]
  32135. ))
  32136. characterMakers.push(() => makeCharacter(
  32137. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32138. {
  32139. front: {
  32140. height: math.unit(15 + 5 / 12, "feet"),
  32141. weight: math.unit(4600, "lb"),
  32142. name: "Front",
  32143. image: {
  32144. source: "./media/characters/neapolitan-ananassa/front.svg",
  32145. extra: 2903 / 2736,
  32146. bottom: 0 / 2903
  32147. }
  32148. },
  32149. side: {
  32150. height: math.unit(15 + 5 / 12, "feet"),
  32151. weight: math.unit(4600, "lb"),
  32152. name: "Side",
  32153. image: {
  32154. source: "./media/characters/neapolitan-ananassa/side.svg",
  32155. extra: 2925 / 2719,
  32156. bottom: 0 / 2925
  32157. }
  32158. },
  32159. back: {
  32160. height: math.unit(15 + 5 / 12, "feet"),
  32161. weight: math.unit(4600, "lb"),
  32162. name: "Back",
  32163. image: {
  32164. source: "./media/characters/neapolitan-ananassa/back.svg",
  32165. extra: 2903 / 2736,
  32166. bottom: 0 / 2903
  32167. }
  32168. },
  32169. },
  32170. [
  32171. {
  32172. name: "Normal",
  32173. height: math.unit(15 + 5 / 12, "feet"),
  32174. default: true
  32175. },
  32176. {
  32177. name: "Post-Millenium",
  32178. height: math.unit(35 + 5 / 12, "feet")
  32179. },
  32180. {
  32181. name: "Post-Era",
  32182. height: math.unit(450 + 5 / 12, "feet")
  32183. },
  32184. ]
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32188. {
  32189. front: {
  32190. height: math.unit(300, "meters"),
  32191. weight: math.unit(125000, "tonnes"),
  32192. name: "Front",
  32193. image: {
  32194. source: "./media/characters/pazuzu/front.svg",
  32195. extra: 877 / 794,
  32196. bottom: 47 / 924
  32197. }
  32198. },
  32199. },
  32200. [
  32201. {
  32202. name: "Macro",
  32203. height: math.unit(300, "meters"),
  32204. default: true
  32205. },
  32206. ]
  32207. ))
  32208. characterMakers.push(() => makeCharacter(
  32209. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32210. {
  32211. side: {
  32212. height: math.unit(10 + 7 / 12, "feet"),
  32213. weight: math.unit(2.5, "tons"),
  32214. name: "Side",
  32215. image: {
  32216. source: "./media/characters/aasha/side.svg",
  32217. extra: 1345 / 1245,
  32218. bottom: 111 / 1456
  32219. }
  32220. },
  32221. back: {
  32222. height: math.unit(10 + 7 / 12, "feet"),
  32223. weight: math.unit(2.5, "tons"),
  32224. name: "Back",
  32225. image: {
  32226. source: "./media/characters/aasha/back.svg",
  32227. extra: 1133 / 1057,
  32228. bottom: 257 / 1390
  32229. }
  32230. },
  32231. },
  32232. [
  32233. {
  32234. name: "Normal",
  32235. height: math.unit(10 + 7 / 12, "feet"),
  32236. default: true
  32237. },
  32238. ]
  32239. ))
  32240. characterMakers.push(() => makeCharacter(
  32241. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32242. {
  32243. front: {
  32244. height: math.unit(6 + 3 / 12, "feet"),
  32245. name: "Front",
  32246. image: {
  32247. source: "./media/characters/nevan/front.svg",
  32248. extra: 704 / 704,
  32249. bottom: 28 / 732
  32250. }
  32251. },
  32252. back: {
  32253. height: math.unit(6 + 3 / 12, "feet"),
  32254. name: "Back",
  32255. image: {
  32256. source: "./media/characters/nevan/back.svg",
  32257. extra: 714 / 714,
  32258. bottom: 21 / 735
  32259. }
  32260. },
  32261. frontFlaccid: {
  32262. height: math.unit(6 + 3 / 12, "feet"),
  32263. name: "Front (Flaccid)",
  32264. image: {
  32265. source: "./media/characters/nevan/front-flaccid.svg",
  32266. extra: 704 / 704,
  32267. bottom: 28 / 732
  32268. }
  32269. },
  32270. frontErect: {
  32271. height: math.unit(6 + 3 / 12, "feet"),
  32272. name: "Front (Erect)",
  32273. image: {
  32274. source: "./media/characters/nevan/front-erect.svg",
  32275. extra: 704 / 704,
  32276. bottom: 28 / 732
  32277. }
  32278. },
  32279. backFlaccid: {
  32280. height: math.unit(6 + 3 / 12, "feet"),
  32281. name: "Back (Flaccid)",
  32282. image: {
  32283. source: "./media/characters/nevan/back-flaccid.svg",
  32284. extra: 714 / 714,
  32285. bottom: 21 / 735
  32286. }
  32287. },
  32288. },
  32289. [
  32290. {
  32291. name: "Normal",
  32292. height: math.unit(6 + 3 / 12, "feet"),
  32293. default: true
  32294. },
  32295. ]
  32296. ))
  32297. characterMakers.push(() => makeCharacter(
  32298. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32299. {
  32300. front: {
  32301. height: math.unit(4, "feet"),
  32302. name: "Front",
  32303. image: {
  32304. source: "./media/characters/arhan/front.svg",
  32305. extra: 3368 / 3133,
  32306. bottom: 0 / 3368
  32307. }
  32308. },
  32309. side: {
  32310. height: math.unit(4, "feet"),
  32311. name: "Side",
  32312. image: {
  32313. source: "./media/characters/arhan/side.svg",
  32314. extra: 3347 / 3105,
  32315. bottom: 0 / 3347
  32316. }
  32317. },
  32318. tongue: {
  32319. height: math.unit(1.42, "feet"),
  32320. name: "Tongue",
  32321. image: {
  32322. source: "./media/characters/arhan/tongue.svg"
  32323. }
  32324. },
  32325. head: {
  32326. height: math.unit(0.85, "feet"),
  32327. name: "Head",
  32328. image: {
  32329. source: "./media/characters/arhan/head.svg"
  32330. }
  32331. },
  32332. },
  32333. [
  32334. {
  32335. name: "Normal",
  32336. height: math.unit(4, "feet"),
  32337. default: true
  32338. },
  32339. ]
  32340. ))
  32341. characterMakers.push(() => makeCharacter(
  32342. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32343. {
  32344. front: {
  32345. height: math.unit(5 + 7.5 / 12, "feet"),
  32346. weight: math.unit(120, "lb"),
  32347. name: "Front",
  32348. image: {
  32349. source: "./media/characters/digi-duncan/front.svg",
  32350. extra: 330 / 326,
  32351. bottom: 16 / 346
  32352. }
  32353. },
  32354. side: {
  32355. height: math.unit(5 + 7.5 / 12, "feet"),
  32356. weight: math.unit(120, "lb"),
  32357. name: "Side",
  32358. image: {
  32359. source: "./media/characters/digi-duncan/side.svg",
  32360. extra: 341 / 337,
  32361. bottom: 1 / 342
  32362. }
  32363. },
  32364. back: {
  32365. height: math.unit(5 + 7.5 / 12, "feet"),
  32366. weight: math.unit(120, "lb"),
  32367. name: "Back",
  32368. image: {
  32369. source: "./media/characters/digi-duncan/back.svg",
  32370. extra: 330 / 326,
  32371. bottom: 12 / 342
  32372. }
  32373. },
  32374. },
  32375. [
  32376. {
  32377. name: "Speck",
  32378. height: math.unit(0.25, "mm")
  32379. },
  32380. {
  32381. name: "Micro",
  32382. height: math.unit(5, "mm")
  32383. },
  32384. {
  32385. name: "Tiny",
  32386. height: math.unit(0.5, "inches"),
  32387. default: true
  32388. },
  32389. {
  32390. name: "Human",
  32391. height: math.unit(5 + 7.5 / 12, "feet")
  32392. },
  32393. {
  32394. name: "Minigiant",
  32395. height: math.unit(8 + 5.25, "feet")
  32396. },
  32397. {
  32398. name: "Giant",
  32399. height: math.unit(2000, "feet")
  32400. },
  32401. {
  32402. name: "Mega",
  32403. height: math.unit(371.1, "miles")
  32404. },
  32405. ]
  32406. ))
  32407. characterMakers.push(() => makeCharacter(
  32408. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32409. {
  32410. front: {
  32411. height: math.unit(2, "meters"),
  32412. weight: math.unit(350, "kg"),
  32413. name: "Front",
  32414. image: {
  32415. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32416. extra: 898 / 838,
  32417. bottom: 9 / 907
  32418. }
  32419. },
  32420. },
  32421. [
  32422. {
  32423. name: "Micro",
  32424. height: math.unit(8, "meters")
  32425. },
  32426. {
  32427. name: "Normal",
  32428. height: math.unit(50, "meters"),
  32429. default: true
  32430. },
  32431. {
  32432. name: "Macro",
  32433. height: math.unit(500, "meters")
  32434. },
  32435. ]
  32436. ))
  32437. characterMakers.push(() => makeCharacter(
  32438. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32439. {
  32440. front: {
  32441. height: math.unit(6 + 6 / 12, "feet"),
  32442. name: "Front",
  32443. image: {
  32444. source: "./media/characters/khardesh/front.svg",
  32445. extra: 1788/1596,
  32446. bottom: 66/1854
  32447. }
  32448. },
  32449. back: {
  32450. height: math.unit(6 + 6 / 12, "feet"),
  32451. name: "Back",
  32452. image: {
  32453. source: "./media/characters/khardesh/back.svg",
  32454. extra: 1781/1584,
  32455. bottom: 68/1849
  32456. }
  32457. },
  32458. },
  32459. [
  32460. {
  32461. name: "Normal",
  32462. height: math.unit(6 + 6 / 12, "feet"),
  32463. default: true
  32464. },
  32465. {
  32466. name: "Normal+",
  32467. height: math.unit(4, "meters")
  32468. },
  32469. {
  32470. name: "Macro",
  32471. height: math.unit(50, "meters")
  32472. },
  32473. {
  32474. name: "Macro+",
  32475. height: math.unit(100, "meters")
  32476. },
  32477. {
  32478. name: "Megamacro",
  32479. height: math.unit(20, "km")
  32480. },
  32481. ]
  32482. ))
  32483. characterMakers.push(() => makeCharacter(
  32484. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32485. {
  32486. front: {
  32487. height: math.unit(6, "feet"),
  32488. weight: math.unit(150, "lb"),
  32489. name: "Front",
  32490. image: {
  32491. source: "./media/characters/kosho/front.svg",
  32492. extra: 1847 / 1847,
  32493. bottom: 86 / 1933
  32494. }
  32495. },
  32496. },
  32497. [
  32498. {
  32499. name: "Second-stage micro",
  32500. height: math.unit(0.5, "inches")
  32501. },
  32502. {
  32503. name: "First-stage micro",
  32504. height: math.unit(6, "inches")
  32505. },
  32506. {
  32507. name: "Normal",
  32508. height: math.unit(6, "feet"),
  32509. default: true
  32510. },
  32511. {
  32512. name: "First-stage macro",
  32513. height: math.unit(72, "feet")
  32514. },
  32515. {
  32516. name: "Second-stage macro",
  32517. height: math.unit(864, "feet")
  32518. },
  32519. ]
  32520. ))
  32521. characterMakers.push(() => makeCharacter(
  32522. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32523. {
  32524. normal: {
  32525. height: math.unit(4 + 6 / 12, "feet"),
  32526. name: "Normal",
  32527. image: {
  32528. source: "./media/characters/hydra/normal.svg",
  32529. extra: 2833 / 2634,
  32530. bottom: 68 / 2901
  32531. }
  32532. },
  32533. smol: {
  32534. height: math.unit(0.705, "inches"),
  32535. name: "Smol",
  32536. image: {
  32537. source: "./media/characters/hydra/smol.svg",
  32538. extra: 2715 / 2540,
  32539. bottom: 0 / 2715
  32540. }
  32541. },
  32542. },
  32543. [
  32544. {
  32545. name: "Normal",
  32546. height: math.unit(4 + 6 / 12, "feet"),
  32547. default: true
  32548. }
  32549. ]
  32550. ))
  32551. characterMakers.push(() => makeCharacter(
  32552. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32553. {
  32554. front: {
  32555. height: math.unit(0.6, "cm"),
  32556. name: "Front",
  32557. image: {
  32558. source: "./media/characters/daz/front.svg",
  32559. extra: 1682 / 1164,
  32560. bottom: 42 / 1724
  32561. }
  32562. },
  32563. },
  32564. [
  32565. {
  32566. name: "Normal",
  32567. height: math.unit(0.6, "cm"),
  32568. default: true
  32569. },
  32570. ]
  32571. ))
  32572. characterMakers.push(() => makeCharacter(
  32573. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32574. {
  32575. front: {
  32576. height: math.unit(6, "feet"),
  32577. weight: math.unit(235, "lb"),
  32578. name: "Front",
  32579. image: {
  32580. source: "./media/characters/theo-pangolin/front.svg",
  32581. extra: 1996 / 1969,
  32582. bottom: 115 / 2111
  32583. }
  32584. },
  32585. back: {
  32586. height: math.unit(6, "feet"),
  32587. weight: math.unit(235, "lb"),
  32588. name: "Back",
  32589. image: {
  32590. source: "./media/characters/theo-pangolin/back.svg",
  32591. extra: 1979 / 1979,
  32592. bottom: 40 / 2019
  32593. }
  32594. },
  32595. feral: {
  32596. height: math.unit(2, "feet"),
  32597. weight: math.unit(30, "lb"),
  32598. name: "Feral",
  32599. image: {
  32600. source: "./media/characters/theo-pangolin/feral.svg",
  32601. extra: 803 / 791,
  32602. bottom: 181 / 984
  32603. }
  32604. },
  32605. footFive: {
  32606. height: math.unit(1.43, "feet"),
  32607. name: "Foot (Five Toes)",
  32608. image: {
  32609. source: "./media/characters/theo-pangolin/foot-five.svg"
  32610. }
  32611. },
  32612. footFour: {
  32613. height: math.unit(1.43, "feet"),
  32614. name: "Foot (Four Toes)",
  32615. image: {
  32616. source: "./media/characters/theo-pangolin/foot-four.svg"
  32617. }
  32618. },
  32619. handFour: {
  32620. height: math.unit(0.81, "feet"),
  32621. name: "Hand (Four Fingers)",
  32622. image: {
  32623. source: "./media/characters/theo-pangolin/hand-four.svg"
  32624. }
  32625. },
  32626. handThree: {
  32627. height: math.unit(0.81, "feet"),
  32628. name: "Hand (Three Fingers)",
  32629. image: {
  32630. source: "./media/characters/theo-pangolin/hand-three.svg"
  32631. }
  32632. },
  32633. headFront: {
  32634. height: math.unit(1.37, "feet"),
  32635. name: "Head (Front)",
  32636. image: {
  32637. source: "./media/characters/theo-pangolin/head-front.svg"
  32638. }
  32639. },
  32640. headSide: {
  32641. height: math.unit(1.43, "feet"),
  32642. name: "Head (Side)",
  32643. image: {
  32644. source: "./media/characters/theo-pangolin/head-side.svg"
  32645. }
  32646. },
  32647. tongue: {
  32648. height: math.unit(2.29, "feet"),
  32649. name: "Tongue",
  32650. image: {
  32651. source: "./media/characters/theo-pangolin/tongue.svg"
  32652. }
  32653. },
  32654. },
  32655. [
  32656. {
  32657. name: "Normal",
  32658. height: math.unit(6, "feet")
  32659. },
  32660. {
  32661. name: "Macro",
  32662. height: math.unit(400, "feet"),
  32663. default: true
  32664. },
  32665. ]
  32666. ))
  32667. characterMakers.push(() => makeCharacter(
  32668. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32669. {
  32670. front: {
  32671. height: math.unit(6, "inches"),
  32672. weight: math.unit(0.036, "kg"),
  32673. name: "Front",
  32674. image: {
  32675. source: "./media/characters/renée/front.svg",
  32676. extra: 900 / 886,
  32677. bottom: 8 / 908
  32678. }
  32679. },
  32680. },
  32681. [
  32682. {
  32683. name: "Nano",
  32684. height: math.unit(1, "nm")
  32685. },
  32686. {
  32687. name: "Micro",
  32688. height: math.unit(1, "mm")
  32689. },
  32690. {
  32691. name: "Normal",
  32692. height: math.unit(6, "inches")
  32693. },
  32694. {
  32695. name: "Macro",
  32696. height: math.unit(2000, "feet"),
  32697. default: true
  32698. },
  32699. {
  32700. name: "Megamacro",
  32701. height: math.unit(2, "km")
  32702. },
  32703. {
  32704. name: "Gigamacro",
  32705. height: math.unit(2000, "km")
  32706. },
  32707. {
  32708. name: "Teramacro",
  32709. height: math.unit(250000, "km")
  32710. },
  32711. ]
  32712. ))
  32713. characterMakers.push(() => makeCharacter(
  32714. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32715. {
  32716. front: {
  32717. height: math.unit(4, "meters"),
  32718. weight: math.unit(150, "kg"),
  32719. name: "Front",
  32720. image: {
  32721. source: "./media/characters/caledvwlch/front.svg",
  32722. extra: 1757/1537,
  32723. bottom: 31/1788
  32724. }
  32725. },
  32726. side: {
  32727. height: math.unit(4, "meters"),
  32728. weight: math.unit(150, "kg"),
  32729. name: "Side",
  32730. image: {
  32731. source: "./media/characters/caledvwlch/side.svg",
  32732. extra: 1605 / 1536,
  32733. bottom: 31 / 1636
  32734. }
  32735. },
  32736. back: {
  32737. height: math.unit(4, "meters"),
  32738. weight: math.unit(150, "kg"),
  32739. name: "Back",
  32740. image: {
  32741. source: "./media/characters/caledvwlch/back.svg",
  32742. extra: 1635 / 1565,
  32743. bottom: 27 / 1662
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "\"Incognito\"",
  32750. height: math.unit(4, "meters")
  32751. },
  32752. {
  32753. name: "Small rampage",
  32754. height: math.unit(600, "meters")
  32755. },
  32756. {
  32757. name: "Mega",
  32758. height: math.unit(30, "km")
  32759. },
  32760. {
  32761. name: "Home-size",
  32762. height: math.unit(50, "km"),
  32763. default: true
  32764. },
  32765. {
  32766. name: "Giga",
  32767. height: math.unit(300, "km")
  32768. },
  32769. {
  32770. name: "Lounging",
  32771. height: math.unit(11000, "km")
  32772. },
  32773. {
  32774. name: "Planet snacking",
  32775. height: math.unit(2000000, "km")
  32776. },
  32777. ]
  32778. ))
  32779. characterMakers.push(() => makeCharacter(
  32780. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32781. {
  32782. front: {
  32783. height: math.unit(6, "feet"),
  32784. weight: math.unit(215, "lb"),
  32785. name: "Front",
  32786. image: {
  32787. source: "./media/characters/sapphire-svell/front.svg",
  32788. extra: 495 / 455,
  32789. bottom: 20 / 515
  32790. }
  32791. },
  32792. back: {
  32793. height: math.unit(6, "feet"),
  32794. weight: math.unit(216, "lb"),
  32795. name: "Back",
  32796. image: {
  32797. source: "./media/characters/sapphire-svell/back.svg",
  32798. extra: 497 / 477,
  32799. bottom: 7 / 504
  32800. }
  32801. },
  32802. maw: {
  32803. height: math.unit(1.57, "feet"),
  32804. name: "Maw",
  32805. image: {
  32806. source: "./media/characters/sapphire-svell/maw.svg"
  32807. }
  32808. },
  32809. foot: {
  32810. height: math.unit(1.07, "feet"),
  32811. name: "Foot",
  32812. image: {
  32813. source: "./media/characters/sapphire-svell/foot.svg"
  32814. }
  32815. },
  32816. toering: {
  32817. height: math.unit(1.7, "inch"),
  32818. name: "Toering",
  32819. image: {
  32820. source: "./media/characters/sapphire-svell/toering.svg"
  32821. }
  32822. },
  32823. },
  32824. [
  32825. {
  32826. name: "Normal",
  32827. height: math.unit(300, "feet"),
  32828. default: true
  32829. },
  32830. {
  32831. name: "Augmented",
  32832. height: math.unit(1250, "feet")
  32833. },
  32834. {
  32835. name: "Unleashed",
  32836. height: math.unit(3000, "feet")
  32837. },
  32838. ]
  32839. ))
  32840. characterMakers.push(() => makeCharacter(
  32841. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32842. {
  32843. side: {
  32844. height: math.unit(2 + 3 / 12, "feet"),
  32845. weight: math.unit(110, "lb"),
  32846. name: "Side",
  32847. image: {
  32848. source: "./media/characters/glitch-flux/side.svg",
  32849. extra: 997 / 805,
  32850. bottom: 20 / 1017
  32851. }
  32852. },
  32853. },
  32854. [
  32855. {
  32856. name: "Normal",
  32857. height: math.unit(2 + 3 / 12, "feet"),
  32858. default: true
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32864. {
  32865. front: {
  32866. height: math.unit(4, "meters"),
  32867. name: "Front",
  32868. image: {
  32869. source: "./media/characters/mid/front.svg",
  32870. extra: 507 / 476,
  32871. bottom: 17 / 524
  32872. }
  32873. },
  32874. back: {
  32875. height: math.unit(4, "meters"),
  32876. name: "Back",
  32877. image: {
  32878. source: "./media/characters/mid/back.svg",
  32879. extra: 519 / 487,
  32880. bottom: 7 / 526
  32881. }
  32882. },
  32883. stuck: {
  32884. height: math.unit(2.2, "meters"),
  32885. name: "Stuck",
  32886. image: {
  32887. source: "./media/characters/mid/stuck.svg",
  32888. extra: 1951 / 1869,
  32889. bottom: 88 / 2039
  32890. }
  32891. }
  32892. },
  32893. [
  32894. {
  32895. name: "Normal",
  32896. height: math.unit(4, "meters"),
  32897. default: true
  32898. },
  32899. {
  32900. name: "Big",
  32901. height: math.unit(10, "meters")
  32902. },
  32903. {
  32904. name: "Macro",
  32905. height: math.unit(800, "meters")
  32906. },
  32907. {
  32908. name: "Megamacro",
  32909. height: math.unit(100, "km")
  32910. },
  32911. {
  32912. name: "Overgrown",
  32913. height: math.unit(1, "parsec")
  32914. },
  32915. ]
  32916. ))
  32917. characterMakers.push(() => makeCharacter(
  32918. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32919. {
  32920. front: {
  32921. height: math.unit(2.5, "meters"),
  32922. weight: math.unit(225, "kg"),
  32923. name: "Front",
  32924. image: {
  32925. source: "./media/characters/iris/front.svg",
  32926. extra: 3348 / 3251,
  32927. bottom: 205 / 3553
  32928. }
  32929. },
  32930. maw: {
  32931. height: math.unit(0.56, "meter"),
  32932. name: "Maw",
  32933. image: {
  32934. source: "./media/characters/iris/maw.svg"
  32935. }
  32936. },
  32937. },
  32938. [
  32939. {
  32940. name: "Mewter cat",
  32941. height: math.unit(1.2, "meters")
  32942. },
  32943. {
  32944. name: "Normal",
  32945. height: math.unit(2.5, "meters"),
  32946. default: true
  32947. },
  32948. {
  32949. name: "Minimacro",
  32950. height: math.unit(18, "feet")
  32951. },
  32952. {
  32953. name: "Macro",
  32954. height: math.unit(140, "feet")
  32955. },
  32956. {
  32957. name: "Macro+",
  32958. height: math.unit(180, "meters")
  32959. },
  32960. {
  32961. name: "Megamacro",
  32962. height: math.unit(2746, "meters")
  32963. },
  32964. ]
  32965. ))
  32966. characterMakers.push(() => makeCharacter(
  32967. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32968. {
  32969. front: {
  32970. height: math.unit(6, "feet"),
  32971. weight: math.unit(135, "lb"),
  32972. name: "Front",
  32973. image: {
  32974. source: "./media/characters/axel/front.svg",
  32975. extra: 908 / 908,
  32976. bottom: 58 / 966
  32977. }
  32978. },
  32979. side: {
  32980. height: math.unit(6, "feet"),
  32981. weight: math.unit(135, "lb"),
  32982. name: "Side",
  32983. image: {
  32984. source: "./media/characters/axel/side.svg",
  32985. extra: 958 / 958,
  32986. bottom: 11 / 969
  32987. }
  32988. },
  32989. back: {
  32990. height: math.unit(6, "feet"),
  32991. weight: math.unit(135, "lb"),
  32992. name: "Back",
  32993. image: {
  32994. source: "./media/characters/axel/back.svg",
  32995. extra: 887 / 887,
  32996. bottom: 34 / 921
  32997. }
  32998. },
  32999. head: {
  33000. height: math.unit(1.07, "feet"),
  33001. name: "Head",
  33002. image: {
  33003. source: "./media/characters/axel/head.svg"
  33004. }
  33005. },
  33006. beak: {
  33007. height: math.unit(1.4, "feet"),
  33008. name: "Beak",
  33009. image: {
  33010. source: "./media/characters/axel/beak.svg"
  33011. }
  33012. },
  33013. beakSide: {
  33014. height: math.unit(1.4, "feet"),
  33015. name: "Beak Side",
  33016. image: {
  33017. source: "./media/characters/axel/beak-side.svg"
  33018. }
  33019. },
  33020. sheath: {
  33021. height: math.unit(0.5, "feet"),
  33022. name: "Sheath",
  33023. image: {
  33024. source: "./media/characters/axel/sheath.svg"
  33025. }
  33026. },
  33027. dick: {
  33028. height: math.unit(0.98, "feet"),
  33029. name: "Dick",
  33030. image: {
  33031. source: "./media/characters/axel/dick.svg"
  33032. }
  33033. },
  33034. },
  33035. [
  33036. {
  33037. name: "Macro",
  33038. height: math.unit(68, "meters"),
  33039. default: true
  33040. },
  33041. ]
  33042. ))
  33043. characterMakers.push(() => makeCharacter(
  33044. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33045. {
  33046. front: {
  33047. height: math.unit(3.5, "meters"),
  33048. weight: math.unit(1200, "kg"),
  33049. name: "Front",
  33050. image: {
  33051. source: "./media/characters/joanna/front.svg",
  33052. extra: 1596 / 1488,
  33053. bottom: 29 / 1625
  33054. }
  33055. },
  33056. back: {
  33057. height: math.unit(3.5, "meters"),
  33058. weight: math.unit(1200, "kg"),
  33059. name: "Back",
  33060. image: {
  33061. source: "./media/characters/joanna/back.svg",
  33062. extra: 1594 / 1495,
  33063. bottom: 26 / 1620
  33064. }
  33065. },
  33066. frontShorts: {
  33067. height: math.unit(3.5, "meters"),
  33068. weight: math.unit(1200, "kg"),
  33069. name: "Front (Shorts)",
  33070. image: {
  33071. source: "./media/characters/joanna/front-shorts.svg",
  33072. extra: 1596 / 1488,
  33073. bottom: 29 / 1625
  33074. }
  33075. },
  33076. frontBiker: {
  33077. height: math.unit(3.5, "meters"),
  33078. weight: math.unit(1200, "kg"),
  33079. name: "Front (Biker)",
  33080. image: {
  33081. source: "./media/characters/joanna/front-biker.svg",
  33082. extra: 1596 / 1488,
  33083. bottom: 29 / 1625
  33084. }
  33085. },
  33086. backBiker: {
  33087. height: math.unit(3.5, "meters"),
  33088. weight: math.unit(1200, "kg"),
  33089. name: "Back (Biker)",
  33090. image: {
  33091. source: "./media/characters/joanna/back-biker.svg",
  33092. extra: 1594 / 1495,
  33093. bottom: 88 / 1682
  33094. }
  33095. },
  33096. bikeLeft: {
  33097. height: math.unit(2.4, "meters"),
  33098. weight: math.unit(1600, "kg"),
  33099. name: "Bike (Left)",
  33100. image: {
  33101. source: "./media/characters/joanna/bike-left.svg",
  33102. extra: 720 / 720,
  33103. bottom: 8 / 728
  33104. }
  33105. },
  33106. bikeRight: {
  33107. height: math.unit(2.4, "meters"),
  33108. weight: math.unit(1600, "kg"),
  33109. name: "Bike (Right)",
  33110. image: {
  33111. source: "./media/characters/joanna/bike-right.svg",
  33112. extra: 720 / 720,
  33113. bottom: 8 / 728
  33114. }
  33115. },
  33116. },
  33117. [
  33118. {
  33119. name: "Incognito",
  33120. height: math.unit(3.5, "meters")
  33121. },
  33122. {
  33123. name: "Casual Big",
  33124. height: math.unit(200, "meters")
  33125. },
  33126. {
  33127. name: "Macro",
  33128. height: math.unit(600, "meters")
  33129. },
  33130. {
  33131. name: "Original",
  33132. height: math.unit(20, "km"),
  33133. default: true
  33134. },
  33135. {
  33136. name: "Giga",
  33137. height: math.unit(400, "km")
  33138. },
  33139. {
  33140. name: "Lounging",
  33141. height: math.unit(1500, "km")
  33142. },
  33143. {
  33144. name: "Planetary",
  33145. height: math.unit(200000, "km")
  33146. },
  33147. ]
  33148. ))
  33149. characterMakers.push(() => makeCharacter(
  33150. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33151. {
  33152. front: {
  33153. height: math.unit(6, "feet"),
  33154. weight: math.unit(150, "lb"),
  33155. name: "Front",
  33156. image: {
  33157. source: "./media/characters/hugo-sigil/front.svg",
  33158. extra: 522 / 500,
  33159. bottom: 2 / 524
  33160. }
  33161. },
  33162. back: {
  33163. height: math.unit(6, "feet"),
  33164. weight: math.unit(150, "lb"),
  33165. name: "Back",
  33166. image: {
  33167. source: "./media/characters/hugo-sigil/back.svg",
  33168. extra: 519 / 495,
  33169. bottom: 5 / 524
  33170. }
  33171. },
  33172. maw: {
  33173. height: math.unit(1.4, "feet"),
  33174. weight: math.unit(150, "lb"),
  33175. name: "Maw",
  33176. image: {
  33177. source: "./media/characters/hugo-sigil/maw.svg"
  33178. }
  33179. },
  33180. feet: {
  33181. height: math.unit(1.56, "feet"),
  33182. weight: math.unit(150, "lb"),
  33183. name: "Feet",
  33184. image: {
  33185. source: "./media/characters/hugo-sigil/feet.svg",
  33186. extra: 177 / 177,
  33187. bottom: 12 / 189
  33188. }
  33189. },
  33190. },
  33191. [
  33192. {
  33193. name: "Normal",
  33194. height: math.unit(6, "feet")
  33195. },
  33196. {
  33197. name: "Macro",
  33198. height: math.unit(200, "feet"),
  33199. default: true
  33200. },
  33201. ]
  33202. ))
  33203. characterMakers.push(() => makeCharacter(
  33204. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33205. {
  33206. front: {
  33207. height: math.unit(6, "feet"),
  33208. weight: math.unit(150, "lb"),
  33209. name: "Front",
  33210. image: {
  33211. source: "./media/characters/peri/front.svg",
  33212. extra: 2354 / 2233,
  33213. bottom: 49 / 2403
  33214. }
  33215. },
  33216. },
  33217. [
  33218. {
  33219. name: "Really Small",
  33220. height: math.unit(1, "nm")
  33221. },
  33222. {
  33223. name: "Micro",
  33224. height: math.unit(4, "inches")
  33225. },
  33226. {
  33227. name: "Normal",
  33228. height: math.unit(7, "inches"),
  33229. default: true
  33230. },
  33231. {
  33232. name: "Macro",
  33233. height: math.unit(400, "feet")
  33234. },
  33235. {
  33236. name: "Megamacro",
  33237. height: math.unit(100, "miles")
  33238. },
  33239. ]
  33240. ))
  33241. characterMakers.push(() => makeCharacter(
  33242. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33243. {
  33244. frontSlim: {
  33245. height: math.unit(7, "feet"),
  33246. name: "Front (Slim)",
  33247. image: {
  33248. source: "./media/characters/issilora/front-slim.svg",
  33249. extra: 529 / 449,
  33250. bottom: 53 / 582
  33251. }
  33252. },
  33253. sideSlim: {
  33254. height: math.unit(7, "feet"),
  33255. name: "Side (Slim)",
  33256. image: {
  33257. source: "./media/characters/issilora/side-slim.svg",
  33258. extra: 570 / 480,
  33259. bottom: 30 / 600
  33260. }
  33261. },
  33262. backSlim: {
  33263. height: math.unit(7, "feet"),
  33264. name: "Back (Slim)",
  33265. image: {
  33266. source: "./media/characters/issilora/back-slim.svg",
  33267. extra: 537 / 455,
  33268. bottom: 46 / 583
  33269. }
  33270. },
  33271. frontBuff: {
  33272. height: math.unit(7, "feet"),
  33273. name: "Front (Buff)",
  33274. image: {
  33275. source: "./media/characters/issilora/front-buff.svg",
  33276. extra: 2310 / 2035,
  33277. bottom: 335 / 2645
  33278. }
  33279. },
  33280. head: {
  33281. height: math.unit(1.94, "feet"),
  33282. name: "Head",
  33283. image: {
  33284. source: "./media/characters/issilora/head.svg"
  33285. }
  33286. },
  33287. },
  33288. [
  33289. {
  33290. name: "Minimum",
  33291. height: math.unit(7, "feet")
  33292. },
  33293. {
  33294. name: "Comfortable",
  33295. height: math.unit(17, "feet")
  33296. },
  33297. {
  33298. name: "Fun Size",
  33299. height: math.unit(47, "feet")
  33300. },
  33301. {
  33302. name: "Natural Macro",
  33303. height: math.unit(137, "feet"),
  33304. default: true
  33305. },
  33306. {
  33307. name: "Maximum Kaiju",
  33308. height: math.unit(397, "feet")
  33309. },
  33310. ]
  33311. ))
  33312. characterMakers.push(() => makeCharacter(
  33313. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33314. {
  33315. front: {
  33316. height: math.unit(50 + 9/12, "feet"),
  33317. weight: math.unit(32.8, "tons"),
  33318. name: "Front",
  33319. image: {
  33320. source: "./media/characters/irb'iiritaahn/front.svg",
  33321. extra: 1878/1826,
  33322. bottom: 326/2204
  33323. }
  33324. },
  33325. back: {
  33326. height: math.unit(50 + 9/12, "feet"),
  33327. weight: math.unit(32.8, "tons"),
  33328. name: "Back",
  33329. image: {
  33330. source: "./media/characters/irb'iiritaahn/back.svg",
  33331. extra: 2052/2018,
  33332. bottom: 152/2204
  33333. }
  33334. },
  33335. head: {
  33336. height: math.unit(12.86, "feet"),
  33337. name: "Head",
  33338. image: {
  33339. source: "./media/characters/irb'iiritaahn/head.svg"
  33340. }
  33341. },
  33342. maw: {
  33343. height: math.unit(9.66, "feet"),
  33344. name: "Maw",
  33345. image: {
  33346. source: "./media/characters/irb'iiritaahn/maw.svg"
  33347. }
  33348. },
  33349. frontDick: {
  33350. height: math.unit(8.78461, "feet"),
  33351. name: "Front Dick",
  33352. image: {
  33353. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33354. }
  33355. },
  33356. rearDick: {
  33357. height: math.unit(8.78461, "feet"),
  33358. name: "Rear Dick",
  33359. image: {
  33360. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33361. }
  33362. },
  33363. rearDickUnfolded: {
  33364. height: math.unit(8.78, "feet"),
  33365. name: "Rear Dick (Unfolded)",
  33366. image: {
  33367. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33368. }
  33369. },
  33370. wings: {
  33371. height: math.unit(43, "feet"),
  33372. name: "Wings",
  33373. image: {
  33374. source: "./media/characters/irb'iiritaahn/wings.svg"
  33375. }
  33376. },
  33377. },
  33378. [
  33379. {
  33380. name: "Macro",
  33381. height: math.unit(50 + 9/12, "feet"),
  33382. default: true
  33383. },
  33384. ]
  33385. ))
  33386. characterMakers.push(() => makeCharacter(
  33387. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33388. {
  33389. front: {
  33390. height: math.unit(205, "cm"),
  33391. weight: math.unit(102, "kg"),
  33392. name: "Front",
  33393. image: {
  33394. source: "./media/characters/irbisgreif/front.svg",
  33395. extra: 785/706,
  33396. bottom: 13/798
  33397. }
  33398. },
  33399. back: {
  33400. height: math.unit(205, "cm"),
  33401. weight: math.unit(102, "kg"),
  33402. name: "Back",
  33403. image: {
  33404. source: "./media/characters/irbisgreif/back.svg",
  33405. extra: 713/701,
  33406. bottom: 26/739
  33407. }
  33408. },
  33409. frontDressed: {
  33410. height: math.unit(216, "cm"),
  33411. weight: math.unit(102, "kg"),
  33412. name: "Front-dressed",
  33413. image: {
  33414. source: "./media/characters/irbisgreif/front-dressed.svg",
  33415. extra: 902/776,
  33416. bottom: 14/916
  33417. }
  33418. },
  33419. sideDressed: {
  33420. height: math.unit(195, "cm"),
  33421. weight: math.unit(102, "kg"),
  33422. name: "Side-dressed",
  33423. image: {
  33424. source: "./media/characters/irbisgreif/side-dressed.svg",
  33425. extra: 788/688,
  33426. bottom: 21/809
  33427. }
  33428. },
  33429. backDressed: {
  33430. height: math.unit(216, "cm"),
  33431. weight: math.unit(102, "kg"),
  33432. name: "Back-dressed",
  33433. image: {
  33434. source: "./media/characters/irbisgreif/back-dressed.svg",
  33435. extra: 901/783,
  33436. bottom: 10/911
  33437. }
  33438. },
  33439. dick: {
  33440. height: math.unit(0.49, "feet"),
  33441. name: "Dick",
  33442. image: {
  33443. source: "./media/characters/irbisgreif/dick.svg"
  33444. }
  33445. },
  33446. wingTop: {
  33447. height: math.unit(1.93 , "feet"),
  33448. name: "Wing-top",
  33449. image: {
  33450. source: "./media/characters/irbisgreif/wing-top.svg"
  33451. }
  33452. },
  33453. wingBottom: {
  33454. height: math.unit(1.93 , "feet"),
  33455. name: "Wing-bottom",
  33456. image: {
  33457. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33458. }
  33459. },
  33460. },
  33461. [
  33462. {
  33463. name: "Normal",
  33464. height: math.unit(216, "cm"),
  33465. default: true
  33466. },
  33467. ]
  33468. ))
  33469. characterMakers.push(() => makeCharacter(
  33470. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33471. {
  33472. front: {
  33473. height: math.unit(6, "feet"),
  33474. weight: math.unit(150, "lb"),
  33475. name: "Front",
  33476. image: {
  33477. source: "./media/characters/pride/front.svg",
  33478. extra: 1299/1230,
  33479. bottom: 18/1317
  33480. }
  33481. },
  33482. },
  33483. [
  33484. {
  33485. name: "Normal",
  33486. height: math.unit(7, "feet")
  33487. },
  33488. {
  33489. name: "Mini-macro",
  33490. height: math.unit(11, "feet")
  33491. },
  33492. {
  33493. name: "Macro",
  33494. height: math.unit(15, "meters"),
  33495. default: true
  33496. },
  33497. {
  33498. name: "Macro+",
  33499. height: math.unit(40, "meters")
  33500. },
  33501. ]
  33502. ))
  33503. characterMakers.push(() => makeCharacter(
  33504. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33505. {
  33506. front: {
  33507. height: math.unit(4 + 2 / 12, "feet"),
  33508. weight: math.unit(95, "lb"),
  33509. name: "Front",
  33510. image: {
  33511. source: "./media/characters/vaelophis-nyx/front.svg",
  33512. extra: 2532/2330,
  33513. bottom: 0/2532
  33514. }
  33515. },
  33516. back: {
  33517. height: math.unit(4 + 2 / 12, "feet"),
  33518. weight: math.unit(95, "lb"),
  33519. name: "Back",
  33520. image: {
  33521. source: "./media/characters/vaelophis-nyx/back.svg",
  33522. extra: 2484/2361,
  33523. bottom: 0/2484
  33524. }
  33525. },
  33526. feralSide: {
  33527. height: math.unit(2 + 1/12, "feet"),
  33528. weight: math.unit(20, "lb"),
  33529. name: "Feral (Side)",
  33530. image: {
  33531. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33532. extra: 1721/1581,
  33533. bottom: 70/1791
  33534. }
  33535. },
  33536. feralLazing: {
  33537. height: math.unit(1.08, "feet"),
  33538. weight: math.unit(20, "lb"),
  33539. name: "Feral (Lazing)",
  33540. image: {
  33541. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33542. extra: 822/822,
  33543. bottom: 248/1070
  33544. }
  33545. },
  33546. ear: {
  33547. height: math.unit(0.416, "feet"),
  33548. name: "Ear",
  33549. image: {
  33550. source: "./media/characters/vaelophis-nyx/ear.svg"
  33551. }
  33552. },
  33553. eye: {
  33554. height: math.unit(0.0748, "feet"),
  33555. name: "Eye",
  33556. image: {
  33557. source: "./media/characters/vaelophis-nyx/eye.svg"
  33558. }
  33559. },
  33560. mouth: {
  33561. height: math.unit(0.378, "feet"),
  33562. name: "Mouth",
  33563. image: {
  33564. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33565. }
  33566. },
  33567. spade: {
  33568. height: math.unit(0.55, "feet"),
  33569. name: "Spade",
  33570. image: {
  33571. source: "./media/characters/vaelophis-nyx/spade.svg"
  33572. }
  33573. },
  33574. },
  33575. [
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(4 + 2/12, "feet"),
  33579. default: true
  33580. },
  33581. ]
  33582. ))
  33583. characterMakers.push(() => makeCharacter(
  33584. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33585. {
  33586. front: {
  33587. height: math.unit(7, "feet"),
  33588. weight: math.unit(231, "lb"),
  33589. name: "Front",
  33590. image: {
  33591. source: "./media/characters/flux/front.svg",
  33592. extra: 919/871,
  33593. bottom: 0/919
  33594. }
  33595. },
  33596. back: {
  33597. height: math.unit(7, "feet"),
  33598. weight: math.unit(231, "lb"),
  33599. name: "Back",
  33600. image: {
  33601. source: "./media/characters/flux/back.svg",
  33602. extra: 1040/992,
  33603. bottom: 0/1040
  33604. }
  33605. },
  33606. frontDressed: {
  33607. height: math.unit(7, "feet"),
  33608. weight: math.unit(231, "lb"),
  33609. name: "Front (Dressed)",
  33610. image: {
  33611. source: "./media/characters/flux/front-dressed.svg",
  33612. extra: 919/871,
  33613. bottom: 0/919
  33614. }
  33615. },
  33616. feralSide: {
  33617. height: math.unit(5, "feet"),
  33618. weight: math.unit(150, "lb"),
  33619. name: "Feral (Side)",
  33620. image: {
  33621. source: "./media/characters/flux/feral-side.svg",
  33622. extra: 598/528,
  33623. bottom: 28/626
  33624. }
  33625. },
  33626. head: {
  33627. height: math.unit(1.585, "feet"),
  33628. name: "Head",
  33629. image: {
  33630. source: "./media/characters/flux/head.svg"
  33631. }
  33632. },
  33633. headSide: {
  33634. height: math.unit(1.74, "feet"),
  33635. name: "Head (Side)",
  33636. image: {
  33637. source: "./media/characters/flux/head-side.svg"
  33638. }
  33639. },
  33640. headSideFire: {
  33641. height: math.unit(1.76, "feet"),
  33642. name: "Head (Side, Fire)",
  33643. image: {
  33644. source: "./media/characters/flux/head-side-fire.svg"
  33645. }
  33646. },
  33647. },
  33648. [
  33649. {
  33650. name: "Normal",
  33651. height: math.unit(7, "feet"),
  33652. default: true
  33653. },
  33654. ]
  33655. ))
  33656. characterMakers.push(() => makeCharacter(
  33657. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33658. {
  33659. front: {
  33660. height: math.unit(9, "feet"),
  33661. weight: math.unit(1012, "lb"),
  33662. name: "Front",
  33663. image: {
  33664. source: "./media/characters/ulfra-lupae/front.svg",
  33665. extra: 1083/1011,
  33666. bottom: 67/1150
  33667. }
  33668. },
  33669. },
  33670. [
  33671. {
  33672. name: "Micro",
  33673. height: math.unit(6, "inches")
  33674. },
  33675. {
  33676. name: "Socializing",
  33677. height: math.unit(6 + 5/12, "feet")
  33678. },
  33679. {
  33680. name: "Normal",
  33681. height: math.unit(9, "feet"),
  33682. default: true
  33683. },
  33684. {
  33685. name: "Macro",
  33686. height: math.unit(150, "feet")
  33687. },
  33688. ]
  33689. ))
  33690. characterMakers.push(() => makeCharacter(
  33691. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33692. {
  33693. front: {
  33694. height: math.unit(5 + 2/12, "feet"),
  33695. weight: math.unit(120, "lb"),
  33696. name: "Front",
  33697. image: {
  33698. source: "./media/characters/timber/front.svg",
  33699. extra: 2814/2705,
  33700. bottom: 181/2995
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Normal",
  33707. height: math.unit(5 + 2/12, "feet"),
  33708. default: true
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(9, "feet"),
  33717. name: "Front",
  33718. image: {
  33719. source: "./media/characters/nicki/front.svg",
  33720. extra: 1240/990,
  33721. bottom: 45/1285
  33722. },
  33723. form: "anthro",
  33724. default: true
  33725. },
  33726. side: {
  33727. height: math.unit(9, "feet"),
  33728. name: "Side",
  33729. image: {
  33730. source: "./media/characters/nicki/side.svg",
  33731. extra: 1047/973,
  33732. bottom: 61/1108
  33733. },
  33734. form: "anthro"
  33735. },
  33736. back: {
  33737. height: math.unit(9, "feet"),
  33738. name: "Back",
  33739. image: {
  33740. source: "./media/characters/nicki/back.svg",
  33741. extra: 1006/965,
  33742. bottom: 39/1045
  33743. },
  33744. form: "anthro"
  33745. },
  33746. taur: {
  33747. height: math.unit(15, "feet"),
  33748. name: "Taur",
  33749. image: {
  33750. source: "./media/characters/nicki/taur.svg",
  33751. extra: 1592/1347,
  33752. bottom: 0/1592
  33753. },
  33754. form: "taur",
  33755. default: true
  33756. },
  33757. },
  33758. [
  33759. {
  33760. name: "Normal",
  33761. height: math.unit(9, "feet"),
  33762. form: "anthro",
  33763. default: true
  33764. },
  33765. {
  33766. name: "Normal",
  33767. height: math.unit(15, "feet"),
  33768. form: "taur",
  33769. default: true
  33770. }
  33771. ],
  33772. {
  33773. "anthro": {
  33774. name: "Anthro",
  33775. default: true
  33776. },
  33777. "taur": {
  33778. name: "Taur"
  33779. }
  33780. }
  33781. ))
  33782. characterMakers.push(() => makeCharacter(
  33783. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33784. {
  33785. front: {
  33786. height: math.unit(7 + 10/12, "feet"),
  33787. weight: math.unit(3.5, "tons"),
  33788. name: "Front",
  33789. image: {
  33790. source: "./media/characters/lee/front.svg",
  33791. extra: 1773/1615,
  33792. bottom: 86/1859
  33793. }
  33794. },
  33795. hand: {
  33796. height: math.unit(1.78, "feet"),
  33797. name: "Hand",
  33798. image: {
  33799. source: "./media/characters/lee/hand.svg"
  33800. }
  33801. },
  33802. maw: {
  33803. height: math.unit(1.18, "feet"),
  33804. name: "Maw",
  33805. image: {
  33806. source: "./media/characters/lee/maw.svg"
  33807. }
  33808. },
  33809. },
  33810. [
  33811. {
  33812. name: "Normal",
  33813. height: math.unit(7 + 10/12, "feet"),
  33814. default: true
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33820. {
  33821. front: {
  33822. height: math.unit(9, "feet"),
  33823. name: "Front",
  33824. image: {
  33825. source: "./media/characters/guti/front.svg",
  33826. extra: 4551/4355,
  33827. bottom: 123/4674
  33828. }
  33829. },
  33830. tongue: {
  33831. height: math.unit(1, "feet"),
  33832. name: "Tongue",
  33833. image: {
  33834. source: "./media/characters/guti/tongue.svg"
  33835. }
  33836. },
  33837. paw: {
  33838. height: math.unit(1.18, "feet"),
  33839. name: "Paw",
  33840. image: {
  33841. source: "./media/characters/guti/paw.svg"
  33842. }
  33843. },
  33844. },
  33845. [
  33846. {
  33847. name: "Normal",
  33848. height: math.unit(9, "feet"),
  33849. default: true
  33850. },
  33851. ]
  33852. ))
  33853. characterMakers.push(() => makeCharacter(
  33854. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33855. {
  33856. side: {
  33857. height: math.unit(5, "meters"),
  33858. name: "Side",
  33859. image: {
  33860. source: "./media/characters/vesper/side.svg",
  33861. extra: 1605/1518,
  33862. bottom: 0/1605
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Small",
  33869. height: math.unit(5, "meters")
  33870. },
  33871. {
  33872. name: "Sage",
  33873. height: math.unit(100, "meters"),
  33874. default: true
  33875. },
  33876. {
  33877. name: "Fun Size",
  33878. height: math.unit(600, "meters")
  33879. },
  33880. {
  33881. name: "Goddess",
  33882. height: math.unit(20000, "km")
  33883. },
  33884. {
  33885. name: "Maximum",
  33886. height: math.unit(5, "galaxies")
  33887. },
  33888. ]
  33889. ))
  33890. characterMakers.push(() => makeCharacter(
  33891. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33892. {
  33893. front: {
  33894. height: math.unit(6 + 3/12, "feet"),
  33895. weight: math.unit(190, "lb"),
  33896. name: "Front",
  33897. image: {
  33898. source: "./media/characters/gawain/front.svg",
  33899. extra: 2222/2139,
  33900. bottom: 90/2312
  33901. }
  33902. },
  33903. back: {
  33904. height: math.unit(6 + 3/12, "feet"),
  33905. weight: math.unit(190, "lb"),
  33906. name: "Back",
  33907. image: {
  33908. source: "./media/characters/gawain/back.svg",
  33909. extra: 2199/2111,
  33910. bottom: 73/2272
  33911. }
  33912. },
  33913. },
  33914. [
  33915. {
  33916. name: "Normal",
  33917. height: math.unit(6 + 3/12, "feet"),
  33918. default: true
  33919. },
  33920. ]
  33921. ))
  33922. characterMakers.push(() => makeCharacter(
  33923. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33924. {
  33925. side: {
  33926. height: math.unit(3.5, "meters"),
  33927. weight: math.unit(16000, "lb"),
  33928. name: "Side",
  33929. image: {
  33930. source: "./media/characters/dascalti/side.svg",
  33931. extra: 392/273,
  33932. bottom: 47/439
  33933. }
  33934. },
  33935. breath: {
  33936. height: math.unit(7.4, "feet"),
  33937. name: "Breath",
  33938. image: {
  33939. source: "./media/characters/dascalti/breath.svg"
  33940. }
  33941. },
  33942. fed: {
  33943. height: math.unit(3.6, "meters"),
  33944. weight: math.unit(16000, "lb"),
  33945. name: "Fed",
  33946. image: {
  33947. source: "./media/characters/dascalti/fed.svg",
  33948. extra: 1419/820,
  33949. bottom: 95/1514
  33950. }
  33951. },
  33952. },
  33953. [
  33954. {
  33955. name: "Normal",
  33956. height: math.unit(3.5, "meters"),
  33957. default: true
  33958. },
  33959. ]
  33960. ))
  33961. characterMakers.push(() => makeCharacter(
  33962. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33963. {
  33964. front: {
  33965. height: math.unit(3 + 5/12, "feet"),
  33966. name: "Front",
  33967. image: {
  33968. source: "./media/characters/mauve/front.svg",
  33969. extra: 1126/1033,
  33970. bottom: 65/1191
  33971. }
  33972. },
  33973. side: {
  33974. height: math.unit(3 + 5/12, "feet"),
  33975. name: "Side",
  33976. image: {
  33977. source: "./media/characters/mauve/side.svg",
  33978. extra: 1089/1001,
  33979. bottom: 29/1118
  33980. }
  33981. },
  33982. back: {
  33983. height: math.unit(3 + 5/12, "feet"),
  33984. name: "Back",
  33985. image: {
  33986. source: "./media/characters/mauve/back.svg",
  33987. extra: 1173/1053,
  33988. bottom: 109/1282
  33989. }
  33990. },
  33991. },
  33992. [
  33993. {
  33994. name: "Normal",
  33995. height: math.unit(3 + 5/12, "feet"),
  33996. default: true
  33997. },
  33998. ]
  33999. ))
  34000. characterMakers.push(() => makeCharacter(
  34001. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34002. {
  34003. front: {
  34004. height: math.unit(6 + 3/12, "feet"),
  34005. weight: math.unit(430, "lb"),
  34006. name: "Front",
  34007. image: {
  34008. source: "./media/characters/carlos/front.svg",
  34009. extra: 1964/1913,
  34010. bottom: 70/2034
  34011. }
  34012. },
  34013. },
  34014. [
  34015. {
  34016. name: "Normal",
  34017. height: math.unit(6 + 3/12, "feet"),
  34018. default: true
  34019. },
  34020. ]
  34021. ))
  34022. characterMakers.push(() => makeCharacter(
  34023. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34024. {
  34025. back: {
  34026. height: math.unit(5 + 10/12, "feet"),
  34027. weight: math.unit(200, "lb"),
  34028. name: "Back",
  34029. image: {
  34030. source: "./media/characters/jax/back.svg",
  34031. extra: 764/739,
  34032. bottom: 25/789
  34033. }
  34034. },
  34035. },
  34036. [
  34037. {
  34038. name: "Normal",
  34039. height: math.unit(5 + 10/12, "feet"),
  34040. default: true
  34041. },
  34042. ]
  34043. ))
  34044. characterMakers.push(() => makeCharacter(
  34045. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34046. {
  34047. front: {
  34048. height: math.unit(8, "feet"),
  34049. weight: math.unit(250, "lb"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/eikthynir/front.svg",
  34053. extra: 1332/1166,
  34054. bottom: 82/1414
  34055. }
  34056. },
  34057. back: {
  34058. height: math.unit(8, "feet"),
  34059. weight: math.unit(250, "lb"),
  34060. name: "Back",
  34061. image: {
  34062. source: "./media/characters/eikthynir/back.svg",
  34063. extra: 1342/1190,
  34064. bottom: 19/1361
  34065. }
  34066. },
  34067. dick: {
  34068. height: math.unit(2.35, "feet"),
  34069. name: "Dick",
  34070. image: {
  34071. source: "./media/characters/eikthynir/dick.svg"
  34072. }
  34073. },
  34074. },
  34075. [
  34076. {
  34077. name: "Normal",
  34078. height: math.unit(8, "feet"),
  34079. default: true
  34080. },
  34081. ]
  34082. ))
  34083. characterMakers.push(() => makeCharacter(
  34084. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34085. {
  34086. front: {
  34087. height: math.unit(99, "meters"),
  34088. weight: math.unit(13000, "tons"),
  34089. name: "Front",
  34090. image: {
  34091. source: "./media/characters/zlmos/front.svg",
  34092. extra: 2202/1992,
  34093. bottom: 315/2517
  34094. }
  34095. },
  34096. },
  34097. [
  34098. {
  34099. name: "Macro",
  34100. height: math.unit(99, "meters"),
  34101. default: true
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(6 + 5/12, "feet"),
  34110. name: "Front",
  34111. image: {
  34112. source: "./media/characters/purri/front.svg",
  34113. extra: 1698/1610,
  34114. bottom: 32/1730
  34115. }
  34116. },
  34117. frontAlt: {
  34118. height: math.unit(6 + 5/12, "feet"),
  34119. name: "Front (Alt)",
  34120. image: {
  34121. source: "./media/characters/purri/front-alt.svg",
  34122. extra: 450/420,
  34123. bottom: 26/476
  34124. }
  34125. },
  34126. boots: {
  34127. height: math.unit(5.5, "feet"),
  34128. name: "Boots",
  34129. image: {
  34130. source: "./media/characters/purri/boots.svg",
  34131. extra: 905/853,
  34132. bottom: 18/923
  34133. },
  34134. extraAttributes: {
  34135. "shoeSize": {
  34136. name: "Shoe Size",
  34137. power: 1,
  34138. type: "length",
  34139. base: math.unit(12, "ShoeSizeMensUS")
  34140. },
  34141. "platformHeight": {
  34142. name: "Platform Height",
  34143. power: 1,
  34144. type: "length",
  34145. base: math.unit(2, "inches")
  34146. },
  34147. }
  34148. },
  34149. lying: {
  34150. height: math.unit(2, "feet"),
  34151. name: "Lying",
  34152. image: {
  34153. source: "./media/characters/purri/lying.svg",
  34154. extra: 940/843,
  34155. bottom: 146/1086
  34156. }
  34157. },
  34158. devious: {
  34159. height: math.unit(1.77, "feet"),
  34160. name: "Devious",
  34161. image: {
  34162. source: "./media/characters/purri/devious.svg",
  34163. extra: 1440/1155,
  34164. bottom: 147/1587
  34165. }
  34166. },
  34167. bean: {
  34168. height: math.unit(1.94, "feet"),
  34169. name: "Bean",
  34170. image: {
  34171. source: "./media/characters/purri/bean.svg"
  34172. }
  34173. },
  34174. },
  34175. [
  34176. {
  34177. name: "Micro",
  34178. height: math.unit(1, "mm")
  34179. },
  34180. {
  34181. name: "Normal",
  34182. height: math.unit(6 + 5/12, "feet"),
  34183. default: true
  34184. },
  34185. {
  34186. name: "Macro :3c",
  34187. height: math.unit(2, "miles")
  34188. },
  34189. ]
  34190. ))
  34191. characterMakers.push(() => makeCharacter(
  34192. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34193. {
  34194. front: {
  34195. height: math.unit(6 + 2/12, "feet"),
  34196. weight: math.unit(250, "lb"),
  34197. name: "Front",
  34198. image: {
  34199. source: "./media/characters/moonlight/front.svg",
  34200. extra: 1044/908,
  34201. bottom: 56/1100
  34202. }
  34203. },
  34204. feral: {
  34205. height: math.unit(3 + 1/12, "feet"),
  34206. weight: math.unit(50, "kg"),
  34207. name: "Feral",
  34208. image: {
  34209. source: "./media/characters/moonlight/feral.svg",
  34210. extra: 3705/2791,
  34211. bottom: 145/3850
  34212. }
  34213. },
  34214. paw: {
  34215. height: math.unit(1, "feet"),
  34216. name: "Paw",
  34217. image: {
  34218. source: "./media/characters/moonlight/paw.svg"
  34219. }
  34220. },
  34221. paws: {
  34222. height: math.unit(0.98, "feet"),
  34223. name: "Paws",
  34224. image: {
  34225. source: "./media/characters/moonlight/paws.svg",
  34226. extra: 939/939,
  34227. bottom: 50/989
  34228. }
  34229. },
  34230. mouth: {
  34231. height: math.unit(0.48, "feet"),
  34232. name: "Mouth",
  34233. image: {
  34234. source: "./media/characters/moonlight/mouth.svg"
  34235. }
  34236. },
  34237. dick: {
  34238. height: math.unit(1.46, "feet"),
  34239. name: "Dick",
  34240. image: {
  34241. source: "./media/characters/moonlight/dick.svg"
  34242. }
  34243. },
  34244. },
  34245. [
  34246. {
  34247. name: "Normal",
  34248. height: math.unit(6 + 2/12, "feet"),
  34249. default: true
  34250. },
  34251. {
  34252. name: "Macro",
  34253. height: math.unit(300, "feet")
  34254. },
  34255. {
  34256. name: "Macro+",
  34257. height: math.unit(1, "mile")
  34258. },
  34259. {
  34260. name: "Mt. Moon",
  34261. height: math.unit(5, "miles")
  34262. },
  34263. {
  34264. name: "Megamacro",
  34265. height: math.unit(15, "miles")
  34266. },
  34267. ]
  34268. ))
  34269. characterMakers.push(() => makeCharacter(
  34270. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34271. {
  34272. back: {
  34273. height: math.unit(6, "feet"),
  34274. weight: math.unit(150, "lb"),
  34275. name: "Back",
  34276. image: {
  34277. source: "./media/characters/sylen/back.svg",
  34278. extra: 1335/1273,
  34279. bottom: 107/1442
  34280. }
  34281. },
  34282. },
  34283. [
  34284. {
  34285. name: "Normal",
  34286. height: math.unit(5 + 5/12, "feet")
  34287. },
  34288. {
  34289. name: "Megamacro",
  34290. height: math.unit(3, "miles"),
  34291. default: true
  34292. },
  34293. ]
  34294. ))
  34295. characterMakers.push(() => makeCharacter(
  34296. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34297. {
  34298. front: {
  34299. height: math.unit(6, "feet"),
  34300. weight: math.unit(190, "lb"),
  34301. name: "Front",
  34302. image: {
  34303. source: "./media/characters/huttser/front.svg",
  34304. extra: 1152/1058,
  34305. bottom: 23/1175
  34306. }
  34307. },
  34308. side: {
  34309. height: math.unit(6, "feet"),
  34310. weight: math.unit(190, "lb"),
  34311. name: "Side",
  34312. image: {
  34313. source: "./media/characters/huttser/side.svg",
  34314. extra: 1174/1065,
  34315. bottom: 18/1192
  34316. }
  34317. },
  34318. back: {
  34319. height: math.unit(6, "feet"),
  34320. weight: math.unit(190, "lb"),
  34321. name: "Back",
  34322. image: {
  34323. source: "./media/characters/huttser/back.svg",
  34324. extra: 1158/1056,
  34325. bottom: 12/1170
  34326. }
  34327. },
  34328. },
  34329. [
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34334. {
  34335. side: {
  34336. height: math.unit(12 + 9/12, "feet"),
  34337. weight: math.unit(15000, "lb"),
  34338. name: "Side",
  34339. image: {
  34340. source: "./media/characters/faan/side.svg",
  34341. extra: 2747/2697,
  34342. bottom: 0/2747
  34343. }
  34344. },
  34345. front: {
  34346. height: math.unit(12 + 9/12, "feet"),
  34347. weight: math.unit(15000, "lb"),
  34348. name: "Front",
  34349. image: {
  34350. source: "./media/characters/faan/front.svg",
  34351. extra: 607/571,
  34352. bottom: 24/631
  34353. }
  34354. },
  34355. head: {
  34356. height: math.unit(2.85, "feet"),
  34357. name: "Head",
  34358. image: {
  34359. source: "./media/characters/faan/head.svg"
  34360. }
  34361. },
  34362. headAlt: {
  34363. height: math.unit(3.13, "feet"),
  34364. name: "Head-alt",
  34365. image: {
  34366. source: "./media/characters/faan/head-alt.svg"
  34367. }
  34368. },
  34369. },
  34370. [
  34371. {
  34372. name: "Normal",
  34373. height: math.unit(12 + 9/12, "feet"),
  34374. default: true
  34375. },
  34376. ]
  34377. ))
  34378. characterMakers.push(() => makeCharacter(
  34379. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34380. {
  34381. front: {
  34382. height: math.unit(6, "feet"),
  34383. weight: math.unit(300, "lb"),
  34384. name: "Front",
  34385. image: {
  34386. source: "./media/characters/tanio/front.svg",
  34387. extra: 711/673,
  34388. bottom: 25/736
  34389. }
  34390. },
  34391. },
  34392. [
  34393. {
  34394. name: "Normal",
  34395. height: math.unit(6, "feet"),
  34396. default: true
  34397. },
  34398. ]
  34399. ))
  34400. characterMakers.push(() => makeCharacter(
  34401. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34402. {
  34403. front: {
  34404. height: math.unit(3, "inches"),
  34405. name: "Front",
  34406. image: {
  34407. source: "./media/characters/noboru/front.svg",
  34408. extra: 1039/932,
  34409. bottom: 18/1057
  34410. }
  34411. },
  34412. },
  34413. [
  34414. {
  34415. name: "Micro",
  34416. height: math.unit(3, "inches"),
  34417. default: true
  34418. },
  34419. ]
  34420. ))
  34421. characterMakers.push(() => makeCharacter(
  34422. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34423. {
  34424. front: {
  34425. height: math.unit(1.85, "meters"),
  34426. weight: math.unit(80, "kg"),
  34427. name: "Front",
  34428. image: {
  34429. source: "./media/characters/daniel-barrett/front.svg",
  34430. extra: 355/337,
  34431. bottom: 9/364
  34432. }
  34433. },
  34434. },
  34435. [
  34436. {
  34437. name: "Pico",
  34438. height: math.unit(0.0433, "mm")
  34439. },
  34440. {
  34441. name: "Nano",
  34442. height: math.unit(1.5, "mm")
  34443. },
  34444. {
  34445. name: "Micro",
  34446. height: math.unit(5.3, "cm"),
  34447. default: true
  34448. },
  34449. {
  34450. name: "Normal",
  34451. height: math.unit(1.85, "meters")
  34452. },
  34453. {
  34454. name: "Macro",
  34455. height: math.unit(64.7, "meters")
  34456. },
  34457. {
  34458. name: "Megamacro",
  34459. height: math.unit(2.26, "km")
  34460. },
  34461. {
  34462. name: "Gigamacro",
  34463. height: math.unit(79, "km")
  34464. },
  34465. {
  34466. name: "Teramacro",
  34467. height: math.unit(2765, "km")
  34468. },
  34469. {
  34470. name: "Petamacro",
  34471. height: math.unit(96678, "km")
  34472. },
  34473. ]
  34474. ))
  34475. characterMakers.push(() => makeCharacter(
  34476. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34477. {
  34478. front: {
  34479. height: math.unit(30, "meters"),
  34480. weight: math.unit(400, "tons"),
  34481. name: "Front",
  34482. image: {
  34483. source: "./media/characters/zeel/front.svg",
  34484. extra: 2599/2599,
  34485. bottom: 226/2825
  34486. }
  34487. },
  34488. },
  34489. [
  34490. {
  34491. name: "Macro",
  34492. height: math.unit(30, "meters"),
  34493. default: true
  34494. },
  34495. ]
  34496. ))
  34497. characterMakers.push(() => makeCharacter(
  34498. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34499. {
  34500. front: {
  34501. height: math.unit(6 + 7/12, "feet"),
  34502. weight: math.unit(210, "lb"),
  34503. name: "Front",
  34504. image: {
  34505. source: "./media/characters/tarn/front.svg",
  34506. extra: 3517/3220,
  34507. bottom: 91/3608
  34508. }
  34509. },
  34510. back: {
  34511. height: math.unit(6 + 7/12, "feet"),
  34512. weight: math.unit(210, "lb"),
  34513. name: "Back",
  34514. image: {
  34515. source: "./media/characters/tarn/back.svg",
  34516. extra: 3566/3241,
  34517. bottom: 34/3600
  34518. }
  34519. },
  34520. dick: {
  34521. height: math.unit(1.65, "feet"),
  34522. name: "Dick",
  34523. image: {
  34524. source: "./media/characters/tarn/dick.svg"
  34525. }
  34526. },
  34527. paw: {
  34528. height: math.unit(1.80, "feet"),
  34529. name: "Paw",
  34530. image: {
  34531. source: "./media/characters/tarn/paw.svg"
  34532. }
  34533. },
  34534. tongue: {
  34535. height: math.unit(0.97, "feet"),
  34536. name: "Tongue",
  34537. image: {
  34538. source: "./media/characters/tarn/tongue.svg"
  34539. }
  34540. },
  34541. },
  34542. [
  34543. {
  34544. name: "Micro",
  34545. height: math.unit(4, "inches")
  34546. },
  34547. {
  34548. name: "Normal",
  34549. height: math.unit(6 + 7/12, "feet"),
  34550. default: true
  34551. },
  34552. {
  34553. name: "Macro",
  34554. height: math.unit(300, "feet")
  34555. },
  34556. ]
  34557. ))
  34558. characterMakers.push(() => makeCharacter(
  34559. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34560. {
  34561. front: {
  34562. height: math.unit(5 + 7/12, "feet"),
  34563. weight: math.unit(80, "kg"),
  34564. name: "Front",
  34565. image: {
  34566. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34567. extra: 3023/2865,
  34568. bottom: 33/3056
  34569. }
  34570. },
  34571. back: {
  34572. height: math.unit(5 + 7/12, "feet"),
  34573. weight: math.unit(80, "kg"),
  34574. name: "Back",
  34575. image: {
  34576. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34577. extra: 3020/2886,
  34578. bottom: 30/3050
  34579. }
  34580. },
  34581. dick: {
  34582. height: math.unit(0.98, "feet"),
  34583. name: "Dick",
  34584. image: {
  34585. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34586. }
  34587. },
  34588. anatomy: {
  34589. height: math.unit(2.86, "feet"),
  34590. name: "Anatomy",
  34591. image: {
  34592. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34593. }
  34594. },
  34595. },
  34596. [
  34597. {
  34598. name: "Really Small",
  34599. height: math.unit(2, "inches")
  34600. },
  34601. {
  34602. name: "Micro",
  34603. height: math.unit(5.583, "inches")
  34604. },
  34605. {
  34606. name: "Normal",
  34607. height: math.unit(5 + 7/12, "feet"),
  34608. default: true
  34609. },
  34610. {
  34611. name: "Macro",
  34612. height: math.unit(67, "feet")
  34613. },
  34614. {
  34615. name: "Megamacro",
  34616. height: math.unit(134, "feet")
  34617. },
  34618. ]
  34619. ))
  34620. characterMakers.push(() => makeCharacter(
  34621. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34622. {
  34623. front: {
  34624. height: math.unit(9, "feet"),
  34625. weight: math.unit(120, "lb"),
  34626. name: "Front",
  34627. image: {
  34628. source: "./media/characters/sally/front.svg",
  34629. extra: 1506/1349,
  34630. bottom: 66/1572
  34631. }
  34632. },
  34633. },
  34634. [
  34635. {
  34636. name: "Normal",
  34637. height: math.unit(9, "feet"),
  34638. default: true
  34639. },
  34640. ]
  34641. ))
  34642. characterMakers.push(() => makeCharacter(
  34643. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34644. {
  34645. front: {
  34646. height: math.unit(8, "feet"),
  34647. weight: math.unit(900, "lb"),
  34648. name: "Front",
  34649. image: {
  34650. source: "./media/characters/owen/front.svg",
  34651. extra: 1761/1657,
  34652. bottom: 74/1835
  34653. }
  34654. },
  34655. side: {
  34656. height: math.unit(8, "feet"),
  34657. weight: math.unit(900, "lb"),
  34658. name: "Side",
  34659. image: {
  34660. source: "./media/characters/owen/side.svg",
  34661. extra: 1797/1734,
  34662. bottom: 30/1827
  34663. }
  34664. },
  34665. back: {
  34666. height: math.unit(8, "feet"),
  34667. weight: math.unit(900, "lb"),
  34668. name: "Back",
  34669. image: {
  34670. source: "./media/characters/owen/back.svg",
  34671. extra: 1796/1706,
  34672. bottom: 59/1855
  34673. }
  34674. },
  34675. maw: {
  34676. height: math.unit(1.76, "feet"),
  34677. name: "Maw",
  34678. image: {
  34679. source: "./media/characters/owen/maw.svg"
  34680. }
  34681. },
  34682. },
  34683. [
  34684. {
  34685. name: "Normal",
  34686. height: math.unit(8, "feet"),
  34687. default: true
  34688. },
  34689. ]
  34690. ))
  34691. characterMakers.push(() => makeCharacter(
  34692. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34693. {
  34694. front: {
  34695. height: math.unit(4, "feet"),
  34696. weight: math.unit(400, "lb"),
  34697. name: "Front",
  34698. image: {
  34699. source: "./media/characters/ryth/front.svg",
  34700. extra: 1920/1748,
  34701. bottom: 42/1962
  34702. }
  34703. },
  34704. back: {
  34705. height: math.unit(4, "feet"),
  34706. weight: math.unit(400, "lb"),
  34707. name: "Back",
  34708. image: {
  34709. source: "./media/characters/ryth/back.svg",
  34710. extra: 1897/1690,
  34711. bottom: 89/1986
  34712. }
  34713. },
  34714. mouth: {
  34715. height: math.unit(1.39, "feet"),
  34716. name: "Mouth",
  34717. image: {
  34718. source: "./media/characters/ryth/mouth.svg"
  34719. }
  34720. },
  34721. tailmaw: {
  34722. height: math.unit(1.23, "feet"),
  34723. name: "Tailmaw",
  34724. image: {
  34725. source: "./media/characters/ryth/tailmaw.svg"
  34726. }
  34727. },
  34728. goia: {
  34729. height: math.unit(4, "meters"),
  34730. weight: math.unit(10800, "lb"),
  34731. name: "Goia",
  34732. image: {
  34733. source: "./media/characters/ryth/goia.svg",
  34734. extra: 745/640,
  34735. bottom: 107/852
  34736. }
  34737. },
  34738. goiaFront: {
  34739. height: math.unit(4, "meters"),
  34740. weight: math.unit(10800, "lb"),
  34741. name: "Goia (Front)",
  34742. image: {
  34743. source: "./media/characters/ryth/goia-front.svg",
  34744. extra: 750/586,
  34745. bottom: 114/864
  34746. }
  34747. },
  34748. goiaMaw: {
  34749. height: math.unit(5.55, "feet"),
  34750. name: "Goia Maw",
  34751. image: {
  34752. source: "./media/characters/ryth/goia-maw.svg"
  34753. }
  34754. },
  34755. goiaForepaw: {
  34756. height: math.unit(3.5, "feet"),
  34757. name: "Goia Forepaw",
  34758. image: {
  34759. source: "./media/characters/ryth/goia-forepaw.svg"
  34760. }
  34761. },
  34762. goiaHindpaw: {
  34763. height: math.unit(5.55, "feet"),
  34764. name: "Goia Hindpaw",
  34765. image: {
  34766. source: "./media/characters/ryth/goia-hindpaw.svg"
  34767. }
  34768. },
  34769. },
  34770. [
  34771. {
  34772. name: "Normal",
  34773. height: math.unit(4, "feet"),
  34774. default: true
  34775. },
  34776. ]
  34777. ))
  34778. characterMakers.push(() => makeCharacter(
  34779. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34780. {
  34781. front: {
  34782. height: math.unit(7, "feet"),
  34783. weight: math.unit(180, "lb"),
  34784. name: "Front",
  34785. image: {
  34786. source: "./media/characters/necrolance/front.svg",
  34787. extra: 1062/947,
  34788. bottom: 41/1103
  34789. }
  34790. },
  34791. back: {
  34792. height: math.unit(7, "feet"),
  34793. weight: math.unit(180, "lb"),
  34794. name: "Back",
  34795. image: {
  34796. source: "./media/characters/necrolance/back.svg",
  34797. extra: 1045/984,
  34798. bottom: 14/1059
  34799. }
  34800. },
  34801. wing: {
  34802. height: math.unit(2.67, "feet"),
  34803. name: "Wing",
  34804. image: {
  34805. source: "./media/characters/necrolance/wing.svg"
  34806. }
  34807. },
  34808. },
  34809. [
  34810. {
  34811. name: "Normal",
  34812. height: math.unit(7, "feet"),
  34813. default: true
  34814. },
  34815. ]
  34816. ))
  34817. characterMakers.push(() => makeCharacter(
  34818. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34819. {
  34820. front: {
  34821. height: math.unit(76, "meters"),
  34822. weight: math.unit(30000, "tons"),
  34823. name: "Front",
  34824. image: {
  34825. source: "./media/characters/tyler/front.svg",
  34826. extra: 1640/1640,
  34827. bottom: 114/1754
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Macro",
  34834. height: math.unit(76, "meters"),
  34835. default: true
  34836. },
  34837. ]
  34838. ))
  34839. characterMakers.push(() => makeCharacter(
  34840. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34841. {
  34842. front: {
  34843. height: math.unit(4 + 11/12, "feet"),
  34844. weight: math.unit(132, "lb"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/icey/front.svg",
  34848. extra: 2750/2550,
  34849. bottom: 33/2783
  34850. }
  34851. },
  34852. back: {
  34853. height: math.unit(4 + 11/12, "feet"),
  34854. weight: math.unit(132, "lb"),
  34855. name: "Back",
  34856. image: {
  34857. source: "./media/characters/icey/back.svg",
  34858. extra: 2624/2481,
  34859. bottom: 35/2659
  34860. }
  34861. },
  34862. },
  34863. [
  34864. {
  34865. name: "Normal",
  34866. height: math.unit(4 + 11/12, "feet"),
  34867. default: true
  34868. },
  34869. ]
  34870. ))
  34871. characterMakers.push(() => makeCharacter(
  34872. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34873. {
  34874. front: {
  34875. height: math.unit(100, "feet"),
  34876. weight: math.unit(0, "lb"),
  34877. name: "Front",
  34878. image: {
  34879. source: "./media/characters/smile/front.svg",
  34880. extra: 2983/2912,
  34881. bottom: 162/3145
  34882. }
  34883. },
  34884. back: {
  34885. height: math.unit(100, "feet"),
  34886. weight: math.unit(0, "lb"),
  34887. name: "Back",
  34888. image: {
  34889. source: "./media/characters/smile/back.svg",
  34890. extra: 3143/3031,
  34891. bottom: 91/3234
  34892. }
  34893. },
  34894. head: {
  34895. height: math.unit(26.3, "feet"),
  34896. weight: math.unit(0, "lb"),
  34897. name: "Head",
  34898. image: {
  34899. source: "./media/characters/smile/head.svg"
  34900. }
  34901. },
  34902. collar: {
  34903. height: math.unit(5.3, "feet"),
  34904. weight: math.unit(0, "lb"),
  34905. name: "Collar",
  34906. image: {
  34907. source: "./media/characters/smile/collar.svg"
  34908. }
  34909. },
  34910. },
  34911. [
  34912. {
  34913. name: "Macro",
  34914. height: math.unit(100, "feet"),
  34915. default: true
  34916. },
  34917. ]
  34918. ))
  34919. characterMakers.push(() => makeCharacter(
  34920. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34921. {
  34922. dragon: {
  34923. height: math.unit(26, "feet"),
  34924. weight: math.unit(36, "tons"),
  34925. name: "Dragon",
  34926. image: {
  34927. source: "./media/characters/arimphae/dragon.svg",
  34928. extra: 1574/983,
  34929. bottom: 357/1931
  34930. }
  34931. },
  34932. drake: {
  34933. height: math.unit(9, "feet"),
  34934. weight: math.unit(1.5, "tons"),
  34935. name: "Drake",
  34936. image: {
  34937. source: "./media/characters/arimphae/drake.svg",
  34938. extra: 1120/925,
  34939. bottom: 435/1555
  34940. }
  34941. },
  34942. },
  34943. [
  34944. {
  34945. name: "Small",
  34946. height: math.unit(26*5/9, "feet")
  34947. },
  34948. {
  34949. name: "Normal",
  34950. height: math.unit(26, "feet"),
  34951. default: true
  34952. },
  34953. ]
  34954. ))
  34955. characterMakers.push(() => makeCharacter(
  34956. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34957. {
  34958. front: {
  34959. height: math.unit(8 + 9/12, "feet"),
  34960. name: "Front",
  34961. image: {
  34962. source: "./media/characters/xander/front.svg",
  34963. extra: 1237/974,
  34964. bottom: 94/1331
  34965. }
  34966. },
  34967. },
  34968. [
  34969. {
  34970. name: "Normal",
  34971. height: math.unit(8 + 9/12, "feet"),
  34972. default: true
  34973. },
  34974. {
  34975. name: "Gaze Grabber",
  34976. height: math.unit(13 + 8/12, "feet")
  34977. },
  34978. {
  34979. name: "Jaw Dropper",
  34980. height: math.unit(27, "feet")
  34981. },
  34982. {
  34983. name: "Show Stopper",
  34984. height: math.unit(136, "feet")
  34985. },
  34986. {
  34987. name: "Superstar",
  34988. height: math.unit(1.9e6, "miles")
  34989. },
  34990. ]
  34991. ))
  34992. characterMakers.push(() => makeCharacter(
  34993. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34994. {
  34995. side: {
  34996. height: math.unit(2100, "feet"),
  34997. name: "Side",
  34998. image: {
  34999. source: "./media/characters/osiris/side.svg",
  35000. extra: 1105/939,
  35001. bottom: 167/1272
  35002. }
  35003. },
  35004. },
  35005. [
  35006. {
  35007. name: "Macro",
  35008. height: math.unit(2100, "feet"),
  35009. default: true
  35010. },
  35011. ]
  35012. ))
  35013. characterMakers.push(() => makeCharacter(
  35014. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35015. {
  35016. front: {
  35017. height: math.unit(6 + 8/12, "feet"),
  35018. weight: math.unit(225, "lb"),
  35019. name: "Front",
  35020. image: {
  35021. source: "./media/characters/rhys-londe/front.svg",
  35022. extra: 2258/2141,
  35023. bottom: 188/2446
  35024. }
  35025. },
  35026. back: {
  35027. height: math.unit(6 + 8/12, "feet"),
  35028. weight: math.unit(225, "lb"),
  35029. name: "Back",
  35030. image: {
  35031. source: "./media/characters/rhys-londe/back.svg",
  35032. extra: 2237/2137,
  35033. bottom: 63/2300
  35034. }
  35035. },
  35036. frontNsfw: {
  35037. height: math.unit(6 + 8/12, "feet"),
  35038. weight: math.unit(225, "lb"),
  35039. name: "Front (NSFW)",
  35040. image: {
  35041. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35042. extra: 2258/2141,
  35043. bottom: 188/2446
  35044. }
  35045. },
  35046. backNsfw: {
  35047. height: math.unit(6 + 8/12, "feet"),
  35048. weight: math.unit(225, "lb"),
  35049. name: "Back (NSFW)",
  35050. image: {
  35051. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35052. extra: 2237/2137,
  35053. bottom: 63/2300
  35054. }
  35055. },
  35056. dick: {
  35057. height: math.unit(30, "inches"),
  35058. name: "Dick",
  35059. image: {
  35060. source: "./media/characters/rhys-londe/dick.svg"
  35061. }
  35062. },
  35063. maw: {
  35064. height: math.unit(1.6, "feet"),
  35065. name: "Maw",
  35066. image: {
  35067. source: "./media/characters/rhys-londe/maw.svg"
  35068. }
  35069. },
  35070. },
  35071. [
  35072. {
  35073. name: "Normal",
  35074. height: math.unit(6 + 8/12, "feet"),
  35075. default: true
  35076. },
  35077. ]
  35078. ))
  35079. characterMakers.push(() => makeCharacter(
  35080. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35081. {
  35082. front: {
  35083. height: math.unit(3 + 10/12, "feet"),
  35084. weight: math.unit(90, "lb"),
  35085. name: "Front",
  35086. image: {
  35087. source: "./media/characters/taivas-ensim/front.svg",
  35088. extra: 1327/1216,
  35089. bottom: 96/1423
  35090. }
  35091. },
  35092. back: {
  35093. height: math.unit(3 + 10/12, "feet"),
  35094. weight: math.unit(90, "lb"),
  35095. name: "Back",
  35096. image: {
  35097. source: "./media/characters/taivas-ensim/back.svg",
  35098. extra: 1355/1247,
  35099. bottom: 11/1366
  35100. }
  35101. },
  35102. frontNsfw: {
  35103. height: math.unit(3 + 10/12, "feet"),
  35104. weight: math.unit(90, "lb"),
  35105. name: "Front (NSFW)",
  35106. image: {
  35107. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35108. extra: 1327/1216,
  35109. bottom: 96/1423
  35110. }
  35111. },
  35112. backNsfw: {
  35113. height: math.unit(3 + 10/12, "feet"),
  35114. weight: math.unit(90, "lb"),
  35115. name: "Back (NSFW)",
  35116. image: {
  35117. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35118. extra: 1355/1247,
  35119. bottom: 11/1366
  35120. }
  35121. },
  35122. },
  35123. [
  35124. {
  35125. name: "Normal",
  35126. height: math.unit(3 + 10/12, "feet"),
  35127. default: true
  35128. },
  35129. ]
  35130. ))
  35131. characterMakers.push(() => makeCharacter(
  35132. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35133. {
  35134. front: {
  35135. height: math.unit(9 + 6/12, "feet"),
  35136. weight: math.unit(940, "lb"),
  35137. name: "Front",
  35138. image: {
  35139. source: "./media/characters/byliss/front.svg",
  35140. extra: 1327/1290,
  35141. bottom: 82/1409
  35142. }
  35143. },
  35144. back: {
  35145. height: math.unit(9 + 6/12, "feet"),
  35146. weight: math.unit(940, "lb"),
  35147. name: "Back",
  35148. image: {
  35149. source: "./media/characters/byliss/back.svg",
  35150. extra: 1376/1349,
  35151. bottom: 9/1385
  35152. }
  35153. },
  35154. frontNsfw: {
  35155. height: math.unit(9 + 6/12, "feet"),
  35156. weight: math.unit(940, "lb"),
  35157. name: "Front (NSFW)",
  35158. image: {
  35159. source: "./media/characters/byliss/front-nsfw.svg",
  35160. extra: 1327/1290,
  35161. bottom: 82/1409
  35162. }
  35163. },
  35164. backNsfw: {
  35165. height: math.unit(9 + 6/12, "feet"),
  35166. weight: math.unit(940, "lb"),
  35167. name: "Back (NSFW)",
  35168. image: {
  35169. source: "./media/characters/byliss/back-nsfw.svg",
  35170. extra: 1376/1349,
  35171. bottom: 9/1385
  35172. }
  35173. },
  35174. },
  35175. [
  35176. {
  35177. name: "Normal",
  35178. height: math.unit(9 + 6/12, "feet"),
  35179. default: true
  35180. },
  35181. ]
  35182. ))
  35183. characterMakers.push(() => makeCharacter(
  35184. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35185. {
  35186. front: {
  35187. height: math.unit(5 + 2/12, "feet"),
  35188. weight: math.unit(200, "lb"),
  35189. name: "Front",
  35190. image: {
  35191. source: "./media/characters/noraly/front.svg",
  35192. extra: 4985/4773,
  35193. bottom: 150/5135
  35194. }
  35195. },
  35196. full: {
  35197. height: math.unit(5 + 2/12, "feet"),
  35198. weight: math.unit(164, "lb"),
  35199. name: "Full",
  35200. image: {
  35201. source: "./media/characters/noraly/full.svg",
  35202. extra: 1114/1059,
  35203. bottom: 35/1149
  35204. }
  35205. },
  35206. fuller: {
  35207. height: math.unit(5 + 2/12, "feet"),
  35208. weight: math.unit(230, "lb"),
  35209. name: "Fuller",
  35210. image: {
  35211. source: "./media/characters/noraly/fuller.svg",
  35212. extra: 1114/1059,
  35213. bottom: 35/1149
  35214. }
  35215. },
  35216. fullest: {
  35217. height: math.unit(5 + 2/12, "feet"),
  35218. weight: math.unit(300, "lb"),
  35219. name: "Fullest",
  35220. image: {
  35221. source: "./media/characters/noraly/fullest.svg",
  35222. extra: 1114/1059,
  35223. bottom: 35/1149
  35224. }
  35225. },
  35226. },
  35227. [
  35228. {
  35229. name: "Normal",
  35230. height: math.unit(5 + 2/12, "feet"),
  35231. default: true
  35232. },
  35233. ]
  35234. ))
  35235. characterMakers.push(() => makeCharacter(
  35236. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35237. {
  35238. front: {
  35239. height: math.unit(5 + 2/12, "feet"),
  35240. weight: math.unit(210, "lb"),
  35241. name: "Front",
  35242. image: {
  35243. source: "./media/characters/pera/front.svg",
  35244. extra: 1560/1531,
  35245. bottom: 165/1725
  35246. }
  35247. },
  35248. back: {
  35249. height: math.unit(5 + 2/12, "feet"),
  35250. weight: math.unit(210, "lb"),
  35251. name: "Back",
  35252. image: {
  35253. source: "./media/characters/pera/back.svg",
  35254. extra: 1523/1493,
  35255. bottom: 152/1675
  35256. }
  35257. },
  35258. dick: {
  35259. height: math.unit(2.4, "feet"),
  35260. name: "Dick",
  35261. image: {
  35262. source: "./media/characters/pera/dick.svg"
  35263. }
  35264. },
  35265. },
  35266. [
  35267. {
  35268. name: "Normal",
  35269. height: math.unit(5 + 2/12, "feet"),
  35270. default: true
  35271. },
  35272. ]
  35273. ))
  35274. characterMakers.push(() => makeCharacter(
  35275. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35276. {
  35277. front: {
  35278. height: math.unit(12, "feet"),
  35279. weight: math.unit(3200, "lb"),
  35280. name: "Front",
  35281. image: {
  35282. source: "./media/characters/julian/front.svg",
  35283. extra: 2962/2701,
  35284. bottom: 184/3146
  35285. }
  35286. },
  35287. maw: {
  35288. height: math.unit(5.35, "feet"),
  35289. name: "Maw",
  35290. image: {
  35291. source: "./media/characters/julian/maw.svg"
  35292. }
  35293. },
  35294. paw: {
  35295. height: math.unit(3.07, "feet"),
  35296. name: "Paw",
  35297. image: {
  35298. source: "./media/characters/julian/paw.svg"
  35299. }
  35300. },
  35301. },
  35302. [
  35303. {
  35304. name: "Default",
  35305. height: math.unit(12, "feet"),
  35306. default: true
  35307. },
  35308. {
  35309. name: "Big",
  35310. height: math.unit(50, "feet")
  35311. },
  35312. {
  35313. name: "Really Big",
  35314. height: math.unit(1, "mile")
  35315. },
  35316. {
  35317. name: "Extremely Big",
  35318. height: math.unit(100, "miles")
  35319. },
  35320. {
  35321. name: "Planet Hugger",
  35322. height: math.unit(200, "megameters")
  35323. },
  35324. {
  35325. name: "Unreasonably Big",
  35326. height: math.unit(1e300, "meters")
  35327. },
  35328. ]
  35329. ))
  35330. characterMakers.push(() => makeCharacter(
  35331. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35332. {
  35333. solgooleo: {
  35334. height: math.unit(4, "meters"),
  35335. weight: math.unit(6000*1.5, "kg"),
  35336. volume: math.unit(6000, "liters"),
  35337. name: "Solgooleo",
  35338. image: {
  35339. source: "./media/characters/pi/solgooleo.svg",
  35340. extra: 388/331,
  35341. bottom: 29/417
  35342. }
  35343. },
  35344. },
  35345. [
  35346. {
  35347. name: "Normal",
  35348. height: math.unit(4, "meters"),
  35349. default: true
  35350. },
  35351. ]
  35352. ))
  35353. characterMakers.push(() => makeCharacter(
  35354. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35355. {
  35356. front: {
  35357. height: math.unit(8, "feet"),
  35358. weight: math.unit(4, "tons"),
  35359. name: "Front",
  35360. image: {
  35361. source: "./media/characters/shaun/front.svg",
  35362. extra: 503/495,
  35363. bottom: 20/523
  35364. }
  35365. },
  35366. back: {
  35367. height: math.unit(8, "feet"),
  35368. weight: math.unit(4, "tons"),
  35369. name: "Back",
  35370. image: {
  35371. source: "./media/characters/shaun/back.svg",
  35372. extra: 487/480,
  35373. bottom: 20/507
  35374. }
  35375. },
  35376. },
  35377. [
  35378. {
  35379. name: "Lorg",
  35380. height: math.unit(8, "feet"),
  35381. default: true
  35382. },
  35383. ]
  35384. ))
  35385. characterMakers.push(() => makeCharacter(
  35386. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35387. {
  35388. frontAnthro: {
  35389. height: math.unit(7, "feet"),
  35390. name: "Front",
  35391. image: {
  35392. source: "./media/characters/sini/front-anthro.svg",
  35393. extra: 726/678,
  35394. bottom: 35/761
  35395. },
  35396. form: "anthro",
  35397. default: true
  35398. },
  35399. backAnthro: {
  35400. height: math.unit(7, "feet"),
  35401. name: "Back",
  35402. image: {
  35403. source: "./media/characters/sini/back-anthro.svg",
  35404. extra: 743/701,
  35405. bottom: 12/755
  35406. },
  35407. form: "anthro",
  35408. },
  35409. frontAnthroNsfw: {
  35410. height: math.unit(7, "feet"),
  35411. name: "Front (NSFW)",
  35412. image: {
  35413. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35414. extra: 726/678,
  35415. bottom: 35/761
  35416. },
  35417. form: "anthro"
  35418. },
  35419. backAnthroNsfw: {
  35420. height: math.unit(7, "feet"),
  35421. name: "Back (NSFW)",
  35422. image: {
  35423. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35424. extra: 743/701,
  35425. bottom: 12/755
  35426. },
  35427. form: "anthro",
  35428. },
  35429. mawAnthro: {
  35430. height: math.unit(2.14, "feet"),
  35431. name: "Maw",
  35432. image: {
  35433. source: "./media/characters/sini/maw-anthro.svg"
  35434. },
  35435. form: "anthro"
  35436. },
  35437. dick: {
  35438. height: math.unit(1.45, "feet"),
  35439. name: "Dick",
  35440. image: {
  35441. source: "./media/characters/sini/dick-anthro.svg"
  35442. },
  35443. form: "anthro"
  35444. },
  35445. feral: {
  35446. height: math.unit(16, "feet"),
  35447. name: "Feral",
  35448. image: {
  35449. source: "./media/characters/sini/feral.svg",
  35450. extra: 814/605,
  35451. bottom: 11/825
  35452. },
  35453. form: "feral",
  35454. default: true
  35455. },
  35456. feralNsfw: {
  35457. height: math.unit(16, "feet"),
  35458. name: "Feral (NSFW)",
  35459. image: {
  35460. source: "./media/characters/sini/feral-nsfw.svg",
  35461. extra: 814/605,
  35462. bottom: 11/825
  35463. },
  35464. form: "feral"
  35465. },
  35466. mawFeral: {
  35467. height: math.unit(5.66, "feet"),
  35468. name: "Maw",
  35469. image: {
  35470. source: "./media/characters/sini/maw-feral.svg"
  35471. },
  35472. form: "feral",
  35473. },
  35474. pawFeral: {
  35475. height: math.unit(5.17, "feet"),
  35476. name: "Paw",
  35477. image: {
  35478. source: "./media/characters/sini/paw-feral.svg"
  35479. },
  35480. form: "feral",
  35481. },
  35482. rumpFeral: {
  35483. height: math.unit(13.11, "feet"),
  35484. name: "Rump",
  35485. image: {
  35486. source: "./media/characters/sini/rump-feral.svg"
  35487. },
  35488. form: "feral",
  35489. },
  35490. dickFeral: {
  35491. height: math.unit(1, "feet"),
  35492. name: "Dick",
  35493. image: {
  35494. source: "./media/characters/sini/dick-feral.svg"
  35495. },
  35496. form: "feral",
  35497. },
  35498. eyeFeral: {
  35499. height: math.unit(1.23, "feet"),
  35500. name: "Eye",
  35501. image: {
  35502. source: "./media/characters/sini/eye-feral.svg"
  35503. },
  35504. form: "feral",
  35505. },
  35506. },
  35507. [
  35508. {
  35509. name: "Normal",
  35510. height: math.unit(7, "feet"),
  35511. default: true,
  35512. form: "anthro"
  35513. },
  35514. {
  35515. name: "Normal",
  35516. height: math.unit(16, "feet"),
  35517. default: true,
  35518. form: "feral"
  35519. },
  35520. ],
  35521. {
  35522. "anthro": {
  35523. name: "Anthro",
  35524. default: true
  35525. },
  35526. "feral": {
  35527. name: "Feral",
  35528. }
  35529. }
  35530. ))
  35531. characterMakers.push(() => makeCharacter(
  35532. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35533. {
  35534. side: {
  35535. height: math.unit(47.2, "meters"),
  35536. weight: math.unit(10000, "tons"),
  35537. name: "Side",
  35538. image: {
  35539. source: "./media/characters/raylldo/side.svg",
  35540. extra: 2363/642,
  35541. bottom: 221/2584
  35542. }
  35543. },
  35544. top: {
  35545. height: math.unit(240, "meters"),
  35546. weight: math.unit(10000, "tons"),
  35547. name: "Top",
  35548. image: {
  35549. source: "./media/characters/raylldo/top.svg"
  35550. }
  35551. },
  35552. bottom: {
  35553. height: math.unit(240, "meters"),
  35554. weight: math.unit(10000, "tons"),
  35555. name: "Bottom",
  35556. image: {
  35557. source: "./media/characters/raylldo/bottom.svg"
  35558. }
  35559. },
  35560. head: {
  35561. height: math.unit(38.6, "meters"),
  35562. name: "Head",
  35563. image: {
  35564. source: "./media/characters/raylldo/head.svg",
  35565. extra: 1335/1112,
  35566. bottom: 0/1335
  35567. }
  35568. },
  35569. maw: {
  35570. height: math.unit(16.37, "meters"),
  35571. name: "Maw",
  35572. image: {
  35573. source: "./media/characters/raylldo/maw.svg",
  35574. extra: 883/660,
  35575. bottom: 0/883
  35576. },
  35577. extraAttributes: {
  35578. preyCapacity: {
  35579. name: "Capacity",
  35580. power: 3,
  35581. type: "volume",
  35582. base: math.unit(1000, "people")
  35583. },
  35584. tongueSize: {
  35585. name: "Tongue Size",
  35586. power: 2,
  35587. type: "area",
  35588. base: math.unit(21, "m^2")
  35589. }
  35590. }
  35591. },
  35592. forepaw: {
  35593. height: math.unit(18, "meters"),
  35594. name: "Forepaw",
  35595. image: {
  35596. source: "./media/characters/raylldo/forepaw.svg"
  35597. }
  35598. },
  35599. hindpaw: {
  35600. height: math.unit(23, "meters"),
  35601. name: "Hindpaw",
  35602. image: {
  35603. source: "./media/characters/raylldo/hindpaw.svg"
  35604. }
  35605. },
  35606. genitals: {
  35607. height: math.unit(42, "meters"),
  35608. name: "Genitals",
  35609. image: {
  35610. source: "./media/characters/raylldo/genitals.svg"
  35611. }
  35612. },
  35613. },
  35614. [
  35615. {
  35616. name: "Normal",
  35617. height: math.unit(47.2, "meters"),
  35618. default: true
  35619. },
  35620. ]
  35621. ))
  35622. characterMakers.push(() => makeCharacter(
  35623. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35624. {
  35625. anthroFront: {
  35626. height: math.unit(9, "feet"),
  35627. weight: math.unit(600, "lb"),
  35628. name: "Anthro (Front)",
  35629. image: {
  35630. source: "./media/characters/glint/anthro-front.svg",
  35631. extra: 1097/1018,
  35632. bottom: 28/1125
  35633. }
  35634. },
  35635. anthroBack: {
  35636. height: math.unit(9, "feet"),
  35637. weight: math.unit(600, "lb"),
  35638. name: "Anthro (Back)",
  35639. image: {
  35640. source: "./media/characters/glint/anthro-back.svg",
  35641. extra: 1154/997,
  35642. bottom: 36/1190
  35643. }
  35644. },
  35645. feral: {
  35646. height: math.unit(11, "feet"),
  35647. weight: math.unit(50000, "lb"),
  35648. name: "Feral",
  35649. image: {
  35650. source: "./media/characters/glint/feral.svg",
  35651. extra: 3035/1585,
  35652. bottom: 1169/4204
  35653. }
  35654. },
  35655. dickAnthro: {
  35656. height: math.unit(0.7, "meters"),
  35657. name: "Dick (Anthro)",
  35658. image: {
  35659. source: "./media/characters/glint/dick-anthro.svg"
  35660. }
  35661. },
  35662. dickFeral: {
  35663. height: math.unit(2.65, "meters"),
  35664. name: "Dick (Feral)",
  35665. image: {
  35666. source: "./media/characters/glint/dick-feral.svg"
  35667. }
  35668. },
  35669. slitHidden: {
  35670. height: math.unit(5.85, "meters"),
  35671. name: "Slit (Hidden)",
  35672. image: {
  35673. source: "./media/characters/glint/slit-hidden.svg"
  35674. }
  35675. },
  35676. slitErect: {
  35677. height: math.unit(5.85, "meters"),
  35678. name: "Slit (Erect)",
  35679. image: {
  35680. source: "./media/characters/glint/slit-erect.svg"
  35681. }
  35682. },
  35683. mawAnthro: {
  35684. height: math.unit(0.63, "meters"),
  35685. name: "Maw (Anthro)",
  35686. image: {
  35687. source: "./media/characters/glint/maw.svg"
  35688. }
  35689. },
  35690. mawFeral: {
  35691. height: math.unit(2.89, "meters"),
  35692. name: "Maw (Feral)",
  35693. image: {
  35694. source: "./media/characters/glint/maw.svg"
  35695. }
  35696. },
  35697. },
  35698. [
  35699. {
  35700. name: "Normal",
  35701. height: math.unit(9, "feet"),
  35702. default: true
  35703. },
  35704. ]
  35705. ))
  35706. characterMakers.push(() => makeCharacter(
  35707. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35708. {
  35709. side: {
  35710. height: math.unit(15, "feet"),
  35711. weight: math.unit(5000, "kg"),
  35712. name: "Side",
  35713. image: {
  35714. source: "./media/characters/kairne/side.svg",
  35715. extra: 979/811,
  35716. bottom: 13/992
  35717. }
  35718. },
  35719. front: {
  35720. height: math.unit(15, "feet"),
  35721. weight: math.unit(5000, "kg"),
  35722. name: "Front",
  35723. image: {
  35724. source: "./media/characters/kairne/front.svg",
  35725. extra: 908/814,
  35726. bottom: 26/934
  35727. }
  35728. },
  35729. sideNsfw: {
  35730. height: math.unit(15, "feet"),
  35731. weight: math.unit(5000, "kg"),
  35732. name: "Side (NSFW)",
  35733. image: {
  35734. source: "./media/characters/kairne/side-nsfw.svg",
  35735. extra: 979/811,
  35736. bottom: 13/992
  35737. }
  35738. },
  35739. frontNsfw: {
  35740. height: math.unit(15, "feet"),
  35741. weight: math.unit(5000, "kg"),
  35742. name: "Front (NSFW)",
  35743. image: {
  35744. source: "./media/characters/kairne/front-nsfw.svg",
  35745. extra: 908/814,
  35746. bottom: 26/934
  35747. }
  35748. },
  35749. dickCaged: {
  35750. height: math.unit(0.65, "meters"),
  35751. name: "Dick-caged",
  35752. image: {
  35753. source: "./media/characters/kairne/dick-caged.svg"
  35754. }
  35755. },
  35756. dick: {
  35757. height: math.unit(0.79, "meters"),
  35758. name: "Dick",
  35759. image: {
  35760. source: "./media/characters/kairne/dick.svg"
  35761. }
  35762. },
  35763. genitals: {
  35764. height: math.unit(1.29, "meters"),
  35765. name: "Genitals",
  35766. image: {
  35767. source: "./media/characters/kairne/genitals.svg"
  35768. }
  35769. },
  35770. maw: {
  35771. height: math.unit(1.73, "meters"),
  35772. name: "Maw",
  35773. image: {
  35774. source: "./media/characters/kairne/maw.svg"
  35775. }
  35776. },
  35777. },
  35778. [
  35779. {
  35780. name: "Normal",
  35781. height: math.unit(15, "feet"),
  35782. default: true
  35783. },
  35784. ]
  35785. ))
  35786. characterMakers.push(() => makeCharacter(
  35787. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35788. {
  35789. front: {
  35790. height: math.unit(5 + 8/12, "feet"),
  35791. weight: math.unit(139, "lb"),
  35792. name: "Front",
  35793. image: {
  35794. source: "./media/characters/biscuit-jackal/front.svg",
  35795. extra: 2106/1961,
  35796. bottom: 58/2164
  35797. }
  35798. },
  35799. back: {
  35800. height: math.unit(5 + 8/12, "feet"),
  35801. weight: math.unit(139, "lb"),
  35802. name: "Back",
  35803. image: {
  35804. source: "./media/characters/biscuit-jackal/back.svg",
  35805. extra: 2132/1976,
  35806. bottom: 57/2189
  35807. }
  35808. },
  35809. werejackal: {
  35810. height: math.unit(6 + 3/12, "feet"),
  35811. weight: math.unit(188, "lb"),
  35812. name: "Werejackal",
  35813. image: {
  35814. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35815. extra: 2373/2178,
  35816. bottom: 53/2426
  35817. }
  35818. },
  35819. },
  35820. [
  35821. {
  35822. name: "Normal",
  35823. height: math.unit(5 + 8/12, "feet"),
  35824. default: true
  35825. },
  35826. ]
  35827. ))
  35828. characterMakers.push(() => makeCharacter(
  35829. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35830. {
  35831. front: {
  35832. height: math.unit(140, "cm"),
  35833. weight: math.unit(45, "kg"),
  35834. name: "Front",
  35835. image: {
  35836. source: "./media/characters/tayra-white/front.svg",
  35837. extra: 2229/2192,
  35838. bottom: 75/2304
  35839. }
  35840. },
  35841. },
  35842. [
  35843. {
  35844. name: "Normal",
  35845. height: math.unit(140, "cm"),
  35846. default: true
  35847. },
  35848. ]
  35849. ))
  35850. characterMakers.push(() => makeCharacter(
  35851. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35852. {
  35853. front: {
  35854. height: math.unit(4 + 5/12, "feet"),
  35855. name: "Front",
  35856. image: {
  35857. source: "./media/characters/scoop/front.svg",
  35858. extra: 1257/1136,
  35859. bottom: 69/1326
  35860. }
  35861. },
  35862. back: {
  35863. height: math.unit(4 + 5/12, "feet"),
  35864. name: "Back",
  35865. image: {
  35866. source: "./media/characters/scoop/back.svg",
  35867. extra: 1321/1152,
  35868. bottom: 32/1353
  35869. }
  35870. },
  35871. maw: {
  35872. height: math.unit(0.68, "feet"),
  35873. name: "Maw",
  35874. image: {
  35875. source: "./media/characters/scoop/maw.svg"
  35876. }
  35877. },
  35878. },
  35879. [
  35880. {
  35881. name: "Really Small",
  35882. height: math.unit(1, "mm")
  35883. },
  35884. {
  35885. name: "Micro",
  35886. height: math.unit(1, "inch")
  35887. },
  35888. {
  35889. name: "Normal",
  35890. height: math.unit(4 + 5/12, "feet"),
  35891. default: true
  35892. },
  35893. {
  35894. name: "Macro",
  35895. height: math.unit(200, "feet")
  35896. },
  35897. {
  35898. name: "Megamacro",
  35899. height: math.unit(3240, "feet")
  35900. },
  35901. {
  35902. name: "Teramacro",
  35903. height: math.unit(2500, "miles")
  35904. },
  35905. ]
  35906. ))
  35907. characterMakers.push(() => makeCharacter(
  35908. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35909. {
  35910. front: {
  35911. height: math.unit(15 + 7/12, "feet"),
  35912. weight: math.unit(1150, "tons"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/saphinara/front.svg",
  35916. extra: 1837/1643,
  35917. bottom: 84/1921
  35918. },
  35919. form: "normal",
  35920. default: true
  35921. },
  35922. side: {
  35923. height: math.unit(15 + 7/12, "feet"),
  35924. weight: math.unit(1150, "tons"),
  35925. name: "Side",
  35926. image: {
  35927. source: "./media/characters/saphinara/side.svg",
  35928. extra: 605/547,
  35929. bottom: 6/611
  35930. },
  35931. form: "normal"
  35932. },
  35933. back: {
  35934. height: math.unit(15 + 7/12, "feet"),
  35935. weight: math.unit(1150, "tons"),
  35936. name: "Back",
  35937. image: {
  35938. source: "./media/characters/saphinara/back.svg",
  35939. extra: 591/531,
  35940. bottom: 13/604
  35941. },
  35942. form: "normal"
  35943. },
  35944. frontTail: {
  35945. height: math.unit(15 + 7/12, "feet"),
  35946. weight: math.unit(1150, "tons"),
  35947. name: "Front (Full Tail)",
  35948. image: {
  35949. source: "./media/characters/saphinara/front-tail.svg",
  35950. extra: 2256/1630,
  35951. bottom: 261/2517
  35952. },
  35953. form: "normal"
  35954. },
  35955. insides: {
  35956. height: math.unit(11.92, "feet"),
  35957. name: "Insides",
  35958. image: {
  35959. source: "./media/characters/saphinara/insides.svg"
  35960. },
  35961. form: "normal"
  35962. },
  35963. head: {
  35964. height: math.unit(4.17, "feet"),
  35965. name: "Head",
  35966. image: {
  35967. source: "./media/characters/saphinara/head.svg"
  35968. },
  35969. form: "normal"
  35970. },
  35971. tongue: {
  35972. height: math.unit(4.60, "feet"),
  35973. name: "Tongue",
  35974. image: {
  35975. source: "./media/characters/saphinara/tongue.svg"
  35976. },
  35977. form: "normal"
  35978. },
  35979. headEnraged: {
  35980. height: math.unit(5.55, "feet"),
  35981. name: "Head (Enraged)",
  35982. image: {
  35983. source: "./media/characters/saphinara/head-enraged.svg"
  35984. },
  35985. form: "normal"
  35986. },
  35987. wings: {
  35988. height: math.unit(11.95, "feet"),
  35989. name: "Wings",
  35990. image: {
  35991. source: "./media/characters/saphinara/wings.svg"
  35992. },
  35993. form: "normal"
  35994. },
  35995. feathers: {
  35996. height: math.unit(8.92, "feet"),
  35997. name: "Feathers",
  35998. image: {
  35999. source: "./media/characters/saphinara/feathers.svg"
  36000. },
  36001. form: "normal"
  36002. },
  36003. shackles: {
  36004. height: math.unit(2, "feet"),
  36005. name: "Shackles",
  36006. image: {
  36007. source: "./media/characters/saphinara/shackles.svg"
  36008. },
  36009. form: "normal"
  36010. },
  36011. eyes: {
  36012. height: math.unit(1.331, "feet"),
  36013. name: "Eyes",
  36014. image: {
  36015. source: "./media/characters/saphinara/eyes.svg"
  36016. },
  36017. form: "normal"
  36018. },
  36019. eyesEnraged: {
  36020. height: math.unit(1.331, "feet"),
  36021. name: "Eyes (Enraged)",
  36022. image: {
  36023. source: "./media/characters/saphinara/eyes-enraged.svg"
  36024. },
  36025. form: "normal"
  36026. },
  36027. trueFormSide: {
  36028. height: math.unit(200, "feet"),
  36029. weight: math.unit(1e7, "tons"),
  36030. name: "Side",
  36031. image: {
  36032. source: "./media/characters/saphinara/true-form-side.svg",
  36033. extra: 1399/770,
  36034. bottom: 97/1496
  36035. },
  36036. form: "true-form",
  36037. default: true
  36038. },
  36039. trueFormMaw: {
  36040. height: math.unit(71.5, "feet"),
  36041. name: "Maw",
  36042. image: {
  36043. source: "./media/characters/saphinara/true-form-maw.svg",
  36044. extra: 2302/1453,
  36045. bottom: 0/2302
  36046. },
  36047. form: "true-form"
  36048. },
  36049. meowberusSide: {
  36050. height: math.unit(75, "feet"),
  36051. weight: math.unit(180000, "kg"),
  36052. preyCapacity: math.unit(50000, "people"),
  36053. name: "Side",
  36054. image: {
  36055. source: "./media/characters/saphinara/meowberus-side.svg",
  36056. extra: 1400/711,
  36057. bottom: 126/1526
  36058. },
  36059. form: "meowberus",
  36060. extraAttributes: {
  36061. "pawArea": {
  36062. name: "Paw Size",
  36063. power: 2,
  36064. type: "area",
  36065. base: math.unit(35, "m^2")
  36066. }
  36067. }
  36068. },
  36069. },
  36070. [
  36071. {
  36072. name: "Normal",
  36073. height: math.unit(15 + 7/12, "feet"),
  36074. default: true,
  36075. form: "normal"
  36076. },
  36077. {
  36078. name: "Angry",
  36079. height: math.unit(30 + 6/12, "feet"),
  36080. form: "normal"
  36081. },
  36082. {
  36083. name: "Enraged",
  36084. height: math.unit(102 + 1/12, "feet"),
  36085. form: "normal"
  36086. },
  36087. {
  36088. name: "True",
  36089. height: math.unit(200, "feet"),
  36090. default: true,
  36091. form: "true-form"
  36092. },
  36093. {
  36094. name: "Normal",
  36095. height: math.unit(75, "feet"),
  36096. default: true,
  36097. form: "meowberus"
  36098. },
  36099. ],
  36100. {
  36101. "normal": {
  36102. name: "Normal",
  36103. default: true
  36104. },
  36105. "true-form": {
  36106. name: "True Form"
  36107. },
  36108. "meowberus": {
  36109. name: "Meowberus",
  36110. },
  36111. }
  36112. ))
  36113. characterMakers.push(() => makeCharacter(
  36114. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36115. {
  36116. front: {
  36117. height: math.unit(6 + 8/12, "feet"),
  36118. weight: math.unit(300, "lb"),
  36119. name: "Front",
  36120. image: {
  36121. source: "./media/characters/jrain/front.svg",
  36122. extra: 3039/2865,
  36123. bottom: 399/3438
  36124. }
  36125. },
  36126. back: {
  36127. height: math.unit(6 + 8/12, "feet"),
  36128. weight: math.unit(300, "lb"),
  36129. name: "Back",
  36130. image: {
  36131. source: "./media/characters/jrain/back.svg",
  36132. extra: 3089/2938,
  36133. bottom: 172/3261
  36134. }
  36135. },
  36136. head: {
  36137. height: math.unit(2.14, "feet"),
  36138. name: "Head",
  36139. image: {
  36140. source: "./media/characters/jrain/head.svg"
  36141. }
  36142. },
  36143. maw: {
  36144. height: math.unit(1.77, "feet"),
  36145. name: "Maw",
  36146. image: {
  36147. source: "./media/characters/jrain/maw.svg"
  36148. }
  36149. },
  36150. leftHand: {
  36151. height: math.unit(1.1, "feet"),
  36152. name: "Left Hand",
  36153. image: {
  36154. source: "./media/characters/jrain/left-hand.svg"
  36155. }
  36156. },
  36157. rightHand: {
  36158. height: math.unit(1.1, "feet"),
  36159. name: "Right Hand",
  36160. image: {
  36161. source: "./media/characters/jrain/right-hand.svg"
  36162. }
  36163. },
  36164. eye: {
  36165. height: math.unit(0.35, "feet"),
  36166. name: "Eye",
  36167. image: {
  36168. source: "./media/characters/jrain/eye.svg"
  36169. }
  36170. },
  36171. },
  36172. [
  36173. {
  36174. name: "Normal",
  36175. height: math.unit(6 + 8/12, "feet"),
  36176. default: true
  36177. },
  36178. {
  36179. name: "Casually Large",
  36180. height: math.unit(25, "feet")
  36181. },
  36182. {
  36183. name: "Giant",
  36184. height: math.unit(100, "feet")
  36185. },
  36186. {
  36187. name: "Kaiju",
  36188. height: math.unit(300, "feet")
  36189. },
  36190. ]
  36191. ))
  36192. characterMakers.push(() => makeCharacter(
  36193. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36194. {
  36195. dragon: {
  36196. height: math.unit(5, "meters"),
  36197. name: "Dragon",
  36198. image: {
  36199. source: "./media/characters/sabrina/dragon.svg",
  36200. extra: 3670 / 2365,
  36201. bottom: 333 / 4003
  36202. }
  36203. },
  36204. gryphon: {
  36205. height: math.unit(3, "meters"),
  36206. name: "Gryphon",
  36207. image: {
  36208. source: "./media/characters/sabrina/gryphon.svg",
  36209. extra: 1576 / 945,
  36210. bottom: 71 / 1647
  36211. }
  36212. },
  36213. snake: {
  36214. height: math.unit(12, "meters"),
  36215. name: "Snake",
  36216. image: {
  36217. source: "./media/characters/sabrina/snake.svg",
  36218. extra: 1758 / 1320,
  36219. bottom: 186 / 1944
  36220. }
  36221. },
  36222. collar: {
  36223. height: math.unit(1.86, "meters"),
  36224. name: "Collar",
  36225. image: {
  36226. source: "./media/characters/sabrina/collar.svg"
  36227. }
  36228. },
  36229. eye: {
  36230. height: math.unit(0.53, "meters"),
  36231. name: "Eye",
  36232. image: {
  36233. source: "./media/characters/sabrina/eye.svg"
  36234. }
  36235. },
  36236. foot: {
  36237. height: math.unit(1.86, "meters"),
  36238. name: "Foot",
  36239. image: {
  36240. source: "./media/characters/sabrina/foot.svg"
  36241. }
  36242. },
  36243. hand: {
  36244. height: math.unit(1.32, "meters"),
  36245. name: "Hand",
  36246. image: {
  36247. source: "./media/characters/sabrina/hand.svg"
  36248. }
  36249. },
  36250. head: {
  36251. height: math.unit(2.44, "meters"),
  36252. name: "Head",
  36253. image: {
  36254. source: "./media/characters/sabrina/head.svg"
  36255. }
  36256. },
  36257. headAngry: {
  36258. height: math.unit(2.44, "meters"),
  36259. name: "Head (Angry))",
  36260. image: {
  36261. source: "./media/characters/sabrina/head-angry.svg"
  36262. }
  36263. },
  36264. maw: {
  36265. height: math.unit(1.65, "meters"),
  36266. name: "Maw",
  36267. image: {
  36268. source: "./media/characters/sabrina/maw.svg"
  36269. }
  36270. },
  36271. spikes: {
  36272. height: math.unit(1.69, "meters"),
  36273. name: "Spikes",
  36274. image: {
  36275. source: "./media/characters/sabrina/spikes.svg"
  36276. }
  36277. },
  36278. stomach: {
  36279. height: math.unit(1.15, "meters"),
  36280. name: "Stomach",
  36281. image: {
  36282. source: "./media/characters/sabrina/stomach.svg"
  36283. }
  36284. },
  36285. tongue: {
  36286. height: math.unit(1.27, "meters"),
  36287. name: "Tongue",
  36288. image: {
  36289. source: "./media/characters/sabrina/tongue.svg"
  36290. }
  36291. },
  36292. wingDorsal: {
  36293. height: math.unit(4.85, "meters"),
  36294. name: "Wing (Dorsal)",
  36295. image: {
  36296. source: "./media/characters/sabrina/wing-dorsal.svg"
  36297. }
  36298. },
  36299. wingVentral: {
  36300. height: math.unit(4.85, "meters"),
  36301. name: "Wing (Ventral)",
  36302. image: {
  36303. source: "./media/characters/sabrina/wing-ventral.svg"
  36304. }
  36305. },
  36306. },
  36307. [
  36308. {
  36309. name: "Normal",
  36310. height: math.unit(5, "meters"),
  36311. default: true
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36317. {
  36318. frontMaid: {
  36319. height: math.unit(5 + 5/12, "feet"),
  36320. weight: math.unit(130, "lb"),
  36321. name: "Front (Maid)",
  36322. image: {
  36323. source: "./media/characters/midnight-tales/front-maid.svg",
  36324. extra: 489/454,
  36325. bottom: 61/550
  36326. }
  36327. },
  36328. frontFormal: {
  36329. height: math.unit(5 + 5/12, "feet"),
  36330. weight: math.unit(130, "lb"),
  36331. name: "Front (Formal)",
  36332. image: {
  36333. source: "./media/characters/midnight-tales/front-formal.svg",
  36334. extra: 489/454,
  36335. bottom: 61/550
  36336. }
  36337. },
  36338. back: {
  36339. height: math.unit(5 + 5/12, "feet"),
  36340. weight: math.unit(130, "lb"),
  36341. name: "Back",
  36342. image: {
  36343. source: "./media/characters/midnight-tales/back.svg",
  36344. extra: 498/456,
  36345. bottom: 33/531
  36346. }
  36347. },
  36348. frontBeast: {
  36349. height: math.unit(40, "feet"),
  36350. weight: math.unit(64000, "lb"),
  36351. name: "Front (Beast)",
  36352. image: {
  36353. source: "./media/characters/midnight-tales/front-beast.svg",
  36354. extra: 927/860,
  36355. bottom: 53/980
  36356. }
  36357. },
  36358. backBeast: {
  36359. height: math.unit(40, "feet"),
  36360. weight: math.unit(64000, "lb"),
  36361. name: "Back (Beast)",
  36362. image: {
  36363. source: "./media/characters/midnight-tales/back-beast.svg",
  36364. extra: 929/855,
  36365. bottom: 16/945
  36366. }
  36367. },
  36368. footBeast: {
  36369. height: math.unit(6.7, "feet"),
  36370. name: "Foot (Beast)",
  36371. image: {
  36372. source: "./media/characters/midnight-tales/foot-beast.svg"
  36373. }
  36374. },
  36375. headBeast: {
  36376. height: math.unit(8, "feet"),
  36377. name: "Head (Beast)",
  36378. image: {
  36379. source: "./media/characters/midnight-tales/head-beast.svg"
  36380. }
  36381. },
  36382. },
  36383. [
  36384. {
  36385. name: "Normal",
  36386. height: math.unit(5 + 5 / 12, "feet"),
  36387. default: true
  36388. },
  36389. {
  36390. name: "Macro",
  36391. height: math.unit(25, "feet")
  36392. },
  36393. ]
  36394. ))
  36395. characterMakers.push(() => makeCharacter(
  36396. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36397. {
  36398. front: {
  36399. height: math.unit(5 + 10/12, "feet"),
  36400. name: "Front",
  36401. image: {
  36402. source: "./media/characters/argon/front.svg",
  36403. extra: 2009/1935,
  36404. bottom: 118/2127
  36405. }
  36406. },
  36407. back: {
  36408. height: math.unit(5 + 10/12, "feet"),
  36409. name: "Back",
  36410. image: {
  36411. source: "./media/characters/argon/back.svg",
  36412. extra: 2047/1992,
  36413. bottom: 20/2067
  36414. }
  36415. },
  36416. frontDressed: {
  36417. height: math.unit(5 + 10/12, "feet"),
  36418. name: "Front (Dressed)",
  36419. image: {
  36420. source: "./media/characters/argon/front-dressed.svg",
  36421. extra: 2009/1935,
  36422. bottom: 118/2127
  36423. }
  36424. },
  36425. },
  36426. [
  36427. {
  36428. name: "Normal",
  36429. height: math.unit(5 + 10/12, "feet"),
  36430. default: true
  36431. },
  36432. ]
  36433. ))
  36434. characterMakers.push(() => makeCharacter(
  36435. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36436. {
  36437. front: {
  36438. height: math.unit(8 + 6/12, "feet"),
  36439. weight: math.unit(1150, "lb"),
  36440. name: "Front",
  36441. image: {
  36442. source: "./media/characters/kichi/front.svg",
  36443. extra: 1267/1164,
  36444. bottom: 61/1328
  36445. }
  36446. },
  36447. back: {
  36448. height: math.unit(8 + 6/12, "feet"),
  36449. weight: math.unit(1150, "lb"),
  36450. name: "Back",
  36451. image: {
  36452. source: "./media/characters/kichi/back.svg",
  36453. extra: 1273/1166,
  36454. bottom: 33/1306
  36455. }
  36456. },
  36457. },
  36458. [
  36459. {
  36460. name: "Normal",
  36461. height: math.unit(8 + 6/12, "feet"),
  36462. default: true
  36463. },
  36464. ]
  36465. ))
  36466. characterMakers.push(() => makeCharacter(
  36467. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36468. {
  36469. front: {
  36470. height: math.unit(6, "feet"),
  36471. weight: math.unit(210, "lb"),
  36472. name: "Front",
  36473. image: {
  36474. source: "./media/characters/manetel-greyscale/front.svg",
  36475. extra: 350/312,
  36476. bottom: 8/358
  36477. }
  36478. },
  36479. },
  36480. [
  36481. {
  36482. name: "Micro",
  36483. height: math.unit(2, "inches")
  36484. },
  36485. {
  36486. name: "Normal",
  36487. height: math.unit(6, "feet"),
  36488. default: true
  36489. },
  36490. {
  36491. name: "Minimacro",
  36492. height: math.unit(17, "feet")
  36493. },
  36494. {
  36495. name: "Macro",
  36496. height: math.unit(117, "feet")
  36497. },
  36498. ]
  36499. ))
  36500. characterMakers.push(() => makeCharacter(
  36501. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36502. {
  36503. side: {
  36504. height: math.unit(5 + 1/12, "feet"),
  36505. weight: math.unit(418, "lb"),
  36506. name: "Side",
  36507. image: {
  36508. source: "./media/characters/softpurr/side.svg",
  36509. extra: 1993/1945,
  36510. bottom: 134/2127
  36511. }
  36512. },
  36513. front: {
  36514. height: math.unit(5 + 1/12, "feet"),
  36515. weight: math.unit(418, "lb"),
  36516. name: "Front",
  36517. image: {
  36518. source: "./media/characters/softpurr/front.svg",
  36519. extra: 1950/1856,
  36520. bottom: 174/2124
  36521. }
  36522. },
  36523. paw: {
  36524. height: math.unit(1, "feet"),
  36525. name: "Paw",
  36526. image: {
  36527. source: "./media/characters/softpurr/paw.svg"
  36528. }
  36529. },
  36530. },
  36531. [
  36532. {
  36533. name: "Normal",
  36534. height: math.unit(5 + 1/12, "feet"),
  36535. default: true
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36541. {
  36542. front: {
  36543. height: math.unit(260, "meters"),
  36544. name: "Front",
  36545. image: {
  36546. source: "./media/characters/anahita/front.svg",
  36547. extra: 665/635,
  36548. bottom: 89/754
  36549. }
  36550. },
  36551. },
  36552. [
  36553. {
  36554. name: "Macro",
  36555. height: math.unit(260, "meters"),
  36556. default: true
  36557. },
  36558. ]
  36559. ))
  36560. characterMakers.push(() => makeCharacter(
  36561. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36562. {
  36563. front: {
  36564. height: math.unit(4 + 10/12, "feet"),
  36565. weight: math.unit(160, "lb"),
  36566. name: "Front",
  36567. image: {
  36568. source: "./media/characters/chip-mouse/front.svg",
  36569. extra: 3528/3408,
  36570. bottom: 0/3528
  36571. }
  36572. },
  36573. frontNsfw: {
  36574. height: math.unit(4 + 10/12, "feet"),
  36575. weight: math.unit(160, "lb"),
  36576. name: "Front (NSFW)",
  36577. image: {
  36578. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36579. extra: 3528/3408,
  36580. bottom: 0/3528
  36581. }
  36582. },
  36583. },
  36584. [
  36585. {
  36586. name: "Normal",
  36587. height: math.unit(4 + 10/12, "feet"),
  36588. default: true
  36589. },
  36590. ]
  36591. ))
  36592. characterMakers.push(() => makeCharacter(
  36593. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36594. {
  36595. side: {
  36596. height: math.unit(10, "feet"),
  36597. weight: math.unit(14000, "lb"),
  36598. name: "Side",
  36599. image: {
  36600. source: "./media/characters/kremm/side.svg",
  36601. extra: 1390/1053,
  36602. bottom: 90/1480
  36603. }
  36604. },
  36605. gut: {
  36606. height: math.unit(5.8, "feet"),
  36607. name: "Gut",
  36608. image: {
  36609. source: "./media/characters/kremm/gut.svg"
  36610. }
  36611. },
  36612. ass: {
  36613. height: math.unit(6.1, "feet"),
  36614. name: "Ass",
  36615. image: {
  36616. source: "./media/characters/kremm/ass.svg"
  36617. }
  36618. },
  36619. jaws: {
  36620. height: math.unit(2.2, "feet"),
  36621. name: "Jaws",
  36622. image: {
  36623. source: "./media/characters/kremm/jaws.svg"
  36624. }
  36625. },
  36626. dick: {
  36627. height: math.unit(4.26, "feet"),
  36628. name: "Dick",
  36629. image: {
  36630. source: "./media/characters/kremm/dick.svg"
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(10, "feet"),
  36638. default: true
  36639. },
  36640. ]
  36641. ))
  36642. characterMakers.push(() => makeCharacter(
  36643. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36644. {
  36645. front: {
  36646. height: math.unit(30, "stories"),
  36647. name: "Front",
  36648. image: {
  36649. source: "./media/characters/kai/front.svg",
  36650. extra: 1892/1718,
  36651. bottom: 162/2054
  36652. }
  36653. },
  36654. },
  36655. [
  36656. {
  36657. name: "Macro",
  36658. height: math.unit(30, "stories"),
  36659. default: true
  36660. },
  36661. ]
  36662. ))
  36663. characterMakers.push(() => makeCharacter(
  36664. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36665. {
  36666. front: {
  36667. height: math.unit(6 + 4/12, "feet"),
  36668. weight: math.unit(145, "lb"),
  36669. name: "Front",
  36670. image: {
  36671. source: "./media/characters/sykes/front.svg",
  36672. extra: 1321 / 1187,
  36673. bottom: 66 / 1387
  36674. }
  36675. },
  36676. back: {
  36677. height: math.unit(6 + 4/12, "feet"),
  36678. weight: math.unit(145, "lb"),
  36679. name: "Back",
  36680. image: {
  36681. source: "./media/characters/sykes/back.svg",
  36682. extra: 1326/1181,
  36683. bottom: 31/1357
  36684. }
  36685. },
  36686. traditionalOutfit: {
  36687. height: math.unit(6 + 4/12, "feet"),
  36688. weight: math.unit(145, "lb"),
  36689. name: "Traditional Outfit",
  36690. image: {
  36691. source: "./media/characters/sykes/traditional-outfit.svg",
  36692. extra: 1321 / 1187,
  36693. bottom: 66 / 1387
  36694. }
  36695. },
  36696. adventureOutfit: {
  36697. height: math.unit(6 + 4/12, "feet"),
  36698. weight: math.unit(145, "lb"),
  36699. name: "Adventure Outfit",
  36700. image: {
  36701. source: "./media/characters/sykes/adventure-outfit.svg",
  36702. extra: 1321 / 1187,
  36703. bottom: 66 / 1387
  36704. }
  36705. },
  36706. handLeft: {
  36707. height: math.unit(0.9, "feet"),
  36708. name: "Hand (Left)",
  36709. image: {
  36710. source: "./media/characters/sykes/hand-left.svg"
  36711. }
  36712. },
  36713. handRight: {
  36714. height: math.unit(0.839, "feet"),
  36715. name: "Hand (Right)",
  36716. image: {
  36717. source: "./media/characters/sykes/hand-right.svg"
  36718. }
  36719. },
  36720. leftFoot: {
  36721. height: math.unit(1.2, "feet"),
  36722. name: "Foot (Left)",
  36723. image: {
  36724. source: "./media/characters/sykes/foot-left.svg"
  36725. }
  36726. },
  36727. rightFoot: {
  36728. height: math.unit(1.2, "feet"),
  36729. name: "Foot (Right)",
  36730. image: {
  36731. source: "./media/characters/sykes/foot-right.svg"
  36732. }
  36733. },
  36734. maw: {
  36735. height: math.unit(1.93, "feet"),
  36736. name: "Maw",
  36737. image: {
  36738. source: "./media/characters/sykes/maw.svg"
  36739. }
  36740. },
  36741. teeth: {
  36742. height: math.unit(0.51, "feet"),
  36743. name: "Teeth",
  36744. image: {
  36745. source: "./media/characters/sykes/teeth.svg"
  36746. }
  36747. },
  36748. tongue: {
  36749. height: math.unit(2.13, "feet"),
  36750. name: "Tongue",
  36751. image: {
  36752. source: "./media/characters/sykes/tongue.svg"
  36753. }
  36754. },
  36755. uvula: {
  36756. height: math.unit(0.16, "feet"),
  36757. name: "Uvula",
  36758. image: {
  36759. source: "./media/characters/sykes/uvula.svg"
  36760. }
  36761. },
  36762. collar: {
  36763. height: math.unit(0.287, "feet"),
  36764. name: "Collar",
  36765. image: {
  36766. source: "./media/characters/sykes/collar.svg"
  36767. }
  36768. },
  36769. tail: {
  36770. height: math.unit(3.8, "feet"),
  36771. name: "Tail",
  36772. image: {
  36773. source: "./media/characters/sykes/tail.svg"
  36774. }
  36775. },
  36776. },
  36777. [
  36778. {
  36779. name: "Shrunken",
  36780. height: math.unit(5, "inches")
  36781. },
  36782. {
  36783. name: "Normal",
  36784. height: math.unit(6 + 4 / 12, "feet"),
  36785. default: true
  36786. },
  36787. {
  36788. name: "Big",
  36789. height: math.unit(15, "feet")
  36790. },
  36791. ]
  36792. ))
  36793. characterMakers.push(() => makeCharacter(
  36794. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36795. {
  36796. front: {
  36797. height: math.unit(5 + 8/12, "feet"),
  36798. weight: math.unit(190, "lb"),
  36799. name: "Front",
  36800. image: {
  36801. source: "./media/characters/oven-otter/front.svg",
  36802. extra: 1809/1740,
  36803. bottom: 181/1990
  36804. }
  36805. },
  36806. back: {
  36807. height: math.unit(5 + 8/12, "feet"),
  36808. weight: math.unit(190, "lb"),
  36809. name: "Back",
  36810. image: {
  36811. source: "./media/characters/oven-otter/back.svg",
  36812. extra: 1709/1635,
  36813. bottom: 118/1827
  36814. }
  36815. },
  36816. hand: {
  36817. height: math.unit(1.07, "feet"),
  36818. name: "Hand",
  36819. image: {
  36820. source: "./media/characters/oven-otter/hand.svg"
  36821. }
  36822. },
  36823. beans: {
  36824. height: math.unit(1.74, "feet"),
  36825. name: "Beans",
  36826. image: {
  36827. source: "./media/characters/oven-otter/beans.svg"
  36828. }
  36829. },
  36830. },
  36831. [
  36832. {
  36833. name: "Micro",
  36834. height: math.unit(0.5, "inches")
  36835. },
  36836. {
  36837. name: "Normal",
  36838. height: math.unit(5 + 8/12, "feet"),
  36839. default: true
  36840. },
  36841. {
  36842. name: "Macro",
  36843. height: math.unit(250, "feet")
  36844. },
  36845. {
  36846. name: "Really High",
  36847. height: math.unit(420, "feet")
  36848. },
  36849. ]
  36850. ))
  36851. characterMakers.push(() => makeCharacter(
  36852. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36853. {
  36854. front: {
  36855. height: math.unit(5, "meters"),
  36856. weight: math.unit(292000000000000, "kg"),
  36857. name: "Front",
  36858. image: {
  36859. source: "./media/characters/devourer/front.svg",
  36860. extra: 1800/1733,
  36861. bottom: 211/2011
  36862. }
  36863. },
  36864. maw: {
  36865. height: math.unit(1.1, "meter"),
  36866. name: "Maw",
  36867. image: {
  36868. source: "./media/characters/devourer/maw.svg"
  36869. }
  36870. },
  36871. },
  36872. [
  36873. {
  36874. name: "Small",
  36875. height: math.unit(3, "meters")
  36876. },
  36877. {
  36878. name: "Large",
  36879. height: math.unit(5, "meters"),
  36880. default: true
  36881. },
  36882. ]
  36883. ))
  36884. characterMakers.push(() => makeCharacter(
  36885. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36886. {
  36887. front: {
  36888. height: math.unit(6, "feet"),
  36889. weight: math.unit(400, "lb"),
  36890. name: "Front",
  36891. image: {
  36892. source: "./media/characters/ellarby/front.svg",
  36893. extra: 1909/1763,
  36894. bottom: 80/1989
  36895. }
  36896. },
  36897. back: {
  36898. height: math.unit(6, "feet"),
  36899. weight: math.unit(400, "lb"),
  36900. name: "Back",
  36901. image: {
  36902. source: "./media/characters/ellarby/back.svg",
  36903. extra: 1914/1784,
  36904. bottom: 172/2086
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Mischief",
  36911. height: math.unit(18, "inches")
  36912. },
  36913. {
  36914. name: "Trouble",
  36915. height: math.unit(12, "feet")
  36916. },
  36917. {
  36918. name: "Havoc",
  36919. height: math.unit(200, "feet"),
  36920. default: true
  36921. },
  36922. {
  36923. name: "Pandemonium",
  36924. height: math.unit(1, "mile")
  36925. },
  36926. {
  36927. name: "Catastrophe",
  36928. height: math.unit(100, "miles")
  36929. },
  36930. ]
  36931. ))
  36932. characterMakers.push(() => makeCharacter(
  36933. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36934. {
  36935. front: {
  36936. height: math.unit(4.7, "meters"),
  36937. weight: math.unit(6500, "kg"),
  36938. name: "Front",
  36939. image: {
  36940. source: "./media/characters/vex/front.svg",
  36941. extra: 1288/1140,
  36942. bottom: 100/1388
  36943. }
  36944. },
  36945. },
  36946. [
  36947. {
  36948. name: "Normal",
  36949. height: math.unit(4.7, "meters"),
  36950. default: true
  36951. },
  36952. ]
  36953. ))
  36954. characterMakers.push(() => makeCharacter(
  36955. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36956. {
  36957. normal: {
  36958. height: math.unit(6, "feet"),
  36959. weight: math.unit(350, "lb"),
  36960. name: "Normal",
  36961. image: {
  36962. source: "./media/characters/teshy/normal.svg",
  36963. extra: 1795/1735,
  36964. bottom: 16/1811
  36965. }
  36966. },
  36967. monsterFront: {
  36968. height: math.unit(12, "feet"),
  36969. weight: math.unit(4700, "lb"),
  36970. name: "Monster (Front)",
  36971. image: {
  36972. source: "./media/characters/teshy/monster-front.svg",
  36973. extra: 2042/2034,
  36974. bottom: 128/2170
  36975. }
  36976. },
  36977. monsterSide: {
  36978. height: math.unit(12, "feet"),
  36979. weight: math.unit(4700, "lb"),
  36980. name: "Monster (Side)",
  36981. image: {
  36982. source: "./media/characters/teshy/monster-side.svg",
  36983. extra: 2067/2056,
  36984. bottom: 70/2137
  36985. }
  36986. },
  36987. monsterBack: {
  36988. height: math.unit(12, "feet"),
  36989. weight: math.unit(4700, "lb"),
  36990. name: "Monster (Back)",
  36991. image: {
  36992. source: "./media/characters/teshy/monster-back.svg",
  36993. extra: 1921/1914,
  36994. bottom: 171/2092
  36995. }
  36996. },
  36997. },
  36998. [
  36999. {
  37000. name: "Normal",
  37001. height: math.unit(6, "feet"),
  37002. default: true
  37003. },
  37004. ]
  37005. ))
  37006. characterMakers.push(() => makeCharacter(
  37007. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37008. {
  37009. front: {
  37010. height: math.unit(6, "feet"),
  37011. name: "Front",
  37012. image: {
  37013. source: "./media/characters/ramey/front.svg",
  37014. extra: 790/787,
  37015. bottom: 27/817
  37016. }
  37017. },
  37018. },
  37019. [
  37020. {
  37021. name: "Normal",
  37022. height: math.unit(6, "feet"),
  37023. default: true
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(5 + 5/12, "feet"),
  37032. weight: math.unit(120, "lb"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/phirae/front.svg",
  37036. extra: 2491/2436,
  37037. bottom: 38/2529
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Normal",
  37044. height: math.unit(5 + 5/12, "feet"),
  37045. default: true
  37046. },
  37047. ]
  37048. ))
  37049. characterMakers.push(() => makeCharacter(
  37050. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37051. {
  37052. front: {
  37053. height: math.unit(5 + 3/12, "feet"),
  37054. name: "Front",
  37055. image: {
  37056. source: "./media/characters/stagglas/front.svg",
  37057. extra: 962/882,
  37058. bottom: 53/1015
  37059. }
  37060. },
  37061. feral: {
  37062. height: math.unit(335, "cm"),
  37063. name: "Feral",
  37064. image: {
  37065. source: "./media/characters/stagglas/feral.svg",
  37066. extra: 1732/1090,
  37067. bottom: 48/1780
  37068. }
  37069. },
  37070. },
  37071. [
  37072. {
  37073. name: "Normal",
  37074. height: math.unit(5 + 3/12, "feet"),
  37075. default: true
  37076. },
  37077. ]
  37078. ))
  37079. characterMakers.push(() => makeCharacter(
  37080. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37081. {
  37082. front: {
  37083. height: math.unit(5 + 4/12, "feet"),
  37084. weight: math.unit(145, "lb"),
  37085. name: "Front",
  37086. image: {
  37087. source: "./media/characters/starra/front.svg",
  37088. extra: 1790/1691,
  37089. bottom: 91/1881
  37090. }
  37091. },
  37092. },
  37093. [
  37094. {
  37095. name: "Normal",
  37096. height: math.unit(5 + 4/12, "feet"),
  37097. default: true
  37098. },
  37099. ]
  37100. ))
  37101. characterMakers.push(() => makeCharacter(
  37102. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37103. {
  37104. front: {
  37105. height: math.unit(3.5, "meters"),
  37106. name: "Front",
  37107. image: {
  37108. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37109. extra: 1248/972,
  37110. bottom: 38/1286
  37111. }
  37112. },
  37113. },
  37114. [
  37115. {
  37116. name: "Normal",
  37117. height: math.unit(3.5, "meters"),
  37118. default: true
  37119. },
  37120. ]
  37121. ))
  37122. characterMakers.push(() => makeCharacter(
  37123. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37124. {
  37125. side: {
  37126. height: math.unit(8 + 2/12, "feet"),
  37127. weight: math.unit(1240, "lb"),
  37128. name: "Side",
  37129. image: {
  37130. source: "./media/characters/mika-valentine/side.svg",
  37131. extra: 2670/2501,
  37132. bottom: 250/2920
  37133. }
  37134. },
  37135. },
  37136. [
  37137. {
  37138. name: "Normal",
  37139. height: math.unit(8 + 2/12, "feet"),
  37140. default: true
  37141. },
  37142. ]
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37146. {
  37147. front: {
  37148. height: math.unit(7 + 2/12, "feet"),
  37149. name: "Front",
  37150. image: {
  37151. source: "./media/characters/xoltol/front.svg",
  37152. extra: 2212/2124,
  37153. bottom: 84/2296
  37154. }
  37155. },
  37156. side: {
  37157. height: math.unit(7 + 2/12, "feet"),
  37158. name: "Side",
  37159. image: {
  37160. source: "./media/characters/xoltol/side.svg",
  37161. extra: 2273/2197,
  37162. bottom: 26/2299
  37163. }
  37164. },
  37165. hand: {
  37166. height: math.unit(2.5, "feet"),
  37167. name: "Hand",
  37168. image: {
  37169. source: "./media/characters/xoltol/hand.svg"
  37170. }
  37171. },
  37172. },
  37173. [
  37174. {
  37175. name: "Small-ish",
  37176. height: math.unit(5 + 11/12, "feet")
  37177. },
  37178. {
  37179. name: "Normal",
  37180. height: math.unit(7 + 2/12, "feet")
  37181. },
  37182. {
  37183. name: "\"Macro\"",
  37184. height: math.unit(14 + 9/12, "feet"),
  37185. default: true
  37186. },
  37187. {
  37188. name: "Alternate Height",
  37189. height: math.unit(20, "feet")
  37190. },
  37191. {
  37192. name: "Actually Macro",
  37193. height: math.unit(100, "feet")
  37194. },
  37195. ]
  37196. ))
  37197. characterMakers.push(() => makeCharacter(
  37198. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37199. {
  37200. front: {
  37201. height: math.unit(5 + 2/12, "feet"),
  37202. weight: math.unit(75, "kg"),
  37203. name: "Front",
  37204. image: {
  37205. source: "./media/characters/kotetsu-redwood/front.svg",
  37206. extra: 1053/942,
  37207. bottom: 60/1113
  37208. }
  37209. },
  37210. },
  37211. [
  37212. {
  37213. name: "Normal",
  37214. height: math.unit(5 + 2/12, "feet"),
  37215. default: true
  37216. },
  37217. ]
  37218. ))
  37219. characterMakers.push(() => makeCharacter(
  37220. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37221. {
  37222. front: {
  37223. height: math.unit(2.4, "meters"),
  37224. weight: math.unit(125, "kg"),
  37225. name: "Front",
  37226. image: {
  37227. source: "./media/characters/lilith/front.svg",
  37228. extra: 1590/1513,
  37229. bottom: 203/1793
  37230. }
  37231. },
  37232. },
  37233. [
  37234. {
  37235. name: "Humanoid",
  37236. height: math.unit(2.4, "meters")
  37237. },
  37238. {
  37239. name: "Normal",
  37240. height: math.unit(6, "meters"),
  37241. default: true
  37242. },
  37243. {
  37244. name: "Largest",
  37245. height: math.unit(55, "meters")
  37246. },
  37247. ]
  37248. ))
  37249. characterMakers.push(() => makeCharacter(
  37250. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37251. {
  37252. front: {
  37253. height: math.unit(8 + 4/12, "feet"),
  37254. weight: math.unit(535, "lb"),
  37255. name: "Front",
  37256. image: {
  37257. source: "./media/characters/beh'kah-bolger/front.svg",
  37258. extra: 1660/1603,
  37259. bottom: 37/1697
  37260. }
  37261. },
  37262. },
  37263. [
  37264. {
  37265. name: "Normal",
  37266. height: math.unit(8 + 4/12, "feet"),
  37267. default: true
  37268. },
  37269. {
  37270. name: "Kaiju",
  37271. height: math.unit(250, "feet")
  37272. },
  37273. {
  37274. name: "Still Growing",
  37275. height: math.unit(10, "miles")
  37276. },
  37277. {
  37278. name: "Continental",
  37279. height: math.unit(5000, "miles")
  37280. },
  37281. {
  37282. name: "Final Form",
  37283. height: math.unit(2500000, "miles")
  37284. },
  37285. ]
  37286. ))
  37287. characterMakers.push(() => makeCharacter(
  37288. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37289. {
  37290. front: {
  37291. height: math.unit(7 + 2/12, "feet"),
  37292. weight: math.unit(230, "kg"),
  37293. name: "Front",
  37294. image: {
  37295. source: "./media/characters/tatyana-milewska/front.svg",
  37296. extra: 1199/1150,
  37297. bottom: 86/1285
  37298. }
  37299. },
  37300. },
  37301. [
  37302. {
  37303. name: "Normal",
  37304. height: math.unit(7 + 2/12, "feet"),
  37305. default: true
  37306. },
  37307. {
  37308. name: "Big",
  37309. height: math.unit(12, "feet")
  37310. },
  37311. {
  37312. name: "Minimacro",
  37313. height: math.unit(20, "feet")
  37314. },
  37315. {
  37316. name: "Macro",
  37317. height: math.unit(120, "feet")
  37318. },
  37319. ]
  37320. ))
  37321. characterMakers.push(() => makeCharacter(
  37322. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37323. {
  37324. front: {
  37325. height: math.unit(7 + 8/12, "feet"),
  37326. weight: math.unit(152, "kg"),
  37327. name: "Front",
  37328. image: {
  37329. source: "./media/characters/helen-arri/front.svg",
  37330. extra: 440/423,
  37331. bottom: 14/454
  37332. }
  37333. },
  37334. back: {
  37335. height: math.unit(7 + 8/12, "feet"),
  37336. weight: math.unit(152, "kg"),
  37337. name: "Back",
  37338. image: {
  37339. source: "./media/characters/helen-arri/back.svg",
  37340. extra: 443/426,
  37341. bottom: 8/451
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(7 + 8/12, "feet"),
  37349. default: true
  37350. },
  37351. {
  37352. name: "Big",
  37353. height: math.unit(14, "feet")
  37354. },
  37355. {
  37356. name: "Minimacro",
  37357. height: math.unit(24, "feet")
  37358. },
  37359. {
  37360. name: "Macro",
  37361. height: math.unit(140, "feet")
  37362. },
  37363. ]
  37364. ))
  37365. characterMakers.push(() => makeCharacter(
  37366. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37367. {
  37368. front: {
  37369. height: math.unit(6, "meters"),
  37370. name: "Front",
  37371. image: {
  37372. source: "./media/characters/ehanu-rehu/front.svg",
  37373. extra: 1800/1800,
  37374. bottom: 59/1859
  37375. }
  37376. },
  37377. },
  37378. [
  37379. {
  37380. name: "Normal",
  37381. height: math.unit(6, "meters"),
  37382. default: true
  37383. },
  37384. ]
  37385. ))
  37386. characterMakers.push(() => makeCharacter(
  37387. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37388. {
  37389. front: {
  37390. height: math.unit(7 + 3/12, "feet"),
  37391. name: "Front",
  37392. image: {
  37393. source: "./media/characters/renholder/front.svg",
  37394. extra: 3096/2960,
  37395. bottom: 250/3346
  37396. }
  37397. },
  37398. },
  37399. [
  37400. {
  37401. name: "Normal Bat",
  37402. height: math.unit(7 + 3/12, "feet"),
  37403. default: true
  37404. },
  37405. {
  37406. name: "Slightly Tall Bat",
  37407. height: math.unit(100, "feet")
  37408. },
  37409. {
  37410. name: "Big Bat",
  37411. height: math.unit(1000, "feet")
  37412. },
  37413. {
  37414. name: "City-Sized Bat",
  37415. height: math.unit(200000, "feet")
  37416. },
  37417. {
  37418. name: "Bigger Bat",
  37419. height: math.unit(10000, "miles")
  37420. },
  37421. {
  37422. name: "Solar Sized Bat",
  37423. height: math.unit(100, "AU")
  37424. },
  37425. {
  37426. name: "Galactic Bat",
  37427. height: math.unit(200000, "lightyears")
  37428. },
  37429. {
  37430. name: "Universally Known Bat",
  37431. height: math.unit(1, "universe")
  37432. },
  37433. ]
  37434. ))
  37435. characterMakers.push(() => makeCharacter(
  37436. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37437. {
  37438. front: {
  37439. height: math.unit(6 + 11/12, "feet"),
  37440. weight: math.unit(250, "lb"),
  37441. name: "Front",
  37442. image: {
  37443. source: "./media/characters/cookiecat/front.svg",
  37444. extra: 893/827,
  37445. bottom: 14/907
  37446. }
  37447. },
  37448. },
  37449. [
  37450. {
  37451. name: "Micro",
  37452. height: math.unit(3, "inches")
  37453. },
  37454. {
  37455. name: "Normal",
  37456. height: math.unit(6 + 11/12, "feet"),
  37457. default: true
  37458. },
  37459. {
  37460. name: "Macro",
  37461. height: math.unit(100, "feet")
  37462. },
  37463. {
  37464. name: "Macro+",
  37465. height: math.unit(404, "feet")
  37466. },
  37467. {
  37468. name: "Megamacro",
  37469. height: math.unit(165, "miles")
  37470. },
  37471. {
  37472. name: "Planetary",
  37473. height: math.unit(4600, "miles")
  37474. },
  37475. ]
  37476. ))
  37477. characterMakers.push(() => makeCharacter(
  37478. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37479. {
  37480. front: {
  37481. height: math.unit(10 + 3/12, "feet"),
  37482. weight: math.unit(1500, "lb"),
  37483. name: "Front",
  37484. image: {
  37485. source: "./media/characters/tux-kusanagi/front.svg",
  37486. extra: 944/840,
  37487. bottom: 39/983
  37488. }
  37489. },
  37490. back: {
  37491. height: math.unit(10 + 3/12, "feet"),
  37492. weight: math.unit(1500, "lb"),
  37493. name: "Back",
  37494. image: {
  37495. source: "./media/characters/tux-kusanagi/back.svg",
  37496. extra: 941/842,
  37497. bottom: 28/969
  37498. }
  37499. },
  37500. rump: {
  37501. height: math.unit(5.25, "feet"),
  37502. name: "Rump",
  37503. image: {
  37504. source: "./media/characters/tux-kusanagi/rump.svg"
  37505. }
  37506. },
  37507. beak: {
  37508. height: math.unit(1.54, "feet"),
  37509. name: "Beak",
  37510. image: {
  37511. source: "./media/characters/tux-kusanagi/beak.svg"
  37512. }
  37513. },
  37514. },
  37515. [
  37516. {
  37517. name: "Normal",
  37518. height: math.unit(10 + 3/12, "feet"),
  37519. default: true
  37520. },
  37521. ]
  37522. ))
  37523. characterMakers.push(() => makeCharacter(
  37524. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37525. {
  37526. front: {
  37527. height: math.unit(58, "feet"),
  37528. weight: math.unit(200, "tons"),
  37529. name: "Front",
  37530. image: {
  37531. source: "./media/characters/uzarmazari/front.svg",
  37532. extra: 1575/1455,
  37533. bottom: 152/1727
  37534. }
  37535. },
  37536. back: {
  37537. height: math.unit(58, "feet"),
  37538. weight: math.unit(200, "tons"),
  37539. name: "Back",
  37540. image: {
  37541. source: "./media/characters/uzarmazari/back.svg",
  37542. extra: 1585/1510,
  37543. bottom: 157/1742
  37544. }
  37545. },
  37546. head: {
  37547. height: math.unit(26, "feet"),
  37548. name: "Head",
  37549. image: {
  37550. source: "./media/characters/uzarmazari/head.svg"
  37551. }
  37552. },
  37553. },
  37554. [
  37555. {
  37556. name: "Normal",
  37557. height: math.unit(58, "feet"),
  37558. default: true
  37559. },
  37560. ]
  37561. ))
  37562. characterMakers.push(() => makeCharacter(
  37563. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37564. {
  37565. side: {
  37566. height: math.unit(15, "feet"),
  37567. name: "Side",
  37568. image: {
  37569. source: "./media/characters/akitu/side.svg",
  37570. extra: 1421/1321,
  37571. bottom: 157/1578
  37572. }
  37573. },
  37574. front: {
  37575. height: math.unit(15, "feet"),
  37576. name: "Front",
  37577. image: {
  37578. source: "./media/characters/akitu/front.svg",
  37579. extra: 1435/1326,
  37580. bottom: 232/1667
  37581. }
  37582. },
  37583. },
  37584. [
  37585. {
  37586. name: "Normal",
  37587. height: math.unit(15, "feet"),
  37588. default: true
  37589. },
  37590. ]
  37591. ))
  37592. characterMakers.push(() => makeCharacter(
  37593. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37594. {
  37595. front: {
  37596. height: math.unit(10 + 8/12, "feet"),
  37597. name: "Front",
  37598. image: {
  37599. source: "./media/characters/azalie-croixland/front.svg",
  37600. extra: 1972/1856,
  37601. bottom: 31/2003
  37602. }
  37603. },
  37604. },
  37605. [
  37606. {
  37607. name: "Original Height",
  37608. height: math.unit(5 + 4/12, "feet")
  37609. },
  37610. {
  37611. name: "Normal Height",
  37612. height: math.unit(10 + 8/12, "feet"),
  37613. default: true
  37614. },
  37615. ]
  37616. ))
  37617. characterMakers.push(() => makeCharacter(
  37618. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37619. {
  37620. side: {
  37621. height: math.unit(7 + 1/12, "feet"),
  37622. weight: math.unit(245, "lb"),
  37623. name: "Side",
  37624. image: {
  37625. source: "./media/characters/kavus-kazian/side.svg",
  37626. extra: 349/342,
  37627. bottom: 15/364
  37628. }
  37629. },
  37630. },
  37631. [
  37632. {
  37633. name: "Normal",
  37634. height: math.unit(7 + 1/12, "feet"),
  37635. default: true
  37636. },
  37637. ]
  37638. ))
  37639. characterMakers.push(() => makeCharacter(
  37640. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37641. {
  37642. normalFront: {
  37643. height: math.unit(5 + 11/12, "feet"),
  37644. name: "Front",
  37645. image: {
  37646. source: "./media/characters/moonlight-rose/normal-front.svg",
  37647. extra: 1980/1825,
  37648. bottom: 18/1998
  37649. },
  37650. form: "normal",
  37651. default: true
  37652. },
  37653. normalBack: {
  37654. height: math.unit(5 + 11/12, "feet"),
  37655. name: "Back",
  37656. image: {
  37657. source: "./media/characters/moonlight-rose/normal-back.svg",
  37658. extra: 2010/1839,
  37659. bottom: 10/2020
  37660. },
  37661. form: "normal"
  37662. },
  37663. demonFront: {
  37664. height: math.unit(1.5, "earths"),
  37665. name: "Front",
  37666. image: {
  37667. source: "./media/characters/moonlight-rose/demon.svg",
  37668. extra: 1400/1294,
  37669. bottom: 45/1445
  37670. },
  37671. form: "demon",
  37672. default: true
  37673. },
  37674. terraFront: {
  37675. height: math.unit(1.5, "earths"),
  37676. name: "Front",
  37677. image: {
  37678. source: "./media/characters/moonlight-rose/terra.svg"
  37679. },
  37680. form: "terra",
  37681. default: true
  37682. },
  37683. jupiterFront: {
  37684. height: math.unit(69911*2, "km"),
  37685. name: "Front",
  37686. image: {
  37687. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37688. extra: 1367/1286,
  37689. bottom: 55/1422
  37690. },
  37691. form: "jupiter",
  37692. default: true
  37693. },
  37694. neptuneFront: {
  37695. height: math.unit(24622*2, "feet"),
  37696. name: "Front",
  37697. image: {
  37698. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37699. extra: 1851/1712,
  37700. bottom: 0/1851
  37701. },
  37702. form: "neptune",
  37703. default: true
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "\"Natural\" Height",
  37709. height: math.unit(5 + 11/12, "feet"),
  37710. form: "normal"
  37711. },
  37712. {
  37713. name: "Smallest comfortable size",
  37714. height: math.unit(40, "meters"),
  37715. form: "normal"
  37716. },
  37717. {
  37718. name: "Common size",
  37719. height: math.unit(50, "km"),
  37720. form: "normal",
  37721. default: true
  37722. },
  37723. {
  37724. name: "Normal",
  37725. height: math.unit(1.5, "earths"),
  37726. form: "demon",
  37727. default: true
  37728. },
  37729. {
  37730. name: "Universal",
  37731. height: math.unit(15, "universes"),
  37732. form: "demon"
  37733. },
  37734. {
  37735. name: "Earth",
  37736. height: math.unit(1.5, "earths"),
  37737. form: "terra",
  37738. default: true
  37739. },
  37740. {
  37741. name: "Super Earth",
  37742. height: math.unit(67.5, "earths"),
  37743. form: "terra"
  37744. },
  37745. {
  37746. name: "Doesn't fit in a solar system...",
  37747. height: math.unit(1, "galaxy"),
  37748. form: "terra"
  37749. },
  37750. {
  37751. name: "Saturn",
  37752. height: math.unit(58232*2, "km"),
  37753. form: "jupiter"
  37754. },
  37755. {
  37756. name: "Jupiter",
  37757. height: math.unit(69911*2, "km"),
  37758. form: "jupiter",
  37759. default: true
  37760. },
  37761. {
  37762. name: "HD 100546 b",
  37763. height: math.unit(482938, "km"),
  37764. form: "jupiter"
  37765. },
  37766. {
  37767. name: "Enceladus",
  37768. height: math.unit(513*2, "km"),
  37769. form: "neptune"
  37770. },
  37771. {
  37772. name: "Europe",
  37773. height: math.unit(1560*2, "km"),
  37774. form: "neptune"
  37775. },
  37776. {
  37777. name: "Neptune",
  37778. height: math.unit(24622*2, "km"),
  37779. form: "neptune",
  37780. default: true
  37781. },
  37782. {
  37783. name: "CoRoT-9b",
  37784. height: math.unit(75067*2, "km"),
  37785. form: "neptune"
  37786. },
  37787. ],
  37788. {
  37789. "normal": {
  37790. name: "Normal",
  37791. default: true
  37792. },
  37793. "demon": {
  37794. name: "Demon"
  37795. },
  37796. "terra": {
  37797. name: "Terra"
  37798. },
  37799. "jupiter": {
  37800. name: "Jupiter"
  37801. },
  37802. "neptune": {
  37803. name: "Neptune"
  37804. }
  37805. }
  37806. ))
  37807. characterMakers.push(() => makeCharacter(
  37808. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37809. {
  37810. front: {
  37811. height: math.unit(16, "feet"),
  37812. weight: math.unit(610, "kg"),
  37813. name: "Front",
  37814. image: {
  37815. source: "./media/characters/huckle/front.svg",
  37816. extra: 1731/1625,
  37817. bottom: 33/1764
  37818. }
  37819. },
  37820. back: {
  37821. height: math.unit(16, "feet"),
  37822. weight: math.unit(610, "kg"),
  37823. name: "Back",
  37824. image: {
  37825. source: "./media/characters/huckle/back.svg",
  37826. extra: 1738/1651,
  37827. bottom: 37/1775
  37828. }
  37829. },
  37830. laughing: {
  37831. height: math.unit(3.75, "feet"),
  37832. name: "Laughing",
  37833. image: {
  37834. source: "./media/characters/huckle/laughing.svg"
  37835. }
  37836. },
  37837. angry: {
  37838. height: math.unit(4.15, "feet"),
  37839. name: "Angry",
  37840. image: {
  37841. source: "./media/characters/huckle/angry.svg"
  37842. }
  37843. },
  37844. },
  37845. [
  37846. {
  37847. name: "Normal",
  37848. height: math.unit(16, "feet"),
  37849. default: true
  37850. },
  37851. {
  37852. name: "Mini Macro",
  37853. height: math.unit(463, "feet")
  37854. },
  37855. {
  37856. name: "Macro",
  37857. height: math.unit(1680, "meters")
  37858. },
  37859. {
  37860. name: "Mega Macro",
  37861. height: math.unit(175, "km")
  37862. },
  37863. {
  37864. name: "Terra Macro",
  37865. height: math.unit(32, "gigameters")
  37866. },
  37867. {
  37868. name: "Multiverse+",
  37869. height: math.unit(2.56e23, "yottameters")
  37870. },
  37871. ]
  37872. ))
  37873. characterMakers.push(() => makeCharacter(
  37874. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37875. {
  37876. front: {
  37877. height: math.unit(6 + 9/12, "feet"),
  37878. weight: math.unit(280, "lb"),
  37879. name: "Front",
  37880. image: {
  37881. source: "./media/characters/candy/front.svg",
  37882. extra: 234/217,
  37883. bottom: 11/245
  37884. }
  37885. },
  37886. },
  37887. [
  37888. {
  37889. name: "Really Small",
  37890. height: math.unit(0.1, "nm")
  37891. },
  37892. {
  37893. name: "Micro",
  37894. height: math.unit(2, "inches")
  37895. },
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(6 + 9/12, "feet"),
  37899. default: true
  37900. },
  37901. {
  37902. name: "Small Macro",
  37903. height: math.unit(69, "feet")
  37904. },
  37905. {
  37906. name: "Macro",
  37907. height: math.unit(160, "feet")
  37908. },
  37909. {
  37910. name: "Megamacro",
  37911. height: math.unit(22000, "miles")
  37912. },
  37913. {
  37914. name: "Gigamacro",
  37915. height: math.unit(50000, "miles")
  37916. },
  37917. ]
  37918. ))
  37919. characterMakers.push(() => makeCharacter(
  37920. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37921. {
  37922. front: {
  37923. height: math.unit(4, "feet"),
  37924. weight: math.unit(90, "lb"),
  37925. name: "Front",
  37926. image: {
  37927. source: "./media/characters/joey-mcdonald/front.svg",
  37928. extra: 1059/852,
  37929. bottom: 33/1092
  37930. }
  37931. },
  37932. back: {
  37933. height: math.unit(4, "feet"),
  37934. weight: math.unit(90, "lb"),
  37935. name: "Back",
  37936. image: {
  37937. source: "./media/characters/joey-mcdonald/back.svg",
  37938. extra: 1077/879,
  37939. bottom: 5/1082
  37940. }
  37941. },
  37942. frontKobold: {
  37943. height: math.unit(4, "feet"),
  37944. weight: math.unit(100, "lb"),
  37945. name: "Front-kobold",
  37946. image: {
  37947. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37948. extra: 1480/1367,
  37949. bottom: 0/1480
  37950. }
  37951. },
  37952. backKobold: {
  37953. height: math.unit(4, "feet"),
  37954. weight: math.unit(100, "lb"),
  37955. name: "Back-kobold",
  37956. image: {
  37957. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37958. extra: 1449/1361,
  37959. bottom: 0/1449
  37960. }
  37961. },
  37962. },
  37963. [
  37964. {
  37965. name: "Normal",
  37966. height: math.unit(4, "feet"),
  37967. default: true
  37968. },
  37969. ]
  37970. ))
  37971. characterMakers.push(() => makeCharacter(
  37972. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37973. {
  37974. front: {
  37975. height: math.unit(12 + 6/12, "feet"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/kass-lockheed/front.svg",
  37979. extra: 354/343,
  37980. bottom: 9/363
  37981. }
  37982. },
  37983. back: {
  37984. height: math.unit(12 + 6/12, "feet"),
  37985. name: "Back",
  37986. image: {
  37987. source: "./media/characters/kass-lockheed/back.svg",
  37988. extra: 364/352,
  37989. bottom: 3/367
  37990. }
  37991. },
  37992. dick: {
  37993. height: math.unit(3.12, "feet"),
  37994. name: "Dick",
  37995. image: {
  37996. source: "./media/characters/kass-lockheed/dick.svg"
  37997. }
  37998. },
  37999. head: {
  38000. height: math.unit(2.6, "feet"),
  38001. name: "Head",
  38002. image: {
  38003. source: "./media/characters/kass-lockheed/head.svg"
  38004. }
  38005. },
  38006. bleh: {
  38007. height: math.unit(2.85, "feet"),
  38008. name: "Bleh",
  38009. image: {
  38010. source: "./media/characters/kass-lockheed/bleh.svg"
  38011. }
  38012. },
  38013. smug: {
  38014. height: math.unit(2.85, "feet"),
  38015. name: "Smug",
  38016. image: {
  38017. source: "./media/characters/kass-lockheed/smug.svg"
  38018. }
  38019. },
  38020. },
  38021. [
  38022. {
  38023. name: "Normal",
  38024. height: math.unit(12 + 6/12, "feet"),
  38025. default: true
  38026. },
  38027. ]
  38028. ))
  38029. characterMakers.push(() => makeCharacter(
  38030. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38031. {
  38032. front: {
  38033. height: math.unit(6 + 2/12, "feet"),
  38034. name: "Front",
  38035. image: {
  38036. source: "./media/characters/taylor/front.svg",
  38037. extra: 639/495,
  38038. bottom: 12/651
  38039. }
  38040. },
  38041. },
  38042. [
  38043. {
  38044. name: "Normal",
  38045. height: math.unit(6 + 2/12, "feet"),
  38046. default: true
  38047. },
  38048. {
  38049. name: "Big",
  38050. height: math.unit(15, "feet")
  38051. },
  38052. {
  38053. name: "Lorg",
  38054. height: math.unit(80, "feet")
  38055. },
  38056. {
  38057. name: "Too Lorg",
  38058. height: math.unit(120, "feet")
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38064. {
  38065. front: {
  38066. height: math.unit(15, "feet"),
  38067. name: "Front",
  38068. image: {
  38069. source: "./media/characters/kaizer/front.svg",
  38070. extra: 1612/1436,
  38071. bottom: 43/1655
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Normal",
  38078. height: math.unit(15, "feet"),
  38079. default: true
  38080. },
  38081. ]
  38082. ))
  38083. characterMakers.push(() => makeCharacter(
  38084. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38085. {
  38086. front: {
  38087. height: math.unit(2, "feet"),
  38088. weight: math.unit(30, "lb"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/sandy/front.svg",
  38092. extra: 1439/1307,
  38093. bottom: 194/1633
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(2, "feet"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(3, "feet"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/mellvi/front.svg",
  38113. extra: 1831/1630,
  38114. bottom: 58/1889
  38115. }
  38116. },
  38117. },
  38118. [
  38119. {
  38120. name: "Normal",
  38121. height: math.unit(3, "feet"),
  38122. default: true
  38123. },
  38124. ]
  38125. ))
  38126. characterMakers.push(() => makeCharacter(
  38127. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38128. {
  38129. front: {
  38130. height: math.unit(5 + 11/12, "feet"),
  38131. weight: math.unit(200, "lb"),
  38132. name: "Front",
  38133. image: {
  38134. source: "./media/characters/shirou/front.svg",
  38135. extra: 2491/2383,
  38136. bottom: 189/2680
  38137. }
  38138. },
  38139. back: {
  38140. height: math.unit(5 + 11/12, "feet"),
  38141. weight: math.unit(200, "lb"),
  38142. name: "Back",
  38143. image: {
  38144. source: "./media/characters/shirou/back.svg",
  38145. extra: 2554/2450,
  38146. bottom: 76/2630
  38147. }
  38148. },
  38149. },
  38150. [
  38151. {
  38152. name: "Normal",
  38153. height: math.unit(5 + 11/12, "feet"),
  38154. default: true
  38155. },
  38156. ]
  38157. ))
  38158. characterMakers.push(() => makeCharacter(
  38159. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38160. {
  38161. front: {
  38162. height: math.unit(6 + 3/12, "feet"),
  38163. weight: math.unit(177, "lb"),
  38164. name: "Front",
  38165. image: {
  38166. source: "./media/characters/noryu/front.svg",
  38167. extra: 973/885,
  38168. bottom: 10/983
  38169. }
  38170. },
  38171. },
  38172. [
  38173. {
  38174. name: "Normal",
  38175. height: math.unit(6 + 3/12, "feet"),
  38176. default: true
  38177. },
  38178. ]
  38179. ))
  38180. characterMakers.push(() => makeCharacter(
  38181. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38182. {
  38183. front: {
  38184. height: math.unit(5 + 6/12, "feet"),
  38185. weight: math.unit(170, "lb"),
  38186. name: "Front",
  38187. image: {
  38188. source: "./media/characters/mevolas-rubenido/front.svg",
  38189. extra: 2109/1901,
  38190. bottom: 96/2205
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "Normal",
  38197. height: math.unit(5 + 6/12, "feet"),
  38198. default: true
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38204. {
  38205. front: {
  38206. height: math.unit(100, "feet"),
  38207. name: "Front",
  38208. image: {
  38209. source: "./media/characters/dee/front.svg",
  38210. extra: 2153/2036,
  38211. bottom: 59/2212
  38212. }
  38213. },
  38214. back: {
  38215. height: math.unit(100, "feet"),
  38216. name: "Back",
  38217. image: {
  38218. source: "./media/characters/dee/back.svg",
  38219. extra: 2183/2058,
  38220. bottom: 75/2258
  38221. }
  38222. },
  38223. foot: {
  38224. height: math.unit(19.43, "feet"),
  38225. name: "Foot",
  38226. image: {
  38227. source: "./media/characters/dee/foot.svg"
  38228. }
  38229. },
  38230. hoof: {
  38231. height: math.unit(20.6, "feet"),
  38232. name: "Hoof",
  38233. image: {
  38234. source: "./media/characters/dee/hoof.svg"
  38235. }
  38236. },
  38237. },
  38238. [
  38239. {
  38240. name: "Macro",
  38241. height: math.unit(100, "feet"),
  38242. default: true
  38243. },
  38244. ]
  38245. ))
  38246. characterMakers.push(() => makeCharacter(
  38247. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38248. {
  38249. front: {
  38250. height: math.unit(5 + 6/12, "feet"),
  38251. name: "Front",
  38252. image: {
  38253. source: "./media/characters/teh/front.svg",
  38254. extra: 1002/847,
  38255. bottom: 62/1064
  38256. }
  38257. },
  38258. },
  38259. [
  38260. {
  38261. name: "Normal",
  38262. height: math.unit(5 + 6/12, "feet"),
  38263. default: true
  38264. },
  38265. ]
  38266. ))
  38267. characterMakers.push(() => makeCharacter(
  38268. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38269. {
  38270. side: {
  38271. height: math.unit(6 + 1/12, "feet"),
  38272. weight: math.unit(204, "lb"),
  38273. name: "Side",
  38274. image: {
  38275. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38276. extra: 974/775,
  38277. bottom: 169/1143
  38278. }
  38279. },
  38280. sitting: {
  38281. height: math.unit(6 + 2/12, "feet"),
  38282. weight: math.unit(204, "lb"),
  38283. name: "Sitting",
  38284. image: {
  38285. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38286. extra: 1175/964,
  38287. bottom: 378/1553
  38288. }
  38289. },
  38290. },
  38291. [
  38292. {
  38293. name: "Normal",
  38294. height: math.unit(6 + 1/12, "feet"),
  38295. default: true
  38296. },
  38297. ]
  38298. ))
  38299. characterMakers.push(() => makeCharacter(
  38300. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38301. {
  38302. front: {
  38303. height: math.unit(6, "inches"),
  38304. name: "Front",
  38305. image: {
  38306. source: "./media/characters/tululi/front.svg",
  38307. extra: 1997/1876,
  38308. bottom: 20/2017
  38309. }
  38310. },
  38311. },
  38312. [
  38313. {
  38314. name: "Normal",
  38315. height: math.unit(6, "inches"),
  38316. default: true
  38317. },
  38318. ]
  38319. ))
  38320. characterMakers.push(() => makeCharacter(
  38321. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38322. {
  38323. front: {
  38324. height: math.unit(4 + 1/12, "feet"),
  38325. name: "Front",
  38326. image: {
  38327. source: "./media/characters/star/front.svg",
  38328. extra: 1493/1189,
  38329. bottom: 48/1541
  38330. }
  38331. },
  38332. },
  38333. [
  38334. {
  38335. name: "Normal",
  38336. height: math.unit(4 + 1/12, "feet"),
  38337. default: true
  38338. },
  38339. ]
  38340. ))
  38341. characterMakers.push(() => makeCharacter(
  38342. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38343. {
  38344. front: {
  38345. height: math.unit(6 + 3/12, "feet"),
  38346. name: "Front",
  38347. image: {
  38348. source: "./media/characters/comet/front.svg",
  38349. extra: 1681/1462,
  38350. bottom: 26/1707
  38351. }
  38352. },
  38353. },
  38354. [
  38355. {
  38356. name: "Normal",
  38357. height: math.unit(6 + 3/12, "feet"),
  38358. default: true
  38359. },
  38360. ]
  38361. ))
  38362. characterMakers.push(() => makeCharacter(
  38363. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38364. {
  38365. front: {
  38366. height: math.unit(950, "feet"),
  38367. name: "Front",
  38368. image: {
  38369. source: "./media/characters/vortex/front.svg",
  38370. extra: 1497/1434,
  38371. bottom: 56/1553
  38372. }
  38373. },
  38374. maw: {
  38375. height: math.unit(285, "feet"),
  38376. name: "Maw",
  38377. image: {
  38378. source: "./media/characters/vortex/maw.svg"
  38379. }
  38380. },
  38381. },
  38382. [
  38383. {
  38384. name: "Macro",
  38385. height: math.unit(950, "feet"),
  38386. default: true
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38392. {
  38393. front: {
  38394. height: math.unit(600, "feet"),
  38395. weight: math.unit(0.02, "grams"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/doodle/front.svg",
  38399. extra: 1578/1413,
  38400. bottom: 37/1615
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Macro",
  38407. height: math.unit(600, "feet"),
  38408. default: true
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38414. {
  38415. front: {
  38416. height: math.unit(6 + 6/12, "feet"),
  38417. name: "Front",
  38418. image: {
  38419. source: "./media/characters/jai/front.svg",
  38420. extra: 1645/1534,
  38421. bottom: 115/1760
  38422. }
  38423. },
  38424. },
  38425. [
  38426. {
  38427. name: "Normal",
  38428. height: math.unit(6 + 6/12, "feet"),
  38429. default: true
  38430. },
  38431. ]
  38432. ))
  38433. characterMakers.push(() => makeCharacter(
  38434. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38435. {
  38436. front: {
  38437. height: math.unit(6 + 8/12, "feet"),
  38438. name: "Front",
  38439. image: {
  38440. source: "./media/characters/pixel/front.svg",
  38441. extra: 1900/1735,
  38442. bottom: 63/1963
  38443. }
  38444. },
  38445. },
  38446. [
  38447. {
  38448. name: "Normal",
  38449. height: math.unit(6 + 8/12, "feet"),
  38450. default: true
  38451. },
  38452. ]
  38453. ))
  38454. characterMakers.push(() => makeCharacter(
  38455. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38456. {
  38457. back: {
  38458. height: math.unit(4 + 1/12, "feet"),
  38459. weight: math.unit(75, "lb"),
  38460. name: "Back",
  38461. image: {
  38462. source: "./media/characters/rhett/back.svg",
  38463. extra: 930/878,
  38464. bottom: 25/955
  38465. }
  38466. },
  38467. front: {
  38468. height: math.unit(4 + 1/12, "feet"),
  38469. weight: math.unit(75, "lb"),
  38470. name: "Front",
  38471. image: {
  38472. source: "./media/characters/rhett/front.svg",
  38473. extra: 1682/1586,
  38474. bottom: 92/1774
  38475. }
  38476. },
  38477. },
  38478. [
  38479. {
  38480. name: "Micro",
  38481. height: math.unit(8, "inches")
  38482. },
  38483. {
  38484. name: "Tiny",
  38485. height: math.unit(2, "feet")
  38486. },
  38487. {
  38488. name: "Normal",
  38489. height: math.unit(4 + 1/12, "feet"),
  38490. default: true
  38491. },
  38492. ]
  38493. ))
  38494. characterMakers.push(() => makeCharacter(
  38495. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38496. {
  38497. front: {
  38498. height: math.unit(3 + 3/12, "feet"),
  38499. name: "Front",
  38500. image: {
  38501. source: "./media/characters/penny/front.svg",
  38502. extra: 1406/1311,
  38503. bottom: 26/1432
  38504. }
  38505. },
  38506. },
  38507. [
  38508. {
  38509. name: "Normal",
  38510. height: math.unit(3 + 3/12, "feet"),
  38511. default: true
  38512. },
  38513. ]
  38514. ))
  38515. characterMakers.push(() => makeCharacter(
  38516. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38517. {
  38518. front: {
  38519. height: math.unit(4 + 11/12, "feet"),
  38520. name: "Front",
  38521. image: {
  38522. source: "./media/characters/monty/front.svg",
  38523. extra: 1479/1209,
  38524. bottom: 0/1479
  38525. }
  38526. },
  38527. },
  38528. [
  38529. {
  38530. name: "Normal",
  38531. height: math.unit(4 + 11/12, "feet"),
  38532. default: true
  38533. },
  38534. ]
  38535. ))
  38536. characterMakers.push(() => makeCharacter(
  38537. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38538. {
  38539. front: {
  38540. height: math.unit(8 + 4/12, "feet"),
  38541. name: "Front",
  38542. image: {
  38543. source: "./media/characters/sterling/front.svg",
  38544. extra: 1420/1236,
  38545. bottom: 27/1447
  38546. }
  38547. },
  38548. },
  38549. [
  38550. {
  38551. name: "Normal",
  38552. height: math.unit(8 + 4/12, "feet"),
  38553. default: true
  38554. },
  38555. ]
  38556. ))
  38557. characterMakers.push(() => makeCharacter(
  38558. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38559. {
  38560. front: {
  38561. height: math.unit(15, "feet"),
  38562. name: "Front",
  38563. image: {
  38564. source: "./media/characters/marble/front.svg",
  38565. extra: 973/937,
  38566. bottom: 32/1005
  38567. }
  38568. },
  38569. },
  38570. [
  38571. {
  38572. name: "Normal",
  38573. height: math.unit(15, "feet"),
  38574. default: true
  38575. },
  38576. ]
  38577. ))
  38578. characterMakers.push(() => makeCharacter(
  38579. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38580. {
  38581. front: {
  38582. height: math.unit(3, "inches"),
  38583. name: "Front",
  38584. image: {
  38585. source: "./media/characters/powder/front.svg",
  38586. extra: 1504/1334,
  38587. bottom: 518/2022
  38588. }
  38589. },
  38590. },
  38591. [
  38592. {
  38593. name: "Normal",
  38594. height: math.unit(3, "inches"),
  38595. default: true
  38596. },
  38597. ]
  38598. ))
  38599. characterMakers.push(() => makeCharacter(
  38600. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38601. {
  38602. front: {
  38603. height: math.unit(4 + 5/12, "feet"),
  38604. name: "Front",
  38605. image: {
  38606. source: "./media/characters/joey-raccoon/front.svg",
  38607. extra: 1273/1197,
  38608. bottom: 0/1273
  38609. }
  38610. },
  38611. },
  38612. [
  38613. {
  38614. name: "Normal",
  38615. height: math.unit(4 + 5/12, "feet"),
  38616. default: true
  38617. },
  38618. ]
  38619. ))
  38620. characterMakers.push(() => makeCharacter(
  38621. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38622. {
  38623. front: {
  38624. height: math.unit(8 + 4/12, "feet"),
  38625. name: "Front",
  38626. image: {
  38627. source: "./media/characters/vick/front.svg",
  38628. extra: 2187/2118,
  38629. bottom: 47/2234
  38630. }
  38631. },
  38632. },
  38633. [
  38634. {
  38635. name: "Normal",
  38636. height: math.unit(8 + 4/12, "feet"),
  38637. default: true
  38638. },
  38639. ]
  38640. ))
  38641. characterMakers.push(() => makeCharacter(
  38642. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38643. {
  38644. front: {
  38645. height: math.unit(5 + 5/12, "feet"),
  38646. name: "Front",
  38647. image: {
  38648. source: "./media/characters/mitsy/front.svg",
  38649. extra: 1842/1695,
  38650. bottom: 0/1842
  38651. }
  38652. },
  38653. },
  38654. [
  38655. {
  38656. name: "Normal",
  38657. height: math.unit(5 + 5/12, "feet"),
  38658. default: true
  38659. },
  38660. ]
  38661. ))
  38662. characterMakers.push(() => makeCharacter(
  38663. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38664. {
  38665. front: {
  38666. height: math.unit(6 + 3/12, "feet"),
  38667. name: "Front",
  38668. image: {
  38669. source: "./media/characters/silvy/front.svg",
  38670. extra: 1995/1836,
  38671. bottom: 225/2220
  38672. }
  38673. },
  38674. },
  38675. [
  38676. {
  38677. name: "Normal",
  38678. height: math.unit(6 + 3/12, "feet"),
  38679. default: true
  38680. },
  38681. ]
  38682. ))
  38683. characterMakers.push(() => makeCharacter(
  38684. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38685. {
  38686. front: {
  38687. height: math.unit(3 + 8/12, "feet"),
  38688. name: "Front",
  38689. image: {
  38690. source: "./media/characters/rodney/front.svg",
  38691. extra: 1956/1747,
  38692. bottom: 31/1987
  38693. }
  38694. },
  38695. frontDressed: {
  38696. height: math.unit(2.9, "feet"),
  38697. name: "Front (Dressed)",
  38698. image: {
  38699. source: "./media/characters/rodney/front-dressed.svg",
  38700. extra: 1382/1241,
  38701. bottom: 385/1767
  38702. }
  38703. },
  38704. },
  38705. [
  38706. {
  38707. name: "Normal",
  38708. height: math.unit(3 + 8/12, "feet"),
  38709. default: true
  38710. },
  38711. ]
  38712. ))
  38713. characterMakers.push(() => makeCharacter(
  38714. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38715. {
  38716. front: {
  38717. height: math.unit(5 + 9/12, "feet"),
  38718. weight: math.unit(194, "lbs"),
  38719. name: "Front",
  38720. image: {
  38721. source: "./media/characters/zakail-sudekai/front.svg",
  38722. extra: 2696/2533,
  38723. bottom: 248/2944
  38724. }
  38725. },
  38726. maw: {
  38727. height: math.unit(1.35, "feet"),
  38728. name: "Maw",
  38729. image: {
  38730. source: "./media/characters/zakail-sudekai/maw.svg"
  38731. }
  38732. },
  38733. },
  38734. [
  38735. {
  38736. name: "Normal",
  38737. height: math.unit(5 + 9/12, "feet"),
  38738. default: true
  38739. },
  38740. ]
  38741. ))
  38742. characterMakers.push(() => makeCharacter(
  38743. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38744. {
  38745. front: {
  38746. height: math.unit(8 + 4/12, "feet"),
  38747. weight: math.unit(1200, "lb"),
  38748. name: "Front",
  38749. image: {
  38750. source: "./media/characters/eleanor/front.svg",
  38751. extra: 1226/1192,
  38752. bottom: 52/1278
  38753. }
  38754. },
  38755. back: {
  38756. height: math.unit(8 + 4/12, "feet"),
  38757. weight: math.unit(1200, "lb"),
  38758. name: "Back",
  38759. image: {
  38760. source: "./media/characters/eleanor/back.svg",
  38761. extra: 1242/1184,
  38762. bottom: 60/1302
  38763. }
  38764. },
  38765. head: {
  38766. height: math.unit(2.62, "feet"),
  38767. name: "Head",
  38768. image: {
  38769. source: "./media/characters/eleanor/head.svg"
  38770. }
  38771. },
  38772. },
  38773. [
  38774. {
  38775. name: "Normal",
  38776. height: math.unit(8 + 4/12, "feet"),
  38777. default: true
  38778. },
  38779. ]
  38780. ))
  38781. characterMakers.push(() => makeCharacter(
  38782. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38783. {
  38784. front: {
  38785. height: math.unit(8 + 4/12, "feet"),
  38786. weight: math.unit(750, "lb"),
  38787. name: "Front",
  38788. image: {
  38789. source: "./media/characters/tanya/front.svg",
  38790. extra: 1749/1615,
  38791. bottom: 33/1782
  38792. }
  38793. },
  38794. },
  38795. [
  38796. {
  38797. name: "Normal",
  38798. height: math.unit(8 + 4/12, "feet"),
  38799. default: true
  38800. },
  38801. ]
  38802. ))
  38803. characterMakers.push(() => makeCharacter(
  38804. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38805. {
  38806. front: {
  38807. height: math.unit(5, "feet"),
  38808. weight: math.unit(225, "lb"),
  38809. name: "Front",
  38810. image: {
  38811. source: "./media/characters/cindy/front.svg",
  38812. extra: 1320/1250,
  38813. bottom: 42/1362
  38814. }
  38815. },
  38816. frontDressed: {
  38817. height: math.unit(5, "feet"),
  38818. weight: math.unit(225, "lb"),
  38819. name: "Front (Dressed)",
  38820. image: {
  38821. source: "./media/characters/cindy/front-dressed.svg",
  38822. extra: 1320/1250,
  38823. bottom: 42/1362
  38824. }
  38825. },
  38826. back: {
  38827. height: math.unit(5, "feet"),
  38828. weight: math.unit(225, "lb"),
  38829. name: "Back",
  38830. image: {
  38831. source: "./media/characters/cindy/back.svg",
  38832. extra: 1384/1346,
  38833. bottom: 14/1398
  38834. }
  38835. },
  38836. },
  38837. [
  38838. {
  38839. name: "Normal",
  38840. height: math.unit(5, "feet"),
  38841. default: true
  38842. },
  38843. ]
  38844. ))
  38845. characterMakers.push(() => makeCharacter(
  38846. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38847. {
  38848. front: {
  38849. height: math.unit(6 + 9/12, "feet"),
  38850. weight: math.unit(440, "lb"),
  38851. name: "Front",
  38852. image: {
  38853. source: "./media/characters/wilbur-owen/front.svg",
  38854. extra: 1575/1448,
  38855. bottom: 72/1647
  38856. }
  38857. },
  38858. back: {
  38859. height: math.unit(6 + 9/12, "feet"),
  38860. weight: math.unit(440, "lb"),
  38861. name: "Back",
  38862. image: {
  38863. source: "./media/characters/wilbur-owen/back.svg",
  38864. extra: 1578/1445,
  38865. bottom: 36/1614
  38866. }
  38867. },
  38868. },
  38869. [
  38870. {
  38871. name: "Normal",
  38872. height: math.unit(6 + 9/12, "feet"),
  38873. default: true
  38874. },
  38875. ]
  38876. ))
  38877. characterMakers.push(() => makeCharacter(
  38878. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38879. {
  38880. front: {
  38881. height: math.unit(6 + 5/12, "feet"),
  38882. weight: math.unit(650, "lb"),
  38883. name: "Front",
  38884. image: {
  38885. source: "./media/characters/keegan/front.svg",
  38886. extra: 2387/2198,
  38887. bottom: 33/2420
  38888. }
  38889. },
  38890. side: {
  38891. height: math.unit(6 + 5/12, "feet"),
  38892. weight: math.unit(650, "lb"),
  38893. name: "Side",
  38894. image: {
  38895. source: "./media/characters/keegan/side.svg",
  38896. extra: 2390/2202,
  38897. bottom: 47/2437
  38898. }
  38899. },
  38900. back: {
  38901. height: math.unit(6 + 5/12, "feet"),
  38902. weight: math.unit(650, "lb"),
  38903. name: "Back",
  38904. image: {
  38905. source: "./media/characters/keegan/back.svg",
  38906. extra: 2418/2268,
  38907. bottom: 15/2433
  38908. }
  38909. },
  38910. frontSfw: {
  38911. height: math.unit(6 + 5/12, "feet"),
  38912. weight: math.unit(650, "lb"),
  38913. name: "Front (SFW)",
  38914. image: {
  38915. source: "./media/characters/keegan/front-sfw.svg",
  38916. extra: 2387/2198,
  38917. bottom: 33/2420
  38918. }
  38919. },
  38920. beans: {
  38921. height: math.unit(1.85, "feet"),
  38922. name: "Beans",
  38923. image: {
  38924. source: "./media/characters/keegan/beans.svg"
  38925. }
  38926. },
  38927. },
  38928. [
  38929. {
  38930. name: "Normal",
  38931. height: math.unit(6 + 5/12, "feet"),
  38932. default: true
  38933. },
  38934. ]
  38935. ))
  38936. characterMakers.push(() => makeCharacter(
  38937. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38938. {
  38939. front: {
  38940. height: math.unit(9, "feet"),
  38941. name: "Front",
  38942. image: {
  38943. source: "./media/characters/colton/front.svg",
  38944. extra: 1589/1326,
  38945. bottom: 139/1728
  38946. }
  38947. },
  38948. },
  38949. [
  38950. {
  38951. name: "Normal",
  38952. height: math.unit(9, "feet"),
  38953. default: true
  38954. },
  38955. ]
  38956. ))
  38957. characterMakers.push(() => makeCharacter(
  38958. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38959. {
  38960. front: {
  38961. height: math.unit(2 + 9/12, "feet"),
  38962. name: "Front",
  38963. image: {
  38964. source: "./media/characters/bora/front.svg",
  38965. extra: 1265/1250,
  38966. bottom: 24/1289
  38967. }
  38968. },
  38969. },
  38970. [
  38971. {
  38972. name: "Normal",
  38973. height: math.unit(2 + 9/12, "feet"),
  38974. default: true
  38975. },
  38976. ]
  38977. ))
  38978. characterMakers.push(() => makeCharacter(
  38979. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38980. {
  38981. front: {
  38982. height: math.unit(8, "feet"),
  38983. name: "Front",
  38984. image: {
  38985. source: "./media/characters/myu-myu/front.svg",
  38986. extra: 1949/1857,
  38987. bottom: 90/2039
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Normal",
  38994. height: math.unit(8, "feet"),
  38995. default: true
  38996. },
  38997. {
  38998. name: "Big",
  38999. height: math.unit(15, "feet")
  39000. },
  39001. {
  39002. name: "BIG",
  39003. height: math.unit(25, "feet")
  39004. },
  39005. ]
  39006. ))
  39007. characterMakers.push(() => makeCharacter(
  39008. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39009. {
  39010. side: {
  39011. height: math.unit(7 + 5/12, "feet"),
  39012. weight: math.unit(2800, "lb"),
  39013. name: "Side",
  39014. image: {
  39015. source: "./media/characters/haloren/side.svg",
  39016. extra: 1793/409,
  39017. bottom: 59/1852
  39018. }
  39019. },
  39020. frontPaw: {
  39021. height: math.unit(2.36, "feet"),
  39022. name: "Front paw",
  39023. image: {
  39024. source: "./media/characters/haloren/front-paw.svg"
  39025. }
  39026. },
  39027. hindPaw: {
  39028. height: math.unit(3.18, "feet"),
  39029. name: "Hind paw",
  39030. image: {
  39031. source: "./media/characters/haloren/hind-paw.svg"
  39032. }
  39033. },
  39034. maw: {
  39035. height: math.unit(5.05, "feet"),
  39036. name: "Maw",
  39037. image: {
  39038. source: "./media/characters/haloren/maw.svg"
  39039. }
  39040. },
  39041. dick: {
  39042. height: math.unit(2.90, "feet"),
  39043. name: "Dick",
  39044. image: {
  39045. source: "./media/characters/haloren/dick.svg"
  39046. }
  39047. },
  39048. },
  39049. [
  39050. {
  39051. name: "Normal",
  39052. height: math.unit(7 + 5/12, "feet"),
  39053. default: true
  39054. },
  39055. {
  39056. name: "Enhanced",
  39057. height: math.unit(14 + 3/12, "feet")
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39063. {
  39064. front: {
  39065. height: math.unit(171, "cm"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/kimmy/front.svg",
  39069. extra: 1491/1435,
  39070. bottom: 53/1544
  39071. }
  39072. },
  39073. },
  39074. [
  39075. {
  39076. name: "Small",
  39077. height: math.unit(9, "cm")
  39078. },
  39079. {
  39080. name: "Normal",
  39081. height: math.unit(171, "cm"),
  39082. default: true
  39083. },
  39084. ]
  39085. ))
  39086. characterMakers.push(() => makeCharacter(
  39087. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39088. {
  39089. front: {
  39090. height: math.unit(8, "feet"),
  39091. weight: math.unit(300, "lb"),
  39092. name: "Front",
  39093. image: {
  39094. source: "./media/characters/galeboomer/front.svg",
  39095. extra: 4651/4415,
  39096. bottom: 162/4813
  39097. }
  39098. },
  39099. back: {
  39100. height: math.unit(8, "feet"),
  39101. weight: math.unit(300, "lb"),
  39102. name: "Back",
  39103. image: {
  39104. source: "./media/characters/galeboomer/back.svg",
  39105. extra: 4544/4314,
  39106. bottom: 16/4560
  39107. }
  39108. },
  39109. frontAlt: {
  39110. height: math.unit(8, "feet"),
  39111. weight: math.unit(300, "lb"),
  39112. name: "Front (Alt)",
  39113. image: {
  39114. source: "./media/characters/galeboomer/front-alt.svg",
  39115. extra: 4458/4228,
  39116. bottom: 68/4526
  39117. }
  39118. },
  39119. maw: {
  39120. height: math.unit(1.2, "feet"),
  39121. name: "Maw",
  39122. image: {
  39123. source: "./media/characters/galeboomer/maw.svg"
  39124. }
  39125. },
  39126. },
  39127. [
  39128. {
  39129. name: "Normal",
  39130. height: math.unit(8, "feet"),
  39131. default: true
  39132. },
  39133. ]
  39134. ))
  39135. characterMakers.push(() => makeCharacter(
  39136. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39137. {
  39138. front: {
  39139. height: math.unit(5 + 9/12, "feet"),
  39140. weight: math.unit(120, "lb"),
  39141. name: "Front",
  39142. image: {
  39143. source: "./media/characters/chyr/front.svg",
  39144. extra: 1323/1254,
  39145. bottom: 63/1386
  39146. }
  39147. },
  39148. back: {
  39149. height: math.unit(5 + 9/12, "feet"),
  39150. weight: math.unit(120, "lb"),
  39151. name: "Back",
  39152. image: {
  39153. source: "./media/characters/chyr/back.svg",
  39154. extra: 1323/1252,
  39155. bottom: 48/1371
  39156. }
  39157. },
  39158. },
  39159. [
  39160. {
  39161. name: "Normal",
  39162. height: math.unit(5 + 9/12, "feet"),
  39163. default: true
  39164. },
  39165. ]
  39166. ))
  39167. characterMakers.push(() => makeCharacter(
  39168. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39169. {
  39170. front: {
  39171. height: math.unit(7, "feet"),
  39172. weight: math.unit(310, "lb"),
  39173. name: "Front",
  39174. image: {
  39175. source: "./media/characters/solarus/front.svg",
  39176. extra: 2415/2021,
  39177. bottom: 103/2518
  39178. }
  39179. },
  39180. back: {
  39181. height: math.unit(7, "feet"),
  39182. weight: math.unit(310, "lb"),
  39183. name: "Back",
  39184. image: {
  39185. source: "./media/characters/solarus/back.svg",
  39186. extra: 2463/2089,
  39187. bottom: 79/2542
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Normal",
  39194. height: math.unit(7, "feet"),
  39195. default: true
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39201. {
  39202. front: {
  39203. height: math.unit(16, "feet"),
  39204. name: "Front",
  39205. image: {
  39206. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39207. extra: 1844/1780,
  39208. bottom: 58/1902
  39209. }
  39210. },
  39211. winterCoat: {
  39212. height: math.unit(16, "feet"),
  39213. name: "Winter Coat",
  39214. image: {
  39215. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39216. extra: 1807/1775,
  39217. bottom: 69/1876
  39218. }
  39219. },
  39220. },
  39221. [
  39222. {
  39223. name: "Normal",
  39224. height: math.unit(16, "feet"),
  39225. default: true
  39226. },
  39227. {
  39228. name: "Chicago Size",
  39229. height: math.unit(560, "feet")
  39230. },
  39231. ]
  39232. ))
  39233. characterMakers.push(() => makeCharacter(
  39234. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39235. {
  39236. front: {
  39237. height: math.unit(11 + 6/12, "feet"),
  39238. weight: math.unit(1366, "lb"),
  39239. name: "Front",
  39240. image: {
  39241. source: "./media/characters/lexor/front.svg",
  39242. extra: 1560/1481,
  39243. bottom: 211/1771
  39244. }
  39245. },
  39246. back: {
  39247. height: math.unit(11 + 6/12, "feet"),
  39248. weight: math.unit(1366, "lb"),
  39249. name: "Back",
  39250. image: {
  39251. source: "./media/characters/lexor/back.svg",
  39252. extra: 1614/1533,
  39253. bottom: 76/1690
  39254. }
  39255. },
  39256. maw: {
  39257. height: math.unit(3, "feet"),
  39258. name: "Maw",
  39259. image: {
  39260. source: "./media/characters/lexor/maw.svg"
  39261. }
  39262. },
  39263. dick: {
  39264. height: math.unit(2.59, "feet"),
  39265. name: "Dick",
  39266. image: {
  39267. source: "./media/characters/lexor/dick.svg"
  39268. }
  39269. },
  39270. },
  39271. [
  39272. {
  39273. name: "Normal",
  39274. height: math.unit(11 + 6/12, "feet"),
  39275. default: true
  39276. },
  39277. ]
  39278. ))
  39279. characterMakers.push(() => makeCharacter(
  39280. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39281. {
  39282. front: {
  39283. height: math.unit(5 + 8/12, "feet"),
  39284. name: "Front",
  39285. image: {
  39286. source: "./media/characters/magnum/front.svg",
  39287. extra: 942/855,
  39288. bottom: 26/968
  39289. }
  39290. },
  39291. },
  39292. [
  39293. {
  39294. name: "Normal",
  39295. height: math.unit(5 + 8/12, "feet"),
  39296. default: true
  39297. },
  39298. ]
  39299. ))
  39300. characterMakers.push(() => makeCharacter(
  39301. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39302. {
  39303. front: {
  39304. height: math.unit(18 + 4/12, "feet"),
  39305. weight: math.unit(1500, "kg"),
  39306. name: "Front",
  39307. image: {
  39308. source: "./media/characters/solas-sharpsman/front.svg",
  39309. extra: 1698/1589,
  39310. bottom: 0/1698
  39311. }
  39312. },
  39313. },
  39314. [
  39315. {
  39316. name: "Normal",
  39317. height: math.unit(18 + 4/12, "feet"),
  39318. default: true
  39319. },
  39320. ]
  39321. ))
  39322. characterMakers.push(() => makeCharacter(
  39323. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39324. {
  39325. front: {
  39326. height: math.unit(5 + 5/12, "feet"),
  39327. weight: math.unit(180, "lb"),
  39328. name: "Front",
  39329. image: {
  39330. source: "./media/characters/october/front.svg",
  39331. extra: 1800/1650,
  39332. bottom: 0/1800
  39333. }
  39334. },
  39335. frontNsfw: {
  39336. height: math.unit(5 + 5/12, "feet"),
  39337. weight: math.unit(180, "lb"),
  39338. name: "Front (NSFW)",
  39339. image: {
  39340. source: "./media/characters/october/front-nsfw.svg",
  39341. extra: 1392/1307,
  39342. bottom: 42/1434
  39343. }
  39344. },
  39345. },
  39346. [
  39347. {
  39348. name: "Normal",
  39349. height: math.unit(5 + 5/12, "feet"),
  39350. default: true
  39351. },
  39352. ]
  39353. ))
  39354. characterMakers.push(() => makeCharacter(
  39355. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39356. {
  39357. front: {
  39358. height: math.unit(8 + 6/12, "feet"),
  39359. name: "Front",
  39360. image: {
  39361. source: "./media/characters/essynkardi/front.svg",
  39362. extra: 1541/1457,
  39363. bottom: 47/1588
  39364. }
  39365. },
  39366. },
  39367. [
  39368. {
  39369. name: "Normal",
  39370. height: math.unit(8 + 6/12, "feet"),
  39371. default: true
  39372. },
  39373. ]
  39374. ))
  39375. characterMakers.push(() => makeCharacter(
  39376. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39377. {
  39378. front: {
  39379. height: math.unit(6 + 6/12, "feet"),
  39380. weight: math.unit(7, "lb"),
  39381. name: "Front",
  39382. image: {
  39383. source: "./media/characters/icky/front.svg",
  39384. extra: 813/782,
  39385. bottom: 66/879
  39386. }
  39387. },
  39388. back: {
  39389. height: math.unit(6 + 6/12, "feet"),
  39390. weight: math.unit(7, "lb"),
  39391. name: "Back",
  39392. image: {
  39393. source: "./media/characters/icky/back.svg",
  39394. extra: 754/735,
  39395. bottom: 56/810
  39396. }
  39397. },
  39398. },
  39399. [
  39400. {
  39401. name: "Normal",
  39402. height: math.unit(6 + 6/12, "feet"),
  39403. default: true
  39404. },
  39405. ]
  39406. ))
  39407. characterMakers.push(() => makeCharacter(
  39408. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39409. {
  39410. front: {
  39411. height: math.unit(15, "feet"),
  39412. name: "Front",
  39413. image: {
  39414. source: "./media/characters/rojas/front.svg",
  39415. extra: 1462/1408,
  39416. bottom: 95/1557
  39417. }
  39418. },
  39419. back: {
  39420. height: math.unit(15, "feet"),
  39421. name: "Back",
  39422. image: {
  39423. source: "./media/characters/rojas/back.svg",
  39424. extra: 1023/954,
  39425. bottom: 28/1051
  39426. }
  39427. },
  39428. },
  39429. [
  39430. {
  39431. name: "Normal",
  39432. height: math.unit(15, "feet"),
  39433. default: true
  39434. },
  39435. ]
  39436. ))
  39437. characterMakers.push(() => makeCharacter(
  39438. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39439. {
  39440. frontHuman: {
  39441. height: math.unit(5 + 7/12, "feet"),
  39442. name: "Front (Human)",
  39443. image: {
  39444. source: "./media/characters/alek-dryagan/front-human.svg",
  39445. extra: 1687/1667,
  39446. bottom: 69/1756
  39447. }
  39448. },
  39449. backHuman: {
  39450. height: math.unit(5 + 7/12, "feet"),
  39451. name: "Back (Human)",
  39452. image: {
  39453. source: "./media/characters/alek-dryagan/back-human.svg",
  39454. extra: 1670/1649,
  39455. bottom: 65/1735
  39456. }
  39457. },
  39458. frontDemi: {
  39459. height: math.unit(65, "feet"),
  39460. name: "Front (Demi)",
  39461. image: {
  39462. source: "./media/characters/alek-dryagan/front-demi.svg",
  39463. extra: 1669/1642,
  39464. bottom: 49/1718
  39465. }
  39466. },
  39467. backDemi: {
  39468. height: math.unit(65, "feet"),
  39469. name: "Back (Demi)",
  39470. image: {
  39471. source: "./media/characters/alek-dryagan/back-demi.svg",
  39472. extra: 1658/1637,
  39473. bottom: 40/1698
  39474. }
  39475. },
  39476. mawHuman: {
  39477. height: math.unit(0.3, "feet"),
  39478. name: "Maw (Human)",
  39479. image: {
  39480. source: "./media/characters/alek-dryagan/maw-human.svg"
  39481. }
  39482. },
  39483. mawDemi: {
  39484. height: math.unit(3.8, "feet"),
  39485. name: "Maw (Demi)",
  39486. image: {
  39487. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39488. }
  39489. },
  39490. },
  39491. [
  39492. {
  39493. name: "Normal",
  39494. height: math.unit(5 + 7/12, "feet"),
  39495. default: true
  39496. },
  39497. ]
  39498. ))
  39499. characterMakers.push(() => makeCharacter(
  39500. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39501. {
  39502. frontHuman: {
  39503. height: math.unit(5 + 2/12, "feet"),
  39504. name: "Front (Human)",
  39505. image: {
  39506. source: "./media/characters/gen/front-human.svg",
  39507. extra: 1627/1538,
  39508. bottom: 71/1698
  39509. }
  39510. },
  39511. backHuman: {
  39512. height: math.unit(5 + 2/12, "feet"),
  39513. name: "Back (Human)",
  39514. image: {
  39515. source: "./media/characters/gen/back-human.svg",
  39516. extra: 1638/1548,
  39517. bottom: 69/1707
  39518. }
  39519. },
  39520. frontDemi: {
  39521. height: math.unit(5 + 2/12, "feet"),
  39522. name: "Front (Demi)",
  39523. image: {
  39524. source: "./media/characters/gen/front-demi.svg",
  39525. extra: 1627/1538,
  39526. bottom: 71/1698
  39527. }
  39528. },
  39529. backDemi: {
  39530. height: math.unit(5 + 2/12, "feet"),
  39531. name: "Back (Demi)",
  39532. image: {
  39533. source: "./media/characters/gen/back-demi.svg",
  39534. extra: 1638/1548,
  39535. bottom: 69/1707
  39536. }
  39537. },
  39538. },
  39539. [
  39540. {
  39541. name: "Normal",
  39542. height: math.unit(5 + 2/12, "feet"),
  39543. default: true
  39544. },
  39545. ]
  39546. ))
  39547. characterMakers.push(() => makeCharacter(
  39548. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39549. {
  39550. frontImp: {
  39551. height: math.unit(1 + 11/12, "feet"),
  39552. name: "Front (Imp)",
  39553. image: {
  39554. source: "./media/characters/max-kobold/front-imp.svg",
  39555. extra: 1238/1134,
  39556. bottom: 81/1319
  39557. }
  39558. },
  39559. backImp: {
  39560. height: math.unit(1 + 11/12, "feet"),
  39561. name: "Back (Imp)",
  39562. image: {
  39563. source: "./media/characters/max-kobold/back-imp.svg",
  39564. extra: 1334/1175,
  39565. bottom: 34/1368
  39566. }
  39567. },
  39568. frontDemi: {
  39569. height: math.unit(5 + 9/12, "feet"),
  39570. name: "Front (Demi)",
  39571. image: {
  39572. source: "./media/characters/max-kobold/front-demi.svg",
  39573. extra: 1715/1685,
  39574. bottom: 54/1769
  39575. }
  39576. },
  39577. backDemi: {
  39578. height: math.unit(5 + 9/12, "feet"),
  39579. name: "Back (Demi)",
  39580. image: {
  39581. source: "./media/characters/max-kobold/back-demi.svg",
  39582. extra: 1752/1729,
  39583. bottom: 41/1793
  39584. }
  39585. },
  39586. handImp: {
  39587. height: math.unit(0.45, "feet"),
  39588. name: "Hand (Imp)",
  39589. image: {
  39590. source: "./media/characters/max-kobold/hand.svg"
  39591. }
  39592. },
  39593. pawImp: {
  39594. height: math.unit(0.46, "feet"),
  39595. name: "Paw (Imp)",
  39596. image: {
  39597. source: "./media/characters/max-kobold/paw.svg"
  39598. }
  39599. },
  39600. handDemi: {
  39601. height: math.unit(0.80, "feet"),
  39602. name: "Hand (Demi)",
  39603. image: {
  39604. source: "./media/characters/max-kobold/hand.svg"
  39605. }
  39606. },
  39607. pawDemi: {
  39608. height: math.unit(1.1, "feet"),
  39609. name: "Paw (Demi)",
  39610. image: {
  39611. source: "./media/characters/max-kobold/paw.svg"
  39612. }
  39613. },
  39614. headImp: {
  39615. height: math.unit(1.33, "feet"),
  39616. name: "Head (Imp)",
  39617. image: {
  39618. source: "./media/characters/max-kobold/head-imp.svg"
  39619. }
  39620. },
  39621. mawImp: {
  39622. height: math.unit(0.75, "feet"),
  39623. name: "Maw (Imp)",
  39624. image: {
  39625. source: "./media/characters/max-kobold/maw-imp.svg"
  39626. }
  39627. },
  39628. mawDemi: {
  39629. height: math.unit(0.42, "feet"),
  39630. name: "Maw (Demi)",
  39631. image: {
  39632. source: "./media/characters/max-kobold/maw-demi.svg"
  39633. }
  39634. },
  39635. },
  39636. [
  39637. {
  39638. name: "Normal",
  39639. height: math.unit(1 + 11/12, "feet"),
  39640. default: true
  39641. },
  39642. ]
  39643. ))
  39644. characterMakers.push(() => makeCharacter(
  39645. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39646. {
  39647. front: {
  39648. height: math.unit(7 + 5/12, "feet"),
  39649. name: "Front",
  39650. image: {
  39651. source: "./media/characters/carbon/front.svg",
  39652. extra: 1754/1689,
  39653. bottom: 65/1819
  39654. }
  39655. },
  39656. back: {
  39657. height: math.unit(7 + 5/12, "feet"),
  39658. name: "Back",
  39659. image: {
  39660. source: "./media/characters/carbon/back.svg",
  39661. extra: 1762/1695,
  39662. bottom: 24/1786
  39663. }
  39664. },
  39665. frontGigantamax: {
  39666. height: math.unit(150, "feet"),
  39667. name: "Front (Gigantamax)",
  39668. image: {
  39669. source: "./media/characters/carbon/front-gigantamax.svg",
  39670. extra: 1826/1669,
  39671. bottom: 59/1885
  39672. }
  39673. },
  39674. backGigantamax: {
  39675. height: math.unit(150, "feet"),
  39676. name: "Back (Gigantamax)",
  39677. image: {
  39678. source: "./media/characters/carbon/back-gigantamax.svg",
  39679. extra: 1796/1653,
  39680. bottom: 53/1849
  39681. }
  39682. },
  39683. maw: {
  39684. height: math.unit(0.48, "feet"),
  39685. name: "Maw",
  39686. image: {
  39687. source: "./media/characters/carbon/maw.svg"
  39688. }
  39689. },
  39690. mawGigantamax: {
  39691. height: math.unit(7.5, "feet"),
  39692. name: "Maw (Gigantamax)",
  39693. image: {
  39694. source: "./media/characters/carbon/maw-gigantamax.svg"
  39695. }
  39696. },
  39697. },
  39698. [
  39699. {
  39700. name: "Normal",
  39701. height: math.unit(7 + 5/12, "feet"),
  39702. default: true
  39703. },
  39704. ]
  39705. ))
  39706. characterMakers.push(() => makeCharacter(
  39707. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39708. {
  39709. front: {
  39710. height: math.unit(6, "feet"),
  39711. name: "Front",
  39712. image: {
  39713. source: "./media/characters/maverick/front.svg",
  39714. extra: 1672/1661,
  39715. bottom: 85/1757
  39716. }
  39717. },
  39718. back: {
  39719. height: math.unit(6, "feet"),
  39720. name: "Back",
  39721. image: {
  39722. source: "./media/characters/maverick/back.svg",
  39723. extra: 1642/1631,
  39724. bottom: 38/1680
  39725. }
  39726. },
  39727. },
  39728. [
  39729. {
  39730. name: "Normal",
  39731. height: math.unit(6, "feet"),
  39732. default: true
  39733. },
  39734. ]
  39735. ))
  39736. characterMakers.push(() => makeCharacter(
  39737. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39738. {
  39739. front: {
  39740. height: math.unit(15, "feet"),
  39741. weight: math.unit(615, "lb"),
  39742. name: "Front",
  39743. image: {
  39744. source: "./media/characters/grockle/front.svg",
  39745. extra: 1535/1427,
  39746. bottom: 56/1591
  39747. }
  39748. },
  39749. },
  39750. [
  39751. {
  39752. name: "Normal",
  39753. height: math.unit(15, "feet"),
  39754. default: true
  39755. },
  39756. {
  39757. name: "Large",
  39758. height: math.unit(150, "feet")
  39759. },
  39760. {
  39761. name: "Macro",
  39762. height: math.unit(1876, "feet")
  39763. },
  39764. {
  39765. name: "Mega Macro",
  39766. height: math.unit(121940, "feet")
  39767. },
  39768. {
  39769. name: "Giga Macro",
  39770. height: math.unit(750, "km")
  39771. },
  39772. {
  39773. name: "Tera Macro",
  39774. height: math.unit(750000, "km")
  39775. },
  39776. {
  39777. name: "Galactic",
  39778. height: math.unit(1.4e5, "km")
  39779. },
  39780. {
  39781. name: "Godlike",
  39782. height: math.unit(9.8e280, "galaxies")
  39783. },
  39784. ]
  39785. ))
  39786. characterMakers.push(() => makeCharacter(
  39787. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39788. {
  39789. front: {
  39790. height: math.unit(11, "meters"),
  39791. weight: math.unit(20, "tonnes"),
  39792. name: "Front",
  39793. image: {
  39794. source: "./media/characters/alistair/front.svg",
  39795. extra: 1265/1009,
  39796. bottom: 93/1358
  39797. }
  39798. },
  39799. },
  39800. [
  39801. {
  39802. name: "Normal",
  39803. height: math.unit(11, "meters"),
  39804. default: true
  39805. },
  39806. ]
  39807. ))
  39808. characterMakers.push(() => makeCharacter(
  39809. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39810. {
  39811. front: {
  39812. height: math.unit(5 + 8/12, "feet"),
  39813. name: "Front",
  39814. image: {
  39815. source: "./media/characters/haruka/front.svg",
  39816. extra: 2012/1952,
  39817. bottom: 0/2012
  39818. }
  39819. },
  39820. },
  39821. [
  39822. {
  39823. name: "Normal",
  39824. height: math.unit(5 + 8/12, "feet"),
  39825. default: true
  39826. },
  39827. ]
  39828. ))
  39829. characterMakers.push(() => makeCharacter(
  39830. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39831. {
  39832. back: {
  39833. height: math.unit(9, "feet"),
  39834. name: "Back",
  39835. image: {
  39836. source: "./media/characters/vivian-sylveon/back.svg",
  39837. extra: 1853/1714,
  39838. bottom: 0/1853
  39839. }
  39840. },
  39841. hyper: {
  39842. height: math.unit(5.58, "feet"),
  39843. name: "Hyper",
  39844. preyCapacity: math.unit(2.80616218797, "m^3"),
  39845. image: {
  39846. source: "./media/characters/vivian-sylveon/hyper.svg",
  39847. extra: 999/676,
  39848. bottom: 697/1696
  39849. },
  39850. },
  39851. paw: {
  39852. height: math.unit(1.8, "feet"),
  39853. name: "Paw",
  39854. image: {
  39855. source: "./media/characters/vivian-sylveon/paw.svg"
  39856. }
  39857. },
  39858. danger: {
  39859. height: math.unit(7.5, "feet"),
  39860. name: "DANGER",
  39861. image: {
  39862. source: "./media/characters/vivian-sylveon/danger.svg"
  39863. }
  39864. },
  39865. },
  39866. [
  39867. {
  39868. name: "Normal",
  39869. height: math.unit(9, "feet"),
  39870. default: true
  39871. },
  39872. {
  39873. name: "Macro",
  39874. height: math.unit(500, "feet")
  39875. },
  39876. {
  39877. name: "Megamacro",
  39878. height: math.unit(600, "miles")
  39879. },
  39880. {
  39881. name: "Gigamacro",
  39882. height: math.unit(30000, "miles")
  39883. },
  39884. ]
  39885. ))
  39886. characterMakers.push(() => makeCharacter(
  39887. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39888. {
  39889. anthro: {
  39890. height: math.unit(5 + 10/12, "feet"),
  39891. weight: math.unit(100, "lb"),
  39892. name: "Anthro",
  39893. image: {
  39894. source: "./media/characters/daiki/anthro.svg",
  39895. extra: 1115/1027,
  39896. bottom: 69/1184
  39897. }
  39898. },
  39899. feral: {
  39900. height: math.unit(200, "feet"),
  39901. name: "Feral",
  39902. image: {
  39903. source: "./media/characters/daiki/feral.svg",
  39904. extra: 1256/313,
  39905. bottom: 39/1295
  39906. }
  39907. },
  39908. feralHead: {
  39909. height: math.unit(171, "feet"),
  39910. name: "Feral Head",
  39911. image: {
  39912. source: "./media/characters/daiki/feral-head.svg"
  39913. }
  39914. },
  39915. manaDragon: {
  39916. height: math.unit(170, "meters"),
  39917. name: "Mana-dragon",
  39918. image: {
  39919. source: "./media/characters/daiki/mana-dragon.svg",
  39920. extra: 763/420,
  39921. bottom: 97/860
  39922. }
  39923. },
  39924. },
  39925. [
  39926. {
  39927. name: "Normal",
  39928. height: math.unit(5 + 10/12, "feet"),
  39929. default: true
  39930. },
  39931. ]
  39932. ))
  39933. characterMakers.push(() => makeCharacter(
  39934. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39935. {
  39936. fullyEquippedFront: {
  39937. height: math.unit(3 + 1/12, "feet"),
  39938. weight: math.unit(24, "lb"),
  39939. name: "Fully Equipped (Front)",
  39940. image: {
  39941. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39942. extra: 687/605,
  39943. bottom: 18/705
  39944. }
  39945. },
  39946. fullyEquippedBack: {
  39947. height: math.unit(3 + 1/12, "feet"),
  39948. weight: math.unit(24, "lb"),
  39949. name: "Fully Equipped (Back)",
  39950. image: {
  39951. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39952. extra: 689/590,
  39953. bottom: 18/707
  39954. }
  39955. },
  39956. dailyWear: {
  39957. height: math.unit(3 + 1/12, "feet"),
  39958. weight: math.unit(24, "lb"),
  39959. name: "Daily Wear",
  39960. image: {
  39961. source: "./media/characters/tea-spot/daily-wear.svg",
  39962. extra: 701/620,
  39963. bottom: 21/722
  39964. }
  39965. },
  39966. maidWork: {
  39967. height: math.unit(3 + 1/12, "feet"),
  39968. weight: math.unit(24, "lb"),
  39969. name: "Maid Work",
  39970. image: {
  39971. source: "./media/characters/tea-spot/maid-work.svg",
  39972. extra: 693/609,
  39973. bottom: 15/708
  39974. }
  39975. },
  39976. },
  39977. [
  39978. {
  39979. name: "Normal",
  39980. height: math.unit(3 + 1/12, "feet"),
  39981. default: true
  39982. },
  39983. ]
  39984. ))
  39985. characterMakers.push(() => makeCharacter(
  39986. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39987. {
  39988. front: {
  39989. height: math.unit(175, "cm"),
  39990. weight: math.unit(75, "kg"),
  39991. name: "Front",
  39992. image: {
  39993. source: "./media/characters/chee/front.svg",
  39994. extra: 1796/1740,
  39995. bottom: 40/1836
  39996. }
  39997. },
  39998. },
  39999. [
  40000. {
  40001. name: "Micro-Micro",
  40002. height: math.unit(1, "nm")
  40003. },
  40004. {
  40005. name: "Micro-erst",
  40006. height: math.unit(1, "micrometer")
  40007. },
  40008. {
  40009. name: "Micro-er",
  40010. height: math.unit(1, "cm")
  40011. },
  40012. {
  40013. name: "Normal",
  40014. height: math.unit(175, "cm"),
  40015. default: true
  40016. },
  40017. {
  40018. name: "Macro",
  40019. height: math.unit(100, "m")
  40020. },
  40021. {
  40022. name: "Macro-er",
  40023. height: math.unit(1, "km")
  40024. },
  40025. {
  40026. name: "Macro-erst",
  40027. height: math.unit(10, "km")
  40028. },
  40029. {
  40030. name: "Macro-Macro",
  40031. height: math.unit(100, "km")
  40032. },
  40033. ]
  40034. ))
  40035. characterMakers.push(() => makeCharacter(
  40036. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40037. {
  40038. front: {
  40039. height: math.unit(11 + 9/12, "feet"),
  40040. weight: math.unit(935, "lb"),
  40041. name: "Front",
  40042. image: {
  40043. source: "./media/characters/kingsley/front.svg",
  40044. extra: 1803/1674,
  40045. bottom: 127/1930
  40046. }
  40047. },
  40048. frontNude: {
  40049. height: math.unit(11 + 9/12, "feet"),
  40050. weight: math.unit(935, "lb"),
  40051. name: "Front (Nude)",
  40052. image: {
  40053. source: "./media/characters/kingsley/front-nude.svg",
  40054. extra: 1803/1674,
  40055. bottom: 127/1930
  40056. }
  40057. },
  40058. },
  40059. [
  40060. {
  40061. name: "Normal",
  40062. height: math.unit(11 + 9/12, "feet"),
  40063. default: true
  40064. },
  40065. ]
  40066. ))
  40067. characterMakers.push(() => makeCharacter(
  40068. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40069. {
  40070. side: {
  40071. height: math.unit(9, "feet"),
  40072. name: "Side",
  40073. image: {
  40074. source: "./media/characters/rymel/side.svg",
  40075. extra: 792/469,
  40076. bottom: 121/913
  40077. }
  40078. },
  40079. maw: {
  40080. height: math.unit(2.4, "meters"),
  40081. name: "Maw",
  40082. image: {
  40083. source: "./media/characters/rymel/maw.svg"
  40084. }
  40085. },
  40086. },
  40087. [
  40088. {
  40089. name: "House Drake",
  40090. height: math.unit(2, "feet")
  40091. },
  40092. {
  40093. name: "Reduced",
  40094. height: math.unit(4.5, "feet")
  40095. },
  40096. {
  40097. name: "Normal",
  40098. height: math.unit(9, "feet"),
  40099. default: true
  40100. },
  40101. ]
  40102. ))
  40103. characterMakers.push(() => makeCharacter(
  40104. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40105. {
  40106. front: {
  40107. height: math.unit(1.74, "meters"),
  40108. weight: math.unit(55, "kg"),
  40109. name: "Front",
  40110. image: {
  40111. source: "./media/characters/rubus/front.svg",
  40112. extra: 1894/1742,
  40113. bottom: 44/1938
  40114. }
  40115. },
  40116. },
  40117. [
  40118. {
  40119. name: "Normal",
  40120. height: math.unit(1.74, "meters"),
  40121. default: true
  40122. },
  40123. ]
  40124. ))
  40125. characterMakers.push(() => makeCharacter(
  40126. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40127. {
  40128. front: {
  40129. height: math.unit(5 + 2/12, "feet"),
  40130. weight: math.unit(112, "lb"),
  40131. name: "Front",
  40132. image: {
  40133. source: "./media/characters/cassie-kingston/front.svg",
  40134. extra: 1438/1390,
  40135. bottom: 47/1485
  40136. }
  40137. },
  40138. },
  40139. [
  40140. {
  40141. name: "Normal",
  40142. height: math.unit(5 + 2/12, "feet"),
  40143. default: true
  40144. },
  40145. {
  40146. name: "Macro",
  40147. height: math.unit(128, "feet")
  40148. },
  40149. {
  40150. name: "Megamacro",
  40151. height: math.unit(2.56, "miles")
  40152. },
  40153. ]
  40154. ))
  40155. characterMakers.push(() => makeCharacter(
  40156. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40157. {
  40158. front: {
  40159. height: math.unit(7, "feet"),
  40160. name: "Front",
  40161. image: {
  40162. source: "./media/characters/fox/front.svg",
  40163. extra: 1798/1703,
  40164. bottom: 55/1853
  40165. }
  40166. },
  40167. back: {
  40168. height: math.unit(7, "feet"),
  40169. name: "Back",
  40170. image: {
  40171. source: "./media/characters/fox/back.svg",
  40172. extra: 1748/1649,
  40173. bottom: 32/1780
  40174. }
  40175. },
  40176. head: {
  40177. height: math.unit(1.95, "feet"),
  40178. name: "Head",
  40179. image: {
  40180. source: "./media/characters/fox/head.svg"
  40181. }
  40182. },
  40183. dick: {
  40184. height: math.unit(1.33, "feet"),
  40185. name: "Dick",
  40186. image: {
  40187. source: "./media/characters/fox/dick.svg"
  40188. }
  40189. },
  40190. foot: {
  40191. height: math.unit(1, "feet"),
  40192. name: "Foot",
  40193. image: {
  40194. source: "./media/characters/fox/foot.svg"
  40195. }
  40196. },
  40197. paw: {
  40198. height: math.unit(0.92, "feet"),
  40199. name: "Paw",
  40200. image: {
  40201. source: "./media/characters/fox/paw.svg"
  40202. }
  40203. },
  40204. },
  40205. [
  40206. {
  40207. name: "Small",
  40208. height: math.unit(3, "inches")
  40209. },
  40210. {
  40211. name: "\"Realistic\"",
  40212. height: math.unit(7, "feet")
  40213. },
  40214. {
  40215. name: "Normal",
  40216. height: math.unit(150, "feet"),
  40217. default: true
  40218. },
  40219. {
  40220. name: "BIG",
  40221. height: math.unit(1200, "feet")
  40222. },
  40223. {
  40224. name: "👀",
  40225. height: math.unit(5, "miles")
  40226. },
  40227. {
  40228. name: "👀👀👀",
  40229. height: math.unit(64, "miles")
  40230. },
  40231. ]
  40232. ))
  40233. characterMakers.push(() => makeCharacter(
  40234. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40235. {
  40236. front: {
  40237. height: math.unit(625, "feet"),
  40238. name: "Front",
  40239. image: {
  40240. source: "./media/characters/asonja-rossa/front.svg",
  40241. extra: 1833/1686,
  40242. bottom: 24/1857
  40243. }
  40244. },
  40245. back: {
  40246. height: math.unit(625, "feet"),
  40247. name: "Back",
  40248. image: {
  40249. source: "./media/characters/asonja-rossa/back.svg",
  40250. extra: 1852/1753,
  40251. bottom: 26/1878
  40252. }
  40253. },
  40254. },
  40255. [
  40256. {
  40257. name: "Macro",
  40258. height: math.unit(625, "feet"),
  40259. default: true
  40260. },
  40261. ]
  40262. ))
  40263. characterMakers.push(() => makeCharacter(
  40264. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40265. {
  40266. side: {
  40267. height: math.unit(8, "feet"),
  40268. name: "Side",
  40269. image: {
  40270. source: "./media/characters/rezukii/side.svg",
  40271. extra: 979/542,
  40272. bottom: 87/1066
  40273. }
  40274. },
  40275. sitting: {
  40276. height: math.unit(14.6, "feet"),
  40277. name: "Sitting",
  40278. image: {
  40279. source: "./media/characters/rezukii/sitting.svg",
  40280. extra: 1023/813,
  40281. bottom: 45/1068
  40282. }
  40283. },
  40284. },
  40285. [
  40286. {
  40287. name: "Tiny",
  40288. height: math.unit(2, "feet")
  40289. },
  40290. {
  40291. name: "Smol",
  40292. height: math.unit(4, "feet")
  40293. },
  40294. {
  40295. name: "Normal",
  40296. height: math.unit(8, "feet"),
  40297. default: true
  40298. },
  40299. {
  40300. name: "Big",
  40301. height: math.unit(12, "feet")
  40302. },
  40303. {
  40304. name: "Macro",
  40305. height: math.unit(30, "feet")
  40306. },
  40307. ]
  40308. ))
  40309. characterMakers.push(() => makeCharacter(
  40310. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40311. {
  40312. front: {
  40313. height: math.unit(14, "feet"),
  40314. weight: math.unit(9.5, "tonnes"),
  40315. name: "Front",
  40316. image: {
  40317. source: "./media/characters/dawnheart/front.svg",
  40318. extra: 2792/2675,
  40319. bottom: 64/2856
  40320. }
  40321. },
  40322. },
  40323. [
  40324. {
  40325. name: "Normal",
  40326. height: math.unit(14, "feet"),
  40327. default: true
  40328. },
  40329. ]
  40330. ))
  40331. characterMakers.push(() => makeCharacter(
  40332. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40333. {
  40334. front: {
  40335. height: math.unit(1.7, "m"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/gladi/front.svg",
  40339. extra: 1460/1362,
  40340. bottom: 19/1479
  40341. }
  40342. },
  40343. back: {
  40344. height: math.unit(1.7, "m"),
  40345. name: "Back",
  40346. image: {
  40347. source: "./media/characters/gladi/back.svg",
  40348. extra: 1459/1357,
  40349. bottom: 12/1471
  40350. }
  40351. },
  40352. feral: {
  40353. height: math.unit(2.05, "m"),
  40354. name: "Feral",
  40355. image: {
  40356. source: "./media/characters/gladi/feral.svg",
  40357. extra: 821/557,
  40358. bottom: 91/912
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Shortest",
  40365. height: math.unit(70, "cm")
  40366. },
  40367. {
  40368. name: "Normal",
  40369. height: math.unit(1.7, "m")
  40370. },
  40371. {
  40372. name: "Macro",
  40373. height: math.unit(10, "m"),
  40374. default: true
  40375. },
  40376. {
  40377. name: "Tallest",
  40378. height: math.unit(200, "m")
  40379. },
  40380. ]
  40381. ))
  40382. characterMakers.push(() => makeCharacter(
  40383. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40384. {
  40385. front: {
  40386. height: math.unit(5 + 7/12, "feet"),
  40387. weight: math.unit(2, "tons"),
  40388. name: "Front",
  40389. image: {
  40390. source: "./media/characters/erdno/front.svg",
  40391. extra: 1234/1129,
  40392. bottom: 35/1269
  40393. }
  40394. },
  40395. angled: {
  40396. height: math.unit(5 + 7/12, "feet"),
  40397. weight: math.unit(2, "tons"),
  40398. name: "Angled",
  40399. image: {
  40400. source: "./media/characters/erdno/angled.svg",
  40401. extra: 1185/1139,
  40402. bottom: 36/1221
  40403. }
  40404. },
  40405. side: {
  40406. height: math.unit(5 + 7/12, "feet"),
  40407. weight: math.unit(2, "tons"),
  40408. name: "Side",
  40409. image: {
  40410. source: "./media/characters/erdno/side.svg",
  40411. extra: 1191/1144,
  40412. bottom: 40/1231
  40413. }
  40414. },
  40415. back: {
  40416. height: math.unit(5 + 7/12, "feet"),
  40417. weight: math.unit(2, "tons"),
  40418. name: "Back",
  40419. image: {
  40420. source: "./media/characters/erdno/back.svg",
  40421. extra: 1202/1146,
  40422. bottom: 17/1219
  40423. }
  40424. },
  40425. frontNsfw: {
  40426. height: math.unit(5 + 7/12, "feet"),
  40427. weight: math.unit(2, "tons"),
  40428. name: "Front (NSFW)",
  40429. image: {
  40430. source: "./media/characters/erdno/front-nsfw.svg",
  40431. extra: 1234/1129,
  40432. bottom: 35/1269
  40433. }
  40434. },
  40435. angledNsfw: {
  40436. height: math.unit(5 + 7/12, "feet"),
  40437. weight: math.unit(2, "tons"),
  40438. name: "Angled (NSFW)",
  40439. image: {
  40440. source: "./media/characters/erdno/angled-nsfw.svg",
  40441. extra: 1185/1139,
  40442. bottom: 36/1221
  40443. }
  40444. },
  40445. sideNsfw: {
  40446. height: math.unit(5 + 7/12, "feet"),
  40447. weight: math.unit(2, "tons"),
  40448. name: "Side (NSFW)",
  40449. image: {
  40450. source: "./media/characters/erdno/side-nsfw.svg",
  40451. extra: 1191/1144,
  40452. bottom: 40/1231
  40453. }
  40454. },
  40455. backNsfw: {
  40456. height: math.unit(5 + 7/12, "feet"),
  40457. weight: math.unit(2, "tons"),
  40458. name: "Back (NSFW)",
  40459. image: {
  40460. source: "./media/characters/erdno/back-nsfw.svg",
  40461. extra: 1202/1146,
  40462. bottom: 17/1219
  40463. }
  40464. },
  40465. frontHyper: {
  40466. height: math.unit(5 + 7/12, "feet"),
  40467. weight: math.unit(2, "tons"),
  40468. name: "Front (Hyper)",
  40469. image: {
  40470. source: "./media/characters/erdno/front-hyper.svg",
  40471. extra: 1298/1136,
  40472. bottom: 35/1333
  40473. }
  40474. },
  40475. },
  40476. [
  40477. {
  40478. name: "Normal",
  40479. height: math.unit(5 + 7/12, "feet"),
  40480. default: true
  40481. },
  40482. {
  40483. name: "Big",
  40484. height: math.unit(5.7, "meters")
  40485. },
  40486. {
  40487. name: "Macro",
  40488. height: math.unit(5.7, "kilometers")
  40489. },
  40490. {
  40491. name: "Megamacro",
  40492. height: math.unit(5.7, "earths")
  40493. },
  40494. ]
  40495. ))
  40496. characterMakers.push(() => makeCharacter(
  40497. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40498. {
  40499. front: {
  40500. height: math.unit(5 + 10/12, "feet"),
  40501. weight: math.unit(150, "lb"),
  40502. name: "Front",
  40503. image: {
  40504. source: "./media/characters/jamie/front.svg",
  40505. extra: 1908/1768,
  40506. bottom: 19/1927
  40507. }
  40508. },
  40509. },
  40510. [
  40511. {
  40512. name: "Minimum",
  40513. height: math.unit(2, "cm")
  40514. },
  40515. {
  40516. name: "Micro",
  40517. height: math.unit(3, "inches")
  40518. },
  40519. {
  40520. name: "Normal",
  40521. height: math.unit(5 + 10/12, "feet"),
  40522. default: true
  40523. },
  40524. {
  40525. name: "Macro",
  40526. height: math.unit(150, "feet")
  40527. },
  40528. {
  40529. name: "Megamacro",
  40530. height: math.unit(10000, "m")
  40531. },
  40532. ]
  40533. ))
  40534. characterMakers.push(() => makeCharacter(
  40535. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40536. {
  40537. front: {
  40538. height: math.unit(2, "meters"),
  40539. weight: math.unit(100, "kg"),
  40540. name: "Front",
  40541. image: {
  40542. source: "./media/characters/shiron/front.svg",
  40543. extra: 2103/1985,
  40544. bottom: 98/2201
  40545. }
  40546. },
  40547. back: {
  40548. height: math.unit(2, "meters"),
  40549. weight: math.unit(100, "kg"),
  40550. name: "Back",
  40551. image: {
  40552. source: "./media/characters/shiron/back.svg",
  40553. extra: 2110/2015,
  40554. bottom: 89/2199
  40555. }
  40556. },
  40557. hand: {
  40558. height: math.unit(0.96, "feet"),
  40559. name: "Hand",
  40560. image: {
  40561. source: "./media/characters/shiron/hand.svg"
  40562. }
  40563. },
  40564. foot: {
  40565. height: math.unit(1.464, "feet"),
  40566. name: "Foot",
  40567. image: {
  40568. source: "./media/characters/shiron/foot.svg"
  40569. }
  40570. },
  40571. },
  40572. [
  40573. {
  40574. name: "Normal",
  40575. height: math.unit(2, "meters")
  40576. },
  40577. {
  40578. name: "Macro",
  40579. height: math.unit(500, "meters"),
  40580. default: true
  40581. },
  40582. {
  40583. name: "Megamacro",
  40584. height: math.unit(20, "km")
  40585. },
  40586. ]
  40587. ))
  40588. characterMakers.push(() => makeCharacter(
  40589. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40590. {
  40591. front: {
  40592. height: math.unit(6, "feet"),
  40593. name: "Front",
  40594. image: {
  40595. source: "./media/characters/sam/front.svg",
  40596. extra: 849/826,
  40597. bottom: 19/868
  40598. }
  40599. },
  40600. },
  40601. [
  40602. {
  40603. name: "Normal",
  40604. height: math.unit(6, "feet"),
  40605. default: true
  40606. },
  40607. ]
  40608. ))
  40609. characterMakers.push(() => makeCharacter(
  40610. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40611. {
  40612. front: {
  40613. height: math.unit(8 + 4/12, "feet"),
  40614. weight: math.unit(122, "kg"),
  40615. name: "Front",
  40616. image: {
  40617. source: "./media/characters/namori-kurogawa/front.svg",
  40618. extra: 1894/1576,
  40619. bottom: 34/1928
  40620. }
  40621. },
  40622. },
  40623. [
  40624. {
  40625. name: "Normal",
  40626. height: math.unit(8 + 4/12, "feet"),
  40627. default: true
  40628. },
  40629. ]
  40630. ))
  40631. characterMakers.push(() => makeCharacter(
  40632. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40633. {
  40634. front: {
  40635. height: math.unit(9, "feet"),
  40636. weight: math.unit(621, "lb"),
  40637. name: "Front",
  40638. image: {
  40639. source: "./media/characters/unmru/front.svg",
  40640. extra: 1853/1747,
  40641. bottom: 73/1926
  40642. }
  40643. },
  40644. side: {
  40645. height: math.unit(9, "feet"),
  40646. weight: math.unit(621, "lb"),
  40647. name: "Side",
  40648. image: {
  40649. source: "./media/characters/unmru/side.svg",
  40650. extra: 1781/1671,
  40651. bottom: 127/1908
  40652. }
  40653. },
  40654. back: {
  40655. height: math.unit(9, "feet"),
  40656. weight: math.unit(621, "lb"),
  40657. name: "Back",
  40658. image: {
  40659. source: "./media/characters/unmru/back.svg",
  40660. extra: 1894/1765,
  40661. bottom: 75/1969
  40662. }
  40663. },
  40664. dick: {
  40665. height: math.unit(3, "feet"),
  40666. weight: math.unit(35, "lb"),
  40667. name: "Dick",
  40668. image: {
  40669. source: "./media/characters/unmru/dick.svg"
  40670. }
  40671. },
  40672. },
  40673. [
  40674. {
  40675. name: "Normal",
  40676. height: math.unit(9, "feet")
  40677. },
  40678. {
  40679. name: "Natural",
  40680. height: math.unit(27, "feet"),
  40681. default: true
  40682. },
  40683. {
  40684. name: "Giant",
  40685. height: math.unit(90, "feet")
  40686. },
  40687. {
  40688. name: "Kaiju",
  40689. height: math.unit(270, "feet")
  40690. },
  40691. {
  40692. name: "Macro",
  40693. height: math.unit(900, "feet")
  40694. },
  40695. {
  40696. name: "Macro+",
  40697. height: math.unit(2700, "feet")
  40698. },
  40699. {
  40700. name: "Megamacro",
  40701. height: math.unit(9000, "feet")
  40702. },
  40703. {
  40704. name: "City-Crushing",
  40705. height: math.unit(27000, "feet")
  40706. },
  40707. {
  40708. name: "Mountain-Mashing",
  40709. height: math.unit(90000, "feet")
  40710. },
  40711. {
  40712. name: "Earth-Eclipsing",
  40713. height: math.unit(2.7e8, "feet")
  40714. },
  40715. {
  40716. name: "Sol-Swallowing",
  40717. height: math.unit(9e10, "feet")
  40718. },
  40719. {
  40720. name: "Majoris-Munching",
  40721. height: math.unit(2.7e13, "feet")
  40722. },
  40723. ]
  40724. ))
  40725. characterMakers.push(() => makeCharacter(
  40726. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40727. {
  40728. front: {
  40729. height: math.unit(1, "inch"),
  40730. name: "Front",
  40731. image: {
  40732. source: "./media/characters/squeaks-mouse/front.svg",
  40733. extra: 352/308,
  40734. bottom: 25/377
  40735. }
  40736. },
  40737. },
  40738. [
  40739. {
  40740. name: "Micro",
  40741. height: math.unit(1, "inch"),
  40742. default: true
  40743. },
  40744. ]
  40745. ))
  40746. characterMakers.push(() => makeCharacter(
  40747. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40748. {
  40749. side: {
  40750. height: math.unit(35, "feet"),
  40751. name: "Side",
  40752. image: {
  40753. source: "./media/characters/sayko/side.svg",
  40754. extra: 1697/1021,
  40755. bottom: 82/1779
  40756. }
  40757. },
  40758. head: {
  40759. height: math.unit(16, "feet"),
  40760. name: "Head",
  40761. image: {
  40762. source: "./media/characters/sayko/head.svg"
  40763. }
  40764. },
  40765. forepaw: {
  40766. height: math.unit(7.85, "feet"),
  40767. name: "Forepaw",
  40768. image: {
  40769. source: "./media/characters/sayko/forepaw.svg"
  40770. }
  40771. },
  40772. hindpaw: {
  40773. height: math.unit(8.8, "feet"),
  40774. name: "Hindpaw",
  40775. image: {
  40776. source: "./media/characters/sayko/hindpaw.svg"
  40777. }
  40778. },
  40779. },
  40780. [
  40781. {
  40782. name: "Normal",
  40783. height: math.unit(35, "feet"),
  40784. default: true
  40785. },
  40786. {
  40787. name: "Colossus",
  40788. height: math.unit(100, "meters")
  40789. },
  40790. {
  40791. name: "\"Small\" Deity",
  40792. height: math.unit(1, "km")
  40793. },
  40794. {
  40795. name: "\"Large\" Deity",
  40796. height: math.unit(15, "km")
  40797. },
  40798. ]
  40799. ))
  40800. characterMakers.push(() => makeCharacter(
  40801. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40802. {
  40803. front: {
  40804. height: math.unit(6, "feet"),
  40805. weight: math.unit(250, "lb"),
  40806. name: "Front",
  40807. image: {
  40808. source: "./media/characters/mukiro/front.svg",
  40809. extra: 1368/1310,
  40810. bottom: 34/1402
  40811. }
  40812. },
  40813. },
  40814. [
  40815. {
  40816. name: "Normal",
  40817. height: math.unit(6, "feet"),
  40818. default: true
  40819. },
  40820. ]
  40821. ))
  40822. characterMakers.push(() => makeCharacter(
  40823. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40824. {
  40825. front: {
  40826. height: math.unit(12 + 4/12, "feet"),
  40827. name: "Front",
  40828. image: {
  40829. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40830. extra: 1346/1311,
  40831. bottom: 65/1411
  40832. }
  40833. },
  40834. },
  40835. [
  40836. {
  40837. name: "Base",
  40838. height: math.unit(12 + 4/12, "feet"),
  40839. default: true
  40840. },
  40841. {
  40842. name: "Macro",
  40843. height: math.unit(150, "feet")
  40844. },
  40845. {
  40846. name: "Mega",
  40847. height: math.unit(2, "miles")
  40848. },
  40849. {
  40850. name: "Demi God",
  40851. height: math.unit(4, "AU")
  40852. },
  40853. {
  40854. name: "God Size",
  40855. height: math.unit(1, "universe")
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40861. {
  40862. front: {
  40863. height: math.unit(3 + 3/12, "feet"),
  40864. weight: math.unit(88, "lb"),
  40865. name: "Front",
  40866. image: {
  40867. source: "./media/characters/trey/front.svg",
  40868. extra: 1815/1509,
  40869. bottom: 60/1875
  40870. }
  40871. },
  40872. },
  40873. [
  40874. {
  40875. name: "Normal",
  40876. height: math.unit(3 + 3/12, "feet"),
  40877. default: true
  40878. },
  40879. ]
  40880. ))
  40881. characterMakers.push(() => makeCharacter(
  40882. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40883. {
  40884. front: {
  40885. height: math.unit(4, "meters"),
  40886. name: "Front",
  40887. image: {
  40888. source: "./media/characters/adelonda/front.svg",
  40889. extra: 1077/982,
  40890. bottom: 39/1116
  40891. }
  40892. },
  40893. back: {
  40894. height: math.unit(4, "meters"),
  40895. name: "Back",
  40896. image: {
  40897. source: "./media/characters/adelonda/back.svg",
  40898. extra: 1105/1003,
  40899. bottom: 25/1130
  40900. }
  40901. },
  40902. feral: {
  40903. height: math.unit(40/1.5, "meters"),
  40904. name: "Feral",
  40905. image: {
  40906. source: "./media/characters/adelonda/feral.svg",
  40907. extra: 597/271,
  40908. bottom: 387/984
  40909. }
  40910. },
  40911. },
  40912. [
  40913. {
  40914. name: "Normal",
  40915. height: math.unit(4, "meters"),
  40916. default: true
  40917. },
  40918. ]
  40919. ))
  40920. characterMakers.push(() => makeCharacter(
  40921. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40922. {
  40923. front: {
  40924. height: math.unit(8 + 4/12, "feet"),
  40925. weight: math.unit(670, "lb"),
  40926. name: "Front",
  40927. image: {
  40928. source: "./media/characters/acadiel/front.svg",
  40929. extra: 1901/1595,
  40930. bottom: 142/2043
  40931. }
  40932. },
  40933. },
  40934. [
  40935. {
  40936. name: "Normal",
  40937. height: math.unit(8 + 4/12, "feet"),
  40938. default: true
  40939. },
  40940. {
  40941. name: "Macro",
  40942. height: math.unit(200, "feet")
  40943. },
  40944. ]
  40945. ))
  40946. characterMakers.push(() => makeCharacter(
  40947. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40948. {
  40949. front: {
  40950. height: math.unit(6 + 2/12, "feet"),
  40951. weight: math.unit(185, "lb"),
  40952. name: "Front",
  40953. image: {
  40954. source: "./media/characters/kayne-ein/front.svg",
  40955. extra: 1780/1560,
  40956. bottom: 81/1861
  40957. }
  40958. },
  40959. },
  40960. [
  40961. {
  40962. name: "Normal",
  40963. height: math.unit(6 + 2/12, "feet"),
  40964. default: true
  40965. },
  40966. {
  40967. name: "Transformation Stage",
  40968. height: math.unit(15, "feet")
  40969. },
  40970. {
  40971. name: "Macro",
  40972. height: math.unit(150, "feet")
  40973. },
  40974. {
  40975. name: "Earth's Shadow",
  40976. height: math.unit(6200, "miles")
  40977. },
  40978. {
  40979. name: "Universal Demon",
  40980. height: math.unit(28e9, "parsecs")
  40981. },
  40982. {
  40983. name: "Multiverse God",
  40984. height: math.unit(3, "multiverses")
  40985. },
  40986. ]
  40987. ))
  40988. characterMakers.push(() => makeCharacter(
  40989. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40990. {
  40991. front: {
  40992. height: math.unit(5 + 5/12, "feet"),
  40993. name: "Front",
  40994. image: {
  40995. source: "./media/characters/fawn/front.svg",
  40996. extra: 1873/1731,
  40997. bottom: 95/1968
  40998. }
  40999. },
  41000. back: {
  41001. height: math.unit(5 + 5/12, "feet"),
  41002. name: "Back",
  41003. image: {
  41004. source: "./media/characters/fawn/back.svg",
  41005. extra: 1813/1700,
  41006. bottom: 14/1827
  41007. }
  41008. },
  41009. hoof: {
  41010. height: math.unit(1.45, "feet"),
  41011. name: "Hoof",
  41012. image: {
  41013. source: "./media/characters/fawn/hoof.svg"
  41014. }
  41015. },
  41016. },
  41017. [
  41018. {
  41019. name: "Normal",
  41020. height: math.unit(5 + 5/12, "feet"),
  41021. default: true
  41022. },
  41023. ]
  41024. ))
  41025. characterMakers.push(() => makeCharacter(
  41026. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41027. {
  41028. front: {
  41029. height: math.unit(2 + 5/12, "feet"),
  41030. name: "Front",
  41031. image: {
  41032. source: "./media/characters/orion/front.svg",
  41033. extra: 1366/1304,
  41034. bottom: 43/1409
  41035. }
  41036. },
  41037. paw: {
  41038. height: math.unit(0.52, "feet"),
  41039. name: "Paw",
  41040. image: {
  41041. source: "./media/characters/orion/paw.svg"
  41042. }
  41043. },
  41044. },
  41045. [
  41046. {
  41047. name: "Normal",
  41048. height: math.unit(2 + 5/12, "feet"),
  41049. default: true
  41050. },
  41051. ]
  41052. ))
  41053. characterMakers.push(() => makeCharacter(
  41054. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41055. {
  41056. front: {
  41057. height: math.unit(5 + 10/12, "feet"),
  41058. name: "Front",
  41059. image: {
  41060. source: "./media/characters/vera/front.svg",
  41061. extra: 1680/1575,
  41062. bottom: 49/1729
  41063. }
  41064. },
  41065. back: {
  41066. height: math.unit(5 + 10/12, "feet"),
  41067. name: "Back",
  41068. image: {
  41069. source: "./media/characters/vera/back.svg",
  41070. extra: 1700/1588,
  41071. bottom: 18/1718
  41072. }
  41073. },
  41074. arcanine: {
  41075. height: math.unit(6 + 8/12, "feet"),
  41076. name: "Arcanine",
  41077. image: {
  41078. source: "./media/characters/vera/arcanine.svg",
  41079. extra: 1590/1511,
  41080. bottom: 71/1661
  41081. }
  41082. },
  41083. maw: {
  41084. height: math.unit(0.82, "feet"),
  41085. name: "Maw",
  41086. image: {
  41087. source: "./media/characters/vera/maw.svg"
  41088. }
  41089. },
  41090. mawArcanine: {
  41091. height: math.unit(0.97, "feet"),
  41092. name: "Maw (Arcanine)",
  41093. image: {
  41094. source: "./media/characters/vera/maw-arcanine.svg"
  41095. }
  41096. },
  41097. paw: {
  41098. height: math.unit(0.75, "feet"),
  41099. name: "Paw",
  41100. image: {
  41101. source: "./media/characters/vera/paw.svg"
  41102. }
  41103. },
  41104. pawprint: {
  41105. height: math.unit(0.52, "feet"),
  41106. name: "Pawprint",
  41107. image: {
  41108. source: "./media/characters/vera/pawprint.svg"
  41109. }
  41110. },
  41111. },
  41112. [
  41113. {
  41114. name: "Normal",
  41115. height: math.unit(5 + 10/12, "feet"),
  41116. default: true
  41117. },
  41118. {
  41119. name: "Macro",
  41120. height: math.unit(75, "feet")
  41121. },
  41122. ]
  41123. ))
  41124. characterMakers.push(() => makeCharacter(
  41125. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41126. {
  41127. front: {
  41128. height: math.unit(4, "feet"),
  41129. weight: math.unit(40, "lb"),
  41130. name: "Front",
  41131. image: {
  41132. source: "./media/characters/orvan-rabbit/front.svg",
  41133. extra: 1896/1642,
  41134. bottom: 29/1925
  41135. }
  41136. },
  41137. },
  41138. [
  41139. {
  41140. name: "Normal",
  41141. height: math.unit(4, "feet"),
  41142. default: true
  41143. },
  41144. ]
  41145. ))
  41146. characterMakers.push(() => makeCharacter(
  41147. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41148. {
  41149. front: {
  41150. height: math.unit(6, "feet"),
  41151. weight: math.unit(168, "lb"),
  41152. name: "Front",
  41153. image: {
  41154. source: "./media/characters/lisa/front.svg",
  41155. extra: 2065/1867,
  41156. bottom: 46/2111
  41157. }
  41158. },
  41159. back: {
  41160. height: math.unit(6, "feet"),
  41161. weight: math.unit(168, "lb"),
  41162. name: "Back",
  41163. image: {
  41164. source: "./media/characters/lisa/back.svg",
  41165. extra: 1982/1838,
  41166. bottom: 29/2011
  41167. }
  41168. },
  41169. maw: {
  41170. height: math.unit(0.81, "feet"),
  41171. name: "Maw",
  41172. image: {
  41173. source: "./media/characters/lisa/maw.svg"
  41174. }
  41175. },
  41176. paw: {
  41177. height: math.unit(0.9, "feet"),
  41178. name: "Paw",
  41179. image: {
  41180. source: "./media/characters/lisa/paw.svg"
  41181. }
  41182. },
  41183. caribousune: {
  41184. height: math.unit(7 + 2/12, "feet"),
  41185. weight: math.unit(268, "lb"),
  41186. name: "Caribousune",
  41187. image: {
  41188. source: "./media/characters/lisa/caribousune.svg",
  41189. extra: 1843/1633,
  41190. bottom: 29/1872
  41191. }
  41192. },
  41193. frontCaribousune: {
  41194. height: math.unit(7 + 2/12, "feet"),
  41195. weight: math.unit(268, "lb"),
  41196. name: "Front (Caribousune)",
  41197. image: {
  41198. source: "./media/characters/lisa/front-caribousune.svg",
  41199. extra: 1818/1638,
  41200. bottom: 52/1870
  41201. }
  41202. },
  41203. sideCaribousune: {
  41204. height: math.unit(7 + 2/12, "feet"),
  41205. weight: math.unit(268, "lb"),
  41206. name: "Side (Caribousune)",
  41207. image: {
  41208. source: "./media/characters/lisa/side-caribousune.svg",
  41209. extra: 1851/1635,
  41210. bottom: 16/1867
  41211. }
  41212. },
  41213. backCaribousune: {
  41214. height: math.unit(7 + 2/12, "feet"),
  41215. weight: math.unit(268, "lb"),
  41216. name: "Back (Caribousune)",
  41217. image: {
  41218. source: "./media/characters/lisa/back-caribousune.svg",
  41219. extra: 1801/1604,
  41220. bottom: 44/1845
  41221. }
  41222. },
  41223. caribou: {
  41224. height: math.unit(7 + 2/12, "feet"),
  41225. weight: math.unit(268, "lb"),
  41226. name: "Caribou",
  41227. image: {
  41228. source: "./media/characters/lisa/caribou.svg",
  41229. extra: 1843/1633,
  41230. bottom: 29/1872
  41231. }
  41232. },
  41233. frontCaribou: {
  41234. height: math.unit(7 + 2/12, "feet"),
  41235. weight: math.unit(268, "lb"),
  41236. name: "Front (Caribou)",
  41237. image: {
  41238. source: "./media/characters/lisa/front-caribou.svg",
  41239. extra: 1818/1638,
  41240. bottom: 52/1870
  41241. }
  41242. },
  41243. sideCaribou: {
  41244. height: math.unit(7 + 2/12, "feet"),
  41245. weight: math.unit(268, "lb"),
  41246. name: "Side (Caribou)",
  41247. image: {
  41248. source: "./media/characters/lisa/side-caribou.svg",
  41249. extra: 1851/1635,
  41250. bottom: 16/1867
  41251. }
  41252. },
  41253. backCaribou: {
  41254. height: math.unit(7 + 2/12, "feet"),
  41255. weight: math.unit(268, "lb"),
  41256. name: "Back (Caribou)",
  41257. image: {
  41258. source: "./media/characters/lisa/back-caribou.svg",
  41259. extra: 1801/1604,
  41260. bottom: 44/1845
  41261. }
  41262. },
  41263. mawCaribou: {
  41264. height: math.unit(1.45, "feet"),
  41265. name: "Maw (Caribou)",
  41266. image: {
  41267. source: "./media/characters/lisa/maw-caribou.svg"
  41268. }
  41269. },
  41270. mawCaribousune: {
  41271. height: math.unit(1.45, "feet"),
  41272. name: "Maw (Caribousune)",
  41273. image: {
  41274. source: "./media/characters/lisa/maw-caribousune.svg"
  41275. }
  41276. },
  41277. pawCaribousune: {
  41278. height: math.unit(1.61, "feet"),
  41279. name: "Paw (Caribou)",
  41280. image: {
  41281. source: "./media/characters/lisa/paw-caribousune.svg"
  41282. }
  41283. },
  41284. },
  41285. [
  41286. {
  41287. name: "Normal",
  41288. height: math.unit(6, "feet")
  41289. },
  41290. {
  41291. name: "God Size",
  41292. height: math.unit(72, "feet"),
  41293. default: true
  41294. },
  41295. {
  41296. name: "Towering",
  41297. height: math.unit(288, "feet")
  41298. },
  41299. {
  41300. name: "City Size",
  41301. height: math.unit(48384, "feet")
  41302. },
  41303. {
  41304. name: "Continental",
  41305. height: math.unit(4200, "miles")
  41306. },
  41307. {
  41308. name: "Planet Eater",
  41309. height: math.unit(42, "earths")
  41310. },
  41311. {
  41312. name: "Star Swallower",
  41313. height: math.unit(42, "solarradii")
  41314. },
  41315. {
  41316. name: "System Swallower",
  41317. height: math.unit(84000, "AU")
  41318. },
  41319. {
  41320. name: "Galaxy Gobbler",
  41321. height: math.unit(42, "galaxies")
  41322. },
  41323. {
  41324. name: "Universe Devourer",
  41325. height: math.unit(42, "universes")
  41326. },
  41327. {
  41328. name: "Multiverse Muncher",
  41329. height: math.unit(42, "multiverses")
  41330. },
  41331. ]
  41332. ))
  41333. characterMakers.push(() => makeCharacter(
  41334. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41335. {
  41336. front: {
  41337. height: math.unit(36, "feet"),
  41338. name: "Front",
  41339. image: {
  41340. source: "./media/characters/shadow-rat/front.svg",
  41341. extra: 1845/1758,
  41342. bottom: 83/1928
  41343. }
  41344. },
  41345. },
  41346. [
  41347. {
  41348. name: "Macro",
  41349. height: math.unit(36, "feet"),
  41350. default: true
  41351. },
  41352. ]
  41353. ))
  41354. characterMakers.push(() => makeCharacter(
  41355. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41356. {
  41357. side: {
  41358. height: math.unit(8, "feet"),
  41359. weight: math.unit(2630, "lb"),
  41360. name: "Side",
  41361. image: {
  41362. source: "./media/characters/torallia/side.svg",
  41363. extra: 2164/2021,
  41364. bottom: 371/2535
  41365. }
  41366. },
  41367. },
  41368. [
  41369. {
  41370. name: "Mortal Interaction",
  41371. height: math.unit(8, "feet")
  41372. },
  41373. {
  41374. name: "Natural",
  41375. height: math.unit(24, "feet"),
  41376. default: true
  41377. },
  41378. {
  41379. name: "Giant",
  41380. height: math.unit(80, "feet")
  41381. },
  41382. {
  41383. name: "Kaiju",
  41384. height: math.unit(240, "feet")
  41385. },
  41386. {
  41387. name: "Macro",
  41388. height: math.unit(800, "feet")
  41389. },
  41390. {
  41391. name: "Macro+",
  41392. height: math.unit(2400, "feet")
  41393. },
  41394. {
  41395. name: "Macro++",
  41396. height: math.unit(8000, "feet")
  41397. },
  41398. {
  41399. name: "City-Crushing",
  41400. height: math.unit(24000, "feet")
  41401. },
  41402. {
  41403. name: "Mountain-Mashing",
  41404. height: math.unit(80000, "feet")
  41405. },
  41406. {
  41407. name: "District Demolisher",
  41408. height: math.unit(240000, "feet")
  41409. },
  41410. {
  41411. name: "Tri-County Terror",
  41412. height: math.unit(800000, "feet")
  41413. },
  41414. {
  41415. name: "State Smasher",
  41416. height: math.unit(2.4e6, "feet")
  41417. },
  41418. {
  41419. name: "Nation Nemesis",
  41420. height: math.unit(8e6, "feet")
  41421. },
  41422. {
  41423. name: "Continent Cracker",
  41424. height: math.unit(2.4e7, "feet")
  41425. },
  41426. {
  41427. name: "Planet-Pillaging",
  41428. height: math.unit(8e7, "feet")
  41429. },
  41430. {
  41431. name: "Earth-Eclipsing",
  41432. height: math.unit(2.4e8, "feet")
  41433. },
  41434. {
  41435. name: "Jovian-Jostling",
  41436. height: math.unit(8e8, "feet")
  41437. },
  41438. {
  41439. name: "Gas Giant Gulper",
  41440. height: math.unit(2.4e9, "feet")
  41441. },
  41442. {
  41443. name: "Astral Annihilator",
  41444. height: math.unit(8e9, "feet")
  41445. },
  41446. {
  41447. name: "Celestial Conqueror",
  41448. height: math.unit(2.4e10, "feet")
  41449. },
  41450. {
  41451. name: "Sol-Swallowing",
  41452. height: math.unit(8e10, "feet")
  41453. },
  41454. {
  41455. name: "Hunter of the Heavens",
  41456. height: math.unit(2.4e13, "feet")
  41457. },
  41458. ]
  41459. ))
  41460. characterMakers.push(() => makeCharacter(
  41461. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41462. {
  41463. front: {
  41464. height: math.unit(10, "feet"),
  41465. weight: math.unit(844, "kilograms"),
  41466. name: "Front",
  41467. image: {
  41468. source: "./media/characters/rebecca-pawlson/front.svg",
  41469. extra: 1196/1099,
  41470. bottom: 81/1277
  41471. },
  41472. extraAttributes: {
  41473. "pawSize": {
  41474. name: "Paw Size",
  41475. power: 2,
  41476. type: "area",
  41477. base: math.unit(0.2 * 0.375, "meters^2")
  41478. },
  41479. "handSize": {
  41480. name: "Hand Size",
  41481. power: 2,
  41482. type: "area",
  41483. base: math.unit(0.2 * 0.35, "meters^2")
  41484. },
  41485. "breastDiameter": {
  41486. name: "Breast Diameter",
  41487. power: 1,
  41488. type: "length",
  41489. base: math.unit(0.5, "meters")
  41490. },
  41491. "breastVolume": {
  41492. name: "Breast Volume",
  41493. power: 3,
  41494. type: "volume",
  41495. base: math.unit(0.065, "m^3")
  41496. },
  41497. "breastMass": {
  41498. name: "Breast Mass",
  41499. power: 3,
  41500. type: "mass",
  41501. base: math.unit(65, "kg")
  41502. },
  41503. "nippleDiameter": {
  41504. name: "Nipple Diameter",
  41505. power: 1,
  41506. type: "length",
  41507. base: math.unit(0.1, "meters")
  41508. },
  41509. }
  41510. },
  41511. back: {
  41512. height: math.unit(10, "feet"),
  41513. weight: math.unit(844, "kilograms"),
  41514. name: "Back",
  41515. image: {
  41516. source: "./media/characters/rebecca-pawlson/back.svg",
  41517. extra: 879/776,
  41518. bottom: 43/922
  41519. },
  41520. extraAttributes: {
  41521. "pawSize": {
  41522. name: "Paw Size",
  41523. power: 2,
  41524. type: "area",
  41525. base: math.unit(0.2 * 0.375, "meters^2")
  41526. },
  41527. "handSize": {
  41528. name: "Hand Size",
  41529. power: 2,
  41530. type: "area",
  41531. base: math.unit(0.2 * 0.35, "meters^2")
  41532. },
  41533. "breastDiameter": {
  41534. name: "Breast Diameter",
  41535. power: 1,
  41536. type: "length",
  41537. base: math.unit(0.5, "meters")
  41538. },
  41539. "breastVolume": {
  41540. name: "Breast Volume",
  41541. power: 3,
  41542. type: "volume",
  41543. base: math.unit(0.065, "m^3")
  41544. },
  41545. "breastMass": {
  41546. name: "Breast Mass",
  41547. power: 3,
  41548. type: "mass",
  41549. base: math.unit(65, "kg")
  41550. },
  41551. "nippleDiameter": {
  41552. name: "Nipple Diameter",
  41553. power: 1,
  41554. type: "length",
  41555. base: math.unit(0.1, "meters")
  41556. },
  41557. }
  41558. },
  41559. },
  41560. [
  41561. {
  41562. name: "Normal",
  41563. height: math.unit(6 + 8/12, "feet")
  41564. },
  41565. {
  41566. name: "Mini Macro",
  41567. height: math.unit(10, "feet"),
  41568. default: true
  41569. },
  41570. {
  41571. name: "Macro",
  41572. height: math.unit(100, "feet")
  41573. },
  41574. {
  41575. name: "Mega Macro",
  41576. height: math.unit(2500, "feet")
  41577. },
  41578. {
  41579. name: "Giga Macro",
  41580. height: math.unit(50, "miles")
  41581. },
  41582. ]
  41583. ))
  41584. characterMakers.push(() => makeCharacter(
  41585. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41586. {
  41587. front: {
  41588. height: math.unit(7 + 6/12, "feet"),
  41589. weight: math.unit(600, "lb"),
  41590. name: "Front",
  41591. image: {
  41592. source: "./media/characters/moxie-nova/front.svg",
  41593. extra: 1734/1652,
  41594. bottom: 41/1775
  41595. }
  41596. },
  41597. },
  41598. [
  41599. {
  41600. name: "Normal",
  41601. height: math.unit(7 + 6/12, "feet"),
  41602. default: true
  41603. },
  41604. ]
  41605. ))
  41606. characterMakers.push(() => makeCharacter(
  41607. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41608. {
  41609. goat: {
  41610. height: math.unit(4, "feet"),
  41611. weight: math.unit(180, "lb"),
  41612. name: "Goat",
  41613. image: {
  41614. source: "./media/characters/tiffany/goat.svg",
  41615. extra: 1845/1595,
  41616. bottom: 106/1951
  41617. }
  41618. },
  41619. front: {
  41620. height: math.unit(5, "feet"),
  41621. weight: math.unit(150, "lb"),
  41622. name: "Foxcoon",
  41623. image: {
  41624. source: "./media/characters/tiffany/foxcoon.svg",
  41625. extra: 1941/1845,
  41626. bottom: 58/1999
  41627. }
  41628. },
  41629. },
  41630. [
  41631. {
  41632. name: "Normal",
  41633. height: math.unit(5, "feet"),
  41634. default: true
  41635. },
  41636. ]
  41637. ))
  41638. characterMakers.push(() => makeCharacter(
  41639. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41640. {
  41641. front: {
  41642. height: math.unit(8, "feet"),
  41643. weight: math.unit(300, "lb"),
  41644. name: "Front",
  41645. image: {
  41646. source: "./media/characters/raxinath/front.svg",
  41647. extra: 1407/1309,
  41648. bottom: 39/1446
  41649. }
  41650. },
  41651. back: {
  41652. height: math.unit(8, "feet"),
  41653. weight: math.unit(300, "lb"),
  41654. name: "Back",
  41655. image: {
  41656. source: "./media/characters/raxinath/back.svg",
  41657. extra: 1405/1315,
  41658. bottom: 9/1414
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Speck",
  41665. height: math.unit(0.5, "nm")
  41666. },
  41667. {
  41668. name: "Micro",
  41669. height: math.unit(3, "inches")
  41670. },
  41671. {
  41672. name: "Kobold",
  41673. height: math.unit(3, "feet")
  41674. },
  41675. {
  41676. name: "Normal",
  41677. height: math.unit(8, "feet"),
  41678. default: true
  41679. },
  41680. {
  41681. name: "Giant",
  41682. height: math.unit(50, "feet")
  41683. },
  41684. {
  41685. name: "Macro",
  41686. height: math.unit(1000, "feet")
  41687. },
  41688. {
  41689. name: "Megamacro",
  41690. height: math.unit(1, "mile")
  41691. },
  41692. ]
  41693. ))
  41694. characterMakers.push(() => makeCharacter(
  41695. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41696. {
  41697. front: {
  41698. height: math.unit(10, "feet"),
  41699. weight: math.unit(1442, "lb"),
  41700. name: "Front",
  41701. image: {
  41702. source: "./media/characters/mal-dragon/front.svg",
  41703. extra: 1515/1444,
  41704. bottom: 113/1628
  41705. }
  41706. },
  41707. back: {
  41708. height: math.unit(10, "feet"),
  41709. weight: math.unit(1442, "lb"),
  41710. name: "Back",
  41711. image: {
  41712. source: "./media/characters/mal-dragon/back.svg",
  41713. extra: 1527/1434,
  41714. bottom: 25/1552
  41715. }
  41716. },
  41717. },
  41718. [
  41719. {
  41720. name: "Mortal Interaction",
  41721. height: math.unit(10, "feet"),
  41722. default: true
  41723. },
  41724. {
  41725. name: "Large",
  41726. height: math.unit(30, "feet")
  41727. },
  41728. {
  41729. name: "Kaiju",
  41730. height: math.unit(300, "feet")
  41731. },
  41732. {
  41733. name: "Megamacro",
  41734. height: math.unit(10000, "feet")
  41735. },
  41736. {
  41737. name: "Continent Cracker",
  41738. height: math.unit(30000000, "feet")
  41739. },
  41740. {
  41741. name: "Sol-Swallowing",
  41742. height: math.unit(1e11, "feet")
  41743. },
  41744. {
  41745. name: "Light Universal",
  41746. height: math.unit(5, "universes")
  41747. },
  41748. {
  41749. name: "Universe Atoms",
  41750. height: math.unit(1.829e9, "universes")
  41751. },
  41752. {
  41753. name: "Light Multiversal",
  41754. height: math.unit(5, "multiverses")
  41755. },
  41756. {
  41757. name: "Multiverse Atoms",
  41758. height: math.unit(1.829e9, "multiverses")
  41759. },
  41760. {
  41761. name: "Fabric of Time",
  41762. height: math.unit(1e262, "multiverses")
  41763. },
  41764. ]
  41765. ))
  41766. characterMakers.push(() => makeCharacter(
  41767. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41768. {
  41769. front: {
  41770. height: math.unit(9, "feet"),
  41771. weight: math.unit(1050, "lb"),
  41772. name: "Front",
  41773. image: {
  41774. source: "./media/characters/tabitha/front.svg",
  41775. extra: 2083/1994,
  41776. bottom: 68/2151
  41777. }
  41778. },
  41779. },
  41780. [
  41781. {
  41782. name: "Baseline",
  41783. height: math.unit(9, "feet"),
  41784. default: true
  41785. },
  41786. {
  41787. name: "Giant",
  41788. height: math.unit(90, "feet")
  41789. },
  41790. {
  41791. name: "Macro",
  41792. height: math.unit(900, "feet")
  41793. },
  41794. {
  41795. name: "Megamacro",
  41796. height: math.unit(9000, "feet")
  41797. },
  41798. {
  41799. name: "City-Crushing",
  41800. height: math.unit(27000, "feet")
  41801. },
  41802. {
  41803. name: "Mountain-Mashing",
  41804. height: math.unit(90000, "feet")
  41805. },
  41806. {
  41807. name: "Nation Nemesis",
  41808. height: math.unit(9e6, "feet")
  41809. },
  41810. {
  41811. name: "Continent Cracker",
  41812. height: math.unit(27e6, "feet")
  41813. },
  41814. {
  41815. name: "Earth-Eclipsing",
  41816. height: math.unit(2.7e8, "feet")
  41817. },
  41818. {
  41819. name: "Gas Giant Gulper",
  41820. height: math.unit(2.7e9, "feet")
  41821. },
  41822. {
  41823. name: "Sol-Swallowing",
  41824. height: math.unit(9e10, "feet")
  41825. },
  41826. {
  41827. name: "Galaxy Gulper",
  41828. height: math.unit(9, "galaxies")
  41829. },
  41830. {
  41831. name: "Cosmos Churner",
  41832. height: math.unit(9, "universes")
  41833. },
  41834. ]
  41835. ))
  41836. characterMakers.push(() => makeCharacter(
  41837. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41838. {
  41839. front: {
  41840. height: math.unit(160, "cm"),
  41841. weight: math.unit(55, "kg"),
  41842. name: "Front",
  41843. image: {
  41844. source: "./media/characters/tow/front.svg",
  41845. extra: 1751/1722,
  41846. bottom: 74/1825
  41847. }
  41848. },
  41849. },
  41850. [
  41851. {
  41852. name: "Norm",
  41853. height: math.unit(160, "cm")
  41854. },
  41855. {
  41856. name: "Casual",
  41857. height: math.unit(3200, "m"),
  41858. default: true
  41859. },
  41860. {
  41861. name: "Show-Off",
  41862. height: math.unit(160, "km")
  41863. },
  41864. ]
  41865. ))
  41866. characterMakers.push(() => makeCharacter(
  41867. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41868. {
  41869. front: {
  41870. height: math.unit(7 + 11/12, "feet"),
  41871. weight: math.unit(342.8, "lb"),
  41872. name: "Front",
  41873. image: {
  41874. source: "./media/characters/vivian-orca-dragon/front.svg",
  41875. extra: 1890/1865,
  41876. bottom: 28/1918
  41877. }
  41878. },
  41879. },
  41880. [
  41881. {
  41882. name: "Micro",
  41883. height: math.unit(5, "inches")
  41884. },
  41885. {
  41886. name: "Normal",
  41887. height: math.unit(7 + 11/12, "feet"),
  41888. default: true
  41889. },
  41890. {
  41891. name: "Macro",
  41892. height: math.unit(395 + 7/12, "feet")
  41893. },
  41894. ]
  41895. ))
  41896. characterMakers.push(() => makeCharacter(
  41897. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41898. {
  41899. side: {
  41900. height: math.unit(10, "feet"),
  41901. weight: math.unit(1442, "lb"),
  41902. name: "Side",
  41903. image: {
  41904. source: "./media/characters/lotherakon/side.svg",
  41905. extra: 1604/1497,
  41906. bottom: 89/1693
  41907. }
  41908. },
  41909. },
  41910. [
  41911. {
  41912. name: "Mortal Interaction",
  41913. height: math.unit(10, "feet")
  41914. },
  41915. {
  41916. name: "Large",
  41917. height: math.unit(30, "feet"),
  41918. default: true
  41919. },
  41920. {
  41921. name: "Giant",
  41922. height: math.unit(100, "feet")
  41923. },
  41924. {
  41925. name: "Kaiju",
  41926. height: math.unit(300, "feet")
  41927. },
  41928. {
  41929. name: "Macro",
  41930. height: math.unit(1000, "feet")
  41931. },
  41932. {
  41933. name: "Macro+",
  41934. height: math.unit(3000, "feet")
  41935. },
  41936. {
  41937. name: "Megamacro",
  41938. height: math.unit(10000, "feet")
  41939. },
  41940. {
  41941. name: "City-Crushing",
  41942. height: math.unit(30000, "feet")
  41943. },
  41944. {
  41945. name: "Continent Cracker",
  41946. height: math.unit(30e6, "feet")
  41947. },
  41948. {
  41949. name: "Earth Eclipsing",
  41950. height: math.unit(3e8, "feet")
  41951. },
  41952. {
  41953. name: "Gas Giant Gulper",
  41954. height: math.unit(3e9, "feet")
  41955. },
  41956. {
  41957. name: "Sol-Swallowing",
  41958. height: math.unit(1e11, "feet")
  41959. },
  41960. {
  41961. name: "System Swallower",
  41962. height: math.unit(3e14, "feet")
  41963. },
  41964. {
  41965. name: "Galaxy Gulper",
  41966. height: math.unit(10, "galaxies")
  41967. },
  41968. {
  41969. name: "Light Universal",
  41970. height: math.unit(5, "universes")
  41971. },
  41972. {
  41973. name: "Universe Palm",
  41974. height: math.unit(20, "universes")
  41975. },
  41976. {
  41977. name: "Light Multiversal",
  41978. height: math.unit(5, "multiverses")
  41979. },
  41980. {
  41981. name: "Multiverse Palm",
  41982. height: math.unit(20, "multiverses")
  41983. },
  41984. {
  41985. name: "Inferno Incarnate",
  41986. height: math.unit(1e7, "multiverses")
  41987. },
  41988. ]
  41989. ))
  41990. characterMakers.push(() => makeCharacter(
  41991. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41992. {
  41993. front: {
  41994. height: math.unit(8, "feet"),
  41995. weight: math.unit(1200, "lb"),
  41996. name: "Front",
  41997. image: {
  41998. source: "./media/characters/malithee/front.svg",
  41999. extra: 1675/1640,
  42000. bottom: 162/1837
  42001. }
  42002. },
  42003. },
  42004. [
  42005. {
  42006. name: "Mortal Interaction",
  42007. height: math.unit(8, "feet"),
  42008. default: true
  42009. },
  42010. {
  42011. name: "Large",
  42012. height: math.unit(24, "feet")
  42013. },
  42014. {
  42015. name: "Kaiju",
  42016. height: math.unit(240, "feet")
  42017. },
  42018. {
  42019. name: "Megamacro",
  42020. height: math.unit(8000, "feet")
  42021. },
  42022. {
  42023. name: "Continent Cracker",
  42024. height: math.unit(24e6, "feet")
  42025. },
  42026. {
  42027. name: "Earth-Eclipsing",
  42028. height: math.unit(2.4e8, "feet")
  42029. },
  42030. {
  42031. name: "Sol-Swallowing",
  42032. height: math.unit(8e10, "feet")
  42033. },
  42034. {
  42035. name: "Galaxy Gulper",
  42036. height: math.unit(8, "galaxies")
  42037. },
  42038. {
  42039. name: "Light Universal",
  42040. height: math.unit(4, "universes")
  42041. },
  42042. {
  42043. name: "Universe Atoms",
  42044. height: math.unit(1.829e9, "universes")
  42045. },
  42046. {
  42047. name: "Light Multiversal",
  42048. height: math.unit(4, "multiverses")
  42049. },
  42050. {
  42051. name: "Multiverse Atoms",
  42052. height: math.unit(1.829e9, "multiverses")
  42053. },
  42054. {
  42055. name: "Nigh-Omnipresence",
  42056. height: math.unit(8e261, "multiverses")
  42057. },
  42058. ]
  42059. ))
  42060. characterMakers.push(() => makeCharacter(
  42061. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42062. {
  42063. front: {
  42064. height: math.unit(10, "feet"),
  42065. weight: math.unit(1500, "lb"),
  42066. name: "Front",
  42067. image: {
  42068. source: "./media/characters/miles-thestia/front.svg",
  42069. extra: 1812/1727,
  42070. bottom: 86/1898
  42071. }
  42072. },
  42073. back: {
  42074. height: math.unit(10, "feet"),
  42075. weight: math.unit(1500, "lb"),
  42076. name: "Back",
  42077. image: {
  42078. source: "./media/characters/miles-thestia/back.svg",
  42079. extra: 1799/1690,
  42080. bottom: 47/1846
  42081. }
  42082. },
  42083. frontNsfw: {
  42084. height: math.unit(10, "feet"),
  42085. weight: math.unit(1500, "lb"),
  42086. name: "Front (NSFW)",
  42087. image: {
  42088. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42089. extra: 1812/1727,
  42090. bottom: 86/1898
  42091. }
  42092. },
  42093. },
  42094. [
  42095. {
  42096. name: "Mini-Macro",
  42097. height: math.unit(10, "feet"),
  42098. default: true
  42099. },
  42100. ]
  42101. ))
  42102. characterMakers.push(() => makeCharacter(
  42103. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42104. {
  42105. front: {
  42106. height: math.unit(25, "feet"),
  42107. name: "Front",
  42108. image: {
  42109. source: "./media/characters/titan-s-wulf/front.svg",
  42110. extra: 1560/1484,
  42111. bottom: 76/1636
  42112. }
  42113. },
  42114. },
  42115. [
  42116. {
  42117. name: "Smallest",
  42118. height: math.unit(25, "feet"),
  42119. default: true
  42120. },
  42121. {
  42122. name: "Normal",
  42123. height: math.unit(200, "feet")
  42124. },
  42125. {
  42126. name: "Macro",
  42127. height: math.unit(200000, "feet")
  42128. },
  42129. {
  42130. name: "Multiversal Original",
  42131. height: math.unit(10000, "multiverses")
  42132. },
  42133. ]
  42134. ))
  42135. characterMakers.push(() => makeCharacter(
  42136. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42137. {
  42138. front: {
  42139. height: math.unit(8, "feet"),
  42140. weight: math.unit(553, "lb"),
  42141. name: "Front",
  42142. image: {
  42143. source: "./media/characters/tawendeh/front.svg",
  42144. extra: 2365/2268,
  42145. bottom: 83/2448
  42146. }
  42147. },
  42148. frontClothed: {
  42149. height: math.unit(8, "feet"),
  42150. weight: math.unit(553, "lb"),
  42151. name: "Front (Clothed)",
  42152. image: {
  42153. source: "./media/characters/tawendeh/front-clothed.svg",
  42154. extra: 2365/2268,
  42155. bottom: 83/2448
  42156. }
  42157. },
  42158. back: {
  42159. height: math.unit(8, "feet"),
  42160. weight: math.unit(553, "lb"),
  42161. name: "Back",
  42162. image: {
  42163. source: "./media/characters/tawendeh/back.svg",
  42164. extra: 2397/2294,
  42165. bottom: 42/2439
  42166. }
  42167. },
  42168. },
  42169. [
  42170. {
  42171. name: "Mortal Interaction",
  42172. height: math.unit(8, "feet"),
  42173. default: true
  42174. },
  42175. {
  42176. name: "Giant",
  42177. height: math.unit(80, "feet")
  42178. },
  42179. {
  42180. name: "Macro",
  42181. height: math.unit(800, "feet")
  42182. },
  42183. {
  42184. name: "Megamacro",
  42185. height: math.unit(8000, "feet")
  42186. },
  42187. {
  42188. name: "City-Crushing",
  42189. height: math.unit(24000, "feet")
  42190. },
  42191. {
  42192. name: "Mountain-Mashing",
  42193. height: math.unit(80000, "feet")
  42194. },
  42195. {
  42196. name: "Nation Nemesis",
  42197. height: math.unit(8e6, "feet")
  42198. },
  42199. {
  42200. name: "Continent Cracker",
  42201. height: math.unit(24e6, "feet")
  42202. },
  42203. {
  42204. name: "Earth-Eclipsing",
  42205. height: math.unit(2.4e8, "feet")
  42206. },
  42207. {
  42208. name: "Gas Giant Gulper",
  42209. height: math.unit(2.4e9, "feet")
  42210. },
  42211. {
  42212. name: "Sol-Swallowing",
  42213. height: math.unit(8e10, "feet")
  42214. },
  42215. {
  42216. name: "Galaxy Gulper",
  42217. height: math.unit(8, "galaxies")
  42218. },
  42219. {
  42220. name: "Cosmos Churner",
  42221. height: math.unit(8, "universes")
  42222. },
  42223. {
  42224. name: "Omnipotent Otter",
  42225. height: math.unit(80, "universes")
  42226. },
  42227. ]
  42228. ))
  42229. characterMakers.push(() => makeCharacter(
  42230. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42231. {
  42232. front: {
  42233. height: math.unit(2.6, "meters"),
  42234. weight: math.unit(900, "kg"),
  42235. name: "Front",
  42236. image: {
  42237. source: "./media/characters/neesha/front.svg",
  42238. extra: 1803/1653,
  42239. bottom: 128/1931
  42240. }
  42241. },
  42242. },
  42243. [
  42244. {
  42245. name: "Normal",
  42246. height: math.unit(2.6, "meters"),
  42247. default: true
  42248. },
  42249. {
  42250. name: "Macro",
  42251. height: math.unit(50, "meters")
  42252. },
  42253. ]
  42254. ))
  42255. characterMakers.push(() => makeCharacter(
  42256. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42257. {
  42258. front: {
  42259. height: math.unit(5, "feet"),
  42260. weight: math.unit(185, "lb"),
  42261. name: "Front",
  42262. image: {
  42263. source: "./media/characters/kyera/front.svg",
  42264. extra: 1875/1790,
  42265. bottom: 96/1971
  42266. }
  42267. },
  42268. },
  42269. [
  42270. {
  42271. name: "Normal",
  42272. height: math.unit(5, "feet"),
  42273. default: true
  42274. },
  42275. ]
  42276. ))
  42277. characterMakers.push(() => makeCharacter(
  42278. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42279. {
  42280. front: {
  42281. height: math.unit(7 + 6/12, "feet"),
  42282. weight: math.unit(540, "lb"),
  42283. name: "Front",
  42284. image: {
  42285. source: "./media/characters/yuko/front.svg",
  42286. extra: 1282/1222,
  42287. bottom: 101/1383
  42288. }
  42289. },
  42290. frontClothed: {
  42291. height: math.unit(7 + 6/12, "feet"),
  42292. weight: math.unit(540, "lb"),
  42293. name: "Front (Clothed)",
  42294. image: {
  42295. source: "./media/characters/yuko/front-clothed.svg",
  42296. extra: 1282/1222,
  42297. bottom: 101/1383
  42298. }
  42299. },
  42300. },
  42301. [
  42302. {
  42303. name: "Normal",
  42304. height: math.unit(7 + 6/12, "feet"),
  42305. default: true
  42306. },
  42307. {
  42308. name: "Macro",
  42309. height: math.unit(26 + 9/12, "feet")
  42310. },
  42311. {
  42312. name: "Megamacro",
  42313. height: math.unit(300, "feet")
  42314. },
  42315. {
  42316. name: "Gigamacro",
  42317. height: math.unit(5000, "feet")
  42318. },
  42319. {
  42320. name: "Planetary",
  42321. height: math.unit(10000, "miles")
  42322. },
  42323. ]
  42324. ))
  42325. characterMakers.push(() => makeCharacter(
  42326. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42327. {
  42328. front: {
  42329. height: math.unit(8 + 2/12, "feet"),
  42330. weight: math.unit(600, "lb"),
  42331. name: "Front",
  42332. image: {
  42333. source: "./media/characters/deam-nitrel/front.svg",
  42334. extra: 1308/1234,
  42335. bottom: 125/1433
  42336. }
  42337. },
  42338. },
  42339. [
  42340. {
  42341. name: "Normal",
  42342. height: math.unit(8 + 2/12, "feet"),
  42343. default: true
  42344. },
  42345. ]
  42346. ))
  42347. characterMakers.push(() => makeCharacter(
  42348. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42349. {
  42350. front: {
  42351. height: math.unit(6.1, "feet"),
  42352. weight: math.unit(180, "lb"),
  42353. name: "Front",
  42354. image: {
  42355. source: "./media/characters/skyress/front.svg",
  42356. extra: 1045/915,
  42357. bottom: 28/1073
  42358. }
  42359. },
  42360. maw: {
  42361. height: math.unit(1, "feet"),
  42362. name: "Maw",
  42363. image: {
  42364. source: "./media/characters/skyress/maw.svg"
  42365. }
  42366. },
  42367. },
  42368. [
  42369. {
  42370. name: "Normal",
  42371. height: math.unit(6.1, "feet"),
  42372. default: true
  42373. },
  42374. {
  42375. name: "Macro",
  42376. height: math.unit(200, "feet")
  42377. },
  42378. ]
  42379. ))
  42380. characterMakers.push(() => makeCharacter(
  42381. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42382. {
  42383. front: {
  42384. height: math.unit(4 + 2/12, "feet"),
  42385. weight: math.unit(40, "kg"),
  42386. name: "Front",
  42387. image: {
  42388. source: "./media/characters/amethyst-jones/front.svg",
  42389. extra: 1220/1150,
  42390. bottom: 101/1321
  42391. }
  42392. },
  42393. },
  42394. [
  42395. {
  42396. name: "Normal",
  42397. height: math.unit(4 + 2/12, "feet"),
  42398. default: true
  42399. },
  42400. ]
  42401. ))
  42402. characterMakers.push(() => makeCharacter(
  42403. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42404. {
  42405. front: {
  42406. height: math.unit(1.7, "m"),
  42407. weight: math.unit(135, "lb"),
  42408. name: "Front",
  42409. image: {
  42410. source: "./media/characters/jade/front.svg",
  42411. extra: 1818/1767,
  42412. bottom: 32/1850
  42413. }
  42414. },
  42415. back: {
  42416. height: math.unit(1.7, "m"),
  42417. weight: math.unit(135, "lb"),
  42418. name: "Back",
  42419. image: {
  42420. source: "./media/characters/jade/back.svg",
  42421. extra: 1869/1809,
  42422. bottom: 35/1904
  42423. }
  42424. },
  42425. hand: {
  42426. height: math.unit(0.24, "m"),
  42427. name: "Hand",
  42428. image: {
  42429. source: "./media/characters/jade/hand.svg"
  42430. }
  42431. },
  42432. foot: {
  42433. height: math.unit(0.263, "m"),
  42434. name: "Foot",
  42435. image: {
  42436. source: "./media/characters/jade/foot.svg"
  42437. }
  42438. },
  42439. dick: {
  42440. height: math.unit(0.47, "m"),
  42441. name: "Dick",
  42442. image: {
  42443. source: "./media/characters/jade/dick.svg"
  42444. }
  42445. },
  42446. },
  42447. [
  42448. {
  42449. name: "Micro",
  42450. height: math.unit(22, "cm")
  42451. },
  42452. {
  42453. name: "Normal",
  42454. height: math.unit(1.7, "m"),
  42455. default: true
  42456. },
  42457. {
  42458. name: "Macro",
  42459. height: math.unit(152, "m")
  42460. },
  42461. ]
  42462. ))
  42463. characterMakers.push(() => makeCharacter(
  42464. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42465. {
  42466. front: {
  42467. height: math.unit(100, "miles"),
  42468. weight: math.unit(20000, "tons"),
  42469. name: "Front",
  42470. image: {
  42471. source: "./media/characters/cookie/front.svg",
  42472. extra: 1125/1070,
  42473. bottom: 30/1155
  42474. }
  42475. },
  42476. },
  42477. [
  42478. {
  42479. name: "Big",
  42480. height: math.unit(50, "feet")
  42481. },
  42482. {
  42483. name: "Macro",
  42484. height: math.unit(100, "miles"),
  42485. default: true
  42486. },
  42487. {
  42488. name: "Megamacro",
  42489. height: math.unit(90000, "miles")
  42490. },
  42491. ]
  42492. ))
  42493. characterMakers.push(() => makeCharacter(
  42494. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42495. {
  42496. front: {
  42497. height: math.unit(6, "feet"),
  42498. weight: math.unit(145, "lb"),
  42499. name: "Front",
  42500. image: {
  42501. source: "./media/characters/farzian/front.svg",
  42502. extra: 1902/1693,
  42503. bottom: 108/2010
  42504. }
  42505. },
  42506. },
  42507. [
  42508. {
  42509. name: "Macro",
  42510. height: math.unit(500, "feet"),
  42511. default: true
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42517. {
  42518. front: {
  42519. height: math.unit(3 + 6/12, "feet"),
  42520. weight: math.unit(50, "lb"),
  42521. name: "Front",
  42522. image: {
  42523. source: "./media/characters/kimberly-tilson/front.svg",
  42524. extra: 1400/1322,
  42525. bottom: 36/1436
  42526. }
  42527. },
  42528. back: {
  42529. height: math.unit(3 + 6/12, "feet"),
  42530. weight: math.unit(50, "lb"),
  42531. name: "Back",
  42532. image: {
  42533. source: "./media/characters/kimberly-tilson/back.svg",
  42534. extra: 1370/1307,
  42535. bottom: 20/1390
  42536. }
  42537. },
  42538. },
  42539. [
  42540. {
  42541. name: "Normal",
  42542. height: math.unit(3 + 6/12, "feet"),
  42543. default: true
  42544. },
  42545. ]
  42546. ))
  42547. characterMakers.push(() => makeCharacter(
  42548. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42549. {
  42550. front: {
  42551. height: math.unit(350, "meters"),
  42552. weight: math.unit(7.57059e+8, "lb"),
  42553. name: "Front",
  42554. image: {
  42555. source: "./media/characters/harthos/front.svg",
  42556. extra: 455/446,
  42557. bottom: 15/470
  42558. },
  42559. form: "peacekeeper",
  42560. default: true
  42561. },
  42562. allusus_front: {
  42563. height: math.unit(270, "meters"),
  42564. weight: math.unit(3.47550e+8, "lb"),
  42565. name: "Front",
  42566. image: {
  42567. source: "./media/characters/harthos/allusus-front.svg",
  42568. extra: 455/446,
  42569. bottom: 15/470
  42570. },
  42571. form: "allusus",
  42572. },
  42573. },
  42574. [
  42575. {
  42576. name: "Macro",
  42577. height: math.unit(350, "meters"),
  42578. default: true,
  42579. form: "peacekeeper"
  42580. },
  42581. {
  42582. name: "Macro",
  42583. height: math.unit(270, "meters"),
  42584. default: true,
  42585. form: "allusus"
  42586. },
  42587. ],
  42588. {
  42589. "peacekeeper": {
  42590. name: "Peacekeeper",
  42591. default: true
  42592. },
  42593. "allusus": {
  42594. name: "Allusus",
  42595. },
  42596. }
  42597. ))
  42598. characterMakers.push(() => makeCharacter(
  42599. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42600. {
  42601. front: {
  42602. height: math.unit(15, "feet"),
  42603. name: "Front",
  42604. image: {
  42605. source: "./media/characters/hypatia/front.svg",
  42606. extra: 1653/1591,
  42607. bottom: 79/1732
  42608. }
  42609. },
  42610. },
  42611. [
  42612. {
  42613. name: "Normal",
  42614. height: math.unit(15, "feet")
  42615. },
  42616. {
  42617. name: "Small",
  42618. height: math.unit(300, "feet")
  42619. },
  42620. {
  42621. name: "Macro",
  42622. height: math.unit(2500, "feet"),
  42623. default: true
  42624. },
  42625. {
  42626. name: "Mega Macro",
  42627. height: math.unit(1500, "miles")
  42628. },
  42629. {
  42630. name: "Giga Macro",
  42631. height: math.unit(1.5e6, "miles")
  42632. },
  42633. ]
  42634. ))
  42635. characterMakers.push(() => makeCharacter(
  42636. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42637. {
  42638. front: {
  42639. height: math.unit(6, "feet"),
  42640. weight: math.unit(200, "lb"),
  42641. name: "Front",
  42642. image: {
  42643. source: "./media/characters/wulver/front.svg",
  42644. extra: 1724/1632,
  42645. bottom: 130/1854
  42646. }
  42647. },
  42648. frontNsfw: {
  42649. height: math.unit(6, "feet"),
  42650. weight: math.unit(200, "lb"),
  42651. name: "Front (NSFW)",
  42652. image: {
  42653. source: "./media/characters/wulver/front-nsfw.svg",
  42654. extra: 1724/1632,
  42655. bottom: 130/1854
  42656. }
  42657. },
  42658. },
  42659. [
  42660. {
  42661. name: "Human-Sized",
  42662. height: math.unit(6, "feet")
  42663. },
  42664. {
  42665. name: "Normal",
  42666. height: math.unit(4, "meters"),
  42667. default: true
  42668. },
  42669. {
  42670. name: "Large",
  42671. height: math.unit(6, "m")
  42672. },
  42673. ]
  42674. ))
  42675. characterMakers.push(() => makeCharacter(
  42676. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42677. {
  42678. front: {
  42679. height: math.unit(7, "feet"),
  42680. name: "Front",
  42681. image: {
  42682. source: "./media/characters/maru/front.svg",
  42683. extra: 1595/1570,
  42684. bottom: 0/1595
  42685. }
  42686. },
  42687. },
  42688. [
  42689. {
  42690. name: "Normal",
  42691. height: math.unit(7, "feet"),
  42692. default: true
  42693. },
  42694. {
  42695. name: "Macro",
  42696. height: math.unit(700, "feet")
  42697. },
  42698. {
  42699. name: "Mega Macro",
  42700. height: math.unit(25, "miles")
  42701. },
  42702. ]
  42703. ))
  42704. characterMakers.push(() => makeCharacter(
  42705. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42706. {
  42707. front: {
  42708. height: math.unit(6, "feet"),
  42709. weight: math.unit(170, "lb"),
  42710. name: "Front",
  42711. image: {
  42712. source: "./media/characters/xenon/front.svg",
  42713. extra: 1376/1305,
  42714. bottom: 56/1432
  42715. }
  42716. },
  42717. back: {
  42718. height: math.unit(6, "feet"),
  42719. weight: math.unit(170, "lb"),
  42720. name: "Back",
  42721. image: {
  42722. source: "./media/characters/xenon/back.svg",
  42723. extra: 1328/1259,
  42724. bottom: 95/1423
  42725. }
  42726. },
  42727. maw: {
  42728. height: math.unit(0.52, "feet"),
  42729. name: "Maw",
  42730. image: {
  42731. source: "./media/characters/xenon/maw.svg"
  42732. }
  42733. },
  42734. handLeft: {
  42735. height: math.unit(0.82 * 169 / 153, "feet"),
  42736. name: "Hand (Left)",
  42737. image: {
  42738. source: "./media/characters/xenon/hand-left.svg"
  42739. }
  42740. },
  42741. handRight: {
  42742. height: math.unit(0.82, "feet"),
  42743. name: "Hand (Right)",
  42744. image: {
  42745. source: "./media/characters/xenon/hand-right.svg"
  42746. }
  42747. },
  42748. footLeft: {
  42749. height: math.unit(1.13, "feet"),
  42750. name: "Foot (Left)",
  42751. image: {
  42752. source: "./media/characters/xenon/foot-left.svg"
  42753. }
  42754. },
  42755. footRight: {
  42756. height: math.unit(1.13 * 194 / 196, "feet"),
  42757. name: "Foot (Right)",
  42758. image: {
  42759. source: "./media/characters/xenon/foot-right.svg"
  42760. }
  42761. },
  42762. },
  42763. [
  42764. {
  42765. name: "Micro",
  42766. height: math.unit(0.8, "inches")
  42767. },
  42768. {
  42769. name: "Normal",
  42770. height: math.unit(6, "feet")
  42771. },
  42772. {
  42773. name: "Macro",
  42774. height: math.unit(50, "feet"),
  42775. default: true
  42776. },
  42777. {
  42778. name: "Macro+",
  42779. height: math.unit(250, "feet")
  42780. },
  42781. {
  42782. name: "Megamacro",
  42783. height: math.unit(1500, "feet")
  42784. },
  42785. ]
  42786. ))
  42787. characterMakers.push(() => makeCharacter(
  42788. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42789. {
  42790. front: {
  42791. height: math.unit(7 + 5/12, "feet"),
  42792. name: "Front",
  42793. image: {
  42794. source: "./media/characters/zane/front.svg",
  42795. extra: 1260/1203,
  42796. bottom: 94/1354
  42797. }
  42798. },
  42799. back: {
  42800. height: math.unit(5.05, "feet"),
  42801. name: "Back",
  42802. image: {
  42803. source: "./media/characters/zane/back.svg",
  42804. extra: 893/829,
  42805. bottom: 30/923
  42806. }
  42807. },
  42808. werewolf: {
  42809. height: math.unit(11, "feet"),
  42810. name: "Werewolf",
  42811. image: {
  42812. source: "./media/characters/zane/werewolf.svg",
  42813. extra: 1383/1323,
  42814. bottom: 89/1472
  42815. }
  42816. },
  42817. foot: {
  42818. height: math.unit(1.46, "feet"),
  42819. name: "Foot",
  42820. image: {
  42821. source: "./media/characters/zane/foot.svg"
  42822. }
  42823. },
  42824. footFront: {
  42825. height: math.unit(0.784, "feet"),
  42826. name: "Foot (Front)",
  42827. image: {
  42828. source: "./media/characters/zane/foot-front.svg"
  42829. }
  42830. },
  42831. dick: {
  42832. height: math.unit(1.95, "feet"),
  42833. name: "Dick",
  42834. image: {
  42835. source: "./media/characters/zane/dick.svg"
  42836. }
  42837. },
  42838. dickWerewolf: {
  42839. height: math.unit(3.77, "feet"),
  42840. name: "Dick (Werewolf)",
  42841. image: {
  42842. source: "./media/characters/zane/dick.svg"
  42843. }
  42844. },
  42845. },
  42846. [
  42847. {
  42848. name: "Normal",
  42849. height: math.unit(7 + 5/12, "feet"),
  42850. default: true
  42851. },
  42852. ]
  42853. ))
  42854. characterMakers.push(() => makeCharacter(
  42855. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42856. {
  42857. front: {
  42858. height: math.unit(6 + 2/12, "feet"),
  42859. weight: math.unit(284, "lb"),
  42860. name: "Front",
  42861. image: {
  42862. source: "./media/characters/benni-desparque/front.svg",
  42863. extra: 1353/1126,
  42864. bottom: 69/1422
  42865. }
  42866. },
  42867. },
  42868. [
  42869. {
  42870. name: "Civilian",
  42871. height: math.unit(6 + 2/12, "feet")
  42872. },
  42873. {
  42874. name: "Normal",
  42875. height: math.unit(98, "feet"),
  42876. default: true
  42877. },
  42878. {
  42879. name: "Kaiju Fighter",
  42880. height: math.unit(268, "feet")
  42881. },
  42882. ]
  42883. ))
  42884. characterMakers.push(() => makeCharacter(
  42885. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42886. {
  42887. front: {
  42888. height: math.unit(5, "feet"),
  42889. weight: math.unit(105, "lb"),
  42890. name: "Front",
  42891. image: {
  42892. source: "./media/characters/maxine/front.svg",
  42893. extra: 1386/1250,
  42894. bottom: 71/1457
  42895. }
  42896. },
  42897. },
  42898. [
  42899. {
  42900. name: "Normal",
  42901. height: math.unit(5, "feet"),
  42902. default: true
  42903. },
  42904. ]
  42905. ))
  42906. characterMakers.push(() => makeCharacter(
  42907. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42908. {
  42909. front: {
  42910. height: math.unit(11 + 7/12, "feet"),
  42911. weight: math.unit(9576, "lb"),
  42912. name: "Front",
  42913. image: {
  42914. source: "./media/characters/scaly/front.svg",
  42915. extra: 888/867,
  42916. bottom: 36/924
  42917. }
  42918. },
  42919. },
  42920. [
  42921. {
  42922. name: "Normal",
  42923. height: math.unit(11 + 7/12, "feet"),
  42924. default: true
  42925. },
  42926. ]
  42927. ))
  42928. characterMakers.push(() => makeCharacter(
  42929. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42930. {
  42931. front: {
  42932. height: math.unit(6 + 3/12, "feet"),
  42933. name: "Front",
  42934. image: {
  42935. source: "./media/characters/saelria/front.svg",
  42936. extra: 1243/1138,
  42937. bottom: 46/1289
  42938. }
  42939. },
  42940. },
  42941. [
  42942. {
  42943. name: "Micro",
  42944. height: math.unit(6, "inches"),
  42945. },
  42946. {
  42947. name: "Normal",
  42948. height: math.unit(6 + 3/12, "feet"),
  42949. default: true
  42950. },
  42951. {
  42952. name: "Macro",
  42953. height: math.unit(25, "feet")
  42954. },
  42955. ]
  42956. ))
  42957. characterMakers.push(() => makeCharacter(
  42958. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42959. {
  42960. front: {
  42961. height: math.unit(80, "meters"),
  42962. weight: math.unit(7000, "tonnes"),
  42963. name: "Front",
  42964. image: {
  42965. source: "./media/characters/tef/front.svg",
  42966. extra: 2036/1991,
  42967. bottom: 54/2090
  42968. }
  42969. },
  42970. back: {
  42971. height: math.unit(80, "meters"),
  42972. weight: math.unit(7000, "tonnes"),
  42973. name: "Back",
  42974. image: {
  42975. source: "./media/characters/tef/back.svg",
  42976. extra: 2036/1991,
  42977. bottom: 54/2090
  42978. }
  42979. },
  42980. },
  42981. [
  42982. {
  42983. name: "Macro",
  42984. height: math.unit(80, "meters"),
  42985. default: true
  42986. },
  42987. ]
  42988. ))
  42989. characterMakers.push(() => makeCharacter(
  42990. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42991. {
  42992. front: {
  42993. height: math.unit(13, "feet"),
  42994. weight: math.unit(6, "tons"),
  42995. name: "Front",
  42996. image: {
  42997. source: "./media/characters/rover/front.svg",
  42998. extra: 1233/1156,
  42999. bottom: 50/1283
  43000. }
  43001. },
  43002. back: {
  43003. height: math.unit(13, "feet"),
  43004. weight: math.unit(6, "tons"),
  43005. name: "Back",
  43006. image: {
  43007. source: "./media/characters/rover/back.svg",
  43008. extra: 1327/1258,
  43009. bottom: 39/1366
  43010. }
  43011. },
  43012. },
  43013. [
  43014. {
  43015. name: "Normal",
  43016. height: math.unit(13, "feet"),
  43017. default: true
  43018. },
  43019. {
  43020. name: "Macro",
  43021. height: math.unit(1300, "feet")
  43022. },
  43023. {
  43024. name: "Megamacro",
  43025. height: math.unit(1300, "miles")
  43026. },
  43027. {
  43028. name: "Gigamacro",
  43029. height: math.unit(1300000, "miles")
  43030. },
  43031. ]
  43032. ))
  43033. characterMakers.push(() => makeCharacter(
  43034. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43035. {
  43036. front: {
  43037. height: math.unit(10, "feet"),
  43038. weight: math.unit(500, "lb"),
  43039. name: "Front",
  43040. image: {
  43041. source: "./media/characters/ariz/front.svg",
  43042. extra: 461/450,
  43043. bottom: 16/477
  43044. }
  43045. },
  43046. },
  43047. [
  43048. {
  43049. name: "MiniMacro",
  43050. height: math.unit(10, "feet"),
  43051. default: true
  43052. },
  43053. ]
  43054. ))
  43055. characterMakers.push(() => makeCharacter(
  43056. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43057. {
  43058. front: {
  43059. height: math.unit(6, "feet"),
  43060. weight: math.unit(140, "lb"),
  43061. name: "Front",
  43062. image: {
  43063. source: "./media/characters/sigrun/front.svg",
  43064. extra: 1418/1359,
  43065. bottom: 27/1445
  43066. }
  43067. },
  43068. },
  43069. [
  43070. {
  43071. name: "Macro",
  43072. height: math.unit(35, "feet"),
  43073. default: true
  43074. },
  43075. ]
  43076. ))
  43077. characterMakers.push(() => makeCharacter(
  43078. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43079. {
  43080. front: {
  43081. height: math.unit(6, "feet"),
  43082. weight: math.unit(150, "lb"),
  43083. name: "Front",
  43084. image: {
  43085. source: "./media/characters/numin/front.svg",
  43086. extra: 1433/1388,
  43087. bottom: 12/1445
  43088. }
  43089. },
  43090. },
  43091. [
  43092. {
  43093. name: "Macro",
  43094. height: math.unit(21.5, "km"),
  43095. default: true
  43096. },
  43097. ]
  43098. ))
  43099. characterMakers.push(() => makeCharacter(
  43100. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43101. {
  43102. front: {
  43103. height: math.unit(6, "feet"),
  43104. weight: math.unit(463, "lb"),
  43105. name: "Front",
  43106. image: {
  43107. source: "./media/characters/melwa/front.svg",
  43108. extra: 1307/1248,
  43109. bottom: 93/1400
  43110. }
  43111. },
  43112. },
  43113. [
  43114. {
  43115. name: "Macro",
  43116. height: math.unit(50, "meters"),
  43117. default: true
  43118. },
  43119. ]
  43120. ))
  43121. characterMakers.push(() => makeCharacter(
  43122. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43123. {
  43124. front: {
  43125. height: math.unit(325, "feet"),
  43126. name: "Front",
  43127. image: {
  43128. source: "./media/characters/zorkaiju/front.svg",
  43129. extra: 1955/1814,
  43130. bottom: 40/1995
  43131. }
  43132. },
  43133. frontExtended: {
  43134. height: math.unit(325, "feet"),
  43135. name: "Front (Extended)",
  43136. image: {
  43137. source: "./media/characters/zorkaiju/front-extended.svg",
  43138. extra: 1955/1814,
  43139. bottom: 40/1995
  43140. }
  43141. },
  43142. side: {
  43143. height: math.unit(325, "feet"),
  43144. name: "Side",
  43145. image: {
  43146. source: "./media/characters/zorkaiju/side.svg",
  43147. extra: 1495/1396,
  43148. bottom: 17/1512
  43149. }
  43150. },
  43151. sideExtended: {
  43152. height: math.unit(325, "feet"),
  43153. name: "Side (Extended)",
  43154. image: {
  43155. source: "./media/characters/zorkaiju/side-extended.svg",
  43156. extra: 1495/1396,
  43157. bottom: 17/1512
  43158. }
  43159. },
  43160. back: {
  43161. height: math.unit(325, "feet"),
  43162. name: "Back",
  43163. image: {
  43164. source: "./media/characters/zorkaiju/back.svg",
  43165. extra: 1959/1821,
  43166. bottom: 31/1990
  43167. }
  43168. },
  43169. backExtended: {
  43170. height: math.unit(325, "feet"),
  43171. name: "Back (Extended)",
  43172. image: {
  43173. source: "./media/characters/zorkaiju/back-extended.svg",
  43174. extra: 1959/1821,
  43175. bottom: 31/1990
  43176. }
  43177. },
  43178. hand: {
  43179. height: math.unit(58.4, "feet"),
  43180. name: "Hand",
  43181. image: {
  43182. source: "./media/characters/zorkaiju/hand.svg"
  43183. }
  43184. },
  43185. handExtended: {
  43186. height: math.unit(61.4, "feet"),
  43187. name: "Hand (Extended)",
  43188. image: {
  43189. source: "./media/characters/zorkaiju/hand-extended.svg"
  43190. }
  43191. },
  43192. foot: {
  43193. height: math.unit(95, "feet"),
  43194. name: "Foot",
  43195. image: {
  43196. source: "./media/characters/zorkaiju/foot.svg"
  43197. }
  43198. },
  43199. leftArm: {
  43200. height: math.unit(59, "feet"),
  43201. name: "Left Arm",
  43202. image: {
  43203. source: "./media/characters/zorkaiju/left-arm.svg"
  43204. }
  43205. },
  43206. rightArm: {
  43207. height: math.unit(59, "feet"),
  43208. name: "Right Arm",
  43209. image: {
  43210. source: "./media/characters/zorkaiju/right-arm.svg"
  43211. }
  43212. },
  43213. leftArmExtended: {
  43214. height: math.unit(59 * 1.033546, "feet"),
  43215. name: "Left Arm (Extended)",
  43216. image: {
  43217. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43218. }
  43219. },
  43220. rightArmExtended: {
  43221. height: math.unit(59 * 1.0496, "feet"),
  43222. name: "Right Arm (Extended)",
  43223. image: {
  43224. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43225. }
  43226. },
  43227. tail: {
  43228. height: math.unit(104, "feet"),
  43229. name: "Tail",
  43230. image: {
  43231. source: "./media/characters/zorkaiju/tail.svg"
  43232. }
  43233. },
  43234. tailExtended: {
  43235. height: math.unit(104, "feet"),
  43236. name: "Tail (Extended)",
  43237. image: {
  43238. source: "./media/characters/zorkaiju/tail-extended.svg"
  43239. }
  43240. },
  43241. tailBottom: {
  43242. height: math.unit(104, "feet"),
  43243. name: "Tail Bottom",
  43244. image: {
  43245. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43246. }
  43247. },
  43248. crystal: {
  43249. height: math.unit(27.54, "feet"),
  43250. name: "Crystal",
  43251. image: {
  43252. source: "./media/characters/zorkaiju/crystal.svg"
  43253. }
  43254. },
  43255. },
  43256. [
  43257. {
  43258. name: "Kaiju",
  43259. height: math.unit(325, "feet"),
  43260. default: true
  43261. },
  43262. ]
  43263. ))
  43264. characterMakers.push(() => makeCharacter(
  43265. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43266. {
  43267. front: {
  43268. height: math.unit(6 + 1/12, "feet"),
  43269. weight: math.unit(115, "lb"),
  43270. name: "Front",
  43271. image: {
  43272. source: "./media/characters/bailey-belfry/front.svg",
  43273. extra: 1240/1121,
  43274. bottom: 101/1341
  43275. }
  43276. },
  43277. },
  43278. [
  43279. {
  43280. name: "Normal",
  43281. height: math.unit(6 + 1/12, "feet"),
  43282. default: true
  43283. },
  43284. ]
  43285. ))
  43286. characterMakers.push(() => makeCharacter(
  43287. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43288. {
  43289. side: {
  43290. height: math.unit(4, "meters"),
  43291. weight: math.unit(250, "kg"),
  43292. name: "Side",
  43293. image: {
  43294. source: "./media/characters/blacky/side.svg",
  43295. extra: 1027/919,
  43296. bottom: 43/1070
  43297. }
  43298. },
  43299. maw: {
  43300. height: math.unit(1, "meters"),
  43301. name: "Maw",
  43302. image: {
  43303. source: "./media/characters/blacky/maw.svg"
  43304. }
  43305. },
  43306. paw: {
  43307. height: math.unit(1, "meters"),
  43308. name: "Paw",
  43309. image: {
  43310. source: "./media/characters/blacky/paw.svg"
  43311. }
  43312. },
  43313. },
  43314. [
  43315. {
  43316. name: "Normal",
  43317. height: math.unit(4, "meters"),
  43318. default: true
  43319. },
  43320. ]
  43321. ))
  43322. characterMakers.push(() => makeCharacter(
  43323. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43324. {
  43325. front: {
  43326. height: math.unit(170, "cm"),
  43327. weight: math.unit(66, "kg"),
  43328. name: "Front",
  43329. image: {
  43330. source: "./media/characters/thux-ei/front.svg",
  43331. extra: 1109/1011,
  43332. bottom: 8/1117
  43333. }
  43334. },
  43335. },
  43336. [
  43337. {
  43338. name: "Normal",
  43339. height: math.unit(170, "cm"),
  43340. default: true
  43341. },
  43342. ]
  43343. ))
  43344. characterMakers.push(() => makeCharacter(
  43345. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43346. {
  43347. front: {
  43348. height: math.unit(5, "feet"),
  43349. weight: math.unit(120, "lb"),
  43350. name: "Front",
  43351. image: {
  43352. source: "./media/characters/roxanne-voltaire/front.svg",
  43353. extra: 1901/1779,
  43354. bottom: 53/1954
  43355. }
  43356. },
  43357. },
  43358. [
  43359. {
  43360. name: "Normal",
  43361. height: math.unit(5, "feet"),
  43362. default: true
  43363. },
  43364. {
  43365. name: "Giant",
  43366. height: math.unit(50, "feet")
  43367. },
  43368. {
  43369. name: "Titan",
  43370. height: math.unit(500, "feet")
  43371. },
  43372. {
  43373. name: "Macro",
  43374. height: math.unit(5000, "feet")
  43375. },
  43376. {
  43377. name: "Megamacro",
  43378. height: math.unit(50000, "feet")
  43379. },
  43380. {
  43381. name: "Gigamacro",
  43382. height: math.unit(500000, "feet")
  43383. },
  43384. {
  43385. name: "Teramacro",
  43386. height: math.unit(5e6, "feet")
  43387. },
  43388. ]
  43389. ))
  43390. characterMakers.push(() => makeCharacter(
  43391. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43392. {
  43393. front: {
  43394. height: math.unit(6 + 2/12, "feet"),
  43395. name: "Front",
  43396. image: {
  43397. source: "./media/characters/squeaks/front.svg",
  43398. extra: 1823/1768,
  43399. bottom: 138/1961
  43400. }
  43401. },
  43402. },
  43403. [
  43404. {
  43405. name: "Micro",
  43406. height: math.unit(0.5, "inches")
  43407. },
  43408. {
  43409. name: "Normal",
  43410. height: math.unit(6 + 2/12, "feet"),
  43411. default: true
  43412. },
  43413. {
  43414. name: "Macro",
  43415. height: math.unit(600, "feet")
  43416. },
  43417. ]
  43418. ))
  43419. characterMakers.push(() => makeCharacter(
  43420. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43421. {
  43422. front: {
  43423. height: math.unit(1.72, "meters"),
  43424. name: "Front",
  43425. image: {
  43426. source: "./media/characters/archinger/front.svg",
  43427. extra: 1861/1675,
  43428. bottom: 125/1986
  43429. }
  43430. },
  43431. back: {
  43432. height: math.unit(1.72, "meters"),
  43433. name: "Back",
  43434. image: {
  43435. source: "./media/characters/archinger/back.svg",
  43436. extra: 1844/1701,
  43437. bottom: 104/1948
  43438. }
  43439. },
  43440. cock: {
  43441. height: math.unit(0.59, "feet"),
  43442. name: "Cock",
  43443. image: {
  43444. source: "./media/characters/archinger/cock.svg"
  43445. }
  43446. },
  43447. },
  43448. [
  43449. {
  43450. name: "Normal",
  43451. height: math.unit(1.72, "meters"),
  43452. default: true
  43453. },
  43454. {
  43455. name: "Macro",
  43456. height: math.unit(84, "meters")
  43457. },
  43458. {
  43459. name: "Macro+",
  43460. height: math.unit(112, "meters")
  43461. },
  43462. {
  43463. name: "Macro++",
  43464. height: math.unit(960, "meters")
  43465. },
  43466. {
  43467. name: "Macro+++",
  43468. height: math.unit(4, "km")
  43469. },
  43470. {
  43471. name: "Macro++++",
  43472. height: math.unit(48, "km")
  43473. },
  43474. {
  43475. name: "Macro+++++",
  43476. height: math.unit(4500, "km")
  43477. },
  43478. ]
  43479. ))
  43480. characterMakers.push(() => makeCharacter(
  43481. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43482. {
  43483. front: {
  43484. height: math.unit(5 + 5/12, "feet"),
  43485. name: "Front",
  43486. image: {
  43487. source: "./media/characters/alsnapz/front.svg",
  43488. extra: 1157/1065,
  43489. bottom: 42/1199
  43490. }
  43491. },
  43492. },
  43493. [
  43494. {
  43495. name: "Normal",
  43496. height: math.unit(5 + 5/12, "feet"),
  43497. default: true
  43498. },
  43499. ]
  43500. ))
  43501. characterMakers.push(() => makeCharacter(
  43502. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43503. {
  43504. side: {
  43505. height: math.unit(3.2, "earths"),
  43506. name: "Side",
  43507. image: {
  43508. source: "./media/characters/mag/side.svg",
  43509. extra: 1331/1008,
  43510. bottom: 52/1383
  43511. }
  43512. },
  43513. wing: {
  43514. height: math.unit(1.94, "earths"),
  43515. name: "Wing",
  43516. image: {
  43517. source: "./media/characters/mag/wing.svg"
  43518. }
  43519. },
  43520. dick: {
  43521. height: math.unit(1.8, "earths"),
  43522. name: "Dick",
  43523. image: {
  43524. source: "./media/characters/mag/dick.svg"
  43525. }
  43526. },
  43527. ass: {
  43528. height: math.unit(1.33, "earths"),
  43529. name: "Ass",
  43530. image: {
  43531. source: "./media/characters/mag/ass.svg"
  43532. }
  43533. },
  43534. head: {
  43535. height: math.unit(1.1, "earths"),
  43536. name: "Head",
  43537. image: {
  43538. source: "./media/characters/mag/head.svg"
  43539. }
  43540. },
  43541. maw: {
  43542. height: math.unit(1.62, "earths"),
  43543. name: "Maw",
  43544. image: {
  43545. source: "./media/characters/mag/maw.svg"
  43546. }
  43547. },
  43548. },
  43549. [
  43550. {
  43551. name: "Small",
  43552. height: math.unit(162, "feet")
  43553. },
  43554. {
  43555. name: "Normal",
  43556. height: math.unit(3.2, "earths"),
  43557. default: true
  43558. },
  43559. ]
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43563. {
  43564. front: {
  43565. height: math.unit(512, "feet"),
  43566. weight: math.unit(63509, "tonnes"),
  43567. name: "Front",
  43568. image: {
  43569. source: "./media/characters/vorrel-harroc/front.svg",
  43570. extra: 1075/1063,
  43571. bottom: 62/1137
  43572. }
  43573. },
  43574. },
  43575. [
  43576. {
  43577. name: "Normal",
  43578. height: math.unit(10, "feet")
  43579. },
  43580. {
  43581. name: "Macro",
  43582. height: math.unit(512, "feet"),
  43583. default: true
  43584. },
  43585. {
  43586. name: "Megamacro",
  43587. height: math.unit(256, "miles")
  43588. },
  43589. {
  43590. name: "Gigamacro",
  43591. height: math.unit(4096, "miles")
  43592. },
  43593. ]
  43594. ))
  43595. characterMakers.push(() => makeCharacter(
  43596. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43597. {
  43598. side: {
  43599. height: math.unit(50, "feet"),
  43600. name: "Side",
  43601. image: {
  43602. source: "./media/characters/froimar/side.svg",
  43603. extra: 855/638,
  43604. bottom: 99/954
  43605. }
  43606. },
  43607. },
  43608. [
  43609. {
  43610. name: "Macro",
  43611. height: math.unit(50, "feet"),
  43612. default: true
  43613. },
  43614. ]
  43615. ))
  43616. characterMakers.push(() => makeCharacter(
  43617. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43618. {
  43619. front: {
  43620. height: math.unit(210, "miles"),
  43621. name: "Front",
  43622. image: {
  43623. source: "./media/characters/timothy/front.svg",
  43624. extra: 1007/943,
  43625. bottom: 62/1069
  43626. }
  43627. },
  43628. frontSkirt: {
  43629. height: math.unit(210, "miles"),
  43630. name: "Front (Skirt)",
  43631. image: {
  43632. source: "./media/characters/timothy/front-skirt.svg",
  43633. extra: 1007/943,
  43634. bottom: 62/1069
  43635. }
  43636. },
  43637. frontCoat: {
  43638. height: math.unit(210, "miles"),
  43639. name: "Front (Coat)",
  43640. image: {
  43641. source: "./media/characters/timothy/front-coat.svg",
  43642. extra: 1007/943,
  43643. bottom: 62/1069
  43644. }
  43645. },
  43646. },
  43647. [
  43648. {
  43649. name: "Macro",
  43650. height: math.unit(210, "miles"),
  43651. default: true
  43652. },
  43653. {
  43654. name: "Megamacro",
  43655. height: math.unit(210000, "miles")
  43656. },
  43657. ]
  43658. ))
  43659. characterMakers.push(() => makeCharacter(
  43660. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43661. {
  43662. front: {
  43663. height: math.unit(188, "feet"),
  43664. name: "Front",
  43665. image: {
  43666. source: "./media/characters/pyotr/front.svg",
  43667. extra: 1912/1826,
  43668. bottom: 18/1930
  43669. }
  43670. },
  43671. },
  43672. [
  43673. {
  43674. name: "Macro",
  43675. height: math.unit(188, "feet"),
  43676. default: true
  43677. },
  43678. {
  43679. name: "Megamacro",
  43680. height: math.unit(8, "miles")
  43681. },
  43682. ]
  43683. ))
  43684. characterMakers.push(() => makeCharacter(
  43685. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43686. {
  43687. side: {
  43688. height: math.unit(10, "feet"),
  43689. weight: math.unit(4500, "lb"),
  43690. name: "Side",
  43691. image: {
  43692. source: "./media/characters/ackart/side.svg",
  43693. extra: 1776/1668,
  43694. bottom: 116/1892
  43695. }
  43696. },
  43697. },
  43698. [
  43699. {
  43700. name: "Normal",
  43701. height: math.unit(10, "feet"),
  43702. default: true
  43703. },
  43704. ]
  43705. ))
  43706. characterMakers.push(() => makeCharacter(
  43707. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43708. {
  43709. side: {
  43710. height: math.unit(21, "feet"),
  43711. name: "Side",
  43712. image: {
  43713. source: "./media/characters/nolow/side.svg",
  43714. extra: 1484/1434,
  43715. bottom: 85/1569
  43716. }
  43717. },
  43718. sideErect: {
  43719. height: math.unit(21, "feet"),
  43720. name: "Side-erect",
  43721. image: {
  43722. source: "./media/characters/nolow/side-erect.svg",
  43723. extra: 1484/1434,
  43724. bottom: 85/1569
  43725. }
  43726. },
  43727. },
  43728. [
  43729. {
  43730. name: "Regular",
  43731. height: math.unit(12, "feet")
  43732. },
  43733. {
  43734. name: "Big Chee",
  43735. height: math.unit(21, "feet"),
  43736. default: true
  43737. },
  43738. ]
  43739. ))
  43740. characterMakers.push(() => makeCharacter(
  43741. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43742. {
  43743. front: {
  43744. height: math.unit(7, "feet"),
  43745. weight: math.unit(250, "lb"),
  43746. name: "Front",
  43747. image: {
  43748. source: "./media/characters/nines/front.svg",
  43749. extra: 1741/1607,
  43750. bottom: 41/1782
  43751. }
  43752. },
  43753. side: {
  43754. height: math.unit(7, "feet"),
  43755. weight: math.unit(250, "lb"),
  43756. name: "Side",
  43757. image: {
  43758. source: "./media/characters/nines/side.svg",
  43759. extra: 1854/1735,
  43760. bottom: 93/1947
  43761. }
  43762. },
  43763. back: {
  43764. height: math.unit(7, "feet"),
  43765. weight: math.unit(250, "lb"),
  43766. name: "Back",
  43767. image: {
  43768. source: "./media/characters/nines/back.svg",
  43769. extra: 1748/1615,
  43770. bottom: 20/1768
  43771. }
  43772. },
  43773. },
  43774. [
  43775. {
  43776. name: "Megamacro",
  43777. height: math.unit(99, "km"),
  43778. default: true
  43779. },
  43780. ]
  43781. ))
  43782. characterMakers.push(() => makeCharacter(
  43783. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43784. {
  43785. front: {
  43786. height: math.unit(5 + 10/12, "feet"),
  43787. weight: math.unit(210, "lb"),
  43788. name: "Front",
  43789. image: {
  43790. source: "./media/characters/zenith/front.svg",
  43791. extra: 1531/1452,
  43792. bottom: 198/1729
  43793. }
  43794. },
  43795. back: {
  43796. height: math.unit(5 + 10/12, "feet"),
  43797. weight: math.unit(210, "lb"),
  43798. name: "Back",
  43799. image: {
  43800. source: "./media/characters/zenith/back.svg",
  43801. extra: 1571/1487,
  43802. bottom: 75/1646
  43803. }
  43804. },
  43805. },
  43806. [
  43807. {
  43808. name: "Normal",
  43809. height: math.unit(5 + 10/12, "feet"),
  43810. default: true
  43811. }
  43812. ]
  43813. ))
  43814. characterMakers.push(() => makeCharacter(
  43815. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43816. {
  43817. front: {
  43818. height: math.unit(4, "feet"),
  43819. weight: math.unit(60, "lb"),
  43820. name: "Front",
  43821. image: {
  43822. source: "./media/characters/jasper/front.svg",
  43823. extra: 1450/1379,
  43824. bottom: 19/1469
  43825. }
  43826. },
  43827. },
  43828. [
  43829. {
  43830. name: "Normal",
  43831. height: math.unit(4, "feet"),
  43832. default: true
  43833. },
  43834. ]
  43835. ))
  43836. characterMakers.push(() => makeCharacter(
  43837. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43838. {
  43839. front: {
  43840. height: math.unit(6 + 5/12, "feet"),
  43841. weight: math.unit(290, "lb"),
  43842. name: "Front",
  43843. image: {
  43844. source: "./media/characters/tiberius-thyben/front.svg",
  43845. extra: 757/739,
  43846. bottom: 39/796
  43847. }
  43848. },
  43849. },
  43850. [
  43851. {
  43852. name: "Micro",
  43853. height: math.unit(1.5, "inches")
  43854. },
  43855. {
  43856. name: "Normal",
  43857. height: math.unit(6 + 5/12, "feet"),
  43858. default: true
  43859. },
  43860. {
  43861. name: "Macro",
  43862. height: math.unit(300, "feet")
  43863. },
  43864. ]
  43865. ))
  43866. characterMakers.push(() => makeCharacter(
  43867. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43868. {
  43869. front: {
  43870. height: math.unit(5 + 6/12, "feet"),
  43871. weight: math.unit(60, "kg"),
  43872. name: "Front",
  43873. image: {
  43874. source: "./media/characters/sabre/front.svg",
  43875. extra: 738/671,
  43876. bottom: 27/765
  43877. }
  43878. },
  43879. },
  43880. [
  43881. {
  43882. name: "Teeny",
  43883. height: math.unit(2, "inches")
  43884. },
  43885. {
  43886. name: "Smol",
  43887. height: math.unit(8, "inches")
  43888. },
  43889. {
  43890. name: "Normal",
  43891. height: math.unit(5 + 6/12, "feet"),
  43892. default: true
  43893. },
  43894. {
  43895. name: "Mini-Macro",
  43896. height: math.unit(15, "feet")
  43897. },
  43898. {
  43899. name: "Macro",
  43900. height: math.unit(50, "feet")
  43901. },
  43902. ]
  43903. ))
  43904. characterMakers.push(() => makeCharacter(
  43905. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43906. {
  43907. front: {
  43908. height: math.unit(6 + 4/12, "feet"),
  43909. weight: math.unit(170, "lb"),
  43910. name: "Front",
  43911. image: {
  43912. source: "./media/characters/charlie/front.svg",
  43913. extra: 1348/1228,
  43914. bottom: 15/1363
  43915. }
  43916. },
  43917. },
  43918. [
  43919. {
  43920. name: "Macro",
  43921. height: math.unit(1700, "meters"),
  43922. default: true
  43923. },
  43924. {
  43925. name: "MegaMacro",
  43926. height: math.unit(20400, "meters")
  43927. },
  43928. ]
  43929. ))
  43930. characterMakers.push(() => makeCharacter(
  43931. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43932. {
  43933. front: {
  43934. height: math.unit(1.96, "meters"),
  43935. weight: math.unit(220, "lb"),
  43936. name: "Front",
  43937. image: {
  43938. source: "./media/characters/susan-grant/front.svg",
  43939. extra: 482/478,
  43940. bottom: 7/489
  43941. }
  43942. },
  43943. },
  43944. [
  43945. {
  43946. name: "Normal",
  43947. height: math.unit(1.96, "meters"),
  43948. default: true
  43949. },
  43950. {
  43951. name: "Macro",
  43952. height: math.unit(76.2, "meters")
  43953. },
  43954. {
  43955. name: "MegaMacro",
  43956. height: math.unit(305, "meters")
  43957. },
  43958. {
  43959. name: "GigaMacro",
  43960. height: math.unit(1220, "meters")
  43961. },
  43962. {
  43963. name: "SuperMacro",
  43964. height: math.unit(4878, "meters")
  43965. },
  43966. ]
  43967. ))
  43968. characterMakers.push(() => makeCharacter(
  43969. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43970. {
  43971. front: {
  43972. height: math.unit(5 + 4/12, "feet"),
  43973. weight: math.unit(110, "lb"),
  43974. name: "Front",
  43975. image: {
  43976. source: "./media/characters/axel-isanov/front.svg",
  43977. extra: 1096/1065,
  43978. bottom: 13/1109
  43979. }
  43980. },
  43981. },
  43982. [
  43983. {
  43984. name: "Normal",
  43985. height: math.unit(5 + 4/12, "feet"),
  43986. default: true
  43987. },
  43988. ]
  43989. ))
  43990. characterMakers.push(() => makeCharacter(
  43991. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43992. {
  43993. front: {
  43994. height: math.unit(9, "feet"),
  43995. weight: math.unit(467, "lb"),
  43996. name: "Front",
  43997. image: {
  43998. source: "./media/characters/necahual/front.svg",
  43999. extra: 920/873,
  44000. bottom: 26/946
  44001. }
  44002. },
  44003. back: {
  44004. height: math.unit(9, "feet"),
  44005. weight: math.unit(467, "lb"),
  44006. name: "Back",
  44007. image: {
  44008. source: "./media/characters/necahual/back.svg",
  44009. extra: 930/884,
  44010. bottom: 16/946
  44011. }
  44012. },
  44013. frontUnderwear: {
  44014. height: math.unit(9, "feet"),
  44015. weight: math.unit(467, "lb"),
  44016. name: "Front (Underwear)",
  44017. image: {
  44018. source: "./media/characters/necahual/front-underwear.svg",
  44019. extra: 920/873,
  44020. bottom: 26/946
  44021. }
  44022. },
  44023. frontDressed: {
  44024. height: math.unit(9, "feet"),
  44025. weight: math.unit(467, "lb"),
  44026. name: "Front (Dressed)",
  44027. image: {
  44028. source: "./media/characters/necahual/front-dressed.svg",
  44029. extra: 920/873,
  44030. bottom: 26/946
  44031. }
  44032. },
  44033. },
  44034. [
  44035. {
  44036. name: "Comprsesed",
  44037. height: math.unit(9, "feet")
  44038. },
  44039. {
  44040. name: "Natural",
  44041. height: math.unit(15, "feet"),
  44042. default: true
  44043. },
  44044. {
  44045. name: "Boosted",
  44046. height: math.unit(50, "feet")
  44047. },
  44048. {
  44049. name: "Boosted+",
  44050. height: math.unit(150, "feet")
  44051. },
  44052. {
  44053. name: "Max",
  44054. height: math.unit(500, "feet")
  44055. },
  44056. ]
  44057. ))
  44058. characterMakers.push(() => makeCharacter(
  44059. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44060. {
  44061. front: {
  44062. height: math.unit(22 + 1/12, "feet"),
  44063. weight: math.unit(3200, "lb"),
  44064. name: "Front",
  44065. image: {
  44066. source: "./media/characters/theo-acacia/front.svg",
  44067. extra: 1796/1741,
  44068. bottom: 83/1879
  44069. }
  44070. },
  44071. frontUnderwear: {
  44072. height: math.unit(22 + 1/12, "feet"),
  44073. weight: math.unit(3200, "lb"),
  44074. name: "Front (Underwear)",
  44075. image: {
  44076. source: "./media/characters/theo-acacia/front-underwear.svg",
  44077. extra: 1796/1741,
  44078. bottom: 83/1879
  44079. }
  44080. },
  44081. frontNude: {
  44082. height: math.unit(22 + 1/12, "feet"),
  44083. weight: math.unit(3200, "lb"),
  44084. name: "Front (Nude)",
  44085. image: {
  44086. source: "./media/characters/theo-acacia/front-nude.svg",
  44087. extra: 1796/1741,
  44088. bottom: 83/1879
  44089. }
  44090. },
  44091. },
  44092. [
  44093. {
  44094. name: "Normal",
  44095. height: math.unit(22 + 1/12, "feet"),
  44096. default: true
  44097. },
  44098. ]
  44099. ))
  44100. characterMakers.push(() => makeCharacter(
  44101. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44102. {
  44103. front: {
  44104. height: math.unit(20, "feet"),
  44105. name: "Front",
  44106. image: {
  44107. source: "./media/characters/astra/front.svg",
  44108. extra: 1850/1714,
  44109. bottom: 106/1956
  44110. }
  44111. },
  44112. frontUndressed: {
  44113. height: math.unit(20, "feet"),
  44114. name: "Front (Undressed)",
  44115. image: {
  44116. source: "./media/characters/astra/front-undressed.svg",
  44117. extra: 1926/1749,
  44118. bottom: 0/1926
  44119. }
  44120. },
  44121. hand: {
  44122. height: math.unit(1.53, "feet"),
  44123. name: "Hand",
  44124. image: {
  44125. source: "./media/characters/astra/hand.svg"
  44126. }
  44127. },
  44128. paw: {
  44129. height: math.unit(1.53, "feet"),
  44130. name: "Paw",
  44131. image: {
  44132. source: "./media/characters/astra/paw.svg"
  44133. }
  44134. },
  44135. },
  44136. [
  44137. {
  44138. name: "Smallest",
  44139. height: math.unit(20, "feet")
  44140. },
  44141. {
  44142. name: "Normal",
  44143. height: math.unit(1e9, "miles"),
  44144. default: true
  44145. },
  44146. {
  44147. name: "Larger",
  44148. height: math.unit(5, "multiverses")
  44149. },
  44150. {
  44151. name: "Largest",
  44152. height: math.unit(1e9, "multiverses")
  44153. },
  44154. ]
  44155. ))
  44156. characterMakers.push(() => makeCharacter(
  44157. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44158. {
  44159. front: {
  44160. height: math.unit(8, "feet"),
  44161. name: "Front",
  44162. image: {
  44163. source: "./media/characters/breanna/front.svg",
  44164. extra: 1912/1632,
  44165. bottom: 33/1945
  44166. }
  44167. },
  44168. },
  44169. [
  44170. {
  44171. name: "Smallest",
  44172. height: math.unit(8, "feet")
  44173. },
  44174. {
  44175. name: "Normal",
  44176. height: math.unit(1, "mile"),
  44177. default: true
  44178. },
  44179. {
  44180. name: "Maximum",
  44181. height: math.unit(1500000000000, "lightyears")
  44182. },
  44183. ]
  44184. ))
  44185. characterMakers.push(() => makeCharacter(
  44186. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44187. {
  44188. front: {
  44189. height: math.unit(5 + 11/12, "feet"),
  44190. weight: math.unit(155, "lb"),
  44191. name: "Front",
  44192. image: {
  44193. source: "./media/characters/cai/front.svg",
  44194. extra: 1823/1702,
  44195. bottom: 32/1855
  44196. }
  44197. },
  44198. back: {
  44199. height: math.unit(5 + 11/12, "feet"),
  44200. weight: math.unit(155, "lb"),
  44201. name: "Back",
  44202. image: {
  44203. source: "./media/characters/cai/back.svg",
  44204. extra: 1809/1708,
  44205. bottom: 31/1840
  44206. }
  44207. },
  44208. },
  44209. [
  44210. {
  44211. name: "Normal",
  44212. height: math.unit(5 + 11/12, "feet"),
  44213. default: true
  44214. },
  44215. {
  44216. name: "Big",
  44217. height: math.unit(15, "feet")
  44218. },
  44219. {
  44220. name: "Macro",
  44221. height: math.unit(200, "feet")
  44222. },
  44223. ]
  44224. ))
  44225. characterMakers.push(() => makeCharacter(
  44226. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44227. {
  44228. front: {
  44229. height: math.unit(5 + 6/12, "feet"),
  44230. weight: math.unit(160, "lb"),
  44231. name: "Front",
  44232. image: {
  44233. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44234. extra: 1227/1174,
  44235. bottom: 37/1264
  44236. }
  44237. },
  44238. },
  44239. [
  44240. {
  44241. name: "Macro",
  44242. height: math.unit(444, "meters"),
  44243. default: true
  44244. },
  44245. ]
  44246. ))
  44247. characterMakers.push(() => makeCharacter(
  44248. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44249. {
  44250. front: {
  44251. height: math.unit(18 + 7/12, "feet"),
  44252. name: "Front",
  44253. image: {
  44254. source: "./media/characters/rex/front.svg",
  44255. extra: 1941/1807,
  44256. bottom: 66/2007
  44257. }
  44258. },
  44259. back: {
  44260. height: math.unit(18 + 7/12, "feet"),
  44261. name: "Back",
  44262. image: {
  44263. source: "./media/characters/rex/back.svg",
  44264. extra: 1937/1822,
  44265. bottom: 42/1979
  44266. }
  44267. },
  44268. boot: {
  44269. height: math.unit(3.45, "feet"),
  44270. name: "Boot",
  44271. image: {
  44272. source: "./media/characters/rex/boot.svg"
  44273. }
  44274. },
  44275. paw: {
  44276. height: math.unit(4.17, "feet"),
  44277. name: "Paw",
  44278. image: {
  44279. source: "./media/characters/rex/paw.svg"
  44280. }
  44281. },
  44282. head: {
  44283. height: math.unit(6.728, "feet"),
  44284. name: "Head",
  44285. image: {
  44286. source: "./media/characters/rex/head.svg"
  44287. }
  44288. },
  44289. },
  44290. [
  44291. {
  44292. name: "Nano",
  44293. height: math.unit(18 + 7/12, "feet")
  44294. },
  44295. {
  44296. name: "Micro",
  44297. height: math.unit(1.5, "megameters")
  44298. },
  44299. {
  44300. name: "Normal",
  44301. height: math.unit(440, "megameters"),
  44302. default: true
  44303. },
  44304. {
  44305. name: "Macro",
  44306. height: math.unit(2.5, "gigameters")
  44307. },
  44308. {
  44309. name: "Gigamacro",
  44310. height: math.unit(2, "galaxies")
  44311. },
  44312. ]
  44313. ))
  44314. characterMakers.push(() => makeCharacter(
  44315. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44316. {
  44317. side: {
  44318. height: math.unit(32, "feet"),
  44319. weight: math.unit(250000, "lb"),
  44320. name: "Side",
  44321. image: {
  44322. source: "./media/characters/silverwing/side.svg",
  44323. extra: 1100/1019,
  44324. bottom: 204/1304
  44325. }
  44326. },
  44327. },
  44328. [
  44329. {
  44330. name: "Normal",
  44331. height: math.unit(32, "feet"),
  44332. default: true
  44333. },
  44334. ]
  44335. ))
  44336. characterMakers.push(() => makeCharacter(
  44337. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44338. {
  44339. front: {
  44340. height: math.unit(6 + 6/12, "feet"),
  44341. weight: math.unit(350, "lb"),
  44342. name: "Front",
  44343. image: {
  44344. source: "./media/characters/tristan-hawthorne/front.svg",
  44345. extra: 1159/1124,
  44346. bottom: 37/1196
  44347. },
  44348. form: "labrador",
  44349. default: true
  44350. },
  44351. skunkFront: {
  44352. height: math.unit(4 + 6/12, "feet"),
  44353. weight: math.unit(120, "lb"),
  44354. name: "Front",
  44355. image: {
  44356. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44357. extra: 1609/1551,
  44358. bottom: 169/1778
  44359. },
  44360. form: "skunk",
  44361. default: true
  44362. },
  44363. },
  44364. [
  44365. {
  44366. name: "Normal",
  44367. height: math.unit(6 + 6/12, "feet"),
  44368. form: "labrador",
  44369. default: true
  44370. },
  44371. {
  44372. name: "Normal",
  44373. height: math.unit(4 + 6/12, "feet"),
  44374. form: "skunk",
  44375. default: true
  44376. },
  44377. ],
  44378. {
  44379. "labrador": {
  44380. name: "Labrador",
  44381. default: true
  44382. },
  44383. "skunk": {
  44384. name: "Skunk"
  44385. }
  44386. }
  44387. ))
  44388. characterMakers.push(() => makeCharacter(
  44389. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44390. {
  44391. front: {
  44392. height: math.unit(5 + 11/12, "feet"),
  44393. weight: math.unit(190, "lb"),
  44394. name: "Front",
  44395. image: {
  44396. source: "./media/characters/mizu/front.svg",
  44397. extra: 1988/1788,
  44398. bottom: 14/2002
  44399. }
  44400. },
  44401. },
  44402. [
  44403. {
  44404. name: "Normal",
  44405. height: math.unit(5 + 11/12, "feet"),
  44406. default: true
  44407. },
  44408. ]
  44409. ))
  44410. characterMakers.push(() => makeCharacter(
  44411. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44412. {
  44413. front: {
  44414. height: math.unit(1.7, "feet"),
  44415. weight: math.unit(50, "lb"),
  44416. name: "Front",
  44417. image: {
  44418. source: "./media/characters/dechroma/front.svg",
  44419. extra: 1095/859,
  44420. bottom: 64/1159
  44421. }
  44422. },
  44423. },
  44424. [
  44425. {
  44426. name: "Normal",
  44427. height: math.unit(1.7, "feet"),
  44428. default: true
  44429. },
  44430. ]
  44431. ))
  44432. characterMakers.push(() => makeCharacter(
  44433. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44434. {
  44435. side: {
  44436. height: math.unit(30, "feet"),
  44437. name: "Side",
  44438. image: {
  44439. source: "./media/characters/veluren-thanazel/side.svg",
  44440. extra: 1611/633,
  44441. bottom: 118/1729
  44442. }
  44443. },
  44444. front: {
  44445. height: math.unit(30, "feet"),
  44446. name: "Front",
  44447. image: {
  44448. source: "./media/characters/veluren-thanazel/front.svg",
  44449. extra: 1486/636,
  44450. bottom: 238/1724
  44451. }
  44452. },
  44453. head: {
  44454. height: math.unit(21.4, "feet"),
  44455. name: "Head",
  44456. image: {
  44457. source: "./media/characters/veluren-thanazel/head.svg"
  44458. }
  44459. },
  44460. genitals: {
  44461. height: math.unit(19.4, "feet"),
  44462. name: "Genitals",
  44463. image: {
  44464. source: "./media/characters/veluren-thanazel/genitals.svg"
  44465. }
  44466. },
  44467. },
  44468. [
  44469. {
  44470. name: "Social",
  44471. height: math.unit(6, "feet")
  44472. },
  44473. {
  44474. name: "Play",
  44475. height: math.unit(12, "feet")
  44476. },
  44477. {
  44478. name: "True",
  44479. height: math.unit(30, "feet"),
  44480. default: true
  44481. },
  44482. ]
  44483. ))
  44484. characterMakers.push(() => makeCharacter(
  44485. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44486. {
  44487. front: {
  44488. height: math.unit(7 + 6/12, "feet"),
  44489. weight: math.unit(500, "kg"),
  44490. name: "Front",
  44491. image: {
  44492. source: "./media/characters/arcturas/front.svg",
  44493. extra: 1700/1500,
  44494. bottom: 145/1845
  44495. }
  44496. },
  44497. },
  44498. [
  44499. {
  44500. name: "Normal",
  44501. height: math.unit(7 + 6/12, "feet"),
  44502. default: true
  44503. },
  44504. ]
  44505. ))
  44506. characterMakers.push(() => makeCharacter(
  44507. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44508. {
  44509. side: {
  44510. height: math.unit(6, "feet"),
  44511. weight: math.unit(2, "tons"),
  44512. name: "Side",
  44513. image: {
  44514. source: "./media/characters/vitaen/side.svg",
  44515. extra: 1157/617,
  44516. bottom: 122/1279
  44517. }
  44518. },
  44519. },
  44520. [
  44521. {
  44522. name: "Normal",
  44523. height: math.unit(6, "feet"),
  44524. default: true
  44525. },
  44526. ]
  44527. ))
  44528. characterMakers.push(() => makeCharacter(
  44529. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44530. {
  44531. front: {
  44532. height: math.unit(19, "feet"),
  44533. name: "Front",
  44534. image: {
  44535. source: "./media/characters/fia-dreamweaver/front.svg",
  44536. extra: 1630/1504,
  44537. bottom: 25/1655
  44538. }
  44539. },
  44540. },
  44541. [
  44542. {
  44543. name: "Normal",
  44544. height: math.unit(19, "feet"),
  44545. default: true
  44546. },
  44547. ]
  44548. ))
  44549. characterMakers.push(() => makeCharacter(
  44550. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44551. {
  44552. front: {
  44553. height: math.unit(5 + 4/12, "feet"),
  44554. name: "Front",
  44555. image: {
  44556. source: "./media/characters/artan/front.svg",
  44557. extra: 1618/1535,
  44558. bottom: 46/1664
  44559. }
  44560. },
  44561. back: {
  44562. height: math.unit(5 + 4/12, "feet"),
  44563. name: "Back",
  44564. image: {
  44565. source: "./media/characters/artan/back.svg",
  44566. extra: 1618/1543,
  44567. bottom: 31/1649
  44568. }
  44569. },
  44570. },
  44571. [
  44572. {
  44573. name: "Normal",
  44574. height: math.unit(5 + 4/12, "feet"),
  44575. default: true
  44576. },
  44577. ]
  44578. ))
  44579. characterMakers.push(() => makeCharacter(
  44580. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44581. {
  44582. side: {
  44583. height: math.unit(182, "cm"),
  44584. weight: math.unit(1000, "lb"),
  44585. name: "Side",
  44586. image: {
  44587. source: "./media/characters/silver-dragon/side.svg",
  44588. extra: 710/287,
  44589. bottom: 88/798
  44590. }
  44591. },
  44592. },
  44593. [
  44594. {
  44595. name: "Normal",
  44596. height: math.unit(182, "cm"),
  44597. default: true
  44598. },
  44599. ]
  44600. ))
  44601. characterMakers.push(() => makeCharacter(
  44602. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44603. {
  44604. side: {
  44605. height: math.unit(6 + 6/12, "feet"),
  44606. weight: math.unit(1.5, "tons"),
  44607. name: "Side",
  44608. image: {
  44609. source: "./media/characters/zephyr/side.svg",
  44610. extra: 1433/586,
  44611. bottom: 109/1542
  44612. }
  44613. },
  44614. },
  44615. [
  44616. {
  44617. name: "Normal",
  44618. height: math.unit(6 + 6/12, "feet"),
  44619. default: true
  44620. },
  44621. ]
  44622. ))
  44623. characterMakers.push(() => makeCharacter(
  44624. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44625. {
  44626. side: {
  44627. height: math.unit(1, "feet"),
  44628. name: "Side",
  44629. image: {
  44630. source: "./media/characters/vixye/side.svg",
  44631. extra: 632/541,
  44632. bottom: 0/632
  44633. }
  44634. },
  44635. },
  44636. [
  44637. {
  44638. name: "Normal",
  44639. height: math.unit(1, "feet"),
  44640. default: true
  44641. },
  44642. {
  44643. name: "True",
  44644. height: math.unit(1e15, "multiverses")
  44645. },
  44646. ]
  44647. ))
  44648. characterMakers.push(() => makeCharacter(
  44649. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44650. {
  44651. front: {
  44652. height: math.unit(8 + 2/12, "feet"),
  44653. weight: math.unit(650, "lb"),
  44654. name: "Front",
  44655. image: {
  44656. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44657. extra: 1174/1137,
  44658. bottom: 82/1256
  44659. }
  44660. },
  44661. back: {
  44662. height: math.unit(8 + 2/12, "feet"),
  44663. weight: math.unit(650, "lb"),
  44664. name: "Back",
  44665. image: {
  44666. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44667. extra: 1204/1157,
  44668. bottom: 46/1250
  44669. }
  44670. },
  44671. },
  44672. [
  44673. {
  44674. name: "Wildform",
  44675. height: math.unit(8 + 2/12, "feet"),
  44676. default: true
  44677. },
  44678. ]
  44679. ))
  44680. characterMakers.push(() => makeCharacter(
  44681. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44682. {
  44683. front: {
  44684. height: math.unit(18, "feet"),
  44685. name: "Front",
  44686. image: {
  44687. source: "./media/characters/cyphin/front.svg",
  44688. extra: 970/886,
  44689. bottom: 42/1012
  44690. }
  44691. },
  44692. back: {
  44693. height: math.unit(18, "feet"),
  44694. name: "Back",
  44695. image: {
  44696. source: "./media/characters/cyphin/back.svg",
  44697. extra: 1009/894,
  44698. bottom: 24/1033
  44699. }
  44700. },
  44701. head: {
  44702. height: math.unit(5.05, "feet"),
  44703. name: "Head",
  44704. image: {
  44705. source: "./media/characters/cyphin/head.svg"
  44706. }
  44707. },
  44708. tailbud: {
  44709. height: math.unit(5, "feet"),
  44710. name: "Tailbud",
  44711. image: {
  44712. source: "./media/characters/cyphin/tailbud.svg"
  44713. }
  44714. },
  44715. },
  44716. [
  44717. ]
  44718. ))
  44719. characterMakers.push(() => makeCharacter(
  44720. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44721. {
  44722. side: {
  44723. height: math.unit(10, "feet"),
  44724. weight: math.unit(6, "tons"),
  44725. name: "Side",
  44726. image: {
  44727. source: "./media/characters/raijin/side.svg",
  44728. extra: 1529/613,
  44729. bottom: 337/1866
  44730. }
  44731. },
  44732. },
  44733. [
  44734. {
  44735. name: "Normal",
  44736. height: math.unit(10, "feet"),
  44737. default: true
  44738. },
  44739. ]
  44740. ))
  44741. characterMakers.push(() => makeCharacter(
  44742. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44743. {
  44744. side: {
  44745. height: math.unit(9, "feet"),
  44746. name: "Side",
  44747. image: {
  44748. source: "./media/characters/nilghais/side.svg",
  44749. extra: 1047/744,
  44750. bottom: 91/1138
  44751. }
  44752. },
  44753. head: {
  44754. height: math.unit(3.14, "feet"),
  44755. name: "Head",
  44756. image: {
  44757. source: "./media/characters/nilghais/head.svg"
  44758. }
  44759. },
  44760. mouth: {
  44761. height: math.unit(4.6, "feet"),
  44762. name: "Mouth",
  44763. image: {
  44764. source: "./media/characters/nilghais/mouth.svg"
  44765. }
  44766. },
  44767. wings: {
  44768. height: math.unit(24, "feet"),
  44769. name: "Wings",
  44770. image: {
  44771. source: "./media/characters/nilghais/wings.svg"
  44772. }
  44773. },
  44774. ass: {
  44775. height: math.unit(6.12, "feet"),
  44776. name: "Ass",
  44777. image: {
  44778. source: "./media/characters/nilghais/ass.svg"
  44779. }
  44780. },
  44781. },
  44782. [
  44783. {
  44784. name: "Normal",
  44785. height: math.unit(9, "feet"),
  44786. default: true
  44787. },
  44788. ]
  44789. ))
  44790. characterMakers.push(() => makeCharacter(
  44791. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44792. {
  44793. regular: {
  44794. height: math.unit(16 + 2/12, "feet"),
  44795. weight: math.unit(2300, "lb"),
  44796. name: "Regular",
  44797. image: {
  44798. source: "./media/characters/zolgar/regular.svg",
  44799. extra: 1246/1004,
  44800. bottom: 124/1370
  44801. }
  44802. },
  44803. boxers: {
  44804. height: math.unit(16 + 2/12, "feet"),
  44805. weight: math.unit(2300, "lb"),
  44806. name: "Boxers",
  44807. image: {
  44808. source: "./media/characters/zolgar/boxers.svg",
  44809. extra: 1246/1004,
  44810. bottom: 124/1370
  44811. }
  44812. },
  44813. armored: {
  44814. height: math.unit(16 + 2/12, "feet"),
  44815. weight: math.unit(2300, "lb"),
  44816. name: "Armored",
  44817. image: {
  44818. source: "./media/characters/zolgar/armored.svg",
  44819. extra: 1246/1004,
  44820. bottom: 124/1370
  44821. }
  44822. },
  44823. goth: {
  44824. height: math.unit(16 + 2/12, "feet"),
  44825. weight: math.unit(2300, "lb"),
  44826. name: "Goth",
  44827. image: {
  44828. source: "./media/characters/zolgar/goth.svg",
  44829. extra: 1246/1004,
  44830. bottom: 124/1370
  44831. }
  44832. },
  44833. },
  44834. [
  44835. {
  44836. name: "Shrunken Down",
  44837. height: math.unit(9 + 2/12, "feet")
  44838. },
  44839. {
  44840. name: "Normal",
  44841. height: math.unit(16 + 2/12, "feet"),
  44842. default: true
  44843. },
  44844. ]
  44845. ))
  44846. characterMakers.push(() => makeCharacter(
  44847. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44848. {
  44849. front: {
  44850. height: math.unit(6, "feet"),
  44851. weight: math.unit(168, "lb"),
  44852. name: "Front",
  44853. image: {
  44854. source: "./media/characters/luca/front.svg",
  44855. extra: 841/667,
  44856. bottom: 102/943
  44857. }
  44858. },
  44859. },
  44860. [
  44861. {
  44862. name: "Normal",
  44863. height: math.unit(6, "feet"),
  44864. default: true
  44865. },
  44866. ]
  44867. ))
  44868. characterMakers.push(() => makeCharacter(
  44869. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44870. {
  44871. side: {
  44872. height: math.unit(7 + 3/12, "feet"),
  44873. weight: math.unit(312, "lb"),
  44874. name: "Side",
  44875. image: {
  44876. source: "./media/characters/zezo/side.svg",
  44877. extra: 1192/1067,
  44878. bottom: 63/1255
  44879. }
  44880. },
  44881. },
  44882. [
  44883. {
  44884. name: "Normal",
  44885. height: math.unit(7 + 3/12, "feet"),
  44886. default: true
  44887. },
  44888. ]
  44889. ))
  44890. characterMakers.push(() => makeCharacter(
  44891. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44892. {
  44893. front: {
  44894. height: math.unit(5 + 5/12, "feet"),
  44895. weight: math.unit(170, "lb"),
  44896. name: "Front",
  44897. image: {
  44898. source: "./media/characters/mayso/front.svg",
  44899. extra: 1215/1108,
  44900. bottom: 16/1231
  44901. }
  44902. },
  44903. },
  44904. [
  44905. {
  44906. name: "Normal",
  44907. height: math.unit(5 + 5/12, "feet"),
  44908. default: true
  44909. },
  44910. ]
  44911. ))
  44912. characterMakers.push(() => makeCharacter(
  44913. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44914. {
  44915. front: {
  44916. height: math.unit(4 + 3/12, "feet"),
  44917. weight: math.unit(80, "lb"),
  44918. name: "Front",
  44919. image: {
  44920. source: "./media/characters/hess/front.svg",
  44921. extra: 1200/1123,
  44922. bottom: 16/1216
  44923. }
  44924. },
  44925. },
  44926. [
  44927. {
  44928. name: "Normal",
  44929. height: math.unit(4 + 3/12, "feet"),
  44930. default: true
  44931. },
  44932. ]
  44933. ))
  44934. characterMakers.push(() => makeCharacter(
  44935. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44936. {
  44937. front: {
  44938. height: math.unit(1.9, "meters"),
  44939. name: "Front",
  44940. image: {
  44941. source: "./media/characters/ashgar/front.svg",
  44942. extra: 1177/1146,
  44943. bottom: 99/1276
  44944. }
  44945. },
  44946. back: {
  44947. height: math.unit(1.9, "meters"),
  44948. name: "Back",
  44949. image: {
  44950. source: "./media/characters/ashgar/back.svg",
  44951. extra: 1201/1183,
  44952. bottom: 53/1254
  44953. }
  44954. },
  44955. feral: {
  44956. height: math.unit(1.4, "meters"),
  44957. name: "Feral",
  44958. image: {
  44959. source: "./media/characters/ashgar/feral.svg",
  44960. extra: 370/345,
  44961. bottom: 45/415
  44962. }
  44963. },
  44964. },
  44965. [
  44966. {
  44967. name: "Normal",
  44968. height: math.unit(1.9, "meters"),
  44969. default: true
  44970. },
  44971. ]
  44972. ))
  44973. characterMakers.push(() => makeCharacter(
  44974. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44975. {
  44976. regular: {
  44977. height: math.unit(6, "feet"),
  44978. weight: math.unit(220, "lb"),
  44979. name: "Regular",
  44980. image: {
  44981. source: "./media/characters/phillip/regular.svg",
  44982. extra: 1373/1277,
  44983. bottom: 75/1448
  44984. }
  44985. },
  44986. dressed: {
  44987. height: math.unit(6, "feet"),
  44988. weight: math.unit(220, "lb"),
  44989. name: "Dressed",
  44990. image: {
  44991. source: "./media/characters/phillip/dressed.svg",
  44992. extra: 1373/1277,
  44993. bottom: 75/1448
  44994. }
  44995. },
  44996. paw: {
  44997. height: math.unit(1.44, "feet"),
  44998. name: "Paw",
  44999. image: {
  45000. source: "./media/characters/phillip/paw.svg"
  45001. }
  45002. },
  45003. },
  45004. [
  45005. {
  45006. name: "Normal",
  45007. height: math.unit(6, "feet"),
  45008. default: true
  45009. },
  45010. ]
  45011. ))
  45012. characterMakers.push(() => makeCharacter(
  45013. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45014. {
  45015. side: {
  45016. height: math.unit(42, "feet"),
  45017. name: "Side",
  45018. image: {
  45019. source: "./media/characters/uvula/side.svg",
  45020. extra: 683/586,
  45021. bottom: 60/743
  45022. }
  45023. },
  45024. front: {
  45025. height: math.unit(42, "feet"),
  45026. name: "Front",
  45027. image: {
  45028. source: "./media/characters/uvula/front.svg",
  45029. extra: 705/613,
  45030. bottom: 54/759
  45031. }
  45032. },
  45033. maw: {
  45034. height: math.unit(23.5, "feet"),
  45035. name: "Maw",
  45036. image: {
  45037. source: "./media/characters/uvula/maw.svg"
  45038. }
  45039. },
  45040. },
  45041. [
  45042. {
  45043. name: "Original Size",
  45044. height: math.unit(14, "inches")
  45045. },
  45046. {
  45047. name: "Human Size",
  45048. height: math.unit(6, "feet")
  45049. },
  45050. {
  45051. name: "Big",
  45052. height: math.unit(42, "feet"),
  45053. default: true
  45054. },
  45055. {
  45056. name: "Bigger",
  45057. height: math.unit(100, "feet")
  45058. },
  45059. ]
  45060. ))
  45061. characterMakers.push(() => makeCharacter(
  45062. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45063. {
  45064. front: {
  45065. height: math.unit(5 + 11/12, "feet"),
  45066. name: "Front",
  45067. image: {
  45068. source: "./media/characters/lannah/front.svg",
  45069. extra: 1208/1113,
  45070. bottom: 97/1305
  45071. }
  45072. },
  45073. },
  45074. [
  45075. {
  45076. name: "Normal",
  45077. height: math.unit(5 + 11/12, "feet"),
  45078. default: true
  45079. },
  45080. ]
  45081. ))
  45082. characterMakers.push(() => makeCharacter(
  45083. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45084. {
  45085. front: {
  45086. height: math.unit(6 + 3/12, "feet"),
  45087. weight: math.unit(3.5, "tons"),
  45088. name: "Front",
  45089. image: {
  45090. source: "./media/characters/emberflame/front.svg",
  45091. extra: 1198/672,
  45092. bottom: 82/1280
  45093. }
  45094. },
  45095. side: {
  45096. height: math.unit(6 + 3/12, "feet"),
  45097. weight: math.unit(3.5, "tons"),
  45098. name: "Side",
  45099. image: {
  45100. source: "./media/characters/emberflame/side.svg",
  45101. extra: 938/527,
  45102. bottom: 56/994
  45103. }
  45104. },
  45105. },
  45106. [
  45107. {
  45108. name: "Normal",
  45109. height: math.unit(6 + 3/12, "feet"),
  45110. default: true
  45111. },
  45112. ]
  45113. ))
  45114. characterMakers.push(() => makeCharacter(
  45115. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45116. {
  45117. side: {
  45118. height: math.unit(17.5, "feet"),
  45119. weight: math.unit(35, "tons"),
  45120. name: "Side",
  45121. image: {
  45122. source: "./media/characters/sophie-ambrose/side.svg",
  45123. extra: 1573/1242,
  45124. bottom: 71/1644
  45125. }
  45126. },
  45127. maw: {
  45128. height: math.unit(7.4, "feet"),
  45129. name: "Maw",
  45130. image: {
  45131. source: "./media/characters/sophie-ambrose/maw.svg"
  45132. }
  45133. },
  45134. },
  45135. [
  45136. {
  45137. name: "Normal",
  45138. height: math.unit(17.5, "feet"),
  45139. default: true
  45140. },
  45141. ]
  45142. ))
  45143. characterMakers.push(() => makeCharacter(
  45144. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45145. {
  45146. front: {
  45147. height: math.unit(280, "feet"),
  45148. weight: math.unit(550, "tons"),
  45149. name: "Front",
  45150. image: {
  45151. source: "./media/characters/king-mugi/front.svg",
  45152. extra: 1102/947,
  45153. bottom: 104/1206
  45154. }
  45155. },
  45156. },
  45157. [
  45158. {
  45159. name: "King Mugi",
  45160. height: math.unit(280, "feet"),
  45161. default: true
  45162. },
  45163. ]
  45164. ))
  45165. characterMakers.push(() => makeCharacter(
  45166. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45167. {
  45168. front: {
  45169. height: math.unit(64, "meters"),
  45170. name: "Front",
  45171. image: {
  45172. source: "./media/characters/nova-fox/front.svg",
  45173. extra: 1310/1246,
  45174. bottom: 65/1375
  45175. }
  45176. },
  45177. },
  45178. [
  45179. {
  45180. name: "Macro",
  45181. height: math.unit(64, "meters"),
  45182. default: true
  45183. },
  45184. ]
  45185. ))
  45186. characterMakers.push(() => makeCharacter(
  45187. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45188. {
  45189. front: {
  45190. height: math.unit(6 + 3/12, "feet"),
  45191. weight: math.unit(170, "lb"),
  45192. name: "Front",
  45193. image: {
  45194. source: "./media/characters/sam-bat/front.svg",
  45195. extra: 1601/1411,
  45196. bottom: 125/1726
  45197. }
  45198. },
  45199. back: {
  45200. height: math.unit(6 + 3/12, "feet"),
  45201. weight: math.unit(170, "lb"),
  45202. name: "Back",
  45203. image: {
  45204. source: "./media/characters/sam-bat/back.svg",
  45205. extra: 1577/1405,
  45206. bottom: 58/1635
  45207. }
  45208. },
  45209. },
  45210. [
  45211. {
  45212. name: "Normal",
  45213. height: math.unit(6 + 3/12, "feet"),
  45214. default: true
  45215. },
  45216. ]
  45217. ))
  45218. characterMakers.push(() => makeCharacter(
  45219. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45220. {
  45221. front: {
  45222. height: math.unit(59, "feet"),
  45223. weight: math.unit(40000, "lb"),
  45224. name: "Front",
  45225. image: {
  45226. source: "./media/characters/inari/front.svg",
  45227. extra: 1884/1350,
  45228. bottom: 95/1979
  45229. }
  45230. },
  45231. },
  45232. [
  45233. {
  45234. name: "Gigantamax",
  45235. height: math.unit(59, "feet"),
  45236. default: true
  45237. },
  45238. ]
  45239. ))
  45240. characterMakers.push(() => makeCharacter(
  45241. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45242. {
  45243. front: {
  45244. height: math.unit(5 + 8/12, "feet"),
  45245. name: "Front",
  45246. image: {
  45247. source: "./media/characters/elizabeth/front.svg",
  45248. extra: 1395/1298,
  45249. bottom: 54/1449
  45250. }
  45251. },
  45252. mouth: {
  45253. height: math.unit(1.97, "feet"),
  45254. name: "Mouth",
  45255. image: {
  45256. source: "./media/characters/elizabeth/mouth.svg"
  45257. }
  45258. },
  45259. foot: {
  45260. height: math.unit(1.17, "feet"),
  45261. name: "Foot",
  45262. image: {
  45263. source: "./media/characters/elizabeth/foot.svg"
  45264. }
  45265. },
  45266. },
  45267. [
  45268. {
  45269. name: "Normal",
  45270. height: math.unit(5 + 8/12, "feet"),
  45271. default: true
  45272. },
  45273. {
  45274. name: "Minimacro",
  45275. height: math.unit(18, "feet")
  45276. },
  45277. {
  45278. name: "Macro",
  45279. height: math.unit(180, "feet")
  45280. },
  45281. ]
  45282. ))
  45283. characterMakers.push(() => makeCharacter(
  45284. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45285. {
  45286. front: {
  45287. height: math.unit(5 + 2/12, "feet"),
  45288. name: "Front",
  45289. image: {
  45290. source: "./media/characters/october-gossamer/front.svg",
  45291. extra: 505/454,
  45292. bottom: 7/512
  45293. }
  45294. },
  45295. back: {
  45296. height: math.unit(5 + 2/12, "feet"),
  45297. name: "Back",
  45298. image: {
  45299. source: "./media/characters/october-gossamer/back.svg",
  45300. extra: 501/454,
  45301. bottom: 11/512
  45302. }
  45303. },
  45304. },
  45305. [
  45306. {
  45307. name: "Normal",
  45308. height: math.unit(5 + 2/12, "feet"),
  45309. default: true
  45310. },
  45311. ]
  45312. ))
  45313. characterMakers.push(() => makeCharacter(
  45314. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45315. {
  45316. front: {
  45317. height: math.unit(5, "feet"),
  45318. name: "Front",
  45319. image: {
  45320. source: "./media/characters/epiglottis/front.svg",
  45321. extra: 923/849,
  45322. bottom: 17/940
  45323. }
  45324. },
  45325. },
  45326. [
  45327. {
  45328. name: "Original Size",
  45329. height: math.unit(10, "inches")
  45330. },
  45331. {
  45332. name: "Human Size",
  45333. height: math.unit(5, "feet"),
  45334. default: true
  45335. },
  45336. {
  45337. name: "Big",
  45338. height: math.unit(25, "feet")
  45339. },
  45340. {
  45341. name: "Bigger",
  45342. height: math.unit(50, "feet")
  45343. },
  45344. {
  45345. name: "oh lawd",
  45346. height: math.unit(75, "feet")
  45347. },
  45348. ]
  45349. ))
  45350. characterMakers.push(() => makeCharacter(
  45351. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45352. {
  45353. front: {
  45354. height: math.unit(2 + 4/12, "feet"),
  45355. weight: math.unit(60, "lb"),
  45356. name: "Front",
  45357. image: {
  45358. source: "./media/characters/lerm/front.svg",
  45359. extra: 796/790,
  45360. bottom: 79/875
  45361. }
  45362. },
  45363. },
  45364. [
  45365. {
  45366. name: "Normal",
  45367. height: math.unit(2 + 4/12, "feet"),
  45368. default: true
  45369. },
  45370. ]
  45371. ))
  45372. characterMakers.push(() => makeCharacter(
  45373. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45374. {
  45375. front: {
  45376. height: math.unit(5.5, "feet"),
  45377. weight: math.unit(130, "lb"),
  45378. name: "Front",
  45379. image: {
  45380. source: "./media/characters/xena-nebadon/front.svg",
  45381. extra: 1828/1730,
  45382. bottom: 79/1907
  45383. }
  45384. },
  45385. },
  45386. [
  45387. {
  45388. name: "Tiny Puppy",
  45389. height: math.unit(3, "inches")
  45390. },
  45391. {
  45392. name: "Normal",
  45393. height: math.unit(5.5, "feet"),
  45394. default: true
  45395. },
  45396. {
  45397. name: "Lotta Lady",
  45398. height: math.unit(12, "feet")
  45399. },
  45400. {
  45401. name: "Pretty Big",
  45402. height: math.unit(100, "feet")
  45403. },
  45404. {
  45405. name: "Big",
  45406. height: math.unit(500, "feet")
  45407. },
  45408. {
  45409. name: "Skyscraper Toys",
  45410. height: math.unit(2500, "feet")
  45411. },
  45412. {
  45413. name: "Plane Catcher",
  45414. height: math.unit(8, "miles")
  45415. },
  45416. {
  45417. name: "Planet Toys",
  45418. height: math.unit(15, "earths")
  45419. },
  45420. {
  45421. name: "Stardust",
  45422. height: math.unit(0.25, "galaxies")
  45423. },
  45424. {
  45425. name: "Snacks",
  45426. height: math.unit(70, "universes")
  45427. },
  45428. ]
  45429. ))
  45430. characterMakers.push(() => makeCharacter(
  45431. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45432. {
  45433. front: {
  45434. height: math.unit(1.6, "meters"),
  45435. weight: math.unit(60, "kg"),
  45436. name: "Front",
  45437. image: {
  45438. source: "./media/characters/bounty/front.svg",
  45439. extra: 1426/1308,
  45440. bottom: 15/1441
  45441. }
  45442. },
  45443. back: {
  45444. height: math.unit(1.6, "meters"),
  45445. weight: math.unit(60, "kg"),
  45446. name: "Back",
  45447. image: {
  45448. source: "./media/characters/bounty/back.svg",
  45449. extra: 1417/1307,
  45450. bottom: 8/1425
  45451. }
  45452. },
  45453. },
  45454. [
  45455. {
  45456. name: "Normal",
  45457. height: math.unit(1.6, "meters"),
  45458. default: true
  45459. },
  45460. {
  45461. name: "Macro",
  45462. height: math.unit(300, "meters")
  45463. },
  45464. ]
  45465. ))
  45466. characterMakers.push(() => makeCharacter(
  45467. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45468. {
  45469. front: {
  45470. height: math.unit(2 + 8/12, "feet"),
  45471. weight: math.unit(15, "lb"),
  45472. name: "Front",
  45473. image: {
  45474. source: "./media/characters/mochi/front.svg",
  45475. extra: 1022/852,
  45476. bottom: 435/1457
  45477. }
  45478. },
  45479. back: {
  45480. height: math.unit(2 + 8/12, "feet"),
  45481. weight: math.unit(15, "lb"),
  45482. name: "Back",
  45483. image: {
  45484. source: "./media/characters/mochi/back.svg",
  45485. extra: 1335/1119,
  45486. bottom: 39/1374
  45487. }
  45488. },
  45489. bird: {
  45490. height: math.unit(2 + 8/12, "feet"),
  45491. weight: math.unit(15, "lb"),
  45492. name: "Bird",
  45493. image: {
  45494. source: "./media/characters/mochi/bird.svg",
  45495. extra: 1251/1113,
  45496. bottom: 178/1429
  45497. }
  45498. },
  45499. kaiju: {
  45500. height: math.unit(154, "feet"),
  45501. weight: math.unit(1e7, "lb"),
  45502. name: "Kaiju",
  45503. image: {
  45504. source: "./media/characters/mochi/kaiju.svg",
  45505. extra: 460/324,
  45506. bottom: 40/500
  45507. }
  45508. },
  45509. head: {
  45510. height: math.unit(1.21, "feet"),
  45511. name: "Head",
  45512. image: {
  45513. source: "./media/characters/mochi/head.svg"
  45514. }
  45515. },
  45516. alternateTail: {
  45517. height: math.unit(2 + 8/12, "feet"),
  45518. weight: math.unit(45, "lb"),
  45519. name: "Alternate Tail",
  45520. image: {
  45521. source: "./media/characters/mochi/alternate-tail.svg",
  45522. extra: 139/76,
  45523. bottom: 45/184
  45524. }
  45525. },
  45526. },
  45527. [
  45528. {
  45529. name: "Micro",
  45530. height: math.unit(2, "inches")
  45531. },
  45532. {
  45533. name: "Normal",
  45534. height: math.unit(2 + 8/12, "feet"),
  45535. default: true
  45536. },
  45537. {
  45538. name: "Macro",
  45539. height: math.unit(106, "feet")
  45540. },
  45541. ]
  45542. ))
  45543. characterMakers.push(() => makeCharacter(
  45544. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45545. {
  45546. front: {
  45547. height: math.unit(5.67, "feet"),
  45548. weight: math.unit(135, "lb"),
  45549. name: "Front",
  45550. image: {
  45551. source: "./media/characters/sarel/front.svg",
  45552. extra: 865/788,
  45553. bottom: 97/962
  45554. }
  45555. },
  45556. back: {
  45557. height: math.unit(5.67, "feet"),
  45558. weight: math.unit(135, "lb"),
  45559. name: "Back",
  45560. image: {
  45561. source: "./media/characters/sarel/back.svg",
  45562. extra: 857/777,
  45563. bottom: 32/889
  45564. }
  45565. },
  45566. chozoan: {
  45567. height: math.unit(5.67, "feet"),
  45568. weight: math.unit(135, "lb"),
  45569. name: "Chozoan",
  45570. image: {
  45571. source: "./media/characters/sarel/chozoan.svg",
  45572. extra: 865/788,
  45573. bottom: 97/962
  45574. }
  45575. },
  45576. current: {
  45577. height: math.unit(5.67, "feet"),
  45578. weight: math.unit(135, "lb"),
  45579. name: "Current",
  45580. image: {
  45581. source: "./media/characters/sarel/current.svg",
  45582. extra: 865/788,
  45583. bottom: 97/962
  45584. }
  45585. },
  45586. head: {
  45587. height: math.unit(1.77, "feet"),
  45588. name: "Head",
  45589. image: {
  45590. source: "./media/characters/sarel/head.svg"
  45591. }
  45592. },
  45593. claws: {
  45594. height: math.unit(1.8, "feet"),
  45595. name: "Claws",
  45596. image: {
  45597. source: "./media/characters/sarel/claws.svg"
  45598. }
  45599. },
  45600. clawsAlt: {
  45601. height: math.unit(1.8, "feet"),
  45602. name: "Claws-alt",
  45603. image: {
  45604. source: "./media/characters/sarel/claws-alt.svg"
  45605. }
  45606. },
  45607. },
  45608. [
  45609. {
  45610. name: "Normal",
  45611. height: math.unit(5.67, "feet"),
  45612. default: true
  45613. },
  45614. ]
  45615. ))
  45616. characterMakers.push(() => makeCharacter(
  45617. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45618. {
  45619. front: {
  45620. height: math.unit(5500, "feet"),
  45621. name: "Front",
  45622. image: {
  45623. source: "./media/characters/alyonia/front.svg",
  45624. extra: 1200/1135,
  45625. bottom: 29/1229
  45626. }
  45627. },
  45628. back: {
  45629. height: math.unit(5500, "feet"),
  45630. name: "Back",
  45631. image: {
  45632. source: "./media/characters/alyonia/back.svg",
  45633. extra: 1205/1138,
  45634. bottom: 10/1215
  45635. }
  45636. },
  45637. },
  45638. [
  45639. {
  45640. name: "Small",
  45641. height: math.unit(10, "feet")
  45642. },
  45643. {
  45644. name: "Macro",
  45645. height: math.unit(500, "feet")
  45646. },
  45647. {
  45648. name: "Mega Macro",
  45649. height: math.unit(5500, "feet"),
  45650. default: true
  45651. },
  45652. {
  45653. name: "Mega Macro+",
  45654. height: math.unit(500000, "feet")
  45655. },
  45656. {
  45657. name: "Giga Macro",
  45658. height: math.unit(3000, "miles")
  45659. },
  45660. {
  45661. name: "Tera Macro",
  45662. height: math.unit(2.8e6, "miles")
  45663. },
  45664. {
  45665. name: "Galactic",
  45666. height: math.unit(120000, "lightyears")
  45667. },
  45668. ]
  45669. ))
  45670. characterMakers.push(() => makeCharacter(
  45671. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45672. {
  45673. werewolf: {
  45674. height: math.unit(8, "feet"),
  45675. weight: math.unit(425, "lb"),
  45676. name: "Werewolf",
  45677. image: {
  45678. source: "./media/characters/autumn/werewolf.svg",
  45679. extra: 2154/2031,
  45680. bottom: 160/2314
  45681. }
  45682. },
  45683. human: {
  45684. height: math.unit(5 + 8/12, "feet"),
  45685. weight: math.unit(150, "lb"),
  45686. name: "Human",
  45687. image: {
  45688. source: "./media/characters/autumn/human.svg",
  45689. extra: 1200/1149,
  45690. bottom: 30/1230
  45691. }
  45692. },
  45693. },
  45694. [
  45695. {
  45696. name: "Normal",
  45697. height: math.unit(8, "feet"),
  45698. default: true
  45699. },
  45700. ]
  45701. ))
  45702. characterMakers.push(() => makeCharacter(
  45703. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45704. {
  45705. front: {
  45706. height: math.unit(8 + 5/12, "feet"),
  45707. weight: math.unit(825, "lb"),
  45708. name: "Front",
  45709. image: {
  45710. source: "./media/characters/cobalt-charizard/front.svg",
  45711. extra: 1268/1155,
  45712. bottom: 122/1390
  45713. }
  45714. },
  45715. side: {
  45716. height: math.unit(8 + 5/12, "feet"),
  45717. weight: math.unit(825, "lb"),
  45718. name: "Side",
  45719. image: {
  45720. source: "./media/characters/cobalt-charizard/side.svg",
  45721. extra: 1348/1257,
  45722. bottom: 58/1406
  45723. }
  45724. },
  45725. gMax: {
  45726. height: math.unit(134 + 11/12, "feet"),
  45727. name: "G-Max",
  45728. image: {
  45729. source: "./media/characters/cobalt-charizard/g-max.svg",
  45730. extra: 1835/1541,
  45731. bottom: 151/1986
  45732. }
  45733. },
  45734. },
  45735. [
  45736. {
  45737. name: "Normal",
  45738. height: math.unit(8 + 5/12, "feet"),
  45739. default: true
  45740. },
  45741. ]
  45742. ))
  45743. characterMakers.push(() => makeCharacter(
  45744. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45745. {
  45746. front: {
  45747. height: math.unit(6 + 3/12, "feet"),
  45748. weight: math.unit(210, "lb"),
  45749. name: "Front",
  45750. image: {
  45751. source: "./media/characters/stella/front.svg",
  45752. extra: 3549/3335,
  45753. bottom: 51/3600
  45754. }
  45755. },
  45756. },
  45757. [
  45758. {
  45759. name: "Normal",
  45760. height: math.unit(6 + 3/12, "feet"),
  45761. default: true
  45762. },
  45763. ]
  45764. ))
  45765. characterMakers.push(() => makeCharacter(
  45766. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45767. {
  45768. front: {
  45769. height: math.unit(5, "feet"),
  45770. weight: math.unit(90, "lb"),
  45771. name: "Front",
  45772. image: {
  45773. source: "./media/characters/riley-bishop/front.svg",
  45774. extra: 1450/1428,
  45775. bottom: 152/1602
  45776. }
  45777. },
  45778. },
  45779. [
  45780. {
  45781. name: "Normal",
  45782. height: math.unit(5, "feet"),
  45783. default: true
  45784. },
  45785. ]
  45786. ))
  45787. characterMakers.push(() => makeCharacter(
  45788. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45789. {
  45790. side: {
  45791. height: math.unit(8 + 2/12, "feet"),
  45792. weight: math.unit(500, "kg"),
  45793. name: "Side",
  45794. image: {
  45795. source: "./media/characters/theo-arcanine/side.svg",
  45796. extra: 1342/1074,
  45797. bottom: 111/1453
  45798. }
  45799. },
  45800. },
  45801. [
  45802. {
  45803. name: "Normal",
  45804. height: math.unit(8 + 2/12, "feet"),
  45805. default: true
  45806. },
  45807. ]
  45808. ))
  45809. characterMakers.push(() => makeCharacter(
  45810. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45811. {
  45812. front: {
  45813. height: math.unit(4, "feet"),
  45814. name: "Front",
  45815. image: {
  45816. source: "./media/characters/kali/front.svg",
  45817. extra: 1074/867,
  45818. bottom: 34/1108
  45819. }
  45820. },
  45821. back: {
  45822. height: math.unit(4, "feet"),
  45823. name: "Back",
  45824. image: {
  45825. source: "./media/characters/kali/back.svg",
  45826. extra: 1068/863,
  45827. bottom: 26/1094
  45828. }
  45829. },
  45830. frontAlt: {
  45831. height: math.unit(4, "feet"),
  45832. name: "Front (Alt)",
  45833. image: {
  45834. source: "./media/characters/kali/front-alt.svg",
  45835. extra: 1921/1357,
  45836. bottom: 70/1991
  45837. }
  45838. },
  45839. },
  45840. [
  45841. {
  45842. name: "Normal",
  45843. height: math.unit(4, "feet"),
  45844. default: true
  45845. },
  45846. {
  45847. name: "Big'vali",
  45848. height: math.unit(11, "feet")
  45849. },
  45850. {
  45851. name: "Macro",
  45852. height: math.unit(32, "meters")
  45853. },
  45854. {
  45855. name: "Macro+",
  45856. height: math.unit(150, "meters")
  45857. },
  45858. {
  45859. name: "Megamacro",
  45860. height: math.unit(7500, "meters")
  45861. },
  45862. {
  45863. name: "Megamacro+",
  45864. height: math.unit(80, "kilometers")
  45865. },
  45866. ]
  45867. ))
  45868. characterMakers.push(() => makeCharacter(
  45869. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45870. {
  45871. side: {
  45872. height: math.unit(5 + 11/12, "feet"),
  45873. weight: math.unit(236, "lb"),
  45874. name: "Side",
  45875. image: {
  45876. source: "./media/characters/gapp/side.svg",
  45877. extra: 775/340,
  45878. bottom: 58/833
  45879. }
  45880. },
  45881. mouth: {
  45882. height: math.unit(2.98, "feet"),
  45883. name: "Mouth",
  45884. image: {
  45885. source: "./media/characters/gapp/mouth.svg"
  45886. }
  45887. },
  45888. },
  45889. [
  45890. {
  45891. name: "Normal",
  45892. height: math.unit(5 + 1/12, "feet"),
  45893. default: true
  45894. },
  45895. ]
  45896. ))
  45897. characterMakers.push(() => makeCharacter(
  45898. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45899. {
  45900. front: {
  45901. height: math.unit(6, "feet"),
  45902. name: "Front",
  45903. image: {
  45904. source: "./media/characters/persephone/front.svg",
  45905. extra: 1895/1717,
  45906. bottom: 96/1991
  45907. }
  45908. },
  45909. back: {
  45910. height: math.unit(6, "feet"),
  45911. name: "Back",
  45912. image: {
  45913. source: "./media/characters/persephone/back.svg",
  45914. extra: 1868/1679,
  45915. bottom: 26/1894
  45916. }
  45917. },
  45918. casual: {
  45919. height: math.unit(6, "feet"),
  45920. name: "Casual",
  45921. image: {
  45922. source: "./media/characters/persephone/casual.svg",
  45923. extra: 1713/1541,
  45924. bottom: 76/1789
  45925. }
  45926. },
  45927. gaming: {
  45928. height: math.unit(3.55, "feet"),
  45929. name: "Gaming",
  45930. image: {
  45931. source: "./media/characters/persephone/gaming.svg",
  45932. extra: 1242/1038,
  45933. bottom: 66/1308
  45934. }
  45935. },
  45936. head: {
  45937. height: math.unit(2.15, "feet"),
  45938. name: "😐",
  45939. image: {
  45940. source: "./media/characters/persephone/head.svg"
  45941. }
  45942. },
  45943. talking: {
  45944. height: math.unit(2.5, "feet"),
  45945. name: "💬",
  45946. image: {
  45947. source: "./media/characters/persephone/talking.svg"
  45948. }
  45949. },
  45950. hmm: {
  45951. height: math.unit(2.28, "feet"),
  45952. name: "🤨",
  45953. image: {
  45954. source: "./media/characters/persephone/hmm.svg"
  45955. }
  45956. },
  45957. },
  45958. [
  45959. {
  45960. name: "Human Size",
  45961. height: math.unit(6, "feet")
  45962. },
  45963. {
  45964. name: "Big Steppy",
  45965. height: math.unit(600, "meters"),
  45966. default: true
  45967. },
  45968. {
  45969. name: "Galaxy Brain",
  45970. height: math.unit(1, "zettameter")
  45971. },
  45972. ]
  45973. ))
  45974. characterMakers.push(() => makeCharacter(
  45975. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45976. {
  45977. front: {
  45978. height: math.unit(1.85, "meters"),
  45979. name: "Front",
  45980. image: {
  45981. source: "./media/characters/riley-foxthing/front.svg",
  45982. extra: 1495/1354,
  45983. bottom: 122/1617
  45984. }
  45985. },
  45986. frontAlt: {
  45987. height: math.unit(1.85, "meters"),
  45988. name: "Front (Alt)",
  45989. image: {
  45990. source: "./media/characters/riley-foxthing/front-alt.svg",
  45991. extra: 1572/1389,
  45992. bottom: 116/1688
  45993. }
  45994. },
  45995. },
  45996. [
  45997. {
  45998. name: "Normal Sized",
  45999. height: math.unit(1.85, "meters"),
  46000. default: true
  46001. },
  46002. {
  46003. name: "Quite Sizable",
  46004. height: math.unit(5, "meters")
  46005. },
  46006. {
  46007. name: "Rather Large",
  46008. height: math.unit(20, "meters")
  46009. },
  46010. {
  46011. name: "Macro",
  46012. height: math.unit(450, "meters")
  46013. },
  46014. {
  46015. name: "Giga",
  46016. height: math.unit(5, "km")
  46017. },
  46018. ]
  46019. ))
  46020. characterMakers.push(() => makeCharacter(
  46021. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46022. {
  46023. front: {
  46024. height: math.unit(6, "feet"),
  46025. weight: math.unit(200, "lb"),
  46026. name: "Front",
  46027. image: {
  46028. source: "./media/characters/blizzard/front.svg",
  46029. extra: 1136/990,
  46030. bottom: 136/1272
  46031. }
  46032. },
  46033. back: {
  46034. height: math.unit(6, "feet"),
  46035. weight: math.unit(200, "lb"),
  46036. name: "Back",
  46037. image: {
  46038. source: "./media/characters/blizzard/back.svg",
  46039. extra: 1175/1034,
  46040. bottom: 97/1272
  46041. }
  46042. },
  46043. sitting: {
  46044. height: math.unit(3.725, "feet"),
  46045. weight: math.unit(200, "lb"),
  46046. name: "Sitting",
  46047. image: {
  46048. source: "./media/characters/blizzard/sitting.svg",
  46049. extra: 581/485,
  46050. bottom: 90/671
  46051. }
  46052. },
  46053. frontWizard: {
  46054. height: math.unit(7.9, "feet"),
  46055. weight: math.unit(200, "lb"),
  46056. name: "Front (Wizard)",
  46057. image: {
  46058. source: "./media/characters/blizzard/front-wizard.svg"
  46059. }
  46060. },
  46061. backWizard: {
  46062. height: math.unit(7.9, "feet"),
  46063. weight: math.unit(200, "lb"),
  46064. name: "Back (Wizard)",
  46065. image: {
  46066. source: "./media/characters/blizzard/back-wizard.svg"
  46067. }
  46068. },
  46069. frontNsfw: {
  46070. height: math.unit(6, "feet"),
  46071. weight: math.unit(200, "lb"),
  46072. name: "Front (NSFW)",
  46073. image: {
  46074. source: "./media/characters/blizzard/front-nsfw.svg",
  46075. extra: 1136/990,
  46076. bottom: 136/1272
  46077. }
  46078. },
  46079. backNsfw: {
  46080. height: math.unit(6, "feet"),
  46081. weight: math.unit(200, "lb"),
  46082. name: "Back (NSFW)",
  46083. image: {
  46084. source: "./media/characters/blizzard/back-nsfw.svg",
  46085. extra: 1175/1034,
  46086. bottom: 97/1272
  46087. }
  46088. },
  46089. sittingNsfw: {
  46090. height: math.unit(3.725, "feet"),
  46091. weight: math.unit(200, "lb"),
  46092. name: "Sitting (NSFW)",
  46093. image: {
  46094. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46095. extra: 581/485,
  46096. bottom: 90/671
  46097. }
  46098. },
  46099. wizardFrontNsfw: {
  46100. height: math.unit(7.9, "feet"),
  46101. weight: math.unit(200, "lb"),
  46102. name: "Wizard (Front, NSFW)",
  46103. image: {
  46104. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46105. }
  46106. },
  46107. },
  46108. [
  46109. {
  46110. name: "Normal",
  46111. height: math.unit(6, "feet"),
  46112. default: true
  46113. },
  46114. ]
  46115. ))
  46116. characterMakers.push(() => makeCharacter(
  46117. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46118. {
  46119. front: {
  46120. height: math.unit(5 + 2/12, "feet"),
  46121. name: "Front",
  46122. image: {
  46123. source: "./media/characters/lumi/front.svg",
  46124. extra: 1328/1268,
  46125. bottom: 103/1431
  46126. }
  46127. },
  46128. back: {
  46129. height: math.unit(5 + 2/12, "feet"),
  46130. name: "Back",
  46131. image: {
  46132. source: "./media/characters/lumi/back.svg",
  46133. extra: 1381/1327,
  46134. bottom: 43/1424
  46135. }
  46136. },
  46137. },
  46138. [
  46139. {
  46140. name: "Normal",
  46141. height: math.unit(5 + 2/12, "feet"),
  46142. default: true
  46143. },
  46144. ]
  46145. ))
  46146. characterMakers.push(() => makeCharacter(
  46147. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46148. {
  46149. front: {
  46150. height: math.unit(5 + 9/12, "feet"),
  46151. name: "Front",
  46152. image: {
  46153. source: "./media/characters/aliya-cotton/front.svg",
  46154. extra: 577/564,
  46155. bottom: 29/606
  46156. }
  46157. },
  46158. },
  46159. [
  46160. {
  46161. name: "Normal",
  46162. height: math.unit(5 + 9/12, "feet"),
  46163. default: true
  46164. },
  46165. ]
  46166. ))
  46167. characterMakers.push(() => makeCharacter(
  46168. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46169. {
  46170. front: {
  46171. height: math.unit(2.7, "meters"),
  46172. weight: math.unit(25000, "lb"),
  46173. name: "Front",
  46174. image: {
  46175. source: "./media/characters/noah-luxray/front.svg",
  46176. extra: 1644/825,
  46177. bottom: 339/1983
  46178. }
  46179. },
  46180. side: {
  46181. height: math.unit(2.97, "meters"),
  46182. weight: math.unit(25000, "lb"),
  46183. name: "Side",
  46184. image: {
  46185. source: "./media/characters/noah-luxray/side.svg",
  46186. extra: 1319/650,
  46187. bottom: 163/1482
  46188. }
  46189. },
  46190. dick: {
  46191. height: math.unit(7.4, "feet"),
  46192. weight: math.unit(2500, "lb"),
  46193. name: "Dick",
  46194. image: {
  46195. source: "./media/characters/noah-luxray/dick.svg"
  46196. }
  46197. },
  46198. dickAlt: {
  46199. height: math.unit(10.83, "feet"),
  46200. weight: math.unit(2500, "lb"),
  46201. name: "Dick-alt",
  46202. image: {
  46203. source: "./media/characters/noah-luxray/dick-alt.svg"
  46204. }
  46205. },
  46206. },
  46207. [
  46208. {
  46209. name: "BIG",
  46210. height: math.unit(2.7, "meters"),
  46211. default: true
  46212. },
  46213. ]
  46214. ))
  46215. characterMakers.push(() => makeCharacter(
  46216. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46217. {
  46218. standing: {
  46219. height: math.unit(183, "cm"),
  46220. weight: math.unit(68, "kg"),
  46221. name: "Standing",
  46222. image: {
  46223. source: "./media/characters/arion/standing.svg",
  46224. extra: 1869/1807,
  46225. bottom: 93/1962
  46226. }
  46227. },
  46228. reclining: {
  46229. height: math.unit(70.5, "cm"),
  46230. weight: math.unit(68, "lb"),
  46231. name: "Reclining",
  46232. image: {
  46233. source: "./media/characters/arion/reclining.svg",
  46234. extra: 937/870,
  46235. bottom: 63/1000
  46236. }
  46237. },
  46238. },
  46239. [
  46240. {
  46241. name: "Colossus Size, Low",
  46242. height: math.unit(33, "meters"),
  46243. default: true
  46244. },
  46245. {
  46246. name: "Colossus Size, Mid",
  46247. height: math.unit(52, "meters")
  46248. },
  46249. {
  46250. name: "Colossus Size, High",
  46251. height: math.unit(60, "meters")
  46252. },
  46253. {
  46254. name: "Titan Size, Low",
  46255. height: math.unit(91, "meters"),
  46256. },
  46257. {
  46258. name: "Titan Size, Mid",
  46259. height: math.unit(122, "meters")
  46260. },
  46261. {
  46262. name: "Titan Size, High",
  46263. height: math.unit(162, "meters")
  46264. },
  46265. ]
  46266. ))
  46267. characterMakers.push(() => makeCharacter(
  46268. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46269. {
  46270. front: {
  46271. height: math.unit(53, "meters"),
  46272. name: "Front",
  46273. image: {
  46274. source: "./media/characters/stellar-marbey/front.svg",
  46275. extra: 1913/1805,
  46276. bottom: 92/2005
  46277. }
  46278. },
  46279. back: {
  46280. height: math.unit(53, "meters"),
  46281. name: "Back",
  46282. image: {
  46283. source: "./media/characters/stellar-marbey/back.svg",
  46284. extra: 1960/1851,
  46285. bottom: 28/1988
  46286. }
  46287. },
  46288. mouth: {
  46289. height: math.unit(3.5, "meters"),
  46290. name: "Mouth",
  46291. image: {
  46292. source: "./media/characters/stellar-marbey/mouth.svg"
  46293. }
  46294. },
  46295. },
  46296. [
  46297. {
  46298. name: "Macro",
  46299. height: math.unit(53, "meters"),
  46300. default: true
  46301. },
  46302. ]
  46303. ))
  46304. characterMakers.push(() => makeCharacter(
  46305. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46306. {
  46307. front: {
  46308. height: math.unit(8 + 1/12, "feet"),
  46309. weight: math.unit(233, "lb"),
  46310. name: "Front",
  46311. image: {
  46312. source: "./media/characters/matsu/front.svg",
  46313. extra: 832/772,
  46314. bottom: 40/872
  46315. }
  46316. },
  46317. back: {
  46318. height: math.unit(8 + 1/12, "feet"),
  46319. weight: math.unit(233, "lb"),
  46320. name: "Back",
  46321. image: {
  46322. source: "./media/characters/matsu/back.svg",
  46323. extra: 839/780,
  46324. bottom: 47/886
  46325. }
  46326. },
  46327. },
  46328. [
  46329. {
  46330. name: "Normal",
  46331. height: math.unit(8 + 1/12, "feet"),
  46332. default: true
  46333. },
  46334. ]
  46335. ))
  46336. characterMakers.push(() => makeCharacter(
  46337. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46338. {
  46339. front: {
  46340. height: math.unit(4, "feet"),
  46341. weight: math.unit(148, "lb"),
  46342. name: "Front",
  46343. image: {
  46344. source: "./media/characters/thiz/front.svg",
  46345. extra: 1913/1748,
  46346. bottom: 62/1975
  46347. }
  46348. },
  46349. },
  46350. [
  46351. {
  46352. name: "Normal",
  46353. height: math.unit(4, "feet"),
  46354. default: true
  46355. },
  46356. ]
  46357. ))
  46358. characterMakers.push(() => makeCharacter(
  46359. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46360. {
  46361. front: {
  46362. height: math.unit(7 + 6/12, "feet"),
  46363. weight: math.unit(267, "lb"),
  46364. name: "Front",
  46365. image: {
  46366. source: "./media/characters/marcel/front.svg",
  46367. extra: 1221/1096,
  46368. bottom: 76/1297
  46369. }
  46370. },
  46371. },
  46372. [
  46373. {
  46374. name: "Normal",
  46375. height: math.unit(7 + 6/12, "feet"),
  46376. default: true
  46377. },
  46378. ]
  46379. ))
  46380. characterMakers.push(() => makeCharacter(
  46381. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46382. {
  46383. side: {
  46384. height: math.unit(42, "meters"),
  46385. name: "Side",
  46386. image: {
  46387. source: "./media/characters/flake/side.svg",
  46388. extra: 1525/1306,
  46389. bottom: 209/1734
  46390. }
  46391. },
  46392. },
  46393. [
  46394. {
  46395. name: "Normal",
  46396. height: math.unit(42, "meters"),
  46397. default: true
  46398. },
  46399. ]
  46400. ))
  46401. characterMakers.push(() => makeCharacter(
  46402. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46403. {
  46404. dressed: {
  46405. height: math.unit(6 + 4/12, "feet"),
  46406. weight: math.unit(520, "lb"),
  46407. name: "Dressed",
  46408. image: {
  46409. source: "./media/characters/someonne/dressed.svg",
  46410. extra: 1020/1010,
  46411. bottom: 178/1198
  46412. }
  46413. },
  46414. undressed: {
  46415. height: math.unit(6 + 4/12, "feet"),
  46416. weight: math.unit(520, "lb"),
  46417. name: "Undressed",
  46418. image: {
  46419. source: "./media/characters/someonne/undressed.svg",
  46420. extra: 1019/1014,
  46421. bottom: 169/1188
  46422. }
  46423. },
  46424. },
  46425. [
  46426. {
  46427. name: "Normal",
  46428. height: math.unit(6 + 4/12, "feet"),
  46429. default: true
  46430. },
  46431. ]
  46432. ))
  46433. characterMakers.push(() => makeCharacter(
  46434. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46435. {
  46436. front: {
  46437. height: math.unit(3, "feet"),
  46438. weight: math.unit(30, "lb"),
  46439. name: "Front",
  46440. image: {
  46441. source: "./media/characters/till/front.svg",
  46442. extra: 892/823,
  46443. bottom: 55/947
  46444. }
  46445. },
  46446. },
  46447. [
  46448. {
  46449. name: "Normal",
  46450. height: math.unit(3, "feet"),
  46451. default: true
  46452. },
  46453. ]
  46454. ))
  46455. characterMakers.push(() => makeCharacter(
  46456. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46457. {
  46458. front: {
  46459. height: math.unit(9 + 8/12, "feet"),
  46460. weight: math.unit(800, "lb"),
  46461. name: "Front",
  46462. image: {
  46463. source: "./media/characters/sydney-heki/front.svg",
  46464. extra: 1360/1300,
  46465. bottom: 22/1382
  46466. }
  46467. },
  46468. back: {
  46469. height: math.unit(9 + 8/12, "feet"),
  46470. weight: math.unit(800, "lb"),
  46471. name: "Back",
  46472. image: {
  46473. source: "./media/characters/sydney-heki/back.svg",
  46474. extra: 1356/1293,
  46475. bottom: 12/1368
  46476. }
  46477. },
  46478. frontDressed: {
  46479. height: math.unit(9 + 8/12, "feet"),
  46480. weight: math.unit(800, "lb"),
  46481. name: "Front-dressed",
  46482. image: {
  46483. source: "./media/characters/sydney-heki/front-dressed.svg",
  46484. extra: 1360/1300,
  46485. bottom: 22/1382
  46486. }
  46487. },
  46488. },
  46489. [
  46490. {
  46491. name: "Normal",
  46492. height: math.unit(9 + 8/12, "feet"),
  46493. default: true
  46494. },
  46495. {
  46496. name: "Macro",
  46497. height: math.unit(500, "feet")
  46498. },
  46499. {
  46500. name: "Megamacro",
  46501. height: math.unit(3.6, "miles")
  46502. },
  46503. ]
  46504. ))
  46505. characterMakers.push(() => makeCharacter(
  46506. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46507. {
  46508. front: {
  46509. height: math.unit(200, "cm"),
  46510. weight: math.unit(250, "lb"),
  46511. name: "Front",
  46512. image: {
  46513. source: "./media/characters/fowler-karlsson/front.svg",
  46514. extra: 897/845,
  46515. bottom: 123/1020
  46516. }
  46517. },
  46518. back: {
  46519. height: math.unit(200, "cm"),
  46520. weight: math.unit(250, "lb"),
  46521. name: "Back",
  46522. image: {
  46523. source: "./media/characters/fowler-karlsson/back.svg",
  46524. extra: 999/944,
  46525. bottom: 26/1025
  46526. }
  46527. },
  46528. dick: {
  46529. height: math.unit(1.92, "feet"),
  46530. weight: math.unit(150, "lb"),
  46531. name: "Dick",
  46532. image: {
  46533. source: "./media/characters/fowler-karlsson/dick.svg"
  46534. }
  46535. },
  46536. },
  46537. [
  46538. {
  46539. name: "Normal",
  46540. height: math.unit(200, "cm"),
  46541. default: true
  46542. },
  46543. {
  46544. name: "Smaller Macro",
  46545. height: math.unit(90, "m")
  46546. },
  46547. {
  46548. name: "Macro",
  46549. height: math.unit(150, "m")
  46550. },
  46551. {
  46552. name: "Bigger Macro",
  46553. height: math.unit(300, "m")
  46554. },
  46555. ]
  46556. ))
  46557. characterMakers.push(() => makeCharacter(
  46558. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46559. {
  46560. side: {
  46561. height: math.unit(8 + 2/12, "feet"),
  46562. weight: math.unit(1, "tonne"),
  46563. name: "Side",
  46564. image: {
  46565. source: "./media/characters/rylide/side.svg",
  46566. extra: 1318/1034,
  46567. bottom: 106/1424
  46568. }
  46569. },
  46570. sitting: {
  46571. height: math.unit(303, "cm"),
  46572. weight: math.unit(1, "tonne"),
  46573. name: "Sitting",
  46574. image: {
  46575. source: "./media/characters/rylide/sitting.svg",
  46576. extra: 1303/1103,
  46577. bottom: 36/1339
  46578. }
  46579. },
  46580. },
  46581. [
  46582. {
  46583. name: "Normal",
  46584. height: math.unit(8 + 2/12, "feet"),
  46585. default: true
  46586. },
  46587. ]
  46588. ))
  46589. characterMakers.push(() => makeCharacter(
  46590. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46591. {
  46592. front: {
  46593. height: math.unit(5 + 10/12, "feet"),
  46594. weight: math.unit(160, "lb"),
  46595. name: "Front",
  46596. image: {
  46597. source: "./media/characters/pudask/front.svg",
  46598. extra: 1616/1590,
  46599. bottom: 161/1777
  46600. }
  46601. },
  46602. },
  46603. [
  46604. {
  46605. name: "Ferret Height",
  46606. height: math.unit(2 + 5/12, "feet")
  46607. },
  46608. {
  46609. name: "Canon Height",
  46610. height: math.unit(5 + 10/12, "feet"),
  46611. default: true
  46612. },
  46613. ]
  46614. ))
  46615. characterMakers.push(() => makeCharacter(
  46616. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46617. {
  46618. front: {
  46619. height: math.unit(3 + 6/12, "feet"),
  46620. weight: math.unit(60, "lb"),
  46621. name: "Front",
  46622. image: {
  46623. source: "./media/characters/ramita/front.svg",
  46624. extra: 1402/1232,
  46625. bottom: 62/1464
  46626. }
  46627. },
  46628. dressed: {
  46629. height: math.unit(3 + 6/12, "feet"),
  46630. weight: math.unit(60, "lb"),
  46631. name: "Dressed",
  46632. image: {
  46633. source: "./media/characters/ramita/dressed.svg",
  46634. extra: 1534/1249,
  46635. bottom: 50/1584
  46636. }
  46637. },
  46638. },
  46639. [
  46640. {
  46641. name: "Normal",
  46642. height: math.unit(3 + 6/12, "feet"),
  46643. default: true
  46644. },
  46645. ]
  46646. ))
  46647. characterMakers.push(() => makeCharacter(
  46648. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46649. {
  46650. front: {
  46651. height: math.unit(8, "feet"),
  46652. name: "Front",
  46653. image: {
  46654. source: "./media/characters/ark/front.svg",
  46655. extra: 772/693,
  46656. bottom: 45/817
  46657. }
  46658. },
  46659. },
  46660. [
  46661. {
  46662. name: "Normal",
  46663. height: math.unit(8, "feet"),
  46664. default: true
  46665. },
  46666. ]
  46667. ))
  46668. characterMakers.push(() => makeCharacter(
  46669. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46670. {
  46671. front: {
  46672. height: math.unit(6, "feet"),
  46673. weight: math.unit(250, "lb"),
  46674. volume: math.unit(5/8, "gallons"),
  46675. name: "Front",
  46676. image: {
  46677. source: "./media/characters/ludwig-horn/front.svg",
  46678. extra: 1782/1635,
  46679. bottom: 96/1878
  46680. }
  46681. },
  46682. back: {
  46683. height: math.unit(6, "feet"),
  46684. weight: math.unit(250, "lb"),
  46685. volume: math.unit(5/8, "gallons"),
  46686. name: "Back",
  46687. image: {
  46688. source: "./media/characters/ludwig-horn/back.svg",
  46689. extra: 1874/1729,
  46690. bottom: 27/1901
  46691. }
  46692. },
  46693. dick: {
  46694. height: math.unit(1.05, "feet"),
  46695. weight: math.unit(15, "lb"),
  46696. volume: math.unit(5/8, "gallons"),
  46697. name: "Dick",
  46698. image: {
  46699. source: "./media/characters/ludwig-horn/dick.svg"
  46700. }
  46701. },
  46702. },
  46703. [
  46704. {
  46705. name: "Small",
  46706. height: math.unit(6, "feet")
  46707. },
  46708. {
  46709. name: "Typical",
  46710. height: math.unit(12, "feet"),
  46711. default: true
  46712. },
  46713. {
  46714. name: "Building",
  46715. height: math.unit(80, "feet")
  46716. },
  46717. {
  46718. name: "Town",
  46719. height: math.unit(800, "feet")
  46720. },
  46721. {
  46722. name: "Kingdom",
  46723. height: math.unit(80000, "feet")
  46724. },
  46725. {
  46726. name: "Planet",
  46727. height: math.unit(8000000, "feet")
  46728. },
  46729. {
  46730. name: "Universe",
  46731. height: math.unit(8000000000, "feet")
  46732. },
  46733. {
  46734. name: "Transcended",
  46735. height: math.unit(8e27, "feet")
  46736. },
  46737. ]
  46738. ))
  46739. characterMakers.push(() => makeCharacter(
  46740. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46741. {
  46742. front: {
  46743. height: math.unit(5, "feet"),
  46744. weight: math.unit(50, "kg"),
  46745. name: "Front",
  46746. image: {
  46747. source: "./media/characters/biot-avery/front.svg",
  46748. extra: 1295/1232,
  46749. bottom: 86/1381
  46750. }
  46751. },
  46752. },
  46753. [
  46754. {
  46755. name: "Normal",
  46756. height: math.unit(5, "feet"),
  46757. default: true
  46758. },
  46759. ]
  46760. ))
  46761. characterMakers.push(() => makeCharacter(
  46762. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46763. {
  46764. front: {
  46765. height: math.unit(6, "feet"),
  46766. name: "Front",
  46767. image: {
  46768. source: "./media/characters/kitsune-kiro/front.svg",
  46769. extra: 1270/1158,
  46770. bottom: 42/1312
  46771. }
  46772. },
  46773. frontAlt: {
  46774. height: math.unit(6, "feet"),
  46775. name: "Front-alt",
  46776. image: {
  46777. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46778. extra: 1130/1081,
  46779. bottom: 36/1166
  46780. }
  46781. },
  46782. },
  46783. [
  46784. {
  46785. name: "Smol",
  46786. height: math.unit(3, "feet")
  46787. },
  46788. {
  46789. name: "Normal",
  46790. height: math.unit(6, "feet"),
  46791. default: true
  46792. },
  46793. ]
  46794. ))
  46795. characterMakers.push(() => makeCharacter(
  46796. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46797. {
  46798. front: {
  46799. height: math.unit(6, "feet"),
  46800. weight: math.unit(125, "lb"),
  46801. name: "Front",
  46802. image: {
  46803. source: "./media/characters/jack-thatcher/front.svg",
  46804. extra: 1474/1370,
  46805. bottom: 26/1500
  46806. }
  46807. },
  46808. back: {
  46809. height: math.unit(6, "feet"),
  46810. weight: math.unit(125, "lb"),
  46811. name: "Back",
  46812. image: {
  46813. source: "./media/characters/jack-thatcher/back.svg",
  46814. extra: 1489/1384,
  46815. bottom: 18/1507
  46816. }
  46817. },
  46818. },
  46819. [
  46820. {
  46821. name: "Normal",
  46822. height: math.unit(6, "feet"),
  46823. default: true
  46824. },
  46825. {
  46826. name: "Macro",
  46827. height: math.unit(75, "feet")
  46828. },
  46829. {
  46830. name: "Macro-er",
  46831. height: math.unit(250, "feet")
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46837. {
  46838. front: {
  46839. height: math.unit(7, "feet"),
  46840. weight: math.unit(110, "kg"),
  46841. name: "Front",
  46842. image: {
  46843. source: "./media/characters/max-hyper/front.svg",
  46844. extra: 1969/1881,
  46845. bottom: 49/2018
  46846. }
  46847. },
  46848. },
  46849. [
  46850. {
  46851. name: "Normal",
  46852. height: math.unit(7, "feet"),
  46853. default: true
  46854. },
  46855. ]
  46856. ))
  46857. characterMakers.push(() => makeCharacter(
  46858. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46859. {
  46860. front: {
  46861. height: math.unit(5 + 5/12, "feet"),
  46862. weight: math.unit(160, "lb"),
  46863. name: "Front",
  46864. image: {
  46865. source: "./media/characters/spook/front.svg",
  46866. extra: 794/791,
  46867. bottom: 54/848
  46868. }
  46869. },
  46870. back: {
  46871. height: math.unit(5 + 5/12, "feet"),
  46872. weight: math.unit(160, "lb"),
  46873. name: "Back",
  46874. image: {
  46875. source: "./media/characters/spook/back.svg",
  46876. extra: 812/798,
  46877. bottom: 32/844
  46878. }
  46879. },
  46880. },
  46881. [
  46882. {
  46883. name: "Normal",
  46884. height: math.unit(5 + 5/12, "feet"),
  46885. default: true
  46886. },
  46887. ]
  46888. ))
  46889. characterMakers.push(() => makeCharacter(
  46890. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46891. {
  46892. front: {
  46893. height: math.unit(18, "feet"),
  46894. name: "Front",
  46895. image: {
  46896. source: "./media/characters/xeaduulix/front.svg",
  46897. extra: 1380/1166,
  46898. bottom: 110/1490
  46899. }
  46900. },
  46901. back: {
  46902. height: math.unit(18, "feet"),
  46903. name: "Back",
  46904. image: {
  46905. source: "./media/characters/xeaduulix/back.svg",
  46906. extra: 1592/1170,
  46907. bottom: 128/1720
  46908. }
  46909. },
  46910. frontNsfw: {
  46911. height: math.unit(18, "feet"),
  46912. name: "Front (NSFW)",
  46913. image: {
  46914. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46915. extra: 1380/1166,
  46916. bottom: 110/1490
  46917. }
  46918. },
  46919. backNsfw: {
  46920. height: math.unit(18, "feet"),
  46921. name: "Back (NSFW)",
  46922. image: {
  46923. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46924. extra: 1592/1170,
  46925. bottom: 128/1720
  46926. }
  46927. },
  46928. },
  46929. [
  46930. {
  46931. name: "Normal",
  46932. height: math.unit(18, "feet"),
  46933. default: true
  46934. },
  46935. ]
  46936. ))
  46937. characterMakers.push(() => makeCharacter(
  46938. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46939. {
  46940. spreadWings: {
  46941. height: math.unit(20, "feet"),
  46942. name: "Spread Wings",
  46943. image: {
  46944. source: "./media/characters/fledge/spread-wings.svg",
  46945. extra: 693/635,
  46946. bottom: 26/719
  46947. }
  46948. },
  46949. front: {
  46950. height: math.unit(20, "feet"),
  46951. name: "Front",
  46952. image: {
  46953. source: "./media/characters/fledge/front.svg",
  46954. extra: 684/637,
  46955. bottom: 18/702
  46956. }
  46957. },
  46958. frontAlt: {
  46959. height: math.unit(20, "feet"),
  46960. name: "Front (Alt)",
  46961. image: {
  46962. source: "./media/characters/fledge/front-alt.svg",
  46963. extra: 708/664,
  46964. bottom: 13/721
  46965. }
  46966. },
  46967. back: {
  46968. height: math.unit(20, "feet"),
  46969. name: "Back",
  46970. image: {
  46971. source: "./media/characters/fledge/back.svg",
  46972. extra: 718/634,
  46973. bottom: 22/740
  46974. }
  46975. },
  46976. head: {
  46977. height: math.unit(5.55, "feet"),
  46978. name: "Head",
  46979. image: {
  46980. source: "./media/characters/fledge/head.svg"
  46981. }
  46982. },
  46983. headAlt: {
  46984. height: math.unit(5.1, "feet"),
  46985. name: "Head (Alt)",
  46986. image: {
  46987. source: "./media/characters/fledge/head-alt.svg"
  46988. }
  46989. },
  46990. },
  46991. [
  46992. {
  46993. name: "Small",
  46994. height: math.unit(6 + 2/12, "feet")
  46995. },
  46996. {
  46997. name: "Big",
  46998. height: math.unit(20, "feet"),
  46999. default: true
  47000. },
  47001. {
  47002. name: "Giant",
  47003. height: math.unit(100, "feet")
  47004. },
  47005. {
  47006. name: "Macro",
  47007. height: math.unit(200, "feet")
  47008. },
  47009. ]
  47010. ))
  47011. characterMakers.push(() => makeCharacter(
  47012. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47013. {
  47014. front: {
  47015. height: math.unit(1, "meter"),
  47016. name: "Front",
  47017. image: {
  47018. source: "./media/characters/atlas-morenai/front.svg",
  47019. extra: 1275/1043,
  47020. bottom: 19/1294
  47021. }
  47022. },
  47023. back: {
  47024. height: math.unit(1, "meter"),
  47025. name: "Back",
  47026. image: {
  47027. source: "./media/characters/atlas-morenai/back.svg",
  47028. extra: 1141/1001,
  47029. bottom: 25/1166
  47030. }
  47031. },
  47032. },
  47033. [
  47034. {
  47035. name: "Normal",
  47036. height: math.unit(1, "meter"),
  47037. default: true
  47038. },
  47039. {
  47040. name: "Magic-Infused",
  47041. height: math.unit(5, "meters")
  47042. },
  47043. ]
  47044. ))
  47045. characterMakers.push(() => makeCharacter(
  47046. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47047. {
  47048. front: {
  47049. height: math.unit(5, "meters"),
  47050. name: "Front",
  47051. image: {
  47052. source: "./media/characters/cintia/front.svg",
  47053. extra: 1312/1228,
  47054. bottom: 38/1350
  47055. }
  47056. },
  47057. back: {
  47058. height: math.unit(5, "meters"),
  47059. name: "Back",
  47060. image: {
  47061. source: "./media/characters/cintia/back.svg",
  47062. extra: 1260/1166,
  47063. bottom: 98/1358
  47064. }
  47065. },
  47066. frontDick: {
  47067. height: math.unit(5, "meters"),
  47068. name: "Front (Dick)",
  47069. image: {
  47070. source: "./media/characters/cintia/front-dick.svg",
  47071. extra: 1312/1228,
  47072. bottom: 38/1350
  47073. }
  47074. },
  47075. backDick: {
  47076. height: math.unit(5, "meters"),
  47077. name: "Back (Dick)",
  47078. image: {
  47079. source: "./media/characters/cintia/back-dick.svg",
  47080. extra: 1260/1166,
  47081. bottom: 98/1358
  47082. }
  47083. },
  47084. bust: {
  47085. height: math.unit(1.97, "meters"),
  47086. name: "Bust",
  47087. image: {
  47088. source: "./media/characters/cintia/bust.svg",
  47089. extra: 617/565,
  47090. bottom: 0/617
  47091. }
  47092. },
  47093. },
  47094. [
  47095. {
  47096. name: "Normal",
  47097. height: math.unit(5, "meters"),
  47098. default: true
  47099. },
  47100. ]
  47101. ))
  47102. characterMakers.push(() => makeCharacter(
  47103. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47104. {
  47105. side: {
  47106. height: math.unit(100, "feet"),
  47107. name: "Side",
  47108. image: {
  47109. source: "./media/characters/denora/side.svg",
  47110. extra: 875/803,
  47111. bottom: 9/884
  47112. }
  47113. },
  47114. },
  47115. [
  47116. {
  47117. name: "Standard",
  47118. height: math.unit(100, "feet"),
  47119. default: true
  47120. },
  47121. {
  47122. name: "Grand",
  47123. height: math.unit(1000, "feet")
  47124. },
  47125. {
  47126. name: "Conquering",
  47127. height: math.unit(10000, "feet")
  47128. },
  47129. ]
  47130. ))
  47131. characterMakers.push(() => makeCharacter(
  47132. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47133. {
  47134. dressed: {
  47135. height: math.unit(8 + 5/12, "feet"),
  47136. weight: math.unit(700, "lb"),
  47137. name: "Dressed",
  47138. image: {
  47139. source: "./media/characters/kiva/dressed.svg",
  47140. extra: 1102/1055,
  47141. bottom: 60/1162
  47142. }
  47143. },
  47144. nude: {
  47145. height: math.unit(8 + 5/12, "feet"),
  47146. weight: math.unit(700, "lb"),
  47147. name: "Nude",
  47148. image: {
  47149. source: "./media/characters/kiva/nude.svg",
  47150. extra: 1102/1055,
  47151. bottom: 60/1162
  47152. }
  47153. },
  47154. },
  47155. [
  47156. {
  47157. name: "Base Height",
  47158. height: math.unit(8 + 5/12, "feet"),
  47159. default: true
  47160. },
  47161. {
  47162. name: "Macro",
  47163. height: math.unit(100, "feet")
  47164. },
  47165. {
  47166. name: "Max",
  47167. height: math.unit(3280, "feet")
  47168. },
  47169. ]
  47170. ))
  47171. characterMakers.push(() => makeCharacter(
  47172. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47173. {
  47174. front: {
  47175. height: math.unit(6 + 8/12, "feet"),
  47176. weight: math.unit(250, "lb"),
  47177. name: "Front",
  47178. image: {
  47179. source: "./media/characters/ztragon/front.svg",
  47180. extra: 1825/1684,
  47181. bottom: 98/1923
  47182. }
  47183. },
  47184. },
  47185. [
  47186. {
  47187. name: "Normal",
  47188. height: math.unit(6 + 8/12, "feet"),
  47189. default: true
  47190. },
  47191. {
  47192. name: "Macro",
  47193. height: math.unit(80, "feet")
  47194. },
  47195. ]
  47196. ))
  47197. characterMakers.push(() => makeCharacter(
  47198. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47199. {
  47200. front: {
  47201. height: math.unit(10.4, "feet"),
  47202. weight: math.unit(2, "tons"),
  47203. name: "Front",
  47204. image: {
  47205. source: "./media/characters/yesenia/front.svg",
  47206. extra: 1479/1474,
  47207. bottom: 233/1712
  47208. }
  47209. },
  47210. },
  47211. [
  47212. {
  47213. name: "Normal",
  47214. height: math.unit(10.4, "feet"),
  47215. default: true
  47216. },
  47217. ]
  47218. ))
  47219. characterMakers.push(() => makeCharacter(
  47220. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47221. {
  47222. normal: {
  47223. height: math.unit(6 + 1/12, "feet"),
  47224. weight: math.unit(180, "lb"),
  47225. name: "Normal",
  47226. image: {
  47227. source: "./media/characters/leanne-lycheborne/normal.svg",
  47228. extra: 1748/1660,
  47229. bottom: 98/1846
  47230. }
  47231. },
  47232. were: {
  47233. height: math.unit(12, "feet"),
  47234. weight: math.unit(1600, "lb"),
  47235. name: "Were",
  47236. image: {
  47237. source: "./media/characters/leanne-lycheborne/were.svg",
  47238. extra: 1485/1432,
  47239. bottom: 66/1551
  47240. }
  47241. },
  47242. },
  47243. [
  47244. {
  47245. name: "Normal",
  47246. height: math.unit(6 + 1/12, "feet"),
  47247. default: true
  47248. },
  47249. ]
  47250. ))
  47251. characterMakers.push(() => makeCharacter(
  47252. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47253. {
  47254. side: {
  47255. height: math.unit(13, "feet"),
  47256. name: "Side",
  47257. image: {
  47258. source: "./media/characters/kira-tyler/side.svg",
  47259. extra: 693/393,
  47260. bottom: 58/751
  47261. }
  47262. },
  47263. },
  47264. [
  47265. {
  47266. name: "Normal",
  47267. height: math.unit(13, "feet"),
  47268. default: true
  47269. },
  47270. ]
  47271. ))
  47272. characterMakers.push(() => makeCharacter(
  47273. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47274. {
  47275. front: {
  47276. height: math.unit(10.3, "feet"),
  47277. weight: math.unit(150, "lb"),
  47278. name: "Front",
  47279. image: {
  47280. source: "./media/characters/blaze/front.svg",
  47281. extra: 1378/1286,
  47282. bottom: 172/1550
  47283. }
  47284. },
  47285. },
  47286. [
  47287. {
  47288. name: "Normal",
  47289. height: math.unit(10.3, "feet"),
  47290. default: true
  47291. },
  47292. ]
  47293. ))
  47294. characterMakers.push(() => makeCharacter(
  47295. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47296. {
  47297. side: {
  47298. height: math.unit(2, "meters"),
  47299. weight: math.unit(400, "kg"),
  47300. name: "Side",
  47301. image: {
  47302. source: "./media/characters/anu/side.svg",
  47303. extra: 506/394,
  47304. bottom: 18/524
  47305. }
  47306. },
  47307. },
  47308. [
  47309. {
  47310. name: "Humanoid",
  47311. height: math.unit(2, "meters")
  47312. },
  47313. {
  47314. name: "Normal",
  47315. height: math.unit(5, "meters"),
  47316. default: true
  47317. },
  47318. ]
  47319. ))
  47320. characterMakers.push(() => makeCharacter(
  47321. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47322. {
  47323. front: {
  47324. height: math.unit(5 + 5/12, "feet"),
  47325. weight: math.unit(170, "lb"),
  47326. name: "Front",
  47327. image: {
  47328. source: "./media/characters/synx-the-lynx/front.svg",
  47329. extra: 1893/1745,
  47330. bottom: 17/1910
  47331. }
  47332. },
  47333. side: {
  47334. height: math.unit(5 + 5/12, "feet"),
  47335. weight: math.unit(170, "lb"),
  47336. name: "Side",
  47337. image: {
  47338. source: "./media/characters/synx-the-lynx/side.svg",
  47339. extra: 1884/1740,
  47340. bottom: 39/1923
  47341. }
  47342. },
  47343. back: {
  47344. height: math.unit(5 + 5/12, "feet"),
  47345. weight: math.unit(170, "lb"),
  47346. name: "Back",
  47347. image: {
  47348. source: "./media/characters/synx-the-lynx/back.svg",
  47349. extra: 1903/1755,
  47350. bottom: 14/1917
  47351. }
  47352. },
  47353. },
  47354. [
  47355. {
  47356. name: "Normal",
  47357. height: math.unit(5 + 5/12, "feet"),
  47358. default: true
  47359. },
  47360. ]
  47361. ))
  47362. characterMakers.push(() => makeCharacter(
  47363. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47364. {
  47365. back: {
  47366. height: math.unit(15, "feet"),
  47367. name: "Back",
  47368. image: {
  47369. source: "./media/characters/nadezda-fex/back.svg",
  47370. extra: 1695/1481,
  47371. bottom: 25/1720
  47372. }
  47373. },
  47374. },
  47375. [
  47376. {
  47377. name: "Normal",
  47378. height: math.unit(15, "feet"),
  47379. default: true
  47380. },
  47381. {
  47382. name: "Macro",
  47383. height: math.unit(2.5, "miles")
  47384. },
  47385. {
  47386. name: "Goddess",
  47387. height: math.unit(2, "multiverses")
  47388. },
  47389. ]
  47390. ))
  47391. characterMakers.push(() => makeCharacter(
  47392. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47393. {
  47394. front: {
  47395. height: math.unit(216, "cm"),
  47396. name: "Front",
  47397. image: {
  47398. source: "./media/characters/lev/front.svg",
  47399. extra: 1728/1670,
  47400. bottom: 82/1810
  47401. }
  47402. },
  47403. back: {
  47404. height: math.unit(216, "cm"),
  47405. name: "Back",
  47406. image: {
  47407. source: "./media/characters/lev/back.svg",
  47408. extra: 1738/1675,
  47409. bottom: 24/1762
  47410. }
  47411. },
  47412. dressed: {
  47413. height: math.unit(216, "cm"),
  47414. name: "Dressed",
  47415. image: {
  47416. source: "./media/characters/lev/dressed.svg",
  47417. extra: 1397/1351,
  47418. bottom: 73/1470
  47419. }
  47420. },
  47421. head: {
  47422. height: math.unit(0.51, "meter"),
  47423. name: "Head",
  47424. image: {
  47425. source: "./media/characters/lev/head.svg"
  47426. }
  47427. },
  47428. },
  47429. [
  47430. {
  47431. name: "Normal",
  47432. height: math.unit(216, "cm"),
  47433. default: true
  47434. },
  47435. {
  47436. name: "Relatively Macro",
  47437. height: math.unit(80, "meters")
  47438. },
  47439. {
  47440. name: "Megamacro",
  47441. height: math.unit(21600, "meters")
  47442. },
  47443. {
  47444. name: "Megamacro+",
  47445. height: math.unit(64800, "meters")
  47446. },
  47447. ]
  47448. ))
  47449. characterMakers.push(() => makeCharacter(
  47450. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47451. {
  47452. front: {
  47453. height: math.unit(2, "meters"),
  47454. weight: math.unit(80, "kg"),
  47455. name: "Front",
  47456. image: {
  47457. source: "./media/characters/moka/front.svg",
  47458. extra: 1337/1255,
  47459. bottom: 58/1395
  47460. }
  47461. },
  47462. },
  47463. [
  47464. {
  47465. name: "Micro",
  47466. height: math.unit(15, "cm")
  47467. },
  47468. {
  47469. name: "Normal",
  47470. height: math.unit(2, "meters"),
  47471. default: true
  47472. },
  47473. {
  47474. name: "Macro",
  47475. height: math.unit(20, "meters"),
  47476. },
  47477. ]
  47478. ))
  47479. characterMakers.push(() => makeCharacter(
  47480. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47481. {
  47482. front: {
  47483. height: math.unit(9, "feet"),
  47484. weight: math.unit(240, "lb"),
  47485. name: "Front",
  47486. image: {
  47487. source: "./media/characters/kuzco/front.svg",
  47488. extra: 1593/1487,
  47489. bottom: 32/1625
  47490. }
  47491. },
  47492. side: {
  47493. height: math.unit(9, "feet"),
  47494. weight: math.unit(240, "lb"),
  47495. name: "Side",
  47496. image: {
  47497. source: "./media/characters/kuzco/side.svg",
  47498. extra: 1575/1485,
  47499. bottom: 30/1605
  47500. }
  47501. },
  47502. back: {
  47503. height: math.unit(9, "feet"),
  47504. weight: math.unit(240, "lb"),
  47505. name: "Back",
  47506. image: {
  47507. source: "./media/characters/kuzco/back.svg",
  47508. extra: 1603/1514,
  47509. bottom: 14/1617
  47510. }
  47511. },
  47512. },
  47513. [
  47514. {
  47515. name: "Normal",
  47516. height: math.unit(9, "feet"),
  47517. default: true
  47518. },
  47519. ]
  47520. ))
  47521. characterMakers.push(() => makeCharacter(
  47522. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47523. {
  47524. side: {
  47525. height: math.unit(2, "meters"),
  47526. weight: math.unit(300, "kg"),
  47527. name: "Side",
  47528. image: {
  47529. source: "./media/characters/ceruleus/side.svg",
  47530. extra: 1068/974,
  47531. bottom: 126/1194
  47532. }
  47533. },
  47534. maw: {
  47535. height: math.unit(0.8125, "meter"),
  47536. name: "Maw",
  47537. image: {
  47538. source: "./media/characters/ceruleus/maw.svg"
  47539. }
  47540. },
  47541. },
  47542. [
  47543. {
  47544. name: "Normal",
  47545. height: math.unit(16, "meters"),
  47546. default: true
  47547. },
  47548. ]
  47549. ))
  47550. characterMakers.push(() => makeCharacter(
  47551. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47552. {
  47553. front: {
  47554. height: math.unit(9, "feet"),
  47555. weight: math.unit(500, "kg"),
  47556. name: "Front",
  47557. image: {
  47558. source: "./media/characters/acouya/front.svg",
  47559. extra: 1660/1473,
  47560. bottom: 28/1688
  47561. }
  47562. },
  47563. },
  47564. [
  47565. {
  47566. name: "Normal",
  47567. height: math.unit(9, "feet"),
  47568. default: true
  47569. },
  47570. ]
  47571. ))
  47572. characterMakers.push(() => makeCharacter(
  47573. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47574. {
  47575. front: {
  47576. height: math.unit(5 + 6/12, "feet"),
  47577. weight: math.unit(195, "lb"),
  47578. name: "Front",
  47579. image: {
  47580. source: "./media/characters/vant/front.svg",
  47581. extra: 1396/1320,
  47582. bottom: 20/1416
  47583. }
  47584. },
  47585. back: {
  47586. height: math.unit(5 + 6/12, "feet"),
  47587. weight: math.unit(195, "lb"),
  47588. name: "Back",
  47589. image: {
  47590. source: "./media/characters/vant/back.svg",
  47591. extra: 1396/1320,
  47592. bottom: 20/1416
  47593. }
  47594. },
  47595. maw: {
  47596. height: math.unit(0.75, "feet"),
  47597. name: "Maw",
  47598. image: {
  47599. source: "./media/characters/vant/maw.svg"
  47600. }
  47601. },
  47602. paw: {
  47603. height: math.unit(1.07, "feet"),
  47604. name: "Paw",
  47605. image: {
  47606. source: "./media/characters/vant/paw.svg"
  47607. }
  47608. },
  47609. },
  47610. [
  47611. {
  47612. name: "Micro",
  47613. height: math.unit(0.25, "inches")
  47614. },
  47615. {
  47616. name: "Normal",
  47617. height: math.unit(5 + 6/12, "feet"),
  47618. default: true
  47619. },
  47620. {
  47621. name: "Macro",
  47622. height: math.unit(75, "feet")
  47623. },
  47624. ]
  47625. ))
  47626. characterMakers.push(() => makeCharacter(
  47627. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47628. {
  47629. front: {
  47630. height: math.unit(30, "meters"),
  47631. weight: math.unit(363, "tons"),
  47632. name: "Front",
  47633. image: {
  47634. source: "./media/characters/ahra/front.svg",
  47635. extra: 1914/1814,
  47636. bottom: 46/1960
  47637. }
  47638. },
  47639. },
  47640. [
  47641. {
  47642. name: "Macro",
  47643. height: math.unit(30, "meters"),
  47644. default: true
  47645. },
  47646. ]
  47647. ))
  47648. characterMakers.push(() => makeCharacter(
  47649. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47650. {
  47651. undressed: {
  47652. height: math.unit(2, "m"),
  47653. weight: math.unit(250, "kg"),
  47654. name: "Undressed",
  47655. image: {
  47656. source: "./media/characters/coriander/undressed.svg",
  47657. extra: 1757/1606,
  47658. bottom: 107/1864
  47659. }
  47660. },
  47661. dressed: {
  47662. height: math.unit(2, "m"),
  47663. weight: math.unit(250, "kg"),
  47664. name: "Dressed",
  47665. image: {
  47666. source: "./media/characters/coriander/dressed.svg",
  47667. extra: 1757/1606,
  47668. bottom: 107/1864
  47669. }
  47670. },
  47671. },
  47672. [
  47673. {
  47674. name: "Normal",
  47675. height: math.unit(4, "meters"),
  47676. default: true
  47677. },
  47678. {
  47679. name: "XL",
  47680. height: math.unit(6, "meters")
  47681. },
  47682. {
  47683. name: "XXL",
  47684. height: math.unit(8, "meters")
  47685. },
  47686. ]
  47687. ))
  47688. characterMakers.push(() => makeCharacter(
  47689. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47690. {
  47691. front: {
  47692. height: math.unit(6, "feet"),
  47693. name: "Front",
  47694. image: {
  47695. source: "./media/characters/syrinx/front.svg",
  47696. extra: 1557/1259,
  47697. bottom: 171/1728
  47698. }
  47699. },
  47700. },
  47701. [
  47702. {
  47703. name: "Normal",
  47704. height: math.unit(6 + 3/12, "feet"),
  47705. default: true
  47706. },
  47707. ]
  47708. ))
  47709. characterMakers.push(() => makeCharacter(
  47710. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47711. {
  47712. front: {
  47713. height: math.unit(11 + 6/12, "feet"),
  47714. weight: math.unit(1.5, "tons"),
  47715. name: "Front",
  47716. image: {
  47717. source: "./media/characters/bor/front.svg",
  47718. extra: 1189/1109,
  47719. bottom: 170/1359
  47720. }
  47721. },
  47722. },
  47723. [
  47724. {
  47725. name: "Normal",
  47726. height: math.unit(11 + 6/12, "feet"),
  47727. default: true
  47728. },
  47729. {
  47730. name: "Macro",
  47731. height: math.unit(32 + 9/12, "feet")
  47732. },
  47733. ]
  47734. ))
  47735. characterMakers.push(() => makeCharacter(
  47736. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47737. {
  47738. anthro: {
  47739. height: math.unit(9, "feet"),
  47740. weight: math.unit(2076, "lb"),
  47741. name: "Anthro",
  47742. image: {
  47743. source: "./media/characters/abacus/anthro.svg",
  47744. extra: 1540/1494,
  47745. bottom: 233/1773
  47746. }
  47747. },
  47748. pigeon: {
  47749. height: math.unit(1, "feet"),
  47750. name: "Pigeon",
  47751. image: {
  47752. source: "./media/characters/abacus/pigeon.svg",
  47753. extra: 528/525,
  47754. bottom: 46/574
  47755. }
  47756. },
  47757. },
  47758. [
  47759. {
  47760. name: "Normal",
  47761. height: math.unit(9, "feet"),
  47762. default: true
  47763. },
  47764. ]
  47765. ))
  47766. characterMakers.push(() => makeCharacter(
  47767. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47768. {
  47769. side: {
  47770. height: math.unit(6, "feet"),
  47771. name: "Side",
  47772. image: {
  47773. source: "./media/characters/delkhan/side.svg",
  47774. extra: 1884/1786,
  47775. bottom: 308/2192
  47776. }
  47777. },
  47778. head: {
  47779. height: math.unit(3.38, "feet"),
  47780. name: "Head",
  47781. image: {
  47782. source: "./media/characters/delkhan/head.svg"
  47783. }
  47784. },
  47785. },
  47786. [
  47787. {
  47788. name: "Normal",
  47789. height: math.unit(72, "feet"),
  47790. default: true
  47791. },
  47792. {
  47793. name: "Giant",
  47794. height: math.unit(172, "feet")
  47795. },
  47796. ]
  47797. ))
  47798. characterMakers.push(() => makeCharacter(
  47799. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47800. {
  47801. standing: {
  47802. height: math.unit(6, "feet"),
  47803. name: "Standing",
  47804. image: {
  47805. source: "./media/characters/euchidat/standing.svg",
  47806. extra: 1612/1553,
  47807. bottom: 116/1728
  47808. }
  47809. },
  47810. leaning: {
  47811. height: math.unit(6, "feet"),
  47812. name: "Leaning",
  47813. image: {
  47814. source: "./media/characters/euchidat/leaning.svg",
  47815. extra: 1719/1674,
  47816. bottom: 27/1746
  47817. }
  47818. },
  47819. },
  47820. [
  47821. {
  47822. name: "Normal",
  47823. height: math.unit(175, "feet"),
  47824. default: true
  47825. },
  47826. {
  47827. name: "Megamacro",
  47828. height: math.unit(190, "miles")
  47829. },
  47830. {
  47831. name: "Gigamacro",
  47832. height: math.unit(190000, "miles")
  47833. },
  47834. ]
  47835. ))
  47836. characterMakers.push(() => makeCharacter(
  47837. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47838. {
  47839. front: {
  47840. height: math.unit(6, "feet"),
  47841. weight: math.unit(150, "lb"),
  47842. name: "Front",
  47843. image: {
  47844. source: "./media/characters/rebecca-stack/front.svg",
  47845. extra: 1256/1201,
  47846. bottom: 18/1274
  47847. }
  47848. },
  47849. },
  47850. [
  47851. {
  47852. name: "Normal",
  47853. height: math.unit(5 + 8/12, "feet"),
  47854. default: true
  47855. },
  47856. {
  47857. name: "Demolitionist",
  47858. height: math.unit(200, "feet")
  47859. },
  47860. {
  47861. name: "Out of Control",
  47862. height: math.unit(2, "miles")
  47863. },
  47864. {
  47865. name: "Giga",
  47866. height: math.unit(7200, "miles")
  47867. },
  47868. ]
  47869. ))
  47870. characterMakers.push(() => makeCharacter(
  47871. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47872. {
  47873. front: {
  47874. height: math.unit(6, "feet"),
  47875. weight: math.unit(150, "lb"),
  47876. name: "Front",
  47877. image: {
  47878. source: "./media/characters/jenny-cartwright/front.svg",
  47879. extra: 1384/1376,
  47880. bottom: 58/1442
  47881. }
  47882. },
  47883. },
  47884. [
  47885. {
  47886. name: "Normal",
  47887. height: math.unit(6 + 7/12, "feet"),
  47888. default: true
  47889. },
  47890. {
  47891. name: "Librarian",
  47892. height: math.unit(55, "feet")
  47893. },
  47894. {
  47895. name: "Sightseer",
  47896. height: math.unit(50, "miles")
  47897. },
  47898. {
  47899. name: "Giga",
  47900. height: math.unit(30000, "miles")
  47901. },
  47902. ]
  47903. ))
  47904. characterMakers.push(() => makeCharacter(
  47905. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47906. {
  47907. nude: {
  47908. height: math.unit(8, "feet"),
  47909. weight: math.unit(225, "lb"),
  47910. name: "Nude",
  47911. image: {
  47912. source: "./media/characters/marvy/nude.svg",
  47913. extra: 1900/1683,
  47914. bottom: 89/1989
  47915. }
  47916. },
  47917. dressed: {
  47918. height: math.unit(8, "feet"),
  47919. weight: math.unit(225, "lb"),
  47920. name: "Dressed",
  47921. image: {
  47922. source: "./media/characters/marvy/dressed.svg",
  47923. extra: 1900/1683,
  47924. bottom: 89/1989
  47925. }
  47926. },
  47927. head: {
  47928. height: math.unit(2.85, "feet"),
  47929. name: "Head",
  47930. image: {
  47931. source: "./media/characters/marvy/head.svg"
  47932. }
  47933. },
  47934. },
  47935. [
  47936. {
  47937. name: "Normal",
  47938. height: math.unit(8, "feet"),
  47939. default: true
  47940. },
  47941. ]
  47942. ))
  47943. characterMakers.push(() => makeCharacter(
  47944. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47945. {
  47946. front: {
  47947. height: math.unit(8, "feet"),
  47948. weight: math.unit(250, "lb"),
  47949. name: "Front",
  47950. image: {
  47951. source: "./media/characters/leah/front.svg",
  47952. extra: 1257/1149,
  47953. bottom: 109/1366
  47954. }
  47955. },
  47956. },
  47957. [
  47958. {
  47959. name: "Normal",
  47960. height: math.unit(8, "feet"),
  47961. default: true
  47962. },
  47963. {
  47964. name: "Minimacro",
  47965. height: math.unit(40, "feet")
  47966. },
  47967. {
  47968. name: "Macro",
  47969. height: math.unit(124, "feet")
  47970. },
  47971. {
  47972. name: "Megamacro",
  47973. height: math.unit(850, "feet")
  47974. },
  47975. ]
  47976. ))
  47977. characterMakers.push(() => makeCharacter(
  47978. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47979. {
  47980. side: {
  47981. height: math.unit(13 + 6/12, "feet"),
  47982. weight: math.unit(3200, "lb"),
  47983. name: "Side",
  47984. image: {
  47985. source: "./media/characters/alvir/side.svg",
  47986. extra: 896/589,
  47987. bottom: 26/922
  47988. }
  47989. },
  47990. },
  47991. [
  47992. {
  47993. name: "Normal",
  47994. height: math.unit(13 + 6/12, "feet"),
  47995. default: true
  47996. },
  47997. ]
  47998. ))
  47999. characterMakers.push(() => makeCharacter(
  48000. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48001. {
  48002. front: {
  48003. height: math.unit(5 + 4/12, "feet"),
  48004. weight: math.unit(236, "lb"),
  48005. name: "Front",
  48006. image: {
  48007. source: "./media/characters/zaina-khalil/front.svg",
  48008. extra: 1533/1485,
  48009. bottom: 94/1627
  48010. }
  48011. },
  48012. side: {
  48013. height: math.unit(5 + 4/12, "feet"),
  48014. weight: math.unit(236, "lb"),
  48015. name: "Side",
  48016. image: {
  48017. source: "./media/characters/zaina-khalil/side.svg",
  48018. extra: 1537/1498,
  48019. bottom: 66/1603
  48020. }
  48021. },
  48022. back: {
  48023. height: math.unit(5 + 4/12, "feet"),
  48024. weight: math.unit(236, "lb"),
  48025. name: "Back",
  48026. image: {
  48027. source: "./media/characters/zaina-khalil/back.svg",
  48028. extra: 1546/1494,
  48029. bottom: 89/1635
  48030. }
  48031. },
  48032. },
  48033. [
  48034. {
  48035. name: "Normal",
  48036. height: math.unit(5 + 4/12, "feet"),
  48037. default: true
  48038. },
  48039. ]
  48040. ))
  48041. characterMakers.push(() => makeCharacter(
  48042. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48043. {
  48044. side: {
  48045. height: math.unit(12, "feet"),
  48046. weight: math.unit(4000, "lb"),
  48047. name: "Side",
  48048. image: {
  48049. source: "./media/characters/terry/side.svg",
  48050. extra: 1518/1439,
  48051. bottom: 149/1667
  48052. }
  48053. },
  48054. },
  48055. [
  48056. {
  48057. name: "Normal",
  48058. height: math.unit(12, "feet"),
  48059. default: true
  48060. },
  48061. ]
  48062. ))
  48063. characterMakers.push(() => makeCharacter(
  48064. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48065. {
  48066. front: {
  48067. height: math.unit(12, "feet"),
  48068. weight: math.unit(1500, "lb"),
  48069. name: "Front",
  48070. image: {
  48071. source: "./media/characters/kahea/front.svg",
  48072. extra: 1722/1617,
  48073. bottom: 179/1901
  48074. }
  48075. },
  48076. },
  48077. [
  48078. {
  48079. name: "Normal",
  48080. height: math.unit(12, "feet"),
  48081. default: true
  48082. },
  48083. ]
  48084. ))
  48085. characterMakers.push(() => makeCharacter(
  48086. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48087. {
  48088. demonFront: {
  48089. height: math.unit(36, "feet"),
  48090. name: "Front",
  48091. image: {
  48092. source: "./media/characters/alex-xuria/demon-front.svg",
  48093. extra: 1705/1673,
  48094. bottom: 198/1903
  48095. },
  48096. form: "demon",
  48097. default: true
  48098. },
  48099. demonBack: {
  48100. height: math.unit(36, "feet"),
  48101. name: "Back",
  48102. image: {
  48103. source: "./media/characters/alex-xuria/demon-back.svg",
  48104. extra: 1725/1693,
  48105. bottom: 70/1795
  48106. },
  48107. form: "demon"
  48108. },
  48109. demonHead: {
  48110. height: math.unit(2.14, "meters"),
  48111. name: "Head",
  48112. image: {
  48113. source: "./media/characters/alex-xuria/demon-head.svg"
  48114. },
  48115. form: "demon"
  48116. },
  48117. demonHand: {
  48118. height: math.unit(1.61, "meters"),
  48119. name: "Hand",
  48120. image: {
  48121. source: "./media/characters/alex-xuria/demon-hand.svg"
  48122. },
  48123. form: "demon"
  48124. },
  48125. demonPaw: {
  48126. height: math.unit(1.35, "meters"),
  48127. name: "Paw",
  48128. image: {
  48129. source: "./media/characters/alex-xuria/demon-paw.svg"
  48130. },
  48131. form: "demon"
  48132. },
  48133. demonFoot: {
  48134. height: math.unit(2.2, "meters"),
  48135. name: "Foot",
  48136. image: {
  48137. source: "./media/characters/alex-xuria/demon-foot.svg"
  48138. },
  48139. form: "demon"
  48140. },
  48141. demonCock: {
  48142. height: math.unit(1.74, "meters"),
  48143. name: "Cock",
  48144. image: {
  48145. source: "./media/characters/alex-xuria/demon-cock.svg"
  48146. },
  48147. form: "demon"
  48148. },
  48149. demonTailClosed: {
  48150. height: math.unit(1.47, "meters"),
  48151. name: "Tail (Closed)",
  48152. image: {
  48153. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48154. },
  48155. form: "demon"
  48156. },
  48157. demonTailOpen: {
  48158. height: math.unit(2.85, "meters"),
  48159. name: "Tail (Open)",
  48160. image: {
  48161. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48162. },
  48163. form: "demon"
  48164. },
  48165. incubusFront: {
  48166. height: math.unit(12, "feet"),
  48167. name: "Front",
  48168. image: {
  48169. source: "./media/characters/alex-xuria/incubus-front.svg",
  48170. extra: 1754/1677,
  48171. bottom: 125/1879
  48172. },
  48173. form: "incubus",
  48174. default: true
  48175. },
  48176. incubusBack: {
  48177. height: math.unit(12, "feet"),
  48178. name: "Back",
  48179. image: {
  48180. source: "./media/characters/alex-xuria/incubus-back.svg",
  48181. extra: 1702/1647,
  48182. bottom: 30/1732
  48183. },
  48184. form: "incubus"
  48185. },
  48186. incubusHead: {
  48187. height: math.unit(3.45, "feet"),
  48188. name: "Head",
  48189. image: {
  48190. source: "./media/characters/alex-xuria/incubus-head.svg"
  48191. },
  48192. form: "incubus"
  48193. },
  48194. rabbitFront: {
  48195. height: math.unit(6, "feet"),
  48196. name: "Front",
  48197. image: {
  48198. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48199. extra: 1369/1349,
  48200. bottom: 45/1414
  48201. },
  48202. form: "rabbit",
  48203. default: true
  48204. },
  48205. rabbitSide: {
  48206. height: math.unit(6, "feet"),
  48207. name: "Side",
  48208. image: {
  48209. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48210. extra: 1370/1356,
  48211. bottom: 37/1407
  48212. },
  48213. form: "rabbit"
  48214. },
  48215. rabbitBack: {
  48216. height: math.unit(6, "feet"),
  48217. name: "Back",
  48218. image: {
  48219. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48220. extra: 1375/1358,
  48221. bottom: 43/1418
  48222. },
  48223. form: "rabbit"
  48224. },
  48225. },
  48226. [
  48227. {
  48228. name: "Normal",
  48229. height: math.unit(6, "feet"),
  48230. default: true,
  48231. form: "rabbit"
  48232. },
  48233. {
  48234. name: "Incubus",
  48235. height: math.unit(12, "feet"),
  48236. default: true,
  48237. form: "incubus"
  48238. },
  48239. {
  48240. name: "Demon",
  48241. height: math.unit(36, "feet"),
  48242. default: true,
  48243. form: "demon"
  48244. }
  48245. ],
  48246. {
  48247. "demon": {
  48248. name: "Demon",
  48249. default: true
  48250. },
  48251. "incubus": {
  48252. name: "Incubus",
  48253. },
  48254. "rabbit": {
  48255. name: "Rabbit"
  48256. }
  48257. }
  48258. ))
  48259. characterMakers.push(() => makeCharacter(
  48260. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48261. {
  48262. front: {
  48263. height: math.unit(7 + 5/12, "feet"),
  48264. weight: math.unit(510, "lb"),
  48265. name: "Front",
  48266. image: {
  48267. source: "./media/characters/syrup/front.svg",
  48268. extra: 932/916,
  48269. bottom: 26/958
  48270. }
  48271. },
  48272. },
  48273. [
  48274. {
  48275. name: "Normal",
  48276. height: math.unit(7 + 5/12, "feet"),
  48277. default: true
  48278. },
  48279. {
  48280. name: "Big",
  48281. height: math.unit(50, "feet")
  48282. },
  48283. {
  48284. name: "Macro",
  48285. height: math.unit(300, "feet")
  48286. },
  48287. {
  48288. name: "Megamacro",
  48289. height: math.unit(1, "mile")
  48290. },
  48291. ]
  48292. ))
  48293. characterMakers.push(() => makeCharacter(
  48294. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48295. {
  48296. front: {
  48297. height: math.unit(6 + 9/12, "feet"),
  48298. name: "Front",
  48299. image: {
  48300. source: "./media/characters/zeimne/front.svg",
  48301. extra: 1969/1806,
  48302. bottom: 53/2022
  48303. }
  48304. },
  48305. },
  48306. [
  48307. {
  48308. name: "Normal",
  48309. height: math.unit(6 + 9/12, "feet"),
  48310. default: true
  48311. },
  48312. {
  48313. name: "Giant",
  48314. height: math.unit(550, "feet")
  48315. },
  48316. {
  48317. name: "Mega",
  48318. height: math.unit(3, "miles")
  48319. },
  48320. {
  48321. name: "Giga",
  48322. height: math.unit(250, "miles")
  48323. },
  48324. {
  48325. name: "Tera",
  48326. height: math.unit(1, "AU")
  48327. },
  48328. ]
  48329. ))
  48330. characterMakers.push(() => makeCharacter(
  48331. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48332. {
  48333. front: {
  48334. height: math.unit(5 + 2/12, "feet"),
  48335. name: "Front",
  48336. image: {
  48337. source: "./media/characters/grar/front.svg",
  48338. extra: 1331/1119,
  48339. bottom: 60/1391
  48340. }
  48341. },
  48342. back: {
  48343. height: math.unit(5 + 2/12, "feet"),
  48344. name: "Back",
  48345. image: {
  48346. source: "./media/characters/grar/back.svg",
  48347. extra: 1385/1169,
  48348. bottom: 23/1408
  48349. }
  48350. },
  48351. },
  48352. [
  48353. {
  48354. name: "Normal",
  48355. height: math.unit(5 + 2/12, "feet"),
  48356. default: true
  48357. },
  48358. ]
  48359. ))
  48360. characterMakers.push(() => makeCharacter(
  48361. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48362. {
  48363. front: {
  48364. height: math.unit(13 + 7/12, "feet"),
  48365. weight: math.unit(2200, "lb"),
  48366. name: "Front",
  48367. image: {
  48368. source: "./media/characters/endraya/front.svg",
  48369. extra: 1289/1215,
  48370. bottom: 50/1339
  48371. }
  48372. },
  48373. nude: {
  48374. height: math.unit(13 + 7/12, "feet"),
  48375. weight: math.unit(2200, "lb"),
  48376. name: "Nude",
  48377. image: {
  48378. source: "./media/characters/endraya/nude.svg",
  48379. extra: 1247/1171,
  48380. bottom: 40/1287
  48381. }
  48382. },
  48383. head: {
  48384. height: math.unit(2.6, "feet"),
  48385. name: "Head",
  48386. image: {
  48387. source: "./media/characters/endraya/head.svg"
  48388. }
  48389. },
  48390. slit: {
  48391. height: math.unit(3.4, "feet"),
  48392. name: "Slit",
  48393. image: {
  48394. source: "./media/characters/endraya/slit.svg"
  48395. }
  48396. },
  48397. },
  48398. [
  48399. {
  48400. name: "Normal",
  48401. height: math.unit(13 + 7/12, "feet"),
  48402. default: true
  48403. },
  48404. {
  48405. name: "Macro",
  48406. height: math.unit(200, "feet")
  48407. },
  48408. ]
  48409. ))
  48410. characterMakers.push(() => makeCharacter(
  48411. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48412. {
  48413. front: {
  48414. height: math.unit(1.81, "meters"),
  48415. weight: math.unit(69, "kg"),
  48416. name: "Front",
  48417. image: {
  48418. source: "./media/characters/rodryana/front.svg",
  48419. extra: 2002/1921,
  48420. bottom: 53/2055
  48421. }
  48422. },
  48423. back: {
  48424. height: math.unit(1.81, "meters"),
  48425. weight: math.unit(69, "kg"),
  48426. name: "Back",
  48427. image: {
  48428. source: "./media/characters/rodryana/back.svg",
  48429. extra: 1993/1926,
  48430. bottom: 48/2041
  48431. }
  48432. },
  48433. maw: {
  48434. height: math.unit(0.19769417475, "meters"),
  48435. name: "Maw",
  48436. image: {
  48437. source: "./media/characters/rodryana/maw.svg"
  48438. }
  48439. },
  48440. slit: {
  48441. height: math.unit(0.31631067961, "meters"),
  48442. name: "Slit",
  48443. image: {
  48444. source: "./media/characters/rodryana/slit.svg"
  48445. }
  48446. },
  48447. },
  48448. [
  48449. {
  48450. name: "Normal",
  48451. height: math.unit(1.81, "meters")
  48452. },
  48453. {
  48454. name: "Mini Macro",
  48455. height: math.unit(181, "meters")
  48456. },
  48457. {
  48458. name: "Macro",
  48459. height: math.unit(452, "meters"),
  48460. default: true
  48461. },
  48462. {
  48463. name: "Mega Macro",
  48464. height: math.unit(1.375, "km")
  48465. },
  48466. {
  48467. name: "Giga Macro",
  48468. height: math.unit(13.575, "km")
  48469. },
  48470. ]
  48471. ))
  48472. characterMakers.push(() => makeCharacter(
  48473. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48474. {
  48475. front: {
  48476. height: math.unit(6, "feet"),
  48477. weight: math.unit(1000, "lb"),
  48478. name: "Front",
  48479. image: {
  48480. source: "./media/characters/asaya/front.svg",
  48481. extra: 1460/1200,
  48482. bottom: 71/1531
  48483. }
  48484. },
  48485. },
  48486. [
  48487. {
  48488. name: "Normal",
  48489. height: math.unit(8, "km"),
  48490. default: true
  48491. },
  48492. ]
  48493. ))
  48494. characterMakers.push(() => makeCharacter(
  48495. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48496. {
  48497. front: {
  48498. height: math.unit(3.5, "meters"),
  48499. name: "Front",
  48500. image: {
  48501. source: "./media/characters/sarzu-and-israz/front.svg",
  48502. extra: 1570/1558,
  48503. bottom: 150/1720
  48504. },
  48505. },
  48506. back: {
  48507. height: math.unit(3.5, "meters"),
  48508. name: "Back",
  48509. image: {
  48510. source: "./media/characters/sarzu-and-israz/back.svg",
  48511. extra: 1523/1509,
  48512. bottom: 132/1655
  48513. },
  48514. },
  48515. frontFemale: {
  48516. height: math.unit(3.5, "meters"),
  48517. name: "Front (Female)",
  48518. image: {
  48519. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48520. extra: 1570/1558,
  48521. bottom: 150/1720
  48522. },
  48523. },
  48524. frontHerm: {
  48525. height: math.unit(3.5, "meters"),
  48526. name: "Front (Herm)",
  48527. image: {
  48528. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48529. extra: 1570/1558,
  48530. bottom: 150/1720
  48531. },
  48532. },
  48533. },
  48534. [
  48535. {
  48536. name: "Normal",
  48537. height: math.unit(3.5, "meters"),
  48538. default: true,
  48539. },
  48540. {
  48541. name: "Macro",
  48542. height: math.unit(65.5, "meters"),
  48543. },
  48544. ],
  48545. ))
  48546. characterMakers.push(() => makeCharacter(
  48547. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48548. {
  48549. front: {
  48550. height: math.unit(6, "feet"),
  48551. weight: math.unit(250, "lb"),
  48552. name: "Front",
  48553. image: {
  48554. source: "./media/characters/zenimma/front.svg",
  48555. extra: 1346/1320,
  48556. bottom: 58/1404
  48557. }
  48558. },
  48559. back: {
  48560. height: math.unit(6, "feet"),
  48561. weight: math.unit(250, "lb"),
  48562. name: "Back",
  48563. image: {
  48564. source: "./media/characters/zenimma/back.svg",
  48565. extra: 1324/1308,
  48566. bottom: 44/1368
  48567. }
  48568. },
  48569. dick: {
  48570. height: math.unit(1.44, "feet"),
  48571. name: "Dick",
  48572. image: {
  48573. source: "./media/characters/zenimma/dick.svg"
  48574. }
  48575. },
  48576. },
  48577. [
  48578. {
  48579. name: "Canon Height",
  48580. height: math.unit(66, "miles"),
  48581. default: true
  48582. },
  48583. ]
  48584. ))
  48585. characterMakers.push(() => makeCharacter(
  48586. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48587. {
  48588. nude: {
  48589. height: math.unit(6, "feet"),
  48590. weight: math.unit(150, "lb"),
  48591. name: "Nude",
  48592. image: {
  48593. source: "./media/characters/shavon/nude.svg",
  48594. extra: 1242/1096,
  48595. bottom: 98/1340
  48596. }
  48597. },
  48598. dressed: {
  48599. height: math.unit(6, "feet"),
  48600. weight: math.unit(150, "lb"),
  48601. name: "Dressed",
  48602. image: {
  48603. source: "./media/characters/shavon/dressed.svg",
  48604. extra: 1242/1096,
  48605. bottom: 98/1340
  48606. }
  48607. },
  48608. },
  48609. [
  48610. {
  48611. name: "Macro",
  48612. height: math.unit(255, "feet"),
  48613. default: true
  48614. },
  48615. ]
  48616. ))
  48617. characterMakers.push(() => makeCharacter(
  48618. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48619. {
  48620. front: {
  48621. height: math.unit(6, "feet"),
  48622. name: "Front",
  48623. image: {
  48624. source: "./media/characters/steph/front.svg",
  48625. extra: 1430/1330,
  48626. bottom: 54/1484
  48627. }
  48628. },
  48629. },
  48630. [
  48631. {
  48632. name: "Normal",
  48633. height: math.unit(6, "feet"),
  48634. default: true
  48635. },
  48636. ]
  48637. ))
  48638. characterMakers.push(() => makeCharacter(
  48639. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48640. {
  48641. front: {
  48642. height: math.unit(9, "feet"),
  48643. weight: math.unit(400, "lb"),
  48644. name: "Front",
  48645. image: {
  48646. source: "./media/characters/kil'aman/front.svg",
  48647. extra: 1210/1159,
  48648. bottom: 109/1319
  48649. }
  48650. },
  48651. head: {
  48652. height: math.unit(2.14, "feet"),
  48653. name: "Head",
  48654. image: {
  48655. source: "./media/characters/kil'aman/head.svg"
  48656. }
  48657. },
  48658. maw: {
  48659. height: math.unit(1.21, "feet"),
  48660. name: "Maw",
  48661. image: {
  48662. source: "./media/characters/kil'aman/maw.svg"
  48663. }
  48664. },
  48665. foot: {
  48666. height: math.unit(1.7, "feet"),
  48667. name: "Foot",
  48668. image: {
  48669. source: "./media/characters/kil'aman/foot.svg"
  48670. }
  48671. },
  48672. dick: {
  48673. height: math.unit(2.1, "feet"),
  48674. name: "Dick",
  48675. image: {
  48676. source: "./media/characters/kil'aman/dick.svg"
  48677. }
  48678. },
  48679. },
  48680. [
  48681. {
  48682. name: "Normal",
  48683. height: math.unit(9, "feet")
  48684. },
  48685. {
  48686. name: "Canon Height",
  48687. height: math.unit(10, "miles"),
  48688. default: true
  48689. },
  48690. {
  48691. name: "Maximum",
  48692. height: math.unit(6e9, "miles")
  48693. },
  48694. ]
  48695. ))
  48696. characterMakers.push(() => makeCharacter(
  48697. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48698. {
  48699. front: {
  48700. height: math.unit(90, "feet"),
  48701. weight: math.unit(675000, "lb"),
  48702. name: "Front",
  48703. image: {
  48704. source: "./media/characters/qadan/front.svg",
  48705. extra: 1012/1004,
  48706. bottom: 78/1090
  48707. }
  48708. },
  48709. back: {
  48710. height: math.unit(90, "feet"),
  48711. weight: math.unit(675000, "lb"),
  48712. name: "Back",
  48713. image: {
  48714. source: "./media/characters/qadan/back.svg",
  48715. extra: 1042/1031,
  48716. bottom: 55/1097
  48717. }
  48718. },
  48719. armored: {
  48720. height: math.unit(90, "feet"),
  48721. weight: math.unit(675000, "lb"),
  48722. name: "Armored",
  48723. image: {
  48724. source: "./media/characters/qadan/armored.svg",
  48725. extra: 1047/1037,
  48726. bottom: 48/1095
  48727. }
  48728. },
  48729. },
  48730. [
  48731. {
  48732. name: "Normal",
  48733. height: math.unit(90, "feet"),
  48734. default: true
  48735. },
  48736. ]
  48737. ))
  48738. characterMakers.push(() => makeCharacter(
  48739. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48740. {
  48741. front: {
  48742. height: math.unit(6, "feet"),
  48743. weight: math.unit(225, "lb"),
  48744. name: "Front",
  48745. image: {
  48746. source: "./media/characters/brooke/front.svg",
  48747. extra: 1050/1010,
  48748. bottom: 66/1116
  48749. }
  48750. },
  48751. back: {
  48752. height: math.unit(6, "feet"),
  48753. weight: math.unit(225, "lb"),
  48754. name: "Back",
  48755. image: {
  48756. source: "./media/characters/brooke/back.svg",
  48757. extra: 1053/1013,
  48758. bottom: 41/1094
  48759. }
  48760. },
  48761. dressed: {
  48762. height: math.unit(6, "feet"),
  48763. weight: math.unit(225, "lb"),
  48764. name: "Dressed",
  48765. image: {
  48766. source: "./media/characters/brooke/dressed.svg",
  48767. extra: 1050/1010,
  48768. bottom: 66/1116
  48769. }
  48770. },
  48771. },
  48772. [
  48773. {
  48774. name: "Canon Height",
  48775. height: math.unit(500, "miles"),
  48776. default: true
  48777. },
  48778. ]
  48779. ))
  48780. characterMakers.push(() => makeCharacter(
  48781. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48782. {
  48783. front: {
  48784. height: math.unit(6 + 2/12, "feet"),
  48785. weight: math.unit(210, "lb"),
  48786. name: "Front",
  48787. image: {
  48788. source: "./media/characters/wubs/front.svg",
  48789. extra: 1345/1325,
  48790. bottom: 70/1415
  48791. }
  48792. },
  48793. back: {
  48794. height: math.unit(6 + 2/12, "feet"),
  48795. weight: math.unit(210, "lb"),
  48796. name: "Back",
  48797. image: {
  48798. source: "./media/characters/wubs/back.svg",
  48799. extra: 1296/1275,
  48800. bottom: 58/1354
  48801. }
  48802. },
  48803. },
  48804. [
  48805. {
  48806. name: "Normal",
  48807. height: math.unit(6 + 2/12, "feet"),
  48808. default: true
  48809. },
  48810. {
  48811. name: "Macro",
  48812. height: math.unit(1000, "feet")
  48813. },
  48814. {
  48815. name: "Megamacro",
  48816. height: math.unit(1, "mile")
  48817. },
  48818. ]
  48819. ))
  48820. characterMakers.push(() => makeCharacter(
  48821. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48822. {
  48823. front: {
  48824. height: math.unit(4, "feet"),
  48825. weight: math.unit(120, "lb"),
  48826. name: "Front",
  48827. image: {
  48828. source: "./media/characters/blue/front.svg",
  48829. extra: 1636/1525,
  48830. bottom: 43/1679
  48831. }
  48832. },
  48833. back: {
  48834. height: math.unit(4, "feet"),
  48835. weight: math.unit(120, "lb"),
  48836. name: "Back",
  48837. image: {
  48838. source: "./media/characters/blue/back.svg",
  48839. extra: 1660/1560,
  48840. bottom: 57/1717
  48841. }
  48842. },
  48843. paws: {
  48844. height: math.unit(0.826, "feet"),
  48845. name: "Paws",
  48846. image: {
  48847. source: "./media/characters/blue/paws.svg"
  48848. }
  48849. },
  48850. },
  48851. [
  48852. {
  48853. name: "Micro",
  48854. height: math.unit(3, "inches")
  48855. },
  48856. {
  48857. name: "Normal",
  48858. height: math.unit(4, "feet"),
  48859. default: true
  48860. },
  48861. {
  48862. name: "Femenine Form",
  48863. height: math.unit(14, "feet")
  48864. },
  48865. {
  48866. name: "Werebat Form",
  48867. height: math.unit(18, "feet")
  48868. },
  48869. ]
  48870. ))
  48871. characterMakers.push(() => makeCharacter(
  48872. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48873. {
  48874. female: {
  48875. height: math.unit(7 + 4/12, "feet"),
  48876. weight: math.unit(243, "lb"),
  48877. name: "Female",
  48878. image: {
  48879. source: "./media/characters/kaya/female.svg",
  48880. extra: 975/898,
  48881. bottom: 34/1009
  48882. }
  48883. },
  48884. herm: {
  48885. height: math.unit(7 + 4/12, "feet"),
  48886. weight: math.unit(243, "lb"),
  48887. name: "Herm",
  48888. image: {
  48889. source: "./media/characters/kaya/herm.svg",
  48890. extra: 975/898,
  48891. bottom: 34/1009
  48892. }
  48893. },
  48894. },
  48895. [
  48896. {
  48897. name: "Normal",
  48898. height: math.unit(7 + 4/12, "feet"),
  48899. default: true
  48900. },
  48901. ]
  48902. ))
  48903. characterMakers.push(() => makeCharacter(
  48904. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48905. {
  48906. female: {
  48907. height: math.unit(9 + 4/12, "feet"),
  48908. weight: math.unit(398, "lb"),
  48909. name: "Female",
  48910. image: {
  48911. source: "./media/characters/kassandra/female.svg",
  48912. extra: 908/839,
  48913. bottom: 61/969
  48914. }
  48915. },
  48916. intersex: {
  48917. height: math.unit(9 + 4/12, "feet"),
  48918. weight: math.unit(398, "lb"),
  48919. name: "Intersex",
  48920. image: {
  48921. source: "./media/characters/kassandra/intersex.svg",
  48922. extra: 908/839,
  48923. bottom: 61/969
  48924. }
  48925. },
  48926. },
  48927. [
  48928. {
  48929. name: "Normal",
  48930. height: math.unit(9 + 4/12, "feet"),
  48931. default: true
  48932. },
  48933. ]
  48934. ))
  48935. characterMakers.push(() => makeCharacter(
  48936. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48937. {
  48938. front: {
  48939. height: math.unit(3, "meters"),
  48940. name: "Front",
  48941. image: {
  48942. source: "./media/characters/amy/front.svg",
  48943. extra: 1380/1343,
  48944. bottom: 70/1450
  48945. }
  48946. },
  48947. back: {
  48948. height: math.unit(3, "meters"),
  48949. name: "Back",
  48950. image: {
  48951. source: "./media/characters/amy/back.svg",
  48952. extra: 1380/1347,
  48953. bottom: 66/1446
  48954. }
  48955. },
  48956. },
  48957. [
  48958. {
  48959. name: "Normal",
  48960. height: math.unit(3, "meters"),
  48961. default: true
  48962. },
  48963. ]
  48964. ))
  48965. characterMakers.push(() => makeCharacter(
  48966. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48967. {
  48968. side: {
  48969. height: math.unit(47, "cm"),
  48970. weight: math.unit(10.8, "kg"),
  48971. name: "Side",
  48972. image: {
  48973. source: "./media/characters/alphaschakal/side.svg",
  48974. extra: 1058/568,
  48975. bottom: 62/1120
  48976. }
  48977. },
  48978. back: {
  48979. height: math.unit(78, "cm"),
  48980. weight: math.unit(10.8, "kg"),
  48981. name: "Back",
  48982. image: {
  48983. source: "./media/characters/alphaschakal/back.svg",
  48984. extra: 1102/942,
  48985. bottom: 185/1287
  48986. }
  48987. },
  48988. head: {
  48989. height: math.unit(28, "cm"),
  48990. name: "Head",
  48991. image: {
  48992. source: "./media/characters/alphaschakal/head.svg",
  48993. extra: 696/508,
  48994. bottom: 0/696
  48995. }
  48996. },
  48997. paw: {
  48998. height: math.unit(16, "cm"),
  48999. name: "Paw",
  49000. image: {
  49001. source: "./media/characters/alphaschakal/paw.svg"
  49002. }
  49003. },
  49004. },
  49005. [
  49006. {
  49007. name: "Normal",
  49008. height: math.unit(47, "cm"),
  49009. default: true
  49010. },
  49011. {
  49012. name: "Macro",
  49013. height: math.unit(340, "cm")
  49014. },
  49015. ]
  49016. ))
  49017. characterMakers.push(() => makeCharacter(
  49018. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49019. {
  49020. front: {
  49021. height: math.unit(36, "earths"),
  49022. name: "Front",
  49023. image: {
  49024. source: "./media/characters/ecobyss/front.svg",
  49025. extra: 1282/1215,
  49026. bottom: 11/1293
  49027. }
  49028. },
  49029. back: {
  49030. height: math.unit(36, "earths"),
  49031. name: "Back",
  49032. image: {
  49033. source: "./media/characters/ecobyss/back.svg",
  49034. extra: 1291/1222,
  49035. bottom: 8/1299
  49036. }
  49037. },
  49038. },
  49039. [
  49040. {
  49041. name: "Normal",
  49042. height: math.unit(36, "earths"),
  49043. default: true
  49044. },
  49045. ]
  49046. ))
  49047. characterMakers.push(() => makeCharacter(
  49048. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49049. {
  49050. front: {
  49051. height: math.unit(12, "feet"),
  49052. name: "Front",
  49053. image: {
  49054. source: "./media/characters/vasuk/front.svg",
  49055. extra: 1326/1207,
  49056. bottom: 64/1390
  49057. }
  49058. },
  49059. },
  49060. [
  49061. {
  49062. name: "Normal",
  49063. height: math.unit(12, "feet"),
  49064. default: true
  49065. },
  49066. ]
  49067. ))
  49068. characterMakers.push(() => makeCharacter(
  49069. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49070. {
  49071. side: {
  49072. height: math.unit(100, "feet"),
  49073. name: "Side",
  49074. image: {
  49075. source: "./media/characters/linneaus/side.svg",
  49076. extra: 987/807,
  49077. bottom: 47/1034
  49078. }
  49079. },
  49080. },
  49081. [
  49082. {
  49083. name: "Macro",
  49084. height: math.unit(100, "feet"),
  49085. default: true
  49086. },
  49087. ]
  49088. ))
  49089. characterMakers.push(() => makeCharacter(
  49090. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49091. {
  49092. front: {
  49093. height: math.unit(8, "feet"),
  49094. weight: math.unit(1200, "lb"),
  49095. name: "Front",
  49096. image: {
  49097. source: "./media/characters/nyterious-daligdig/front.svg",
  49098. extra: 1284/1094,
  49099. bottom: 84/1368
  49100. }
  49101. },
  49102. back: {
  49103. height: math.unit(8, "feet"),
  49104. weight: math.unit(1200, "lb"),
  49105. name: "Back",
  49106. image: {
  49107. source: "./media/characters/nyterious-daligdig/back.svg",
  49108. extra: 1301/1121,
  49109. bottom: 129/1430
  49110. }
  49111. },
  49112. mouth: {
  49113. height: math.unit(1.464, "feet"),
  49114. name: "Mouth",
  49115. image: {
  49116. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49117. }
  49118. },
  49119. },
  49120. [
  49121. {
  49122. name: "Small",
  49123. height: math.unit(8, "feet"),
  49124. default: true
  49125. },
  49126. {
  49127. name: "Normal",
  49128. height: math.unit(15, "feet")
  49129. },
  49130. {
  49131. name: "Macro",
  49132. height: math.unit(90, "feet")
  49133. },
  49134. ]
  49135. ))
  49136. characterMakers.push(() => makeCharacter(
  49137. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49138. {
  49139. front: {
  49140. height: math.unit(7 + 4/12, "feet"),
  49141. weight: math.unit(252, "lb"),
  49142. name: "Front",
  49143. image: {
  49144. source: "./media/characters/bandel/front.svg",
  49145. extra: 1946/1775,
  49146. bottom: 26/1972
  49147. }
  49148. },
  49149. back: {
  49150. height: math.unit(7 + 4/12, "feet"),
  49151. weight: math.unit(252, "lb"),
  49152. name: "Back",
  49153. image: {
  49154. source: "./media/characters/bandel/back.svg",
  49155. extra: 1940/1770,
  49156. bottom: 25/1965
  49157. }
  49158. },
  49159. maw: {
  49160. height: math.unit(2.15, "feet"),
  49161. name: "Maw",
  49162. image: {
  49163. source: "./media/characters/bandel/maw.svg"
  49164. }
  49165. },
  49166. stomach: {
  49167. height: math.unit(1.95, "feet"),
  49168. name: "Stomach",
  49169. image: {
  49170. source: "./media/characters/bandel/stomach.svg"
  49171. }
  49172. },
  49173. },
  49174. [
  49175. {
  49176. name: "Normal",
  49177. height: math.unit(7 + 4/12, "feet"),
  49178. default: true
  49179. },
  49180. ]
  49181. ))
  49182. characterMakers.push(() => makeCharacter(
  49183. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49184. {
  49185. front: {
  49186. height: math.unit(10 + 5/12, "feet"),
  49187. weight: math.unit(773.5, "kg"),
  49188. name: "Front",
  49189. image: {
  49190. source: "./media/characters/zed/front.svg",
  49191. extra: 987/941,
  49192. bottom: 52/1039
  49193. }
  49194. },
  49195. },
  49196. [
  49197. {
  49198. name: "Short",
  49199. height: math.unit(5 + 4/12, "feet")
  49200. },
  49201. {
  49202. name: "Average",
  49203. height: math.unit(10 + 5/12, "feet"),
  49204. default: true
  49205. },
  49206. {
  49207. name: "Mini-Macro",
  49208. height: math.unit(24 + 9/12, "feet")
  49209. },
  49210. {
  49211. name: "Macro",
  49212. height: math.unit(249, "feet")
  49213. },
  49214. {
  49215. name: "Mega-Macro",
  49216. height: math.unit(12490, "feet")
  49217. },
  49218. {
  49219. name: "Giga-Macro",
  49220. height: math.unit(24.9, "miles")
  49221. },
  49222. {
  49223. name: "Tera-Macro",
  49224. height: math.unit(24900, "miles")
  49225. },
  49226. {
  49227. name: "Cosmic Scale",
  49228. height: math.unit(38.9, "lightyears")
  49229. },
  49230. {
  49231. name: "Universal Scale",
  49232. height: math.unit(138e12, "lightyears")
  49233. },
  49234. ]
  49235. ))
  49236. characterMakers.push(() => makeCharacter(
  49237. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49238. {
  49239. front: {
  49240. height: math.unit(1561, "inches"),
  49241. name: "Front",
  49242. image: {
  49243. source: "./media/characters/ivan/front.svg",
  49244. extra: 1126/1071,
  49245. bottom: 26/1152
  49246. }
  49247. },
  49248. back: {
  49249. height: math.unit(1561, "inches"),
  49250. name: "Back",
  49251. image: {
  49252. source: "./media/characters/ivan/back.svg",
  49253. extra: 1134/1079,
  49254. bottom: 30/1164
  49255. }
  49256. },
  49257. },
  49258. [
  49259. {
  49260. name: "Normal",
  49261. height: math.unit(1561, "inches"),
  49262. default: true
  49263. },
  49264. ]
  49265. ))
  49266. characterMakers.push(() => makeCharacter(
  49267. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49268. {
  49269. front: {
  49270. height: math.unit(5 + 7/12, "feet"),
  49271. weight: math.unit(150, "lb"),
  49272. name: "Front",
  49273. image: {
  49274. source: "./media/characters/robin-arctic-hare/front.svg",
  49275. extra: 1148/974,
  49276. bottom: 20/1168
  49277. }
  49278. },
  49279. },
  49280. [
  49281. {
  49282. name: "Normal",
  49283. height: math.unit(5 + 7/12, "feet"),
  49284. default: true
  49285. },
  49286. ]
  49287. ))
  49288. characterMakers.push(() => makeCharacter(
  49289. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49290. {
  49291. side: {
  49292. height: math.unit(5, "feet"),
  49293. name: "Side",
  49294. image: {
  49295. source: "./media/characters/birch/side.svg",
  49296. extra: 985/796,
  49297. bottom: 111/1096
  49298. }
  49299. },
  49300. },
  49301. [
  49302. {
  49303. name: "Normal",
  49304. height: math.unit(5, "feet"),
  49305. default: true
  49306. },
  49307. ]
  49308. ))
  49309. characterMakers.push(() => makeCharacter(
  49310. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49311. {
  49312. front: {
  49313. height: math.unit(4, "feet"),
  49314. name: "Front",
  49315. image: {
  49316. source: "./media/characters/rasp/front.svg",
  49317. extra: 561/478,
  49318. bottom: 74/635
  49319. }
  49320. },
  49321. },
  49322. [
  49323. {
  49324. name: "Normal",
  49325. height: math.unit(4, "feet"),
  49326. default: true
  49327. },
  49328. ]
  49329. ))
  49330. characterMakers.push(() => makeCharacter(
  49331. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49332. {
  49333. front: {
  49334. height: math.unit(4 + 6/12, "feet"),
  49335. name: "Front",
  49336. image: {
  49337. source: "./media/characters/agatha/front.svg",
  49338. extra: 947/933,
  49339. bottom: 42/989
  49340. }
  49341. },
  49342. back: {
  49343. height: math.unit(4 + 6/12, "feet"),
  49344. name: "Back",
  49345. image: {
  49346. source: "./media/characters/agatha/back.svg",
  49347. extra: 935/922,
  49348. bottom: 48/983
  49349. }
  49350. },
  49351. },
  49352. [
  49353. {
  49354. name: "Normal",
  49355. height: math.unit(4 + 6 /12, "feet"),
  49356. default: true
  49357. },
  49358. {
  49359. name: "Max Size",
  49360. height: math.unit(500, "feet")
  49361. },
  49362. ]
  49363. ))
  49364. characterMakers.push(() => makeCharacter(
  49365. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49366. {
  49367. side: {
  49368. height: math.unit(30, "feet"),
  49369. name: "Side",
  49370. image: {
  49371. source: "./media/characters/roggy/side.svg",
  49372. extra: 909/643,
  49373. bottom: 63/972
  49374. }
  49375. },
  49376. lounging: {
  49377. height: math.unit(20, "feet"),
  49378. name: "Lounging",
  49379. image: {
  49380. source: "./media/characters/roggy/lounging.svg",
  49381. extra: 643/479,
  49382. bottom: 145/788
  49383. }
  49384. },
  49385. handpaw: {
  49386. height: math.unit(13.1, "feet"),
  49387. name: "Handpaw",
  49388. image: {
  49389. source: "./media/characters/roggy/handpaw.svg"
  49390. }
  49391. },
  49392. footpaw: {
  49393. height: math.unit(15.8, "feet"),
  49394. name: "Footpaw",
  49395. image: {
  49396. source: "./media/characters/roggy/footpaw.svg"
  49397. }
  49398. },
  49399. },
  49400. [
  49401. {
  49402. name: "Menacing",
  49403. height: math.unit(30, "feet"),
  49404. default: true
  49405. },
  49406. ]
  49407. ))
  49408. characterMakers.push(() => makeCharacter(
  49409. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49410. {
  49411. front: {
  49412. height: math.unit(5 + 7/12, "feet"),
  49413. weight: math.unit(135, "lb"),
  49414. name: "Front",
  49415. image: {
  49416. source: "./media/characters/naomi/front.svg",
  49417. extra: 1209/1154,
  49418. bottom: 129/1338
  49419. }
  49420. },
  49421. back: {
  49422. height: math.unit(5 + 7/12, "feet"),
  49423. weight: math.unit(135, "lb"),
  49424. name: "Back",
  49425. image: {
  49426. source: "./media/characters/naomi/back.svg",
  49427. extra: 1252/1190,
  49428. bottom: 23/1275
  49429. }
  49430. },
  49431. },
  49432. [
  49433. {
  49434. name: "Normal",
  49435. height: math.unit(5 + 7 /12, "feet"),
  49436. default: true
  49437. },
  49438. ]
  49439. ))
  49440. characterMakers.push(() => makeCharacter(
  49441. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49442. {
  49443. side: {
  49444. height: math.unit(35, "meters"),
  49445. name: "Side",
  49446. image: {
  49447. source: "./media/characters/kimpi/side.svg",
  49448. extra: 419/382,
  49449. bottom: 63/482
  49450. }
  49451. },
  49452. hand: {
  49453. height: math.unit(8.96, "meters"),
  49454. name: "Hand",
  49455. image: {
  49456. source: "./media/characters/kimpi/hand.svg"
  49457. }
  49458. },
  49459. },
  49460. [
  49461. {
  49462. name: "Normal",
  49463. height: math.unit(35, "meters"),
  49464. default: true
  49465. },
  49466. ]
  49467. ))
  49468. characterMakers.push(() => makeCharacter(
  49469. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49470. {
  49471. front: {
  49472. height: math.unit(4 + 4/12, "feet"),
  49473. name: "Front",
  49474. image: {
  49475. source: "./media/characters/pepper-purrloin/front.svg",
  49476. extra: 1141/1024,
  49477. bottom: 21/1162
  49478. }
  49479. },
  49480. },
  49481. [
  49482. {
  49483. name: "Normal",
  49484. height: math.unit(4 + 4/12, "feet"),
  49485. default: true
  49486. },
  49487. ]
  49488. ))
  49489. characterMakers.push(() => makeCharacter(
  49490. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49491. {
  49492. front: {
  49493. height: math.unit(6 + 2/12, "feet"),
  49494. name: "Front",
  49495. image: {
  49496. source: "./media/characters/raphael/front.svg",
  49497. extra: 1101/962,
  49498. bottom: 59/1160
  49499. }
  49500. },
  49501. },
  49502. [
  49503. {
  49504. name: "Normal",
  49505. height: math.unit(6 + 2/12, "feet"),
  49506. default: true
  49507. },
  49508. ]
  49509. ))
  49510. characterMakers.push(() => makeCharacter(
  49511. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49512. {
  49513. front: {
  49514. height: math.unit(6, "feet"),
  49515. weight: math.unit(150, "lb"),
  49516. name: "Front",
  49517. image: {
  49518. source: "./media/characters/victor-williams/front.svg",
  49519. extra: 1894/1825,
  49520. bottom: 67/1961
  49521. }
  49522. },
  49523. },
  49524. [
  49525. {
  49526. name: "Normal",
  49527. height: math.unit(6, "feet"),
  49528. default: true
  49529. },
  49530. ]
  49531. ))
  49532. characterMakers.push(() => makeCharacter(
  49533. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49534. {
  49535. front: {
  49536. height: math.unit(5 + 8/12, "feet"),
  49537. weight: math.unit(150, "lb"),
  49538. name: "Front",
  49539. image: {
  49540. source: "./media/characters/rachel/front.svg",
  49541. extra: 1902/1787,
  49542. bottom: 46/1948
  49543. }
  49544. },
  49545. },
  49546. [
  49547. {
  49548. name: "Base Height",
  49549. height: math.unit(5 + 8/12, "feet"),
  49550. default: true
  49551. },
  49552. {
  49553. name: "Macro",
  49554. height: math.unit(200, "feet")
  49555. },
  49556. {
  49557. name: "Mega Macro",
  49558. height: math.unit(1, "mile")
  49559. },
  49560. {
  49561. name: "Giga Macro",
  49562. height: math.unit(1500, "miles")
  49563. },
  49564. {
  49565. name: "Tera Macro",
  49566. height: math.unit(8000, "miles")
  49567. },
  49568. {
  49569. name: "Tera Macro+",
  49570. height: math.unit(2e5, "miles")
  49571. },
  49572. ]
  49573. ))
  49574. characterMakers.push(() => makeCharacter(
  49575. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49576. {
  49577. front: {
  49578. height: math.unit(6.5, "feet"),
  49579. name: "Front",
  49580. image: {
  49581. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49582. extra: 860/819,
  49583. bottom: 307/1167
  49584. }
  49585. },
  49586. back: {
  49587. height: math.unit(6.5, "feet"),
  49588. name: "Back",
  49589. image: {
  49590. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49591. extra: 880/837,
  49592. bottom: 395/1275
  49593. }
  49594. },
  49595. sleeping: {
  49596. height: math.unit(2.79, "feet"),
  49597. name: "Sleeping",
  49598. image: {
  49599. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49600. extra: 465/383,
  49601. bottom: 263/728
  49602. }
  49603. },
  49604. maw: {
  49605. height: math.unit(2.52, "feet"),
  49606. name: "Maw",
  49607. image: {
  49608. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49609. }
  49610. },
  49611. },
  49612. [
  49613. {
  49614. name: "Normal",
  49615. height: math.unit(6.5, "feet"),
  49616. default: true
  49617. },
  49618. ]
  49619. ))
  49620. characterMakers.push(() => makeCharacter(
  49621. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49622. {
  49623. front: {
  49624. height: math.unit(5, "feet"),
  49625. name: "Front",
  49626. image: {
  49627. source: "./media/characters/nova-nerium/front.svg",
  49628. extra: 1548/1392,
  49629. bottom: 374/1922
  49630. }
  49631. },
  49632. back: {
  49633. height: math.unit(5, "feet"),
  49634. name: "Back",
  49635. image: {
  49636. source: "./media/characters/nova-nerium/back.svg",
  49637. extra: 1658/1468,
  49638. bottom: 257/1915
  49639. }
  49640. },
  49641. },
  49642. [
  49643. {
  49644. name: "Normal",
  49645. height: math.unit(5, "feet"),
  49646. default: true
  49647. },
  49648. ]
  49649. ))
  49650. characterMakers.push(() => makeCharacter(
  49651. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49652. {
  49653. front: {
  49654. height: math.unit(5 + 4/12, "feet"),
  49655. name: "Front",
  49656. image: {
  49657. source: "./media/characters/ashe-pyriph/front.svg",
  49658. extra: 1935/1747,
  49659. bottom: 60/1995
  49660. }
  49661. },
  49662. },
  49663. [
  49664. {
  49665. name: "Normal",
  49666. height: math.unit(5 + 4/12, "feet"),
  49667. default: true
  49668. },
  49669. ]
  49670. ))
  49671. characterMakers.push(() => makeCharacter(
  49672. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49673. {
  49674. front: {
  49675. height: math.unit(8.7, "feet"),
  49676. name: "Front",
  49677. image: {
  49678. source: "./media/characters/flicker-wisp/front.svg",
  49679. extra: 1835/1613,
  49680. bottom: 449/2284
  49681. }
  49682. },
  49683. side: {
  49684. height: math.unit(8.7, "feet"),
  49685. name: "Side",
  49686. image: {
  49687. source: "./media/characters/flicker-wisp/side.svg",
  49688. extra: 1841/1642,
  49689. bottom: 336/2177
  49690. },
  49691. default: true
  49692. },
  49693. maw: {
  49694. height: math.unit(3.35, "feet"),
  49695. name: "Maw",
  49696. image: {
  49697. source: "./media/characters/flicker-wisp/maw.svg",
  49698. extra: 2338/1506,
  49699. bottom: 0/2338
  49700. }
  49701. },
  49702. ovipositor: {
  49703. height: math.unit(4.95, "feet"),
  49704. name: "Ovipositor",
  49705. image: {
  49706. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49707. }
  49708. },
  49709. egg: {
  49710. height: math.unit(0.385, "feet"),
  49711. weight: math.unit(2, "lb"),
  49712. name: "Egg",
  49713. image: {
  49714. source: "./media/characters/flicker-wisp/egg.svg"
  49715. }
  49716. },
  49717. },
  49718. [
  49719. {
  49720. name: "Normal",
  49721. height: math.unit(8.7, "feet"),
  49722. default: true
  49723. },
  49724. ]
  49725. ))
  49726. characterMakers.push(() => makeCharacter(
  49727. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49728. {
  49729. side: {
  49730. height: math.unit(11, "feet"),
  49731. name: "Side",
  49732. image: {
  49733. source: "./media/characters/faefnul/side.svg",
  49734. extra: 1100/1007,
  49735. bottom: 0/1100
  49736. }
  49737. },
  49738. },
  49739. [
  49740. {
  49741. name: "Normal",
  49742. height: math.unit(11, "feet"),
  49743. default: true
  49744. },
  49745. ]
  49746. ))
  49747. characterMakers.push(() => makeCharacter(
  49748. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49749. {
  49750. front: {
  49751. height: math.unit(6 + 2/12, "feet"),
  49752. name: "Front",
  49753. image: {
  49754. source: "./media/characters/shady/front.svg",
  49755. extra: 502/461,
  49756. bottom: 9/511
  49757. }
  49758. },
  49759. kneeling: {
  49760. height: math.unit(4.6, "feet"),
  49761. name: "Kneeling",
  49762. image: {
  49763. source: "./media/characters/shady/kneeling.svg",
  49764. extra: 1328/1219,
  49765. bottom: 117/1445
  49766. }
  49767. },
  49768. maw: {
  49769. height: math.unit(2, "feet"),
  49770. name: "Maw",
  49771. image: {
  49772. source: "./media/characters/shady/maw.svg"
  49773. }
  49774. },
  49775. },
  49776. [
  49777. {
  49778. name: "Nano",
  49779. height: math.unit(1, "mm")
  49780. },
  49781. {
  49782. name: "Micro",
  49783. height: math.unit(12, "mm")
  49784. },
  49785. {
  49786. name: "Tiny",
  49787. height: math.unit(3, "inches")
  49788. },
  49789. {
  49790. name: "Normal",
  49791. height: math.unit(6 + 2/12, "feet"),
  49792. default: true
  49793. },
  49794. {
  49795. name: "Big",
  49796. height: math.unit(15, "feet")
  49797. },
  49798. {
  49799. name: "Macro",
  49800. height: math.unit(150, "feet")
  49801. },
  49802. {
  49803. name: "Titanic",
  49804. height: math.unit(500, "feet")
  49805. },
  49806. ]
  49807. ))
  49808. characterMakers.push(() => makeCharacter(
  49809. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49810. {
  49811. front: {
  49812. height: math.unit(12, "feet"),
  49813. name: "Front",
  49814. image: {
  49815. source: "./media/characters/fenrir/front.svg",
  49816. extra: 968/875,
  49817. bottom: 22/990
  49818. }
  49819. },
  49820. },
  49821. [
  49822. {
  49823. name: "Big",
  49824. height: math.unit(12, "feet"),
  49825. default: true
  49826. },
  49827. ]
  49828. ))
  49829. characterMakers.push(() => makeCharacter(
  49830. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49831. {
  49832. front: {
  49833. height: math.unit(5 + 4/12, "feet"),
  49834. name: "Front",
  49835. image: {
  49836. source: "./media/characters/makar/front.svg",
  49837. extra: 1181/1112,
  49838. bottom: 78/1259
  49839. }
  49840. },
  49841. },
  49842. [
  49843. {
  49844. name: "Normal",
  49845. height: math.unit(5 + 4/12, "feet"),
  49846. default: true
  49847. },
  49848. ]
  49849. ))
  49850. characterMakers.push(() => makeCharacter(
  49851. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49852. {
  49853. front: {
  49854. height: math.unit(5 + 7/12, "feet"),
  49855. name: "Front",
  49856. image: {
  49857. source: "./media/characters/callow/front.svg",
  49858. extra: 1482/1304,
  49859. bottom: 23/1505
  49860. }
  49861. },
  49862. back: {
  49863. height: math.unit(5 + 7/12, "feet"),
  49864. name: "Back",
  49865. image: {
  49866. source: "./media/characters/callow/back.svg",
  49867. extra: 1484/1296,
  49868. bottom: 25/1509
  49869. }
  49870. },
  49871. },
  49872. [
  49873. {
  49874. name: "Micro",
  49875. height: math.unit(3, "inches"),
  49876. default: true
  49877. },
  49878. {
  49879. name: "Normal",
  49880. height: math.unit(5 + 7/12, "feet")
  49881. },
  49882. ]
  49883. ))
  49884. characterMakers.push(() => makeCharacter(
  49885. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49886. {
  49887. front: {
  49888. height: math.unit(6 + 2/12, "feet"),
  49889. name: "Front",
  49890. image: {
  49891. source: "./media/characters/natel/front.svg",
  49892. extra: 1833/1692,
  49893. bottom: 166/1999
  49894. }
  49895. },
  49896. },
  49897. [
  49898. {
  49899. name: "Normal",
  49900. height: math.unit(6 + 2/12, "feet"),
  49901. default: true
  49902. },
  49903. ]
  49904. ))
  49905. characterMakers.push(() => makeCharacter(
  49906. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49907. {
  49908. front: {
  49909. height: math.unit(1.75, "meters"),
  49910. name: "Front",
  49911. image: {
  49912. source: "./media/characters/misu/front.svg",
  49913. extra: 1690/1558,
  49914. bottom: 234/1924
  49915. }
  49916. },
  49917. back: {
  49918. height: math.unit(1.75, "meters"),
  49919. name: "Back",
  49920. image: {
  49921. source: "./media/characters/misu/back.svg",
  49922. extra: 1762/1618,
  49923. bottom: 146/1908
  49924. }
  49925. },
  49926. frontNude: {
  49927. height: math.unit(1.75, "meters"),
  49928. name: "Front (Nude)",
  49929. image: {
  49930. source: "./media/characters/misu/front-nude.svg",
  49931. extra: 1690/1558,
  49932. bottom: 234/1924
  49933. }
  49934. },
  49935. backNude: {
  49936. height: math.unit(1.75, "meters"),
  49937. name: "Back (Nude)",
  49938. image: {
  49939. source: "./media/characters/misu/back-nude.svg",
  49940. extra: 1762/1618,
  49941. bottom: 146/1908
  49942. }
  49943. },
  49944. frontErect: {
  49945. height: math.unit(1.75, "meters"),
  49946. name: "Front (Erect)",
  49947. image: {
  49948. source: "./media/characters/misu/front-erect.svg",
  49949. extra: 1690/1558,
  49950. bottom: 234/1924
  49951. }
  49952. },
  49953. maw: {
  49954. height: math.unit(0.47, "meters"),
  49955. name: "Maw",
  49956. image: {
  49957. source: "./media/characters/misu/maw.svg"
  49958. }
  49959. },
  49960. head: {
  49961. height: math.unit(0.35, "meters"),
  49962. name: "Head",
  49963. image: {
  49964. source: "./media/characters/misu/head.svg"
  49965. }
  49966. },
  49967. rear: {
  49968. height: math.unit(0.47, "meters"),
  49969. name: "Rear",
  49970. image: {
  49971. source: "./media/characters/misu/rear.svg"
  49972. }
  49973. },
  49974. },
  49975. [
  49976. {
  49977. name: "Normal",
  49978. height: math.unit(1.75, "meters")
  49979. },
  49980. {
  49981. name: "Not good for the people",
  49982. height: math.unit(42, "meters")
  49983. },
  49984. {
  49985. name: "Not good for the neighborhood",
  49986. height: math.unit(135, "meters")
  49987. },
  49988. {
  49989. name: "Bit bigger problem",
  49990. height: math.unit(380, "meters"),
  49991. default: true
  49992. },
  49993. {
  49994. name: "Not good for the city",
  49995. height: math.unit(1.5, "km")
  49996. },
  49997. {
  49998. name: "Not good for the county",
  49999. height: math.unit(5.5, "km")
  50000. },
  50001. {
  50002. name: "Not good for the state",
  50003. height: math.unit(25, "km")
  50004. },
  50005. {
  50006. name: "Not good for the country",
  50007. height: math.unit(125, "km")
  50008. },
  50009. {
  50010. name: "Not good for the continent",
  50011. height: math.unit(2100, "km")
  50012. },
  50013. {
  50014. name: "Not good for the planet",
  50015. height: math.unit(35000, "km")
  50016. },
  50017. {
  50018. name: "Just no",
  50019. height: math.unit(8.5e18, "km")
  50020. },
  50021. ]
  50022. ))
  50023. characterMakers.push(() => makeCharacter(
  50024. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50025. {
  50026. front: {
  50027. height: math.unit(6.5, "feet"),
  50028. name: "Front",
  50029. image: {
  50030. source: "./media/characters/poppy/front.svg",
  50031. extra: 1878/1812,
  50032. bottom: 43/1921
  50033. }
  50034. },
  50035. feet: {
  50036. height: math.unit(1.06, "feet"),
  50037. name: "Feet",
  50038. image: {
  50039. source: "./media/characters/poppy/feet.svg",
  50040. extra: 1083/1083,
  50041. bottom: 87/1170
  50042. }
  50043. },
  50044. },
  50045. [
  50046. {
  50047. name: "Human",
  50048. height: math.unit(6.5, "feet")
  50049. },
  50050. {
  50051. name: "Default",
  50052. height: math.unit(300, "feet"),
  50053. default: true
  50054. },
  50055. {
  50056. name: "Huge",
  50057. height: math.unit(850, "feet")
  50058. },
  50059. {
  50060. name: "Mega",
  50061. height: math.unit(8000, "feet")
  50062. },
  50063. {
  50064. name: "Giga",
  50065. height: math.unit(300, "miles")
  50066. },
  50067. ]
  50068. ))
  50069. characterMakers.push(() => makeCharacter(
  50070. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50071. {
  50072. bipedal: {
  50073. height: math.unit(7, "feet"),
  50074. name: "Bipedal",
  50075. image: {
  50076. source: "./media/characters/zener/bipedal.svg",
  50077. extra: 874/805,
  50078. bottom: 109/983
  50079. }
  50080. },
  50081. quadrupedal: {
  50082. height: math.unit(4.64, "feet"),
  50083. name: "Quadrupedal",
  50084. image: {
  50085. source: "./media/characters/zener/quadrupedal.svg",
  50086. extra: 638/507,
  50087. bottom: 190/828
  50088. }
  50089. },
  50090. cock: {
  50091. height: math.unit(18, "inches"),
  50092. name: "Cock",
  50093. image: {
  50094. source: "./media/characters/zener/cock.svg"
  50095. }
  50096. },
  50097. },
  50098. [
  50099. {
  50100. name: "Normal",
  50101. height: math.unit(7, "feet"),
  50102. default: true
  50103. },
  50104. ]
  50105. ))
  50106. characterMakers.push(() => makeCharacter(
  50107. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50108. {
  50109. nude: {
  50110. height: math.unit(5 + 6/12, "feet"),
  50111. name: "Nude",
  50112. image: {
  50113. source: "./media/characters/charlie-dog/nude.svg",
  50114. extra: 768/734,
  50115. bottom: 26/794
  50116. }
  50117. },
  50118. dressed: {
  50119. height: math.unit(5 + 6/12, "feet"),
  50120. name: "Dressed",
  50121. image: {
  50122. source: "./media/characters/charlie-dog/dressed.svg",
  50123. extra: 768/734,
  50124. bottom: 26/794
  50125. }
  50126. },
  50127. },
  50128. [
  50129. {
  50130. name: "Normal",
  50131. height: math.unit(5 + 6/12, "feet"),
  50132. default: true
  50133. },
  50134. ]
  50135. ))
  50136. characterMakers.push(() => makeCharacter(
  50137. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50138. {
  50139. front: {
  50140. height: math.unit(6 + 4/12, "feet"),
  50141. name: "Front",
  50142. image: {
  50143. source: "./media/characters/ir'istrasz/front.svg",
  50144. extra: 1014/977,
  50145. bottom: 65/1079
  50146. }
  50147. },
  50148. back: {
  50149. height: math.unit(6 + 4/12, "feet"),
  50150. name: "Back",
  50151. image: {
  50152. source: "./media/characters/ir'istrasz/back.svg",
  50153. extra: 1024/992,
  50154. bottom: 34/1058
  50155. }
  50156. },
  50157. },
  50158. [
  50159. {
  50160. name: "Normal",
  50161. height: math.unit(6 + 4/12, "feet"),
  50162. default: true
  50163. },
  50164. ]
  50165. ))
  50166. characterMakers.push(() => makeCharacter(
  50167. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50168. {
  50169. front: {
  50170. height: math.unit(5 + 8/12, "feet"),
  50171. name: "Front",
  50172. image: {
  50173. source: "./media/characters/dee-ditto/front.svg",
  50174. extra: 1874/1785,
  50175. bottom: 68/1942
  50176. }
  50177. },
  50178. back: {
  50179. height: math.unit(5 + 8/12, "feet"),
  50180. name: "Back",
  50181. image: {
  50182. source: "./media/characters/dee-ditto/back.svg",
  50183. extra: 1870/1783,
  50184. bottom: 77/1947
  50185. }
  50186. },
  50187. },
  50188. [
  50189. {
  50190. name: "Normal",
  50191. height: math.unit(5 + 8/12, "feet"),
  50192. default: true
  50193. },
  50194. ]
  50195. ))
  50196. characterMakers.push(() => makeCharacter(
  50197. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50198. {
  50199. front: {
  50200. height: math.unit(7 + 6/12, "feet"),
  50201. name: "Front",
  50202. image: {
  50203. source: "./media/characters/fey/front.svg",
  50204. extra: 995/979,
  50205. bottom: 30/1025
  50206. }
  50207. },
  50208. back: {
  50209. height: math.unit(7 + 6/12, "feet"),
  50210. name: "Back",
  50211. image: {
  50212. source: "./media/characters/fey/back.svg",
  50213. extra: 1079/1008,
  50214. bottom: 5/1084
  50215. }
  50216. },
  50217. dressed: {
  50218. height: math.unit(7 + 6/12, "feet"),
  50219. name: "Dressed",
  50220. image: {
  50221. source: "./media/characters/fey/dressed.svg",
  50222. extra: 995/979,
  50223. bottom: 30/1025
  50224. }
  50225. },
  50226. },
  50227. [
  50228. {
  50229. name: "Normal",
  50230. height: math.unit(7 + 6/12, "feet"),
  50231. default: true
  50232. },
  50233. ]
  50234. ))
  50235. characterMakers.push(() => makeCharacter(
  50236. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50237. {
  50238. standing: {
  50239. height: math.unit(17, "feet"),
  50240. name: "Standing",
  50241. image: {
  50242. source: "./media/characters/aster/standing.svg",
  50243. extra: 1798/1598,
  50244. bottom: 117/1915
  50245. }
  50246. },
  50247. },
  50248. [
  50249. {
  50250. name: "Normal",
  50251. height: math.unit(17, "feet"),
  50252. default: true
  50253. },
  50254. {
  50255. name: "Homewrecker",
  50256. height: math.unit(95, "feet")
  50257. },
  50258. {
  50259. name: "Planet Devourer",
  50260. height: math.unit(1008000, "miles")
  50261. },
  50262. ]
  50263. ))
  50264. characterMakers.push(() => makeCharacter(
  50265. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50266. {
  50267. front: {
  50268. height: math.unit(6 + 5/12, "feet"),
  50269. weight: math.unit(265, "lb"),
  50270. name: "Front",
  50271. image: {
  50272. source: "./media/characters/devon-childs/front.svg",
  50273. extra: 1795/1721,
  50274. bottom: 41/1836
  50275. }
  50276. },
  50277. side: {
  50278. height: math.unit(6 + 5/12, "feet"),
  50279. weight: math.unit(265, "lb"),
  50280. name: "Side",
  50281. image: {
  50282. source: "./media/characters/devon-childs/side.svg",
  50283. extra: 1812/1738,
  50284. bottom: 30/1842
  50285. }
  50286. },
  50287. back: {
  50288. height: math.unit(6 + 5/12, "feet"),
  50289. weight: math.unit(265, "lb"),
  50290. name: "Back",
  50291. image: {
  50292. source: "./media/characters/devon-childs/back.svg",
  50293. extra: 1808/1735,
  50294. bottom: 23/1831
  50295. }
  50296. },
  50297. hand: {
  50298. height: math.unit(1.464, "feet"),
  50299. name: "Hand",
  50300. image: {
  50301. source: "./media/characters/devon-childs/hand.svg"
  50302. }
  50303. },
  50304. foot: {
  50305. height: math.unit(1.6, "feet"),
  50306. name: "Foot",
  50307. image: {
  50308. source: "./media/characters/devon-childs/foot.svg"
  50309. }
  50310. },
  50311. },
  50312. [
  50313. {
  50314. name: "Micro",
  50315. height: math.unit(7, "cm")
  50316. },
  50317. {
  50318. name: "Normal",
  50319. height: math.unit(6 + 5/12, "feet"),
  50320. default: true
  50321. },
  50322. {
  50323. name: "Macro",
  50324. height: math.unit(154, "feet")
  50325. },
  50326. ]
  50327. ))
  50328. characterMakers.push(() => makeCharacter(
  50329. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50330. {
  50331. front: {
  50332. height: math.unit(6, "feet"),
  50333. weight: math.unit(180, "lb"),
  50334. name: "Front",
  50335. image: {
  50336. source: "./media/characters/lydemox-vir/front.svg",
  50337. extra: 1632/1435,
  50338. bottom: 58/1690
  50339. }
  50340. },
  50341. frontSFW: {
  50342. height: math.unit(6, "feet"),
  50343. weight: math.unit(180, "lb"),
  50344. name: "Front (SFW)",
  50345. image: {
  50346. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50347. extra: 1632/1435,
  50348. bottom: 58/1690
  50349. }
  50350. },
  50351. back: {
  50352. height: math.unit(6, "feet"),
  50353. weight: math.unit(180, "lb"),
  50354. name: "Back",
  50355. image: {
  50356. source: "./media/characters/lydemox-vir/back.svg",
  50357. extra: 1593/1408,
  50358. bottom: 31/1624
  50359. }
  50360. },
  50361. paw: {
  50362. height: math.unit(1.85, "feet"),
  50363. name: "Paw",
  50364. image: {
  50365. source: "./media/characters/lydemox-vir/paw.svg"
  50366. }
  50367. },
  50368. dick: {
  50369. height: math.unit(1.8, "feet"),
  50370. name: "Dick",
  50371. image: {
  50372. source: "./media/characters/lydemox-vir/dick.svg"
  50373. }
  50374. },
  50375. },
  50376. [
  50377. {
  50378. name: "Macro",
  50379. height: math.unit(100, "feet"),
  50380. default: true
  50381. },
  50382. {
  50383. name: "Teramacro",
  50384. height: math.unit(1, "earth")
  50385. },
  50386. {
  50387. name: "Planetary",
  50388. height: math.unit(20, "earths")
  50389. },
  50390. ]
  50391. ))
  50392. characterMakers.push(() => makeCharacter(
  50393. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50394. {
  50395. front: {
  50396. height: math.unit(15 + 8/12, "feet"),
  50397. weight: math.unit(1237, "kg"),
  50398. name: "Front",
  50399. image: {
  50400. source: "./media/characters/mia/front.svg",
  50401. extra: 1573/1446,
  50402. bottom: 58/1631
  50403. }
  50404. },
  50405. },
  50406. [
  50407. {
  50408. name: "Small",
  50409. height: math.unit(9 + 5/12, "feet")
  50410. },
  50411. {
  50412. name: "Normal",
  50413. height: math.unit(15 + 8/12, "feet"),
  50414. default: true
  50415. },
  50416. ]
  50417. ))
  50418. characterMakers.push(() => makeCharacter(
  50419. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50420. {
  50421. front: {
  50422. height: math.unit(10 + 6/12, "feet"),
  50423. weight: math.unit(1.3, "tons"),
  50424. name: "Front",
  50425. image: {
  50426. source: "./media/characters/mr-graves/front.svg",
  50427. extra: 1779/1695,
  50428. bottom: 198/1977
  50429. }
  50430. },
  50431. },
  50432. [
  50433. {
  50434. name: "Normal",
  50435. height: math.unit(10 + 6 /12, "feet"),
  50436. default: true
  50437. },
  50438. ]
  50439. ))
  50440. characterMakers.push(() => makeCharacter(
  50441. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50442. {
  50443. dressedFront: {
  50444. height: math.unit(5 + 8/12, "feet"),
  50445. weight: math.unit(125, "lb"),
  50446. name: "Dressed (Front)",
  50447. image: {
  50448. source: "./media/characters/jess/dressed-front.svg",
  50449. extra: 1176/1152,
  50450. bottom: 42/1218
  50451. }
  50452. },
  50453. dressedSide: {
  50454. height: math.unit(5 + 8/12, "feet"),
  50455. weight: math.unit(125, "lb"),
  50456. name: "Dressed (Side)",
  50457. image: {
  50458. source: "./media/characters/jess/dressed-side.svg",
  50459. extra: 1204/1190,
  50460. bottom: 6/1210
  50461. }
  50462. },
  50463. nudeFront: {
  50464. height: math.unit(5 + 8/12, "feet"),
  50465. weight: math.unit(125, "lb"),
  50466. name: "Nude (Front)",
  50467. image: {
  50468. source: "./media/characters/jess/nude-front.svg",
  50469. extra: 1176/1152,
  50470. bottom: 42/1218
  50471. }
  50472. },
  50473. nudeSide: {
  50474. height: math.unit(5 + 8/12, "feet"),
  50475. weight: math.unit(125, "lb"),
  50476. name: "Nude (Side)",
  50477. image: {
  50478. source: "./media/characters/jess/nude-side.svg",
  50479. extra: 1204/1190,
  50480. bottom: 6/1210
  50481. }
  50482. },
  50483. organsFront: {
  50484. height: math.unit(2.83799342105, "feet"),
  50485. name: "Organs (Front)",
  50486. image: {
  50487. source: "./media/characters/jess/organs-front.svg"
  50488. }
  50489. },
  50490. organsSide: {
  50491. height: math.unit(2.64225290474, "feet"),
  50492. name: "Organs (Side)",
  50493. image: {
  50494. source: "./media/characters/jess/organs-side.svg"
  50495. }
  50496. },
  50497. digestiveTractFront: {
  50498. height: math.unit(2.8106580871, "feet"),
  50499. name: "Digestive Tract (Front)",
  50500. image: {
  50501. source: "./media/characters/jess/digestive-tract-front.svg"
  50502. }
  50503. },
  50504. digestiveTractSide: {
  50505. height: math.unit(2.54365045014, "feet"),
  50506. name: "Digestive Tract (Side)",
  50507. image: {
  50508. source: "./media/characters/jess/digestive-tract-side.svg"
  50509. }
  50510. },
  50511. respiratorySystemFront: {
  50512. height: math.unit(1.11196233456, "feet"),
  50513. name: "Respiratory System (Front)",
  50514. image: {
  50515. source: "./media/characters/jess/respiratory-system-front.svg"
  50516. }
  50517. },
  50518. respiratorySystemSide: {
  50519. height: math.unit(0.89327966297, "feet"),
  50520. name: "Respiratory System (Side)",
  50521. image: {
  50522. source: "./media/characters/jess/respiratory-system-side.svg"
  50523. }
  50524. },
  50525. urinaryTractFront: {
  50526. height: math.unit(1.16126356186, "feet"),
  50527. name: "Urinary Tract (Front)",
  50528. image: {
  50529. source: "./media/characters/jess/urinary-tract-front.svg"
  50530. }
  50531. },
  50532. urinaryTractSide: {
  50533. height: math.unit(1.20910039627, "feet"),
  50534. name: "Urinary Tract (Side)",
  50535. image: {
  50536. source: "./media/characters/jess/urinary-tract-side.svg"
  50537. }
  50538. },
  50539. reproductiveOrgansFront: {
  50540. height: math.unit(0.48422591566, "feet"),
  50541. name: "Reproductive Organs (Front)",
  50542. image: {
  50543. source: "./media/characters/jess/reproductive-organs-front.svg"
  50544. }
  50545. },
  50546. reproductiveOrgansSide: {
  50547. height: math.unit(0.61553314481, "feet"),
  50548. name: "Reproductive Organs (Side)",
  50549. image: {
  50550. source: "./media/characters/jess/reproductive-organs-side.svg"
  50551. }
  50552. },
  50553. breastsFront: {
  50554. height: math.unit(0.47690395121, "feet"),
  50555. name: "Breasts (Front)",
  50556. image: {
  50557. source: "./media/characters/jess/breasts-front.svg"
  50558. }
  50559. },
  50560. breastsSide: {
  50561. height: math.unit(0.30556998307, "feet"),
  50562. name: "Breasts (Side)",
  50563. image: {
  50564. source: "./media/characters/jess/breasts-side.svg"
  50565. }
  50566. },
  50567. heartFront: {
  50568. height: math.unit(0.53011022622, "feet"),
  50569. name: "Heart (Front)",
  50570. image: {
  50571. source: "./media/characters/jess/heart-front.svg"
  50572. }
  50573. },
  50574. heartSide: {
  50575. height: math.unit(0.51790695213, "feet"),
  50576. name: "Heart (Side)",
  50577. image: {
  50578. source: "./media/characters/jess/heart-side.svg"
  50579. }
  50580. },
  50581. earsAndNoseFront: {
  50582. height: math.unit(0.29385483995, "feet"),
  50583. name: "Ears and Nose (Front)",
  50584. image: {
  50585. source: "./media/characters/jess/ears-and-nose-front.svg"
  50586. }
  50587. },
  50588. earsAndNoseSide: {
  50589. height: math.unit(0.18109658741, "feet"),
  50590. name: "Ears and Nose (Side)",
  50591. image: {
  50592. source: "./media/characters/jess/ears-and-nose-side.svg"
  50593. }
  50594. },
  50595. },
  50596. [
  50597. {
  50598. name: "Normal",
  50599. height: math.unit(5 + 8/12, "feet"),
  50600. default: true
  50601. },
  50602. ]
  50603. ))
  50604. characterMakers.push(() => makeCharacter(
  50605. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50606. {
  50607. front: {
  50608. height: math.unit(6, "feet"),
  50609. weight: math.unit(6.64467e-7, "grams"),
  50610. name: "Front",
  50611. image: {
  50612. source: "./media/characters/wimpering/front.svg",
  50613. extra: 597/587,
  50614. bottom: 34/631
  50615. }
  50616. },
  50617. },
  50618. [
  50619. {
  50620. name: "Micro",
  50621. height: math.unit(0.4, "mm"),
  50622. default: true
  50623. },
  50624. ]
  50625. ))
  50626. characterMakers.push(() => makeCharacter(
  50627. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50628. {
  50629. front: {
  50630. height: math.unit(5 + 2/12, "feet"),
  50631. weight: math.unit(110, "lb"),
  50632. name: "Front",
  50633. image: {
  50634. source: "./media/characters/keltre/front.svg",
  50635. extra: 1099/1057,
  50636. bottom: 22/1121
  50637. }
  50638. },
  50639. back: {
  50640. height: math.unit(5 + 2/12, "feet"),
  50641. weight: math.unit(110, "lb"),
  50642. name: "Back",
  50643. image: {
  50644. source: "./media/characters/keltre/back.svg",
  50645. extra: 1095/1053,
  50646. bottom: 17/1112
  50647. }
  50648. },
  50649. dressed: {
  50650. height: math.unit(5 + 2/12, "feet"),
  50651. weight: math.unit(110, "lb"),
  50652. name: "Dressed",
  50653. image: {
  50654. source: "./media/characters/keltre/dressed.svg",
  50655. extra: 1099/1057,
  50656. bottom: 22/1121
  50657. }
  50658. },
  50659. winter: {
  50660. height: math.unit(5 + 2/12, "feet"),
  50661. weight: math.unit(110, "lb"),
  50662. name: "Winter",
  50663. image: {
  50664. source: "./media/characters/keltre/winter.svg",
  50665. extra: 1099/1057,
  50666. bottom: 22/1121
  50667. }
  50668. },
  50669. head: {
  50670. height: math.unit(1.61 * 0.86, "feet"),
  50671. name: "Head",
  50672. image: {
  50673. source: "./media/characters/keltre/head.svg",
  50674. extra: 534/421,
  50675. bottom: 0/534
  50676. }
  50677. },
  50678. hand: {
  50679. height: math.unit(1.3 * 0.86, "feet"),
  50680. name: "Hand",
  50681. image: {
  50682. source: "./media/characters/keltre/hand.svg"
  50683. }
  50684. },
  50685. foot: {
  50686. height: math.unit(1.8 * 0.86, "feet"),
  50687. name: "Foot",
  50688. image: {
  50689. source: "./media/characters/keltre/foot.svg"
  50690. }
  50691. },
  50692. },
  50693. [
  50694. {
  50695. name: "Fine",
  50696. height: math.unit(1, "inch")
  50697. },
  50698. {
  50699. name: "Dimnutive",
  50700. height: math.unit(4, "inches")
  50701. },
  50702. {
  50703. name: "Tiny",
  50704. height: math.unit(1, "foot")
  50705. },
  50706. {
  50707. name: "Small",
  50708. height: math.unit(3, "feet")
  50709. },
  50710. {
  50711. name: "Normal",
  50712. height: math.unit(5 + 2/12, "feet"),
  50713. default: true
  50714. },
  50715. ]
  50716. ))
  50717. characterMakers.push(() => makeCharacter(
  50718. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50719. {
  50720. front: {
  50721. height: math.unit(6 + 2/12, "feet"),
  50722. name: "Front",
  50723. image: {
  50724. source: "./media/characters/nox/front.svg",
  50725. extra: 1917/1830,
  50726. bottom: 74/1991
  50727. }
  50728. },
  50729. back: {
  50730. height: math.unit(6 + 2/12, "feet"),
  50731. name: "Back",
  50732. image: {
  50733. source: "./media/characters/nox/back.svg",
  50734. extra: 1896/1815,
  50735. bottom: 21/1917
  50736. }
  50737. },
  50738. head: {
  50739. height: math.unit(1.1, "feet"),
  50740. name: "Head",
  50741. image: {
  50742. source: "./media/characters/nox/head.svg",
  50743. extra: 874/704,
  50744. bottom: 0/874
  50745. }
  50746. },
  50747. tattoo: {
  50748. height: math.unit(0.729, "feet"),
  50749. name: "Tattoo",
  50750. image: {
  50751. source: "./media/characters/nox/tattoo.svg"
  50752. }
  50753. },
  50754. },
  50755. [
  50756. {
  50757. name: "Normal",
  50758. height: math.unit(6 + 2/12, "feet")
  50759. },
  50760. {
  50761. name: "Gigamacro",
  50762. height: math.unit(2, "earths"),
  50763. default: true
  50764. },
  50765. {
  50766. name: "Cosmic",
  50767. height: math.unit(867, "yottameters")
  50768. },
  50769. ]
  50770. ))
  50771. characterMakers.push(() => makeCharacter(
  50772. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50773. {
  50774. front: {
  50775. height: math.unit(6, "feet"),
  50776. weight: math.unit(150, "lb"),
  50777. name: "Front",
  50778. image: {
  50779. source: "./media/characters/caspian/front.svg",
  50780. extra: 1443/1359,
  50781. bottom: 0/1443
  50782. }
  50783. },
  50784. back: {
  50785. height: math.unit(6, "feet"),
  50786. weight: math.unit(150, "lb"),
  50787. name: "Back",
  50788. image: {
  50789. source: "./media/characters/caspian/back.svg",
  50790. extra: 1379/1309,
  50791. bottom: 0/1379
  50792. }
  50793. },
  50794. head: {
  50795. height: math.unit(0.9, "feet"),
  50796. name: "Head",
  50797. image: {
  50798. source: "./media/characters/caspian/head.svg",
  50799. extra: 692/492,
  50800. bottom: 0/692
  50801. }
  50802. },
  50803. headAlt: {
  50804. height: math.unit(0.95, "feet"),
  50805. name: "Head (Alt)",
  50806. image: {
  50807. source: "./media/characters/caspian/head-alt.svg",
  50808. extra: 668/508,
  50809. bottom: 0/668
  50810. }
  50811. },
  50812. hand: {
  50813. height: math.unit(0.8, "feet"),
  50814. name: "Hand",
  50815. image: {
  50816. source: "./media/characters/caspian/hand.svg"
  50817. }
  50818. },
  50819. paw: {
  50820. height: math.unit(0.95, "feet"),
  50821. name: "Paw",
  50822. image: {
  50823. source: "./media/characters/caspian/paw.svg"
  50824. }
  50825. },
  50826. },
  50827. [
  50828. {
  50829. name: "Normal",
  50830. height: math.unit(162, "feet"),
  50831. default: true
  50832. },
  50833. ]
  50834. ))
  50835. characterMakers.push(() => makeCharacter(
  50836. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50837. {
  50838. front: {
  50839. height: math.unit(6, "feet"),
  50840. name: "Front",
  50841. image: {
  50842. source: "./media/characters/myra-aisling/front.svg",
  50843. extra: 1268/1166,
  50844. bottom: 73/1341
  50845. }
  50846. },
  50847. back: {
  50848. height: math.unit(6, "feet"),
  50849. name: "Back",
  50850. image: {
  50851. source: "./media/characters/myra-aisling/back.svg",
  50852. extra: 1249/1149,
  50853. bottom: 79/1328
  50854. }
  50855. },
  50856. dressed: {
  50857. height: math.unit(6, "feet"),
  50858. name: "Dressed",
  50859. image: {
  50860. source: "./media/characters/myra-aisling/dressed.svg",
  50861. extra: 1290/1189,
  50862. bottom: 47/1337
  50863. }
  50864. },
  50865. hand: {
  50866. height: math.unit(1.1, "feet"),
  50867. name: "Hand",
  50868. image: {
  50869. source: "./media/characters/myra-aisling/hand.svg"
  50870. }
  50871. },
  50872. paw: {
  50873. height: math.unit(1.23, "feet"),
  50874. name: "Paw",
  50875. image: {
  50876. source: "./media/characters/myra-aisling/paw.svg"
  50877. }
  50878. },
  50879. },
  50880. [
  50881. {
  50882. name: "Normal",
  50883. height: math.unit(160, "feet"),
  50884. default: true
  50885. },
  50886. ]
  50887. ))
  50888. characterMakers.push(() => makeCharacter(
  50889. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50890. {
  50891. front: {
  50892. height: math.unit(6, "feet"),
  50893. name: "Front",
  50894. image: {
  50895. source: "./media/characters/tenley-sidero/front.svg",
  50896. extra: 1365/1276,
  50897. bottom: 47/1412
  50898. }
  50899. },
  50900. back: {
  50901. height: math.unit(6, "feet"),
  50902. name: "Back",
  50903. image: {
  50904. source: "./media/characters/tenley-sidero/back.svg",
  50905. extra: 1383/1283,
  50906. bottom: 35/1418
  50907. }
  50908. },
  50909. dressed: {
  50910. height: math.unit(6, "feet"),
  50911. name: "Dressed",
  50912. image: {
  50913. source: "./media/characters/tenley-sidero/dressed.svg",
  50914. extra: 1364/1275,
  50915. bottom: 42/1406
  50916. }
  50917. },
  50918. head: {
  50919. height: math.unit(1.47, "feet"),
  50920. name: "Head",
  50921. image: {
  50922. source: "./media/characters/tenley-sidero/head.svg",
  50923. extra: 610/490,
  50924. bottom: 0/610
  50925. }
  50926. },
  50927. },
  50928. [
  50929. {
  50930. name: "Normal",
  50931. height: math.unit(154, "feet"),
  50932. default: true
  50933. },
  50934. ]
  50935. ))
  50936. characterMakers.push(() => makeCharacter(
  50937. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50938. {
  50939. front: {
  50940. height: math.unit(5, "inches"),
  50941. name: "Front",
  50942. image: {
  50943. source: "./media/characters/mallory/front.svg",
  50944. extra: 1919/1678,
  50945. bottom: 29/1948
  50946. }
  50947. },
  50948. hand: {
  50949. height: math.unit(0.73, "inches"),
  50950. name: "Hand",
  50951. image: {
  50952. source: "./media/characters/mallory/hand.svg"
  50953. }
  50954. },
  50955. paw: {
  50956. height: math.unit(0.68, "inches"),
  50957. name: "Paw",
  50958. image: {
  50959. source: "./media/characters/mallory/paw.svg"
  50960. }
  50961. },
  50962. },
  50963. [
  50964. {
  50965. name: "Small",
  50966. height: math.unit(5, "inches"),
  50967. default: true
  50968. },
  50969. ]
  50970. ))
  50971. characterMakers.push(() => makeCharacter(
  50972. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50973. {
  50974. naked: {
  50975. height: math.unit(6, "feet"),
  50976. name: "Naked",
  50977. image: {
  50978. source: "./media/characters/mab/naked.svg",
  50979. extra: 1855/1757,
  50980. bottom: 208/2063
  50981. }
  50982. },
  50983. outside: {
  50984. height: math.unit(6, "feet"),
  50985. name: "Outside",
  50986. image: {
  50987. source: "./media/characters/mab/outside.svg",
  50988. extra: 1855/1757,
  50989. bottom: 208/2063
  50990. }
  50991. },
  50992. party: {
  50993. height: math.unit(6, "feet"),
  50994. name: "Party",
  50995. image: {
  50996. source: "./media/characters/mab/party.svg",
  50997. extra: 1855/1757,
  50998. bottom: 208/2063
  50999. }
  51000. },
  51001. },
  51002. [
  51003. {
  51004. name: "Normal",
  51005. height: math.unit(165, "feet"),
  51006. default: true
  51007. },
  51008. ]
  51009. ))
  51010. characterMakers.push(() => makeCharacter(
  51011. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51012. {
  51013. feral: {
  51014. height: math.unit(12, "feet"),
  51015. weight: math.unit(20000, "lb"),
  51016. name: "Side",
  51017. image: {
  51018. source: "./media/characters/winter/feral.svg",
  51019. extra: 1286/943,
  51020. bottom: 112/1398
  51021. },
  51022. form: "feral",
  51023. default: true
  51024. },
  51025. feralNsfw: {
  51026. height: math.unit(12, "feet"),
  51027. weight: math.unit(20000, "lb"),
  51028. name: "Side (NSFW)",
  51029. image: {
  51030. source: "./media/characters/winter/feral-nsfw.svg",
  51031. extra: 1286/943,
  51032. bottom: 112/1398
  51033. },
  51034. form: "feral"
  51035. },
  51036. dick: {
  51037. height: math.unit(3.79, "feet"),
  51038. name: "Dick",
  51039. image: {
  51040. source: "./media/characters/winter/dick.svg"
  51041. },
  51042. form: "feral"
  51043. },
  51044. anthro: {
  51045. height: math.unit(12, "feet"),
  51046. weight: math.unit(10, "tons"),
  51047. name: "Anthro",
  51048. image: {
  51049. source: "./media/characters/winter/anthro.svg",
  51050. extra: 1701/1553,
  51051. bottom: 64/1765
  51052. },
  51053. form: "anthro",
  51054. default: true
  51055. },
  51056. },
  51057. [
  51058. {
  51059. name: "Big",
  51060. height: math.unit(12, "feet"),
  51061. default: true,
  51062. form: "feral"
  51063. },
  51064. {
  51065. name: "Big",
  51066. height: math.unit(12, "feet"),
  51067. default: true,
  51068. form: "anthro"
  51069. },
  51070. ],
  51071. {
  51072. "feral": {
  51073. name: "Feral",
  51074. default: true
  51075. },
  51076. "anthro": {
  51077. name: "Anthro"
  51078. }
  51079. }
  51080. ))
  51081. characterMakers.push(() => makeCharacter(
  51082. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51083. {
  51084. front: {
  51085. height: math.unit(4.1, "inches"),
  51086. name: "Front",
  51087. image: {
  51088. source: "./media/characters/alto/front.svg",
  51089. extra: 736/627,
  51090. bottom: 90/826
  51091. }
  51092. },
  51093. },
  51094. [
  51095. {
  51096. name: "Normal",
  51097. height: math.unit(4.1, "inches"),
  51098. default: true
  51099. },
  51100. ]
  51101. ))
  51102. characterMakers.push(() => makeCharacter(
  51103. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51104. {
  51105. sitting: {
  51106. height: math.unit(3, "feet"),
  51107. name: "Sitting",
  51108. image: {
  51109. source: "./media/characters/ratstrid-v/sitting.svg",
  51110. extra: 355/310,
  51111. bottom: 136/491
  51112. }
  51113. },
  51114. },
  51115. [
  51116. {
  51117. name: "Normal",
  51118. height: math.unit(3, "feet"),
  51119. default: true
  51120. },
  51121. ]
  51122. ))
  51123. characterMakers.push(() => makeCharacter(
  51124. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51125. {
  51126. back: {
  51127. height: math.unit(6, "feet"),
  51128. weight: math.unit(450, "lb"),
  51129. name: "Back",
  51130. image: {
  51131. source: "./media/characters/siz/back.svg",
  51132. extra: 1449/1274,
  51133. bottom: 13/1462
  51134. }
  51135. },
  51136. },
  51137. [
  51138. {
  51139. name: "Smallest",
  51140. height: math.unit(18 + 3/12, "feet")
  51141. },
  51142. {
  51143. name: "Modest",
  51144. height: math.unit(56 + 8/12, "feet"),
  51145. default: true
  51146. },
  51147. {
  51148. name: "Largest",
  51149. height: math.unit(3590, "feet")
  51150. },
  51151. ]
  51152. ))
  51153. characterMakers.push(() => makeCharacter(
  51154. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51155. {
  51156. front: {
  51157. height: math.unit(5 + 9/12, "feet"),
  51158. weight: math.unit(150, "lb"),
  51159. name: "Front",
  51160. image: {
  51161. source: "./media/characters/ven/front.svg",
  51162. extra: 1372/1320,
  51163. bottom: 73/1445
  51164. }
  51165. },
  51166. side: {
  51167. height: math.unit(5 + 9/12, "feet"),
  51168. weight: math.unit(1150, "lb"),
  51169. name: "Side",
  51170. image: {
  51171. source: "./media/characters/ven/side.svg",
  51172. extra: 1119/1070,
  51173. bottom: 42/1161
  51174. },
  51175. default: true
  51176. },
  51177. },
  51178. [
  51179. {
  51180. name: "Normal",
  51181. height: math.unit(5 + 9/12, "feet"),
  51182. default: true
  51183. },
  51184. ]
  51185. ))
  51186. characterMakers.push(() => makeCharacter(
  51187. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51188. {
  51189. front: {
  51190. height: math.unit(12, "feet"),
  51191. weight: math.unit(1000, "kg"),
  51192. name: "Front",
  51193. image: {
  51194. source: "./media/characters/maple/front.svg",
  51195. extra: 1193/1081,
  51196. bottom: 22/1215
  51197. }
  51198. },
  51199. },
  51200. [
  51201. {
  51202. name: "Compressed",
  51203. height: math.unit(7, "feet")
  51204. },
  51205. {
  51206. name: "Normal",
  51207. height: math.unit(12, "feet"),
  51208. default: true
  51209. },
  51210. ]
  51211. ))
  51212. characterMakers.push(() => makeCharacter(
  51213. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51214. {
  51215. front: {
  51216. height: math.unit(9, "feet"),
  51217. weight: math.unit(1500, "lb"),
  51218. name: "Front",
  51219. image: {
  51220. source: "./media/characters/nora/front.svg",
  51221. extra: 1348/1286,
  51222. bottom: 218/1566
  51223. }
  51224. },
  51225. erect: {
  51226. height: math.unit(9, "feet"),
  51227. weight: math.unit(11500, "lb"),
  51228. name: "Erect",
  51229. image: {
  51230. source: "./media/characters/nora/erect.svg",
  51231. extra: 1488/1433,
  51232. bottom: 133/1621
  51233. }
  51234. },
  51235. },
  51236. [
  51237. {
  51238. name: "Normal",
  51239. height: math.unit(9, "feet"),
  51240. default: true
  51241. },
  51242. ]
  51243. ))
  51244. characterMakers.push(() => makeCharacter(
  51245. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51246. {
  51247. front: {
  51248. height: math.unit(25, "feet"),
  51249. weight: math.unit(27500, "lb"),
  51250. name: "Front",
  51251. image: {
  51252. source: "./media/characters/north-caudin/front.svg",
  51253. extra: 1184/1082,
  51254. bottom: 23/1207
  51255. }
  51256. },
  51257. },
  51258. [
  51259. {
  51260. name: "Compressed",
  51261. height: math.unit(10, "feet")
  51262. },
  51263. {
  51264. name: "Normal",
  51265. height: math.unit(25, "feet"),
  51266. default: true
  51267. },
  51268. ]
  51269. ))
  51270. characterMakers.push(() => makeCharacter(
  51271. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51272. {
  51273. front: {
  51274. height: math.unit(9, "feet"),
  51275. weight: math.unit(1250, "lb"),
  51276. name: "Front",
  51277. image: {
  51278. source: "./media/characters/merrian/front.svg",
  51279. extra: 2393/2304,
  51280. bottom: 40/2433
  51281. }
  51282. },
  51283. },
  51284. [
  51285. {
  51286. name: "Normal",
  51287. height: math.unit(9, "feet"),
  51288. default: true
  51289. },
  51290. ]
  51291. ))
  51292. characterMakers.push(() => makeCharacter(
  51293. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51294. {
  51295. front: {
  51296. height: math.unit(9, "feet"),
  51297. weight: math.unit(1000, "lb"),
  51298. name: "Front",
  51299. image: {
  51300. source: "./media/characters/hazel/front.svg",
  51301. extra: 2351/2298,
  51302. bottom: 38/2389
  51303. }
  51304. },
  51305. },
  51306. [
  51307. {
  51308. name: "Normal",
  51309. height: math.unit(9, "feet"),
  51310. default: true
  51311. },
  51312. ]
  51313. ))
  51314. characterMakers.push(() => makeCharacter(
  51315. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51316. {
  51317. front: {
  51318. height: math.unit(13, "feet"),
  51319. weight: math.unit(3200, "lb"),
  51320. name: "Front",
  51321. image: {
  51322. source: "./media/characters/emma/front.svg",
  51323. extra: 2263/2029,
  51324. bottom: 68/2331
  51325. }
  51326. },
  51327. },
  51328. [
  51329. {
  51330. name: "Normal",
  51331. height: math.unit(13, "feet"),
  51332. default: true
  51333. },
  51334. ]
  51335. ))
  51336. characterMakers.push(() => makeCharacter(
  51337. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51338. {
  51339. front: {
  51340. height: math.unit(11 + 9/12, "feet"),
  51341. weight: math.unit(2500, "lb"),
  51342. name: "Front",
  51343. image: {
  51344. source: "./media/characters/ilumina/front.svg",
  51345. extra: 2248/2209,
  51346. bottom: 164/2412
  51347. }
  51348. },
  51349. },
  51350. [
  51351. {
  51352. name: "Normal",
  51353. height: math.unit(11 + 9/12, "feet"),
  51354. default: true
  51355. },
  51356. ]
  51357. ))
  51358. characterMakers.push(() => makeCharacter(
  51359. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51360. {
  51361. front: {
  51362. height: math.unit(8 + 10/12, "feet"),
  51363. weight: math.unit(1350, "lb"),
  51364. name: "Front",
  51365. image: {
  51366. source: "./media/characters/moonshine/front.svg",
  51367. extra: 2395/2288,
  51368. bottom: 40/2435
  51369. }
  51370. },
  51371. },
  51372. [
  51373. {
  51374. name: "Normal",
  51375. height: math.unit(8 + 10/12, "feet"),
  51376. default: true
  51377. },
  51378. ]
  51379. ))
  51380. characterMakers.push(() => makeCharacter(
  51381. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51382. {
  51383. front: {
  51384. height: math.unit(14, "feet"),
  51385. weight: math.unit(3400, "lb"),
  51386. name: "Front",
  51387. image: {
  51388. source: "./media/characters/aletia/front.svg",
  51389. extra: 1185/1052,
  51390. bottom: 21/1206
  51391. }
  51392. },
  51393. },
  51394. [
  51395. {
  51396. name: "Compressed",
  51397. height: math.unit(8, "feet")
  51398. },
  51399. {
  51400. name: "Normal",
  51401. height: math.unit(14, "feet"),
  51402. default: true
  51403. },
  51404. ]
  51405. ))
  51406. characterMakers.push(() => makeCharacter(
  51407. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51408. {
  51409. front: {
  51410. height: math.unit(17, "feet"),
  51411. weight: math.unit(6500, "lb"),
  51412. name: "Front",
  51413. image: {
  51414. source: "./media/characters/deidra/front.svg",
  51415. extra: 1201/1081,
  51416. bottom: 16/1217
  51417. }
  51418. },
  51419. },
  51420. [
  51421. {
  51422. name: "Compressed",
  51423. height: math.unit(9 + 6/12, "feet")
  51424. },
  51425. {
  51426. name: "Normal",
  51427. height: math.unit(17, "feet"),
  51428. default: true
  51429. },
  51430. ]
  51431. ))
  51432. characterMakers.push(() => makeCharacter(
  51433. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51434. {
  51435. front: {
  51436. height: math.unit(7 + 4/12, "feet"),
  51437. weight: math.unit(280, "lb"),
  51438. name: "Front",
  51439. image: {
  51440. source: "./media/characters/freki-yrmori/front.svg",
  51441. extra: 1286/1182,
  51442. bottom: 29/1315
  51443. }
  51444. },
  51445. maw: {
  51446. height: math.unit(0.9, "feet"),
  51447. name: "Maw",
  51448. image: {
  51449. source: "./media/characters/freki-yrmori/maw.svg"
  51450. }
  51451. },
  51452. },
  51453. [
  51454. {
  51455. name: "Normal",
  51456. height: math.unit(7 + 4/12, "feet"),
  51457. default: true
  51458. },
  51459. {
  51460. name: "Macro",
  51461. height: math.unit(38.5, "meters")
  51462. },
  51463. ]
  51464. ))
  51465. characterMakers.push(() => makeCharacter(
  51466. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51467. {
  51468. side: {
  51469. height: math.unit(47.2, "meters"),
  51470. weight: math.unit(10000, "tons"),
  51471. name: "Side",
  51472. image: {
  51473. source: "./media/characters/aetherios/side.svg",
  51474. extra: 2363/642,
  51475. bottom: 221/2584
  51476. }
  51477. },
  51478. top: {
  51479. height: math.unit(240, "meters"),
  51480. weight: math.unit(10000, "tons"),
  51481. name: "Top",
  51482. image: {
  51483. source: "./media/characters/aetherios/top.svg"
  51484. }
  51485. },
  51486. bottom: {
  51487. height: math.unit(240, "meters"),
  51488. weight: math.unit(10000, "tons"),
  51489. name: "Bottom",
  51490. image: {
  51491. source: "./media/characters/aetherios/bottom.svg"
  51492. }
  51493. },
  51494. head: {
  51495. height: math.unit(38.6, "meters"),
  51496. name: "Head",
  51497. image: {
  51498. source: "./media/characters/aetherios/head.svg",
  51499. extra: 1335/1112,
  51500. bottom: 0/1335
  51501. }
  51502. },
  51503. front: {
  51504. height: math.unit(29, "meters"),
  51505. name: "Front",
  51506. image: {
  51507. source: "./media/characters/aetherios/front.svg",
  51508. extra: 1266/953,
  51509. bottom: 158/1424
  51510. }
  51511. },
  51512. maw: {
  51513. height: math.unit(16.37, "meters"),
  51514. name: "Maw",
  51515. image: {
  51516. source: "./media/characters/aetherios/maw.svg",
  51517. extra: 748/637,
  51518. bottom: 0/748
  51519. },
  51520. extraAttributes: {
  51521. preyCapacity: {
  51522. name: "Capacity",
  51523. power: 3,
  51524. type: "volume",
  51525. base: math.unit(1000, "people")
  51526. },
  51527. tongueSize: {
  51528. name: "Tongue Size",
  51529. power: 2,
  51530. type: "area",
  51531. base: math.unit(21, "m^2")
  51532. }
  51533. }
  51534. },
  51535. forepaw: {
  51536. height: math.unit(18, "meters"),
  51537. name: "Forepaw",
  51538. image: {
  51539. source: "./media/characters/aetherios/forepaw.svg"
  51540. }
  51541. },
  51542. hindpaw: {
  51543. height: math.unit(23, "meters"),
  51544. name: "Hindpaw",
  51545. image: {
  51546. source: "./media/characters/aetherios/hindpaw.svg"
  51547. }
  51548. },
  51549. genitals: {
  51550. height: math.unit(42, "meters"),
  51551. name: "Genitals",
  51552. image: {
  51553. source: "./media/characters/aetherios/genitals.svg"
  51554. }
  51555. },
  51556. },
  51557. [
  51558. {
  51559. name: "Normal",
  51560. height: math.unit(47.2, "meters"),
  51561. default: true
  51562. },
  51563. {
  51564. name: "Macro",
  51565. height: math.unit(160, "meters")
  51566. },
  51567. {
  51568. name: "Mega",
  51569. height: math.unit(1.87, "km")
  51570. },
  51571. {
  51572. name: "Giga",
  51573. height: math.unit(40000, "km")
  51574. },
  51575. {
  51576. name: "Stellar",
  51577. height: math.unit(158000000, "km")
  51578. },
  51579. {
  51580. name: "Cosmic",
  51581. height: math.unit(9.46e12, "km")
  51582. },
  51583. ]
  51584. ))
  51585. characterMakers.push(() => makeCharacter(
  51586. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51587. {
  51588. front: {
  51589. height: math.unit(5 + 4/12, "feet"),
  51590. weight: math.unit(80, "lb"),
  51591. name: "Front",
  51592. image: {
  51593. source: "./media/characters/mizu-gieeg/front.svg",
  51594. extra: 850/709,
  51595. bottom: 52/902
  51596. }
  51597. },
  51598. back: {
  51599. height: math.unit(5 + 4/12, "feet"),
  51600. weight: math.unit(80, "lb"),
  51601. name: "Back",
  51602. image: {
  51603. source: "./media/characters/mizu-gieeg/back.svg",
  51604. extra: 882/745,
  51605. bottom: 25/907
  51606. }
  51607. },
  51608. },
  51609. [
  51610. {
  51611. name: "Normal",
  51612. height: math.unit(5 + 4/12, "feet"),
  51613. default: true
  51614. },
  51615. ]
  51616. ))
  51617. characterMakers.push(() => makeCharacter(
  51618. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51619. {
  51620. front: {
  51621. height: math.unit(6, "feet"),
  51622. name: "Front",
  51623. image: {
  51624. source: "./media/characters/roselle-st-papier/front.svg",
  51625. extra: 1430/1280,
  51626. bottom: 37/1467
  51627. }
  51628. },
  51629. back: {
  51630. height: math.unit(6, "feet"),
  51631. name: "Back",
  51632. image: {
  51633. source: "./media/characters/roselle-st-papier/back.svg",
  51634. extra: 1491/1296,
  51635. bottom: 23/1514
  51636. }
  51637. },
  51638. ear: {
  51639. height: math.unit(1.26, "feet"),
  51640. name: "Ear",
  51641. image: {
  51642. source: "./media/characters/roselle-st-papier/ear.svg"
  51643. }
  51644. },
  51645. },
  51646. [
  51647. {
  51648. name: "Normal",
  51649. height: math.unit(150, "feet"),
  51650. default: true
  51651. },
  51652. ]
  51653. ))
  51654. characterMakers.push(() => makeCharacter(
  51655. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51656. {
  51657. front: {
  51658. height: math.unit(1, "inches"),
  51659. name: "Front",
  51660. image: {
  51661. source: "./media/characters/valargent/front.svg",
  51662. extra: 1825/1694,
  51663. bottom: 62/1887
  51664. }
  51665. },
  51666. back: {
  51667. height: math.unit(1, "inches"),
  51668. name: "Back",
  51669. image: {
  51670. source: "./media/characters/valargent/back.svg",
  51671. extra: 1775/1682,
  51672. bottom: 88/1863
  51673. }
  51674. },
  51675. },
  51676. [
  51677. {
  51678. name: "Micro",
  51679. height: math.unit(1, "inch"),
  51680. default: true
  51681. },
  51682. ]
  51683. ))
  51684. characterMakers.push(() => makeCharacter(
  51685. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51686. {
  51687. front: {
  51688. height: math.unit(3.4, "meters"),
  51689. name: "Front",
  51690. image: {
  51691. source: "./media/characters/zarina/front.svg",
  51692. extra: 1733/1425,
  51693. bottom: 93/1826
  51694. }
  51695. },
  51696. squatting: {
  51697. height: math.unit(2.14, "meters"),
  51698. name: "Squatting",
  51699. image: {
  51700. source: "./media/characters/zarina/squatting.svg",
  51701. extra: 1073/788,
  51702. bottom: 63/1136
  51703. }
  51704. },
  51705. back: {
  51706. height: math.unit(2.14, "meters"),
  51707. name: "Back",
  51708. image: {
  51709. source: "./media/characters/zarina/back.svg",
  51710. extra: 1128/885,
  51711. bottom: 0/1128
  51712. }
  51713. },
  51714. },
  51715. [
  51716. {
  51717. name: "Normal",
  51718. height: math.unit(3.4, "meters"),
  51719. default: true
  51720. },
  51721. {
  51722. name: "Big",
  51723. height: math.unit(5, "meters")
  51724. },
  51725. {
  51726. name: "Macro",
  51727. height: math.unit(110, "meters")
  51728. },
  51729. ]
  51730. ))
  51731. characterMakers.push(() => makeCharacter(
  51732. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51733. {
  51734. front: {
  51735. height: math.unit(7, "feet"),
  51736. name: "Front",
  51737. image: {
  51738. source: "./media/characters/ventus-astro-fox/front.svg",
  51739. extra: 1792/1623,
  51740. bottom: 28/1820
  51741. }
  51742. },
  51743. back: {
  51744. height: math.unit(7, "feet"),
  51745. name: "Back",
  51746. image: {
  51747. source: "./media/characters/ventus-astro-fox/back.svg",
  51748. extra: 1789/1620,
  51749. bottom: 31/1820
  51750. }
  51751. },
  51752. outfit: {
  51753. height: math.unit(7, "feet"),
  51754. name: "Outfit",
  51755. image: {
  51756. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51757. extra: 1054/925,
  51758. bottom: 15/1069
  51759. }
  51760. },
  51761. head: {
  51762. height: math.unit(1.12, "feet"),
  51763. name: "Head",
  51764. image: {
  51765. source: "./media/characters/ventus-astro-fox/head.svg",
  51766. extra: 866/504,
  51767. bottom: 0/866
  51768. }
  51769. },
  51770. hand: {
  51771. height: math.unit(1, "feet"),
  51772. name: "Hand",
  51773. image: {
  51774. source: "./media/characters/ventus-astro-fox/hand.svg"
  51775. }
  51776. },
  51777. paw: {
  51778. height: math.unit(1.5, "feet"),
  51779. name: "Paw",
  51780. image: {
  51781. source: "./media/characters/ventus-astro-fox/paw.svg"
  51782. }
  51783. },
  51784. },
  51785. [
  51786. {
  51787. name: "Normal",
  51788. height: math.unit(7, "feet"),
  51789. default: true
  51790. },
  51791. {
  51792. name: "Macro",
  51793. height: math.unit(200, "feet")
  51794. },
  51795. {
  51796. name: "Cosmic",
  51797. height: math.unit(3, "universes")
  51798. },
  51799. ]
  51800. ))
  51801. characterMakers.push(() => makeCharacter(
  51802. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51803. {
  51804. front: {
  51805. height: math.unit(3, "meters"),
  51806. weight: math.unit(7000, "lb"),
  51807. name: "Front",
  51808. image: {
  51809. source: "./media/characters/core-t/front.svg",
  51810. extra: 5729/4941,
  51811. bottom: 1129/6858
  51812. }
  51813. },
  51814. },
  51815. [
  51816. {
  51817. name: "Big",
  51818. height: math.unit(3, "meters"),
  51819. default: true
  51820. },
  51821. ]
  51822. ))
  51823. characterMakers.push(() => makeCharacter(
  51824. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51825. {
  51826. normal: {
  51827. height: math.unit(6 + 6/12, "feet"),
  51828. weight: math.unit(275, "lb"),
  51829. name: "Front",
  51830. image: {
  51831. source: "./media/characters/cadbunny/normal.svg",
  51832. extra: 1129/947,
  51833. bottom: 93/1222
  51834. },
  51835. default: true,
  51836. form: "normal"
  51837. },
  51838. gigantamax: {
  51839. height: math.unit(26, "feet"),
  51840. weight: math.unit(16000, "lb"),
  51841. name: "Front",
  51842. image: {
  51843. source: "./media/characters/cadbunny/gigantamax.svg",
  51844. extra: 1133/944,
  51845. bottom: 90/1223
  51846. },
  51847. default: true,
  51848. form: "gigantamax"
  51849. },
  51850. },
  51851. [
  51852. {
  51853. name: "Normal",
  51854. height: math.unit(6 + 6/12, "feet"),
  51855. default: true,
  51856. form: "normal"
  51857. },
  51858. {
  51859. name: "Small",
  51860. height: math.unit(26, "feet"),
  51861. default: true,
  51862. form: "gigantamax"
  51863. },
  51864. {
  51865. name: "Large",
  51866. height: math.unit(78, "feet"),
  51867. form: "gigantamax"
  51868. },
  51869. ],
  51870. {
  51871. "normal": {
  51872. name: "Normal",
  51873. default: true
  51874. },
  51875. "gigantamax": {
  51876. name: "Gigantamax"
  51877. }
  51878. }
  51879. ))
  51880. characterMakers.push(() => makeCharacter(
  51881. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51882. {
  51883. anthroFront: {
  51884. height: math.unit(8, "feet"),
  51885. weight: math.unit(300, "lb"),
  51886. name: "Front",
  51887. image: {
  51888. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51889. extra: 1272/1176,
  51890. bottom: 53/1325
  51891. },
  51892. form: "anthro",
  51893. default: true
  51894. },
  51895. feralSide: {
  51896. height: math.unit(4, "feet"),
  51897. weight: math.unit(250, "lb"),
  51898. name: "Side",
  51899. image: {
  51900. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51901. extra: 731/621,
  51902. bottom: 0/731
  51903. },
  51904. form: "feral",
  51905. default: true
  51906. },
  51907. },
  51908. [
  51909. {
  51910. name: "Regular",
  51911. height: math.unit(8, "feet"),
  51912. form: "anthro"
  51913. },
  51914. {
  51915. name: "Macro",
  51916. height: math.unit(250, "feet"),
  51917. form: "anthro",
  51918. default: true
  51919. },
  51920. {
  51921. name: "Regular",
  51922. height: math.unit(4, "feet"),
  51923. form: "feral"
  51924. },
  51925. {
  51926. name: "Macro",
  51927. height: math.unit(125, "feet"),
  51928. form: "feral",
  51929. default: true
  51930. },
  51931. ],
  51932. {
  51933. "anthro": {
  51934. name: "Anthro",
  51935. default: true
  51936. },
  51937. "feral": {
  51938. name: "Feral",
  51939. },
  51940. }
  51941. ))
  51942. characterMakers.push(() => makeCharacter(
  51943. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51944. {
  51945. front: {
  51946. height: math.unit(11 + 10/12, "feet"),
  51947. weight: math.unit(1587, "kg"),
  51948. name: "Front",
  51949. image: {
  51950. source: "./media/characters/maple-javira-dragon/front.svg",
  51951. extra: 1136/744,
  51952. bottom: 73/1209
  51953. }
  51954. },
  51955. side: {
  51956. height: math.unit(11 + 10/12, "feet"),
  51957. weight: math.unit(1587, "kg"),
  51958. name: "Side",
  51959. image: {
  51960. source: "./media/characters/maple-javira-dragon/side.svg",
  51961. extra: 712/505,
  51962. bottom: 17/729
  51963. }
  51964. },
  51965. head: {
  51966. height: math.unit(8.05, "feet"),
  51967. name: "Head",
  51968. image: {
  51969. source: "./media/characters/maple-javira-dragon/head.svg",
  51970. extra: 1420/1344,
  51971. bottom: 0/1420
  51972. }
  51973. },
  51974. },
  51975. [
  51976. {
  51977. name: "Normal",
  51978. height: math.unit(11 + 10/12, "feet"),
  51979. default: true
  51980. },
  51981. ]
  51982. ))
  51983. characterMakers.push(() => makeCharacter(
  51984. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51985. {
  51986. front: {
  51987. height: math.unit(117, "cm"),
  51988. weight: math.unit(50, "kg"),
  51989. name: "Front",
  51990. image: {
  51991. source: "./media/characters/sonia-wyverntail/front.svg",
  51992. extra: 708/592,
  51993. bottom: 25/733
  51994. }
  51995. },
  51996. },
  51997. [
  51998. {
  51999. name: "Normal",
  52000. height: math.unit(117, "cm"),
  52001. default: true
  52002. },
  52003. ]
  52004. ))
  52005. characterMakers.push(() => makeCharacter(
  52006. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52007. {
  52008. front: {
  52009. height: math.unit(6 + 5/12, "feet"),
  52010. name: "Front",
  52011. image: {
  52012. source: "./media/characters/micah/front.svg",
  52013. extra: 1758/1546,
  52014. bottom: 214/1972
  52015. }
  52016. },
  52017. },
  52018. [
  52019. {
  52020. name: "Normal",
  52021. height: math.unit(6 + 5/12, "feet"),
  52022. default: true
  52023. },
  52024. ]
  52025. ))
  52026. characterMakers.push(() => makeCharacter(
  52027. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52028. {
  52029. front: {
  52030. height: math.unit(1.75, "meters"),
  52031. weight: math.unit(100, "kg"),
  52032. name: "Front",
  52033. image: {
  52034. source: "./media/characters/zarya/front.svg",
  52035. extra: 741/735,
  52036. bottom: 44/785
  52037. },
  52038. extraAttributes: {
  52039. "tailLength": {
  52040. name: "Tail Length",
  52041. power: 1,
  52042. type: "length",
  52043. base: math.unit(180, "cm")
  52044. },
  52045. "pawLength": {
  52046. name: "Paw Length",
  52047. power: 1,
  52048. type: "length",
  52049. base: math.unit(31, "cm")
  52050. },
  52051. }
  52052. },
  52053. side: {
  52054. height: math.unit(1.75, "meters"),
  52055. weight: math.unit(100, "kg"),
  52056. name: "Side",
  52057. image: {
  52058. source: "./media/characters/zarya/side.svg",
  52059. extra: 776/770,
  52060. bottom: 17/793
  52061. },
  52062. extraAttributes: {
  52063. "tailLength": {
  52064. name: "Tail Length",
  52065. power: 1,
  52066. type: "length",
  52067. base: math.unit(180, "cm")
  52068. },
  52069. "pawLength": {
  52070. name: "Paw Length",
  52071. power: 1,
  52072. type: "length",
  52073. base: math.unit(31, "cm")
  52074. },
  52075. }
  52076. },
  52077. back: {
  52078. height: math.unit(1.75, "meters"),
  52079. weight: math.unit(100, "kg"),
  52080. name: "Back",
  52081. image: {
  52082. source: "./media/characters/zarya/back.svg",
  52083. extra: 741/735,
  52084. bottom: 44/785
  52085. },
  52086. extraAttributes: {
  52087. "tailLength": {
  52088. name: "Tail Length",
  52089. power: 1,
  52090. type: "length",
  52091. base: math.unit(180, "cm")
  52092. },
  52093. "pawLength": {
  52094. name: "Paw Length",
  52095. power: 1,
  52096. type: "length",
  52097. base: math.unit(31, "cm")
  52098. },
  52099. }
  52100. },
  52101. frontNoTail: {
  52102. height: math.unit(1.75, "meters"),
  52103. weight: math.unit(100, "kg"),
  52104. name: "Front (No Tail)",
  52105. image: {
  52106. source: "./media/characters/zarya/front-no-tail.svg",
  52107. extra: 741/735,
  52108. bottom: 44/785
  52109. },
  52110. extraAttributes: {
  52111. "tailLength": {
  52112. name: "Tail Length",
  52113. power: 1,
  52114. type: "length",
  52115. base: math.unit(180, "cm")
  52116. },
  52117. "pawLength": {
  52118. name: "Paw Length",
  52119. power: 1,
  52120. type: "length",
  52121. base: math.unit(31, "cm")
  52122. },
  52123. }
  52124. },
  52125. dressed: {
  52126. height: math.unit(1.75, "meters"),
  52127. weight: math.unit(100, "kg"),
  52128. name: "Dressed",
  52129. image: {
  52130. source: "./media/characters/zarya/dressed.svg",
  52131. extra: 683/672,
  52132. bottom: 79/762
  52133. },
  52134. extraAttributes: {
  52135. "tailLength": {
  52136. name: "Tail Length",
  52137. power: 1,
  52138. type: "length",
  52139. base: math.unit(180, "cm")
  52140. },
  52141. "pawLength": {
  52142. name: "Paw Length",
  52143. power: 1,
  52144. type: "length",
  52145. base: math.unit(31, "cm")
  52146. },
  52147. }
  52148. },
  52149. },
  52150. [
  52151. {
  52152. name: "Micro",
  52153. height: math.unit(5, "cm")
  52154. },
  52155. {
  52156. name: "Normal",
  52157. height: math.unit(1.75, "meters"),
  52158. default: true
  52159. },
  52160. {
  52161. name: "Macro",
  52162. height: math.unit(122, "meters")
  52163. },
  52164. ]
  52165. ))
  52166. characterMakers.push(() => makeCharacter(
  52167. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52168. {
  52169. front: {
  52170. height: math.unit(7.5, "feet"),
  52171. name: "Front",
  52172. image: {
  52173. source: "./media/characters/sven-hatisson/front.svg",
  52174. extra: 917/857,
  52175. bottom: 42/959
  52176. }
  52177. },
  52178. back: {
  52179. height: math.unit(7.5, "feet"),
  52180. name: "Back",
  52181. image: {
  52182. source: "./media/characters/sven-hatisson/back.svg",
  52183. extra: 903/856,
  52184. bottom: 15/918
  52185. }
  52186. },
  52187. },
  52188. [
  52189. {
  52190. name: "Base Height",
  52191. height: math.unit(7.5, "feet")
  52192. },
  52193. {
  52194. name: "Usual Height",
  52195. height: math.unit(13.5, "feet"),
  52196. default: true
  52197. },
  52198. {
  52199. name: "Smaller Macro",
  52200. height: math.unit(85, "feet")
  52201. },
  52202. {
  52203. name: "Moderate Macro",
  52204. height: math.unit(320, "feet")
  52205. },
  52206. {
  52207. name: "Large Macro",
  52208. height: math.unit(1000, "feet")
  52209. },
  52210. {
  52211. name: "Largest Size",
  52212. height: math.unit(2, "miles")
  52213. },
  52214. ]
  52215. ))
  52216. characterMakers.push(() => makeCharacter(
  52217. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52218. {
  52219. side: {
  52220. height: math.unit(1.8, "meters"),
  52221. weight: math.unit(275, "kg"),
  52222. name: "Side",
  52223. image: {
  52224. source: "./media/characters/terra/side.svg",
  52225. extra: 1273/1147,
  52226. bottom: 0/1273
  52227. }
  52228. },
  52229. },
  52230. [
  52231. {
  52232. name: "Normal",
  52233. height: math.unit(16.2, "meters"),
  52234. default: true
  52235. },
  52236. ]
  52237. ))
  52238. characterMakers.push(() => makeCharacter(
  52239. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52240. {
  52241. borzoiFront: {
  52242. height: math.unit(6 + 9/12, "feet"),
  52243. name: "Front",
  52244. image: {
  52245. source: "./media/characters/rae/borzoi-front.svg",
  52246. extra: 1161/1098,
  52247. bottom: 31/1192
  52248. },
  52249. form: "borzoi",
  52250. default: true
  52251. },
  52252. werewolfFront: {
  52253. height: math.unit(8 + 7/12, "feet"),
  52254. name: "Front",
  52255. image: {
  52256. source: "./media/characters/rae/werewolf-front.svg",
  52257. extra: 1411/1334,
  52258. bottom: 127/1538
  52259. },
  52260. form: "werewolf",
  52261. default: true
  52262. },
  52263. },
  52264. [
  52265. {
  52266. name: "Normal",
  52267. height: math.unit(6 + 9/12, "feet"),
  52268. default: true,
  52269. form: "borzoi"
  52270. },
  52271. {
  52272. name: "Normal",
  52273. height: math.unit(8 + 7/12, "feet"),
  52274. default: true,
  52275. form: "werewolf"
  52276. },
  52277. ],
  52278. {
  52279. "borzoi": {
  52280. name: "Borzoi",
  52281. default: true
  52282. },
  52283. "werewolf": {
  52284. name: "Werewolf",
  52285. },
  52286. }
  52287. ))
  52288. characterMakers.push(() => makeCharacter(
  52289. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52290. {
  52291. front: {
  52292. height: math.unit(8 + 7/12, "feet"),
  52293. weight: math.unit(482, "lb"),
  52294. name: "Front",
  52295. image: {
  52296. source: "./media/characters/kit/front.svg",
  52297. extra: 1247/1103,
  52298. bottom: 41/1288
  52299. }
  52300. },
  52301. back: {
  52302. height: math.unit(8 + 7/12, "feet"),
  52303. weight: math.unit(482, "lb"),
  52304. name: "Back",
  52305. image: {
  52306. source: "./media/characters/kit/back.svg",
  52307. extra: 1252/1123,
  52308. bottom: 21/1273
  52309. }
  52310. },
  52311. paw: {
  52312. height: math.unit(1.46, "feet"),
  52313. name: "Paw",
  52314. image: {
  52315. source: "./media/characters/kit/paw.svg"
  52316. }
  52317. },
  52318. },
  52319. [
  52320. {
  52321. name: "Normal",
  52322. height: math.unit(2.61, "meters"),
  52323. default: true
  52324. },
  52325. {
  52326. name: "\"Tall\"",
  52327. height: math.unit(8.21, "meters")
  52328. },
  52329. {
  52330. name: "Tall",
  52331. height: math.unit(19.6, "meters")
  52332. },
  52333. {
  52334. name: "Very Tall",
  52335. height: math.unit(57.91, "meters")
  52336. },
  52337. {
  52338. name: "Semi-Macro",
  52339. height: math.unit(138.64, "meters")
  52340. },
  52341. {
  52342. name: "Macro",
  52343. height: math.unit(831.99, "meters")
  52344. },
  52345. {
  52346. name: "EX-Macro",
  52347. height: math.unit(96451121, "meters")
  52348. },
  52349. {
  52350. name: "S1-Omnipotent",
  52351. height: math.unit(4.42074e+9, "meters")
  52352. },
  52353. {
  52354. name: "S2-Omnipotent",
  52355. height: math.unit(9.42074e+17, "meters")
  52356. },
  52357. {
  52358. name: "Omnipotent",
  52359. height: math.unit(4.23112e+24, "meters")
  52360. },
  52361. {
  52362. name: "Hypergod",
  52363. height: math.unit(5.05176e+27, "meters")
  52364. },
  52365. {
  52366. name: "Hypergod-EX",
  52367. height: math.unit(9.45532e+49, "meters")
  52368. },
  52369. {
  52370. name: "Hypergod-SP",
  52371. height: math.unit(9.45532e+195, "meters")
  52372. },
  52373. ]
  52374. ))
  52375. characterMakers.push(() => makeCharacter(
  52376. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52377. {
  52378. side: {
  52379. height: math.unit(0.6, "meters"),
  52380. weight: math.unit(24, "kg"),
  52381. name: "Side",
  52382. image: {
  52383. source: "./media/characters/celeste/side.svg",
  52384. extra: 810/517,
  52385. bottom: 53/863
  52386. }
  52387. },
  52388. },
  52389. [
  52390. {
  52391. name: "Velociraptor",
  52392. height: math.unit(0.6, "meters"),
  52393. default: true
  52394. },
  52395. {
  52396. name: "Utahraptor",
  52397. height: math.unit(1.8, "meters")
  52398. },
  52399. {
  52400. name: "Gallimimus",
  52401. height: math.unit(4.0, "meters")
  52402. },
  52403. {
  52404. name: "Large",
  52405. height: math.unit(20, "meters")
  52406. },
  52407. {
  52408. name: "Planetary",
  52409. height: math.unit(50, "megameters")
  52410. },
  52411. {
  52412. name: "Stellar",
  52413. height: math.unit(1.5, "gigameters")
  52414. },
  52415. {
  52416. name: "Galactic",
  52417. height: math.unit(100, "exameters")
  52418. },
  52419. ]
  52420. ))
  52421. characterMakers.push(() => makeCharacter(
  52422. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52423. {
  52424. front: {
  52425. height: math.unit(6, "feet"),
  52426. weight: math.unit(210, "lb"),
  52427. name: "Front",
  52428. image: {
  52429. source: "./media/characters/glacia/front.svg",
  52430. extra: 958/901,
  52431. bottom: 45/1003
  52432. }
  52433. },
  52434. },
  52435. [
  52436. {
  52437. name: "Macro",
  52438. height: math.unit(1000, "meters"),
  52439. default: true
  52440. },
  52441. ]
  52442. ))
  52443. characterMakers.push(() => makeCharacter(
  52444. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52445. {
  52446. front: {
  52447. height: math.unit(4, "meters"),
  52448. name: "Front",
  52449. image: {
  52450. source: "./media/characters/giri/front.svg",
  52451. extra: 966/894,
  52452. bottom: 21/987
  52453. }
  52454. },
  52455. },
  52456. [
  52457. {
  52458. name: "Normal",
  52459. height: math.unit(4, "meters"),
  52460. default: true
  52461. },
  52462. ]
  52463. ))
  52464. characterMakers.push(() => makeCharacter(
  52465. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52466. {
  52467. back: {
  52468. height: math.unit(4, "feet"),
  52469. weight: math.unit(37, "lb"),
  52470. name: "Back",
  52471. image: {
  52472. source: "./media/characters/tin/back.svg",
  52473. extra: 845/780,
  52474. bottom: 28/873
  52475. }
  52476. },
  52477. },
  52478. [
  52479. {
  52480. name: "Normal",
  52481. height: math.unit(4, "feet"),
  52482. default: true
  52483. },
  52484. ]
  52485. ))
  52486. characterMakers.push(() => makeCharacter(
  52487. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52488. {
  52489. front: {
  52490. height: math.unit(25, "feet"),
  52491. name: "Front",
  52492. image: {
  52493. source: "./media/characters/cadenza-vivace/front.svg",
  52494. extra: 1842/1578,
  52495. bottom: 30/1872
  52496. }
  52497. },
  52498. },
  52499. [
  52500. {
  52501. name: "Macro",
  52502. height: math.unit(25, "feet"),
  52503. default: true
  52504. },
  52505. ]
  52506. ))
  52507. characterMakers.push(() => makeCharacter(
  52508. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52509. {
  52510. front: {
  52511. height: math.unit(10, "feet"),
  52512. weight: math.unit(625, "kg"),
  52513. name: "Front",
  52514. image: {
  52515. source: "./media/characters/zain/front.svg",
  52516. extra: 1682/1498,
  52517. bottom: 223/1905
  52518. }
  52519. },
  52520. back: {
  52521. height: math.unit(10, "feet"),
  52522. weight: math.unit(625, "kg"),
  52523. name: "Back",
  52524. image: {
  52525. source: "./media/characters/zain/back.svg",
  52526. extra: 1814/1657,
  52527. bottom: 152/1966
  52528. }
  52529. },
  52530. head: {
  52531. height: math.unit(10, "feet"),
  52532. weight: math.unit(625, "kg"),
  52533. name: "Head",
  52534. image: {
  52535. source: "./media/characters/zain/head.svg",
  52536. extra: 1059/762,
  52537. bottom: 0/1059
  52538. }
  52539. },
  52540. },
  52541. [
  52542. {
  52543. name: "Normal",
  52544. height: math.unit(10, "feet"),
  52545. default: true
  52546. },
  52547. ]
  52548. ))
  52549. characterMakers.push(() => makeCharacter(
  52550. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52551. {
  52552. front: {
  52553. height: math.unit(6 + 5/12, "feet"),
  52554. weight: math.unit(750, "lb"),
  52555. name: "Front",
  52556. image: {
  52557. source: "./media/characters/ruchex/front.svg",
  52558. extra: 877/820,
  52559. bottom: 17/894
  52560. },
  52561. extraAttributes: {
  52562. "width": {
  52563. name: "Width",
  52564. power: 1,
  52565. type: "length",
  52566. base: math.unit(4.757, "feet")
  52567. },
  52568. }
  52569. },
  52570. },
  52571. [
  52572. {
  52573. name: "Normal",
  52574. height: math.unit(6 + 5/12, "feet"),
  52575. default: true
  52576. },
  52577. ]
  52578. ))
  52579. characterMakers.push(() => makeCharacter(
  52580. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52581. {
  52582. dressedFront: {
  52583. height: math.unit(191, "cm"),
  52584. weight: math.unit(80, "kg"),
  52585. name: "Front",
  52586. image: {
  52587. source: "./media/characters/buster/dressed-front.svg",
  52588. extra: 1022/973,
  52589. bottom: 69/1091
  52590. }
  52591. },
  52592. dressedBack: {
  52593. height: math.unit(191, "cm"),
  52594. weight: math.unit(80, "kg"),
  52595. name: "Back",
  52596. image: {
  52597. source: "./media/characters/buster/dressed-back.svg",
  52598. extra: 1018/970,
  52599. bottom: 55/1073
  52600. }
  52601. },
  52602. nudeFront: {
  52603. height: math.unit(191, "cm"),
  52604. weight: math.unit(80, "kg"),
  52605. name: "Front (Nude)",
  52606. image: {
  52607. source: "./media/characters/buster/nude-front.svg",
  52608. extra: 1022/973,
  52609. bottom: 69/1091
  52610. }
  52611. },
  52612. nudeBack: {
  52613. height: math.unit(191, "cm"),
  52614. weight: math.unit(80, "kg"),
  52615. name: "Back (Nude)",
  52616. image: {
  52617. source: "./media/characters/buster/nude-back.svg",
  52618. extra: 1018/970,
  52619. bottom: 55/1073
  52620. }
  52621. },
  52622. dick: {
  52623. height: math.unit(2.59, "feet"),
  52624. name: "Dick",
  52625. image: {
  52626. source: "./media/characters/buster/dick.svg"
  52627. }
  52628. },
  52629. ass: {
  52630. height: math.unit(1.2, "feet"),
  52631. name: "Ass",
  52632. image: {
  52633. source: "./media/characters/buster/ass.svg"
  52634. }
  52635. },
  52636. },
  52637. [
  52638. {
  52639. name: "Normal",
  52640. height: math.unit(191, "cm"),
  52641. default: true
  52642. },
  52643. ]
  52644. ))
  52645. characterMakers.push(() => makeCharacter(
  52646. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52647. {
  52648. side: {
  52649. height: math.unit(8.1, "feet"),
  52650. weight: math.unit(3500, "lb"),
  52651. name: "Side",
  52652. image: {
  52653. source: "./media/characters/sonya/side.svg",
  52654. extra: 1730/1317,
  52655. bottom: 86/1816
  52656. }
  52657. },
  52658. },
  52659. [
  52660. {
  52661. name: "Normal",
  52662. height: math.unit(8.1, "feet"),
  52663. default: true
  52664. },
  52665. ]
  52666. ))
  52667. characterMakers.push(() => makeCharacter(
  52668. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52669. {
  52670. front: {
  52671. height: math.unit(6, "feet"),
  52672. weight: math.unit(150, "lb"),
  52673. name: "Front",
  52674. image: {
  52675. source: "./media/characters/cadence-andrysiak/front.svg",
  52676. extra: 1164/1121,
  52677. bottom: 60/1224
  52678. }
  52679. },
  52680. back: {
  52681. height: math.unit(6, "feet"),
  52682. weight: math.unit(150, "lb"),
  52683. name: "Back",
  52684. image: {
  52685. source: "./media/characters/cadence-andrysiak/back.svg",
  52686. extra: 1200/1165,
  52687. bottom: 9/1209
  52688. }
  52689. },
  52690. dressed: {
  52691. height: math.unit(6, "feet"),
  52692. weight: math.unit(150, "lb"),
  52693. name: "Dressed",
  52694. image: {
  52695. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52696. extra: 1164/1121,
  52697. bottom: 60/1224
  52698. }
  52699. },
  52700. },
  52701. [
  52702. {
  52703. name: "Micro",
  52704. height: math.unit(1, "mm")
  52705. },
  52706. {
  52707. name: "Normal",
  52708. height: math.unit(6, "feet"),
  52709. default: true
  52710. },
  52711. ]
  52712. ))
  52713. characterMakers.push(() => makeCharacter(
  52714. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52715. {
  52716. front: {
  52717. height: math.unit(60, "inches"),
  52718. weight: math.unit(16, "lb"),
  52719. preyCapacity: math.unit(80, "liters"),
  52720. name: "Front",
  52721. image: {
  52722. source: "./media/characters/penny-lynx/front.svg",
  52723. extra: 1959/1769,
  52724. bottom: 49/2008
  52725. }
  52726. },
  52727. },
  52728. [
  52729. {
  52730. name: "Nokia",
  52731. height: math.unit(2, "inches")
  52732. },
  52733. {
  52734. name: "Desktop",
  52735. height: math.unit(24, "inches")
  52736. },
  52737. {
  52738. name: "TV",
  52739. height: math.unit(60, "inches")
  52740. },
  52741. {
  52742. name: "Jumbotron",
  52743. height: math.unit(12, "feet")
  52744. },
  52745. {
  52746. name: "Billboard",
  52747. height: math.unit(48, "feet"),
  52748. default: true
  52749. },
  52750. {
  52751. name: "IMAX",
  52752. height: math.unit(96, "feet")
  52753. },
  52754. {
  52755. name: "SINGULARITY",
  52756. height: math.unit(864938, "miles")
  52757. },
  52758. ]
  52759. ))
  52760. characterMakers.push(() => makeCharacter(
  52761. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52762. {
  52763. front: {
  52764. height: math.unit(5 + 4/12, "feet"),
  52765. weight: math.unit(230, "lb"),
  52766. name: "Front",
  52767. image: {
  52768. source: "./media/characters/sukebe/front.svg",
  52769. extra: 2130/2038,
  52770. bottom: 90/2220
  52771. }
  52772. },
  52773. back: {
  52774. height: math.unit(3.48, "feet"),
  52775. weight: math.unit(230, "lb"),
  52776. name: "Back",
  52777. image: {
  52778. source: "./media/characters/sukebe/back.svg",
  52779. extra: 1670/1604,
  52780. bottom: 0/1670
  52781. }
  52782. },
  52783. },
  52784. [
  52785. {
  52786. name: "Normal",
  52787. height: math.unit(5 + 4/12, "feet"),
  52788. default: true
  52789. },
  52790. ]
  52791. ))
  52792. characterMakers.push(() => makeCharacter(
  52793. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52794. {
  52795. front: {
  52796. height: math.unit(6, "feet"),
  52797. name: "Front",
  52798. image: {
  52799. source: "./media/characters/nylla/front.svg",
  52800. extra: 1868/1699,
  52801. bottom: 97/1965
  52802. }
  52803. },
  52804. back: {
  52805. height: math.unit(6, "feet"),
  52806. name: "Back",
  52807. image: {
  52808. source: "./media/characters/nylla/back.svg",
  52809. extra: 1889/1712,
  52810. bottom: 93/1982
  52811. }
  52812. },
  52813. frontNsfw: {
  52814. height: math.unit(6, "feet"),
  52815. name: "Front (NSFW)",
  52816. image: {
  52817. source: "./media/characters/nylla/front-nsfw.svg",
  52818. extra: 1868/1699,
  52819. bottom: 97/1965
  52820. },
  52821. extraAttributes: {
  52822. "dickLength": {
  52823. name: "Dick Length",
  52824. power: 1,
  52825. type: "length",
  52826. base: math.unit(1.4, "feet")
  52827. },
  52828. "cumVolume": {
  52829. name: "Cum Volume",
  52830. power: 3,
  52831. type: "volume",
  52832. base: math.unit(100, "mL")
  52833. },
  52834. }
  52835. },
  52836. backNsfw: {
  52837. height: math.unit(6, "feet"),
  52838. name: "Back (NSFW)",
  52839. image: {
  52840. source: "./media/characters/nylla/back-nsfw.svg",
  52841. extra: 1889/1712,
  52842. bottom: 93/1982
  52843. }
  52844. },
  52845. maw: {
  52846. height: math.unit(2.10, "feet"),
  52847. name: "Maw",
  52848. image: {
  52849. source: "./media/characters/nylla/maw.svg"
  52850. }
  52851. },
  52852. paws: {
  52853. height: math.unit(2.06, "feet"),
  52854. name: "Paws",
  52855. image: {
  52856. source: "./media/characters/nylla/paws.svg"
  52857. }
  52858. },
  52859. muzzle: {
  52860. height: math.unit(0.61, "feet"),
  52861. name: "Muzzle",
  52862. image: {
  52863. source: "./media/characters/nylla/muzzle.svg"
  52864. }
  52865. },
  52866. sheath: {
  52867. height: math.unit(1.305, "feet"),
  52868. name: "Sheath",
  52869. image: {
  52870. source: "./media/characters/nylla/sheath.svg"
  52871. }
  52872. },
  52873. },
  52874. [
  52875. {
  52876. name: "Micro",
  52877. height: math.unit(7.5, "inches")
  52878. },
  52879. {
  52880. name: "Normal",
  52881. height: math.unit(7, "feet"),
  52882. default: true
  52883. },
  52884. {
  52885. name: "Macro",
  52886. height: math.unit(60, "feet")
  52887. },
  52888. {
  52889. name: "Mega",
  52890. height: math.unit(200, "feet")
  52891. },
  52892. ]
  52893. ))
  52894. characterMakers.push(() => makeCharacter(
  52895. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52896. {
  52897. front: {
  52898. height: math.unit(10, "feet"),
  52899. weight: math.unit(2300, "lb"),
  52900. name: "Front",
  52901. image: {
  52902. source: "./media/characters/hunt3r/front.svg",
  52903. extra: 1909/1742,
  52904. bottom: 46/1955
  52905. }
  52906. },
  52907. },
  52908. [
  52909. {
  52910. name: "Normal",
  52911. height: math.unit(10, "feet"),
  52912. default: true
  52913. },
  52914. ]
  52915. ))
  52916. characterMakers.push(() => makeCharacter(
  52917. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52918. {
  52919. dressed: {
  52920. height: math.unit(11, "feet"),
  52921. weight: math.unit(18500, "lb"),
  52922. preyCapacity: math.unit(9, "people"),
  52923. name: "Dressed",
  52924. image: {
  52925. source: "./media/characters/cylphis/dressed.svg",
  52926. extra: 1028/1003,
  52927. bottom: 75/1103
  52928. },
  52929. },
  52930. undressed: {
  52931. height: math.unit(11, "feet"),
  52932. weight: math.unit(18500, "lb"),
  52933. preyCapacity: math.unit(9, "people"),
  52934. name: "Undressed",
  52935. image: {
  52936. source: "./media/characters/cylphis/undressed.svg",
  52937. extra: 1028/1003,
  52938. bottom: 75/1103
  52939. }
  52940. },
  52941. full: {
  52942. height: math.unit(11, "feet"),
  52943. weight: math.unit(18500 + 150*9, "lb"),
  52944. preyCapacity: math.unit(9, "people"),
  52945. name: "Full",
  52946. image: {
  52947. source: "./media/characters/cylphis/full.svg",
  52948. extra: 1028/1003,
  52949. bottom: 75/1103
  52950. }
  52951. },
  52952. },
  52953. [
  52954. {
  52955. name: "Small",
  52956. height: math.unit(8, "feet")
  52957. },
  52958. {
  52959. name: "Normal",
  52960. height: math.unit(11, "feet"),
  52961. default: true
  52962. },
  52963. ]
  52964. ))
  52965. characterMakers.push(() => makeCharacter(
  52966. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52967. {
  52968. front: {
  52969. height: math.unit(2 + 7/12, "feet"),
  52970. name: "Front",
  52971. image: {
  52972. source: "./media/characters/orishan/front.svg",
  52973. extra: 1058/1023,
  52974. bottom: 23/1081
  52975. }
  52976. },
  52977. back: {
  52978. height: math.unit(2 + 7/12, "feet"),
  52979. name: "Back",
  52980. image: {
  52981. source: "./media/characters/orishan/back.svg",
  52982. extra: 1058/1023,
  52983. bottom: 23/1081
  52984. }
  52985. },
  52986. },
  52987. [
  52988. {
  52989. name: "Micro",
  52990. height: math.unit(2, "cm")
  52991. },
  52992. {
  52993. name: "Normal",
  52994. height: math.unit(2 + 7/12, "feet"),
  52995. default: true
  52996. },
  52997. ]
  52998. ))
  52999. characterMakers.push(() => makeCharacter(
  53000. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53001. {
  53002. front: {
  53003. height: math.unit(3, "meters"),
  53004. weight: math.unit(508, "kg"),
  53005. name: "Front",
  53006. image: {
  53007. source: "./media/characters/seranis/front.svg",
  53008. extra: 1478/1454,
  53009. bottom: 41/1519
  53010. }
  53011. },
  53012. },
  53013. [
  53014. {
  53015. name: "Normal",
  53016. height: math.unit(3, "meters"),
  53017. default: true
  53018. },
  53019. {
  53020. name: "Macro",
  53021. height: math.unit(108, "meters")
  53022. },
  53023. {
  53024. name: "Megamacro",
  53025. height: math.unit(1250, "meters")
  53026. },
  53027. ]
  53028. ))
  53029. characterMakers.push(() => makeCharacter(
  53030. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53031. {
  53032. undressed: {
  53033. height: math.unit(5 + 3/12, "feet"),
  53034. name: "Undressed",
  53035. image: {
  53036. source: "./media/characters/ankou/undressed.svg",
  53037. extra: 1301/1213,
  53038. bottom: 87/1388
  53039. }
  53040. },
  53041. dressed: {
  53042. height: math.unit(5 + 3/12, "feet"),
  53043. name: "Dressed",
  53044. image: {
  53045. source: "./media/characters/ankou/dressed.svg",
  53046. extra: 1301/1213,
  53047. bottom: 87/1388
  53048. }
  53049. },
  53050. head: {
  53051. height: math.unit(1.61, "feet"),
  53052. name: "Head",
  53053. image: {
  53054. source: "./media/characters/ankou/head.svg"
  53055. }
  53056. },
  53057. },
  53058. [
  53059. {
  53060. name: "Normal",
  53061. height: math.unit(5 + 3/12, "feet"),
  53062. default: true
  53063. },
  53064. ]
  53065. ))
  53066. characterMakers.push(() => makeCharacter(
  53067. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53068. {
  53069. side: {
  53070. height: math.unit(6 + 3/12, "feet"),
  53071. weight: math.unit(200, "kg"),
  53072. name: "Side",
  53073. image: {
  53074. source: "./media/characters/juniper-skunktaur/side.svg",
  53075. extra: 1574/1229,
  53076. bottom: 38/1612
  53077. }
  53078. },
  53079. front: {
  53080. height: math.unit(6 + 3/12, "feet"),
  53081. weight: math.unit(200, "kg"),
  53082. name: "Front",
  53083. image: {
  53084. source: "./media/characters/juniper-skunktaur/front.svg",
  53085. extra: 1337/1278,
  53086. bottom: 22/1359
  53087. }
  53088. },
  53089. back: {
  53090. height: math.unit(6 + 3/12, "feet"),
  53091. weight: math.unit(200, "kg"),
  53092. name: "Back",
  53093. image: {
  53094. source: "./media/characters/juniper-skunktaur/back.svg",
  53095. extra: 1618/1273,
  53096. bottom: 13/1631
  53097. }
  53098. },
  53099. top: {
  53100. height: math.unit(2.62, "feet"),
  53101. weight: math.unit(200, "kg"),
  53102. name: "Top",
  53103. image: {
  53104. source: "./media/characters/juniper-skunktaur/top.svg"
  53105. }
  53106. },
  53107. },
  53108. [
  53109. {
  53110. name: "Normal",
  53111. height: math.unit(6 + 3/12, "feet"),
  53112. default: true
  53113. },
  53114. ]
  53115. ))
  53116. characterMakers.push(() => makeCharacter(
  53117. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53118. {
  53119. front: {
  53120. height: math.unit(20.5, "feet"),
  53121. name: "Front",
  53122. image: {
  53123. source: "./media/characters/rei/front.svg",
  53124. extra: 1349/1195,
  53125. bottom: 31/1380
  53126. }
  53127. },
  53128. back: {
  53129. height: math.unit(20.5, "feet"),
  53130. name: "Back",
  53131. image: {
  53132. source: "./media/characters/rei/back.svg",
  53133. extra: 1358/1204,
  53134. bottom: 22/1380
  53135. }
  53136. },
  53137. pawsDigi: {
  53138. height: math.unit(3.45, "feet"),
  53139. name: "Paws (Digi)",
  53140. image: {
  53141. source: "./media/characters/rei/paws-digi.svg"
  53142. }
  53143. },
  53144. pawsPlanti: {
  53145. height: math.unit(3.45, "feet"),
  53146. name: "Paws (Planti)",
  53147. image: {
  53148. source: "./media/characters/rei/paws-planti.svg"
  53149. }
  53150. },
  53151. },
  53152. [
  53153. {
  53154. name: "Normal",
  53155. height: math.unit(20.5, "feet"),
  53156. default: true
  53157. },
  53158. ]
  53159. ))
  53160. characterMakers.push(() => makeCharacter(
  53161. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53162. {
  53163. front: {
  53164. height: math.unit(5 + 11/12, "feet"),
  53165. name: "Front",
  53166. image: {
  53167. source: "./media/characters/carina/front.svg",
  53168. extra: 1720/1449,
  53169. bottom: 14/1734
  53170. }
  53171. },
  53172. back: {
  53173. height: math.unit(5 + 11/12, "feet"),
  53174. name: "Back",
  53175. image: {
  53176. source: "./media/characters/carina/back.svg",
  53177. extra: 1493/1445,
  53178. bottom: 17/1510
  53179. }
  53180. },
  53181. paw: {
  53182. height: math.unit(0.92, "feet"),
  53183. name: "Paw",
  53184. image: {
  53185. source: "./media/characters/carina/paw.svg"
  53186. }
  53187. },
  53188. },
  53189. [
  53190. {
  53191. name: "Normal",
  53192. height: math.unit(5 + 11/12, "feet"),
  53193. default: true
  53194. },
  53195. ]
  53196. ))
  53197. characterMakers.push(() => makeCharacter(
  53198. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53199. {
  53200. normal_front: {
  53201. height: math.unit(4.88, "meters"),
  53202. name: "Front",
  53203. image: {
  53204. source: "./media/characters/maya/normal-front.svg",
  53205. extra: 1222/1145,
  53206. bottom: 57/1279
  53207. },
  53208. form: "normal",
  53209. default: true
  53210. },
  53211. monstrous_front: {
  53212. height: math.unit(10, "meters"),
  53213. name: "Front",
  53214. image: {
  53215. source: "./media/characters/maya/monstrous-front.svg",
  53216. extra: 1523/1109,
  53217. bottom: 113/1636
  53218. },
  53219. form: "monstrous",
  53220. extraAttributes: {
  53221. "swallowSize": {
  53222. name: "Tailmaw Bite Size",
  53223. power: 3,
  53224. type: "volume",
  53225. base: math.unit(43000, "liters")
  53226. },
  53227. }
  53228. },
  53229. taur_front: {
  53230. height: math.unit(10, "meters"),
  53231. name: "Front",
  53232. image: {
  53233. source: "./media/characters/maya/taur-front.svg",
  53234. extra: 743/506,
  53235. bottom: 101/844
  53236. },
  53237. form: "taur",
  53238. },
  53239. },
  53240. [
  53241. {
  53242. name: "Normal",
  53243. height: math.unit(4.88, "meters"),
  53244. default: true,
  53245. form: "normal"
  53246. },
  53247. {
  53248. name: "Macro",
  53249. height: math.unit(38.1, "meters"),
  53250. form: "normal"
  53251. },
  53252. {
  53253. name: "Macro+",
  53254. height: math.unit(152.4, "meters"),
  53255. form: "normal"
  53256. },
  53257. {
  53258. name: "Macro++",
  53259. height: math.unit(16.09, "km"),
  53260. form: "normal"
  53261. },
  53262. {
  53263. name: "Mega-macro",
  53264. height: math.unit(700, "megameters"),
  53265. form: "normal"
  53266. },
  53267. {
  53268. name: "Satiated",
  53269. height: math.unit(10, "meters"),
  53270. default: true,
  53271. form: "monstrous"
  53272. },
  53273. {
  53274. name: "Hungry",
  53275. height: math.unit(75, "meters"),
  53276. form: "monstrous"
  53277. },
  53278. {
  53279. name: "Ravenous",
  53280. height: math.unit(500, "meters"),
  53281. form: "monstrous"
  53282. },
  53283. {
  53284. name: "\"Normal\"",
  53285. height: math.unit(10, "meters"),
  53286. form: "taur"
  53287. },
  53288. {
  53289. name: "Macro",
  53290. height: math.unit(50, "meters"),
  53291. form: "taur"
  53292. },
  53293. ],
  53294. {
  53295. "normal": {
  53296. name: "Normal",
  53297. default: true
  53298. },
  53299. "monstrous": {
  53300. name: "Monstrous",
  53301. },
  53302. "taur": {
  53303. name: "Taur",
  53304. },
  53305. }
  53306. ))
  53307. characterMakers.push(() => makeCharacter(
  53308. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53309. {
  53310. front: {
  53311. height: math.unit(6 + 2/12, "feet"),
  53312. weight: math.unit(500, "lb"),
  53313. preyCapacity: math.unit(4, "people"),
  53314. name: "Front",
  53315. image: {
  53316. source: "./media/characters/yepir/front.svg"
  53317. }
  53318. },
  53319. side: {
  53320. height: math.unit(6 + 2/12, "feet"),
  53321. weight: math.unit(500, "lb"),
  53322. preyCapacity: math.unit(4, "people"),
  53323. name: "Side",
  53324. image: {
  53325. source: "./media/characters/yepir/side.svg"
  53326. }
  53327. },
  53328. paw: {
  53329. height: math.unit(1.05, "feet"),
  53330. name: "Paw",
  53331. image: {
  53332. source: "./media/characters/yepir/paw.svg"
  53333. }
  53334. },
  53335. },
  53336. [
  53337. {
  53338. name: "Normal",
  53339. height: math.unit(6 + 2/12, "feet"),
  53340. default: true
  53341. },
  53342. ]
  53343. ))
  53344. characterMakers.push(() => makeCharacter(
  53345. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53346. {
  53347. front: {
  53348. height: math.unit(5 + 4/12, "feet"),
  53349. name: "Front",
  53350. image: {
  53351. source: "./media/characters/russec/front.svg",
  53352. extra: 1926/1626,
  53353. bottom: 72/1998
  53354. }
  53355. },
  53356. back: {
  53357. height: math.unit(5 + 4/12, "feet"),
  53358. name: "Back",
  53359. image: {
  53360. source: "./media/characters/russec/back.svg",
  53361. extra: 1910/1591,
  53362. bottom: 48/1958
  53363. }
  53364. },
  53365. },
  53366. [
  53367. {
  53368. name: "Small",
  53369. height: math.unit(5 + 4/12, "feet")
  53370. },
  53371. {
  53372. name: "Normal",
  53373. height: math.unit(72, "feet"),
  53374. default: true
  53375. },
  53376. ]
  53377. ))
  53378. characterMakers.push(() => makeCharacter(
  53379. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53380. {
  53381. side: {
  53382. height: math.unit(12, "feet"),
  53383. name: "Side",
  53384. image: {
  53385. source: "./media/characters/cianus/side.svg",
  53386. extra: 808/526,
  53387. bottom: 61/869
  53388. }
  53389. },
  53390. },
  53391. [
  53392. {
  53393. name: "Normal",
  53394. height: math.unit(12, "feet"),
  53395. default: true
  53396. },
  53397. ]
  53398. ))
  53399. characterMakers.push(() => makeCharacter(
  53400. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53401. {
  53402. front: {
  53403. height: math.unit(9 + 6/12, "feet"),
  53404. weight: math.unit(300, "lb"),
  53405. name: "Front",
  53406. image: {
  53407. source: "./media/characters/ahab/front.svg",
  53408. extra: 1897/1868,
  53409. bottom: 121/2018
  53410. }
  53411. },
  53412. frontNsfw: {
  53413. height: math.unit(9 + 6/12, "feet"),
  53414. weight: math.unit(300, "lb"),
  53415. name: "Front-nsfw",
  53416. image: {
  53417. source: "./media/characters/ahab/front-nsfw.svg",
  53418. extra: 1897/1868,
  53419. bottom: 121/2018
  53420. }
  53421. },
  53422. },
  53423. [
  53424. {
  53425. name: "Normal",
  53426. height: math.unit(9 + 6/12, "feet")
  53427. },
  53428. {
  53429. name: "Macro",
  53430. height: math.unit(657, "feet"),
  53431. default: true
  53432. },
  53433. ]
  53434. ))
  53435. characterMakers.push(() => makeCharacter(
  53436. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53437. {
  53438. front: {
  53439. height: math.unit(2.69, "meters"),
  53440. weight: math.unit(132, "kg"),
  53441. name: "Front",
  53442. image: {
  53443. source: "./media/characters/aarkus/front.svg",
  53444. extra: 1400/1231,
  53445. bottom: 34/1434
  53446. }
  53447. },
  53448. back: {
  53449. height: math.unit(2.69, "meters"),
  53450. weight: math.unit(132, "kg"),
  53451. name: "Back",
  53452. image: {
  53453. source: "./media/characters/aarkus/back.svg",
  53454. extra: 1381/1218,
  53455. bottom: 30/1411
  53456. }
  53457. },
  53458. frontNsfw: {
  53459. height: math.unit(2.69, "meters"),
  53460. weight: math.unit(132, "kg"),
  53461. name: "Front (NSFW)",
  53462. image: {
  53463. source: "./media/characters/aarkus/front-nsfw.svg",
  53464. extra: 1400/1231,
  53465. bottom: 34/1434
  53466. }
  53467. },
  53468. foot: {
  53469. height: math.unit(1.45, "feet"),
  53470. name: "Foot",
  53471. image: {
  53472. source: "./media/characters/aarkus/foot.svg"
  53473. }
  53474. },
  53475. head: {
  53476. height: math.unit(2.85, "feet"),
  53477. name: "Head",
  53478. image: {
  53479. source: "./media/characters/aarkus/head.svg"
  53480. }
  53481. },
  53482. headAlt: {
  53483. height: math.unit(3.07, "feet"),
  53484. name: "Head (Alt)",
  53485. image: {
  53486. source: "./media/characters/aarkus/head-alt.svg"
  53487. }
  53488. },
  53489. mouth: {
  53490. height: math.unit(1.25, "feet"),
  53491. name: "Mouth",
  53492. image: {
  53493. source: "./media/characters/aarkus/mouth.svg"
  53494. }
  53495. },
  53496. dick: {
  53497. height: math.unit(1.77, "feet"),
  53498. name: "Dick",
  53499. image: {
  53500. source: "./media/characters/aarkus/dick.svg"
  53501. }
  53502. },
  53503. },
  53504. [
  53505. {
  53506. name: "Normal",
  53507. height: math.unit(2.69, "meters"),
  53508. default: true
  53509. },
  53510. {
  53511. name: "Macro",
  53512. height: math.unit(269, "meters")
  53513. },
  53514. {
  53515. name: "Macro+",
  53516. height: math.unit(672.5, "meters")
  53517. },
  53518. {
  53519. name: "Megamacro",
  53520. height: math.unit(2.017, "km")
  53521. },
  53522. ]
  53523. ))
  53524. characterMakers.push(() => makeCharacter(
  53525. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53526. {
  53527. front: {
  53528. height: math.unit(23.47, "cm"),
  53529. weight: math.unit(600, "grams"),
  53530. name: "Front",
  53531. image: {
  53532. source: "./media/characters/diode/front.svg",
  53533. extra: 1778/1396,
  53534. bottom: 95/1873
  53535. }
  53536. },
  53537. side: {
  53538. height: math.unit(23.47, "cm"),
  53539. weight: math.unit(600, "grams"),
  53540. name: "Side",
  53541. image: {
  53542. source: "./media/characters/diode/side.svg",
  53543. extra: 1831/1404,
  53544. bottom: 86/1917
  53545. }
  53546. },
  53547. wings: {
  53548. height: math.unit(0.683, "feet"),
  53549. name: "Wings",
  53550. image: {
  53551. source: "./media/characters/diode/wings.svg"
  53552. }
  53553. },
  53554. },
  53555. [
  53556. {
  53557. name: "Normal",
  53558. height: math.unit(23.47, "cm"),
  53559. default: true
  53560. },
  53561. ]
  53562. ))
  53563. characterMakers.push(() => makeCharacter(
  53564. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53565. {
  53566. front: {
  53567. height: math.unit(6 + 3/12, "feet"),
  53568. weight: math.unit(250, "lb"),
  53569. name: "Front",
  53570. image: {
  53571. source: "./media/characters/reika/front.svg",
  53572. extra: 1120/1078,
  53573. bottom: 86/1206
  53574. }
  53575. },
  53576. },
  53577. [
  53578. {
  53579. name: "Normal",
  53580. height: math.unit(6 + 3/12, "feet"),
  53581. default: true
  53582. },
  53583. ]
  53584. ))
  53585. characterMakers.push(() => makeCharacter(
  53586. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53587. {
  53588. front: {
  53589. height: math.unit(16 + 8/12, "feet"),
  53590. weight: math.unit(9000, "lb"),
  53591. name: "Front",
  53592. image: {
  53593. source: "./media/characters/lokuto-takama/front.svg",
  53594. extra: 1774/1632,
  53595. bottom: 147/1921
  53596. },
  53597. extraAttributes: {
  53598. "bustWidth": {
  53599. name: "Bust Width",
  53600. power: 1,
  53601. type: "length",
  53602. base: math.unit(2.4, "meters")
  53603. },
  53604. "breastWeight": {
  53605. name: "Breast Weight",
  53606. power: 3,
  53607. type: "mass",
  53608. base: math.unit(1000, "kg")
  53609. },
  53610. }
  53611. },
  53612. },
  53613. [
  53614. {
  53615. name: "Normal",
  53616. height: math.unit(16 + 8/12, "feet"),
  53617. default: true
  53618. },
  53619. ]
  53620. ))
  53621. characterMakers.push(() => makeCharacter(
  53622. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53623. {
  53624. front: {
  53625. height: math.unit(10, "cm"),
  53626. weight: math.unit(850, "grams"),
  53627. name: "Front",
  53628. image: {
  53629. source: "./media/characters/owak-bone/front.svg",
  53630. extra: 1965/1801,
  53631. bottom: 31/1996
  53632. }
  53633. },
  53634. },
  53635. [
  53636. {
  53637. name: "Normal",
  53638. height: math.unit(10, "cm"),
  53639. default: true
  53640. },
  53641. ]
  53642. ))
  53643. characterMakers.push(() => makeCharacter(
  53644. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53645. {
  53646. front: {
  53647. height: math.unit(2 + 6/12, "feet"),
  53648. weight: math.unit(9, "lb"),
  53649. name: "Front",
  53650. image: {
  53651. source: "./media/characters/muffin/front.svg",
  53652. extra: 1220/1195,
  53653. bottom: 84/1304
  53654. }
  53655. },
  53656. },
  53657. [
  53658. {
  53659. name: "Normal",
  53660. height: math.unit(2 + 6/12, "feet"),
  53661. default: true
  53662. },
  53663. ]
  53664. ))
  53665. characterMakers.push(() => makeCharacter(
  53666. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53667. {
  53668. front: {
  53669. height: math.unit(7, "feet"),
  53670. name: "Front",
  53671. image: {
  53672. source: "./media/characters/chimera/front.svg",
  53673. extra: 1752/1614,
  53674. bottom: 68/1820
  53675. }
  53676. },
  53677. },
  53678. [
  53679. {
  53680. name: "Normal",
  53681. height: math.unit(7, "feet")
  53682. },
  53683. {
  53684. name: "Gigamacro",
  53685. height: math.unit(2.9, "gigameters"),
  53686. default: true
  53687. },
  53688. {
  53689. name: "Universal",
  53690. height: math.unit(1.56e26, "yottameters")
  53691. },
  53692. ]
  53693. ))
  53694. characterMakers.push(() => makeCharacter(
  53695. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53696. {
  53697. front: {
  53698. height: math.unit(3, "feet"),
  53699. weight: math.unit(20, "lb"),
  53700. name: "Front",
  53701. image: {
  53702. source: "./media/characters/kit-fennec-fox/front.svg",
  53703. extra: 1027/932,
  53704. bottom: 16/1043
  53705. }
  53706. },
  53707. back: {
  53708. height: math.unit(3, "feet"),
  53709. weight: math.unit(20, "lb"),
  53710. name: "Back",
  53711. image: {
  53712. source: "./media/characters/kit-fennec-fox/back.svg",
  53713. extra: 1027/932,
  53714. bottom: 16/1043
  53715. }
  53716. },
  53717. },
  53718. [
  53719. {
  53720. name: "Normal",
  53721. height: math.unit(3, "feet"),
  53722. default: true
  53723. },
  53724. ]
  53725. ))
  53726. characterMakers.push(() => makeCharacter(
  53727. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53728. {
  53729. front: {
  53730. height: math.unit(167, "cm"),
  53731. name: "Front",
  53732. image: {
  53733. source: "./media/characters/blue-otter/front.svg",
  53734. extra: 1951/1920,
  53735. bottom: 31/1982
  53736. }
  53737. },
  53738. },
  53739. [
  53740. {
  53741. name: "Otter-Sized",
  53742. height: math.unit(100, "cm")
  53743. },
  53744. {
  53745. name: "Normal",
  53746. height: math.unit(167, "cm"),
  53747. default: true
  53748. },
  53749. ]
  53750. ))
  53751. characterMakers.push(() => makeCharacter(
  53752. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53753. {
  53754. front: {
  53755. height: math.unit(4 + 4/12, "feet"),
  53756. name: "Front",
  53757. image: {
  53758. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53759. extra: 1072/1067,
  53760. bottom: 117/1189
  53761. }
  53762. },
  53763. back: {
  53764. height: math.unit(4 + 4/12, "feet"),
  53765. name: "Back",
  53766. image: {
  53767. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53768. extra: 1135/1129,
  53769. bottom: 57/1192
  53770. }
  53771. },
  53772. head: {
  53773. height: math.unit(1.77, "feet"),
  53774. name: "Head",
  53775. image: {
  53776. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53777. }
  53778. },
  53779. },
  53780. [
  53781. {
  53782. name: "Normal",
  53783. height: math.unit(4 + 4/12, "feet"),
  53784. default: true
  53785. },
  53786. ]
  53787. ))
  53788. characterMakers.push(() => makeCharacter(
  53789. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53790. {
  53791. front: {
  53792. height: math.unit(2, "inches"),
  53793. name: "Front",
  53794. image: {
  53795. source: "./media/characters/carley-hartford/front.svg",
  53796. extra: 1035/988,
  53797. bottom: 23/1058
  53798. }
  53799. },
  53800. back: {
  53801. height: math.unit(2, "inches"),
  53802. name: "Back",
  53803. image: {
  53804. source: "./media/characters/carley-hartford/back.svg",
  53805. extra: 1035/988,
  53806. bottom: 23/1058
  53807. }
  53808. },
  53809. dressed: {
  53810. height: math.unit(2, "inches"),
  53811. name: "Dressed",
  53812. image: {
  53813. source: "./media/characters/carley-hartford/dressed.svg",
  53814. extra: 651/620,
  53815. bottom: 0/651
  53816. }
  53817. },
  53818. },
  53819. [
  53820. {
  53821. name: "Micro",
  53822. height: math.unit(2, "inches"),
  53823. default: true
  53824. },
  53825. {
  53826. name: "Macro",
  53827. height: math.unit(6 + 3/12, "feet")
  53828. },
  53829. ]
  53830. ))
  53831. characterMakers.push(() => makeCharacter(
  53832. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53833. {
  53834. front: {
  53835. height: math.unit(2 + 3/12, "feet"),
  53836. weight: math.unit(15 + 7/16, "lb"),
  53837. name: "Front",
  53838. image: {
  53839. source: "./media/characters/duke/front.svg",
  53840. extra: 910/815,
  53841. bottom: 30/940
  53842. }
  53843. },
  53844. },
  53845. [
  53846. {
  53847. name: "Normal",
  53848. height: math.unit(2 + 3/12, "feet"),
  53849. default: true
  53850. },
  53851. ]
  53852. ))
  53853. characterMakers.push(() => makeCharacter(
  53854. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53855. {
  53856. front: {
  53857. height: math.unit(5 + 4/12, "feet"),
  53858. weight: math.unit(156, "lb"),
  53859. name: "Front",
  53860. image: {
  53861. source: "./media/characters/dein/front.svg",
  53862. extra: 855/815,
  53863. bottom: 48/903
  53864. }
  53865. },
  53866. side: {
  53867. height: math.unit(5 + 4/12, "feet"),
  53868. weight: math.unit(156, "lb"),
  53869. name: "side",
  53870. image: {
  53871. source: "./media/characters/dein/side.svg",
  53872. extra: 846/803,
  53873. bottom: 25/871
  53874. }
  53875. },
  53876. maw: {
  53877. height: math.unit(1.45, "feet"),
  53878. name: "Maw",
  53879. image: {
  53880. source: "./media/characters/dein/maw.svg"
  53881. }
  53882. },
  53883. },
  53884. [
  53885. {
  53886. name: "Ferret Sized",
  53887. height: math.unit(2 + 5/12, "feet")
  53888. },
  53889. {
  53890. name: "Normal",
  53891. height: math.unit(5 + 4/12, "feet"),
  53892. default: true
  53893. },
  53894. ]
  53895. ))
  53896. characterMakers.push(() => makeCharacter(
  53897. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53898. {
  53899. front: {
  53900. height: math.unit(84 + 8/12, "feet"),
  53901. weight: math.unit(942180, "lb"),
  53902. name: "Front",
  53903. image: {
  53904. source: "./media/characters/daurine-arima/front.svg",
  53905. extra: 1989/1782,
  53906. bottom: 37/2026
  53907. }
  53908. },
  53909. side: {
  53910. height: math.unit(84 + 8/12, "feet"),
  53911. weight: math.unit(942180, "lb"),
  53912. name: "Side",
  53913. image: {
  53914. source: "./media/characters/daurine-arima/side.svg",
  53915. extra: 1997/1790,
  53916. bottom: 21/2018
  53917. }
  53918. },
  53919. back: {
  53920. height: math.unit(84 + 8/12, "feet"),
  53921. weight: math.unit(942180, "lb"),
  53922. name: "Back",
  53923. image: {
  53924. source: "./media/characters/daurine-arima/back.svg",
  53925. extra: 1992/1800,
  53926. bottom: 12/2004
  53927. }
  53928. },
  53929. head: {
  53930. height: math.unit(15.5, "feet"),
  53931. name: "Head",
  53932. image: {
  53933. source: "./media/characters/daurine-arima/head.svg"
  53934. }
  53935. },
  53936. headAlt: {
  53937. height: math.unit(19.19, "feet"),
  53938. name: "Head (Alt)",
  53939. image: {
  53940. source: "./media/characters/daurine-arima/head-alt.svg"
  53941. }
  53942. },
  53943. },
  53944. [
  53945. {
  53946. name: "Minimum height",
  53947. height: math.unit(8 + 10/12, "feet")
  53948. },
  53949. {
  53950. name: "Comfort height",
  53951. height: math.unit(19 + 6 /12, "feet")
  53952. },
  53953. {
  53954. name: "\"Normal\" height",
  53955. height: math.unit(28 + 10/12, "feet")
  53956. },
  53957. {
  53958. name: "Base height",
  53959. height: math.unit(84 + 8/12, "feet"),
  53960. default: true
  53961. },
  53962. {
  53963. name: "Mini-macro",
  53964. height: math.unit(2360, "feet")
  53965. },
  53966. {
  53967. name: "Macro",
  53968. height: math.unit(10, "miles")
  53969. },
  53970. {
  53971. name: "Goddess",
  53972. height: math.unit(9.99e40, "yottameters")
  53973. },
  53974. ]
  53975. ))
  53976. characterMakers.push(() => makeCharacter(
  53977. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53978. {
  53979. front: {
  53980. height: math.unit(2.3, "meters"),
  53981. name: "Front",
  53982. image: {
  53983. source: "./media/characters/cilenomon/front.svg",
  53984. extra: 1963/1778,
  53985. bottom: 54/2017
  53986. }
  53987. },
  53988. },
  53989. [
  53990. {
  53991. name: "Normal",
  53992. height: math.unit(2.3, "meters"),
  53993. default: true
  53994. },
  53995. {
  53996. name: "Big",
  53997. height: math.unit(5, "meters")
  53998. },
  53999. {
  54000. name: "Macro",
  54001. height: math.unit(30, "meters")
  54002. },
  54003. {
  54004. name: "True",
  54005. height: math.unit(1, "universe")
  54006. },
  54007. ]
  54008. ))
  54009. characterMakers.push(() => makeCharacter(
  54010. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54011. {
  54012. front: {
  54013. height: math.unit(5, "feet"),
  54014. name: "Front",
  54015. image: {
  54016. source: "./media/characters/sen-mink/front.svg",
  54017. extra: 1727/1675,
  54018. bottom: 35/1762
  54019. }
  54020. },
  54021. },
  54022. [
  54023. {
  54024. name: "Normal",
  54025. height: math.unit(5, "feet"),
  54026. default: true
  54027. },
  54028. ]
  54029. ))
  54030. characterMakers.push(() => makeCharacter(
  54031. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54032. {
  54033. front: {
  54034. height: math.unit(5.42999, "feet"),
  54035. weight: math.unit(100, "lb"),
  54036. name: "Front",
  54037. image: {
  54038. source: "./media/characters/ophois/front.svg",
  54039. extra: 1429/1286,
  54040. bottom: 60/1489
  54041. }
  54042. },
  54043. },
  54044. [
  54045. {
  54046. name: "Normal",
  54047. height: math.unit(5.42999, "feet"),
  54048. default: true
  54049. },
  54050. ]
  54051. ))
  54052. characterMakers.push(() => makeCharacter(
  54053. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54054. {
  54055. front: {
  54056. height: math.unit(2, "meters"),
  54057. name: "Front",
  54058. image: {
  54059. source: "./media/characters/riley/front.svg",
  54060. extra: 1779/1754,
  54061. bottom: 139/1918
  54062. }
  54063. },
  54064. },
  54065. [
  54066. {
  54067. name: "Normal",
  54068. height: math.unit(2, "meters"),
  54069. default: true
  54070. },
  54071. ]
  54072. ))
  54073. characterMakers.push(() => makeCharacter(
  54074. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54075. {
  54076. front: {
  54077. height: math.unit(6 + 2/12, "feet"),
  54078. weight: math.unit(195, "lb"),
  54079. preyCapacity: math.unit(6, "people"),
  54080. name: "Front",
  54081. image: {
  54082. source: "./media/characters/shuken-flash/front.svg",
  54083. extra: 1905/1739,
  54084. bottom: 65/1970
  54085. }
  54086. },
  54087. back: {
  54088. height: math.unit(6 + 2/12, "feet"),
  54089. weight: math.unit(195, "lb"),
  54090. preyCapacity: math.unit(6, "people"),
  54091. name: "Back",
  54092. image: {
  54093. source: "./media/characters/shuken-flash/back.svg",
  54094. extra: 1912/1751,
  54095. bottom: 13/1925
  54096. }
  54097. },
  54098. },
  54099. [
  54100. {
  54101. name: "Normal",
  54102. height: math.unit(6 + 2/12, "feet"),
  54103. default: true
  54104. },
  54105. ]
  54106. ))
  54107. characterMakers.push(() => makeCharacter(
  54108. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54109. {
  54110. front: {
  54111. height: math.unit(5 + 9/12, "feet"),
  54112. weight: math.unit(150, "lb"),
  54113. name: "Front",
  54114. image: {
  54115. source: "./media/characters/plat/front.svg",
  54116. extra: 1816/1703,
  54117. bottom: 43/1859
  54118. }
  54119. },
  54120. side: {
  54121. height: math.unit(5 + 9/12, "feet"),
  54122. weight: math.unit(300, "lb"),
  54123. name: "Side",
  54124. image: {
  54125. source: "./media/characters/plat/side.svg",
  54126. extra: 1824/1699,
  54127. bottom: 18/1842
  54128. }
  54129. },
  54130. },
  54131. [
  54132. {
  54133. name: "Normal",
  54134. height: math.unit(5 + 9/12, "feet"),
  54135. default: true
  54136. },
  54137. ]
  54138. ))
  54139. characterMakers.push(() => makeCharacter(
  54140. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54141. {
  54142. front: {
  54143. height: math.unit(9, "feet"),
  54144. weight: math.unit(1800, "lb"),
  54145. name: "Front",
  54146. image: {
  54147. source: "./media/characters/elaine/front.svg",
  54148. extra: 1833/1354,
  54149. bottom: 25/1858
  54150. }
  54151. },
  54152. back: {
  54153. height: math.unit(8.8, "feet"),
  54154. weight: math.unit(1800, "lb"),
  54155. name: "Back",
  54156. image: {
  54157. source: "./media/characters/elaine/back.svg",
  54158. extra: 1641/1233,
  54159. bottom: 53/1694
  54160. }
  54161. },
  54162. },
  54163. [
  54164. {
  54165. name: "Normal",
  54166. height: math.unit(9, "feet"),
  54167. default: true
  54168. },
  54169. ]
  54170. ))
  54171. characterMakers.push(() => makeCharacter(
  54172. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54173. {
  54174. front: {
  54175. height: math.unit(17 + 9/12, "feet"),
  54176. weight: math.unit(8000, "lb"),
  54177. name: "Front",
  54178. image: {
  54179. source: "./media/characters/vera-raven/front.svg",
  54180. extra: 1457/1412,
  54181. bottom: 121/1578
  54182. }
  54183. },
  54184. side: {
  54185. height: math.unit(17 + 9/12, "feet"),
  54186. weight: math.unit(8000, "lb"),
  54187. name: "Side",
  54188. image: {
  54189. source: "./media/characters/vera-raven/side.svg",
  54190. extra: 1510/1464,
  54191. bottom: 54/1564
  54192. }
  54193. },
  54194. },
  54195. [
  54196. {
  54197. name: "Normal",
  54198. height: math.unit(17 + 9/12, "feet"),
  54199. default: true
  54200. },
  54201. ]
  54202. ))
  54203. characterMakers.push(() => makeCharacter(
  54204. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54205. {
  54206. dressed: {
  54207. height: math.unit(6 + 9/12, "feet"),
  54208. name: "Dressed",
  54209. image: {
  54210. source: "./media/characters/nakisha/dressed.svg",
  54211. extra: 1909/1757,
  54212. bottom: 48/1957
  54213. }
  54214. },
  54215. nude: {
  54216. height: math.unit(6 + 9/12, "feet"),
  54217. name: "Nude",
  54218. image: {
  54219. source: "./media/characters/nakisha/nude.svg",
  54220. extra: 1917/1765,
  54221. bottom: 34/1951
  54222. }
  54223. },
  54224. },
  54225. [
  54226. {
  54227. name: "Normal",
  54228. height: math.unit(6 + 9/12, "feet"),
  54229. default: true
  54230. },
  54231. ]
  54232. ))
  54233. characterMakers.push(() => makeCharacter(
  54234. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54235. {
  54236. front: {
  54237. height: math.unit(87, "meters"),
  54238. name: "Front",
  54239. image: {
  54240. source: "./media/characters/serafin/front.svg",
  54241. extra: 1919/1776,
  54242. bottom: 65/1984
  54243. }
  54244. },
  54245. },
  54246. [
  54247. {
  54248. name: "Normal",
  54249. height: math.unit(87, "meters"),
  54250. default: true
  54251. },
  54252. ]
  54253. ))
  54254. characterMakers.push(() => makeCharacter(
  54255. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54256. {
  54257. front: {
  54258. height: math.unit(6, "feet"),
  54259. weight: math.unit(200, "lb"),
  54260. name: "Front",
  54261. image: {
  54262. source: "./media/characters/poptart/front.svg",
  54263. extra: 615/583,
  54264. bottom: 23/638
  54265. }
  54266. },
  54267. back: {
  54268. height: math.unit(6, "feet"),
  54269. weight: math.unit(200, "lb"),
  54270. name: "Back",
  54271. image: {
  54272. source: "./media/characters/poptart/back.svg",
  54273. extra: 617/584,
  54274. bottom: 22/639
  54275. }
  54276. },
  54277. frontNsfw: {
  54278. height: math.unit(6, "feet"),
  54279. weight: math.unit(200, "lb"),
  54280. name: "Front (NSFW)",
  54281. image: {
  54282. source: "./media/characters/poptart/front-nsfw.svg",
  54283. extra: 615/583,
  54284. bottom: 23/638
  54285. }
  54286. },
  54287. backNsfw: {
  54288. height: math.unit(6, "feet"),
  54289. weight: math.unit(200, "lb"),
  54290. name: "Back (NSFW)",
  54291. image: {
  54292. source: "./media/characters/poptart/back-nsfw.svg",
  54293. extra: 617/584,
  54294. bottom: 22/639
  54295. }
  54296. },
  54297. hand: {
  54298. height: math.unit(1.14, "feet"),
  54299. name: "Hand",
  54300. image: {
  54301. source: "./media/characters/poptart/hand.svg"
  54302. }
  54303. },
  54304. foot: {
  54305. height: math.unit(1.5, "feet"),
  54306. name: "Foot",
  54307. image: {
  54308. source: "./media/characters/poptart/foot.svg"
  54309. }
  54310. },
  54311. },
  54312. [
  54313. {
  54314. name: "Normal",
  54315. height: math.unit(6, "feet"),
  54316. default: true
  54317. },
  54318. {
  54319. name: "Grande",
  54320. height: math.unit(350, "feet")
  54321. },
  54322. {
  54323. name: "Massif",
  54324. height: math.unit(967, "feet")
  54325. },
  54326. ]
  54327. ))
  54328. characterMakers.push(() => makeCharacter(
  54329. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54330. {
  54331. hyenaSide: {
  54332. height: math.unit(120, "cm"),
  54333. weight: math.unit(120, "lb"),
  54334. name: "Side",
  54335. image: {
  54336. source: "./media/characters/trance/hyena-side.svg",
  54337. extra: 998/904,
  54338. bottom: 76/1074
  54339. }
  54340. },
  54341. },
  54342. [
  54343. {
  54344. name: "Normal",
  54345. height: math.unit(120, "cm"),
  54346. default: true
  54347. },
  54348. {
  54349. name: "Dire",
  54350. height: math.unit(230, "cm")
  54351. },
  54352. {
  54353. name: "Macro",
  54354. height: math.unit(37, "feet")
  54355. },
  54356. ]
  54357. ))
  54358. characterMakers.push(() => makeCharacter(
  54359. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54360. {
  54361. front: {
  54362. height: math.unit(6 + 3/12, "feet"),
  54363. name: "Front",
  54364. image: {
  54365. source: "./media/characters/michael-berretta/front.svg",
  54366. extra: 515/494,
  54367. bottom: 20/535
  54368. }
  54369. },
  54370. back: {
  54371. height: math.unit(6 + 3/12, "feet"),
  54372. name: "Back",
  54373. image: {
  54374. source: "./media/characters/michael-berretta/back.svg",
  54375. extra: 520/497,
  54376. bottom: 21/541
  54377. }
  54378. },
  54379. frontNsfw: {
  54380. height: math.unit(6 + 3/12, "feet"),
  54381. name: "Front (NSFW)",
  54382. image: {
  54383. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54384. extra: 515/494,
  54385. bottom: 20/535
  54386. }
  54387. },
  54388. dick: {
  54389. height: math.unit(1, "feet"),
  54390. name: "Dick",
  54391. image: {
  54392. source: "./media/characters/michael-berretta/dick.svg"
  54393. }
  54394. },
  54395. },
  54396. [
  54397. {
  54398. name: "Normal",
  54399. height: math.unit(6 + 3/12, "feet"),
  54400. default: true
  54401. },
  54402. {
  54403. name: "Big",
  54404. height: math.unit(12, "feet")
  54405. },
  54406. {
  54407. name: "Macro",
  54408. height: math.unit(187.5, "feet")
  54409. },
  54410. ]
  54411. ))
  54412. characterMakers.push(() => makeCharacter(
  54413. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54414. {
  54415. front: {
  54416. height: math.unit(9 + 9/12, "feet"),
  54417. weight: math.unit(1244, "lb"),
  54418. name: "Front",
  54419. image: {
  54420. source: "./media/characters/stella-edgecomb/front.svg",
  54421. extra: 1835/1706,
  54422. bottom: 49/1884
  54423. }
  54424. },
  54425. pen: {
  54426. height: math.unit(0.95, "feet"),
  54427. name: "Pen",
  54428. image: {
  54429. source: "./media/characters/stella-edgecomb/pen.svg"
  54430. }
  54431. },
  54432. },
  54433. [
  54434. {
  54435. name: "Cozy Bear",
  54436. height: math.unit(0.5, "inches")
  54437. },
  54438. {
  54439. name: "Normal",
  54440. height: math.unit(9 + 9/12, "feet"),
  54441. default: true
  54442. },
  54443. {
  54444. name: "Giga Bear",
  54445. height: math.unit(1, "mile")
  54446. },
  54447. {
  54448. name: "Great Bear",
  54449. height: math.unit(53, "miles")
  54450. },
  54451. {
  54452. name: "Goddess Bear",
  54453. height: math.unit(40000, "miles")
  54454. },
  54455. {
  54456. name: "Sun Bear",
  54457. height: math.unit(900000, "miles")
  54458. },
  54459. ]
  54460. ))
  54461. characterMakers.push(() => makeCharacter(
  54462. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54463. {
  54464. anthroFront: {
  54465. height: math.unit(556, "cm"),
  54466. weight: math.unit(2650, "kg"),
  54467. preyCapacity: math.unit(3, "people"),
  54468. name: "Front",
  54469. image: {
  54470. source: "./media/characters/ash´iika/front.svg",
  54471. extra: 710/673,
  54472. bottom: 15/725
  54473. },
  54474. form: "anthro",
  54475. default: true
  54476. },
  54477. anthroSide: {
  54478. height: math.unit(556, "cm"),
  54479. weight: math.unit(2650, "kg"),
  54480. preyCapacity: math.unit(3, "people"),
  54481. name: "Side",
  54482. image: {
  54483. source: "./media/characters/ash´iika/side.svg",
  54484. extra: 696/676,
  54485. bottom: 13/709
  54486. },
  54487. form: "anthro"
  54488. },
  54489. anthroDressed: {
  54490. height: math.unit(556, "cm"),
  54491. weight: math.unit(2650, "kg"),
  54492. preyCapacity: math.unit(3, "people"),
  54493. name: "Dressed",
  54494. image: {
  54495. source: "./media/characters/ash´iika/dressed.svg",
  54496. extra: 710/673,
  54497. bottom: 15/725
  54498. },
  54499. form: "anthro"
  54500. },
  54501. anthroHead: {
  54502. height: math.unit(3.5, "feet"),
  54503. name: "Head",
  54504. image: {
  54505. source: "./media/characters/ash´iika/head.svg",
  54506. extra: 348/291,
  54507. bottom: 45/393
  54508. },
  54509. form: "anthro"
  54510. },
  54511. feralSide: {
  54512. height: math.unit(870, "cm"),
  54513. weight: math.unit(17500, "kg"),
  54514. preyCapacity: math.unit(15, "people"),
  54515. name: "Side",
  54516. image: {
  54517. source: "./media/characters/ash´iika/feral.svg",
  54518. extra: 595/199,
  54519. bottom: 7/602
  54520. },
  54521. form: "feral",
  54522. default: true,
  54523. },
  54524. },
  54525. [
  54526. {
  54527. name: "Normal",
  54528. height: math.unit(556, "cm"),
  54529. default: true,
  54530. form: "anthro"
  54531. },
  54532. {
  54533. name: "Macro",
  54534. height: math.unit(88, "meters"),
  54535. form: "anthro"
  54536. },
  54537. {
  54538. name: "Normal",
  54539. height: math.unit(870, "cm"),
  54540. default: true,
  54541. form: "feral"
  54542. },
  54543. {
  54544. name: "Large",
  54545. height: math.unit(25, "meters"),
  54546. form: "feral"
  54547. },
  54548. ],
  54549. {
  54550. "anthro": {
  54551. name: "Anthro",
  54552. default: true
  54553. },
  54554. "feral": {
  54555. name: "Feral",
  54556. },
  54557. }
  54558. ))
  54559. characterMakers.push(() => makeCharacter(
  54560. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54561. {
  54562. front: {
  54563. height: math.unit(10, "feet"),
  54564. weight: math.unit(800, "lb"),
  54565. name: "Front",
  54566. image: {
  54567. source: "./media/characters/yen/front.svg",
  54568. extra: 443/411,
  54569. bottom: 6/449
  54570. }
  54571. },
  54572. sleeping: {
  54573. height: math.unit(10, "feet"),
  54574. weight: math.unit(800, "lb"),
  54575. name: "Sleeping",
  54576. image: {
  54577. source: "./media/characters/yen/sleeping.svg",
  54578. extra: 470/422,
  54579. bottom: 0/470
  54580. }
  54581. },
  54582. head: {
  54583. height: math.unit(2.2, "feet"),
  54584. name: "Head",
  54585. image: {
  54586. source: "./media/characters/yen/head.svg"
  54587. }
  54588. },
  54589. headAlt: {
  54590. height: math.unit(2.1, "feet"),
  54591. name: "Head (Alt)",
  54592. image: {
  54593. source: "./media/characters/yen/head-alt.svg"
  54594. }
  54595. },
  54596. },
  54597. [
  54598. {
  54599. name: "Normal",
  54600. height: math.unit(10, "feet"),
  54601. default: true
  54602. },
  54603. ]
  54604. ))
  54605. characterMakers.push(() => makeCharacter(
  54606. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54607. {
  54608. front: {
  54609. height: math.unit(12, "feet"),
  54610. name: "Front",
  54611. image: {
  54612. source: "./media/characters/citra/front.svg",
  54613. extra: 1950/1710,
  54614. bottom: 47/1997
  54615. }
  54616. },
  54617. },
  54618. [
  54619. {
  54620. name: "Normal",
  54621. height: math.unit(12, "feet"),
  54622. default: true
  54623. },
  54624. ]
  54625. ))
  54626. characterMakers.push(() => makeCharacter(
  54627. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54628. {
  54629. side: {
  54630. height: math.unit(7 + 10/12, "feet"),
  54631. name: "Side",
  54632. image: {
  54633. source: "./media/characters/sholstim/side.svg",
  54634. extra: 786/682,
  54635. bottom: 40/826
  54636. }
  54637. },
  54638. },
  54639. [
  54640. {
  54641. name: "Normal",
  54642. height: math.unit(7 + 10/12, "feet"),
  54643. default: true
  54644. },
  54645. ]
  54646. ))
  54647. characterMakers.push(() => makeCharacter(
  54648. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54649. {
  54650. front: {
  54651. height: math.unit(3.10, "meters"),
  54652. name: "Front",
  54653. image: {
  54654. source: "./media/characters/aggyn/front.svg",
  54655. extra: 1188/963,
  54656. bottom: 24/1212
  54657. }
  54658. },
  54659. },
  54660. [
  54661. {
  54662. name: "Normal",
  54663. height: math.unit(3.10, "meters"),
  54664. default: true
  54665. },
  54666. ]
  54667. ))
  54668. characterMakers.push(() => makeCharacter(
  54669. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54670. {
  54671. front: {
  54672. height: math.unit(7 + 5/12, "feet"),
  54673. weight: math.unit(687, "lb"),
  54674. name: "Front",
  54675. image: {
  54676. source: "./media/characters/alsandair-hergenroether/front.svg",
  54677. extra: 1251/1186,
  54678. bottom: 75/1326
  54679. }
  54680. },
  54681. back: {
  54682. height: math.unit(7 + 5/12, "feet"),
  54683. weight: math.unit(687, "lb"),
  54684. name: "Back",
  54685. image: {
  54686. source: "./media/characters/alsandair-hergenroether/back.svg",
  54687. extra: 1290/1229,
  54688. bottom: 17/1307
  54689. }
  54690. },
  54691. },
  54692. [
  54693. {
  54694. name: "Max Compression",
  54695. height: math.unit(7 + 5/12, "feet"),
  54696. default: true
  54697. },
  54698. {
  54699. name: "\"Normal\"",
  54700. height: math.unit(2, "universes")
  54701. },
  54702. ]
  54703. ))
  54704. characterMakers.push(() => makeCharacter(
  54705. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54706. {
  54707. front: {
  54708. height: math.unit(4 + 1/12, "feet"),
  54709. weight: math.unit(92, "lb"),
  54710. name: "Front",
  54711. image: {
  54712. source: "./media/characters/ie/front.svg",
  54713. extra: 1585/1352,
  54714. bottom: 91/1676
  54715. }
  54716. },
  54717. },
  54718. [
  54719. {
  54720. name: "Normal",
  54721. height: math.unit(4 + 1/12, "feet"),
  54722. default: true
  54723. },
  54724. ]
  54725. ))
  54726. characterMakers.push(() => makeCharacter(
  54727. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54728. {
  54729. anthro: {
  54730. height: math.unit(6, "feet"),
  54731. weight: math.unit(150, "lb"),
  54732. name: "Front",
  54733. image: {
  54734. source: "./media/characters/willow/anthro.svg",
  54735. extra: 1073/986,
  54736. bottom: 34/1107
  54737. },
  54738. form: "anthro",
  54739. default: true
  54740. },
  54741. taur: {
  54742. height: math.unit(6, "feet"),
  54743. weight: math.unit(150, "lb"),
  54744. name: "Side",
  54745. image: {
  54746. source: "./media/characters/willow/taur.svg",
  54747. extra: 647/512,
  54748. bottom: 136/783
  54749. },
  54750. form: "taur",
  54751. default: true
  54752. },
  54753. },
  54754. [
  54755. {
  54756. name: "Humanoid",
  54757. height: math.unit(2.7, "meters"),
  54758. form: "anthro"
  54759. },
  54760. {
  54761. name: "Normal",
  54762. height: math.unit(9, "meters"),
  54763. form: "anthro",
  54764. default: true
  54765. },
  54766. {
  54767. name: "Humanoid",
  54768. height: math.unit(2.1, "meters"),
  54769. form: "taur"
  54770. },
  54771. {
  54772. name: "Normal",
  54773. height: math.unit(7, "meters"),
  54774. form: "taur",
  54775. default: true
  54776. },
  54777. ],
  54778. {
  54779. "anthro": {
  54780. name: "Anthro",
  54781. default: true
  54782. },
  54783. "taur": {
  54784. name: "Taur",
  54785. },
  54786. }
  54787. ))
  54788. characterMakers.push(() => makeCharacter(
  54789. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54790. {
  54791. front: {
  54792. height: math.unit(2 + 5/12, "feet"),
  54793. name: "Front",
  54794. image: {
  54795. source: "./media/characters/kyan/front.svg",
  54796. extra: 460/334,
  54797. bottom: 23/483
  54798. },
  54799. extraAttributes: {
  54800. "toeLength": {
  54801. name: "Toe Length",
  54802. power: 1,
  54803. type: "length",
  54804. base: math.unit(7, "cm")
  54805. },
  54806. "toeclawLength": {
  54807. name: "Toeclaw Length",
  54808. power: 1,
  54809. type: "length",
  54810. base: math.unit(4.7, "cm")
  54811. },
  54812. "earHeight": {
  54813. name: "Ear Height",
  54814. power: 1,
  54815. type: "length",
  54816. base: math.unit(14.1, "cm")
  54817. },
  54818. }
  54819. },
  54820. paws: {
  54821. height: math.unit(0.45, "feet"),
  54822. name: "Paws",
  54823. image: {
  54824. source: "./media/characters/kyan/paws.svg",
  54825. extra: 581/581,
  54826. bottom: 114/695
  54827. }
  54828. },
  54829. },
  54830. [
  54831. {
  54832. name: "Normal",
  54833. height: math.unit(2 + 5/12, "feet"),
  54834. default: true
  54835. },
  54836. ]
  54837. ))
  54838. characterMakers.push(() => makeCharacter(
  54839. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54840. {
  54841. front: {
  54842. height: math.unit(2 + 2/3, "feet"),
  54843. name: "Front",
  54844. image: {
  54845. source: "./media/characters/xazzon/front.svg",
  54846. extra: 1109/984,
  54847. bottom: 42/1151
  54848. }
  54849. },
  54850. back: {
  54851. height: math.unit(2 + 2/3, "feet"),
  54852. name: "Back",
  54853. image: {
  54854. source: "./media/characters/xazzon/back.svg",
  54855. extra: 1095/971,
  54856. bottom: 23/1118
  54857. }
  54858. },
  54859. },
  54860. [
  54861. {
  54862. name: "Normal",
  54863. height: math.unit(2 + 2/3, "feet"),
  54864. default: true
  54865. },
  54866. ]
  54867. ))
  54868. characterMakers.push(() => makeCharacter(
  54869. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54870. {
  54871. front: {
  54872. height: math.unit(8, "feet"),
  54873. weight: math.unit(300, "lb"),
  54874. name: "Front",
  54875. image: {
  54876. source: "./media/characters/khyla-shadowsong/front.svg",
  54877. extra: 861/798,
  54878. bottom: 32/893
  54879. }
  54880. },
  54881. side: {
  54882. height: math.unit(8, "feet"),
  54883. weight: math.unit(300, "lb"),
  54884. name: "Side",
  54885. image: {
  54886. source: "./media/characters/khyla-shadowsong/side.svg",
  54887. extra: 790/750,
  54888. bottom: 87/877
  54889. }
  54890. },
  54891. back: {
  54892. height: math.unit(8, "feet"),
  54893. weight: math.unit(300, "lb"),
  54894. name: "Back",
  54895. image: {
  54896. source: "./media/characters/khyla-shadowsong/back.svg",
  54897. extra: 855/808,
  54898. bottom: 14/869
  54899. }
  54900. },
  54901. head: {
  54902. height: math.unit(2.7, "feet"),
  54903. name: "Head",
  54904. image: {
  54905. source: "./media/characters/khyla-shadowsong/head.svg"
  54906. }
  54907. },
  54908. },
  54909. [
  54910. {
  54911. name: "Micro",
  54912. height: math.unit(6, "inches")
  54913. },
  54914. {
  54915. name: "Normal",
  54916. height: math.unit(8, "feet"),
  54917. default: true
  54918. },
  54919. ]
  54920. ))
  54921. characterMakers.push(() => makeCharacter(
  54922. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54923. {
  54924. hyperFront: {
  54925. height: math.unit(9 + 4/12, "feet"),
  54926. weight: math.unit(2000, "lb"),
  54927. name: "Front",
  54928. image: {
  54929. source: "./media/characters/tiden/hyper-front.svg",
  54930. extra: 400/382,
  54931. bottom: 6/406
  54932. },
  54933. form: "hyper",
  54934. },
  54935. regularFront: {
  54936. height: math.unit(7 + 10/12, "feet"),
  54937. weight: math.unit(470, "lb"),
  54938. name: "Front",
  54939. image: {
  54940. source: "./media/characters/tiden/regular-front.svg",
  54941. extra: 468/442,
  54942. bottom: 6/474
  54943. },
  54944. form: "regular",
  54945. },
  54946. },
  54947. [
  54948. {
  54949. name: "Normal",
  54950. height: math.unit(9 + 4/12, "feet"),
  54951. default: true,
  54952. form: "hyper"
  54953. },
  54954. {
  54955. name: "Normal",
  54956. height: math.unit(7 + 10/12, "feet"),
  54957. default: true,
  54958. form: "regular"
  54959. },
  54960. ],
  54961. {
  54962. "hyper": {
  54963. name: "Hyper",
  54964. default: true
  54965. },
  54966. "regular": {
  54967. name: "Regular",
  54968. },
  54969. }
  54970. ))
  54971. characterMakers.push(() => makeCharacter(
  54972. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54973. {
  54974. side: {
  54975. height: math.unit(6, "feet"),
  54976. weight: math.unit(150, "lb"),
  54977. name: "Side",
  54978. image: {
  54979. source: "./media/characters/jason-crowe/side.svg",
  54980. extra: 1771/766,
  54981. bottom: 219/1990
  54982. }
  54983. },
  54984. },
  54985. [
  54986. {
  54987. name: "Pocket Gryphon",
  54988. height: math.unit(6, "cm")
  54989. },
  54990. {
  54991. name: "Raven",
  54992. height: math.unit(60, "cm")
  54993. },
  54994. {
  54995. name: "Normal",
  54996. height: math.unit(1, "meter"),
  54997. default: true
  54998. },
  54999. ]
  55000. ))
  55001. characterMakers.push(() => makeCharacter(
  55002. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55003. {
  55004. front: {
  55005. height: math.unit(9 + 6/12, "feet"),
  55006. weight: math.unit(1100, "lb"),
  55007. name: "Front",
  55008. image: {
  55009. source: "./media/characters/django/front.svg",
  55010. extra: 1231/1136,
  55011. bottom: 34/1265
  55012. }
  55013. },
  55014. side: {
  55015. height: math.unit(9 + 6/12, "feet"),
  55016. weight: math.unit(1100, "lb"),
  55017. name: "Side",
  55018. image: {
  55019. source: "./media/characters/django/side.svg",
  55020. extra: 1267/1174,
  55021. bottom: 9/1276
  55022. }
  55023. },
  55024. },
  55025. [
  55026. {
  55027. name: "Normal",
  55028. height: math.unit(9 + 6/12, "feet"),
  55029. default: true
  55030. },
  55031. {
  55032. name: "Macro 1",
  55033. height: math.unit(50, "feet")
  55034. },
  55035. {
  55036. name: "Macro 2",
  55037. height: math.unit(500, "feet")
  55038. },
  55039. {
  55040. name: "Mega Macro",
  55041. height: math.unit(5300, "feet")
  55042. },
  55043. ]
  55044. ))
  55045. characterMakers.push(() => makeCharacter(
  55046. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55047. {
  55048. frontSfw: {
  55049. height: math.unit(120, "cm"),
  55050. weight: math.unit(15, "kg"),
  55051. name: "Front (SFW)",
  55052. image: {
  55053. source: "./media/characters/eri/front-sfw.svg",
  55054. extra: 1014/939,
  55055. bottom: 37/1051
  55056. },
  55057. form: "moth",
  55058. },
  55059. frontNsfw: {
  55060. height: math.unit(120, "cm"),
  55061. weight: math.unit(15, "kg"),
  55062. name: "Front (NSFW)",
  55063. image: {
  55064. source: "./media/characters/eri/front-nsfw.svg",
  55065. extra: 1014/939,
  55066. bottom: 37/1051
  55067. },
  55068. form: "moth",
  55069. default: true
  55070. },
  55071. egg: {
  55072. height: math.unit(10, "cm"),
  55073. name: "Egg",
  55074. image: {
  55075. source: "./media/characters/eri/egg.svg"
  55076. },
  55077. form: "egg",
  55078. default: true
  55079. },
  55080. },
  55081. [
  55082. {
  55083. name: "Normal",
  55084. height: math.unit(120, "cm"),
  55085. default: true,
  55086. form: "moth"
  55087. },
  55088. {
  55089. name: "Normal",
  55090. height: math.unit(10, "cm"),
  55091. default: true,
  55092. form: "egg"
  55093. },
  55094. ],
  55095. {
  55096. "moth": {
  55097. name: "Moth",
  55098. default: true
  55099. },
  55100. "egg": {
  55101. name: "Egg",
  55102. },
  55103. }
  55104. ))
  55105. characterMakers.push(() => makeCharacter(
  55106. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55107. {
  55108. front: {
  55109. height: math.unit(200, "feet"),
  55110. name: "Front",
  55111. image: {
  55112. source: "./media/characters/bishop-dowser/front.svg",
  55113. extra: 933/868,
  55114. bottom: 106/1039
  55115. }
  55116. },
  55117. },
  55118. [
  55119. {
  55120. name: "Giant",
  55121. height: math.unit(200, "feet"),
  55122. default: true
  55123. },
  55124. ]
  55125. ))
  55126. characterMakers.push(() => makeCharacter(
  55127. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55128. {
  55129. front: {
  55130. height: math.unit(2, "meters"),
  55131. preyCapacity: math.unit(3, "people"),
  55132. name: "Front",
  55133. image: {
  55134. source: "./media/characters/fryra/front.svg",
  55135. extra: 1025/948,
  55136. bottom: 30/1055
  55137. },
  55138. extraAttributes: {
  55139. "breastVolume": {
  55140. name: "Breast Volume",
  55141. power: 3,
  55142. type: "volume",
  55143. base: math.unit(8, "liters")
  55144. },
  55145. }
  55146. },
  55147. back: {
  55148. height: math.unit(2, "meters"),
  55149. preyCapacity: math.unit(3, "people"),
  55150. name: "Back",
  55151. image: {
  55152. source: "./media/characters/fryra/back.svg",
  55153. extra: 993/938,
  55154. bottom: 38/1031
  55155. },
  55156. extraAttributes: {
  55157. "breastVolume": {
  55158. name: "Breast Volume",
  55159. power: 3,
  55160. type: "volume",
  55161. base: math.unit(8, "liters")
  55162. },
  55163. }
  55164. },
  55165. head: {
  55166. height: math.unit(1.33, "feet"),
  55167. name: "Head",
  55168. image: {
  55169. source: "./media/characters/fryra/head.svg"
  55170. }
  55171. },
  55172. maw: {
  55173. height: math.unit(0.56, "feet"),
  55174. name: "Maw",
  55175. image: {
  55176. source: "./media/characters/fryra/maw.svg"
  55177. }
  55178. },
  55179. },
  55180. [
  55181. {
  55182. name: "Micro",
  55183. height: math.unit(5, "cm")
  55184. },
  55185. {
  55186. name: "Normal",
  55187. height: math.unit(2, "meters"),
  55188. default: true
  55189. },
  55190. {
  55191. name: "Small Macro",
  55192. height: math.unit(8, "meters")
  55193. },
  55194. {
  55195. name: "Macro",
  55196. height: math.unit(50, "meters")
  55197. },
  55198. {
  55199. name: "Megamacro",
  55200. height: math.unit(1, "km")
  55201. },
  55202. {
  55203. name: "Planetary",
  55204. height: math.unit(300000, "km")
  55205. },
  55206. {
  55207. name: "Universal",
  55208. height: math.unit(250, "lightyears")
  55209. },
  55210. {
  55211. name: "Fabric of Reality",
  55212. height: math.unit(1000, "multiverses")
  55213. },
  55214. ]
  55215. ))
  55216. characterMakers.push(() => makeCharacter(
  55217. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55218. {
  55219. frontDressed: {
  55220. height: math.unit(6 + 2/12, "feet"),
  55221. name: "Front (Dressed)",
  55222. image: {
  55223. source: "./media/characters/fiera/front-dressed.svg",
  55224. extra: 1883/1793,
  55225. bottom: 70/1953
  55226. }
  55227. },
  55228. backDressed: {
  55229. height: math.unit(6 + 2/12, "feet"),
  55230. name: "Back (Dressed)",
  55231. image: {
  55232. source: "./media/characters/fiera/back-dressed.svg",
  55233. extra: 1847/1780,
  55234. bottom: 70/1917
  55235. }
  55236. },
  55237. frontNude: {
  55238. height: math.unit(6 + 2/12, "feet"),
  55239. name: "Front (Nude)",
  55240. image: {
  55241. source: "./media/characters/fiera/front-nude.svg",
  55242. extra: 1875/1785,
  55243. bottom: 66/1941
  55244. }
  55245. },
  55246. backNude: {
  55247. height: math.unit(6 + 2/12, "feet"),
  55248. name: "Back (Nude)",
  55249. image: {
  55250. source: "./media/characters/fiera/back-nude.svg",
  55251. extra: 1855/1788,
  55252. bottom: 44/1899
  55253. }
  55254. },
  55255. maw: {
  55256. height: math.unit(1.3, "feet"),
  55257. name: "Maw",
  55258. image: {
  55259. source: "./media/characters/fiera/maw.svg"
  55260. }
  55261. },
  55262. paw: {
  55263. height: math.unit(1, "feet"),
  55264. name: "Paw",
  55265. image: {
  55266. source: "./media/characters/fiera/paw.svg"
  55267. }
  55268. },
  55269. shoe: {
  55270. height: math.unit(1.05, "feet"),
  55271. name: "Shoe",
  55272. image: {
  55273. source: "./media/characters/fiera/shoe.svg"
  55274. }
  55275. },
  55276. },
  55277. [
  55278. {
  55279. name: "Normal",
  55280. height: math.unit(6 + 2/12, "feet"),
  55281. default: true
  55282. },
  55283. {
  55284. name: "Size Difference",
  55285. height: math.unit(13, "feet")
  55286. },
  55287. {
  55288. name: "Macro",
  55289. height: math.unit(60, "feet")
  55290. },
  55291. {
  55292. name: "Mega Macro",
  55293. height: math.unit(200, "feet")
  55294. },
  55295. ]
  55296. ))
  55297. characterMakers.push(() => makeCharacter(
  55298. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55299. {
  55300. back: {
  55301. height: math.unit(6, "feet"),
  55302. name: "Back",
  55303. image: {
  55304. source: "./media/characters/flare/back.svg",
  55305. extra: 1883/1765,
  55306. bottom: 32/1915
  55307. }
  55308. },
  55309. },
  55310. [
  55311. {
  55312. name: "Normal",
  55313. height: math.unit(6 + 2/12, "feet"),
  55314. default: true
  55315. },
  55316. {
  55317. name: "Size Difference",
  55318. height: math.unit(13, "feet")
  55319. },
  55320. {
  55321. name: "Macro",
  55322. height: math.unit(60, "feet")
  55323. },
  55324. {
  55325. name: "Macro 2",
  55326. height: math.unit(100, "feet")
  55327. },
  55328. {
  55329. name: "Mega Macro",
  55330. height: math.unit(200, "feet")
  55331. },
  55332. ]
  55333. ))
  55334. characterMakers.push(() => makeCharacter(
  55335. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55336. {
  55337. front: {
  55338. height: math.unit(2.2, "m"),
  55339. weight: math.unit(300, "kg"),
  55340. name: "Front",
  55341. image: {
  55342. source: "./media/characters/hanna/front.svg",
  55343. extra: 1696/1502,
  55344. bottom: 206/1902
  55345. }
  55346. },
  55347. },
  55348. [
  55349. {
  55350. name: "Humanoid",
  55351. height: math.unit(2.2, "meters")
  55352. },
  55353. {
  55354. name: "Normal",
  55355. height: math.unit(4.8, "meters"),
  55356. default: true
  55357. },
  55358. ]
  55359. ))
  55360. characterMakers.push(() => makeCharacter(
  55361. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55362. {
  55363. front: {
  55364. height: math.unit(2.8, "meters"),
  55365. name: "Front",
  55366. image: {
  55367. source: "./media/characters/argo/front.svg",
  55368. extra: 731/518,
  55369. bottom: 84/815
  55370. }
  55371. },
  55372. },
  55373. [
  55374. {
  55375. name: "Normal",
  55376. height: math.unit(3, "meters"),
  55377. default: true
  55378. },
  55379. ]
  55380. ))
  55381. characterMakers.push(() => makeCharacter(
  55382. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55383. {
  55384. side: {
  55385. height: math.unit(3.8, "meters"),
  55386. name: "Side",
  55387. image: {
  55388. source: "./media/characters/sybil/side.svg",
  55389. extra: 382/361,
  55390. bottom: 25/407
  55391. }
  55392. },
  55393. },
  55394. [
  55395. {
  55396. name: "Normal",
  55397. height: math.unit(3.8, "meters"),
  55398. default: true
  55399. },
  55400. ]
  55401. ))
  55402. characterMakers.push(() => makeCharacter(
  55403. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55404. {
  55405. side: {
  55406. height: math.unit(6, "meters"),
  55407. name: "Side",
  55408. image: {
  55409. source: "./media/characters/plum/side.svg",
  55410. extra: 858/755,
  55411. bottom: 45/903
  55412. },
  55413. form: "taur",
  55414. default: true
  55415. },
  55416. back: {
  55417. height: math.unit(6.3, "meters"),
  55418. name: "Back",
  55419. image: {
  55420. source: "./media/characters/plum/back.svg",
  55421. extra: 887/813,
  55422. bottom: 32/919
  55423. },
  55424. form: "taur",
  55425. },
  55426. feral: {
  55427. height: math.unit(5.5, "meter"),
  55428. name: "Front",
  55429. image: {
  55430. source: "./media/characters/plum/feral.svg",
  55431. extra: 568/403,
  55432. bottom: 51/619
  55433. },
  55434. form: "feral",
  55435. default: true
  55436. },
  55437. head: {
  55438. height: math.unit(1.46, "meter"),
  55439. name: "Head",
  55440. image: {
  55441. source: "./media/characters/plum/head.svg"
  55442. },
  55443. form: "taur"
  55444. },
  55445. tailTop: {
  55446. height: math.unit(5.6, "meter"),
  55447. name: "Tail (Top)",
  55448. image: {
  55449. source: "./media/characters/plum/tail-top.svg"
  55450. },
  55451. form: "taur",
  55452. },
  55453. tailBottom: {
  55454. height: math.unit(5.6, "meter"),
  55455. name: "Tail (Bottom)",
  55456. image: {
  55457. source: "./media/characters/plum/tail-bottom.svg"
  55458. },
  55459. form: "taur",
  55460. },
  55461. feralHead: {
  55462. height: math.unit(2.56549521, "meter"),
  55463. name: "Head",
  55464. image: {
  55465. source: "./media/characters/plum/head.svg"
  55466. },
  55467. form: "feral"
  55468. },
  55469. feralTailTop: {
  55470. height: math.unit(5.44728435, "meter"),
  55471. name: "Tail (Top)",
  55472. image: {
  55473. source: "./media/characters/plum/tail-top.svg"
  55474. },
  55475. form: "feral",
  55476. },
  55477. feralTailBottom: {
  55478. height: math.unit(5.44728435, "meter"),
  55479. name: "Tail (Bottom)",
  55480. image: {
  55481. source: "./media/characters/plum/tail-bottom.svg"
  55482. },
  55483. form: "feral",
  55484. },
  55485. },
  55486. [
  55487. {
  55488. name: "Normal",
  55489. height: math.unit(6, "meters"),
  55490. default: true,
  55491. form: "taur"
  55492. },
  55493. {
  55494. name: "Normal",
  55495. height: math.unit(5.5, "meters"),
  55496. default: true,
  55497. form: "feral"
  55498. },
  55499. ],
  55500. {
  55501. "taur": {
  55502. name: "Taur",
  55503. default: true
  55504. },
  55505. "feral": {
  55506. name: "Feral",
  55507. },
  55508. }
  55509. ))
  55510. characterMakers.push(() => makeCharacter(
  55511. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55512. {
  55513. front: {
  55514. height: math.unit(6, "feet"),
  55515. weight: math.unit(115, "lb"),
  55516. name: "Front",
  55517. image: {
  55518. source: "./media/characters/celeste-kitsune/front.svg",
  55519. extra: 393/366,
  55520. bottom: 7/400
  55521. }
  55522. },
  55523. side: {
  55524. height: math.unit(6, "feet"),
  55525. weight: math.unit(115, "lb"),
  55526. name: "Side",
  55527. image: {
  55528. source: "./media/characters/celeste-kitsune/side.svg",
  55529. extra: 818/765,
  55530. bottom: 40/858
  55531. }
  55532. },
  55533. },
  55534. [
  55535. {
  55536. name: "Megamacro",
  55537. height: math.unit(1500, "miles"),
  55538. default: true
  55539. },
  55540. ]
  55541. ))
  55542. characterMakers.push(() => makeCharacter(
  55543. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55544. {
  55545. front: {
  55546. height: math.unit(8, "meters"),
  55547. name: "Front",
  55548. image: {
  55549. source: "./media/characters/io/front.svg",
  55550. extra: 865/722,
  55551. bottom: 58/923
  55552. }
  55553. },
  55554. back: {
  55555. height: math.unit(8, "meters"),
  55556. name: "Back",
  55557. image: {
  55558. source: "./media/characters/io/back.svg",
  55559. extra: 920/776,
  55560. bottom: 42/962
  55561. }
  55562. },
  55563. head: {
  55564. height: math.unit(5.09, "meters"),
  55565. name: "Head",
  55566. image: {
  55567. source: "./media/characters/io/head.svg"
  55568. }
  55569. },
  55570. hand: {
  55571. height: math.unit(1.6, "meters"),
  55572. name: "Hand",
  55573. image: {
  55574. source: "./media/characters/io/hand.svg"
  55575. }
  55576. },
  55577. foot: {
  55578. height: math.unit(2.4, "meters"),
  55579. name: "Foot",
  55580. image: {
  55581. source: "./media/characters/io/foot.svg"
  55582. }
  55583. },
  55584. },
  55585. [
  55586. {
  55587. name: "Normal",
  55588. height: math.unit(8, "meters"),
  55589. default: true
  55590. },
  55591. ]
  55592. ))
  55593. characterMakers.push(() => makeCharacter(
  55594. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55595. {
  55596. side: {
  55597. height: math.unit(6 + 3/12, "feet"),
  55598. weight: math.unit(225, "lb"),
  55599. name: "Side",
  55600. image: {
  55601. source: "./media/characters/silas/side.svg",
  55602. extra: 703/653,
  55603. bottom: 23/726
  55604. },
  55605. extraAttributes: {
  55606. "pawLength": {
  55607. name: "Paw Length",
  55608. power: 1,
  55609. type: "length",
  55610. base: math.unit(12, "inches")
  55611. },
  55612. "pawWidth": {
  55613. name: "Paw Width",
  55614. power: 1,
  55615. type: "length",
  55616. base: math.unit(4.5, "inches")
  55617. },
  55618. "pawArea": {
  55619. name: "Paw Area",
  55620. power: 2,
  55621. type: "area",
  55622. base: math.unit(12 * 4.5, "inches^2")
  55623. },
  55624. }
  55625. },
  55626. },
  55627. [
  55628. {
  55629. name: "Normal",
  55630. height: math.unit(6 + 3/12, "feet"),
  55631. default: true
  55632. },
  55633. ]
  55634. ))
  55635. characterMakers.push(() => makeCharacter(
  55636. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55637. {
  55638. back: {
  55639. height: math.unit(1.6, "meters"),
  55640. weight: math.unit(150, "lb"),
  55641. name: "Back",
  55642. image: {
  55643. source: "./media/characters/zari/back.svg",
  55644. extra: 424/411,
  55645. bottom: 32/456
  55646. },
  55647. extraAttributes: {
  55648. "bladderCapacity": {
  55649. name: "Bladder Size",
  55650. power: 3,
  55651. type: "volume",
  55652. base: math.unit(500, "mL")
  55653. },
  55654. "bladderFlow": {
  55655. name: "Flow Rate",
  55656. power: 3,
  55657. type: "volume",
  55658. base: math.unit(25, "mL")
  55659. },
  55660. }
  55661. },
  55662. },
  55663. [
  55664. {
  55665. name: "Normal",
  55666. height: math.unit(1.6, "meters"),
  55667. default: true
  55668. },
  55669. ]
  55670. ))
  55671. characterMakers.push(() => makeCharacter(
  55672. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55673. {
  55674. front: {
  55675. height: math.unit(25, "feet"),
  55676. weight: math.unit(5, "tons"),
  55677. name: "Front",
  55678. image: {
  55679. source: "./media/characters/charlie-human/front.svg",
  55680. extra: 1870/1740,
  55681. bottom: 102/1972
  55682. },
  55683. extraAttributes: {
  55684. "dickLength": {
  55685. name: "Dick Length",
  55686. power: 1,
  55687. type: "length",
  55688. base: math.unit(9, "feet")
  55689. },
  55690. }
  55691. },
  55692. back: {
  55693. height: math.unit(25, "feet"),
  55694. weight: math.unit(5, "tons"),
  55695. name: "Back",
  55696. image: {
  55697. source: "./media/characters/charlie-human/back.svg",
  55698. extra: 1858/1733,
  55699. bottom: 105/1963
  55700. },
  55701. extraAttributes: {
  55702. "dickLength": {
  55703. name: "Dick Length",
  55704. power: 1,
  55705. type: "length",
  55706. base: math.unit(9, "feet")
  55707. },
  55708. }
  55709. },
  55710. },
  55711. [
  55712. {
  55713. name: "\"Normal\"",
  55714. height: math.unit(6 + 4/12, "feet")
  55715. },
  55716. {
  55717. name: "Big",
  55718. height: math.unit(25, "feet"),
  55719. default: true
  55720. },
  55721. ]
  55722. ))
  55723. characterMakers.push(() => makeCharacter(
  55724. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55725. {
  55726. front: {
  55727. height: math.unit(6 + 4/12, "feet"),
  55728. weight: math.unit(320, "lb"),
  55729. name: "Front",
  55730. image: {
  55731. source: "./media/characters/ookitsu/front.svg",
  55732. extra: 1160/976,
  55733. bottom: 38/1198
  55734. }
  55735. },
  55736. frontNsfw: {
  55737. height: math.unit(6 + 4/12, "feet"),
  55738. weight: math.unit(320, "lb"),
  55739. name: "Front (NSFW)",
  55740. image: {
  55741. source: "./media/characters/ookitsu/front-nsfw.svg",
  55742. extra: 1160/976,
  55743. bottom: 38/1198
  55744. }
  55745. },
  55746. back: {
  55747. height: math.unit(6 + 4/12, "feet"),
  55748. weight: math.unit(320, "lb"),
  55749. name: "Back",
  55750. image: {
  55751. source: "./media/characters/ookitsu/back.svg",
  55752. extra: 1030/975,
  55753. bottom: 70/1100
  55754. }
  55755. },
  55756. head: {
  55757. height: math.unit(1.79, "feet"),
  55758. name: "Head",
  55759. image: {
  55760. source: "./media/characters/ookitsu/head.svg"
  55761. }
  55762. },
  55763. hand: {
  55764. height: math.unit(0.92, "feet"),
  55765. name: "Hand",
  55766. image: {
  55767. source: "./media/characters/ookitsu/hand.svg"
  55768. }
  55769. },
  55770. tails: {
  55771. height: math.unit(3.3, "feet"),
  55772. name: "Tails",
  55773. image: {
  55774. source: "./media/characters/ookitsu/tails.svg"
  55775. }
  55776. },
  55777. dick: {
  55778. height: math.unit(1.10833, "feet"),
  55779. name: "Dick",
  55780. image: {
  55781. source: "./media/characters/ookitsu/dick.svg"
  55782. }
  55783. },
  55784. },
  55785. [
  55786. {
  55787. name: "Normal",
  55788. height: math.unit(6 + 4/12, "feet"),
  55789. default: true
  55790. },
  55791. {
  55792. name: "Macro",
  55793. height: math.unit(30, "feet")
  55794. },
  55795. ]
  55796. ))
  55797. characterMakers.push(() => makeCharacter(
  55798. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55799. {
  55800. anthroFront: {
  55801. height: math.unit(6, "feet"),
  55802. weight: math.unit(250, "lb"),
  55803. name: "Front",
  55804. image: {
  55805. source: "./media/characters/jhusky/anthro-front.svg",
  55806. extra: 474/439,
  55807. bottom: 7/481
  55808. },
  55809. form: "anthro",
  55810. default: true
  55811. },
  55812. taurSideSfw: {
  55813. height: math.unit(6 + 4/12, "feet"),
  55814. weight: math.unit(500, "lb"),
  55815. name: "Side (SFW)",
  55816. image: {
  55817. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55818. extra: 1741/1629,
  55819. bottom: 196/1937
  55820. },
  55821. form: "taur",
  55822. default: true
  55823. },
  55824. taurSideNsfw: {
  55825. height: math.unit(6 + 4/12, "feet"),
  55826. weight: math.unit(500, "lb"),
  55827. name: "Taur (NSFW)",
  55828. image: {
  55829. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55830. extra: 1741/1629,
  55831. bottom: 196/1937
  55832. },
  55833. form: "taur",
  55834. },
  55835. },
  55836. [
  55837. {
  55838. name: "Huge",
  55839. height: math.unit(500, "feet"),
  55840. form: "anthro"
  55841. },
  55842. {
  55843. name: "Macro",
  55844. height: math.unit(1000, "feet"),
  55845. default: true,
  55846. form: "anthro"
  55847. },
  55848. {
  55849. name: "Megamacro",
  55850. height: math.unit(10000, "feet"),
  55851. form: "anthro"
  55852. },
  55853. {
  55854. name: "Huge",
  55855. height: math.unit(528, "feet"),
  55856. form: "taur"
  55857. },
  55858. {
  55859. name: "Macro",
  55860. height: math.unit(1056, "feet"),
  55861. default: true,
  55862. form: "taur"
  55863. },
  55864. {
  55865. name: "Megamacro",
  55866. height: math.unit(10556, "feet"),
  55867. form: "taur"
  55868. },
  55869. ],
  55870. {
  55871. "anthro": {
  55872. name: "Anthro",
  55873. default: true
  55874. },
  55875. "taur": {
  55876. name: "Taur",
  55877. },
  55878. }
  55879. ))
  55880. characterMakers.push(() => makeCharacter(
  55881. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55882. {
  55883. front: {
  55884. height: math.unit(8, "feet"),
  55885. weight: math.unit(500, "lb"),
  55886. name: "Front",
  55887. image: {
  55888. source: "./media/characters/armail/front.svg",
  55889. extra: 1753/1669,
  55890. bottom: 155/1908
  55891. }
  55892. },
  55893. back: {
  55894. height: math.unit(8, "feet"),
  55895. weight: math.unit(500, "lb"),
  55896. name: "Back",
  55897. image: {
  55898. source: "./media/characters/armail/back.svg",
  55899. extra: 1872/1803,
  55900. bottom: 63/1935
  55901. }
  55902. },
  55903. },
  55904. [
  55905. {
  55906. name: "Micro",
  55907. height: math.unit(0.25, "feet")
  55908. },
  55909. {
  55910. name: "Normal",
  55911. height: math.unit(8, "feet"),
  55912. default: true
  55913. },
  55914. {
  55915. name: "Mini-macro",
  55916. height: math.unit(30, "feet")
  55917. },
  55918. {
  55919. name: "Macro",
  55920. height: math.unit(400, "feet")
  55921. },
  55922. {
  55923. name: "Mega-macro",
  55924. height: math.unit(6000, "feet")
  55925. },
  55926. ]
  55927. ))
  55928. characterMakers.push(() => makeCharacter(
  55929. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55930. {
  55931. front: {
  55932. height: math.unit(6 + 7/12, "feet"),
  55933. weight: math.unit(210, "lb"),
  55934. name: "Front",
  55935. image: {
  55936. source: "./media/characters/wilfred-t-buxton/front.svg",
  55937. extra: 1068/882,
  55938. bottom: 28/1096
  55939. }
  55940. },
  55941. },
  55942. [
  55943. {
  55944. name: "Normal",
  55945. height: math.unit(6 + 7/12, "feet"),
  55946. default: true
  55947. },
  55948. ]
  55949. ))
  55950. characterMakers.push(() => makeCharacter(
  55951. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55952. {
  55953. front: {
  55954. height: math.unit(5 + 2/12, "feet"),
  55955. weight: math.unit(120, "lb"),
  55956. name: "Front",
  55957. image: {
  55958. source: "./media/characters/leighton-marrow/front.svg",
  55959. extra: 441/409,
  55960. bottom: 37/478
  55961. }
  55962. },
  55963. },
  55964. [
  55965. {
  55966. name: "Normal",
  55967. height: math.unit(5 + 2/12, "feet"),
  55968. default: true
  55969. },
  55970. ]
  55971. ))
  55972. characterMakers.push(() => makeCharacter(
  55973. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55974. {
  55975. front: {
  55976. height: math.unit(4, "meters"),
  55977. weight: math.unit(1200, "kg"),
  55978. name: "Front",
  55979. image: {
  55980. source: "./media/characters/licos/front.svg",
  55981. extra: 1727/1604,
  55982. bottom: 101/1828
  55983. },
  55984. form: "anthro",
  55985. default: true
  55986. },
  55987. taur_side: {
  55988. height: math.unit(20, "meters"),
  55989. weight: math.unit(1100000, "kg"),
  55990. name: "Side",
  55991. image: {
  55992. source: "./media/characters/licos/taur.svg",
  55993. extra: 1158/1091,
  55994. bottom: 80/1238
  55995. },
  55996. form: "taur",
  55997. default: true
  55998. },
  55999. },
  56000. [
  56001. {
  56002. name: "Normal",
  56003. height: math.unit(4, "meters"),
  56004. default: true,
  56005. form: "anthro"
  56006. },
  56007. {
  56008. name: "Normal",
  56009. height: math.unit(20, "meters"),
  56010. default: true,
  56011. form: "taur"
  56012. },
  56013. ],
  56014. {
  56015. "anthro": {
  56016. name: "Anthro",
  56017. default: true
  56018. },
  56019. "taur": {
  56020. name: "Taur",
  56021. },
  56022. }
  56023. ))
  56024. characterMakers.push(() => makeCharacter(
  56025. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56026. {
  56027. front: {
  56028. height: math.unit(10 + 3/12, "feet"),
  56029. name: "Front",
  56030. image: {
  56031. source: "./media/characters/theo-monkey/front.svg",
  56032. extra: 1735/1658,
  56033. bottom: 73/1808
  56034. }
  56035. },
  56036. back: {
  56037. height: math.unit(10 + 3/12, "feet"),
  56038. name: "Back",
  56039. image: {
  56040. source: "./media/characters/theo-monkey/back.svg",
  56041. extra: 1742/1664,
  56042. bottom: 33/1775
  56043. }
  56044. },
  56045. head: {
  56046. height: math.unit(2.29, "feet"),
  56047. name: "Head",
  56048. image: {
  56049. source: "./media/characters/theo-monkey/head.svg"
  56050. }
  56051. },
  56052. handPalm: {
  56053. height: math.unit(1.73, "feet"),
  56054. name: "Hand (Palm)",
  56055. image: {
  56056. source: "./media/characters/theo-monkey/hand-palm.svg"
  56057. }
  56058. },
  56059. handBack: {
  56060. height: math.unit(1.63, "feet"),
  56061. name: "Hand (Back)",
  56062. image: {
  56063. source: "./media/characters/theo-monkey/hand-back.svg"
  56064. }
  56065. },
  56066. footSole: {
  56067. height: math.unit(2.15, "feet"),
  56068. name: "Foot (Sole)",
  56069. image: {
  56070. source: "./media/characters/theo-monkey/foot-sole.svg"
  56071. }
  56072. },
  56073. footSide: {
  56074. height: math.unit(1.6, "feet"),
  56075. name: "Foot (Side)",
  56076. image: {
  56077. source: "./media/characters/theo-monkey/foot-side.svg"
  56078. }
  56079. },
  56080. },
  56081. [
  56082. {
  56083. name: "Normal",
  56084. height: math.unit(10 + 3/12, "feet"),
  56085. default: true
  56086. },
  56087. ]
  56088. ))
  56089. characterMakers.push(() => makeCharacter(
  56090. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56091. {
  56092. front: {
  56093. height: math.unit(11, "feet"),
  56094. weight: math.unit(3000, "lb"),
  56095. preyCapacity: math.unit(10, "people"),
  56096. name: "Front",
  56097. image: {
  56098. source: "./media/characters/brook/front.svg",
  56099. extra: 909/835,
  56100. bottom: 108/1017
  56101. }
  56102. },
  56103. back: {
  56104. height: math.unit(11, "feet"),
  56105. weight: math.unit(3000, "lb"),
  56106. preyCapacity: math.unit(10, "people"),
  56107. name: "Back",
  56108. image: {
  56109. source: "./media/characters/brook/back.svg",
  56110. extra: 976/916,
  56111. bottom: 34/1010
  56112. }
  56113. },
  56114. backAlt: {
  56115. height: math.unit(11, "feet"),
  56116. weight: math.unit(3000, "lb"),
  56117. preyCapacity: math.unit(10, "people"),
  56118. name: "Back (Alt)",
  56119. image: {
  56120. source: "./media/characters/brook/back-alt.svg",
  56121. extra: 1283/1213,
  56122. bottom: 35/1318
  56123. }
  56124. },
  56125. bust: {
  56126. height: math.unit(9.0859030837, "feet"),
  56127. weight: math.unit(3000, "lb"),
  56128. preyCapacity: math.unit(10, "people"),
  56129. name: "Bust",
  56130. image: {
  56131. source: "./media/characters/brook/bust.svg",
  56132. extra: 2043/1923,
  56133. bottom: 0/2043
  56134. }
  56135. },
  56136. },
  56137. [
  56138. {
  56139. name: "Small",
  56140. height: math.unit(11, "feet"),
  56141. default: true
  56142. },
  56143. {
  56144. name: "Towering",
  56145. height: math.unit(5, "km")
  56146. },
  56147. {
  56148. name: "Enormous",
  56149. height: math.unit(25, "earths")
  56150. },
  56151. ]
  56152. ))
  56153. characterMakers.push(() => makeCharacter(
  56154. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56155. {
  56156. front: {
  56157. height: math.unit(4, "feet"),
  56158. weight: math.unit(150, "lb"),
  56159. name: "Front",
  56160. image: {
  56161. source: "./media/characters/squishi/front.svg",
  56162. extra: 1428/1271,
  56163. bottom: 30/1458
  56164. },
  56165. extraAttributes: {
  56166. "pawSize": {
  56167. name: "Paw Size",
  56168. power: 1,
  56169. type: "length",
  56170. base: math.unit(14, "ShoeSizeMensUS"),
  56171. defaultUnit: "ShoeSizeMensUS"
  56172. },
  56173. }
  56174. },
  56175. side: {
  56176. height: math.unit(4, "feet"),
  56177. weight: math.unit(150, "lb"),
  56178. name: "Side",
  56179. image: {
  56180. source: "./media/characters/squishi/side.svg",
  56181. extra: 1428/1271,
  56182. bottom: 30/1458
  56183. },
  56184. extraAttributes: {
  56185. "pawSize": {
  56186. name: "Paw Size",
  56187. power: 1,
  56188. type: "length",
  56189. base: math.unit(14, "ShoeSizeMensUS"),
  56190. defaultUnit: "ShoeSizeMensUS"
  56191. },
  56192. }
  56193. },
  56194. back: {
  56195. height: math.unit(4, "feet"),
  56196. weight: math.unit(150, "lb"),
  56197. name: "Back",
  56198. image: {
  56199. source: "./media/characters/squishi/back.svg",
  56200. extra: 1428/1271,
  56201. bottom: 30/1458
  56202. },
  56203. extraAttributes: {
  56204. "pawSize": {
  56205. name: "Paw Size",
  56206. power: 1,
  56207. type: "length",
  56208. base: math.unit(14, "ShoeSizeMensUS"),
  56209. defaultUnit: "ShoeSizeMensUS"
  56210. },
  56211. }
  56212. },
  56213. },
  56214. [
  56215. {
  56216. name: "Normal",
  56217. height: math.unit(4, "feet"),
  56218. default: true
  56219. },
  56220. ]
  56221. ))
  56222. characterMakers.push(() => makeCharacter(
  56223. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56224. {
  56225. front: {
  56226. height: math.unit(7 + 8/12, "feet"),
  56227. weight: math.unit(333, "lb"),
  56228. name: "Front",
  56229. image: {
  56230. source: "./media/characters/vincent-vasroc/front.svg",
  56231. extra: 1962/1860,
  56232. bottom: 41/2003
  56233. }
  56234. },
  56235. back: {
  56236. height: math.unit(7 + 8/12, "feet"),
  56237. weight: math.unit(333, "lb"),
  56238. name: "Back",
  56239. image: {
  56240. source: "./media/characters/vincent-vasroc/back.svg",
  56241. extra: 1952/1815,
  56242. bottom: 33/1985
  56243. }
  56244. },
  56245. paw: {
  56246. height: math.unit(1.24, "feet"),
  56247. name: "Paw",
  56248. image: {
  56249. source: "./media/characters/vincent-vasroc/paw.svg"
  56250. }
  56251. },
  56252. ear: {
  56253. height: math.unit(0.75, "feet"),
  56254. name: "Ear",
  56255. image: {
  56256. source: "./media/characters/vincent-vasroc/ear.svg"
  56257. }
  56258. },
  56259. },
  56260. [
  56261. {
  56262. name: "Nano",
  56263. height: math.unit(92, "micrometers")
  56264. },
  56265. {
  56266. name: "Normal",
  56267. height: math.unit(7 + 8/12, "feet"),
  56268. default: true
  56269. },
  56270. ]
  56271. ))
  56272. characterMakers.push(() => makeCharacter(
  56273. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56274. {
  56275. frontNsfw: {
  56276. height: math.unit(40, "feet"),
  56277. weight: math.unit(58, "tons"),
  56278. name: "Front (NSFW)",
  56279. image: {
  56280. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56281. extra: 1265/965,
  56282. bottom: 155/1420
  56283. }
  56284. },
  56285. frontSfw: {
  56286. height: math.unit(40, "feet"),
  56287. weight: math.unit(58, "tons"),
  56288. name: "Front (SFW)",
  56289. image: {
  56290. source: "./media/characters/ru-kahn/front-sfw.svg",
  56291. extra: 1265/965,
  56292. bottom: 80/1345
  56293. }
  56294. },
  56295. },
  56296. [
  56297. {
  56298. name: "Small",
  56299. height: math.unit(4, "feet")
  56300. },
  56301. {
  56302. name: "Normal",
  56303. height: math.unit(40, "feet"),
  56304. default: true
  56305. },
  56306. {
  56307. name: "Macro",
  56308. height: math.unit(400, "feet")
  56309. },
  56310. ]
  56311. ))
  56312. characterMakers.push(() => makeCharacter(
  56313. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56314. {
  56315. frontNude: {
  56316. height: math.unit(6 + 5/12, "feet"),
  56317. name: "Front (Nude)",
  56318. image: {
  56319. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56320. extra: 1369/1366,
  56321. bottom: 68/1437
  56322. }
  56323. },
  56324. frontDressed: {
  56325. height: math.unit(6 + 5/12, "feet"),
  56326. name: "Front (Dressed)",
  56327. image: {
  56328. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56329. extra: 1369/1366,
  56330. bottom: 68/1437
  56331. }
  56332. },
  56333. },
  56334. [
  56335. {
  56336. name: "Normal",
  56337. height: math.unit(6 + 5/12, "feet"),
  56338. default: true
  56339. },
  56340. {
  56341. name: "Maximum",
  56342. height: math.unit(1930, "feet")
  56343. },
  56344. ]
  56345. ))
  56346. characterMakers.push(() => makeCharacter(
  56347. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56348. {
  56349. front: {
  56350. height: math.unit(5 + 6/12, "feet"),
  56351. name: "Front",
  56352. image: {
  56353. source: "./media/characters/kaja/front.svg",
  56354. extra: 1874/1514,
  56355. bottom: 117/1991
  56356. }
  56357. },
  56358. },
  56359. [
  56360. {
  56361. name: "Normal",
  56362. height: math.unit(5 + 6/12, "feet"),
  56363. default: true
  56364. },
  56365. ]
  56366. ))
  56367. characterMakers.push(() => makeCharacter(
  56368. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56369. {
  56370. front: {
  56371. height: math.unit(5 + 9/12, "feet"),
  56372. weight: math.unit(200, "lb"),
  56373. name: "Front",
  56374. image: {
  56375. source: "./media/characters/mark-smith/front.svg",
  56376. extra: 1004/943,
  56377. bottom: 58/1062
  56378. }
  56379. },
  56380. back: {
  56381. height: math.unit(5 + 9/12, "feet"),
  56382. weight: math.unit(200, "lb"),
  56383. name: "Back",
  56384. image: {
  56385. source: "./media/characters/mark-smith/back.svg",
  56386. extra: 1023/953,
  56387. bottom: 24/1047
  56388. }
  56389. },
  56390. head: {
  56391. height: math.unit(1.82, "feet"),
  56392. name: "Head",
  56393. image: {
  56394. source: "./media/characters/mark-smith/head.svg"
  56395. }
  56396. },
  56397. hand: {
  56398. height: math.unit(1.4, "feet"),
  56399. name: "Hand",
  56400. image: {
  56401. source: "./media/characters/mark-smith/hand.svg"
  56402. }
  56403. },
  56404. paw: {
  56405. height: math.unit(1.69, "feet"),
  56406. name: "Paw",
  56407. image: {
  56408. source: "./media/characters/mark-smith/paw.svg"
  56409. }
  56410. },
  56411. },
  56412. [
  56413. {
  56414. name: "Micro",
  56415. height: math.unit(0.25, "inches")
  56416. },
  56417. {
  56418. name: "Normal",
  56419. height: math.unit(5 + 9/12, "feet"),
  56420. default: true
  56421. },
  56422. {
  56423. name: "Macro",
  56424. height: math.unit(500, "feet")
  56425. },
  56426. ]
  56427. ))
  56428. characterMakers.push(() => makeCharacter(
  56429. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56430. {
  56431. frontNude: {
  56432. height: math.unit(6, "feet"),
  56433. name: "Front (Nude)",
  56434. image: {
  56435. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56436. extra: 1384/1321,
  56437. bottom: 57/1441
  56438. }
  56439. },
  56440. frontDressed: {
  56441. height: math.unit(6, "feet"),
  56442. name: "Front (Dressed)",
  56443. image: {
  56444. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56445. extra: 1384/1321,
  56446. bottom: 57/1441
  56447. }
  56448. },
  56449. },
  56450. [
  56451. {
  56452. name: "Normal",
  56453. height: math.unit(6, "feet"),
  56454. default: true
  56455. },
  56456. {
  56457. name: "Maximum",
  56458. height: math.unit(1776, "feet")
  56459. },
  56460. ]
  56461. ))
  56462. characterMakers.push(() => makeCharacter(
  56463. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56464. {
  56465. front: {
  56466. height: math.unit(2 + 4/12, "feet"),
  56467. weight: math.unit(350, "lb"),
  56468. name: "Front",
  56469. image: {
  56470. source: "./media/characters/devos/front.svg",
  56471. extra: 958/852,
  56472. bottom: 143/1101
  56473. }
  56474. },
  56475. },
  56476. [
  56477. {
  56478. name: "Base",
  56479. height: math.unit(2 + 4/12, "feet"),
  56480. default: true
  56481. },
  56482. ]
  56483. ))
  56484. characterMakers.push(() => makeCharacter(
  56485. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56486. {
  56487. front: {
  56488. height: math.unit(9 + 2/12, "feet"),
  56489. name: "Front",
  56490. image: {
  56491. source: "./media/characters/hiveheart/front.svg",
  56492. extra: 394/364,
  56493. bottom: 65/459
  56494. }
  56495. },
  56496. back: {
  56497. height: math.unit(9 + 2/12, "feet"),
  56498. name: "Back",
  56499. image: {
  56500. source: "./media/characters/hiveheart/back.svg",
  56501. extra: 374/357,
  56502. bottom: 63/437
  56503. }
  56504. },
  56505. },
  56506. [
  56507. {
  56508. name: "Base",
  56509. height: math.unit(9 + 2/12, "feet"),
  56510. default: true
  56511. },
  56512. ]
  56513. ))
  56514. characterMakers.push(() => makeCharacter(
  56515. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56516. {
  56517. front: {
  56518. height: math.unit(2.5, "inches"),
  56519. weight: math.unit(0.6, "oz"),
  56520. name: "Front",
  56521. image: {
  56522. source: "./media/characters/bryn/front.svg",
  56523. extra: 1480/1205,
  56524. bottom: 27/1507
  56525. }
  56526. },
  56527. back: {
  56528. height: math.unit(2.5, "inches"),
  56529. weight: math.unit(0.6, "oz"),
  56530. name: "Back",
  56531. image: {
  56532. source: "./media/characters/bryn/back.svg",
  56533. extra: 1475/1201,
  56534. bottom: 39/1514
  56535. }
  56536. },
  56537. foot: {
  56538. height: math.unit(0.4, "inches"),
  56539. name: "Foot",
  56540. image: {
  56541. source: "./media/characters/bryn/foot.svg"
  56542. }
  56543. },
  56544. },
  56545. [
  56546. {
  56547. name: "Normal",
  56548. height: math.unit(2.5, "inches"),
  56549. default: true
  56550. },
  56551. ]
  56552. ))
  56553. characterMakers.push(() => makeCharacter(
  56554. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56555. {
  56556. side: {
  56557. height: math.unit(7, "feet"),
  56558. weight: math.unit(657, "kg"),
  56559. name: "Side",
  56560. image: {
  56561. source: "./media/characters/delta/side.svg",
  56562. extra: 781/212,
  56563. bottom: 7/788
  56564. },
  56565. extraAttributes: {
  56566. "wingspan": {
  56567. name: "Wingspan",
  56568. power: 1,
  56569. type: "length",
  56570. base: math.unit(48, "feet")
  56571. },
  56572. "length": {
  56573. name: "Length",
  56574. power: 1,
  56575. type: "length",
  56576. base: math.unit(21, "feet")
  56577. },
  56578. "pawSize": {
  56579. name: "Paw Size",
  56580. power: 2,
  56581. type: "area",
  56582. base: math.unit(1.5*1.4, "feet^2")
  56583. },
  56584. }
  56585. },
  56586. },
  56587. [
  56588. {
  56589. name: "Normal",
  56590. height: math.unit(6, "feet"),
  56591. default: true
  56592. },
  56593. ]
  56594. ))
  56595. characterMakers.push(() => makeCharacter(
  56596. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56597. {
  56598. front: {
  56599. height: math.unit(6, "feet"),
  56600. name: "Front",
  56601. image: {
  56602. source: "./media/characters/pyrow/front.svg",
  56603. extra: 513/486,
  56604. bottom: 14/527
  56605. }
  56606. },
  56607. frontWing: {
  56608. height: math.unit(6, "feet"),
  56609. name: "Front (Wing)",
  56610. image: {
  56611. source: "./media/characters/pyrow/front-wing.svg",
  56612. extra: 539/383,
  56613. bottom: 20/559
  56614. }
  56615. },
  56616. back: {
  56617. height: math.unit(6, "feet"),
  56618. name: "Back",
  56619. image: {
  56620. source: "./media/characters/pyrow/back.svg",
  56621. extra: 500/473,
  56622. bottom: 9/509
  56623. }
  56624. },
  56625. },
  56626. [
  56627. {
  56628. name: "Normal",
  56629. height: math.unit(6, "feet"),
  56630. default: true
  56631. },
  56632. ]
  56633. ))
  56634. characterMakers.push(() => makeCharacter(
  56635. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56636. {
  56637. front: {
  56638. height: math.unit(5, "meters"),
  56639. weight: math.unit(3, "tonnes"),
  56640. name: "Front",
  56641. image: {
  56642. source: "./media/characters/velikan/front.svg",
  56643. extra: 867/744,
  56644. bottom: 71/938
  56645. },
  56646. extraAttributes: {
  56647. "shoeSize": {
  56648. name: "Shoe Size",
  56649. power: 1,
  56650. type: "length",
  56651. base: math.unit(135, "ShoeSizeUK"),
  56652. defaultUnit: "ShoeSizeUK"
  56653. },
  56654. }
  56655. },
  56656. },
  56657. [
  56658. {
  56659. name: "Normal",
  56660. height: math.unit(5, "meters"),
  56661. default: true
  56662. },
  56663. {
  56664. name: "Macro",
  56665. height: math.unit(1, "km")
  56666. },
  56667. {
  56668. name: "Mega Macro",
  56669. height: math.unit(100, "km")
  56670. },
  56671. {
  56672. name: "Giga Macro",
  56673. height: math.unit(2, "megameters")
  56674. },
  56675. {
  56676. name: "Planetary",
  56677. height: math.unit(22, "megameters")
  56678. },
  56679. {
  56680. name: "Solar",
  56681. height: math.unit(8, "gigameters")
  56682. },
  56683. {
  56684. name: "Cosmic",
  56685. height: math.unit(10, "zettameters")
  56686. },
  56687. {
  56688. name: "Omni",
  56689. height: math.unit(9e260, "multiverses")
  56690. },
  56691. ]
  56692. ))
  56693. characterMakers.push(() => makeCharacter(
  56694. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56695. {
  56696. front: {
  56697. height: math.unit(4 + 3/12, "feet"),
  56698. weight: math.unit(90, "lb"),
  56699. name: "Front",
  56700. image: {
  56701. source: "./media/characters/sabiki/front.svg",
  56702. extra: 1662/1423,
  56703. bottom: 65/1727
  56704. }
  56705. },
  56706. },
  56707. [
  56708. {
  56709. name: "Normal",
  56710. height: math.unit(4 + 3/12, "feet"),
  56711. default: true
  56712. },
  56713. ]
  56714. ))
  56715. characterMakers.push(() => makeCharacter(
  56716. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56717. {
  56718. frontSfw: {
  56719. height: math.unit(2, "mm"),
  56720. name: "Front (SFW)",
  56721. image: {
  56722. source: "./media/characters/carmel/front-sfw.svg",
  56723. extra: 1131/1006,
  56724. bottom: 66/1197
  56725. }
  56726. },
  56727. frontNsfw: {
  56728. height: math.unit(2, "mm"),
  56729. name: "Front (NSFW)",
  56730. image: {
  56731. source: "./media/characters/carmel/front-nsfw.svg",
  56732. extra: 1131/1006,
  56733. bottom: 66/1197
  56734. }
  56735. },
  56736. foot: {
  56737. height: math.unit(0.3, "mm"),
  56738. name: "Foot",
  56739. image: {
  56740. source: "./media/characters/carmel/foot.svg"
  56741. }
  56742. },
  56743. tongue: {
  56744. height: math.unit(0.71, "mm"),
  56745. name: "Tongue",
  56746. image: {
  56747. source: "./media/characters/carmel/tongue.svg"
  56748. }
  56749. },
  56750. dick: {
  56751. height: math.unit(0.085, "mm"),
  56752. name: "Dick",
  56753. image: {
  56754. source: "./media/characters/carmel/dick.svg"
  56755. }
  56756. },
  56757. },
  56758. [
  56759. {
  56760. name: "Micro",
  56761. height: math.unit(2, "mm"),
  56762. default: true
  56763. },
  56764. {
  56765. name: "Normal",
  56766. height: math.unit(4 + 8/12, "feet")
  56767. },
  56768. {
  56769. name: "Mega Macro",
  56770. height: math.unit(250, "feet")
  56771. },
  56772. {
  56773. name: "BIGGER",
  56774. height: math.unit(1000, "feet")
  56775. },
  56776. {
  56777. name: "BIGGEST",
  56778. height: math.unit(2, "miles")
  56779. },
  56780. ]
  56781. ))
  56782. characterMakers.push(() => makeCharacter(
  56783. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56784. {
  56785. front: {
  56786. height: math.unit(6.5, "feet"),
  56787. weight: math.unit(198, "lb"),
  56788. name: "Front",
  56789. image: {
  56790. source: "./media/characters/tamani/anthro.svg",
  56791. extra: 930/890,
  56792. bottom: 34/964
  56793. },
  56794. form: "anthro",
  56795. default: true
  56796. },
  56797. side: {
  56798. height: math.unit(6, "feet"),
  56799. weight: math.unit(198*2, "lb"),
  56800. name: "Side",
  56801. image: {
  56802. source: "./media/characters/tamani/feral.svg",
  56803. extra: 559/519,
  56804. bottom: 43/602
  56805. },
  56806. form: "feral"
  56807. },
  56808. },
  56809. [
  56810. {
  56811. name: "Normal",
  56812. height: math.unit(6.5, "feet"),
  56813. default: true,
  56814. form: "anthro"
  56815. },
  56816. {
  56817. name: "Normal",
  56818. height: math.unit(6, "feet"),
  56819. default: true,
  56820. form: "feral"
  56821. },
  56822. ],
  56823. {
  56824. "anthro": {
  56825. name: "Anthro",
  56826. default: true
  56827. },
  56828. "feral": {
  56829. name: "Feral",
  56830. },
  56831. }
  56832. ))
  56833. characterMakers.push(() => makeCharacter(
  56834. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56835. {
  56836. front: {
  56837. height: math.unit(4 + 1/12, "feet"),
  56838. weight: math.unit(114, "lb"),
  56839. name: "Front",
  56840. image: {
  56841. source: "./media/characters/dex/front.svg",
  56842. extra: 787/680,
  56843. bottom: 18/805
  56844. }
  56845. },
  56846. side: {
  56847. height: math.unit(4 + 1/12, "feet"),
  56848. weight: math.unit(114, "lb"),
  56849. name: "Side",
  56850. image: {
  56851. source: "./media/characters/dex/side.svg",
  56852. extra: 785/680,
  56853. bottom: 12/797
  56854. }
  56855. },
  56856. back: {
  56857. height: math.unit(4 + 1/12, "feet"),
  56858. weight: math.unit(114, "lb"),
  56859. name: "Back",
  56860. image: {
  56861. source: "./media/characters/dex/back.svg",
  56862. extra: 785/681,
  56863. bottom: 17/802
  56864. }
  56865. },
  56866. loungewear: {
  56867. height: math.unit(4 + 1/12, "feet"),
  56868. weight: math.unit(114, "lb"),
  56869. name: "Loungewear",
  56870. image: {
  56871. source: "./media/characters/dex/loungewear.svg",
  56872. extra: 787/680,
  56873. bottom: 18/805
  56874. }
  56875. },
  56876. workout: {
  56877. height: math.unit(4 + 1/12, "feet"),
  56878. weight: math.unit(114, "lb"),
  56879. name: "Workout",
  56880. image: {
  56881. source: "./media/characters/dex/workout.svg",
  56882. extra: 787/680,
  56883. bottom: 18/805
  56884. }
  56885. },
  56886. schoolUniform: {
  56887. height: math.unit(4 + 1/12, "feet"),
  56888. weight: math.unit(114, "lb"),
  56889. name: "School-uniform",
  56890. image: {
  56891. source: "./media/characters/dex/school-uniform.svg",
  56892. extra: 787/680,
  56893. bottom: 18/805
  56894. }
  56895. },
  56896. maw: {
  56897. height: math.unit(0.55, "feet"),
  56898. name: "Maw",
  56899. image: {
  56900. source: "./media/characters/dex/maw.svg"
  56901. }
  56902. },
  56903. paw: {
  56904. height: math.unit(0.87, "feet"),
  56905. name: "Paw",
  56906. image: {
  56907. source: "./media/characters/dex/paw.svg"
  56908. }
  56909. },
  56910. bust: {
  56911. height: math.unit(1.67, "feet"),
  56912. name: "Bust",
  56913. image: {
  56914. source: "./media/characters/dex/bust.svg"
  56915. }
  56916. },
  56917. },
  56918. [
  56919. {
  56920. name: "Normal",
  56921. height: math.unit(4 + 1/12, "feet"),
  56922. default: true
  56923. },
  56924. ]
  56925. ))
  56926. characterMakers.push(() => makeCharacter(
  56927. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56928. {
  56929. front: {
  56930. height: math.unit(4 + 3/12, "feet"),
  56931. weight: math.unit(60, "lb"),
  56932. name: "Front",
  56933. image: {
  56934. source: "./media/characters/silke/front.svg",
  56935. extra: 1334/1122,
  56936. bottom: 21/1355
  56937. }
  56938. },
  56939. back: {
  56940. height: math.unit(4 + 3/12, "feet"),
  56941. weight: math.unit(60, "lb"),
  56942. name: "Back",
  56943. image: {
  56944. source: "./media/characters/silke/back.svg",
  56945. extra: 1328/1092,
  56946. bottom: 16/1344
  56947. }
  56948. },
  56949. dressed: {
  56950. height: math.unit(4 + 3/12, "feet"),
  56951. weight: math.unit(60, "lb"),
  56952. name: "Dressed",
  56953. image: {
  56954. source: "./media/characters/silke/dressed.svg",
  56955. extra: 1334/1122,
  56956. bottom: 43/1377
  56957. }
  56958. },
  56959. },
  56960. [
  56961. {
  56962. name: "Normal",
  56963. height: math.unit(4 + 3/12, "feet"),
  56964. default: true
  56965. },
  56966. ]
  56967. ))
  56968. characterMakers.push(() => makeCharacter(
  56969. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56970. {
  56971. front: {
  56972. height: math.unit(1.58, "meters"),
  56973. weight: math.unit(47, "kg"),
  56974. name: "Front",
  56975. image: {
  56976. source: "./media/characters/wireshark/front.svg",
  56977. extra: 883/838,
  56978. bottom: 66/949
  56979. }
  56980. },
  56981. },
  56982. [
  56983. {
  56984. name: "Normal",
  56985. height: math.unit(1.58, "meters"),
  56986. default: true
  56987. },
  56988. ]
  56989. ))
  56990. characterMakers.push(() => makeCharacter(
  56991. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56992. {
  56993. front: {
  56994. height: math.unit(6, "meters"),
  56995. weight: math.unit(15000, "kg"),
  56996. name: "Front",
  56997. image: {
  56998. source: "./media/characters/gallagher/front.svg",
  56999. extra: 532/493,
  57000. bottom: 0/532
  57001. }
  57002. },
  57003. },
  57004. [
  57005. {
  57006. name: "Normal",
  57007. height: math.unit(6, "meters"),
  57008. default: true
  57009. },
  57010. ]
  57011. ))
  57012. characterMakers.push(() => makeCharacter(
  57013. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57014. {
  57015. front: {
  57016. height: math.unit(2.4, "meters"),
  57017. weight: math.unit(270, "kg"),
  57018. name: "Front",
  57019. image: {
  57020. source: "./media/characters/alice/front.svg",
  57021. extra: 950/900,
  57022. bottom: 36/986
  57023. }
  57024. },
  57025. side: {
  57026. height: math.unit(2.4, "meters"),
  57027. weight: math.unit(270, "kg"),
  57028. name: "Side",
  57029. image: {
  57030. source: "./media/characters/alice/side.svg",
  57031. extra: 921/876,
  57032. bottom: 19/940
  57033. }
  57034. },
  57035. dressed: {
  57036. height: math.unit(2.4, "meters"),
  57037. weight: math.unit(270, "kg"),
  57038. name: "Dressed",
  57039. image: {
  57040. source: "./media/characters/alice/dressed.svg",
  57041. extra: 905/850,
  57042. bottom: 81/986
  57043. }
  57044. },
  57045. fishnet: {
  57046. height: math.unit(2.4, "meters"),
  57047. weight: math.unit(270, "kg"),
  57048. name: "Fishnet",
  57049. image: {
  57050. source: "./media/characters/alice/fishnet.svg",
  57051. extra: 905/850,
  57052. bottom: 81/986
  57053. }
  57054. },
  57055. },
  57056. [
  57057. {
  57058. name: "Normal",
  57059. height: math.unit(2.4, "meters"),
  57060. default: true
  57061. },
  57062. ]
  57063. ))
  57064. characterMakers.push(() => makeCharacter(
  57065. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57066. {
  57067. front: {
  57068. height: math.unit(175.25, "feet"),
  57069. name: "Front",
  57070. image: {
  57071. source: "./media/characters/fio/front.svg",
  57072. extra: 1883/1591,
  57073. bottom: 34/1917
  57074. }
  57075. },
  57076. },
  57077. [
  57078. {
  57079. name: "Normal",
  57080. height: math.unit(175.25, "cm"),
  57081. default: true
  57082. },
  57083. ]
  57084. ))
  57085. characterMakers.push(() => makeCharacter(
  57086. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57087. {
  57088. side: {
  57089. height: math.unit(6, "meters"),
  57090. weight: math.unit(3400, "kg"),
  57091. preyCapacity: math.unit(1700, "liters"),
  57092. name: "Side",
  57093. image: {
  57094. source: "./media/characters/hass/side.svg",
  57095. extra: 1058/997,
  57096. bottom: 177/1235
  57097. }
  57098. },
  57099. feeding: {
  57100. height: math.unit(6*0.63, "meters"),
  57101. weight: math.unit(3400, "kg"),
  57102. preyCapacity: math.unit(1700, "liters"),
  57103. name: "Feeding",
  57104. image: {
  57105. source: "./media/characters/hass/feeding.svg",
  57106. extra: 689/579,
  57107. bottom: 146/835
  57108. }
  57109. },
  57110. guts: {
  57111. height: math.unit(6, "meters"),
  57112. weight: math.unit(3400, "kg"),
  57113. name: "Guts",
  57114. image: {
  57115. source: "./media/characters/hass/guts.svg",
  57116. extra: 1223/1198,
  57117. bottom: 182/1405
  57118. }
  57119. },
  57120. dickFront: {
  57121. height: math.unit(1.4, "meters"),
  57122. name: "Dick (Front)",
  57123. image: {
  57124. source: "./media/characters/hass/dick-front.svg"
  57125. }
  57126. },
  57127. dickSide: {
  57128. height: math.unit(1.3, "meters"),
  57129. name: "Dick (Side)",
  57130. image: {
  57131. source: "./media/characters/hass/dick-side.svg"
  57132. }
  57133. },
  57134. dickBack: {
  57135. height: math.unit(1.4, "meters"),
  57136. name: "Dick (Back)",
  57137. image: {
  57138. source: "./media/characters/hass/dick-back.svg"
  57139. }
  57140. },
  57141. },
  57142. [
  57143. {
  57144. name: "Normal",
  57145. height: math.unit(6, "meters"),
  57146. default: true
  57147. },
  57148. ]
  57149. ))
  57150. characterMakers.push(() => makeCharacter(
  57151. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57152. {
  57153. front: {
  57154. height: math.unit(4, "feet"),
  57155. weight: math.unit(60, "lb"),
  57156. name: "Front",
  57157. image: {
  57158. source: "./media/characters/hickory-finnegan/front.svg",
  57159. extra: 444/411,
  57160. bottom: 10/454
  57161. }
  57162. },
  57163. side: {
  57164. height: math.unit(4, "feet"),
  57165. weight: math.unit(60, "lb"),
  57166. name: "Side",
  57167. image: {
  57168. source: "./media/characters/hickory-finnegan/side.svg",
  57169. extra: 444/411,
  57170. bottom: 10/454
  57171. }
  57172. },
  57173. back: {
  57174. height: math.unit(4, "feet"),
  57175. weight: math.unit(60, "lb"),
  57176. name: "Back",
  57177. image: {
  57178. source: "./media/characters/hickory-finnegan/back.svg",
  57179. extra: 444/411,
  57180. bottom: 10/454
  57181. }
  57182. },
  57183. },
  57184. [
  57185. {
  57186. name: "Normal",
  57187. height: math.unit(4, "feet"),
  57188. default: true
  57189. },
  57190. ]
  57191. ))
  57192. characterMakers.push(() => makeCharacter(
  57193. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57194. {
  57195. snivy_front: {
  57196. height: math.unit(2, "feet"),
  57197. weight: math.unit(17.9, "lb"),
  57198. name: "Front",
  57199. image: {
  57200. source: "./media/characters/robin-phox/snivy-front.svg",
  57201. extra: 569/504,
  57202. bottom: 33/602
  57203. },
  57204. form: "snivy",
  57205. default: true
  57206. },
  57207. snivy_frontNsfw: {
  57208. height: math.unit(2, "feet"),
  57209. weight: math.unit(17.9, "lb"),
  57210. name: "Front (NSFW)",
  57211. image: {
  57212. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57213. extra: 569/504,
  57214. bottom: 33/602
  57215. },
  57216. form: "snivy",
  57217. },
  57218. snivy_back: {
  57219. height: math.unit(2, "feet"),
  57220. weight: math.unit(17.9, "lb"),
  57221. name: "Back",
  57222. image: {
  57223. source: "./media/characters/robin-phox/snivy-back.svg",
  57224. extra: 577/508,
  57225. bottom: 21/598
  57226. },
  57227. form: "snivy",
  57228. },
  57229. snivy_foot: {
  57230. height: math.unit(0.68, "feet"),
  57231. name: "Foot",
  57232. image: {
  57233. source: "./media/characters/robin-phox/snivy-foot.svg"
  57234. },
  57235. form: "snivy",
  57236. },
  57237. snivy_sole: {
  57238. height: math.unit(0.68, "feet"),
  57239. name: "Sole",
  57240. image: {
  57241. source: "./media/characters/robin-phox/snivy-sole.svg"
  57242. },
  57243. form: "snivy",
  57244. },
  57245. yoshi_front: {
  57246. height: math.unit(6, "feet"),
  57247. weight: math.unit(150, "lb"),
  57248. name: "Front",
  57249. image: {
  57250. source: "./media/characters/robin-phox/yoshi-front.svg",
  57251. extra: 890/792,
  57252. bottom: 29/919
  57253. },
  57254. form: "yoshi",
  57255. default: true
  57256. },
  57257. yoshi_frontNsfw: {
  57258. height: math.unit(6, "feet"),
  57259. weight: math.unit(150, "lb"),
  57260. name: "Front (NSFW)",
  57261. image: {
  57262. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57263. extra: 890/792,
  57264. bottom: 29/919
  57265. },
  57266. form: "yoshi",
  57267. },
  57268. yoshi_back: {
  57269. height: math.unit(6, "feet"),
  57270. weight: math.unit(150, "lb"),
  57271. name: "Back",
  57272. image: {
  57273. source: "./media/characters/robin-phox/yoshi-back.svg",
  57274. extra: 890/792,
  57275. bottom: 29/919
  57276. },
  57277. form: "yoshi",
  57278. },
  57279. yoshi_foot: {
  57280. height: math.unit(1.5, "feet"),
  57281. name: "Foot",
  57282. image: {
  57283. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57284. },
  57285. form: "yoshi",
  57286. },
  57287. delphox_front: {
  57288. height: math.unit(4 + 11/12, "feet"),
  57289. weight: math.unit(86, "lb"),
  57290. name: "Front",
  57291. image: {
  57292. source: "./media/characters/robin-phox/delphox-front.svg",
  57293. extra: 1266/1069,
  57294. bottom: 32/1298
  57295. },
  57296. form: "delphox",
  57297. default: true
  57298. },
  57299. delphox_frontNsfw: {
  57300. height: math.unit(4 + 11/12, "feet"),
  57301. weight: math.unit(86, "lb"),
  57302. name: "Front (NSFW)",
  57303. image: {
  57304. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57305. extra: 1266/1069,
  57306. bottom: 32/1298
  57307. },
  57308. form: "delphox",
  57309. },
  57310. delphox_back: {
  57311. height: math.unit(4 + 11/12, "feet"),
  57312. weight: math.unit(86, "lb"),
  57313. name: "Back",
  57314. image: {
  57315. source: "./media/characters/robin-phox/delphox-back.svg",
  57316. extra: 1269/1083,
  57317. bottom: 15/1284
  57318. },
  57319. form: "delphox",
  57320. },
  57321. mienshao_front: {
  57322. height: math.unit(4 + 7/12, "feet"),
  57323. weight: math.unit(78.3, "lb"),
  57324. name: "Front",
  57325. image: {
  57326. source: "./media/characters/robin-phox/mienshao-front.svg",
  57327. extra: 1052/970,
  57328. bottom: 108/1160
  57329. },
  57330. form: "mienshao",
  57331. default: true
  57332. },
  57333. mienshao_frontNsfw: {
  57334. height: math.unit(4 + 7/12, "feet"),
  57335. weight: math.unit(78.3, "lb"),
  57336. name: "Front (NSFW)",
  57337. image: {
  57338. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57339. extra: 1052/970,
  57340. bottom: 108/1160
  57341. },
  57342. form: "mienshao",
  57343. },
  57344. mienshao_back: {
  57345. height: math.unit(4 + 7/12, "feet"),
  57346. weight: math.unit(78.3, "lb"),
  57347. name: "Back",
  57348. image: {
  57349. source: "./media/characters/robin-phox/mienshao-back.svg",
  57350. extra: 1102/982,
  57351. bottom: 32/1134
  57352. },
  57353. form: "mienshao",
  57354. },
  57355. inteleon_front: {
  57356. height: math.unit(6 + 3/12, "feet"),
  57357. weight: math.unit(99.6, "lb"),
  57358. name: "Front",
  57359. image: {
  57360. source: "./media/characters/robin-phox/inteleon-front.svg",
  57361. extra: 910/799,
  57362. bottom: 76/986
  57363. },
  57364. form: "inteleon",
  57365. default: true
  57366. },
  57367. inteleon_frontNsfw: {
  57368. height: math.unit(6 + 3/12, "feet"),
  57369. weight: math.unit(99.6, "lb"),
  57370. name: "Front (NSFW)",
  57371. image: {
  57372. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57373. extra: 910/799,
  57374. bottom: 76/986
  57375. },
  57376. form: "inteleon",
  57377. },
  57378. inteleon_back: {
  57379. height: math.unit(6 + 3/12, "feet"),
  57380. weight: math.unit(99.6, "lb"),
  57381. name: "Back",
  57382. image: {
  57383. source: "./media/characters/robin-phox/inteleon-back.svg",
  57384. extra: 907/796,
  57385. bottom: 25/932
  57386. },
  57387. form: "inteleon",
  57388. },
  57389. reshiram_front: {
  57390. height: math.unit(10 + 6/12, "feet"),
  57391. weight: math.unit(727.5, "lb"),
  57392. name: "Front",
  57393. image: {
  57394. source: "./media/characters/robin-phox/reshiram-front.svg",
  57395. extra: 1198/940,
  57396. bottom: 123/1321
  57397. },
  57398. form: "reshiram",
  57399. },
  57400. reshiram_frontNsfw: {
  57401. height: math.unit(10 + 6/12, "feet"),
  57402. weight: math.unit(727.5, "lb"),
  57403. name: "Front-nsfw",
  57404. image: {
  57405. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57406. extra: 1198/940,
  57407. bottom: 123/1321
  57408. },
  57409. form: "reshiram",
  57410. },
  57411. reshiram_back: {
  57412. height: math.unit(10 + 6/12, "feet"),
  57413. weight: math.unit(727.5, "lb"),
  57414. name: "Back",
  57415. image: {
  57416. source: "./media/characters/robin-phox/reshiram-back.svg",
  57417. extra: 1024/904,
  57418. bottom: 85/1109
  57419. },
  57420. form: "reshiram",
  57421. },
  57422. samurott_front: {
  57423. height: math.unit(8, "feet"),
  57424. weight: math.unit(208.6, "lb"),
  57425. name: "Front",
  57426. image: {
  57427. source: "./media/characters/robin-phox/samurott-front.svg",
  57428. extra: 1048/984,
  57429. bottom: 100/1148
  57430. },
  57431. form: "samurott",
  57432. },
  57433. samurott_frontNsfw: {
  57434. height: math.unit(8, "feet"),
  57435. weight: math.unit(208.6, "lb"),
  57436. name: "Front-nsfw",
  57437. image: {
  57438. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57439. extra: 1048/984,
  57440. bottom: 100/1148
  57441. },
  57442. form: "samurott",
  57443. },
  57444. samurott_back: {
  57445. height: math.unit(8, "feet"),
  57446. weight: math.unit(208.6, "lb"),
  57447. name: "Back",
  57448. image: {
  57449. source: "./media/characters/robin-phox/samurott-back.svg",
  57450. extra: 1110/1042,
  57451. bottom: 12/1122
  57452. },
  57453. form: "samurott",
  57454. },
  57455. samurott_feral: {
  57456. height: math.unit(4 + 11/12, "feet"),
  57457. weight: math.unit(208.6, "lb"),
  57458. name: "Feral",
  57459. image: {
  57460. source: "./media/characters/robin-phox/samurott-feral.svg",
  57461. extra: 766/681,
  57462. bottom: 108/874
  57463. },
  57464. form: "samurott",
  57465. },
  57466. },
  57467. [
  57468. {
  57469. name: "Normal",
  57470. height: math.unit(2, "feet"),
  57471. default: true,
  57472. form: "snivy"
  57473. },
  57474. {
  57475. name: "Normal",
  57476. height: math.unit(6, "feet"),
  57477. default: true,
  57478. form: "yoshi"
  57479. },
  57480. {
  57481. name: "Normal",
  57482. height: math.unit(4 + 11/12, "feet"),
  57483. default: true,
  57484. form: "delphox"
  57485. },
  57486. {
  57487. name: "Normal",
  57488. height: math.unit(4 + 7/12, "feet"),
  57489. default: true,
  57490. form: "mienshao"
  57491. },
  57492. {
  57493. name: "Normal",
  57494. height: math.unit(6 + 3/12, "feet"),
  57495. default: true,
  57496. form: "inteleon"
  57497. },
  57498. {
  57499. name: "Normal",
  57500. height: math.unit(10 + 6/12, "feet"),
  57501. default: true,
  57502. form: "reshiram"
  57503. },
  57504. {
  57505. name: "Normal",
  57506. height: math.unit(8, "feet"),
  57507. default: true,
  57508. form: "samurott"
  57509. },
  57510. {
  57511. name: "Macro",
  57512. height: math.unit(500, "feet"),
  57513. allForms: true
  57514. },
  57515. {
  57516. name: "Mega Macro",
  57517. height: math.unit(10, "earths"),
  57518. allForms: true
  57519. },
  57520. {
  57521. name: "Giga Macro",
  57522. height: math.unit(1, "galaxy"),
  57523. allForms: true
  57524. },
  57525. {
  57526. name: "Godly Macro",
  57527. height: math.unit(1e10, "multiverses"),
  57528. allForms: true
  57529. },
  57530. ],
  57531. {
  57532. "snivy": {
  57533. name: "Snivy",
  57534. default: true
  57535. },
  57536. "yoshi": {
  57537. name: "Yoshi",
  57538. },
  57539. "delphox": {
  57540. name: "Delphox",
  57541. },
  57542. "mienshao": {
  57543. name: "Mienshao",
  57544. },
  57545. "inteleon": {
  57546. name: "Inteleon",
  57547. },
  57548. "reshiram": {
  57549. name: "Reshiram",
  57550. },
  57551. "samurott": {
  57552. name: "Samurott",
  57553. },
  57554. }
  57555. ))
  57556. characterMakers.push(() => makeCharacter(
  57557. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57558. {
  57559. front: {
  57560. height: math.unit(4, "feet"),
  57561. name: "Front",
  57562. image: {
  57563. source: "./media/characters/ash-leung/front.svg",
  57564. extra: 1916/1792,
  57565. bottom: 50/1966
  57566. }
  57567. },
  57568. },
  57569. [
  57570. {
  57571. name: "Atomic",
  57572. height: math.unit(1, "angstrom")
  57573. },
  57574. {
  57575. name: "Microscopic",
  57576. height: math.unit(4000, "angstroms")
  57577. },
  57578. {
  57579. name: "Speck",
  57580. height: math.unit(1, "mm")
  57581. },
  57582. {
  57583. name: "Small",
  57584. height: math.unit(1, "inch")
  57585. },
  57586. {
  57587. name: "Normal",
  57588. height: math.unit(4, "feet"),
  57589. default: true
  57590. },
  57591. ]
  57592. ))
  57593. characterMakers.push(() => makeCharacter(
  57594. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57595. {
  57596. frontDressed: {
  57597. height: math.unit(2.08, "meters"),
  57598. weight: math.unit(175, "lb"),
  57599. name: "Front (Dressed)",
  57600. image: {
  57601. source: "./media/characters/carie/front-dressed.svg",
  57602. extra: 456/417,
  57603. bottom: 7/463
  57604. }
  57605. },
  57606. backDressed: {
  57607. height: math.unit(2.08, "meters"),
  57608. weight: math.unit(175, "lb"),
  57609. name: "Back (Dressed)",
  57610. image: {
  57611. source: "./media/characters/carie/back-dressed.svg",
  57612. extra: 455/414,
  57613. bottom: 11/466
  57614. }
  57615. },
  57616. front: {
  57617. height: math.unit(2, "meters"),
  57618. weight: math.unit(175, "lb"),
  57619. name: "Front",
  57620. image: {
  57621. source: "./media/characters/carie/front.svg",
  57622. extra: 438/399,
  57623. bottom: 12/450
  57624. }
  57625. },
  57626. back: {
  57627. height: math.unit(2, "meters"),
  57628. weight: math.unit(175, "lb"),
  57629. name: "Back",
  57630. image: {
  57631. source: "./media/characters/carie/back.svg",
  57632. extra: 438/397,
  57633. bottom: 7/445
  57634. }
  57635. },
  57636. },
  57637. [
  57638. {
  57639. name: "Normal",
  57640. height: math.unit(2.08, "meters"),
  57641. default: true
  57642. },
  57643. {
  57644. name: "Macro",
  57645. height: math.unit(2.08e3, "meters")
  57646. },
  57647. {
  57648. name: "Mega Macro",
  57649. height: math.unit(2.08e6, "meters")
  57650. },
  57651. {
  57652. name: "Giga Macro",
  57653. height: math.unit(2.08e9, "meters")
  57654. },
  57655. {
  57656. name: "Tera Macro",
  57657. height: math.unit(2.08e12, "meters")
  57658. },
  57659. {
  57660. name: "Peta Macro",
  57661. height: math.unit(2.08e15, "meters")
  57662. },
  57663. {
  57664. name: "Exa Macro",
  57665. height: math.unit(2.08e18, "meters")
  57666. },
  57667. {
  57668. name: "Zetta Macro",
  57669. height: math.unit(2.08e21, "meters")
  57670. },
  57671. {
  57672. name: "Yotta Macro",
  57673. height: math.unit(2.08e24, "meters")
  57674. },
  57675. ]
  57676. ))
  57677. characterMakers.push(() => makeCharacter(
  57678. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57679. {
  57680. front: {
  57681. height: math.unit(5 + 2/12, "feet"),
  57682. weight: math.unit(120, "lb"),
  57683. name: "Front",
  57684. image: {
  57685. source: "./media/characters/sai-bree/front.svg",
  57686. extra: 1843/1702,
  57687. bottom: 91/1934
  57688. }
  57689. },
  57690. back: {
  57691. height: math.unit(5 + 2/12, "feet"),
  57692. weight: math.unit(120, "lb"),
  57693. name: "Back",
  57694. image: {
  57695. source: "./media/characters/sai-bree/back.svg",
  57696. extra: 1809/1637,
  57697. bottom: 56/1865
  57698. }
  57699. },
  57700. },
  57701. [
  57702. {
  57703. name: "Normal",
  57704. height: math.unit(5 + 2/12, "feet"),
  57705. default: true
  57706. },
  57707. {
  57708. name: "Macro",
  57709. height: math.unit(500, "feet")
  57710. },
  57711. ]
  57712. ))
  57713. characterMakers.push(() => makeCharacter(
  57714. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57715. {
  57716. side: {
  57717. height: math.unit(0.77, "meters"),
  57718. weight: math.unit(120, "lb"),
  57719. name: "Side",
  57720. image: {
  57721. source: "./media/characters/davwyn/side.svg",
  57722. extra: 1557/1225,
  57723. bottom: 131/1688
  57724. }
  57725. },
  57726. front: {
  57727. height: math.unit(0.835410, "meters"),
  57728. weight: math.unit(120, "lb"),
  57729. name: "Front",
  57730. image: {
  57731. source: "./media/characters/davwyn/front.svg",
  57732. extra: 870/843,
  57733. bottom: 175/1045
  57734. }
  57735. },
  57736. },
  57737. [
  57738. {
  57739. name: "Minidrake",
  57740. height: math.unit(0.77/4, "meters")
  57741. },
  57742. {
  57743. name: "Normal",
  57744. height: math.unit(0.77, "meters"),
  57745. default: true
  57746. },
  57747. ]
  57748. ))
  57749. characterMakers.push(() => makeCharacter(
  57750. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57751. {
  57752. front: {
  57753. height: math.unit(10 + 3/12, "feet"),
  57754. weight: math.unit(2857, "lb"),
  57755. name: "Front",
  57756. image: {
  57757. source: "./media/characters/balans/front.svg",
  57758. extra: 427/402,
  57759. bottom: 26/453
  57760. }
  57761. },
  57762. side: {
  57763. height: math.unit(10 + 3/12, "feet"),
  57764. weight: math.unit(2857, "lb"),
  57765. name: "Side",
  57766. image: {
  57767. source: "./media/characters/balans/side.svg",
  57768. extra: 397/371,
  57769. bottom: 17/414
  57770. }
  57771. },
  57772. back: {
  57773. height: math.unit(10 + 3/12, "feet"),
  57774. weight: math.unit(2857, "lb"),
  57775. name: "Back",
  57776. image: {
  57777. source: "./media/characters/balans/back.svg",
  57778. extra: 408/381,
  57779. bottom: 14/422
  57780. }
  57781. },
  57782. hand: {
  57783. height: math.unit(1.15, "feet"),
  57784. name: "Hand",
  57785. image: {
  57786. source: "./media/characters/balans/hand.svg"
  57787. }
  57788. },
  57789. footRest: {
  57790. height: math.unit(3.1, "feet"),
  57791. name: "Foot (Rest)",
  57792. image: {
  57793. source: "./media/characters/balans/foot-rest.svg"
  57794. }
  57795. },
  57796. footActive: {
  57797. height: math.unit(3.5, "feet"),
  57798. name: "Foot (Active)",
  57799. image: {
  57800. source: "./media/characters/balans/foot-active.svg"
  57801. }
  57802. },
  57803. },
  57804. [
  57805. {
  57806. name: "Normal",
  57807. height: math.unit(10 + 3/12, "feet"),
  57808. default: true
  57809. },
  57810. ]
  57811. ))
  57812. characterMakers.push(() => makeCharacter(
  57813. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57814. {
  57815. side: {
  57816. height: math.unit(9, "meters"),
  57817. weight: math.unit(114, "tonnes"),
  57818. name: "Side",
  57819. image: {
  57820. source: "./media/characters/eldkveikir/side.svg",
  57821. extra: 1927/338,
  57822. bottom: 42/1969
  57823. }
  57824. },
  57825. sitting: {
  57826. height: math.unit(13.4, "meters"),
  57827. weight: math.unit(114, "tonnes"),
  57828. name: "Sitting",
  57829. image: {
  57830. source: "./media/characters/eldkveikir/sitting.svg",
  57831. extra: 1108/963,
  57832. bottom: 610/1718
  57833. }
  57834. },
  57835. maw: {
  57836. height: math.unit(8.36, "meters"),
  57837. name: "Maw",
  57838. image: {
  57839. source: "./media/characters/eldkveikir/maw.svg"
  57840. }
  57841. },
  57842. hand: {
  57843. height: math.unit(4.84, "meters"),
  57844. name: "Hand",
  57845. image: {
  57846. source: "./media/characters/eldkveikir/hand.svg"
  57847. }
  57848. },
  57849. foot: {
  57850. height: math.unit(6.9, "meters"),
  57851. name: "Foot",
  57852. image: {
  57853. source: "./media/characters/eldkveikir/foot.svg"
  57854. }
  57855. },
  57856. genitals: {
  57857. height: math.unit(9.6, "meters"),
  57858. name: "Genitals",
  57859. image: {
  57860. source: "./media/characters/eldkveikir/genitals.svg"
  57861. }
  57862. },
  57863. },
  57864. [
  57865. {
  57866. name: "Normal",
  57867. height: math.unit(9, "meters"),
  57868. default: true
  57869. },
  57870. ]
  57871. ))
  57872. characterMakers.push(() => makeCharacter(
  57873. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57874. {
  57875. front: {
  57876. height: math.unit(14, "feet"),
  57877. weight: math.unit(4100, "lb"),
  57878. name: "Front",
  57879. image: {
  57880. source: "./media/characters/arrow/front.svg",
  57881. extra: 330/318,
  57882. bottom: 56/386
  57883. }
  57884. },
  57885. },
  57886. [
  57887. {
  57888. name: "Normal",
  57889. height: math.unit(14, "feet"),
  57890. default: true
  57891. },
  57892. {
  57893. name: "Minimacro",
  57894. height: math.unit(63, "feet")
  57895. },
  57896. {
  57897. name: "Macro",
  57898. height: math.unit(630, "feet")
  57899. },
  57900. {
  57901. name: "Megamacro",
  57902. height: math.unit(12600, "feet")
  57903. },
  57904. {
  57905. name: "Gigamacro",
  57906. height: math.unit(18000, "miles")
  57907. },
  57908. ]
  57909. ))
  57910. characterMakers.push(() => makeCharacter(
  57911. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57912. {
  57913. front: {
  57914. height: math.unit(10, "feet"),
  57915. weight: math.unit(2.4, "tons"),
  57916. name: "Front",
  57917. image: {
  57918. source: "./media/characters/3yk-k0-unit/front.svg",
  57919. extra: 573/561,
  57920. bottom: 33/606
  57921. }
  57922. },
  57923. back: {
  57924. height: math.unit(10, "feet"),
  57925. weight: math.unit(2.4, "tons"),
  57926. name: "Back",
  57927. image: {
  57928. source: "./media/characters/3yk-k0-unit/back.svg",
  57929. extra: 614/573,
  57930. bottom: 32/646
  57931. }
  57932. },
  57933. maw: {
  57934. height: math.unit(2.15, "feet"),
  57935. name: "Maw",
  57936. image: {
  57937. source: "./media/characters/3yk-k0-unit/maw.svg"
  57938. }
  57939. },
  57940. },
  57941. [
  57942. {
  57943. name: "Normal",
  57944. height: math.unit(10, "feet"),
  57945. default: true
  57946. },
  57947. ]
  57948. ))
  57949. characterMakers.push(() => makeCharacter(
  57950. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57951. {
  57952. front: {
  57953. height: math.unit(8 + 8/12, "feet"),
  57954. name: "Front",
  57955. image: {
  57956. source: "./media/characters/nemo/front.svg",
  57957. extra: 1308/1217,
  57958. bottom: 57/1365
  57959. }
  57960. },
  57961. },
  57962. [
  57963. {
  57964. name: "Normal",
  57965. height: math.unit(8 + 8/12, "feet"),
  57966. default: true
  57967. },
  57968. ]
  57969. ))
  57970. characterMakers.push(() => makeCharacter(
  57971. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57972. {
  57973. front: {
  57974. height: math.unit(8, "feet"),
  57975. weight: math.unit(760, "lb"),
  57976. name: "Front",
  57977. image: {
  57978. source: "./media/characters/rexx/front.svg",
  57979. extra: 786/750,
  57980. bottom: 17/803
  57981. },
  57982. extraAttributes: {
  57983. "pawLength": {
  57984. name: "Paw Length",
  57985. power: 1,
  57986. type: "length",
  57987. base: math.unit(27, "inches")
  57988. },
  57989. }
  57990. },
  57991. },
  57992. [
  57993. {
  57994. name: "Micro",
  57995. height: math.unit(2, "inches")
  57996. },
  57997. {
  57998. name: "Normal",
  57999. height: math.unit(8, "feet"),
  58000. default: true
  58001. },
  58002. {
  58003. name: "Macro",
  58004. height: math.unit(150, "feet")
  58005. },
  58006. ]
  58007. ))
  58008. characterMakers.push(() => makeCharacter(
  58009. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58010. {
  58011. front: {
  58012. height: math.unit(18, "feet"),
  58013. weight: math.unit(1975, "lb"),
  58014. name: "Front",
  58015. image: {
  58016. source: "./media/characters/draco/front.svg",
  58017. extra: 1325/1241,
  58018. bottom: 83/1408
  58019. }
  58020. },
  58021. back: {
  58022. height: math.unit(18, "feet"),
  58023. weight: math.unit(1975, "lb"),
  58024. name: "Back",
  58025. image: {
  58026. source: "./media/characters/draco/back.svg",
  58027. extra: 1332/1250,
  58028. bottom: 43/1375
  58029. }
  58030. },
  58031. dick: {
  58032. height: math.unit(7.5, "feet"),
  58033. name: "Dick",
  58034. image: {
  58035. source: "./media/characters/draco/dick.svg"
  58036. }
  58037. },
  58038. },
  58039. [
  58040. {
  58041. name: "Normal",
  58042. height: math.unit(18, "feet"),
  58043. default: true
  58044. },
  58045. ]
  58046. ))
  58047. characterMakers.push(() => makeCharacter(
  58048. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58049. {
  58050. front: {
  58051. height: math.unit(3.2, "meters"),
  58052. name: "Front",
  58053. image: {
  58054. source: "./media/characters/harriett/front.svg",
  58055. extra: 1966/1915,
  58056. bottom: 9/1975
  58057. }
  58058. },
  58059. },
  58060. [
  58061. {
  58062. name: "Normal",
  58063. height: math.unit(3.2, "meters"),
  58064. default: true
  58065. },
  58066. ]
  58067. ))
  58068. characterMakers.push(() => makeCharacter(
  58069. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58070. {
  58071. sitting: {
  58072. height: math.unit(0.8, "meter"),
  58073. name: "Sitting",
  58074. image: {
  58075. source: "./media/characters/serpentus/sitting.svg",
  58076. extra: 293/290,
  58077. bottom: 140/433
  58078. }
  58079. },
  58080. },
  58081. [
  58082. {
  58083. name: "Normal",
  58084. height: math.unit(0.8, "meter"),
  58085. default: true
  58086. },
  58087. ]
  58088. ))
  58089. characterMakers.push(() => makeCharacter(
  58090. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58091. {
  58092. front: {
  58093. height: math.unit(5.7174385736, "feet"),
  58094. name: "Front",
  58095. image: {
  58096. source: "./media/characters/nova-polecat/front.svg",
  58097. extra: 1317/1216,
  58098. bottom: 92/1409
  58099. }
  58100. },
  58101. },
  58102. [
  58103. {
  58104. name: "Normal",
  58105. height: math.unit(5.7174385736, "feet"),
  58106. default: true
  58107. },
  58108. ]
  58109. ))
  58110. characterMakers.push(() => makeCharacter(
  58111. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58112. {
  58113. front: {
  58114. height: math.unit(5 + 4/12, "feet"),
  58115. weight: math.unit(250, "lb"),
  58116. name: "Front",
  58117. image: {
  58118. source: "./media/characters/mook/front.svg",
  58119. extra: 1088/1037,
  58120. bottom: 132/1220
  58121. }
  58122. },
  58123. back: {
  58124. height: math.unit(5 + 1/12, "feet"),
  58125. weight: math.unit(250, "lb"),
  58126. name: "Back",
  58127. image: {
  58128. source: "./media/characters/mook/back.svg",
  58129. extra: 1184/905,
  58130. bottom: 96/1280
  58131. }
  58132. },
  58133. head: {
  58134. height: math.unit(1.85, "feet"),
  58135. name: "Head",
  58136. image: {
  58137. source: "./media/characters/mook/head.svg"
  58138. }
  58139. },
  58140. hand: {
  58141. height: math.unit(1.9, "feet"),
  58142. name: "Hand",
  58143. image: {
  58144. source: "./media/characters/mook/hand.svg"
  58145. }
  58146. },
  58147. palm: {
  58148. height: math.unit(1.84, "feet"),
  58149. name: "Palm",
  58150. image: {
  58151. source: "./media/characters/mook/palm.svg"
  58152. }
  58153. },
  58154. foot: {
  58155. height: math.unit(1.44, "feet"),
  58156. name: "Foot",
  58157. image: {
  58158. source: "./media/characters/mook/foot.svg"
  58159. }
  58160. },
  58161. sole: {
  58162. height: math.unit(1.44, "feet"),
  58163. name: "Sole",
  58164. image: {
  58165. source: "./media/characters/mook/sole.svg"
  58166. }
  58167. },
  58168. },
  58169. [
  58170. {
  58171. name: "Normal",
  58172. height: math.unit(5 + 4/12, "feet"),
  58173. default: true
  58174. },
  58175. {
  58176. name: "Big",
  58177. height: math.unit(12, "feet")
  58178. },
  58179. ]
  58180. ))
  58181. characterMakers.push(() => makeCharacter(
  58182. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58183. {
  58184. front: {
  58185. height: math.unit(6 + 10/12, "feet"),
  58186. weight: math.unit(233, "lb"),
  58187. name: "Front",
  58188. image: {
  58189. source: "./media/characters/kayla/front.svg",
  58190. extra: 1850/1775,
  58191. bottom: 65/1915
  58192. }
  58193. },
  58194. },
  58195. [
  58196. {
  58197. name: "Normal",
  58198. height: math.unit(6 + 10/12, "feet"),
  58199. default: true
  58200. },
  58201. {
  58202. name: "Amazonian",
  58203. height: math.unit(12 + 5/12, "feet")
  58204. },
  58205. {
  58206. name: "Mini Giantess",
  58207. height: math.unit(26, "feet")
  58208. },
  58209. {
  58210. name: "Giantess",
  58211. height: math.unit(200, "feet")
  58212. },
  58213. {
  58214. name: "Mega Giantess",
  58215. height: math.unit(2500, "feet")
  58216. },
  58217. {
  58218. name: "City Sized",
  58219. height: math.unit(50, "miles")
  58220. },
  58221. {
  58222. name: "Country Sized",
  58223. height: math.unit(500, "miles")
  58224. },
  58225. {
  58226. name: "Continent Sized",
  58227. height: math.unit(2500, "miles")
  58228. },
  58229. {
  58230. name: "Planet Sized",
  58231. height: math.unit(10000, "miles")
  58232. },
  58233. {
  58234. name: "Star Sized",
  58235. height: math.unit(5e6, "miles")
  58236. },
  58237. {
  58238. name: "Solar System Sized",
  58239. height: math.unit(125, "AU")
  58240. },
  58241. {
  58242. name: "Galaxy Sized",
  58243. height: math.unit(300e3, "lightyears")
  58244. },
  58245. {
  58246. name: "Universe Sized",
  58247. height: math.unit(200e9, "lightyears")
  58248. },
  58249. {
  58250. name: "Multiverse Sized",
  58251. height: math.unit(20, "exauniverses")
  58252. },
  58253. {
  58254. name: "Mother of Existence",
  58255. height: math.unit(1e6, "yottauniverses")
  58256. },
  58257. ]
  58258. ))
  58259. characterMakers.push(() => makeCharacter(
  58260. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58261. {
  58262. side: {
  58263. height: math.unit(9.5, "meters"),
  58264. name: "Side",
  58265. image: {
  58266. source: "./media/characters/kulve-ragnarok/side.svg",
  58267. extra: 364/326,
  58268. bottom: 50/414
  58269. }
  58270. },
  58271. },
  58272. [
  58273. {
  58274. name: "Normal",
  58275. height: math.unit(9.5, "meters"),
  58276. default: true
  58277. },
  58278. ]
  58279. ))
  58280. characterMakers.push(() => makeCharacter(
  58281. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58282. {
  58283. front: {
  58284. height: math.unit(8 + 9/12, "feet"),
  58285. name: "Front",
  58286. image: {
  58287. source: "./media/characters/atlas-goat/front.svg",
  58288. extra: 1462/1323,
  58289. bottom: 12/1474
  58290. }
  58291. },
  58292. },
  58293. [
  58294. {
  58295. name: "Normal",
  58296. height: math.unit(8 + 9/12, "feet"),
  58297. default: true
  58298. },
  58299. {
  58300. name: "Skyline",
  58301. height: math.unit(845, "feet")
  58302. },
  58303. {
  58304. name: "Orbital",
  58305. height: math.unit(93000, "miles")
  58306. },
  58307. {
  58308. name: "Constellation",
  58309. height: math.unit(27000, "lightyears")
  58310. },
  58311. ]
  58312. ))
  58313. characterMakers.push(() => makeCharacter(
  58314. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58315. {
  58316. side: {
  58317. height: math.unit(1.8, "meters"),
  58318. weight: math.unit(120, "kg"),
  58319. name: "Side",
  58320. image: {
  58321. source: "./media/characters/xie-ling/side.svg",
  58322. extra: 646/574,
  58323. bottom: 44/690
  58324. }
  58325. },
  58326. },
  58327. [
  58328. {
  58329. name: "Tiny",
  58330. height: math.unit(1.80, "meters")
  58331. },
  58332. {
  58333. name: "Small",
  58334. height: math.unit(6, "meters")
  58335. },
  58336. {
  58337. name: "Medium",
  58338. height: math.unit(15, "meters")
  58339. },
  58340. {
  58341. name: "Normal",
  58342. height: math.unit(30, "meters"),
  58343. default: true
  58344. },
  58345. {
  58346. name: "Above Normal",
  58347. height: math.unit(60, "meters")
  58348. },
  58349. {
  58350. name: "Big",
  58351. height: math.unit(220, "meters")
  58352. },
  58353. {
  58354. name: "Giant",
  58355. height: math.unit(2.2, "km")
  58356. },
  58357. {
  58358. name: "Macro",
  58359. height: math.unit(25, "km")
  58360. },
  58361. {
  58362. name: "Mega Macro",
  58363. height: math.unit(350, "km")
  58364. },
  58365. {
  58366. name: "Mega Macro+",
  58367. height: math.unit(5000, "km")
  58368. },
  58369. {
  58370. name: "Goddess",
  58371. height: math.unit(3, "multiverses")
  58372. },
  58373. ]
  58374. ))
  58375. characterMakers.push(() => makeCharacter(
  58376. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58377. {
  58378. frontSfw: {
  58379. height: math.unit(5 + 11/12, "feet"),
  58380. weight: math.unit(210, "lb"),
  58381. name: "Front",
  58382. image: {
  58383. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58384. extra: 1928/1821,
  58385. bottom: 45/1973
  58386. }
  58387. },
  58388. backSfw: {
  58389. height: math.unit(5 + 11/12, "feet"),
  58390. weight: math.unit(210, "lb"),
  58391. name: "Back",
  58392. image: {
  58393. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58394. extra: 1920/1813,
  58395. bottom: 34/1954
  58396. }
  58397. },
  58398. frontNsfw: {
  58399. height: math.unit(5 + 11/12, "feet"),
  58400. weight: math.unit(210, "lb"),
  58401. name: "Front (NSFW)",
  58402. image: {
  58403. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58404. extra: 1928/1821,
  58405. bottom: 45/1973
  58406. }
  58407. },
  58408. backNsfw: {
  58409. height: math.unit(5 + 11/12, "feet"),
  58410. weight: math.unit(210, "lb"),
  58411. name: "Back (NSFW)",
  58412. image: {
  58413. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58414. extra: 1920/1813,
  58415. bottom: 34/1954
  58416. }
  58417. },
  58418. },
  58419. [
  58420. {
  58421. name: "Normal",
  58422. height: math.unit(5 + 11/12, "feet"),
  58423. default: true
  58424. },
  58425. {
  58426. name: "Goddess",
  58427. height: math.unit(20 + 3/12, "feet")
  58428. },
  58429. {
  58430. name: "Breaker of Man",
  58431. height: math.unit(329 + 9/12, "feet")
  58432. },
  58433. {
  58434. name: "Solar Justice",
  58435. height: math.unit(0.6, "solarradii")
  58436. },
  58437. {
  58438. name: "She Who Judges",
  58439. height: math.unit(1, "universe")
  58440. },
  58441. ]
  58442. ))
  58443. characterMakers.push(() => makeCharacter(
  58444. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58445. {
  58446. casual_front: {
  58447. height: math.unit(6 + 1/12, "feet"),
  58448. weight: math.unit(190, "lb"),
  58449. preyCapacity: math.unit(1, "people"),
  58450. name: "Front",
  58451. image: {
  58452. source: "./media/characters/managarmr/casual-front.svg",
  58453. extra: 411/381,
  58454. bottom: 15/426
  58455. },
  58456. extraAttributes: {
  58457. "pawSize": {
  58458. name: "Paw Size",
  58459. power: 1,
  58460. type: "length",
  58461. base: math.unit(0.2, "meters")
  58462. },
  58463. },
  58464. form: "casual",
  58465. },
  58466. casual_back: {
  58467. height: math.unit(6 + 1/12, "feet"),
  58468. weight: math.unit(190, "lb"),
  58469. preyCapacity: math.unit(1, "people"),
  58470. name: "Back",
  58471. image: {
  58472. source: "./media/characters/managarmr/casual-back.svg",
  58473. extra: 413/383,
  58474. bottom: 13/426
  58475. },
  58476. extraAttributes: {
  58477. "pawSize": {
  58478. name: "Paw Size",
  58479. power: 1,
  58480. type: "length",
  58481. base: math.unit(0.2, "meters")
  58482. },
  58483. },
  58484. form: "casual",
  58485. },
  58486. base_front: {
  58487. height: math.unit(7, "feet"),
  58488. weight: math.unit(210, "lb"),
  58489. preyCapacity: math.unit(2, "people"),
  58490. name: "Front",
  58491. image: {
  58492. source: "./media/characters/managarmr/base-front.svg",
  58493. extra: 580/485,
  58494. bottom: 32/612
  58495. },
  58496. extraAttributes: {
  58497. "wingspan": {
  58498. name: "Wingspan",
  58499. power: 1,
  58500. type: "length",
  58501. base: math.unit(4, "meters")
  58502. },
  58503. "pawSize": {
  58504. name: "Paw Size",
  58505. power: 1,
  58506. type: "length",
  58507. base: math.unit(0.2, "meters")
  58508. },
  58509. },
  58510. form: "base",
  58511. },
  58512. "true-divine_front": {
  58513. height: math.unit(40, "feet"),
  58514. weight: math.unit(39000, "lb"),
  58515. preyCapacity: math.unit(375, "people"),
  58516. name: "Front",
  58517. image: {
  58518. source: "./media/characters/managarmr/true-divine-front.svg",
  58519. extra: 725/573,
  58520. bottom: 120/845
  58521. },
  58522. extraAttributes: {
  58523. "wingspan": {
  58524. name: "Wingspan",
  58525. power: 1,
  58526. type: "length",
  58527. base: math.unit(20, "meters")
  58528. },
  58529. "pawSize": {
  58530. name: "Paw Size",
  58531. power: 1,
  58532. type: "length",
  58533. base: math.unit(1.5, "meters")
  58534. },
  58535. },
  58536. form: "true-divine",
  58537. },
  58538. },
  58539. [
  58540. {
  58541. name: "Normal",
  58542. height: math.unit(6 + 1/12, "feet"),
  58543. form: "casual",
  58544. default: true
  58545. },
  58546. {
  58547. name: "Normal",
  58548. height: math.unit(7, "feet"),
  58549. form: "base",
  58550. default: true
  58551. },
  58552. ],
  58553. {
  58554. "casual": {
  58555. name: "Casual",
  58556. default: true
  58557. },
  58558. "base": {
  58559. name: "Base",
  58560. },
  58561. "true-divine": {
  58562. name: "True Divine",
  58563. },
  58564. }
  58565. ))
  58566. characterMakers.push(() => makeCharacter(
  58567. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58568. {
  58569. front: {
  58570. height: math.unit(1.8, "meters"),
  58571. weight: math.unit(110, "kg"),
  58572. name: "Front",
  58573. image: {
  58574. source: "./media/characters/mystra/front.svg",
  58575. extra: 529/442,
  58576. bottom: 31/560
  58577. }
  58578. },
  58579. frontLewd: {
  58580. height: math.unit(1.8, "meters"),
  58581. weight: math.unit(110, "kg"),
  58582. name: "Front (Lewd)",
  58583. image: {
  58584. source: "./media/characters/mystra/front-lewd.svg",
  58585. extra: 529/442,
  58586. bottom: 31/560
  58587. }
  58588. },
  58589. head: {
  58590. height: math.unit(1.63, "feet"),
  58591. name: "Head",
  58592. image: {
  58593. source: "./media/characters/mystra/head.svg"
  58594. }
  58595. },
  58596. paw: {
  58597. height: math.unit(1.9, "feet"),
  58598. name: "Paw",
  58599. image: {
  58600. source: "./media/characters/mystra/paw.svg"
  58601. }
  58602. },
  58603. },
  58604. [
  58605. {
  58606. name: "Incognito",
  58607. height: math.unit(2.3, "meters")
  58608. },
  58609. {
  58610. name: "Small Macro",
  58611. height: math.unit(300, "meters")
  58612. },
  58613. {
  58614. name: "Small Mega",
  58615. height: math.unit(2, "km")
  58616. },
  58617. {
  58618. name: "Mega",
  58619. height: math.unit(30, "km")
  58620. },
  58621. {
  58622. name: "Small Giga",
  58623. height: math.unit(100, "km")
  58624. },
  58625. {
  58626. name: "Giga",
  58627. height: math.unit(1000, "km"),
  58628. default: true
  58629. },
  58630. {
  58631. name: "Continental",
  58632. height: math.unit(5000, "km")
  58633. },
  58634. {
  58635. name: "Terra",
  58636. height: math.unit(20000, "km")
  58637. },
  58638. {
  58639. name: "Solar",
  58640. height: math.unit(2e6, "km")
  58641. },
  58642. {
  58643. name: "Galactic",
  58644. height: math.unit(528502, "lightyears")
  58645. },
  58646. {
  58647. name: "Universal",
  58648. height: math.unit(20, "universes")
  58649. },
  58650. ]
  58651. ))
  58652. characterMakers.push(() => makeCharacter(
  58653. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58654. {
  58655. front: {
  58656. height: math.unit(2, "meters"),
  58657. weight: math.unit(140, "kg"),
  58658. name: "Front",
  58659. image: {
  58660. source: "./media/characters/caleb/front.svg",
  58661. extra: 873/817,
  58662. bottom: 47/920
  58663. }
  58664. },
  58665. back: {
  58666. height: math.unit(2, "meters"),
  58667. weight: math.unit(140, "kg"),
  58668. name: "Back",
  58669. image: {
  58670. source: "./media/characters/caleb/back.svg",
  58671. extra: 877/828,
  58672. bottom: 24/901
  58673. }
  58674. },
  58675. snakeTail: {
  58676. height: math.unit(1.44, "feet"),
  58677. name: "Snake Tail",
  58678. image: {
  58679. source: "./media/characters/caleb/snake-tail.svg"
  58680. }
  58681. },
  58682. dick: {
  58683. height: math.unit(2.6, "feet"),
  58684. name: "Dick",
  58685. image: {
  58686. source: "./media/characters/caleb/dick.svg"
  58687. }
  58688. },
  58689. },
  58690. [
  58691. {
  58692. name: "Incognito",
  58693. height: math.unit(3, "meters")
  58694. },
  58695. {
  58696. name: "Home Size",
  58697. height: math.unit(200, "meters"),
  58698. default: true
  58699. },
  58700. {
  58701. name: "Macro",
  58702. height: math.unit(500, "meters")
  58703. },
  58704. {
  58705. name: "Big Macro",
  58706. height: math.unit(5, "km")
  58707. },
  58708. {
  58709. name: "Giga",
  58710. height: math.unit(250, "km")
  58711. },
  58712. {
  58713. name: "Giga+",
  58714. height: math.unit(5000, "km")
  58715. },
  58716. {
  58717. name: "Small Terra",
  58718. height: math.unit(35e3, "km")
  58719. },
  58720. {
  58721. name: "Terra",
  58722. height: math.unit(2e6, "km")
  58723. },
  58724. {
  58725. name: "Terra+",
  58726. height: math.unit(1.5e6, "km")
  58727. },
  58728. ]
  58729. ))
  58730. characterMakers.push(() => makeCharacter(
  58731. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58732. {
  58733. front: {
  58734. height: math.unit(2, "meters"),
  58735. weight: math.unit(120, "kg"),
  58736. name: "Front",
  58737. image: {
  58738. source: "./media/characters/gilirian/front.svg",
  58739. extra: 805/737,
  58740. bottom: 13/818
  58741. }
  58742. },
  58743. side: {
  58744. height: math.unit(2, "meters"),
  58745. weight: math.unit(120, "kg"),
  58746. name: "Side",
  58747. image: {
  58748. source: "./media/characters/gilirian/side.svg",
  58749. extra: 810/746,
  58750. bottom: 6/816
  58751. }
  58752. },
  58753. back: {
  58754. height: math.unit(2, "meters"),
  58755. weight: math.unit(120, "kg"),
  58756. name: "Back",
  58757. image: {
  58758. source: "./media/characters/gilirian/back.svg",
  58759. extra: 815/745,
  58760. bottom: 15/830
  58761. }
  58762. },
  58763. frontNsfw: {
  58764. height: math.unit(2, "meters"),
  58765. weight: math.unit(120, "kg"),
  58766. name: "Front (NSFW)",
  58767. image: {
  58768. source: "./media/characters/gilirian/front-nsfw.svg",
  58769. extra: 805/737,
  58770. bottom: 13/818
  58771. }
  58772. },
  58773. sideNsfw: {
  58774. height: math.unit(2, "meters"),
  58775. weight: math.unit(120, "kg"),
  58776. name: "Side (NSFW)",
  58777. image: {
  58778. source: "./media/characters/gilirian/side-nsfw.svg",
  58779. extra: 810/746,
  58780. bottom: 6/816
  58781. }
  58782. },
  58783. },
  58784. [
  58785. {
  58786. name: "Incognito",
  58787. height: math.unit(2, "meters"),
  58788. default: true
  58789. },
  58790. {
  58791. name: "Macro",
  58792. height: math.unit(250, "meters")
  58793. },
  58794. {
  58795. name: "Big Macro",
  58796. height: math.unit(1500, "meters")
  58797. },
  58798. {
  58799. name: "Mega",
  58800. height: math.unit(40, "km")
  58801. },
  58802. {
  58803. name: "Giga",
  58804. height: math.unit(300, "km")
  58805. },
  58806. {
  58807. name: "Extra Giga",
  58808. height: math.unit(5000, "km")
  58809. },
  58810. {
  58811. name: "Small Terra",
  58812. height: math.unit(10e3, "km")
  58813. },
  58814. {
  58815. name: "Terra",
  58816. height: math.unit(3e5, "km")
  58817. },
  58818. {
  58819. name: "Galactic",
  58820. height: math.unit(369950, "lightyears")
  58821. },
  58822. ]
  58823. ))
  58824. characterMakers.push(() => makeCharacter(
  58825. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58826. {
  58827. front: {
  58828. height: math.unit(2.5, "meters"),
  58829. weight: math.unit(230, "lb"),
  58830. name: "Front",
  58831. image: {
  58832. source: "./media/characters/tarken/front.svg",
  58833. extra: 764/720,
  58834. bottom: 49/813
  58835. }
  58836. },
  58837. back: {
  58838. height: math.unit(2.5, "meters"),
  58839. weight: math.unit(230, "lb"),
  58840. name: "Back",
  58841. image: {
  58842. source: "./media/characters/tarken/back.svg",
  58843. extra: 756/720,
  58844. bottom: 35/791
  58845. }
  58846. },
  58847. frontNsfw: {
  58848. height: math.unit(2.5, "meters"),
  58849. weight: math.unit(230, "lb"),
  58850. name: "Front (NSFW)",
  58851. image: {
  58852. source: "./media/characters/tarken/front-nsfw.svg",
  58853. extra: 764/720,
  58854. bottom: 49/813
  58855. }
  58856. },
  58857. backNsfw: {
  58858. height: math.unit(2.5, "meters"),
  58859. weight: math.unit(230, "lb"),
  58860. name: "Back (NSFW)",
  58861. image: {
  58862. source: "./media/characters/tarken/back-nsfw.svg",
  58863. extra: 756/720,
  58864. bottom: 35/791
  58865. }
  58866. },
  58867. head: {
  58868. height: math.unit(2.22, "feet"),
  58869. name: "Head",
  58870. image: {
  58871. source: "./media/characters/tarken/head.svg"
  58872. }
  58873. },
  58874. tail: {
  58875. height: math.unit(5.25, "feet"),
  58876. name: "Tail",
  58877. image: {
  58878. source: "./media/characters/tarken/tail.svg"
  58879. }
  58880. },
  58881. dick: {
  58882. height: math.unit(1.95, "feet"),
  58883. name: "Dick",
  58884. image: {
  58885. source: "./media/characters/tarken/dick.svg"
  58886. }
  58887. },
  58888. hand: {
  58889. height: math.unit(1.78, "feet"),
  58890. name: "Hand",
  58891. image: {
  58892. source: "./media/characters/tarken/hand.svg"
  58893. }
  58894. },
  58895. beam: {
  58896. height: math.unit(1.5, "feet"),
  58897. name: "Beam",
  58898. image: {
  58899. source: "./media/characters/tarken/beam.svg"
  58900. }
  58901. },
  58902. },
  58903. [
  58904. {
  58905. name: "Original Size",
  58906. height: math.unit(2.5, "meters")
  58907. },
  58908. {
  58909. name: "Macro",
  58910. height: math.unit(150, "meters"),
  58911. default: true
  58912. },
  58913. {
  58914. name: "Macro+",
  58915. height: math.unit(300, "meters")
  58916. },
  58917. {
  58918. name: "Mega",
  58919. height: math.unit(2, "km")
  58920. },
  58921. {
  58922. name: "Mega+",
  58923. height: math.unit(35, "km")
  58924. },
  58925.  {
  58926. name: "Mega++",
  58927. height: math.unit(60, "km")
  58928. },
  58929. {
  58930. name: "Giga",
  58931. height: math.unit(200, "km")
  58932. },
  58933. {
  58934. name: "Giga+",
  58935. height: math.unit(2500, "km")
  58936. },
  58937. {
  58938. name: "Giga++",
  58939. height: math.unit(6600, "km")
  58940. },
  58941. {
  58942. name: "Terra",
  58943. height: math.unit(20000, "km")
  58944. },
  58945. {
  58946. name: "Terra+",
  58947. height: math.unit(300000, "km")
  58948. },
  58949. ]
  58950. ))
  58951. characterMakers.push(() => makeCharacter(
  58952. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58953. {
  58954. magpie_dressed: {
  58955. height: math.unit(1.7, "meters"),
  58956. weight: math.unit(70, "kg"),
  58957. name: "Dressed",
  58958. image: {
  58959. source: "./media/characters/otreus/magpie-dressed.svg",
  58960. extra: 691/672,
  58961. bottom: 116/807
  58962. },
  58963. form: "magpie",
  58964. default: true
  58965. },
  58966. magpie_nude: {
  58967. height: math.unit(1.7, "meters"),
  58968. weight: math.unit(70, "kg"),
  58969. name: "Nude",
  58970. image: {
  58971. source: "./media/characters/otreus/magpie-nude.svg",
  58972. extra: 691/672,
  58973. bottom: 116/807
  58974. },
  58975. form: "magpie",
  58976. },
  58977. magpie_dressedLewd: {
  58978. height: math.unit(1.7, "meters"),
  58979. weight: math.unit(70, "kg"),
  58980. name: "Dressed (Lewd)",
  58981. image: {
  58982. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58983. extra: 691/672,
  58984. bottom: 116/807
  58985. },
  58986. form: "magpie",
  58987. },
  58988. magpie_nudeLewd: {
  58989. height: math.unit(1.7, "meters"),
  58990. weight: math.unit(70, "kg"),
  58991. name: "Nude (Lewd)",
  58992. image: {
  58993. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58994. extra: 691/672,
  58995. bottom: 116/807
  58996. },
  58997. form: "magpie",
  58998. },
  58999. magpie_leftFoot: {
  59000. height: math.unit(1.58, "feet"),
  59001. name: "Left Foot",
  59002. image: {
  59003. source: "./media/characters/otreus/magpie-left-foot.svg"
  59004. },
  59005. form: "magpie",
  59006. },
  59007. magpie_rightFoot: {
  59008. height: math.unit(1.58, "feet"),
  59009. name: "Right Foot",
  59010. image: {
  59011. source: "./media/characters/otreus/magpie-right-foot.svg"
  59012. },
  59013. form: "magpie",
  59014. },
  59015. magpie_wingspan: {
  59016. height: math.unit(2, "meters"),
  59017. weight: math.unit(70, "kg"),
  59018. name: "Wingspan",
  59019. image: {
  59020. source: "./media/characters/otreus/magpie-wingspan.svg"
  59021. },
  59022. extraAttributes: {
  59023. "wingspan": {
  59024. name: "Wingspan",
  59025. power: 1,
  59026. type: "length",
  59027. base: math.unit(3.35, "meters")
  59028. },
  59029. },
  59030. form: "magpie",
  59031. },
  59032. hippogriff_dressed: {
  59033. height: math.unit(1.7, "meters"),
  59034. weight: math.unit(70, "kg"),
  59035. name: "Dressed",
  59036. image: {
  59037. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59038. extra: 710/689,
  59039. bottom: 67/777
  59040. },
  59041. form: "hippogriff",
  59042. default: true
  59043. },
  59044. hippogriff_nude: {
  59045. height: math.unit(1.7, "meters"),
  59046. weight: math.unit(70, "kg"),
  59047. name: "Nude",
  59048. image: {
  59049. source: "./media/characters/otreus/hippogriff-nude.svg",
  59050. extra: 710/689,
  59051. bottom: 67/777
  59052. },
  59053. form: "hippogriff",
  59054. },
  59055. hippogriff_dressedLewd: {
  59056. height: math.unit(1.7, "meters"),
  59057. weight: math.unit(70, "kg"),
  59058. name: "Dressed (Lewd)",
  59059. image: {
  59060. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59061. extra: 710/689,
  59062. bottom: 67/777
  59063. },
  59064. form: "hippogriff",
  59065. },
  59066. hippogriff_nudeLewd: {
  59067. height: math.unit(1.7, "meters"),
  59068. weight: math.unit(70, "kg"),
  59069. name: "Nude (Lewd)",
  59070. image: {
  59071. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59072. extra: 710/689,
  59073. bottom: 67/777
  59074. },
  59075. form: "hippogriff",
  59076. },
  59077. },
  59078. [
  59079. {
  59080. name: "Original Size",
  59081. height: math.unit(1.7, "meters"),
  59082. allForms: true
  59083. },
  59084. {
  59085. name: "Incognito Size",
  59086. height: math.unit(2, "meters"),
  59087. allForms: true
  59088. },
  59089. {
  59090. name: "Mega",
  59091. height: math.unit(2, "km"),
  59092. allForms: true
  59093. },
  59094. {
  59095. name: "Mega+",
  59096. height: math.unit(40, "km"),
  59097. allForms: true
  59098. },
  59099. {
  59100. name: "Giga",
  59101. height: math.unit(250, "km"),
  59102. allForms: true
  59103. },
  59104. {
  59105. name: "Giga+",
  59106. height: math.unit(3000, "km"),
  59107. allForms: true
  59108. },
  59109. {
  59110. name: "Terra",
  59111. height: math.unit(20000, "km"),
  59112. allForms: true
  59113. },
  59114. {
  59115. name: "Solar (Home Size)",
  59116. height: math.unit(3e6, "km"),
  59117. allForms: true,
  59118. default: true
  59119. },
  59120. ],
  59121. {
  59122. "magpie": {
  59123. name: "Magpie",
  59124. default: true
  59125. },
  59126. "hippogriff": {
  59127. name: "Hippogriff",
  59128. },
  59129. }
  59130. ))
  59131. characterMakers.push(() => makeCharacter(
  59132. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59133. {
  59134. frontDressed: {
  59135. height: math.unit(1.8, "meters"),
  59136. weight: math.unit(90, "kg"),
  59137. name: "Front (Dressed)",
  59138. image: {
  59139. source: "./media/characters/thalia/front-dressed.svg",
  59140. extra: 478/402,
  59141. bottom: 55/533
  59142. }
  59143. },
  59144. backDressed: {
  59145. height: math.unit(1.8, "meters"),
  59146. weight: math.unit(90, "kg"),
  59147. name: "Back (Dressed)",
  59148. image: {
  59149. source: "./media/characters/thalia/back-dressed.svg",
  59150. extra: 500/424,
  59151. bottom: 15/515
  59152. }
  59153. },
  59154. frontNude: {
  59155. height: math.unit(1.8, "meters"),
  59156. weight: math.unit(90, "kg"),
  59157. name: "Front (Nude)",
  59158. image: {
  59159. source: "./media/characters/thalia/front-nude.svg",
  59160. extra: 478/402,
  59161. bottom: 55/533
  59162. }
  59163. },
  59164. backNude: {
  59165. height: math.unit(1.8, "meters"),
  59166. weight: math.unit(90, "kg"),
  59167. name: "Back (Nude)",
  59168. image: {
  59169. source: "./media/characters/thalia/back-nude.svg",
  59170. extra: 500/424,
  59171. bottom: 15/515
  59172. }
  59173. },
  59174. },
  59175. [
  59176. {
  59177. name: "Incognito",
  59178. height: math.unit(3, "meters")
  59179. },
  59180. {
  59181. name: "Macro",
  59182. height: math.unit(500, "meters")
  59183. },
  59184. {
  59185. name: "Mega",
  59186. height: math.unit(5, "km")
  59187. },
  59188. {
  59189. name: "Mega+",
  59190. height: math.unit(30, "km")
  59191. },
  59192. {
  59193. name: "Giga",
  59194. height: math.unit(350, "km")
  59195. },
  59196. {
  59197. name: "Giga+",
  59198. height: math.unit(4000, "km")
  59199. },
  59200. {
  59201. name: "Terra",
  59202. height: math.unit(35000, "km")
  59203. },
  59204. {
  59205. name: "Original Size",
  59206. height: math.unit(130000, "km")
  59207. },
  59208. {
  59209. name: "Solar (Home Size)",
  59210. height: math.unit(4e6, "km"),
  59211. default: true
  59212. },
  59213. ]
  59214. ))
  59215. characterMakers.push(() => makeCharacter(
  59216. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59217. {
  59218. front: {
  59219. height: math.unit(1.8, "meters"),
  59220. weight: math.unit(95, "kg"),
  59221. name: "Front",
  59222. image: {
  59223. source: "./media/characters/shango/front.svg",
  59224. extra: 1925/1774,
  59225. bottom: 67/1992
  59226. }
  59227. },
  59228. back: {
  59229. height: math.unit(1.8, "meters"),
  59230. weight: math.unit(95, "kg"),
  59231. name: "Back",
  59232. image: {
  59233. source: "./media/characters/shango/back.svg",
  59234. extra: 1915/1766,
  59235. bottom: 52/1967
  59236. }
  59237. },
  59238. frontLewd: {
  59239. height: math.unit(1.8, "meters"),
  59240. weight: math.unit(95, "kg"),
  59241. name: "Front (Lewd)",
  59242. image: {
  59243. source: "./media/characters/shango/front-lewd.svg",
  59244. extra: 1925/1774,
  59245. bottom: 67/1992
  59246. }
  59247. },
  59248. backLewd: {
  59249. height: math.unit(1.8, "meters"),
  59250. weight: math.unit(95, "kg"),
  59251. name: "Back (Lewd)",
  59252. image: {
  59253. source: "./media/characters/shango/back-lewd.svg",
  59254. extra: 1915/1766,
  59255. bottom: 52/1967
  59256. }
  59257. },
  59258. maw: {
  59259. height: math.unit(1.64, "feet"),
  59260. name: "Maw",
  59261. image: {
  59262. source: "./media/characters/shango/maw.svg"
  59263. }
  59264. },
  59265. dick: {
  59266. height: math.unit(2.14, "feet"),
  59267. name: "Dick",
  59268. image: {
  59269. source: "./media/characters/shango/dick.svg"
  59270. }
  59271. },
  59272. },
  59273. [
  59274. {
  59275. name: "Incognito",
  59276. height: math.unit(1.8, "meters")
  59277. },
  59278. {
  59279. name: "Home Size",
  59280. height: math.unit(60, "meters"),
  59281. default: true
  59282. },
  59283. {
  59284. name: "Macro",
  59285. height: math.unit(450, "meters")
  59286. },
  59287. {
  59288. name: "Mega",
  59289. height: math.unit(6, "km")
  59290. },
  59291. {
  59292. name: "Mega+",
  59293. height: math.unit(35, "km")
  59294. },
  59295. {
  59296. name: "Giga",
  59297. height: math.unit(500, "km")
  59298. },
  59299. {
  59300. name: "Giga+",
  59301. height: math.unit(5000, "km")
  59302. },
  59303. {
  59304. name: "Terra",
  59305. height: math.unit(60000, "km")
  59306. },
  59307. {
  59308. name: "Terra+",
  59309. height: math.unit(400000, "km")
  59310. },
  59311. ]
  59312. ))
  59313. characterMakers.push(() => makeCharacter(
  59314. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59315. {
  59316. front: {
  59317. height: math.unit(2, "meters"),
  59318. weight: math.unit(95, "kg"),
  59319. name: "Front",
  59320. image: {
  59321. source: "./media/characters/osiris-gryphon/front.svg",
  59322. extra: 1508/1313,
  59323. bottom: 87/1595
  59324. }
  59325. },
  59326. back: {
  59327. height: math.unit(2, "meters"),
  59328. weight: math.unit(95, "kg"),
  59329. name: "Back",
  59330. image: {
  59331. source: "./media/characters/osiris-gryphon/back.svg",
  59332. extra: 1436/1309,
  59333. bottom: 64/1500
  59334. }
  59335. },
  59336. frontLewd: {
  59337. height: math.unit(2, "meters"),
  59338. weight: math.unit(95, "kg"),
  59339. name: "Front-lewd",
  59340. image: {
  59341. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59342. extra: 1508/1313,
  59343. bottom: 87/1595
  59344. }
  59345. },
  59346. wing: {
  59347. height: math.unit(6.3333, "feet"),
  59348. name: "Wing",
  59349. image: {
  59350. source: "./media/characters/osiris-gryphon/wing.svg"
  59351. }
  59352. },
  59353. },
  59354. [
  59355. {
  59356. name: "Incognito",
  59357. height: math.unit(2, "meters")
  59358. },
  59359. {
  59360. name: "Home Size",
  59361. height: math.unit(30, "meters"),
  59362. default: true
  59363. },
  59364. {
  59365. name: "Macro",
  59366. height: math.unit(100, "meters")
  59367. },
  59368. {
  59369. name: "Macro+",
  59370. height: math.unit(350, "meters")
  59371. },
  59372. {
  59373. name: "Mega",
  59374. height: math.unit(40, "km")
  59375. },
  59376. {
  59377. name: "Giga",
  59378. height: math.unit(300, "km")
  59379. },
  59380. {
  59381. name: "Giga+",
  59382. height: math.unit(2000, "km")
  59383. },
  59384. {
  59385. name: "Terra",
  59386. height: math.unit(30000, "km")
  59387. },
  59388. ]
  59389. ))
  59390. characterMakers.push(() => makeCharacter(
  59391. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59392. {
  59393. front: {
  59394. height: math.unit(2.5, "meters"),
  59395. weight: math.unit(200, "kg"),
  59396. name: "Front",
  59397. image: {
  59398. source: "./media/characters/atlas-dragon/front.svg",
  59399. extra: 745/462,
  59400. bottom: 36/781
  59401. }
  59402. },
  59403. back: {
  59404. height: math.unit(2.5, "meters"),
  59405. weight: math.unit(200, "kg"),
  59406. name: "Back",
  59407. image: {
  59408. source: "./media/characters/atlas-dragon/back.svg",
  59409. extra: 848/822,
  59410. bottom: 57/905
  59411. }
  59412. },
  59413. frontLewd: {
  59414. height: math.unit(2.5, "meters"),
  59415. weight: math.unit(200, "kg"),
  59416. name: "Front (Lewd)",
  59417. image: {
  59418. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59419. extra: 745/462,
  59420. bottom: 36/781
  59421. }
  59422. },
  59423. backLewd: {
  59424. height: math.unit(2.5, "meters"),
  59425. weight: math.unit(200, "kg"),
  59426. name: "Back (Lewd)",
  59427. image: {
  59428. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59429. extra: 848/822,
  59430. bottom: 57/905
  59431. }
  59432. },
  59433. },
  59434. [
  59435. {
  59436. name: "Incognito",
  59437. height: math.unit(2.5, "meters")
  59438. },
  59439. {
  59440. name: "Small Macro",
  59441. height: math.unit(50, "meters")
  59442. },
  59443. {
  59444. name: "Macro",
  59445. height: math.unit(350, "meters")
  59446. },
  59447. {
  59448. name: "Mega",
  59449. height: math.unit(5.5, "kilometers")
  59450. },
  59451. {
  59452. name: "Mega+",
  59453. height: math.unit(50, "km")
  59454. },
  59455. {
  59456. name: "Giga",
  59457. height: math.unit(350, "km")
  59458. },
  59459. {
  59460. name: "Giga+",
  59461. height: math.unit(2000, "km")
  59462. },
  59463. {
  59464. name: "Giga++",
  59465. height: math.unit(6500, "km")
  59466. },
  59467. {
  59468. name: "Terra",
  59469. height: math.unit(30000, "km")
  59470. },
  59471. {
  59472. name: "Terra+",
  59473. height: math.unit(250000, "km")
  59474. },
  59475. {
  59476. name: "True Size",
  59477. height: math.unit(100, "multiverses"),
  59478. default: true
  59479. },
  59480. ]
  59481. ))
  59482. characterMakers.push(() => makeCharacter(
  59483. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59484. {
  59485. front: {
  59486. height: math.unit(1.8, "m"),
  59487. weight: math.unit(120, "kg"),
  59488. name: "Front",
  59489. image: {
  59490. source: "./media/characters/chey/front.svg",
  59491. extra: 1359/1270,
  59492. bottom: 18/1377
  59493. }
  59494. },
  59495. arm: {
  59496. height: math.unit(2.05, "feet"),
  59497. name: "Arm",
  59498. image: {
  59499. source: "./media/characters/chey/arm.svg"
  59500. }
  59501. },
  59502. head: {
  59503. height: math.unit(1.89, "feet"),
  59504. name: "Head",
  59505. image: {
  59506. source: "./media/characters/chey/head.svg"
  59507. }
  59508. },
  59509. },
  59510. [
  59511. {
  59512. name: "Original Size",
  59513. height: math.unit(5, "cm")
  59514. },
  59515. {
  59516. name: "Incognito Size",
  59517. height: math.unit(2.4, "m")
  59518. },
  59519. {
  59520. name: "Home Size",
  59521. height: math.unit(200, "meters"),
  59522. default: true
  59523. },
  59524. {
  59525. name: "Mega",
  59526. height: math.unit(2, "km")
  59527. },
  59528. {
  59529. name: "Giga (Preferred Size)",
  59530. height: math.unit(2000, "km")
  59531. },
  59532. {
  59533. name: "Giga+",
  59534. height: math.unit(6000, "km")
  59535. },
  59536. {
  59537. name: "Terra",
  59538. height: math.unit(17000, "km")
  59539. },
  59540. {
  59541. name: "Terra+",
  59542. height: math.unit(75000, "km")
  59543. },
  59544. {
  59545. name: "Terra++",
  59546. height: math.unit(225000, "km")
  59547. },
  59548. ]
  59549. ))
  59550. characterMakers.push(() => makeCharacter(
  59551. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59552. {
  59553. side: {
  59554. height: math.unit(7.8, "meters"),
  59555. name: "Side",
  59556. image: {
  59557. source: "./media/characters/ragnarok/side.svg",
  59558. extra: 725/621,
  59559. bottom: 72/797
  59560. }
  59561. },
  59562. },
  59563. [
  59564. {
  59565. name: "Normal",
  59566. height: math.unit(7.8, "meters"),
  59567. default: true
  59568. },
  59569. ]
  59570. ))
  59571. characterMakers.push(() => makeCharacter(
  59572. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59573. {
  59574. hyena_front: {
  59575. height: math.unit(2.1, "meters"),
  59576. weight: math.unit(110, "kg"),
  59577. name: "Front",
  59578. image: {
  59579. source: "./media/characters/nima/hyena-front.svg",
  59580. extra: 1904/1796,
  59581. bottom: 67/1971
  59582. },
  59583. form: "hyena",
  59584. },
  59585. hyena_back: {
  59586. height: math.unit(2.1, "meters"),
  59587. weight: math.unit(110, "kg"),
  59588. name: "Back",
  59589. image: {
  59590. source: "./media/characters/nima/hyena-back.svg",
  59591. extra: 1964/1884,
  59592. bottom: 35/1999
  59593. },
  59594. form: "hyena",
  59595. },
  59596. shark_front: {
  59597. height: math.unit(1.95, "meters"),
  59598. weight: math.unit(110, "kg"),
  59599. name: "Front",
  59600. image: {
  59601. source: "./media/characters/nima/shark-front.svg",
  59602. extra: 2238/2013,
  59603. bottom: 0/223
  59604. },
  59605. form: "shark",
  59606. },
  59607. paw: {
  59608. height: math.unit(1, "feet"),
  59609. name: "Paw",
  59610. image: {
  59611. source: "./media/characters/nima/paw.svg"
  59612. }
  59613. },
  59614. circlet: {
  59615. height: math.unit(0.3, "feet"),
  59616. name: "Circlet",
  59617. image: {
  59618. source: "./media/characters/nima/circlet.svg"
  59619. }
  59620. },
  59621. necklace: {
  59622. height: math.unit(1.2, "feet"),
  59623. name: "Necklace",
  59624. image: {
  59625. source: "./media/characters/nima/necklace.svg"
  59626. }
  59627. },
  59628. bracelet: {
  59629. height: math.unit(0.51, "feet"),
  59630. name: "Bracelet",
  59631. image: {
  59632. source: "./media/characters/nima/bracelet.svg"
  59633. }
  59634. },
  59635. armband: {
  59636. height: math.unit(1.3, "feet"),
  59637. name: "Armband",
  59638. image: {
  59639. source: "./media/characters/nima/armband.svg"
  59640. }
  59641. },
  59642. },
  59643. [
  59644. {
  59645. name: "Incognito",
  59646. height: math.unit(2.1, "meters"),
  59647. allForms: true
  59648. },
  59649. {
  59650. name: "Small Macro",
  59651. height: math.unit(50, "meters"),
  59652. allForms: true
  59653. },
  59654. {
  59655. name: "Macro",
  59656. height: math.unit(200, "meters"),
  59657. allForms: true
  59658. },
  59659. {
  59660. name: "Mega",
  59661. height: math.unit(2.5, "km"),
  59662. allForms: true
  59663. },
  59664. {
  59665. name: "Mega+",
  59666. height: math.unit(30, "km"),
  59667. allForms: true
  59668. },
  59669. {
  59670. name: "Giga (Home Size)",
  59671. height: math.unit(400, "km"),
  59672. allForms: true,
  59673. default: true
  59674. },
  59675. {
  59676. name: "Giga+",
  59677. height: math.unit(2500, "km"),
  59678. allForms: true
  59679. },
  59680. {
  59681. name: "Giga++",
  59682. height: math.unit(8000, "km"),
  59683. allForms: true
  59684. },
  59685. {
  59686. name: "Terra",
  59687. height: math.unit(20000, "km"),
  59688. allForms: true
  59689. },
  59690. {
  59691. name: "Terra+",
  59692. height: math.unit(70000, "km"),
  59693. allForms: true
  59694. },
  59695. {
  59696. name: "Terra++",
  59697. height: math.unit(600000, "km"),
  59698. allForms: true
  59699. },
  59700. {
  59701. name: "Galactic",
  59702. height: math.unit(40, "galaxies"),
  59703. allForms: true
  59704. },
  59705. {
  59706. name: "Universal",
  59707. height: math.unit(40, "universes"),
  59708. allForms: true
  59709. },
  59710. ],
  59711. {
  59712. "hyena": {
  59713. name: "Hyena",
  59714. default: true
  59715. },
  59716. "shark": {
  59717. name: "Shark",
  59718. },
  59719. }
  59720. ))
  59721. characterMakers.push(() => makeCharacter(
  59722. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59723. {
  59724. anthro_front: {
  59725. height: math.unit(1.5, "meters"),
  59726. name: "Front",
  59727. image: {
  59728. source: "./media/characters/adelaide/anthro-front.svg",
  59729. extra: 860/783,
  59730. bottom: 60/920
  59731. },
  59732. form: "anthro",
  59733. default: true
  59734. },
  59735. hand: {
  59736. height: math.unit(0.65, "feet"),
  59737. name: "Hand",
  59738. image: {
  59739. source: "./media/characters/adelaide/hand.svg"
  59740. },
  59741. form: "anthro"
  59742. },
  59743. foot: {
  59744. height: math.unit(1.38 * 259 / 314, "feet"),
  59745. name: "Foot",
  59746. image: {
  59747. source: "./media/characters/adelaide/foot.svg",
  59748. extra: 259/259,
  59749. bottom: 55/314
  59750. },
  59751. form: "anthro"
  59752. },
  59753. feather: {
  59754. height: math.unit(0.85, "feet"),
  59755. name: "Feather",
  59756. image: {
  59757. source: "./media/characters/adelaide/feather.svg"
  59758. },
  59759. form: "anthro"
  59760. },
  59761. feral_side: {
  59762. height: math.unit(1, "meters"),
  59763. name: "Side",
  59764. image: {
  59765. source: "./media/characters/adelaide/feral-side.svg",
  59766. extra: 550/467,
  59767. bottom: 37/587
  59768. },
  59769. form: "feral",
  59770. default: true
  59771. },
  59772. feral_hand: {
  59773. height: math.unit(0.58, "feet"),
  59774. name: "Hand",
  59775. image: {
  59776. source: "./media/characters/adelaide/hand.svg"
  59777. },
  59778. form: "feral"
  59779. },
  59780. feral_foot: {
  59781. height: math.unit(1.2 * 259 / 314, "feet"),
  59782. name: "Foot",
  59783. image: {
  59784. source: "./media/characters/adelaide/foot.svg",
  59785. extra: 259/259,
  59786. bottom: 55/314
  59787. },
  59788. form: "feral"
  59789. },
  59790. feral_feather: {
  59791. height: math.unit(0.63, "feet"),
  59792. name: "Feather",
  59793. image: {
  59794. source: "./media/characters/adelaide/feather.svg"
  59795. },
  59796. form: "feral"
  59797. },
  59798. },
  59799. [
  59800. {
  59801. name: "Normal",
  59802. height: math.unit(1.5, "meters"),
  59803. form: "anthro",
  59804. default: true
  59805. },
  59806. {
  59807. name: "Normal",
  59808. height: math.unit(1, "meters"),
  59809. form: "feral",
  59810. default: true
  59811. },
  59812. ],
  59813. {
  59814. "anthro": {
  59815. name: "Anthro",
  59816. default: true
  59817. },
  59818. "feral": {
  59819. name: "Feral",
  59820. },
  59821. }
  59822. ))
  59823. characterMakers.push(() => makeCharacter(
  59824. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59825. {
  59826. front: {
  59827. height: math.unit(2.5, "meters"),
  59828. name: "Front",
  59829. image: {
  59830. source: "./media/characters/goa/front.svg",
  59831. extra: 1109/1013,
  59832. bottom: 150/1259
  59833. }
  59834. },
  59835. },
  59836. [
  59837. {
  59838. name: "Normal",
  59839. height: math.unit(2.5, "meters"),
  59840. default: true
  59841. },
  59842. ]
  59843. ))
  59844. characterMakers.push(() => makeCharacter(
  59845. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59846. {
  59847. front: {
  59848. height: math.unit(2, "meters"),
  59849. weight: math.unit(100, "kg"),
  59850. name: "Front",
  59851. image: {
  59852. source: "./media/characters/kiki-weavile/front.svg",
  59853. extra: 357/332,
  59854. bottom: 60/417
  59855. }
  59856. },
  59857. },
  59858. [
  59859. {
  59860. name: "Normal",
  59861. height: math.unit(2, "meters"),
  59862. default: true
  59863. },
  59864. ]
  59865. ))
  59866. characterMakers.push(() => makeCharacter(
  59867. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59868. {
  59869. side: {
  59870. height: math.unit(1.6, "meters"),
  59871. name: "Side",
  59872. image: {
  59873. source: "./media/characters/liza/side.svg",
  59874. extra: 943/915,
  59875. bottom: 72/1015
  59876. }
  59877. },
  59878. },
  59879. [
  59880. {
  59881. name: "Normal",
  59882. height: math.unit(1.6, "meters"),
  59883. default: true
  59884. },
  59885. ]
  59886. ))
  59887. characterMakers.push(() => makeCharacter(
  59888. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59889. {
  59890. side: {
  59891. height: math.unit(2.5, "meters"),
  59892. preyCapacity: math.unit(1, "people"),
  59893. name: "Side",
  59894. image: {
  59895. source: "./media/characters/persephone-sweetbreath/side.svg",
  59896. extra: 796/700,
  59897. bottom: 44/840
  59898. }
  59899. },
  59900. sideVore: {
  59901. height: math.unit(2.5, "meters"),
  59902. preyCapacity: math.unit(1, "people"),
  59903. name: "Side (Full)",
  59904. image: {
  59905. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59906. extra: 796/700,
  59907. bottom: 44/840
  59908. }
  59909. },
  59910. },
  59911. [
  59912. {
  59913. name: "Normal",
  59914. height: math.unit(2.5, "meters"),
  59915. default: true
  59916. },
  59917. ]
  59918. ))
  59919. characterMakers.push(() => makeCharacter(
  59920. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59921. {
  59922. front: {
  59923. height: math.unit(32, "meters"),
  59924. name: "Front",
  59925. image: {
  59926. source: "./media/characters/pierce/front.svg",
  59927. extra: 1695/1475,
  59928. bottom: 185/1880
  59929. }
  59930. },
  59931. side: {
  59932. height: math.unit(32, "meters"),
  59933. name: "Side",
  59934. image: {
  59935. source: "./media/characters/pierce/side.svg",
  59936. extra: 974/859,
  59937. bottom: 43/1017
  59938. }
  59939. },
  59940. frontWingless: {
  59941. height: math.unit(32, "meters"),
  59942. name: "Front (Wingless)",
  59943. image: {
  59944. source: "./media/characters/pierce/front-wingless.svg",
  59945. extra: 1695/1475,
  59946. bottom: 185/1880
  59947. }
  59948. },
  59949. sideWingless: {
  59950. height: math.unit(32, "meters"),
  59951. name: "Side (Wingless)",
  59952. image: {
  59953. source: "./media/characters/pierce/side-wingless.svg",
  59954. extra: 974/859,
  59955. bottom: 43/1017
  59956. }
  59957. },
  59958. maw: {
  59959. height: math.unit(19.3, "meters"),
  59960. name: "Maw",
  59961. image: {
  59962. source: "./media/characters/pierce/maw.svg"
  59963. }
  59964. },
  59965. },
  59966. [
  59967. {
  59968. name: "Small",
  59969. height: math.unit(8.5, "meters")
  59970. },
  59971. {
  59972. name: "Normal",
  59973. height: math.unit(32, "meters"),
  59974. default: true
  59975. },
  59976. ]
  59977. ))
  59978. characterMakers.push(() => makeCharacter(
  59979. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59980. {
  59981. front: {
  59982. height: math.unit(2.3, "meters"),
  59983. weight: math.unit(165, "kg"),
  59984. name: "Front",
  59985. image: {
  59986. source: "./media/characters/shira/front.svg",
  59987. extra: 924/919,
  59988. bottom: 17/941
  59989. },
  59990. form: "cobra",
  59991. default: true
  59992. },
  59993. back: {
  59994. height: math.unit(2.3, "meters"),
  59995. weight: math.unit(165, "kg"),
  59996. name: "Back",
  59997. image: {
  59998. source: "./media/characters/shira/back.svg",
  59999. extra: 928/922,
  60000. bottom: 18/946
  60001. },
  60002. form: "cobra"
  60003. },
  60004. frontLewd: {
  60005. height: math.unit(2.3, "meters"),
  60006. weight: math.unit(165, "kg"),
  60007. name: "Front (Lewd)",
  60008. image: {
  60009. source: "./media/characters/shira/front-lewd.svg",
  60010. extra: 924/919,
  60011. bottom: 17/941
  60012. },
  60013. form: "cobra"
  60014. },
  60015. backLewd: {
  60016. height: math.unit(2.3, "meters"),
  60017. weight: math.unit(165, "kg"),
  60018. name: "Back (Lewd)",
  60019. image: {
  60020. source: "./media/characters/shira/back-lewd.svg",
  60021. extra: 928/922,
  60022. bottom: 18/946
  60023. },
  60024. form: "cobra"
  60025. },
  60026. maw: {
  60027. height: math.unit(1.14, "feet"),
  60028. name: "Maw",
  60029. image: {
  60030. source: "./media/characters/shira/maw.svg"
  60031. },
  60032. form: "cobra"
  60033. },
  60034. magma_front: {
  60035. height: math.unit(2.3, "meters"),
  60036. weight: math.unit(165, "kg"),
  60037. name: "Front",
  60038. image: {
  60039. source: "./media/characters/shira/magma-front.svg",
  60040. extra: 1870/1693,
  60041. bottom: 24/1894
  60042. },
  60043. form: "magma",
  60044. },
  60045. magma_back: {
  60046. height: math.unit(2.3, "meters"),
  60047. weight: math.unit(165, "kg"),
  60048. name: "Back",
  60049. image: {
  60050. source: "./media/characters/shira/magma-back.svg",
  60051. extra: 1918/1756,
  60052. bottom: 46/1964
  60053. },
  60054. form: "magma",
  60055. },
  60056. },
  60057. [
  60058. {
  60059. name: "Incognito",
  60060. height: math.unit(2.3, "meters"),
  60061. allForms: true
  60062. },
  60063. {
  60064. name: "Home Size",
  60065. height: math.unit(150, "meters"),
  60066. default: true,
  60067. allForms: true
  60068. },
  60069. {
  60070. name: "Macro",
  60071. height: math.unit(2, "km"),
  60072. allForms: true
  60073. },
  60074. {
  60075. name: "Mega",
  60076. height: math.unit(30, "km"),
  60077. allForms: true
  60078. },
  60079. {
  60080. name: "Giga",
  60081. height: math.unit(450, "km"),
  60082. allForms: true
  60083. },
  60084. {
  60085. name: "Giga+",
  60086. height: math.unit(3000, "km"),
  60087. allForms: true
  60088. },
  60089. {
  60090. name: "Giga++",
  60091. height: math.unit(6000, "km"),
  60092. allForms: true
  60093. },
  60094. {
  60095. name: "Terra",
  60096. height: math.unit(80000, "km"),
  60097. allForms: true
  60098. },
  60099. {
  60100. name: "Terra+",
  60101. height: math.unit(350000, "km"),
  60102. allForms: true
  60103. },
  60104. {
  60105. name: "Solar",
  60106. height: math.unit(1e6, "km"),
  60107. allForms: true
  60108. },
  60109. ],
  60110. {
  60111. "cobra": {
  60112. name: "Cobra",
  60113. default: true
  60114. },
  60115. "magma": {
  60116. name: "Magma Dragon",
  60117. },
  60118. }
  60119. ))
  60120. characterMakers.push(() => makeCharacter(
  60121. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60122. {
  60123. front: {
  60124. height: math.unit(2, "meters"),
  60125. weight: math.unit(160, "kg"),
  60126. name: "Front",
  60127. image: {
  60128. source: "./media/characters/daxerios/front.svg",
  60129. extra: 1334/1277,
  60130. bottom: 45/1379
  60131. }
  60132. },
  60133. frontLewd: {
  60134. height: math.unit(2, "meters"),
  60135. weight: math.unit(160, "kg"),
  60136. name: "Front (Lewd)",
  60137. image: {
  60138. source: "./media/characters/daxerios/front-lewd.svg",
  60139. extra: 1334/1277,
  60140. bottom: 45/1379
  60141. }
  60142. },
  60143. dick: {
  60144. height: math.unit(2.35, "feet"),
  60145. name: "Dick",
  60146. image: {
  60147. source: "./media/characters/daxerios/dick.svg"
  60148. }
  60149. },
  60150. },
  60151. [
  60152. {
  60153. name: "\"Small\"",
  60154. height: math.unit(5, "meters")
  60155. },
  60156. {
  60157. name: "Original Size",
  60158. height: math.unit(500, "meters"),
  60159. default: true
  60160. },
  60161. {
  60162. name: "Mega",
  60163. height: math.unit(2, "km")
  60164. },
  60165. {
  60166. name: "Mega+",
  60167. height: math.unit(35, "km")
  60168. },
  60169. {
  60170. name: "Giga",
  60171. height: math.unit(250, "km")
  60172. },
  60173. {
  60174. name: "Giga+",
  60175. height: math.unit(3000, "km")
  60176. },
  60177. {
  60178. name: "Terra",
  60179. height: math.unit(25000, "km")
  60180. },
  60181. {
  60182. name: "Terra+",
  60183. height: math.unit(300000, "km")
  60184. },
  60185. {
  60186. name: "Solar",
  60187. height: math.unit(1e6, "km")
  60188. },
  60189. ]
  60190. ))
  60191. characterMakers.push(() => makeCharacter(
  60192. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60193. {
  60194. front: {
  60195. height: math.unit(8 + 4/12, "feet"),
  60196. weight: math.unit(464, "lb"),
  60197. name: "Front",
  60198. image: {
  60199. source: "./media/characters/caveat/front.svg",
  60200. extra: 1861/1678,
  60201. bottom: 40/1901
  60202. }
  60203. },
  60204. },
  60205. [
  60206. {
  60207. name: "Normal",
  60208. height: math.unit(8 + 4/12, "feet"),
  60209. default: true
  60210. },
  60211. ]
  60212. ))
  60213. characterMakers.push(() => makeCharacter(
  60214. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60215. {
  60216. front: {
  60217. height: math.unit(12, "feet"),
  60218. weight: math.unit(1800, "lb"),
  60219. name: "Front",
  60220. image: {
  60221. source: "./media/characters/centbair/front.svg",
  60222. extra: 781/663,
  60223. bottom: 25/806
  60224. }
  60225. },
  60226. frontNsfw: {
  60227. height: math.unit(12, "feet"),
  60228. weight: math.unit(1800, "lb"),
  60229. name: "Front (NSFW)",
  60230. image: {
  60231. source: "./media/characters/centbair/front-nsfw.svg",
  60232. extra: 781/663,
  60233. bottom: 25/806
  60234. }
  60235. },
  60236. back: {
  60237. height: math.unit(12, "feet"),
  60238. weight: math.unit(1800, "lb"),
  60239. name: "Back",
  60240. image: {
  60241. source: "./media/characters/centbair/back.svg",
  60242. extra: 808/761,
  60243. bottom: 19/827
  60244. }
  60245. },
  60246. dick: {
  60247. height: math.unit(6.5, "feet"),
  60248. name: "Dick",
  60249. image: {
  60250. source: "./media/characters/centbair/dick.svg"
  60251. }
  60252. },
  60253. slit: {
  60254. height: math.unit(3.25, "feet"),
  60255. name: "Slit",
  60256. image: {
  60257. source: "./media/characters/centbair/slit.svg"
  60258. }
  60259. },
  60260. },
  60261. [
  60262. {
  60263. name: "Normal",
  60264. height: math.unit(12, "feet"),
  60265. default: true
  60266. },
  60267. ]
  60268. ))
  60269. characterMakers.push(() => makeCharacter(
  60270. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60271. {
  60272. front: {
  60273. height: math.unit(5 + 7/12, "feet"),
  60274. name: "Front",
  60275. image: {
  60276. source: "./media/characters/andy/front.svg",
  60277. extra: 634/588,
  60278. bottom: 36/670
  60279. },
  60280. extraAttributes: {
  60281. "pawLength": {
  60282. name: "Paw Length",
  60283. power: 1,
  60284. type: "length",
  60285. base: math.unit(1, "feet")
  60286. },
  60287. }
  60288. },
  60289. side: {
  60290. height: math.unit(5 + 7/12, "feet"),
  60291. name: "Side",
  60292. image: {
  60293. source: "./media/characters/andy/side.svg",
  60294. extra: 641/596,
  60295. bottom: 34/675
  60296. },
  60297. extraAttributes: {
  60298. "pawLength": {
  60299. name: "Paw Length",
  60300. power: 1,
  60301. type: "length",
  60302. base: math.unit(1, "feet")
  60303. },
  60304. }
  60305. },
  60306. back: {
  60307. height: math.unit(5 + 7/12, "feet"),
  60308. name: "Back",
  60309. image: {
  60310. source: "./media/characters/andy/back.svg",
  60311. extra: 618/583,
  60312. bottom: 39/657
  60313. },
  60314. extraAttributes: {
  60315. "pawLength": {
  60316. name: "Paw Length",
  60317. power: 1,
  60318. type: "length",
  60319. base: math.unit(1, "feet")
  60320. },
  60321. }
  60322. },
  60323. paw: {
  60324. height: math.unit(1.13, "feet"),
  60325. name: "Paw",
  60326. image: {
  60327. source: "./media/characters/andy/paw.svg"
  60328. }
  60329. },
  60330. },
  60331. [
  60332. {
  60333. name: "Micro",
  60334. height: math.unit(4, "inches")
  60335. },
  60336. {
  60337. name: "Normal",
  60338. height: math.unit(5 + 7/12, "feet"),
  60339. default: true
  60340. },
  60341. {
  60342. name: "Macro",
  60343. height: math.unit(390.42, "feet")
  60344. },
  60345. ]
  60346. ))
  60347. characterMakers.push(() => makeCharacter(
  60348. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60349. {
  60350. front: {
  60351. height: math.unit(7, "feet"),
  60352. weight: math.unit(250, "lb"),
  60353. name: "Front",
  60354. image: {
  60355. source: "./media/characters/vix-titan/front.svg",
  60356. extra: 460/428,
  60357. bottom: 15/475
  60358. },
  60359. extraAttributes: {
  60360. "pawWidth": {
  60361. name: "Paw Width",
  60362. power: 1,
  60363. type: "length",
  60364. base: math.unit(0.75, "feet")
  60365. },
  60366. }
  60367. },
  60368. },
  60369. [
  60370. {
  60371. name: "Normal",
  60372. height: math.unit(7, "feet"),
  60373. default: true
  60374. },
  60375. {
  60376. name: "Giant",
  60377. height: math.unit(1500, "feet")
  60378. },
  60379. {
  60380. name: "Mega",
  60381. height: math.unit(10, "miles")
  60382. },
  60383. {
  60384. name: "Giga",
  60385. height: math.unit(150, "miles")
  60386. },
  60387. {
  60388. name: "Tera",
  60389. height: math.unit(144000, "miles")
  60390. },
  60391. ]
  60392. ))
  60393. characterMakers.push(() => makeCharacter(
  60394. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60395. {
  60396. front: {
  60397. height: math.unit(6 + 2/12, "feet"),
  60398. name: "Front",
  60399. image: {
  60400. source: "./media/characters/reiku/front.svg",
  60401. extra: 1910/1757,
  60402. bottom: 103/2013
  60403. },
  60404. extraAttributes: {
  60405. "thighThickness": {
  60406. name: "Thigh Thickness",
  60407. power: 1,
  60408. type: "length",
  60409. base: math.unit(1.12, "feet")
  60410. },
  60411. "assThickness": {
  60412. name: "Ass Thickness",
  60413. power: 1,
  60414. type: "length",
  60415. base: math.unit(1.12*2, "feet")
  60416. },
  60417. }
  60418. },
  60419. side: {
  60420. height: math.unit(6 + 2/12, "feet"),
  60421. name: "Side",
  60422. image: {
  60423. source: "./media/characters/reiku/side.svg",
  60424. extra: 1846/1748,
  60425. bottom: 99/1945
  60426. },
  60427. extraAttributes: {
  60428. "thighThickness": {
  60429. name: "Thigh Thickness",
  60430. power: 1,
  60431. type: "length",
  60432. base: math.unit(1.12, "feet")
  60433. },
  60434. "assThickness": {
  60435. name: "Ass Thickness",
  60436. power: 1,
  60437. type: "length",
  60438. base: math.unit(1.12*2, "feet")
  60439. },
  60440. }
  60441. },
  60442. back: {
  60443. height: math.unit(6 + 2/12, "feet"),
  60444. name: "Back",
  60445. image: {
  60446. source: "./media/characters/reiku/back.svg",
  60447. extra: 1941/1786,
  60448. bottom: 34/1975
  60449. },
  60450. extraAttributes: {
  60451. "thighThickness": {
  60452. name: "Thigh Thickness",
  60453. power: 1,
  60454. type: "length",
  60455. base: math.unit(1.12, "feet")
  60456. },
  60457. "assThickness": {
  60458. name: "Ass Thickness",
  60459. power: 1,
  60460. type: "length",
  60461. base: math.unit(1.12*2, "feet")
  60462. },
  60463. }
  60464. },
  60465. head: {
  60466. height: math.unit(1.8, "feet"),
  60467. name: "Head",
  60468. image: {
  60469. source: "./media/characters/reiku/head.svg"
  60470. }
  60471. },
  60472. tailTop: {
  60473. height: math.unit(8.4, "feet"),
  60474. name: "Tail (Top)",
  60475. image: {
  60476. source: "./media/characters/reiku/tail-top.svg"
  60477. }
  60478. },
  60479. tailBottom: {
  60480. height: math.unit(8.4, "feet"),
  60481. name: "Tail (Bottom)",
  60482. image: {
  60483. source: "./media/characters/reiku/tail-bottom.svg"
  60484. }
  60485. },
  60486. foot: {
  60487. height: math.unit(2.6, "feet"),
  60488. name: "Foot",
  60489. image: {
  60490. source: "./media/characters/reiku/foot.svg"
  60491. }
  60492. },
  60493. footCurled: {
  60494. height: math.unit(2.3, "feet"),
  60495. name: "Foot (Curled)",
  60496. image: {
  60497. source: "./media/characters/reiku/foot-curled.svg"
  60498. }
  60499. },
  60500. footSide: {
  60501. height: math.unit(1.26, "feet"),
  60502. name: "Foot (Side)",
  60503. image: {
  60504. source: "./media/characters/reiku/foot-side.svg"
  60505. }
  60506. },
  60507. },
  60508. [
  60509. {
  60510. name: "Normal",
  60511. height: math.unit(6 + 2/12, "feet"),
  60512. default: true
  60513. },
  60514. ]
  60515. ))
  60516. characterMakers.push(() => makeCharacter(
  60517. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60518. {
  60519. front: {
  60520. height: math.unit(7, "feet"),
  60521. weight: math.unit(500, "kg"),
  60522. name: "Front",
  60523. image: {
  60524. source: "./media/characters/cialda/front.svg",
  60525. extra: 912/745,
  60526. bottom: 55/967
  60527. }
  60528. },
  60529. },
  60530. [
  60531. {
  60532. name: "Normal",
  60533. height: math.unit(7, "feet"),
  60534. default: true
  60535. },
  60536. ]
  60537. ))
  60538. characterMakers.push(() => makeCharacter(
  60539. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60540. {
  60541. side: {
  60542. height: math.unit(6, "feet"),
  60543. weight: math.unit(600, "lb"),
  60544. preyCapacity: math.unit(25, "liters"),
  60545. name: "Side",
  60546. image: {
  60547. source: "./media/characters/darkkin/side.svg",
  60548. extra: 1597/1447,
  60549. bottom: 101/1698
  60550. }
  60551. },
  60552. },
  60553. [
  60554. {
  60555. name: "Canon Height",
  60556. height: math.unit(568, "feet"),
  60557. default: true
  60558. },
  60559. ]
  60560. ))
  60561. characterMakers.push(() => makeCharacter(
  60562. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60563. {
  60564. front: {
  60565. height: math.unit(6, "feet"),
  60566. weight: math.unit(1500, "lb"),
  60567. preyCapacity: math.unit(3, "people"),
  60568. name: "Front",
  60569. image: {
  60570. source: "./media/characters/livnia/front.svg",
  60571. extra: 934/932,
  60572. bottom: 83/1017
  60573. }
  60574. },
  60575. back: {
  60576. height: math.unit(6, "feet"),
  60577. weight: math.unit(1500, "lb"),
  60578. preyCapacity: math.unit(3, "people"),
  60579. name: "Back",
  60580. image: {
  60581. source: "./media/characters/livnia/back.svg",
  60582. extra: 916/915,
  60583. bottom: 58/974
  60584. }
  60585. },
  60586. head: {
  60587. height: math.unit(1.53, "feet"),
  60588. name: "Head",
  60589. image: {
  60590. source: "./media/characters/livnia/head.svg"
  60591. }
  60592. },
  60593. maw: {
  60594. height: math.unit(0.78, "feet"),
  60595. name: "Maw",
  60596. image: {
  60597. source: "./media/characters/livnia/maw.svg"
  60598. }
  60599. },
  60600. genitals: {
  60601. height: math.unit(0.35, "feet"),
  60602. name: "Genitals",
  60603. image: {
  60604. source: "./media/characters/livnia/genitals.svg"
  60605. }
  60606. },
  60607. },
  60608. [
  60609. {
  60610. name: "Normal",
  60611. height: math.unit(1000, "feet"),
  60612. default: true
  60613. },
  60614. ]
  60615. ))
  60616. characterMakers.push(() => makeCharacter(
  60617. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60618. {
  60619. front: {
  60620. height: math.unit(4, "feet"),
  60621. weight: math.unit(73, "lb"),
  60622. name: "Front",
  60623. image: {
  60624. source: "./media/characters/hayaku/front.svg",
  60625. extra: 1011/888,
  60626. bottom: 33/1044
  60627. }
  60628. },
  60629. back: {
  60630. height: math.unit(4, "feet"),
  60631. weight: math.unit(73, "lb"),
  60632. name: "Back",
  60633. image: {
  60634. source: "./media/characters/hayaku/back.svg",
  60635. extra: 1040/930,
  60636. bottom: 20/1060
  60637. }
  60638. },
  60639. },
  60640. [
  60641. {
  60642. name: "Normal",
  60643. height: math.unit(4, "feet"),
  60644. default: true
  60645. },
  60646. ]
  60647. ))
  60648. characterMakers.push(() => makeCharacter(
  60649. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60650. {
  60651. front: {
  60652. height: math.unit(6 + 7/12, "feet"),
  60653. weight: math.unit(300, "lb"),
  60654. name: "Front",
  60655. image: {
  60656. source: "./media/characters/athena-bryzant/front.svg",
  60657. extra: 870/835,
  60658. bottom: 33/903
  60659. }
  60660. },
  60661. back: {
  60662. height: math.unit(6 + 7/12, "feet"),
  60663. weight: math.unit(300, "lb"),
  60664. name: "Back",
  60665. image: {
  60666. source: "./media/characters/athena-bryzant/back.svg",
  60667. extra: 858/823,
  60668. bottom: 30/888
  60669. }
  60670. },
  60671. head: {
  60672. height: math.unit(2.38, "feet"),
  60673. name: "Head",
  60674. image: {
  60675. source: "./media/characters/athena-bryzant/head.svg"
  60676. }
  60677. },
  60678. wings: {
  60679. height: math.unit(2.85, "feet"),
  60680. name: "Wings",
  60681. image: {
  60682. source: "./media/characters/athena-bryzant/wings.svg"
  60683. }
  60684. },
  60685. },
  60686. [
  60687. {
  60688. name: "Normal",
  60689. height: math.unit(6 + 7/12, "feet"),
  60690. default: true
  60691. },
  60692. {
  60693. name: "Big",
  60694. height: math.unit(8, "feet")
  60695. },
  60696. {
  60697. name: "Very Big",
  60698. height: math.unit(11, "feet")
  60699. },
  60700. ]
  60701. ))
  60702. characterMakers.push(() => makeCharacter(
  60703. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60704. {
  60705. side: {
  60706. height: math.unit(3, "meters"),
  60707. weight: math.unit(7500, "kg"),
  60708. preyCapacity: math.unit(1e12, "people"),
  60709. name: "Side",
  60710. image: {
  60711. source: "./media/characters/zel-kesh/side.svg",
  60712. extra: 910/407,
  60713. bottom: 147/1057
  60714. }
  60715. },
  60716. },
  60717. [
  60718. {
  60719. name: "Normal",
  60720. height: math.unit(3, "meters"),
  60721. default: true
  60722. },
  60723. ]
  60724. ))
  60725. characterMakers.push(() => makeCharacter(
  60726. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60727. {
  60728. front: {
  60729. height: math.unit(2, "meters"),
  60730. weight: math.unit(95, "kg"),
  60731. name: "Front",
  60732. image: {
  60733. source: "./media/characters/kane-fox/front.svg",
  60734. extra: 945/888,
  60735. bottom: 27/972
  60736. }
  60737. },
  60738. back: {
  60739. height: math.unit(2, "meters"),
  60740. weight: math.unit(95, "kg"),
  60741. name: "Back",
  60742. image: {
  60743. source: "./media/characters/kane-fox/back.svg",
  60744. extra: 959/914,
  60745. bottom: 15/974
  60746. }
  60747. },
  60748. frontLewd: {
  60749. height: math.unit(2, "meters"),
  60750. weight: math.unit(95, "kg"),
  60751. name: "Front (Lewd)",
  60752. image: {
  60753. source: "./media/characters/kane-fox/front-lewd.svg",
  60754. extra: 945/888,
  60755. bottom: 27/972
  60756. }
  60757. },
  60758. },
  60759. [
  60760. {
  60761. name: "Home Size",
  60762. height: math.unit(2, "meters"),
  60763. default: true
  60764. },
  60765. {
  60766. name: "Macro",
  60767. height: math.unit(200, "meters")
  60768. },
  60769. {
  60770. name: "Small Mega",
  60771. height: math.unit(3, "km")
  60772. },
  60773. {
  60774. name: "Mega",
  60775. height: math.unit(50, "km")
  60776. },
  60777. {
  60778. name: "Giga",
  60779. height: math.unit(200, "km")
  60780. },
  60781. {
  60782. name: "Giga+",
  60783. height: math.unit(2500, "km")
  60784. },
  60785. {
  60786. name: "Terra",
  60787. height: math.unit(70000, "km")
  60788. },
  60789. {
  60790. name: "Terra+",
  60791. height: math.unit(150000, "km")
  60792. },
  60793. {
  60794. name: "Terra++",
  60795. height: math.unit(400000, "km")
  60796. },
  60797. ]
  60798. ))
  60799. characterMakers.push(() => makeCharacter(
  60800. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60801. {
  60802. otter_front: {
  60803. height: math.unit(1.8, "meters"),
  60804. weight: math.unit(90, "kg"),
  60805. name: "Front",
  60806. image: {
  60807. source: "./media/characters/ayranus/otter-front.svg",
  60808. extra: 468/452,
  60809. bottom: 43/511
  60810. },
  60811. form: "otter",
  60812. },
  60813. otter_frontLewd: {
  60814. height: math.unit(1.8, "meters"),
  60815. weight: math.unit(90, "kg"),
  60816. name: "Front (Lewd)",
  60817. image: {
  60818. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60819. extra: 468/452,
  60820. bottom: 43/511
  60821. },
  60822. form: "otter",
  60823. },
  60824. lionbat_front: {
  60825. height: math.unit(1.8, "meters"),
  60826. weight: math.unit(90, "kg"),
  60827. name: "Front (Lewd)",
  60828. image: {
  60829. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60830. extra: 797/740,
  60831. bottom: 78/875
  60832. },
  60833. form: "lionbat",
  60834. },
  60835. paw: {
  60836. height: math.unit(1.5, "feet"),
  60837. name: "Paw",
  60838. image: {
  60839. source: "./media/characters/ayranus/paw.svg"
  60840. },
  60841. },
  60842. },
  60843. [
  60844. {
  60845. name: "Incognito",
  60846. height: math.unit(1.8, "meters"),
  60847. allForms: true
  60848. },
  60849. {
  60850. name: "Macro",
  60851. height: math.unit(60, "meters"),
  60852. allForms: true
  60853. },
  60854. {
  60855. name: "Macro+",
  60856. height: math.unit(200, "meters"),
  60857. allForms: true
  60858. },
  60859. {
  60860. name: "Mega",
  60861. height: math.unit(35, "km"),
  60862. allForms: true
  60863. },
  60864. {
  60865. name: "Giga",
  60866. height: math.unit(220, "km"),
  60867. allForms: true
  60868. },
  60869. {
  60870. name: "Giga+",
  60871. height: math.unit(1500, "km"),
  60872. allForms: true
  60873. },
  60874. {
  60875. name: "Terra",
  60876. height: math.unit(13000, "km"),
  60877. allForms: true
  60878. },
  60879. {
  60880. name: "Terra+",
  60881. height: math.unit(500000, "km"),
  60882. allForms: true
  60883. },
  60884. {
  60885. name: "Galactic",
  60886. height: math.unit(486080, "parsecs"),
  60887. default: true,
  60888. allForms: true
  60889. },
  60890. ],
  60891. {
  60892. "otter": {
  60893. name: "Otter",
  60894. default: true
  60895. },
  60896. "lionbat": {
  60897. name: "Lionbat",
  60898. },
  60899. }
  60900. ))
  60901. characterMakers.push(() => makeCharacter(
  60902. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60903. {
  60904. front: {
  60905. height: math.unit(7 + 4/12, "feet"),
  60906. weight: math.unit(400, "lb"),
  60907. name: "Front",
  60908. image: {
  60909. source: "./media/characters/proxy/front.svg",
  60910. extra: 1605/1542,
  60911. bottom: 55/1660
  60912. }
  60913. },
  60914. side: {
  60915. height: math.unit(7 + 4/12, "feet"),
  60916. weight: math.unit(400, "lb"),
  60917. name: "Side",
  60918. image: {
  60919. source: "./media/characters/proxy/side.svg",
  60920. extra: 794/759,
  60921. bottom: 6/800
  60922. }
  60923. },
  60924. hand: {
  60925. height: math.unit(1.54, "feet"),
  60926. name: "Hand",
  60927. image: {
  60928. source: "./media/characters/proxy/hand.svg"
  60929. }
  60930. },
  60931. paw: {
  60932. height: math.unit(1.53, "feet"),
  60933. name: "Paw",
  60934. image: {
  60935. source: "./media/characters/proxy/paw.svg"
  60936. }
  60937. },
  60938. maw: {
  60939. height: math.unit(1.9, "feet"),
  60940. name: "Maw",
  60941. image: {
  60942. source: "./media/characters/proxy/maw.svg"
  60943. }
  60944. },
  60945. },
  60946. [
  60947. {
  60948. name: "Normal",
  60949. height: math.unit(7 + 4/12, "feet"),
  60950. default: true
  60951. },
  60952. ]
  60953. ))
  60954. characterMakers.push(() => makeCharacter(
  60955. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60956. {
  60957. front: {
  60958. height: math.unit(4, "meters"),
  60959. name: "Front",
  60960. image: {
  60961. source: "./media/characters/crocozilla/front.svg",
  60962. extra: 1790/1742,
  60963. bottom: 78/1868
  60964. }
  60965. },
  60966. },
  60967. [
  60968. {
  60969. name: "Normal",
  60970. height: math.unit(4, "meters"),
  60971. default: true
  60972. },
  60973. ]
  60974. ))
  60975. characterMakers.push(() => makeCharacter(
  60976. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60977. {
  60978. front: {
  60979. height: math.unit(1.8, "meters"),
  60980. weight: math.unit(120, "kg"),
  60981. name: "Front",
  60982. image: {
  60983. source: "./media/characters/kurz/front.svg",
  60984. extra: 1960/1824,
  60985. bottom: 41/2001
  60986. }
  60987. },
  60988. back: {
  60989. height: math.unit(1.8, "meters"),
  60990. weight: math.unit(120, "kg"),
  60991. name: "Back",
  60992. image: {
  60993. source: "./media/characters/kurz/back.svg",
  60994. extra: 1906/1787,
  60995. bottom: 60/1966
  60996. }
  60997. },
  60998. frontLewd: {
  60999. height: math.unit(1.8, "meters"),
  61000. weight: math.unit(120, "kg"),
  61001. name: "Front (Lewd)",
  61002. image: {
  61003. source: "./media/characters/kurz/front-lewd.svg",
  61004. extra: 1960/1824,
  61005. bottom: 41/2001
  61006. }
  61007. },
  61008. maw: {
  61009. height: math.unit(0.69, "meters"),
  61010. name: "Maw",
  61011. image: {
  61012. source: "./media/characters/kurz/maw.svg"
  61013. }
  61014. },
  61015. },
  61016. [
  61017. {
  61018. name: "Original Size",
  61019. height: math.unit(1.8, "meters")
  61020. },
  61021. {
  61022. name: "Incognito Size",
  61023. height: math.unit(2.4, "meters"),
  61024. default: true
  61025. },
  61026. {
  61027. name: "Macro",
  61028. height: math.unit(30, "meters")
  61029. },
  61030. {
  61031. name: "Macro+",
  61032. height: math.unit(250, "meters")
  61033. },
  61034. {
  61035. name: "Mega",
  61036. height: math.unit(2, "km")
  61037. },
  61038. {
  61039. name: "Mega+",
  61040. height: math.unit(35, "km")
  61041. },
  61042. {
  61043. name: "Mega++",
  61044. height: math.unit(75, "km")
  61045. },
  61046. {
  61047. name: "Giga",
  61048. height: math.unit(250, "km")
  61049. },
  61050. {
  61051. name: "Terra",
  61052. height: math.unit(15000, "km")
  61053. },
  61054. {
  61055. name: "Terra+",
  61056. height: math.unit(2250000, "km")
  61057. },
  61058. ]
  61059. ))
  61060. characterMakers.push(() => makeCharacter(
  61061. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61062. {
  61063. front: {
  61064. height: math.unit(16 + 3/12, "feet"),
  61065. weight: math.unit(3575, "lb"),
  61066. name: "Front",
  61067. image: {
  61068. source: "./media/characters/nikita/front.svg",
  61069. extra: 1064/955,
  61070. bottom: 47/1111
  61071. }
  61072. },
  61073. },
  61074. [
  61075. {
  61076. name: "Normal",
  61077. height: math.unit(16 + 3/12, "feet"),
  61078. default: true
  61079. },
  61080. {
  61081. name: "Big",
  61082. height: math.unit(21, "feet")
  61083. },
  61084. {
  61085. name: "Biggest",
  61086. height: math.unit(50, "feet")
  61087. },
  61088. ]
  61089. ))
  61090. characterMakers.push(() => makeCharacter(
  61091. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61092. {
  61093. front: {
  61094. height: math.unit(1.92, "m"),
  61095. weight: math.unit(76, "kg"),
  61096. name: "Front",
  61097. image: {
  61098. source: "./media/characters/kyara/front.svg",
  61099. extra: 1550/1438,
  61100. bottom: 139/1689
  61101. }
  61102. },
  61103. back: {
  61104. height: math.unit(1.92, "m"),
  61105. weight: math.unit(76, "kg"),
  61106. name: "Back",
  61107. image: {
  61108. source: "./media/characters/kyara/back.svg",
  61109. extra: 1523/1427,
  61110. bottom: 83/1606
  61111. }
  61112. },
  61113. head: {
  61114. height: math.unit(1.22, "feet"),
  61115. name: "Head",
  61116. image: {
  61117. source: "./media/characters/kyara/head.svg"
  61118. }
  61119. },
  61120. maw: {
  61121. height: math.unit(0.73, "feet"),
  61122. name: "Maw",
  61123. image: {
  61124. source: "./media/characters/kyara/maw.svg"
  61125. }
  61126. },
  61127. paws: {
  61128. height: math.unit(0.95, "feet"),
  61129. name: "Paws",
  61130. image: {
  61131. source: "./media/characters/kyara/paws.svg"
  61132. }
  61133. },
  61134. },
  61135. [
  61136. {
  61137. name: "Normal",
  61138. height: math.unit(1.92, "meters"),
  61139. default: true
  61140. },
  61141. {
  61142. name: "Mini Macro",
  61143. height: math.unit(192, "meters")
  61144. },
  61145. {
  61146. name: "Macro",
  61147. height: math.unit(480, "meters")
  61148. },
  61149. {
  61150. name: "Mega Macro",
  61151. height: math.unit(1440, "meters")
  61152. },
  61153. ]
  61154. ))
  61155. characterMakers.push(() => makeCharacter(
  61156. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61157. {
  61158. front: {
  61159. height: math.unit(6, "feet"),
  61160. weight: math.unit(160, "lbs"),
  61161. preyCapacity: math.unit(0.05, "people"),
  61162. name: "Front",
  61163. image: {
  61164. source: "./media/characters/layla-amari/front.svg",
  61165. extra: 1922/1723,
  61166. bottom: 90/2012
  61167. }
  61168. },
  61169. back: {
  61170. height: math.unit(6, "feet"),
  61171. weight: math.unit(160, "lbs"),
  61172. preyCapacity: math.unit(0.05, "people"),
  61173. name: "Back",
  61174. image: {
  61175. source: "./media/characters/layla-amari/back.svg",
  61176. extra: 1917/1718,
  61177. bottom: 50/1967
  61178. }
  61179. },
  61180. frontDressed: {
  61181. height: math.unit(6, "feet"),
  61182. weight: math.unit(160, "lbs"),
  61183. preyCapacity: math.unit(0.05, "people"),
  61184. name: "Front (Dressed)",
  61185. image: {
  61186. source: "./media/characters/layla-amari/front-dressed.svg",
  61187. extra: 1922/1723,
  61188. bottom: 90/2012
  61189. }
  61190. },
  61191. face: {
  61192. height: math.unit(0.93, "feet"),
  61193. name: "Face",
  61194. image: {
  61195. source: "./media/characters/layla-amari/face.svg"
  61196. }
  61197. },
  61198. hand: {
  61199. height: math.unit(0.66 , "feet"),
  61200. name: "Hand",
  61201. image: {
  61202. source: "./media/characters/layla-amari/hand.svg"
  61203. }
  61204. },
  61205. foot: {
  61206. height: math.unit(1, "feet"),
  61207. name: "Foot",
  61208. image: {
  61209. source: "./media/characters/layla-amari/foot.svg"
  61210. }
  61211. },
  61212. necklace: {
  61213. height: math.unit(0.32, "feet"),
  61214. name: "Necklace",
  61215. image: {
  61216. source: "./media/characters/layla-amari/necklace.svg"
  61217. }
  61218. },
  61219. nipple: {
  61220. height: math.unit(0.2, "feet"),
  61221. name: "Nipple",
  61222. image: {
  61223. source: "./media/characters/layla-amari/nipple.svg"
  61224. }
  61225. },
  61226. slit: {
  61227. height: math.unit(0.26, "feet"),
  61228. name: "Slit",
  61229. image: {
  61230. source: "./media/characters/layla-amari/slit.svg"
  61231. }
  61232. },
  61233. },
  61234. [
  61235. {
  61236. name: "Natural",
  61237. height: math.unit(825, "feet"),
  61238. default: true
  61239. },
  61240. {
  61241. name: "Enhanced",
  61242. height: math.unit(8250, "feet")
  61243. },
  61244. {
  61245. name: "Apparent Size",
  61246. height: math.unit(9.04363e+8, "meters")
  61247. },
  61248. ]
  61249. ))
  61250. characterMakers.push(() => makeCharacter(
  61251. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61252. {
  61253. front: {
  61254. height: math.unit(1.3, "meters"),
  61255. name: "Front",
  61256. image: {
  61257. source: "./media/characters/percy/front.svg",
  61258. extra: 1444/1289,
  61259. bottom: 54/1498
  61260. }
  61261. },
  61262. },
  61263. [
  61264. {
  61265. name: "Normal",
  61266. height: math.unit(1.3, "meters"),
  61267. default: true
  61268. },
  61269. ]
  61270. ))
  61271. characterMakers.push(() => makeCharacter(
  61272. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61273. {
  61274. side: {
  61275. height: math.unit(10, "meters"),
  61276. name: "Side",
  61277. image: {
  61278. source: "./media/characters/grev/side.svg",
  61279. extra: 653/266,
  61280. bottom: 77/730
  61281. }
  61282. },
  61283. head: {
  61284. height: math.unit(16.2, "m"),
  61285. name: "Head",
  61286. image: {
  61287. source: "./media/characters/grev/head.svg"
  61288. }
  61289. },
  61290. dick: {
  61291. height: math.unit(2.8135932034, "m"),
  61292. name: "Dick",
  61293. image: {
  61294. source: "./media/characters/grev/dick.svg"
  61295. }
  61296. },
  61297. },
  61298. [
  61299. {
  61300. name: "Friend-Sized",
  61301. height: math.unit(80, "cm")
  61302. },
  61303. {
  61304. name: "Normal",
  61305. height: math.unit(10, "meters"),
  61306. default: true
  61307. },
  61308. {
  61309. name: "Macro",
  61310. height: math.unit(200, "meters")
  61311. },
  61312. ]
  61313. ))
  61314. characterMakers.push(() => makeCharacter(
  61315. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61316. {
  61317. front: {
  61318. height: math.unit(19.75, "feet"),
  61319. weight: math.unit(20000, "lb"),
  61320. name: "Front",
  61321. image: {
  61322. source: "./media/characters/azuuca/front.svg",
  61323. extra: 1593/1511,
  61324. bottom: 55/1648
  61325. }
  61326. },
  61327. },
  61328. [
  61329. {
  61330. name: "Normal",
  61331. height: math.unit(19.75, "feet"),
  61332. default: true
  61333. },
  61334. ]
  61335. ))
  61336. characterMakers.push(() => makeCharacter(
  61337. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61338. {
  61339. front: {
  61340. height: math.unit(15, "feet"),
  61341. weight: math.unit(1500, "lb"),
  61342. name: "Front",
  61343. image: {
  61344. source: "./media/characters/valuria/front.svg",
  61345. extra: 1588/1486,
  61346. bottom: 31/1619
  61347. }
  61348. },
  61349. },
  61350. [
  61351. {
  61352. name: "Normal",
  61353. height: math.unit(15, "feet"),
  61354. default: true
  61355. },
  61356. {
  61357. name: "Small",
  61358. height: math.unit(500, "feet")
  61359. },
  61360. {
  61361. name: "Macro",
  61362. height: math.unit(4000, "feet")
  61363. },
  61364. {
  61365. name: "Mega Macro",
  61366. height: math.unit(2000, "miles")
  61367. },
  61368. {
  61369. name: "Giga Macro",
  61370. height: math.unit(3e6, "miles")
  61371. },
  61372. ]
  61373. ))
  61374. characterMakers.push(() => makeCharacter(
  61375. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61376. {
  61377. front: {
  61378. height: math.unit(3500, "solarradii"),
  61379. name: "Front",
  61380. image: {
  61381. source: "./media/characters/terigaia/front.svg",
  61382. extra: 1531/1451,
  61383. bottom: 98/1629
  61384. }
  61385. },
  61386. },
  61387. [
  61388. {
  61389. name: "Normal",
  61390. height: math.unit(3500, "solarradii"),
  61391. default: true
  61392. },
  61393. ]
  61394. ))
  61395. characterMakers.push(() => makeCharacter(
  61396. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61397. {
  61398. front: {
  61399. height: math.unit(9.34, "feet"),
  61400. weight: math.unit(600, "lb"),
  61401. name: "Front",
  61402. image: {
  61403. source: "./media/characters/blair-blaziken/front.svg",
  61404. extra: 1557/1462,
  61405. bottom: 55/1612
  61406. }
  61407. },
  61408. },
  61409. [
  61410. {
  61411. name: "Normal",
  61412. height: math.unit(9.34, "feet"),
  61413. default: true
  61414. },
  61415. ]
  61416. ))
  61417. characterMakers.push(() => makeCharacter(
  61418. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61419. {
  61420. pistrogre_front: {
  61421. height: math.unit(10, "feet"),
  61422. weight: math.unit(10, "tons"),
  61423. name: "Front",
  61424. image: {
  61425. source: "./media/characters/braxia/pistrogre-front.svg",
  61426. extra: 1531/1334,
  61427. bottom: 114/1645
  61428. },
  61429. form: "pistrogre",
  61430. default: true
  61431. },
  61432. human_front: {
  61433. height: math.unit(10, "feet"),
  61434. weight: math.unit(10, "tons"),
  61435. name: "Front",
  61436. image: {
  61437. source: "./media/characters/braxia/human-front.svg",
  61438. extra: 1574/1501,
  61439. bottom: 37/1611
  61440. },
  61441. form: "human",
  61442. default: true
  61443. },
  61444. },
  61445. [
  61446. {
  61447. name: "Normal",
  61448. height: math.unit(10, "feet"),
  61449. default: true,
  61450. allForms: true
  61451. },
  61452. {
  61453. name: "Macro",
  61454. height: math.unit(1000, "feet"),
  61455. allForms: true
  61456. },
  61457. {
  61458. name: "Mega Macro",
  61459. height: math.unit(100, "miles"),
  61460. allForms: true
  61461. },
  61462. {
  61463. name: "Cosmic",
  61464. height: math.unit(1000000, "lightyears"),
  61465. allForms: true
  61466. },
  61467. {
  61468. name: "ϐѮԆԬӁꭍϞԢ",
  61469. height: math.unit(1000, "multiverses"),
  61470. allForms: true
  61471. },
  61472. ],
  61473. {
  61474. "pistrogre": {
  61475. name: "Pistrogre",
  61476. default: true
  61477. },
  61478. "human": {
  61479. name: "Human",
  61480. },
  61481. }
  61482. ))
  61483. characterMakers.push(() => makeCharacter(
  61484. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61485. {
  61486. front: {
  61487. height: math.unit(6 + 1/12, "feet"),
  61488. weight: math.unit(280, "lb"),
  61489. name: "Front",
  61490. image: {
  61491. source: "./media/characters/kiriga-yato/front.svg",
  61492. extra: 445/394,
  61493. bottom: 11/456
  61494. }
  61495. },
  61496. },
  61497. [
  61498. {
  61499. name: "Descended",
  61500. height: math.unit(3, "feet")
  61501. },
  61502. {
  61503. name: "Average",
  61504. height: math.unit(6 + 1/12, "feet"),
  61505. default: true
  61506. },
  61507. {
  61508. name: "Ascended",
  61509. height: math.unit(9 + 2/12, "feet")
  61510. },
  61511. ]
  61512. ))
  61513. characterMakers.push(() => makeCharacter(
  61514. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61515. {
  61516. front: {
  61517. height: math.unit(6, "feet"),
  61518. weight: math.unit(150, "lb"),
  61519. name: "Front",
  61520. image: {
  61521. source: "./media/characters/kylie/front.svg",
  61522. extra: 1114/1046,
  61523. bottom: 65/1179
  61524. },
  61525. extraAttributes: {
  61526. "hoofSize": {
  61527. name: "Hoof Size",
  61528. power: 2,
  61529. type: "area",
  61530. base: math.unit(0.034, "m^2")
  61531. },
  61532. "footSize": {
  61533. name: "Foot Size",
  61534. power: 2,
  61535. type: "area",
  61536. base: math.unit(0.75, "m^2")
  61537. },
  61538. }
  61539. },
  61540. side: {
  61541. height: math.unit(6, "feet"),
  61542. weight: math.unit(150, "lb"),
  61543. name: "Side",
  61544. image: {
  61545. source: "./media/characters/kylie/side.svg",
  61546. extra: 1178/1110,
  61547. bottom: 21/1199
  61548. },
  61549. extraAttributes: {
  61550. "hoofSize": {
  61551. name: "Hoof Size",
  61552. power: 2,
  61553. type: "area",
  61554. base: math.unit(0.034, "m^2")
  61555. },
  61556. "footSize": {
  61557. name: "Foot Size",
  61558. power: 2,
  61559. type: "area",
  61560. base: math.unit(0.75, "m^2")
  61561. },
  61562. }
  61563. },
  61564. back: {
  61565. height: math.unit(6, "feet"),
  61566. weight: math.unit(150, "lb"),
  61567. name: "Back",
  61568. image: {
  61569. source: "./media/characters/kylie/back.svg",
  61570. extra: 1115/1047,
  61571. bottom: 66/1181
  61572. },
  61573. extraAttributes: {
  61574. "hoofSize": {
  61575. name: "Hoof Size",
  61576. power: 2,
  61577. type: "area",
  61578. base: math.unit(0.034, "m^2")
  61579. },
  61580. "footSize": {
  61581. name: "Foot Size",
  61582. power: 2,
  61583. type: "area",
  61584. base: math.unit(0.75, "m^2")
  61585. },
  61586. }
  61587. },
  61588. head: {
  61589. height: math.unit(1.85, "feet"),
  61590. name: "Head",
  61591. image: {
  61592. source: "./media/characters/kylie/head.svg"
  61593. }
  61594. },
  61595. },
  61596. [
  61597. {
  61598. name: "Normal",
  61599. height: math.unit(90, "meters"),
  61600. default: true
  61601. },
  61602. ]
  61603. ))
  61604. characterMakers.push(() => makeCharacter(
  61605. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61606. {
  61607. front: {
  61608. height: math.unit(245, "feet"),
  61609. weight: math.unit(400000, "lb"),
  61610. name: "Front",
  61611. image: {
  61612. source: "./media/characters/sabado/front.svg",
  61613. extra: 1309/1164,
  61614. bottom: 29/1338
  61615. }
  61616. },
  61617. },
  61618. [
  61619. {
  61620. name: "Normal",
  61621. height: math.unit(245, "feet"),
  61622. default: true
  61623. },
  61624. ]
  61625. ))
  61626. characterMakers.push(() => makeCharacter(
  61627. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61628. {
  61629. shark_front: {
  61630. height: math.unit(2, "meters"),
  61631. weight: math.unit(200, "kg"),
  61632. name: "Front",
  61633. image: {
  61634. source: "./media/characters/zechal/shark-front.svg",
  61635. extra: 969/925,
  61636. bottom: 74/1043
  61637. },
  61638. form: "shark",
  61639. },
  61640. shark_back: {
  61641. height: math.unit(2, "meters"),
  61642. weight: math.unit(200, "kg"),
  61643. name: "Back",
  61644. image: {
  61645. source: "./media/characters/zechal/shark-back.svg",
  61646. extra: 994/949,
  61647. bottom: 176/1170
  61648. },
  61649. form: "shark",
  61650. },
  61651. shark_frontLewd: {
  61652. height: math.unit(2, "meters"),
  61653. weight: math.unit(200, "kg"),
  61654. name: "Front (Lewd)",
  61655. image: {
  61656. source: "./media/characters/zechal/shark-front-lewd.svg",
  61657. extra: 969/925,
  61658. bottom: 74/1043
  61659. },
  61660. form: "shark",
  61661. },
  61662. shark_side: {
  61663. height: math.unit(1.56, "meters"),
  61664. weight: math.unit(200, "kg"),
  61665. name: "Side",
  61666. image: {
  61667. source: "./media/characters/zechal/shark-side.svg"
  61668. },
  61669. form: "shark",
  61670. },
  61671. dragon_front: {
  61672. height: math.unit(2, "meters"),
  61673. weight: math.unit(200, "kg"),
  61674. name: "Front",
  61675. image: {
  61676. source: "./media/characters/zechal/dragon-front.svg",
  61677. extra: 1041/925,
  61678. bottom: 74/1115
  61679. },
  61680. form: "dragon",
  61681. },
  61682. dragon_back: {
  61683. height: math.unit(2, "meters"),
  61684. weight: math.unit(200, "kg"),
  61685. name: "Back",
  61686. image: {
  61687. source: "./media/characters/zechal/dragon-back.svg",
  61688. extra: 1061/949,
  61689. bottom: 176/1237
  61690. },
  61691. form: "dragon",
  61692. },
  61693. dragon_frontLewd: {
  61694. height: math.unit(2, "meters"),
  61695. weight: math.unit(200, "kg"),
  61696. name: "Front (Lewd)",
  61697. image: {
  61698. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61699. extra: 1041/925,
  61700. bottom: 74/1115
  61701. },
  61702. form: "dragon",
  61703. },
  61704. dragon_side: {
  61705. height: math.unit(1.56, "meters"),
  61706. weight: math.unit(200, "kg"),
  61707. name: "Side",
  61708. image: {
  61709. source: "./media/characters/zechal/dragon-side.svg"
  61710. },
  61711. form: "dragon",
  61712. },
  61713. foot: {
  61714. height: math.unit(0.5, "meters"),
  61715. name: "Foot",
  61716. image: {
  61717. source: "./media/characters/zechal/foot.svg"
  61718. }
  61719. },
  61720. sheathFront: {
  61721. height: math.unit(0.45, "meters"),
  61722. name: "Sheath (Front)",
  61723. image: {
  61724. source: "./media/characters/zechal/sheath-front.svg"
  61725. }
  61726. },
  61727. sheathSide: {
  61728. height: math.unit(0.45, "meters"),
  61729. name: "Sheath (Side)",
  61730. image: {
  61731. source: "./media/characters/zechal/sheath-side.svg"
  61732. }
  61733. },
  61734. },
  61735. [
  61736. {
  61737. name: "Incognito",
  61738. height: math.unit(2, "meters"),
  61739. allForms: true
  61740. },
  61741. {
  61742. name: "Small Rampage",
  61743. height: math.unit(25, "meters"),
  61744. allForms: true
  61745. },
  61746. {
  61747. name: "Home Size",
  61748. height: math.unit(250, "meters"),
  61749. allForms: true,
  61750. default: true
  61751. },
  61752. {
  61753. name: "Macro+",
  61754. height: math.unit(700, "meters"),
  61755. allForms: true
  61756. },
  61757. {
  61758. name: "Small Mega",
  61759. height: math.unit(3, "km"),
  61760. allForms: true
  61761. },
  61762. {
  61763. name: "Mega",
  61764. height: math.unit(15, "km"),
  61765. allForms: true
  61766. },
  61767. {
  61768. name: "Giga",
  61769. height: math.unit(300, "km"),
  61770. allForms: true
  61771. },
  61772. {
  61773. name: "Giga+",
  61774. height: math.unit(1750, "km"),
  61775. allForms: true
  61776. },
  61777. {
  61778. name: "Continental",
  61779. height: math.unit(5000, "km"),
  61780. allForms: true
  61781. },
  61782. {
  61783. name: "Terra",
  61784. height: math.unit(20000, "km"),
  61785. allForms: true
  61786. },
  61787. {
  61788. name: "Terra+",
  61789. height: math.unit(300000, "km"),
  61790. allForms: true
  61791. },
  61792. {
  61793. name: "Solar",
  61794. height: math.unit(40000000, "km"),
  61795. allForms: true
  61796. },
  61797. {
  61798. name: "Galactic",
  61799. height: math.unit(810133, "parsecs"),
  61800. allForms: true
  61801. },
  61802. {
  61803. name: "Universal",
  61804. height: math.unit(25, "universes"),
  61805. allForms: true
  61806. },
  61807. ],
  61808. {
  61809. "shark": {
  61810. name: "Shark",
  61811. default: true
  61812. },
  61813. "dragon": {
  61814. name: "Dragon",
  61815. },
  61816. }
  61817. ))
  61818. characterMakers.push(() => makeCharacter(
  61819. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61820. {
  61821. front: {
  61822. height: math.unit(2.2, "meters"),
  61823. weight: math.unit(150, "kg"),
  61824. name: "Front",
  61825. image: {
  61826. source: "./media/characters/sergis/front.svg",
  61827. extra: 1314/1312,
  61828. bottom: 112/1426
  61829. }
  61830. },
  61831. back: {
  61832. height: math.unit(2.2, "meters"),
  61833. weight: math.unit(150, "kg"),
  61834. name: "Back",
  61835. image: {
  61836. source: "./media/characters/sergis/back.svg",
  61837. extra: 1335/1333,
  61838. bottom: 19/1354
  61839. }
  61840. },
  61841. frontLewd: {
  61842. height: math.unit(2.2, "meters"),
  61843. weight: math.unit(150, "kg"),
  61844. name: "Front (Lewd)",
  61845. image: {
  61846. source: "./media/characters/sergis/front-lewd.svg",
  61847. extra: 1314/1312,
  61848. bottom: 112/1426
  61849. }
  61850. },
  61851. frontDressed: {
  61852. height: math.unit(2.2, "meters"),
  61853. weight: math.unit(150, "kg"),
  61854. name: "Front (Dressed)",
  61855. image: {
  61856. source: "./media/characters/sergis/front-dressed.svg",
  61857. extra: 1330/1328,
  61858. bottom: 95/1425
  61859. }
  61860. },
  61861. frontDressedLewd: {
  61862. height: math.unit(2.2, "meters"),
  61863. weight: math.unit(150, "kg"),
  61864. name: "Front (Dressed, Lewd)",
  61865. image: {
  61866. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61867. extra: 1330/1328,
  61868. bottom: 95/1425
  61869. }
  61870. },
  61871. maw: {
  61872. height: math.unit(0.48, "meters"),
  61873. name: "Maw",
  61874. image: {
  61875. source: "./media/characters/sergis/maw.svg"
  61876. }
  61877. },
  61878. sheath: {
  61879. height: math.unit(0.38, "meters"),
  61880. name: "Sheath",
  61881. image: {
  61882. source: "./media/characters/sergis/sheath.svg"
  61883. }
  61884. },
  61885. },
  61886. [
  61887. {
  61888. name: "Incognito Size",
  61889. height: math.unit(2.2, "meters")
  61890. },
  61891. {
  61892. name: "Small Macro",
  61893. height: math.unit(40, "meters")
  61894. },
  61895. {
  61896. name: "Macro",
  61897. height: math.unit(150, "meters")
  61898. },
  61899. {
  61900. name: "Macro+",
  61901. height: math.unit(300, "meters")
  61902. },
  61903. {
  61904. name: "Mega",
  61905. height: math.unit(2.5, "km")
  61906. },
  61907. {
  61908. name: "Mega+",
  61909. height: math.unit(30, "km")
  61910. },
  61911. {
  61912. name: "Home Size",
  61913. height: math.unit(300, "km"),
  61914. default: true
  61915. },
  61916. {
  61917. name: "Giga+",
  61918. height: math.unit(1000, "km")
  61919. },
  61920. {
  61921. name: "Giga++",
  61922. height: math.unit(6000, "km")
  61923. },
  61924. {
  61925. name: "Terra",
  61926. height: math.unit(70000, "km")
  61927. },
  61928. {
  61929. name: "Terra+",
  61930. height: math.unit(200000, "km")
  61931. },
  61932. {
  61933. name: "Galactic",
  61934. height: math.unit(634200, "lightyears")
  61935. },
  61936. ]
  61937. ))
  61938. characterMakers.push(() => makeCharacter(
  61939. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61940. {
  61941. standard: {
  61942. height: math.unit(1 + 5/12, "feet"),
  61943. name: "Standard",
  61944. image: {
  61945. source: "./media/characters/spade/standard.svg",
  61946. extra: 1794/1703,
  61947. bottom: 115/1909
  61948. }
  61949. },
  61950. disguised: {
  61951. height: math.unit(1 + 5/12, "feet"),
  61952. name: "Disguised",
  61953. image: {
  61954. source: "./media/characters/spade/disguised.svg",
  61955. extra: 1794/1700,
  61956. bottom: 98/1892
  61957. }
  61958. },
  61959. },
  61960. [
  61961. {
  61962. name: "Normal",
  61963. height: math.unit(1 + 5/12, "feet"),
  61964. default: true
  61965. },
  61966. ]
  61967. ))
  61968. characterMakers.push(() => makeCharacter(
  61969. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61970. {
  61971. frontNsfw: {
  61972. height: math.unit(5, "meters"),
  61973. weight: math.unit(2000, "kg"),
  61974. preyCapacity: math.unit(5, "people"),
  61975. name: "Front (NSFW)",
  61976. image: {
  61977. source: "./media/characters/zeanlain/front-nsfw.svg",
  61978. extra: 1087/938,
  61979. bottom: 93/1180
  61980. },
  61981. extraAttributes: {
  61982. "wingspan": {
  61983. name: "Wingspan",
  61984. power: 1,
  61985. type: "length",
  61986. base: math.unit(10, "meters")
  61987. },
  61988. "footSize": {
  61989. name: "Foot Size",
  61990. power: 1,
  61991. type: "length",
  61992. base: math.unit(0.68, "meters")
  61993. },
  61994. "cockLength": {
  61995. name: "Cock Length",
  61996. power: 1,
  61997. type: "length",
  61998. base: math.unit(1.69, "meters")
  61999. },
  62000. "ballVolume": {
  62001. name: "Ball Volume",
  62002. power: 3,
  62003. type: "volume",
  62004. base: math.unit(0.028, "m^3")
  62005. },
  62006. }
  62007. },
  62008. front: {
  62009. height: math.unit(5, "meters"),
  62010. weight: math.unit(2000, "kg"),
  62011. preyCapacity: math.unit(3, "people"),
  62012. name: "Front",
  62013. image: {
  62014. source: "./media/characters/zeanlain/front.svg",
  62015. extra: 1087/938,
  62016. bottom: 93/1180
  62017. },
  62018. extraAttributes: {
  62019. "wingspan": {
  62020. name: "Wingspan",
  62021. power: 1,
  62022. type: "length",
  62023. base: math.unit(10, "meters")
  62024. },
  62025. "footSize": {
  62026. name: "Foot Size",
  62027. power: 1,
  62028. type: "length",
  62029. base: math.unit(0.68, "meters")
  62030. },
  62031. }
  62032. },
  62033. },
  62034. [
  62035. {
  62036. name: "Normal",
  62037. height: math.unit(5, "meters"),
  62038. default: true
  62039. },
  62040. ]
  62041. ))
  62042. characterMakers.push(() => makeCharacter(
  62043. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62044. {
  62045. front: {
  62046. height: math.unit(10, "meters"),
  62047. weight: math.unit(250000, "kg"),
  62048. name: "Front",
  62049. image: {
  62050. source: "./media/characters/airamis/front.svg",
  62051. extra: 865/835,
  62052. bottom: 13/878
  62053. }
  62054. },
  62055. },
  62056. [
  62057. {
  62058. name: "Normal",
  62059. height: math.unit(10, "meters"),
  62060. default: true
  62061. },
  62062. ]
  62063. ))
  62064. characterMakers.push(() => makeCharacter(
  62065. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62066. {
  62067. front: {
  62068. height: math.unit(3 + 3/12, "feet"),
  62069. weight: math.unit(75, "lb"),
  62070. name: "Front",
  62071. image: {
  62072. source: "./media/characters/corra-tourmaline/front.svg",
  62073. extra: 1037/864,
  62074. bottom: 39/1076
  62075. }
  62076. },
  62077. back: {
  62078. height: math.unit(3 + 3/12, "feet"),
  62079. weight: math.unit(75, "lb"),
  62080. name: "Back",
  62081. image: {
  62082. source: "./media/characters/corra-tourmaline/back.svg",
  62083. extra: 1022/849,
  62084. bottom: 26/1048
  62085. }
  62086. },
  62087. dressed: {
  62088. height: math.unit(3 + 3/12, "feet"),
  62089. weight: math.unit(75, "lb"),
  62090. name: "Dressed",
  62091. image: {
  62092. source: "./media/characters/corra-tourmaline/dressed.svg",
  62093. extra: 1037/864,
  62094. bottom: 39/1076
  62095. }
  62096. },
  62097. beans: {
  62098. height: math.unit(0.37, "feet"),
  62099. name: "Beans",
  62100. image: {
  62101. source: "./media/characters/corra-tourmaline/beans.svg"
  62102. }
  62103. },
  62104. },
  62105. [
  62106. {
  62107. name: "Normal",
  62108. height: math.unit(3 + 3/12, "feet"),
  62109. default: true
  62110. },
  62111. {
  62112. name: "Macro",
  62113. height: math.unit(32, "feet")
  62114. },
  62115. ]
  62116. ))
  62117. characterMakers.push(() => makeCharacter(
  62118. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62119. {
  62120. front: {
  62121. height: math.unit(6 + 2/12, "feet"),
  62122. weight: math.unit(203, "lb"),
  62123. name: "Front",
  62124. image: {
  62125. source: "./media/characters/maki-kawa/front.svg",
  62126. extra: 950/890,
  62127. bottom: 62/1012
  62128. }
  62129. },
  62130. back: {
  62131. height: math.unit(6 + 2/12, "feet"),
  62132. weight: math.unit(203, "lb"),
  62133. name: "Back",
  62134. image: {
  62135. source: "./media/characters/maki-kawa/back.svg",
  62136. extra: 953/878,
  62137. bottom: 49/1002
  62138. }
  62139. },
  62140. frontBarista: {
  62141. height: math.unit(6 + 2/12, "feet"),
  62142. weight: math.unit(203, "lb"),
  62143. name: "Front (Barista)",
  62144. image: {
  62145. source: "./media/characters/maki-kawa/front-barista.svg",
  62146. extra: 943/883,
  62147. bottom: 69/1012
  62148. }
  62149. },
  62150. backBarista: {
  62151. height: math.unit(6 + 2/12, "feet"),
  62152. weight: math.unit(203, "lb"),
  62153. name: "Back (Barista)",
  62154. image: {
  62155. source: "./media/characters/maki-kawa/back-barista.svg",
  62156. extra: 953/878,
  62157. bottom: 49/1002
  62158. }
  62159. },
  62160. frontWrestler: {
  62161. height: math.unit(6 + 2/12, "feet"),
  62162. weight: math.unit(203, "lb"),
  62163. name: "Front (Wrestler)",
  62164. image: {
  62165. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62166. extra: 950/890,
  62167. bottom: 62/1012
  62168. }
  62169. },
  62170. backWrestler: {
  62171. height: math.unit(6 + 2/12, "feet"),
  62172. weight: math.unit(203, "lb"),
  62173. name: "Back (Wrestler)",
  62174. image: {
  62175. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62176. extra: 953/878,
  62177. bottom: 49/1002
  62178. }
  62179. },
  62180. headFront: {
  62181. height: math.unit(1.64, "feet"),
  62182. name: "Head (Front)",
  62183. image: {
  62184. source: "./media/characters/maki-kawa/head-front.svg"
  62185. }
  62186. },
  62187. headSide: {
  62188. height: math.unit(1.59, "feet"),
  62189. name: "Head (Side)",
  62190. image: {
  62191. source: "./media/characters/maki-kawa/head-side.svg"
  62192. }
  62193. },
  62194. paw: {
  62195. height: math.unit(0.9, "feet"),
  62196. name: "Paw",
  62197. image: {
  62198. source: "./media/characters/maki-kawa/paw.svg"
  62199. }
  62200. },
  62201. },
  62202. [
  62203. {
  62204. name: "Normal",
  62205. height: math.unit(6 + 2/12, "feet"),
  62206. default: true
  62207. },
  62208. {
  62209. name: "Macro",
  62210. height: math.unit(617, "feet")
  62211. },
  62212. ]
  62213. ))
  62214. characterMakers.push(() => makeCharacter(
  62215. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62216. {
  62217. front: {
  62218. height: math.unit(10, "feet"),
  62219. weight: math.unit(1500, "lb"),
  62220. name: "Front",
  62221. image: {
  62222. source: "./media/characters/lennox/front.svg",
  62223. extra: 1623/1496,
  62224. bottom: 18/1641
  62225. }
  62226. },
  62227. back: {
  62228. height: math.unit(10, "feet"),
  62229. weight: math.unit(1500, "lb"),
  62230. name: "Back",
  62231. image: {
  62232. source: "./media/characters/lennox/back.svg",
  62233. extra: 1641/1481,
  62234. bottom: 13/1654
  62235. }
  62236. },
  62237. maw: {
  62238. height: math.unit(2.94, "feet"),
  62239. name: "Maw",
  62240. image: {
  62241. source: "./media/characters/lennox/maw.svg"
  62242. }
  62243. },
  62244. },
  62245. [
  62246. {
  62247. name: "Micro",
  62248. height: math.unit(1, "inch")
  62249. },
  62250. {
  62251. name: "Normal",
  62252. height: math.unit(10, "feet"),
  62253. default: true
  62254. },
  62255. {
  62256. name: "Macro",
  62257. height: math.unit(200, "feet")
  62258. },
  62259. ]
  62260. ))
  62261. characterMakers.push(() => makeCharacter(
  62262. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62263. {
  62264. frontDressed: {
  62265. height: math.unit(15 + 7/12, "feet"),
  62266. weight: math.unit(5000, "lb"),
  62267. name: "Front (Dressed)",
  62268. image: {
  62269. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62270. extra: 1136/1023,
  62271. bottom: 51/1187
  62272. }
  62273. },
  62274. backDressed: {
  62275. height: math.unit(15 + 7/12, "feet"),
  62276. weight: math.unit(5000, "lb"),
  62277. name: "Back (Dressed)",
  62278. image: {
  62279. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62280. extra: 2359/2143,
  62281. bottom: 103/2462
  62282. }
  62283. },
  62284. front: {
  62285. height: math.unit(15 + 7/12, "feet"),
  62286. weight: math.unit(5000, "lb"),
  62287. name: "Front",
  62288. image: {
  62289. source: "./media/characters/vyse-iron-thunder/front.svg",
  62290. extra: 1136/1023,
  62291. bottom: 51/1187
  62292. }
  62293. },
  62294. hand: {
  62295. height: math.unit(2.36, "feet"),
  62296. name: "Hand",
  62297. image: {
  62298. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62299. }
  62300. },
  62301. foot: {
  62302. height: math.unit(1.72, "feet"),
  62303. name: "Foot",
  62304. image: {
  62305. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62306. }
  62307. },
  62308. mouth: {
  62309. height: math.unit(2, "feet"),
  62310. name: "Mouth",
  62311. image: {
  62312. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62313. }
  62314. },
  62315. eye: {
  62316. height: math.unit(0.58, "feet"),
  62317. name: "Eye",
  62318. image: {
  62319. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62320. }
  62321. },
  62322. },
  62323. [
  62324. {
  62325. name: "Normal",
  62326. height: math.unit(15 + 7/12, "feet"),
  62327. default: true
  62328. },
  62329. {
  62330. name: "Macro",
  62331. height: math.unit(157, "feet")
  62332. },
  62333. {
  62334. name: "Macro+",
  62335. height: math.unit(1570, "feet")
  62336. },
  62337. {
  62338. name: "Macro++",
  62339. height: math.unit(15700, "feet")
  62340. },
  62341. {
  62342. name: "Macro+++",
  62343. height: math.unit(157000, "feet")
  62344. },
  62345. {
  62346. name: "Macro++++",
  62347. height: math.unit(1570000, "feet")
  62348. },
  62349. ]
  62350. ))
  62351. characterMakers.push(() => makeCharacter(
  62352. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62353. {
  62354. side: {
  62355. height: math.unit(6, "feet"),
  62356. weight: math.unit(115, "lb"),
  62357. name: "Side",
  62358. image: {
  62359. source: "./media/characters/moonbeam/side.svg",
  62360. extra: 839/485,
  62361. bottom: 60/899
  62362. }
  62363. },
  62364. },
  62365. [
  62366. {
  62367. name: "Normal",
  62368. height: math.unit(6, "feet"),
  62369. default: true
  62370. },
  62371. ]
  62372. ))
  62373. characterMakers.push(() => makeCharacter(
  62374. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62375. {
  62376. front: {
  62377. height: math.unit(3500, "miles"),
  62378. weight: math.unit(1659, "petatonnes"),
  62379. name: "Front",
  62380. image: {
  62381. source: "./media/characters/baltica/front.svg",
  62382. extra: 429/428,
  62383. bottom: 41/470
  62384. }
  62385. },
  62386. back: {
  62387. height: math.unit(3500, "miles"),
  62388. weight: math.unit(1659, "petatonnes"),
  62389. name: "Back",
  62390. image: {
  62391. source: "./media/characters/baltica/back.svg",
  62392. extra: 452/451,
  62393. bottom: 8/460
  62394. }
  62395. },
  62396. },
  62397. [
  62398. {
  62399. name: "Gigamacro",
  62400. height: math.unit(3500, "miles"),
  62401. default: true
  62402. },
  62403. ]
  62404. ))
  62405. characterMakers.push(() => makeCharacter(
  62406. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62407. {
  62408. front: {
  62409. height: math.unit(6 + 10/12, "feet"),
  62410. weight: math.unit(200, "lb"),
  62411. name: "Front",
  62412. image: {
  62413. source: "./media/characters/shadow-wolf/front.svg",
  62414. extra: 1931/1760,
  62415. bottom: 88/2019
  62416. }
  62417. },
  62418. },
  62419. [
  62420. {
  62421. name: "Normal",
  62422. height: math.unit(6 + 10/12, "feet"),
  62423. default: true
  62424. },
  62425. ]
  62426. ))
  62427. characterMakers.push(() => makeCharacter(
  62428. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62429. {
  62430. front: {
  62431. height: math.unit(5 + 10/12, "feet"),
  62432. name: "Front",
  62433. image: {
  62434. source: "./media/characters/quincy-praying-mantis/front.svg",
  62435. extra: 1055/891,
  62436. bottom: 92/1147
  62437. }
  62438. },
  62439. soles: {
  62440. height: math.unit(0.85, "feet"),
  62441. name: "Soles",
  62442. image: {
  62443. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62444. extra: 429/324,
  62445. bottom: 89/518
  62446. },
  62447. extraAttributes: {
  62448. "shoeSize": {
  62449. name: "Shoe Size",
  62450. power: 1,
  62451. type: "length",
  62452. base: math.unit(23, "ShoeSizeMensUS"),
  62453. defaultUnit: "ShoeSizeMensUS"
  62454. },
  62455. }
  62456. },
  62457. foot: {
  62458. height: math.unit(0.72, "feet"),
  62459. name: "Foot",
  62460. image: {
  62461. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62462. extra: 349/349,
  62463. bottom: 76/425
  62464. }
  62465. },
  62466. },
  62467. [
  62468. {
  62469. name: "Normal",
  62470. height: math.unit(5 + 10/12, "feet"),
  62471. default: true
  62472. },
  62473. ]
  62474. ))
  62475. characterMakers.push(() => makeCharacter(
  62476. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62477. {
  62478. front: {
  62479. height: math.unit(6, "feet"),
  62480. name: "Front",
  62481. image: {
  62482. source: "./media/characters/christopher-redwood/front.svg",
  62483. extra: 1402/1341,
  62484. bottom: 23/1425
  62485. }
  62486. },
  62487. back: {
  62488. height: math.unit(6, "feet"),
  62489. name: "Back",
  62490. image: {
  62491. source: "./media/characters/christopher-redwood/back.svg",
  62492. extra: 1406/1345,
  62493. bottom: 36/1442
  62494. }
  62495. },
  62496. head: {
  62497. height: math.unit(1.685, "feet"),
  62498. name: "Head",
  62499. image: {
  62500. source: "./media/characters/christopher-redwood/head.svg"
  62501. }
  62502. },
  62503. },
  62504. [
  62505. {
  62506. name: "Normal",
  62507. height: math.unit(6, "feet"),
  62508. default: true
  62509. },
  62510. ]
  62511. ))
  62512. characterMakers.push(() => makeCharacter(
  62513. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62514. {
  62515. front: {
  62516. height: math.unit(1.9, "meters"),
  62517. weight: math.unit(140, "lb"),
  62518. name: "Front",
  62519. image: {
  62520. source: "./media/characters/kara-fox/front.svg",
  62521. extra: 766/711,
  62522. bottom: 41/807
  62523. }
  62524. },
  62525. back: {
  62526. height: math.unit(1.9, "meters"),
  62527. weight: math.unit(140, "lb"),
  62528. name: "Back",
  62529. image: {
  62530. source: "./media/characters/kara-fox/back.svg",
  62531. extra: 766/596,
  62532. bottom: 29/795
  62533. }
  62534. },
  62535. maw: {
  62536. height: math.unit(0.78, "feet"),
  62537. name: "Maw",
  62538. image: {
  62539. source: "./media/characters/kara-fox/maw.svg"
  62540. }
  62541. },
  62542. pawpads: {
  62543. height: math.unit(0.96, "feet"),
  62544. name: "Pawpads",
  62545. image: {
  62546. source: "./media/characters/kara-fox/pawpads.svg"
  62547. }
  62548. },
  62549. },
  62550. [
  62551. {
  62552. name: "Normal",
  62553. height: math.unit(1.9, "meters"),
  62554. default: true
  62555. },
  62556. {
  62557. name: "Giantess",
  62558. height: math.unit(80, "meters")
  62559. },
  62560. ]
  62561. ))
  62562. characterMakers.push(() => makeCharacter(
  62563. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62564. {
  62565. front: {
  62566. height: math.unit(12, "feet"),
  62567. name: "Front",
  62568. image: {
  62569. source: "./media/characters/naomi-espeon/front.svg",
  62570. extra: 892/797,
  62571. bottom: 5/897
  62572. }
  62573. },
  62574. back: {
  62575. height: math.unit(12, "feet"),
  62576. name: "Back",
  62577. image: {
  62578. source: "./media/characters/naomi-espeon/back.svg",
  62579. extra: 890/785,
  62580. bottom: 12/902
  62581. }
  62582. },
  62583. },
  62584. [
  62585. {
  62586. name: "Normal",
  62587. height: math.unit(12, "feet"),
  62588. default: true
  62589. },
  62590. ]
  62591. ))
  62592. characterMakers.push(() => makeCharacter(
  62593. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62594. {
  62595. anthro_front: {
  62596. height: math.unit(8, "feet"),
  62597. weight: math.unit(625, "lb"),
  62598. name: "Front",
  62599. image: {
  62600. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62601. extra: 638/574,
  62602. bottom: 73/711
  62603. },
  62604. form: "anthro",
  62605. default: true
  62606. },
  62607. anthro_back: {
  62608. height: math.unit(8, "feet"),
  62609. weight: math.unit(625, "lb"),
  62610. name: "Back",
  62611. image: {
  62612. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62613. extra: 674/614,
  62614. bottom: 7/681
  62615. },
  62616. form: "anthro",
  62617. },
  62618. taur_side: {
  62619. height: math.unit(16, "feet"),
  62620. weight: math.unit(4.5, "tons"),
  62621. name: "Side",
  62622. image: {
  62623. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62624. extra: 704/646,
  62625. bottom: 132/836
  62626. },
  62627. form: "taur",
  62628. default: true
  62629. },
  62630. },
  62631. [
  62632. {
  62633. name: "Normal",
  62634. height: math.unit(8, "feet"),
  62635. default: true,
  62636. form: "anthro"
  62637. },
  62638. {
  62639. name: "Normal",
  62640. height: math.unit(16, "feet"),
  62641. default: true,
  62642. form: "taur"
  62643. },
  62644. ],
  62645. {
  62646. "anthro": {
  62647. name: "Anthro",
  62648. default: true
  62649. },
  62650. "taur": {
  62651. name: "Taur",
  62652. },
  62653. }
  62654. ))
  62655. characterMakers.push(() => makeCharacter(
  62656. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62657. {
  62658. front: {
  62659. height: math.unit(190, "cm"),
  62660. weight: math.unit(110, "kg"),
  62661. name: "Front",
  62662. image: {
  62663. source: "./media/characters/amelie/front.svg",
  62664. extra: 530/442,
  62665. bottom: 35/565
  62666. }
  62667. },
  62668. },
  62669. [
  62670. {
  62671. name: "Normal",
  62672. height: math.unit(190, "cm"),
  62673. default: true
  62674. },
  62675. ]
  62676. ))
  62677. characterMakers.push(() => makeCharacter(
  62678. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62679. {
  62680. front: {
  62681. height: math.unit(21, "feet"),
  62682. weight: math.unit(30000, "lb"),
  62683. name: "Front",
  62684. image: {
  62685. source: "./media/characters/valence/front.svg",
  62686. extra: 1430/1306,
  62687. bottom: 51/1481
  62688. }
  62689. },
  62690. },
  62691. [
  62692. {
  62693. name: "Normal",
  62694. height: math.unit(21, "feet"),
  62695. default: true
  62696. },
  62697. ]
  62698. ))
  62699. characterMakers.push(() => makeCharacter(
  62700. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62701. {
  62702. front: {
  62703. height: math.unit(5 + 9/12, "feet"),
  62704. weight: math.unit(170, "lb"),
  62705. name: "Front",
  62706. image: {
  62707. source: "./media/characters/aurora-adkins/front.svg",
  62708. extra: 1141/1089,
  62709. bottom: 41/1182
  62710. }
  62711. },
  62712. },
  62713. [
  62714. {
  62715. name: "Tiny",
  62716. height: math.unit(7, "mm")
  62717. },
  62718. {
  62719. name: "Small",
  62720. height: math.unit(3.4, "inches")
  62721. },
  62722. {
  62723. name: "Normal",
  62724. height: math.unit(5 + 9/12, "feet"),
  62725. default: true
  62726. },
  62727. {
  62728. name: "Big",
  62729. height: math.unit(31, "feet")
  62730. },
  62731. {
  62732. name: "Giant",
  62733. height: math.unit(300, "feet")
  62734. },
  62735. ]
  62736. ))
  62737. characterMakers.push(() => makeCharacter(
  62738. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62739. {
  62740. front: {
  62741. height: math.unit(5 + 6/12, "feet"),
  62742. weight: math.unit(210, "lb"),
  62743. name: "Front",
  62744. image: {
  62745. source: "./media/characters/cyber/front.svg",
  62746. extra: 1968/1798,
  62747. bottom: 10/1978
  62748. },
  62749. extraAttributes: {
  62750. "shoeSize": {
  62751. name: "Shoe Size",
  62752. power: 1,
  62753. type: "length",
  62754. base: math.unit(30, "ShoeSizeMensUS")
  62755. },
  62756. }
  62757. },
  62758. },
  62759. [
  62760. {
  62761. name: "Normal",
  62762. height: math.unit(5 + 6/12, "feet"),
  62763. default: true
  62764. },
  62765. ]
  62766. ))
  62767. characterMakers.push(() => makeCharacter(
  62768. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62769. {
  62770. front: {
  62771. height: math.unit(6 + 6/12, "feet"),
  62772. weight: math.unit(140, "lb"),
  62773. name: "Front",
  62774. image: {
  62775. source: "./media/characters/sapphire-wairimea/front.svg",
  62776. extra: 475/458,
  62777. bottom: 14/489
  62778. }
  62779. },
  62780. },
  62781. [
  62782. {
  62783. name: "Normal",
  62784. height: math.unit(6 + 6/12, "feet")
  62785. },
  62786. {
  62787. name: "Macro",
  62788. height: math.unit(132, "feet"),
  62789. default: true
  62790. },
  62791. ]
  62792. ))
  62793. characterMakers.push(() => makeCharacter(
  62794. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62795. {
  62796. front: {
  62797. height: math.unit(1.6, "meters"),
  62798. weight: math.unit(100, "lb"),
  62799. name: "Front",
  62800. image: {
  62801. source: "./media/characters/cirkazi/front.svg",
  62802. extra: 489/477,
  62803. bottom: 0/489
  62804. }
  62805. },
  62806. },
  62807. [
  62808. {
  62809. name: "Normal",
  62810. height: math.unit(1.6, "meters")
  62811. },
  62812. {
  62813. name: "Macro",
  62814. height: math.unit(800, "feet"),
  62815. default: true
  62816. },
  62817. ]
  62818. ))
  62819. characterMakers.push(() => makeCharacter(
  62820. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62821. {
  62822. front: {
  62823. height: math.unit(5 + 10/12, "feet"),
  62824. weight: math.unit(145, "lb"),
  62825. name: "Front",
  62826. image: {
  62827. source: "./media/characters/corrin-cavelli/front.svg",
  62828. extra: 483/464,
  62829. bottom: 6/489
  62830. }
  62831. },
  62832. },
  62833. [
  62834. {
  62835. name: "Human",
  62836. height: math.unit(5 + 10/12, "feet")
  62837. },
  62838. {
  62839. name: "Giant",
  62840. height: math.unit(210, "feet"),
  62841. default: true
  62842. },
  62843. ]
  62844. ))
  62845. characterMakers.push(() => makeCharacter(
  62846. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62847. {
  62848. back: {
  62849. height: math.unit(5 + 6/12, "feet"),
  62850. weight: math.unit(115, "lb"),
  62851. name: "Back",
  62852. image: {
  62853. source: "./media/characters/lori-lopez/back.svg",
  62854. extra: 483/474,
  62855. bottom: 6/489
  62856. }
  62857. },
  62858. },
  62859. [
  62860. {
  62861. name: "Human",
  62862. height: math.unit(5 + 6/12, "feet")
  62863. },
  62864. {
  62865. name: "Macro",
  62866. height: math.unit(198, "feet"),
  62867. default: true
  62868. },
  62869. ]
  62870. ))
  62871. characterMakers.push(() => makeCharacter(
  62872. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62873. {
  62874. front: {
  62875. height: math.unit(6, "feet"),
  62876. weight: math.unit(220, "lb"),
  62877. name: "Front",
  62878. image: {
  62879. source: "./media/characters/sylvia-beauregard/front.svg",
  62880. extra: 483/479,
  62881. bottom: 6/489
  62882. }
  62883. },
  62884. },
  62885. [
  62886. {
  62887. name: "Macro",
  62888. height: math.unit(2071, "feet"),
  62889. default: true
  62890. },
  62891. ]
  62892. ))
  62893. characterMakers.push(() => makeCharacter(
  62894. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  62895. {
  62896. back: {
  62897. height: math.unit(5 + 6/12, "feet"),
  62898. weight: math.unit(160, "lb"),
  62899. name: "Back",
  62900. image: {
  62901. source: "./media/characters/akiko-takahashi/back.svg",
  62902. extra: 459/454,
  62903. bottom: 27/486
  62904. }
  62905. },
  62906. },
  62907. [
  62908. {
  62909. name: "Human",
  62910. height: math.unit(5 + 6/12, "feet")
  62911. },
  62912. {
  62913. name: "Macro",
  62914. height: math.unit(198, "feet"),
  62915. default: true
  62916. },
  62917. {
  62918. name: "Megamacro",
  62919. height: math.unit(7128, "feet")
  62920. },
  62921. ]
  62922. ))
  62923. characterMakers.push(() => makeCharacter(
  62924. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  62925. {
  62926. front: {
  62927. height: math.unit(6, "feet"),
  62928. weight: math.unit(140, "lb"),
  62929. name: "Front",
  62930. image: {
  62931. source: "./media/characters/velvet-garza/front.svg",
  62932. extra: 480/462,
  62933. bottom: 7/487
  62934. }
  62935. },
  62936. },
  62937. [
  62938. {
  62939. name: "Macro",
  62940. height: math.unit(37, "feet"),
  62941. default: true
  62942. },
  62943. ]
  62944. ))
  62945. characterMakers.push(() => makeCharacter(
  62946. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  62947. {
  62948. front: {
  62949. height: math.unit(7 + 6/12, "feet"),
  62950. weight: math.unit(400, "lb"),
  62951. name: "Front",
  62952. image: {
  62953. source: "./media/characters/gaia/front.svg",
  62954. extra: 474/463,
  62955. bottom: 13/487
  62956. }
  62957. },
  62958. },
  62959. [
  62960. {
  62961. name: "MiniMacro",
  62962. height: math.unit(7 + 6/12, "feet")
  62963. },
  62964. {
  62965. name: "GigaMacro",
  62966. height: math.unit(14500, "feet"),
  62967. default: true
  62968. },
  62969. ]
  62970. ))
  62971. characterMakers.push(() => makeCharacter(
  62972. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  62973. {
  62974. front: {
  62975. height: math.unit(6, "feet"),
  62976. weight: math.unit(150, "lb"),
  62977. name: "Front",
  62978. image: {
  62979. source: "./media/characters/tim/front.svg",
  62980. extra: 1878/1743,
  62981. bottom: 9/1887
  62982. }
  62983. },
  62984. frontDressed: {
  62985. height: math.unit(6, "feet"),
  62986. weight: math.unit(150, "lb"),
  62987. name: "Front (Dressed)",
  62988. image: {
  62989. source: "./media/characters/tim/front-dressed.svg",
  62990. extra: 1765/1485,
  62991. bottom: 48/1813
  62992. }
  62993. },
  62994. backDressed: {
  62995. height: math.unit(6, "feet"),
  62996. weight: math.unit(150, "lb"),
  62997. name: "Back (Dressed)",
  62998. image: {
  62999. source: "./media/characters/tim/back-dressed.svg",
  63000. extra: 1750/1465,
  63001. bottom: 25/1775
  63002. }
  63003. },
  63004. dick: {
  63005. height: math.unit(1.5, "feet"),
  63006. weight: math.unit(6, "lb"),
  63007. name: "Dick",
  63008. image: {
  63009. source: "./media/characters/tim/dick.svg"
  63010. }
  63011. },
  63012. hand: {
  63013. height: math.unit(0.522, "feet"),
  63014. name: "Hand",
  63015. image: {
  63016. source: "./media/characters/tim/hand.svg"
  63017. }
  63018. },
  63019. palm: {
  63020. height: math.unit(0.48, "feet"),
  63021. name: "Palm",
  63022. image: {
  63023. source: "./media/characters/tim/palm.svg"
  63024. }
  63025. },
  63026. paw: {
  63027. height: math.unit(0.9, "feet"),
  63028. name: "Paw",
  63029. image: {
  63030. source: "./media/characters/tim/paw.svg"
  63031. }
  63032. },
  63033. sole: {
  63034. height: math.unit(0.88, "feet"),
  63035. name: "Sole",
  63036. image: {
  63037. source: "./media/characters/tim/sole.svg"
  63038. }
  63039. },
  63040. },
  63041. [
  63042. {
  63043. name: "Macro",
  63044. height: math.unit(1000, "feet")
  63045. },
  63046. {
  63047. name: "Megamacro",
  63048. height: math.unit(10000, "feet"),
  63049. default: true
  63050. },
  63051. {
  63052. name: "Megamacro+",
  63053. height: math.unit(50000, "feet")
  63054. },
  63055. {
  63056. name: "Gigamacro",
  63057. height: math.unit(150000, "km")
  63058. },
  63059. ]
  63060. ))
  63061. characterMakers.push(() => makeCharacter(
  63062. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63063. {
  63064. front: {
  63065. height: math.unit(5 + 8/12, "feet"),
  63066. weight: math.unit(170, "lb"),
  63067. name: "Front",
  63068. image: {
  63069. source: "./media/characters/abel-delreoux/front.svg",
  63070. extra: 1615/1500,
  63071. bottom: 82/1697
  63072. }
  63073. },
  63074. back: {
  63075. height: math.unit(5 + 8/12, "feet"),
  63076. weight: math.unit(170, "lb"),
  63077. name: "Back",
  63078. image: {
  63079. source: "./media/characters/abel-delreoux/back.svg",
  63080. extra: 1644/1534,
  63081. bottom: 24/1668
  63082. }
  63083. },
  63084. casual: {
  63085. height: math.unit(5 + 8/12, "feet"),
  63086. weight: math.unit(170, "lb"),
  63087. name: "Casual",
  63088. image: {
  63089. source: "./media/characters/abel-delreoux/casual.svg",
  63090. extra: 1716/1598,
  63091. bottom: 29/1745
  63092. }
  63093. },
  63094. sleepy: {
  63095. height: math.unit(5 + 8/12, "feet"),
  63096. weight: math.unit(170, "lb"),
  63097. name: "Sleepy",
  63098. image: {
  63099. source: "./media/characters/abel-delreoux/sleepy.svg",
  63100. extra: 1649/1573,
  63101. bottom: 22/1671
  63102. }
  63103. },
  63104. fem: {
  63105. height: math.unit(5 + 8/12, "feet"),
  63106. weight: math.unit(170, "lb"),
  63107. name: "Fem",
  63108. image: {
  63109. source: "./media/characters/abel-delreoux/fem.svg",
  63110. extra: 1680/1564,
  63111. bottom: 17/1697
  63112. }
  63113. },
  63114. hand: {
  63115. height: math.unit(0.78, "feet"),
  63116. name: "Hand",
  63117. image: {
  63118. source: "./media/characters/abel-delreoux/hand.svg"
  63119. }
  63120. },
  63121. paw: {
  63122. height: math.unit(0.78, "feet"),
  63123. name: "Paw",
  63124. image: {
  63125. source: "./media/characters/abel-delreoux/paw.svg"
  63126. }
  63127. },
  63128. },
  63129. [
  63130. {
  63131. name: "Normal",
  63132. height: math.unit(5 + 8/12, "feet"),
  63133. default: true
  63134. },
  63135. ]
  63136. ))
  63137. characterMakers.push(() => makeCharacter(
  63138. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63139. {
  63140. front: {
  63141. height: math.unit(6, "feet"),
  63142. weight: math.unit(159, "lb"),
  63143. name: "Front",
  63144. image: {
  63145. source: "./media/characters/meus/front.svg",
  63146. extra: 938/843,
  63147. bottom: 37/975
  63148. }
  63149. },
  63150. back: {
  63151. height: math.unit(6, "feet"),
  63152. weight: math.unit(159, "lb"),
  63153. name: "Back",
  63154. image: {
  63155. source: "./media/characters/meus/back.svg",
  63156. extra: 967/873,
  63157. bottom: 12/979
  63158. }
  63159. },
  63160. },
  63161. [
  63162. {
  63163. name: "Micro",
  63164. height: math.unit(2, "inches")
  63165. },
  63166. {
  63167. name: "Mini",
  63168. height: math.unit(6, "inches")
  63169. },
  63170. {
  63171. name: "Normal",
  63172. height: math.unit(6, "feet"),
  63173. default: true
  63174. },
  63175. {
  63176. name: "Macro",
  63177. height: math.unit(84, "feet")
  63178. },
  63179. ]
  63180. ))
  63181. characterMakers.push(() => makeCharacter(
  63182. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63183. {
  63184. front: {
  63185. height: math.unit(60, "cm"),
  63186. weight: math.unit(18, "kg"),
  63187. name: "Front",
  63188. image: {
  63189. source: "./media/characters/yamato/front.svg",
  63190. extra: 733/688,
  63191. bottom: 29/762
  63192. }
  63193. },
  63194. },
  63195. [
  63196. {
  63197. name: "Micro",
  63198. height: math.unit(6, "cm")
  63199. },
  63200. {
  63201. name: "Normal",
  63202. height: math.unit(60, "cm"),
  63203. default: true
  63204. },
  63205. ]
  63206. ))
  63207. characterMakers.push(() => makeCharacter(
  63208. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63209. {
  63210. front: {
  63211. height: math.unit(9, "feet"),
  63212. weight: math.unit(518, "lb"),
  63213. name: "Front",
  63214. image: {
  63215. source: "./media/characters/barus/front.svg",
  63216. extra: 1877/1795,
  63217. bottom: 55/1932
  63218. }
  63219. },
  63220. },
  63221. [
  63222. {
  63223. name: "Base Height",
  63224. height: math.unit(9, "feet"),
  63225. default: true
  63226. },
  63227. {
  63228. name: "Large",
  63229. height: math.unit(18, "feet")
  63230. },
  63231. {
  63232. name: "Giant",
  63233. height: math.unit(100, "feet")
  63234. },
  63235. {
  63236. name: "Huge",
  63237. height: math.unit(500, "feet")
  63238. },
  63239. {
  63240. name: "Enormous",
  63241. height: math.unit(300, "meters")
  63242. },
  63243. {
  63244. name: "Deity Among Man",
  63245. height: math.unit(3000, "meters")
  63246. },
  63247. ]
  63248. ))
  63249. characterMakers.push(() => makeCharacter(
  63250. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63251. {
  63252. front: {
  63253. height: math.unit(1.7, "meters"),
  63254. name: "Front",
  63255. image: {
  63256. source: "./media/characters/yari/front.svg",
  63257. extra: 1210/1125,
  63258. bottom: 283/1493
  63259. }
  63260. },
  63261. back: {
  63262. height: math.unit(1.7, "meters"),
  63263. name: "Back",
  63264. image: {
  63265. source: "./media/characters/yari/back.svg",
  63266. extra: 1240/1195,
  63267. bottom: 180/1420
  63268. }
  63269. },
  63270. head: {
  63271. height: math.unit(1.26, "feet"),
  63272. name: "Head",
  63273. image: {
  63274. source: "./media/characters/yari/head.svg"
  63275. }
  63276. },
  63277. },
  63278. [
  63279. {
  63280. name: "Nano",
  63281. height: math.unit(0.5, "mm")
  63282. },
  63283. {
  63284. name: "Micro",
  63285. height: math.unit(3, "inches")
  63286. },
  63287. {
  63288. name: "Short",
  63289. height: math.unit(1.5, "meters")
  63290. },
  63291. {
  63292. name: "Norm",
  63293. height: math.unit(1.7, "meters"),
  63294. default: true
  63295. },
  63296. ]
  63297. ))
  63298. characterMakers.push(() => makeCharacter(
  63299. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63300. {
  63301. front: {
  63302. height: math.unit(5 + 2/12, "feet"),
  63303. weight: math.unit(110, "lb"),
  63304. name: "Front",
  63305. image: {
  63306. source: "./media/characters/salem/front.svg",
  63307. extra: 1895/1800,
  63308. bottom: 23/1918
  63309. }
  63310. },
  63311. back: {
  63312. height: math.unit(5 + 2/12, "feet"),
  63313. weight: math.unit(110, "lb"),
  63314. name: "Back",
  63315. image: {
  63316. source: "./media/characters/salem/back.svg",
  63317. extra: 1875/1802,
  63318. bottom: 20/1895
  63319. }
  63320. },
  63321. head: {
  63322. height: math.unit(1, "feet"),
  63323. name: "Head",
  63324. image: {
  63325. source: "./media/characters/salem/head.svg"
  63326. }
  63327. },
  63328. paw: {
  63329. height: math.unit(0.59, "feet"),
  63330. name: "Paw",
  63331. image: {
  63332. source: "./media/characters/salem/paw.svg"
  63333. }
  63334. },
  63335. beans: {
  63336. height: math.unit(0.66, "feet"),
  63337. name: "Beans",
  63338. image: {
  63339. source: "./media/characters/salem/beans.svg"
  63340. }
  63341. },
  63342. eye: {
  63343. height: math.unit(0.224, "feet"),
  63344. name: "Eye",
  63345. image: {
  63346. source: "./media/characters/salem/eye.svg"
  63347. }
  63348. },
  63349. semiferal: {
  63350. height: math.unit(2.3, "feet"),
  63351. name: "Semiferal",
  63352. image: {
  63353. source: "./media/characters/salem/semiferal.svg",
  63354. extra: 914/839,
  63355. bottom: 32/946
  63356. }
  63357. },
  63358. },
  63359. [
  63360. {
  63361. name: "Micro",
  63362. height: math.unit(4, "inches")
  63363. },
  63364. {
  63365. name: "Normal",
  63366. height: math.unit(5 + 2/12, "feet"),
  63367. default: true
  63368. },
  63369. {
  63370. name: "Macro",
  63371. height: math.unit(108, "feet")
  63372. },
  63373. {
  63374. name: "Macro+",
  63375. height: math.unit(1500, "feet")
  63376. },
  63377. ]
  63378. ))
  63379. //characters
  63380. function makeCharacters() {
  63381. const results = [];
  63382. characterMakers.forEach(character => {
  63383. results.push(character());
  63384. });
  63385. return results;
  63386. }