less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

62562 lines
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. }
  2315. //species
  2316. function getSpeciesInfo(speciesList) {
  2317. let result = new Set();
  2318. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2319. result.add(entry)
  2320. });
  2321. return Array.from(result);
  2322. };
  2323. function getSpeciesInfoHelper(species) {
  2324. if (!speciesData[species]) {
  2325. console.warn(species + " doesn't exist");
  2326. return [];
  2327. }
  2328. if (speciesData[species].parents) {
  2329. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2330. } else {
  2331. return [species];
  2332. }
  2333. }
  2334. characterMakers.push(() => makeCharacter(
  2335. {
  2336. name: "Fen",
  2337. species: ["crux"],
  2338. description: {
  2339. title: "Bio",
  2340. text: "Very furry. Sheds on everything."
  2341. },
  2342. tags: [
  2343. "anthro",
  2344. "goo"
  2345. ]
  2346. },
  2347. {
  2348. front: {
  2349. height: math.unit(12, "feet"),
  2350. weight: math.unit(2400, "lb"),
  2351. preyCapacity: math.unit(1, "people"),
  2352. name: "Front",
  2353. image: {
  2354. source: "./media/characters/fen/front.svg",
  2355. extra: 1804/1562,
  2356. bottom: 205/2009
  2357. },
  2358. extraAttributes: {
  2359. pawSize: {
  2360. name: "Paw Size",
  2361. power: 2,
  2362. type: "area",
  2363. base: math.unit(0.35, "m^2")
  2364. }
  2365. }
  2366. },
  2367. diving: {
  2368. height: math.unit(4.9, "meters"),
  2369. weight: math.unit(2400, "lb"),
  2370. name: "Diving",
  2371. image: {
  2372. source: "./media/characters/fen/diving.svg"
  2373. }
  2374. },
  2375. sleeby: {
  2376. height: math.unit(3.45, "meters"),
  2377. weight: math.unit(2400, "lb"),
  2378. name: "Sleeby",
  2379. image: {
  2380. source: "./media/characters/fen/sleeby.svg"
  2381. }
  2382. },
  2383. goo: {
  2384. height: math.unit(12, "feet"),
  2385. weight: math.unit(3600, "lb"),
  2386. volume: math.unit(1000, "liters"),
  2387. preyCapacity: math.unit(6, "people"),
  2388. name: "Goo",
  2389. image: {
  2390. source: "./media/characters/fen/goo.svg",
  2391. extra: 1307/1071,
  2392. bottom: 134/1441
  2393. }
  2394. },
  2395. horror: {
  2396. height: math.unit(13.6, "feet"),
  2397. weight: math.unit(2400, "lb"),
  2398. preyCapacity: math.unit(1, "people"),
  2399. name: "Horror",
  2400. image: {
  2401. source: "./media/characters/fen/horror.svg",
  2402. extra: 893/797,
  2403. bottom: 0/893
  2404. }
  2405. },
  2406. gooNsfw: {
  2407. height: math.unit(12, "feet"),
  2408. weight: math.unit(3750, "lb"),
  2409. volume: math.unit(1000, "liters"),
  2410. preyCapacity: math.unit(6, "people"),
  2411. name: "Goo (NSFW)",
  2412. image: {
  2413. source: "./media/characters/fen/goo-nsfw.svg",
  2414. extra: 1875/1734,
  2415. bottom: 122/1997
  2416. }
  2417. },
  2418. maw: {
  2419. height: math.unit(5.03, "feet"),
  2420. name: "Maw",
  2421. image: {
  2422. source: "./media/characters/fen/maw.svg"
  2423. }
  2424. },
  2425. gooCeiling: {
  2426. height: math.unit(6.6, "feet"),
  2427. weight: math.unit(3000, "lb"),
  2428. volume: math.unit(1000, "liters"),
  2429. preyCapacity: math.unit(6, "people"),
  2430. name: "Maw (Goo)",
  2431. image: {
  2432. source: "./media/characters/fen/goo-maw.svg"
  2433. }
  2434. },
  2435. paw: {
  2436. height: math.unit(3.77, "feet"),
  2437. name: "Paw",
  2438. image: {
  2439. source: "./media/characters/fen/paw.svg"
  2440. },
  2441. extraAttributes: {
  2442. "toeSize": {
  2443. name: "Toe Size",
  2444. power: 2,
  2445. type: "area",
  2446. base: math.unit(0.02875, "m^2")
  2447. },
  2448. "pawSize": {
  2449. name: "Paw Size",
  2450. power: 2,
  2451. type: "area",
  2452. base: math.unit(0.378, "m^2")
  2453. },
  2454. }
  2455. },
  2456. tail: {
  2457. height: math.unit(12.1, "feet"),
  2458. name: "Tail",
  2459. image: {
  2460. source: "./media/characters/fen/tail.svg"
  2461. }
  2462. },
  2463. tailFull: {
  2464. height: math.unit(12.1, "feet"),
  2465. name: "Full Tail",
  2466. image: {
  2467. source: "./media/characters/fen/tail-full.svg"
  2468. }
  2469. },
  2470. back: {
  2471. height: math.unit(12, "feet"),
  2472. weight: math.unit(2400, "lb"),
  2473. name: "Back",
  2474. image: {
  2475. source: "./media/characters/fen/back.svg",
  2476. },
  2477. info: {
  2478. description: {
  2479. mode: "append",
  2480. text: "\n\nHe is not currently looking at you."
  2481. }
  2482. }
  2483. },
  2484. full: {
  2485. height: math.unit(1.85, "meter"),
  2486. weight: math.unit(3200, "lb"),
  2487. preyCapacity: math.unit(3, "people"),
  2488. name: "Full",
  2489. image: {
  2490. source: "./media/characters/fen/full.svg",
  2491. extra: 1133/859,
  2492. bottom: 145/1278
  2493. },
  2494. info: {
  2495. description: {
  2496. mode: "append",
  2497. text: "\n\nMunch."
  2498. }
  2499. }
  2500. },
  2501. gooLounging: {
  2502. height: math.unit(4.53, "feet"),
  2503. weight: math.unit(3000, "lb"),
  2504. preyCapacity: math.unit(6, "people"),
  2505. name: "Goo (Lounging)",
  2506. image: {
  2507. source: "./media/characters/fen/goo-lounging.svg",
  2508. bottom: 116 / 613
  2509. }
  2510. },
  2511. lounging: {
  2512. height: math.unit(10.52, "feet"),
  2513. weight: math.unit(2400, "lb"),
  2514. name: "Lounging",
  2515. image: {
  2516. source: "./media/characters/fen/lounging.svg"
  2517. }
  2518. },
  2519. },
  2520. [
  2521. {
  2522. name: "Small",
  2523. height: math.unit(2.2428, "meter")
  2524. },
  2525. {
  2526. name: "Normal",
  2527. height: math.unit(12, "feet"),
  2528. default: true,
  2529. },
  2530. {
  2531. name: "Big",
  2532. height: math.unit(20, "feet")
  2533. },
  2534. {
  2535. name: "Minimacro",
  2536. height: math.unit(40, "feet"),
  2537. info: {
  2538. description: {
  2539. mode: "append",
  2540. text: "\n\nTOO DAMN BIG"
  2541. }
  2542. }
  2543. },
  2544. {
  2545. name: "Macro",
  2546. height: math.unit(100, "feet"),
  2547. info: {
  2548. description: {
  2549. mode: "append",
  2550. text: "\n\nTOO DAMN BIG"
  2551. }
  2552. }
  2553. },
  2554. {
  2555. name: "Megamacro",
  2556. height: math.unit(2, "miles")
  2557. },
  2558. {
  2559. name: "Gigamacro",
  2560. height: math.unit(10, "earths")
  2561. },
  2562. ]
  2563. ))
  2564. characterMakers.push(() => makeCharacter(
  2565. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2566. {
  2567. front: {
  2568. height: math.unit(183, "cm"),
  2569. weight: math.unit(80, "kg"),
  2570. name: "Front",
  2571. image: {
  2572. source: "./media/characters/sofia-fluttertail/front.svg",
  2573. bottom: 0.01,
  2574. extra: 2154 / 2081
  2575. }
  2576. },
  2577. frontAlt: {
  2578. height: math.unit(183, "cm"),
  2579. weight: math.unit(80, "kg"),
  2580. name: "Front (alt)",
  2581. image: {
  2582. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2583. }
  2584. },
  2585. back: {
  2586. height: math.unit(183, "cm"),
  2587. weight: math.unit(80, "kg"),
  2588. name: "Back",
  2589. image: {
  2590. source: "./media/characters/sofia-fluttertail/back.svg"
  2591. }
  2592. },
  2593. kneeling: {
  2594. height: math.unit(125, "cm"),
  2595. weight: math.unit(80, "kg"),
  2596. name: "Kneeling",
  2597. image: {
  2598. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2599. extra: 1033 / 977,
  2600. bottom: 23.7 / 1057
  2601. }
  2602. },
  2603. maw: {
  2604. height: math.unit(183 / 5, "cm"),
  2605. name: "Maw",
  2606. image: {
  2607. source: "./media/characters/sofia-fluttertail/maw.svg"
  2608. }
  2609. },
  2610. mawcloseup: {
  2611. height: math.unit(183 / 5 * 0.41, "cm"),
  2612. name: "Maw (Closeup)",
  2613. image: {
  2614. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2615. }
  2616. },
  2617. paws: {
  2618. height: math.unit(1.17, "feet"),
  2619. name: "Paws",
  2620. image: {
  2621. source: "./media/characters/sofia-fluttertail/paws.svg",
  2622. extra: 851 / 851,
  2623. bottom: 17 / 868
  2624. }
  2625. },
  2626. },
  2627. [
  2628. {
  2629. name: "Normal",
  2630. height: math.unit(1.83, "meter")
  2631. },
  2632. {
  2633. name: "Size Thief",
  2634. height: math.unit(18, "feet")
  2635. },
  2636. {
  2637. name: "50 Foot Collie",
  2638. height: math.unit(50, "feet")
  2639. },
  2640. {
  2641. name: "Macro",
  2642. height: math.unit(96, "feet"),
  2643. default: true
  2644. },
  2645. {
  2646. name: "Megamerger",
  2647. height: math.unit(650, "feet")
  2648. },
  2649. ]
  2650. ))
  2651. characterMakers.push(() => makeCharacter(
  2652. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2653. {
  2654. front: {
  2655. height: math.unit(7, "feet"),
  2656. weight: math.unit(100, "kg"),
  2657. name: "Front",
  2658. image: {
  2659. source: "./media/characters/march/front.svg",
  2660. extra: 1992/1851,
  2661. bottom: 39/2031
  2662. }
  2663. },
  2664. foot: {
  2665. height: math.unit(0.9, "feet"),
  2666. name: "Foot",
  2667. image: {
  2668. source: "./media/characters/march/foot.svg"
  2669. }
  2670. },
  2671. },
  2672. [
  2673. {
  2674. name: "Normal",
  2675. height: math.unit(7.9, "feet")
  2676. },
  2677. {
  2678. name: "Macro",
  2679. height: math.unit(220, "meters")
  2680. },
  2681. {
  2682. name: "Megamacro",
  2683. height: math.unit(2.98, "km"),
  2684. default: true
  2685. },
  2686. {
  2687. name: "Gigamacro",
  2688. height: math.unit(15963, "km")
  2689. },
  2690. {
  2691. name: "Teramacro",
  2692. height: math.unit(2980000000, "km")
  2693. },
  2694. {
  2695. name: "Examacro",
  2696. height: math.unit(250, "parsecs")
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(6, "feet"),
  2705. weight: math.unit(60, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/noir/front.svg",
  2709. extra: 1,
  2710. bottom: 0.032
  2711. }
  2712. },
  2713. },
  2714. [
  2715. {
  2716. name: "Normal",
  2717. height: math.unit(6.6, "feet")
  2718. },
  2719. {
  2720. name: "Macro",
  2721. height: math.unit(500, "feet")
  2722. },
  2723. {
  2724. name: "Megamacro",
  2725. height: math.unit(2.5, "km"),
  2726. default: true
  2727. },
  2728. {
  2729. name: "Gigamacro",
  2730. height: math.unit(22500, "km")
  2731. },
  2732. {
  2733. name: "Teramacro",
  2734. height: math.unit(2500000000, "km")
  2735. },
  2736. {
  2737. name: "Examacro",
  2738. height: math.unit(200, "parsecs")
  2739. },
  2740. ]
  2741. ))
  2742. characterMakers.push(() => makeCharacter(
  2743. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2744. {
  2745. front: {
  2746. height: math.unit(7, "feet"),
  2747. weight: math.unit(100, "kg"),
  2748. name: "Front",
  2749. image: {
  2750. source: "./media/characters/okuri/front.svg",
  2751. extra: 739/665,
  2752. bottom: 39/778
  2753. }
  2754. },
  2755. back: {
  2756. height: math.unit(7, "feet"),
  2757. weight: math.unit(100, "kg"),
  2758. name: "Back",
  2759. image: {
  2760. source: "./media/characters/okuri/back.svg",
  2761. extra: 734/653,
  2762. bottom: 13/747
  2763. }
  2764. },
  2765. sitting: {
  2766. height: math.unit(2.95, "feet"),
  2767. weight: math.unit(100, "kg"),
  2768. name: "Sitting",
  2769. image: {
  2770. source: "./media/characters/okuri/sitting.svg",
  2771. extra: 370/318,
  2772. bottom: 99/469
  2773. }
  2774. },
  2775. },
  2776. [
  2777. {
  2778. name: "Smallest",
  2779. height: math.unit(5 + 2/12, "feet")
  2780. },
  2781. {
  2782. name: "Smaller",
  2783. height: math.unit(300, "feet")
  2784. },
  2785. {
  2786. name: "Small",
  2787. height: math.unit(1000, "feet")
  2788. },
  2789. {
  2790. name: "Macro",
  2791. height: math.unit(1, "mile")
  2792. },
  2793. {
  2794. name: "Mega Macro (Small)",
  2795. height: math.unit(20, "km")
  2796. },
  2797. {
  2798. name: "Mega Macro (Large)",
  2799. height: math.unit(600, "km")
  2800. },
  2801. {
  2802. name: "Giga Macro",
  2803. height: math.unit(10000, "km")
  2804. },
  2805. {
  2806. name: "Normal",
  2807. height: math.unit(577560, "km"),
  2808. default: true
  2809. },
  2810. {
  2811. name: "Large",
  2812. height: math.unit(4, "galaxies")
  2813. },
  2814. {
  2815. name: "Largest",
  2816. height: math.unit(15, "multiverses")
  2817. },
  2818. ]
  2819. ))
  2820. characterMakers.push(() => makeCharacter(
  2821. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2822. {
  2823. front: {
  2824. height: math.unit(7, "feet"),
  2825. weight: math.unit(100, "kg"),
  2826. name: "Front",
  2827. image: {
  2828. source: "./media/characters/manny/front.svg",
  2829. extra: 1,
  2830. bottom: 0.06
  2831. }
  2832. },
  2833. back: {
  2834. height: math.unit(7, "feet"),
  2835. weight: math.unit(100, "kg"),
  2836. name: "Back",
  2837. image: {
  2838. source: "./media/characters/manny/back.svg",
  2839. extra: 1,
  2840. bottom: 0.014
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Normal",
  2847. height: math.unit(7, "feet"),
  2848. },
  2849. {
  2850. name: "Macro",
  2851. height: math.unit(78, "feet"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Macro+",
  2856. height: math.unit(300, "meters")
  2857. },
  2858. {
  2859. name: "Macro++",
  2860. height: math.unit(2400, "meters")
  2861. },
  2862. {
  2863. name: "Megamacro",
  2864. height: math.unit(5167, "meters")
  2865. },
  2866. {
  2867. name: "Gigamacro",
  2868. height: math.unit(41769, "miles")
  2869. },
  2870. ]
  2871. ))
  2872. characterMakers.push(() => makeCharacter(
  2873. { name: "Adake", species: ["tiger"], 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/adake/front-1.svg"
  2881. }
  2882. },
  2883. frontAlt: {
  2884. height: math.unit(7, "feet"),
  2885. weight: math.unit(100, "kg"),
  2886. name: "Front (Alt)",
  2887. image: {
  2888. source: "./media/characters/adake/front-2.svg",
  2889. extra: 1,
  2890. bottom: 0.01
  2891. }
  2892. },
  2893. back: {
  2894. height: math.unit(7, "feet"),
  2895. weight: math.unit(100, "kg"),
  2896. name: "Back",
  2897. image: {
  2898. source: "./media/characters/adake/back.svg",
  2899. }
  2900. },
  2901. kneel: {
  2902. height: math.unit(5.385, "feet"),
  2903. weight: math.unit(100, "kg"),
  2904. name: "Kneeling",
  2905. image: {
  2906. source: "./media/characters/adake/kneel.svg",
  2907. bottom: 0.052
  2908. }
  2909. },
  2910. },
  2911. [
  2912. {
  2913. name: "Normal",
  2914. height: math.unit(7, "feet"),
  2915. },
  2916. {
  2917. name: "Macro",
  2918. height: math.unit(78, "feet"),
  2919. default: true
  2920. },
  2921. {
  2922. name: "Macro+",
  2923. height: math.unit(300, "meters")
  2924. },
  2925. {
  2926. name: "Macro++",
  2927. height: math.unit(2400, "meters")
  2928. },
  2929. {
  2930. name: "Megamacro",
  2931. height: math.unit(5167, "meters")
  2932. },
  2933. {
  2934. name: "Gigamacro",
  2935. height: math.unit(41769, "miles")
  2936. },
  2937. ]
  2938. ))
  2939. characterMakers.push(() => makeCharacter(
  2940. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2941. {
  2942. front: {
  2943. height: math.unit(1.65, "meters"),
  2944. weight: math.unit(50, "kg"),
  2945. name: "Front",
  2946. image: {
  2947. source: "./media/characters/elijah/front.svg",
  2948. extra: 858 / 830,
  2949. bottom: 95.5 / 953.8559
  2950. }
  2951. },
  2952. back: {
  2953. height: math.unit(1.65, "meters"),
  2954. weight: math.unit(50, "kg"),
  2955. name: "Back",
  2956. image: {
  2957. source: "./media/characters/elijah/back.svg",
  2958. extra: 895 / 850,
  2959. bottom: 5.3 / 897.956
  2960. }
  2961. },
  2962. frontNsfw: {
  2963. height: math.unit(1.65, "meters"),
  2964. weight: math.unit(50, "kg"),
  2965. name: "Front (NSFW)",
  2966. image: {
  2967. source: "./media/characters/elijah/front-nsfw.svg",
  2968. extra: 858 / 830,
  2969. bottom: 95.5 / 953.8559
  2970. }
  2971. },
  2972. backNsfw: {
  2973. height: math.unit(1.65, "meters"),
  2974. weight: math.unit(50, "kg"),
  2975. name: "Back (NSFW)",
  2976. image: {
  2977. source: "./media/characters/elijah/back-nsfw.svg",
  2978. extra: 895 / 850,
  2979. bottom: 5.3 / 897.956
  2980. }
  2981. },
  2982. dick: {
  2983. height: math.unit(1, "feet"),
  2984. name: "Dick",
  2985. image: {
  2986. source: "./media/characters/elijah/dick.svg"
  2987. }
  2988. },
  2989. beakOpen: {
  2990. height: math.unit(1.25, "feet"),
  2991. name: "Beak (Open)",
  2992. image: {
  2993. source: "./media/characters/elijah/beak-open.svg"
  2994. }
  2995. },
  2996. beakShut: {
  2997. height: math.unit(1.25, "feet"),
  2998. name: "Beak (Shut)",
  2999. image: {
  3000. source: "./media/characters/elijah/beak-shut.svg"
  3001. }
  3002. },
  3003. footFlexing: {
  3004. height: math.unit(1.61, "feet"),
  3005. name: "Foot (Flexing)",
  3006. image: {
  3007. source: "./media/characters/elijah/foot-flexing.svg"
  3008. }
  3009. },
  3010. footStepping: {
  3011. height: math.unit(1.44, "feet"),
  3012. name: "Foot (Stepping)",
  3013. image: {
  3014. source: "./media/characters/elijah/foot-stepping.svg"
  3015. }
  3016. },
  3017. plantigradeLeg: {
  3018. height: math.unit(2.34, "feet"),
  3019. name: "Plantigrade Leg",
  3020. image: {
  3021. source: "./media/characters/elijah/plantigrade-leg.svg"
  3022. }
  3023. },
  3024. plantigradeFootLeft: {
  3025. height: math.unit(0.9, "feet"),
  3026. name: "Plantigrade Foot (Left)",
  3027. image: {
  3028. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3029. }
  3030. },
  3031. plantigradeFootRight: {
  3032. height: math.unit(0.9, "feet"),
  3033. name: "Plantigrade Foot (Right)",
  3034. image: {
  3035. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3036. }
  3037. },
  3038. },
  3039. [
  3040. {
  3041. name: "Normal",
  3042. height: math.unit(1.65, "meters")
  3043. },
  3044. {
  3045. name: "Macro",
  3046. height: math.unit(55, "meters"),
  3047. default: true
  3048. },
  3049. {
  3050. name: "Macro+",
  3051. height: math.unit(105, "meters")
  3052. },
  3053. ]
  3054. ))
  3055. characterMakers.push(() => makeCharacter(
  3056. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3057. {
  3058. front: {
  3059. height: math.unit(7 + 2/12, "feet"),
  3060. weight: math.unit(320, "kg"),
  3061. preyCapacity: math.unit(0.276549935, "people"),
  3062. name: "Front",
  3063. image: {
  3064. source: "./media/characters/rai/front.svg",
  3065. extra: 1802/1696,
  3066. bottom: 68/1870
  3067. },
  3068. form: "anthro",
  3069. default: true
  3070. },
  3071. frontDressed: {
  3072. height: math.unit(7 + 2/12, "feet"),
  3073. weight: math.unit(320, "kg"),
  3074. preyCapacity: math.unit(0.276549935, "people"),
  3075. name: "Front (Dressed)",
  3076. image: {
  3077. source: "./media/characters/rai/front-dressed.svg",
  3078. extra: 1802/1696,
  3079. bottom: 68/1870
  3080. },
  3081. form: "anthro"
  3082. },
  3083. side: {
  3084. height: math.unit(7 + 2/12, "feet"),
  3085. weight: math.unit(320, "kg"),
  3086. preyCapacity: math.unit(0.276549935, "people"),
  3087. name: "Side",
  3088. image: {
  3089. source: "./media/characters/rai/side.svg",
  3090. extra: 1789/1710,
  3091. bottom: 115/1904
  3092. },
  3093. form: "anthro"
  3094. },
  3095. back: {
  3096. height: math.unit(7 + 2/12, "feet"),
  3097. weight: math.unit(320, "kg"),
  3098. preyCapacity: math.unit(0.276549935, "people"),
  3099. name: "Back",
  3100. image: {
  3101. source: "./media/characters/rai/back.svg",
  3102. extra: 1770/1707,
  3103. bottom: 28/1798
  3104. },
  3105. form: "anthro"
  3106. },
  3107. feral: {
  3108. height: math.unit(9.5, "feet"),
  3109. weight: math.unit(640, "kg"),
  3110. preyCapacity: math.unit(4, "people"),
  3111. name: "Feral",
  3112. image: {
  3113. source: "./media/characters/rai/feral.svg",
  3114. extra: 945/553,
  3115. bottom: 176/1121
  3116. },
  3117. form: "feral",
  3118. default: true
  3119. },
  3120. dragon: {
  3121. height: math.unit(23, "feet"),
  3122. weight: math.unit(50000, "lb"),
  3123. name: "Dragon",
  3124. image: {
  3125. source: "./media/characters/rai/dragon.svg",
  3126. extra: 2498 / 2030,
  3127. bottom: 85.2 / 2584
  3128. },
  3129. form: "dragon",
  3130. default: true
  3131. },
  3132. maw: {
  3133. height: math.unit(1.69, "feet"),
  3134. name: "Maw",
  3135. image: {
  3136. source: "./media/characters/rai/maw.svg"
  3137. },
  3138. form: "anthro"
  3139. },
  3140. },
  3141. [
  3142. {
  3143. name: "Normal",
  3144. height: math.unit(7 + 2/12, "feet"),
  3145. form: "anthro"
  3146. },
  3147. {
  3148. name: "Big",
  3149. height: math.unit(11, "feet"),
  3150. form: "anthro"
  3151. },
  3152. {
  3153. name: "Minimacro",
  3154. height: math.unit(77, "feet"),
  3155. form: "anthro"
  3156. },
  3157. {
  3158. name: "Macro",
  3159. height: math.unit(302, "feet"),
  3160. default: true,
  3161. form: "anthro"
  3162. },
  3163. {
  3164. name: "Normal",
  3165. height: math.unit(9.5, "feet"),
  3166. form: "feral",
  3167. default: true
  3168. },
  3169. {
  3170. name: "Normal",
  3171. height: math.unit(23, "feet"),
  3172. form: "dragon",
  3173. default: true
  3174. }
  3175. ],
  3176. {
  3177. "anthro": {
  3178. name: "Anthro",
  3179. default: true
  3180. },
  3181. "feral": {
  3182. name: "Feral",
  3183. },
  3184. "dragon": {
  3185. name: "Dragon",
  3186. },
  3187. }
  3188. ))
  3189. characterMakers.push(() => makeCharacter(
  3190. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3191. {
  3192. frontDressed: {
  3193. height: math.unit(216, "feet"),
  3194. weight: math.unit(7000000, "lb"),
  3195. preyCapacity: math.unit(1321, "people"),
  3196. name: "Front (Dressed)",
  3197. image: {
  3198. source: "./media/characters/jazzy/front-dressed.svg",
  3199. extra: 2738 / 2651,
  3200. bottom: 41.8 / 2786
  3201. }
  3202. },
  3203. backDressed: {
  3204. height: math.unit(216, "feet"),
  3205. weight: math.unit(7000000, "lb"),
  3206. preyCapacity: math.unit(1321, "people"),
  3207. name: "Back (Dressed)",
  3208. image: {
  3209. source: "./media/characters/jazzy/back-dressed.svg",
  3210. extra: 2775 / 2673,
  3211. bottom: 36.8 / 2817
  3212. }
  3213. },
  3214. front: {
  3215. height: math.unit(216, "feet"),
  3216. weight: math.unit(7000000, "lb"),
  3217. preyCapacity: math.unit(1321, "people"),
  3218. name: "Front",
  3219. image: {
  3220. source: "./media/characters/jazzy/front.svg",
  3221. extra: 2738 / 2651,
  3222. bottom: 41.8 / 2786
  3223. }
  3224. },
  3225. back: {
  3226. height: math.unit(216, "feet"),
  3227. weight: math.unit(7000000, "lb"),
  3228. preyCapacity: math.unit(1321, "people"),
  3229. name: "Back",
  3230. image: {
  3231. source: "./media/characters/jazzy/back.svg",
  3232. extra: 2775 / 2673,
  3233. bottom: 36.8 / 2817
  3234. }
  3235. },
  3236. maw: {
  3237. height: math.unit(20, "feet"),
  3238. name: "Maw",
  3239. image: {
  3240. source: "./media/characters/jazzy/maw.svg"
  3241. }
  3242. },
  3243. paws: {
  3244. height: math.unit(27.5, "feet"),
  3245. name: "Paws",
  3246. image: {
  3247. source: "./media/characters/jazzy/paws.svg"
  3248. }
  3249. },
  3250. eye: {
  3251. height: math.unit(4.4, "feet"),
  3252. name: "Eye",
  3253. image: {
  3254. source: "./media/characters/jazzy/eye.svg"
  3255. }
  3256. },
  3257. droneOffense: {
  3258. height: math.unit(9.5, "inches"),
  3259. name: "Drone (Offense)",
  3260. image: {
  3261. source: "./media/characters/jazzy/drone-offense.svg"
  3262. }
  3263. },
  3264. droneRecon: {
  3265. height: math.unit(9.5, "inches"),
  3266. name: "Drone (Recon)",
  3267. image: {
  3268. source: "./media/characters/jazzy/drone-recon.svg"
  3269. }
  3270. },
  3271. droneDefense: {
  3272. height: math.unit(9.5, "inches"),
  3273. name: "Drone (Defense)",
  3274. image: {
  3275. source: "./media/characters/jazzy/drone-defense.svg"
  3276. }
  3277. },
  3278. },
  3279. [
  3280. {
  3281. name: "Macro",
  3282. height: math.unit(216, "feet"),
  3283. default: true
  3284. },
  3285. ]
  3286. ))
  3287. characterMakers.push(() => makeCharacter(
  3288. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3289. {
  3290. front: {
  3291. height: math.unit(9 + 6/12, "feet"),
  3292. weight: math.unit(700, "lb"),
  3293. name: "Front",
  3294. image: {
  3295. source: "./media/characters/flamm/front.svg",
  3296. extra: 1736/1596,
  3297. bottom: 93/1829
  3298. }
  3299. },
  3300. buff: {
  3301. height: math.unit(9 + 6/12, "feet"),
  3302. weight: math.unit(950, "lb"),
  3303. name: "Buff",
  3304. image: {
  3305. source: "./media/characters/flamm/buff.svg",
  3306. extra: 3018/2874,
  3307. bottom: 221/3239
  3308. }
  3309. },
  3310. },
  3311. [
  3312. {
  3313. name: "Normal",
  3314. height: math.unit(9.5, "feet")
  3315. },
  3316. {
  3317. name: "Macro",
  3318. height: math.unit(200, "feet"),
  3319. default: true
  3320. },
  3321. ]
  3322. ))
  3323. characterMakers.push(() => makeCharacter(
  3324. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3325. {
  3326. front: {
  3327. height: math.unit(5 + 3/12, "feet"),
  3328. weight: math.unit(60, "kg"),
  3329. name: "Front",
  3330. image: {
  3331. source: "./media/characters/zephiro/front.svg",
  3332. extra: 1873/1761,
  3333. bottom: 147/2020
  3334. }
  3335. },
  3336. side: {
  3337. height: math.unit(5 + 3/12, "feet"),
  3338. weight: math.unit(60, "kg"),
  3339. name: "Side",
  3340. image: {
  3341. source: "./media/characters/zephiro/side.svg",
  3342. extra: 1929/1827,
  3343. bottom: 65/1994
  3344. }
  3345. },
  3346. back: {
  3347. height: math.unit(5 + 3/12, "feet"),
  3348. weight: math.unit(60, "kg"),
  3349. name: "Back",
  3350. image: {
  3351. source: "./media/characters/zephiro/back.svg",
  3352. extra: 1926/1816,
  3353. bottom: 41/1967
  3354. }
  3355. },
  3356. hand: {
  3357. height: math.unit(0.68, "feet"),
  3358. name: "Hand",
  3359. image: {
  3360. source: "./media/characters/zephiro/hand.svg"
  3361. }
  3362. },
  3363. paw: {
  3364. height: math.unit(1, "feet"),
  3365. name: "Paw",
  3366. image: {
  3367. source: "./media/characters/zephiro/paw.svg"
  3368. }
  3369. },
  3370. beans: {
  3371. height: math.unit(0.93, "feet"),
  3372. name: "Beans",
  3373. image: {
  3374. source: "./media/characters/zephiro/beans.svg"
  3375. }
  3376. },
  3377. },
  3378. [
  3379. {
  3380. name: "Micro",
  3381. height: math.unit(3, "inches")
  3382. },
  3383. {
  3384. name: "Normal",
  3385. height: math.unit(5 + 3 / 12, "feet"),
  3386. default: true
  3387. },
  3388. {
  3389. name: "Macro",
  3390. height: math.unit(118, "feet")
  3391. },
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3396. {
  3397. front: {
  3398. height: math.unit(5, "feet"),
  3399. weight: math.unit(90, "kg"),
  3400. preyCapacity: math.unit(14, "people"),
  3401. name: "Front",
  3402. image: {
  3403. source: "./media/characters/fory/front.svg",
  3404. extra: 2862 / 2674,
  3405. bottom: 180 / 3043.8
  3406. },
  3407. form: "weaselbun",
  3408. default: true,
  3409. extraAttributes: {
  3410. "pawSize": {
  3411. name: "Paw Size",
  3412. power: 2,
  3413. type: "area",
  3414. base: math.unit(0.1596, "m^2")
  3415. },
  3416. "pawLength": {
  3417. name: "Paw Length",
  3418. power: 1,
  3419. type: "length",
  3420. base: math.unit(0.7, "m")
  3421. }
  3422. }
  3423. },
  3424. back: {
  3425. height: math.unit(5, "feet"),
  3426. weight: math.unit(90, "kg"),
  3427. preyCapacity: math.unit(14, "people"),
  3428. name: "Back",
  3429. image: {
  3430. source: "./media/characters/fory/back.svg",
  3431. extra: 1790/1672,
  3432. bottom: 84/1874
  3433. },
  3434. form: "weaselbun",
  3435. extraAttributes: {
  3436. "pawSize": {
  3437. name: "Paw Size",
  3438. power: 2,
  3439. type: "area",
  3440. base: math.unit(0.1596, "m^2")
  3441. },
  3442. "pawLength": {
  3443. name: "Paw Length",
  3444. power: 1,
  3445. type: "length",
  3446. base: math.unit(0.7, "m")
  3447. }
  3448. }
  3449. },
  3450. paw: {
  3451. height: math.unit(2.14, "feet"),
  3452. name: "Paw",
  3453. image: {
  3454. source: "./media/characters/fory/paw.svg"
  3455. },
  3456. form: "weaselbun",
  3457. extraAttributes: {
  3458. "pawSize": {
  3459. name: "Paw Size",
  3460. power: 2,
  3461. type: "area",
  3462. base: math.unit(0.1596, "m^2")
  3463. },
  3464. "pawLength": {
  3465. name: "Paw Length",
  3466. power: 1,
  3467. type: "length",
  3468. base: math.unit(0.48, "m")
  3469. }
  3470. }
  3471. },
  3472. bunBack: {
  3473. height: math.unit(3, "feet"),
  3474. weight: math.unit(20, "kg"),
  3475. preyCapacity: math.unit(3, "people"),
  3476. name: "Back",
  3477. image: {
  3478. source: "./media/characters/fory/bun-back.svg",
  3479. extra: 1749/1564,
  3480. bottom: 246/1995
  3481. },
  3482. form: "bun",
  3483. default: true,
  3484. extraAttributes: {
  3485. "pawSize": {
  3486. name: "Paw Size",
  3487. power: 2,
  3488. type: "area",
  3489. base: math.unit(0.072, "m^2")
  3490. },
  3491. "pawLength": {
  3492. name: "Paw Length",
  3493. power: 1,
  3494. type: "length",
  3495. base: math.unit(0.45, "m")
  3496. }
  3497. }
  3498. },
  3499. },
  3500. [
  3501. {
  3502. name: "Normal",
  3503. height: math.unit(5, "feet"),
  3504. form: "weaselbun"
  3505. },
  3506. {
  3507. name: "Macro",
  3508. height: math.unit(50, "feet"),
  3509. default: true,
  3510. form: "weaselbun"
  3511. },
  3512. {
  3513. name: "Megamacro",
  3514. height: math.unit(10, "miles"),
  3515. form: "weaselbun"
  3516. },
  3517. {
  3518. name: "Gigamacro",
  3519. height: math.unit(5, "earths"),
  3520. form: "weaselbun"
  3521. },
  3522. {
  3523. name: "Normal",
  3524. height: math.unit(3, "feet"),
  3525. default: true,
  3526. form: "bun"
  3527. },
  3528. {
  3529. name: "Fun-Size",
  3530. height: math.unit(12, "feet"),
  3531. form: "bun"
  3532. },
  3533. {
  3534. name: "Macro",
  3535. height: math.unit(100, "feet"),
  3536. form: "bun"
  3537. },
  3538. {
  3539. name: "Planetary",
  3540. height: math.unit(3, "earths"),
  3541. form: "bun"
  3542. },
  3543. ],
  3544. {
  3545. "weaselbun": {
  3546. name: "Weaselbun",
  3547. default: true
  3548. },
  3549. "bun": {
  3550. name: "Bun",
  3551. },
  3552. }
  3553. ))
  3554. characterMakers.push(() => makeCharacter(
  3555. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3556. {
  3557. front: {
  3558. height: math.unit(7, "feet"),
  3559. weight: math.unit(90, "kg"),
  3560. name: "Front",
  3561. image: {
  3562. source: "./media/characters/kurrikage/front.svg",
  3563. extra: 1845/1733,
  3564. bottom: 119/1964
  3565. }
  3566. },
  3567. back: {
  3568. height: math.unit(7, "feet"),
  3569. weight: math.unit(90, "kg"),
  3570. name: "Back",
  3571. image: {
  3572. source: "./media/characters/kurrikage/back.svg",
  3573. extra: 1790/1677,
  3574. bottom: 61/1851
  3575. }
  3576. },
  3577. dressed: {
  3578. height: math.unit(7, "feet"),
  3579. weight: math.unit(90, "kg"),
  3580. name: "Dressed",
  3581. image: {
  3582. source: "./media/characters/kurrikage/dressed.svg",
  3583. extra: 1845/1733,
  3584. bottom: 119/1964
  3585. }
  3586. },
  3587. foot: {
  3588. height: math.unit(1.5, "feet"),
  3589. name: "Foot",
  3590. image: {
  3591. source: "./media/characters/kurrikage/foot.svg"
  3592. }
  3593. },
  3594. staff: {
  3595. height: math.unit(6.7, "feet"),
  3596. name: "Staff",
  3597. image: {
  3598. source: "./media/characters/kurrikage/staff.svg"
  3599. }
  3600. },
  3601. peek: {
  3602. height: math.unit(1.05, "feet"),
  3603. name: "Peeking",
  3604. image: {
  3605. source: "./media/characters/kurrikage/peek.svg",
  3606. bottom: 0.08
  3607. }
  3608. },
  3609. },
  3610. [
  3611. {
  3612. name: "Normal",
  3613. height: math.unit(12, "feet"),
  3614. default: true
  3615. },
  3616. {
  3617. name: "Big",
  3618. height: math.unit(20, "feet")
  3619. },
  3620. {
  3621. name: "Macro",
  3622. height: math.unit(500, "feet")
  3623. },
  3624. {
  3625. name: "Megamacro",
  3626. height: math.unit(20, "miles")
  3627. },
  3628. ]
  3629. ))
  3630. characterMakers.push(() => makeCharacter(
  3631. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3632. {
  3633. front: {
  3634. height: math.unit(6, "feet"),
  3635. weight: math.unit(75, "kg"),
  3636. name: "Front",
  3637. image: {
  3638. source: "./media/characters/shingo/front.svg",
  3639. extra: 1900/1825,
  3640. bottom: 82/1982
  3641. }
  3642. },
  3643. side: {
  3644. height: math.unit(6, "feet"),
  3645. weight: math.unit(75, "kg"),
  3646. name: "Side",
  3647. image: {
  3648. source: "./media/characters/shingo/side.svg",
  3649. extra: 1930/1865,
  3650. bottom: 16/1946
  3651. }
  3652. },
  3653. back: {
  3654. height: math.unit(6, "feet"),
  3655. weight: math.unit(75, "kg"),
  3656. name: "Back",
  3657. image: {
  3658. source: "./media/characters/shingo/back.svg",
  3659. extra: 1922/1852,
  3660. bottom: 16/1938
  3661. }
  3662. },
  3663. frontDressed: {
  3664. height: math.unit(6, "feet"),
  3665. weight: math.unit(150, "lb"),
  3666. name: "Front-dressed",
  3667. image: {
  3668. source: "./media/characters/shingo/front-dressed.svg",
  3669. extra: 1900/1825,
  3670. bottom: 82/1982
  3671. }
  3672. },
  3673. paw: {
  3674. height: math.unit(1.29, "feet"),
  3675. name: "Paw",
  3676. image: {
  3677. source: "./media/characters/shingo/paw.svg"
  3678. }
  3679. },
  3680. hand: {
  3681. height: math.unit(1.07, "feet"),
  3682. name: "Hand",
  3683. image: {
  3684. source: "./media/characters/shingo/hand.svg"
  3685. }
  3686. },
  3687. frontAlt: {
  3688. height: math.unit(6, "feet"),
  3689. weight: math.unit(75, "kg"),
  3690. name: "Front (Alt)",
  3691. image: {
  3692. source: "./media/characters/shingo/front-alt.svg",
  3693. extra: 3511 / 3338,
  3694. bottom: 0.005
  3695. }
  3696. },
  3697. frontAlt2: {
  3698. height: math.unit(6, "feet"),
  3699. weight: math.unit(75, "kg"),
  3700. name: "Front (Alt 2)",
  3701. image: {
  3702. source: "./media/characters/shingo/front-alt-2.svg",
  3703. extra: 706/681,
  3704. bottom: 11/717
  3705. }
  3706. },
  3707. pawAlt: {
  3708. height: math.unit(1, "feet"),
  3709. name: "Paw (Alt)",
  3710. image: {
  3711. source: "./media/characters/shingo/paw-alt.svg"
  3712. }
  3713. },
  3714. },
  3715. [
  3716. {
  3717. name: "Micro",
  3718. height: math.unit(4, "inches")
  3719. },
  3720. {
  3721. name: "Normal",
  3722. height: math.unit(6, "feet"),
  3723. default: true
  3724. },
  3725. {
  3726. name: "Macro",
  3727. height: math.unit(108, "feet")
  3728. },
  3729. {
  3730. name: "Macro+",
  3731. height: math.unit(1500, "feet")
  3732. },
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3737. {
  3738. side: {
  3739. height: math.unit(6, "feet"),
  3740. weight: math.unit(75, "kg"),
  3741. name: "Side",
  3742. image: {
  3743. source: "./media/characters/aigey/side.svg"
  3744. }
  3745. },
  3746. },
  3747. [
  3748. {
  3749. name: "Macro",
  3750. height: math.unit(200, "feet"),
  3751. default: true
  3752. },
  3753. {
  3754. name: "Megamacro",
  3755. height: math.unit(100, "miles")
  3756. },
  3757. ]
  3758. )
  3759. )
  3760. characterMakers.push(() => makeCharacter(
  3761. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3762. {
  3763. front: {
  3764. height: math.unit(5 + 5 / 12, "feet"),
  3765. weight: math.unit(75, "kg"),
  3766. name: "Front",
  3767. image: {
  3768. source: "./media/characters/natasha/front.svg",
  3769. extra: 859 / 824,
  3770. bottom: 23 / 879.6
  3771. }
  3772. },
  3773. frontNsfw: {
  3774. height: math.unit(5 + 5 / 12, "feet"),
  3775. weight: math.unit(75, "kg"),
  3776. name: "Front (NSFW)",
  3777. image: {
  3778. source: "./media/characters/natasha/front-nsfw.svg",
  3779. extra: 859 / 824,
  3780. bottom: 23 / 879.6
  3781. }
  3782. },
  3783. frontErect: {
  3784. height: math.unit(5 + 5 / 12, "feet"),
  3785. weight: math.unit(75, "kg"),
  3786. name: "Front (Erect)",
  3787. image: {
  3788. source: "./media/characters/natasha/front-erect.svg",
  3789. extra: 859 / 824,
  3790. bottom: 23 / 879.6
  3791. }
  3792. },
  3793. back: {
  3794. height: math.unit(5 + 5 / 12, "feet"),
  3795. weight: math.unit(75, "kg"),
  3796. name: "Back",
  3797. image: {
  3798. source: "./media/characters/natasha/back.svg",
  3799. extra: 887.9 / 852.6,
  3800. bottom: 9.7 / 896.4
  3801. }
  3802. },
  3803. backAlt: {
  3804. height: math.unit(5 + 5 / 12, "feet"),
  3805. weight: math.unit(75, "kg"),
  3806. name: "Back (Alt)",
  3807. image: {
  3808. source: "./media/characters/natasha/back-alt.svg",
  3809. extra: 1236.7 / 1192,
  3810. bottom: 22.3 / 1258.2
  3811. }
  3812. },
  3813. dick: {
  3814. height: math.unit(1.772, "feet"),
  3815. name: "Dick",
  3816. image: {
  3817. source: "./media/characters/natasha/dick.svg"
  3818. }
  3819. },
  3820. paw: {
  3821. height: math.unit(0.250, "meters"),
  3822. name: "Paw",
  3823. image: {
  3824. source: "./media/characters/natasha/paw.svg"
  3825. },
  3826. extraAttributes: {
  3827. "toeSize": {
  3828. name: "Toe Size",
  3829. power: 2,
  3830. type: "area",
  3831. base: math.unit(0.0024, "m^2")
  3832. },
  3833. "padSize": {
  3834. name: "Pad Size",
  3835. power: 2,
  3836. type: "area",
  3837. base: math.unit(0.00889, "m^2")
  3838. },
  3839. "pawSize": {
  3840. name: "Paw Size",
  3841. power: 2,
  3842. type: "area",
  3843. base: math.unit(0.023667, "m^2")
  3844. },
  3845. }
  3846. },
  3847. },
  3848. [
  3849. {
  3850. name: "Shortstack",
  3851. height: math.unit(3, "feet"),
  3852. default: true
  3853. },
  3854. {
  3855. name: "Normal",
  3856. height: math.unit(5 + 5 / 12, "feet")
  3857. },
  3858. {
  3859. name: "Large",
  3860. height: math.unit(12, "feet")
  3861. },
  3862. {
  3863. name: "Macro",
  3864. height: math.unit(100, "feet")
  3865. },
  3866. {
  3867. name: "Macro+",
  3868. height: math.unit(260, "feet")
  3869. },
  3870. {
  3871. name: "Macro++",
  3872. height: math.unit(1, "mile")
  3873. },
  3874. ]
  3875. ))
  3876. characterMakers.push(() => makeCharacter(
  3877. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3878. {
  3879. front: {
  3880. height: math.unit(6, "feet"),
  3881. weight: math.unit(75, "kg"),
  3882. name: "Front",
  3883. image: {
  3884. source: "./media/characters/malik/front.svg",
  3885. extra: 1750/1561,
  3886. bottom: 80/1830
  3887. },
  3888. extraAttributes: {
  3889. "toeSize": {
  3890. name: "Toe Size",
  3891. power: 2,
  3892. type: "area",
  3893. base: math.unit(0.0159, "m^2")
  3894. },
  3895. "pawSize": {
  3896. name: "Paw Size",
  3897. power: 2,
  3898. type: "area",
  3899. base: math.unit(0.09834, "m^2")
  3900. },
  3901. }
  3902. },
  3903. side: {
  3904. height: math.unit(6, "feet"),
  3905. weight: math.unit(75, "kg"),
  3906. name: "Side",
  3907. image: {
  3908. source: "./media/characters/malik/side.svg",
  3909. extra: 1802/1685,
  3910. bottom: 42/1844
  3911. },
  3912. extraAttributes: {
  3913. "toeSize": {
  3914. name: "Toe Size",
  3915. power: 2,
  3916. type: "area",
  3917. base: math.unit(0.0159, "m^2")
  3918. },
  3919. "pawSize": {
  3920. name: "Paw Size",
  3921. power: 2,
  3922. type: "area",
  3923. base: math.unit(0.09834, "m^2")
  3924. },
  3925. }
  3926. },
  3927. back: {
  3928. height: math.unit(6, "feet"),
  3929. weight: math.unit(75, "kg"),
  3930. name: "Back",
  3931. image: {
  3932. source: "./media/characters/malik/back.svg",
  3933. extra: 1803/1607,
  3934. bottom: 33/1836
  3935. },
  3936. extraAttributes: {
  3937. "toeSize": {
  3938. name: "Toe Size",
  3939. power: 2,
  3940. type: "area",
  3941. base: math.unit(0.0159, "m^2")
  3942. },
  3943. "pawSize": {
  3944. name: "Paw Size",
  3945. power: 2,
  3946. type: "area",
  3947. base: math.unit(0.09834, "m^2")
  3948. },
  3949. }
  3950. },
  3951. },
  3952. [
  3953. {
  3954. name: "Macro",
  3955. height: math.unit(156, "feet"),
  3956. default: true
  3957. },
  3958. {
  3959. name: "Macro+",
  3960. height: math.unit(1188, "feet")
  3961. },
  3962. ]
  3963. ))
  3964. characterMakers.push(() => makeCharacter(
  3965. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3966. {
  3967. front: {
  3968. height: math.unit(6, "feet"),
  3969. weight: math.unit(75, "kg"),
  3970. name: "Front",
  3971. image: {
  3972. source: "./media/characters/sefer/front.svg",
  3973. extra: 848 / 659,
  3974. bottom: 28.3 / 876.442
  3975. }
  3976. },
  3977. back: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(75, "kg"),
  3980. name: "Back",
  3981. image: {
  3982. source: "./media/characters/sefer/back.svg",
  3983. extra: 864 / 695,
  3984. bottom: 10 / 871
  3985. }
  3986. },
  3987. frontDressed: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(75, "kg"),
  3990. name: "Dressed",
  3991. image: {
  3992. source: "./media/characters/sefer/dressed.svg",
  3993. extra: 839 / 653,
  3994. bottom: 37.6 / 878
  3995. }
  3996. },
  3997. },
  3998. [
  3999. {
  4000. name: "Normal",
  4001. height: math.unit(6, "feet"),
  4002. default: true
  4003. },
  4004. {
  4005. name: "Big",
  4006. height: math.unit(8, "meters")
  4007. },
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4012. {
  4013. body: {
  4014. height: math.unit(2.2428, "meter"),
  4015. weight: math.unit(124.738, "kg"),
  4016. name: "Body",
  4017. image: {
  4018. extra: 1225 / 1050,
  4019. source: "./media/characters/north/front.svg"
  4020. }
  4021. }
  4022. },
  4023. [
  4024. {
  4025. name: "Micro",
  4026. height: math.unit(4, "inches")
  4027. },
  4028. {
  4029. name: "Macro",
  4030. height: math.unit(63, "meters")
  4031. },
  4032. {
  4033. name: "Megamacro",
  4034. height: math.unit(101, "miles"),
  4035. default: true
  4036. }
  4037. ]
  4038. ))
  4039. characterMakers.push(() => makeCharacter(
  4040. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4041. {
  4042. angled: {
  4043. height: math.unit(4, "meter"),
  4044. weight: math.unit(150, "kg"),
  4045. name: "Angled",
  4046. image: {
  4047. source: "./media/characters/talan/angled-sfw.svg",
  4048. bottom: 29 / 3734
  4049. }
  4050. },
  4051. angledNsfw: {
  4052. height: math.unit(4, "meter"),
  4053. weight: math.unit(150, "kg"),
  4054. name: "Angled (NSFW)",
  4055. image: {
  4056. source: "./media/characters/talan/angled-nsfw.svg",
  4057. bottom: 29 / 3734
  4058. }
  4059. },
  4060. frontNsfw: {
  4061. height: math.unit(4, "meter"),
  4062. weight: math.unit(150, "kg"),
  4063. name: "Front (NSFW)",
  4064. image: {
  4065. source: "./media/characters/talan/front-nsfw.svg",
  4066. bottom: 29 / 3734
  4067. }
  4068. },
  4069. sideNsfw: {
  4070. height: math.unit(4, "meter"),
  4071. weight: math.unit(150, "kg"),
  4072. name: "Side (NSFW)",
  4073. image: {
  4074. source: "./media/characters/talan/side-nsfw.svg",
  4075. bottom: 29 / 3734
  4076. }
  4077. },
  4078. back: {
  4079. height: math.unit(4, "meter"),
  4080. weight: math.unit(150, "kg"),
  4081. name: "Back",
  4082. image: {
  4083. source: "./media/characters/talan/back.svg"
  4084. }
  4085. },
  4086. dickBottom: {
  4087. height: math.unit(0.621, "meter"),
  4088. name: "Dick (Bottom)",
  4089. image: {
  4090. source: "./media/characters/talan/dick-bottom.svg"
  4091. }
  4092. },
  4093. dickTop: {
  4094. height: math.unit(0.621, "meter"),
  4095. name: "Dick (Top)",
  4096. image: {
  4097. source: "./media/characters/talan/dick-top.svg"
  4098. }
  4099. },
  4100. dickSide: {
  4101. height: math.unit(0.305, "meter"),
  4102. name: "Dick (Side)",
  4103. image: {
  4104. source: "./media/characters/talan/dick-side.svg"
  4105. }
  4106. },
  4107. dickFront: {
  4108. height: math.unit(0.305, "meter"),
  4109. name: "Dick (Front)",
  4110. image: {
  4111. source: "./media/characters/talan/dick-front.svg"
  4112. }
  4113. },
  4114. },
  4115. [
  4116. {
  4117. name: "Normal",
  4118. height: math.unit(4, "meters")
  4119. },
  4120. {
  4121. name: "Macro",
  4122. height: math.unit(100, "meters")
  4123. },
  4124. {
  4125. name: "Megamacro",
  4126. height: math.unit(2, "miles"),
  4127. default: true
  4128. },
  4129. {
  4130. name: "Gigamacro",
  4131. height: math.unit(5000, "miles")
  4132. },
  4133. {
  4134. name: "Teramacro",
  4135. height: math.unit(100, "parsecs")
  4136. }
  4137. ]
  4138. ))
  4139. characterMakers.push(() => makeCharacter(
  4140. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4141. {
  4142. front: {
  4143. height: math.unit(2, "meter"),
  4144. weight: math.unit(90, "kg"),
  4145. name: "Front",
  4146. image: {
  4147. source: "./media/characters/gael'rathus/front.svg"
  4148. }
  4149. },
  4150. frontAlt: {
  4151. height: math.unit(2, "meter"),
  4152. weight: math.unit(90, "kg"),
  4153. name: "Front (alt)",
  4154. image: {
  4155. source: "./media/characters/gael'rathus/front-alt.svg"
  4156. }
  4157. },
  4158. frontAlt2: {
  4159. height: math.unit(2, "meter"),
  4160. weight: math.unit(90, "kg"),
  4161. name: "Front (alt 2)",
  4162. image: {
  4163. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4164. }
  4165. }
  4166. },
  4167. [
  4168. {
  4169. name: "Normal",
  4170. height: math.unit(9, "feet"),
  4171. default: true
  4172. },
  4173. {
  4174. name: "Large",
  4175. height: math.unit(25, "feet")
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(0.25, "miles")
  4180. },
  4181. {
  4182. name: "Megamacro",
  4183. height: math.unit(10, "miles")
  4184. }
  4185. ]
  4186. ))
  4187. characterMakers.push(() => makeCharacter(
  4188. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4189. {
  4190. side: {
  4191. height: math.unit(2, "meter"),
  4192. weight: math.unit(140, "kg"),
  4193. name: "Side",
  4194. image: {
  4195. source: "./media/characters/sosha/side.svg",
  4196. extra: 1170/1006,
  4197. bottom: 94/1264
  4198. }
  4199. },
  4200. maw: {
  4201. height: math.unit(2.87, "feet"),
  4202. name: "Maw",
  4203. image: {
  4204. source: "./media/characters/sosha/maw.svg",
  4205. extra: 966/865,
  4206. bottom: 0/966
  4207. }
  4208. },
  4209. cooch: {
  4210. height: math.unit(5.6, "feet"),
  4211. name: "Cooch",
  4212. image: {
  4213. source: "./media/characters/sosha/cooch.svg"
  4214. }
  4215. },
  4216. },
  4217. [
  4218. {
  4219. name: "Normal",
  4220. height: math.unit(12, "feet"),
  4221. default: true
  4222. }
  4223. ]
  4224. ))
  4225. characterMakers.push(() => makeCharacter(
  4226. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4227. {
  4228. side: {
  4229. height: math.unit(5 + 5 / 12, "feet"),
  4230. weight: math.unit(170, "kg"),
  4231. name: "Side",
  4232. image: {
  4233. source: "./media/characters/runnola/side.svg",
  4234. extra: 741 / 448,
  4235. bottom: 0.05
  4236. }
  4237. },
  4238. },
  4239. [
  4240. {
  4241. name: "Small",
  4242. height: math.unit(3, "feet")
  4243. },
  4244. {
  4245. name: "Normal",
  4246. height: math.unit(5 + 5 / 12, "feet"),
  4247. default: true
  4248. },
  4249. {
  4250. name: "Big",
  4251. height: math.unit(10, "feet")
  4252. },
  4253. ]
  4254. ))
  4255. characterMakers.push(() => makeCharacter(
  4256. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4257. {
  4258. front: {
  4259. height: math.unit(2, "meter"),
  4260. weight: math.unit(50, "kg"),
  4261. name: "Front",
  4262. image: {
  4263. source: "./media/characters/kurribird/front.svg",
  4264. bottom: 0.015
  4265. }
  4266. },
  4267. frontAlt: {
  4268. height: math.unit(1.5, "meter"),
  4269. weight: math.unit(50, "kg"),
  4270. name: "Front (Alt)",
  4271. image: {
  4272. source: "./media/characters/kurribird/front-alt.svg",
  4273. extra: 1.45
  4274. }
  4275. },
  4276. },
  4277. [
  4278. {
  4279. name: "Normal",
  4280. height: math.unit(7, "feet")
  4281. },
  4282. {
  4283. name: "Big",
  4284. height: math.unit(12, "feet"),
  4285. default: true
  4286. },
  4287. {
  4288. name: "Macro",
  4289. height: math.unit(1500, "feet")
  4290. },
  4291. {
  4292. name: "Megamacro",
  4293. height: math.unit(2, "miles")
  4294. }
  4295. ]
  4296. ))
  4297. characterMakers.push(() => makeCharacter(
  4298. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4299. {
  4300. front: {
  4301. height: math.unit(2, "meter"),
  4302. weight: math.unit(80, "kg"),
  4303. name: "Front",
  4304. image: {
  4305. source: "./media/characters/elbial/front.svg",
  4306. extra: 1643 / 1556,
  4307. bottom: 60.2 / 1696
  4308. }
  4309. },
  4310. side: {
  4311. height: math.unit(2, "meter"),
  4312. weight: math.unit(80, "kg"),
  4313. name: "Side",
  4314. image: {
  4315. source: "./media/characters/elbial/side.svg",
  4316. extra: 1601/1528,
  4317. bottom: 97/1698
  4318. }
  4319. },
  4320. back: {
  4321. height: math.unit(2, "meter"),
  4322. weight: math.unit(80, "kg"),
  4323. name: "Back",
  4324. image: {
  4325. source: "./media/characters/elbial/back.svg",
  4326. extra: 1653/1569,
  4327. bottom: 20/1673
  4328. }
  4329. },
  4330. frontDressed: {
  4331. height: math.unit(2, "meter"),
  4332. weight: math.unit(80, "kg"),
  4333. name: "Front (Dressed)",
  4334. image: {
  4335. source: "./media/characters/elbial/front-dressed.svg",
  4336. extra: 1638/1569,
  4337. bottom: 70/1708
  4338. }
  4339. },
  4340. genitals: {
  4341. height: math.unit(2 / 3.367, "meter"),
  4342. name: "Genitals",
  4343. image: {
  4344. source: "./media/characters/elbial/genitals.svg"
  4345. }
  4346. },
  4347. },
  4348. [
  4349. {
  4350. name: "Large",
  4351. height: math.unit(100, "feet")
  4352. },
  4353. {
  4354. name: "Macro",
  4355. height: math.unit(500, "feet"),
  4356. default: true
  4357. },
  4358. {
  4359. name: "Megamacro",
  4360. height: math.unit(10, "miles")
  4361. },
  4362. {
  4363. name: "Gigamacro",
  4364. height: math.unit(25000, "miles")
  4365. },
  4366. {
  4367. name: "Full-Size",
  4368. height: math.unit(8000000, "gigaparsecs")
  4369. }
  4370. ]
  4371. ))
  4372. characterMakers.push(() => makeCharacter(
  4373. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4374. {
  4375. front: {
  4376. height: math.unit(2, "meter"),
  4377. weight: math.unit(60, "kg"),
  4378. name: "Front",
  4379. image: {
  4380. source: "./media/characters/noah/front.svg",
  4381. extra: 1383/1313,
  4382. bottom: 104/1487
  4383. }
  4384. },
  4385. hand: {
  4386. height: math.unit(0.6, "feet"),
  4387. name: "Hand",
  4388. image: {
  4389. source: "./media/characters/noah/hand.svg"
  4390. }
  4391. },
  4392. talons: {
  4393. height: math.unit(1.385, "feet"),
  4394. name: "Talons",
  4395. image: {
  4396. source: "./media/characters/noah/talons.svg"
  4397. }
  4398. },
  4399. beak: {
  4400. height: math.unit(0.43, "feet"),
  4401. name: "Beak",
  4402. image: {
  4403. source: "./media/characters/noah/beak.svg"
  4404. }
  4405. },
  4406. collar: {
  4407. height: math.unit(0.88, "feet"),
  4408. name: "Collar",
  4409. image: {
  4410. source: "./media/characters/noah/collar.svg"
  4411. }
  4412. },
  4413. eyeNarrow: {
  4414. height: math.unit(0.18, "feet"),
  4415. name: "Eye (Narrow)",
  4416. image: {
  4417. source: "./media/characters/noah/eye-narrow.svg"
  4418. }
  4419. },
  4420. eyeNormal: {
  4421. height: math.unit(0.18, "feet"),
  4422. name: "Eye (Normal)",
  4423. image: {
  4424. source: "./media/characters/noah/eye-normal.svg"
  4425. }
  4426. },
  4427. eyeWide: {
  4428. height: math.unit(0.18, "feet"),
  4429. name: "Eye (Wide)",
  4430. image: {
  4431. source: "./media/characters/noah/eye-wide.svg"
  4432. }
  4433. },
  4434. ear: {
  4435. height: math.unit(0.64, "feet"),
  4436. name: "Ear",
  4437. image: {
  4438. source: "./media/characters/noah/ear.svg"
  4439. }
  4440. },
  4441. },
  4442. [
  4443. {
  4444. name: "Large",
  4445. height: math.unit(50, "feet")
  4446. },
  4447. {
  4448. name: "Macro",
  4449. height: math.unit(750, "feet"),
  4450. default: true
  4451. },
  4452. {
  4453. name: "Megamacro",
  4454. height: math.unit(50, "miles")
  4455. },
  4456. {
  4457. name: "Gigamacro",
  4458. height: math.unit(100000, "miles")
  4459. },
  4460. {
  4461. name: "Full-Size",
  4462. height: math.unit(3000000000, "miles")
  4463. }
  4464. ]
  4465. ))
  4466. characterMakers.push(() => makeCharacter(
  4467. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4468. {
  4469. front: {
  4470. height: math.unit(2, "meter"),
  4471. weight: math.unit(80, "kg"),
  4472. name: "Front",
  4473. image: {
  4474. source: "./media/characters/natalya/front.svg"
  4475. }
  4476. },
  4477. back: {
  4478. height: math.unit(2, "meter"),
  4479. weight: math.unit(80, "kg"),
  4480. name: "Back",
  4481. image: {
  4482. source: "./media/characters/natalya/back.svg"
  4483. }
  4484. }
  4485. },
  4486. [
  4487. {
  4488. name: "Normal",
  4489. height: math.unit(150, "feet"),
  4490. default: true
  4491. },
  4492. {
  4493. name: "Megamacro",
  4494. height: math.unit(5, "miles")
  4495. },
  4496. {
  4497. name: "Full-Size",
  4498. height: math.unit(600, "kiloparsecs")
  4499. }
  4500. ]
  4501. ))
  4502. characterMakers.push(() => makeCharacter(
  4503. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4504. {
  4505. front: {
  4506. height: math.unit(2, "meter"),
  4507. weight: math.unit(50, "kg"),
  4508. name: "Front",
  4509. image: {
  4510. source: "./media/characters/erestrebah/front.svg",
  4511. extra: 1262/1162,
  4512. bottom: 96/1358
  4513. }
  4514. },
  4515. back: {
  4516. height: math.unit(2, "meter"),
  4517. weight: math.unit(50, "kg"),
  4518. name: "Back",
  4519. image: {
  4520. source: "./media/characters/erestrebah/back.svg",
  4521. extra: 1257/1139,
  4522. bottom: 13/1270
  4523. }
  4524. },
  4525. wing: {
  4526. height: math.unit(2, "meter"),
  4527. weight: math.unit(50, "kg"),
  4528. name: "Wing",
  4529. image: {
  4530. source: "./media/characters/erestrebah/wing.svg",
  4531. extra: 1262/1162,
  4532. bottom: 96/1358
  4533. }
  4534. },
  4535. mouth: {
  4536. height: math.unit(0.39, "feet"),
  4537. name: "Mouth",
  4538. image: {
  4539. source: "./media/characters/erestrebah/mouth.svg"
  4540. }
  4541. }
  4542. },
  4543. [
  4544. {
  4545. name: "Normal",
  4546. height: math.unit(10, "feet")
  4547. },
  4548. {
  4549. name: "Large",
  4550. height: math.unit(50, "feet"),
  4551. default: true
  4552. },
  4553. {
  4554. name: "Macro",
  4555. height: math.unit(300, "feet")
  4556. },
  4557. {
  4558. name: "Macro+",
  4559. height: math.unit(750, "feet")
  4560. },
  4561. {
  4562. name: "Megamacro",
  4563. height: math.unit(3, "miles")
  4564. }
  4565. ]
  4566. ))
  4567. characterMakers.push(() => makeCharacter(
  4568. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4569. {
  4570. front: {
  4571. height: math.unit(2, "meter"),
  4572. weight: math.unit(80, "kg"),
  4573. name: "Front",
  4574. image: {
  4575. source: "./media/characters/jennifer/front.svg",
  4576. bottom: 0.11,
  4577. extra: 1.16
  4578. }
  4579. },
  4580. frontAlt: {
  4581. height: math.unit(2, "meter"),
  4582. weight: math.unit(80, "kg"),
  4583. name: "Front (Alt)",
  4584. image: {
  4585. source: "./media/characters/jennifer/front-alt.svg"
  4586. }
  4587. }
  4588. },
  4589. [
  4590. {
  4591. name: "Canon Height",
  4592. height: math.unit(120, "feet"),
  4593. default: true
  4594. },
  4595. {
  4596. name: "Macro+",
  4597. height: math.unit(300, "feet")
  4598. },
  4599. {
  4600. name: "Megamacro",
  4601. height: math.unit(20000, "feet")
  4602. }
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4607. {
  4608. front: {
  4609. height: math.unit(2, "meter"),
  4610. weight: math.unit(50, "kg"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/kalista/front.svg",
  4614. extra: 1314/1145,
  4615. bottom: 101/1415
  4616. }
  4617. },
  4618. back: {
  4619. height: math.unit(2, "meter"),
  4620. weight: math.unit(50, "kg"),
  4621. name: "Back",
  4622. image: {
  4623. source: "./media/characters/kalista/back.svg",
  4624. extra: 1366 / 1156,
  4625. bottom: 33.9 / 1362.78
  4626. }
  4627. }
  4628. },
  4629. [
  4630. {
  4631. name: "Uncomfortably Small",
  4632. height: math.unit(10, "feet")
  4633. },
  4634. {
  4635. name: "Small",
  4636. height: math.unit(30, "feet")
  4637. },
  4638. {
  4639. name: "Macro",
  4640. height: math.unit(100, "feet"),
  4641. default: true
  4642. },
  4643. {
  4644. name: "Macro+",
  4645. height: math.unit(2000, "feet")
  4646. },
  4647. {
  4648. name: "True Form",
  4649. height: math.unit(8924, "miles")
  4650. }
  4651. ]
  4652. ))
  4653. characterMakers.push(() => makeCharacter(
  4654. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4655. {
  4656. front: {
  4657. height: math.unit(2, "meter"),
  4658. weight: math.unit(120, "kg"),
  4659. name: "Front",
  4660. image: {
  4661. source: "./media/characters/ggv/front.svg"
  4662. }
  4663. },
  4664. side: {
  4665. height: math.unit(2, "meter"),
  4666. weight: math.unit(120, "kg"),
  4667. name: "Side",
  4668. image: {
  4669. source: "./media/characters/ggv/side.svg"
  4670. }
  4671. }
  4672. },
  4673. [
  4674. {
  4675. name: "Extremely Puny",
  4676. height: math.unit(9 + 5 / 12, "feet")
  4677. },
  4678. {
  4679. name: "Horribly Small",
  4680. height: math.unit(47.7, "miles"),
  4681. default: true
  4682. },
  4683. {
  4684. name: "Reasonably Sized",
  4685. height: math.unit(25000, "parsecs")
  4686. },
  4687. {
  4688. name: "Slightly Uncompressed",
  4689. height: math.unit(7.77e31, "parsecs")
  4690. },
  4691. {
  4692. name: "Omniversal",
  4693. height: math.unit(1e300, "meters")
  4694. },
  4695. ]
  4696. ))
  4697. characterMakers.push(() => makeCharacter(
  4698. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4699. {
  4700. front: {
  4701. height: math.unit(2, "meter"),
  4702. weight: math.unit(75, "lb"),
  4703. name: "Front",
  4704. image: {
  4705. source: "./media/characters/napalm/front.svg"
  4706. }
  4707. },
  4708. back: {
  4709. height: math.unit(2, "meter"),
  4710. weight: math.unit(75, "lb"),
  4711. name: "Back",
  4712. image: {
  4713. source: "./media/characters/napalm/back.svg"
  4714. }
  4715. }
  4716. },
  4717. [
  4718. {
  4719. name: "Standard",
  4720. height: math.unit(55, "feet"),
  4721. default: true
  4722. }
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4727. {
  4728. front: {
  4729. height: math.unit(7 + 5 / 6, "feet"),
  4730. weight: math.unit(325, "lb"),
  4731. name: "Front",
  4732. image: {
  4733. source: "./media/characters/asana/front.svg",
  4734. extra: 1133 / 1060,
  4735. bottom: 15.2 / 1148.6
  4736. }
  4737. },
  4738. back: {
  4739. height: math.unit(7 + 5 / 6, "feet"),
  4740. weight: math.unit(325, "lb"),
  4741. name: "Back",
  4742. image: {
  4743. source: "./media/characters/asana/back.svg",
  4744. extra: 1114 / 1043,
  4745. bottom: 5 / 1120
  4746. }
  4747. },
  4748. dressedDark: {
  4749. height: math.unit(7 + 5 / 6, "feet"),
  4750. weight: math.unit(325, "lb"),
  4751. name: "Dressed (Dark)",
  4752. image: {
  4753. source: "./media/characters/asana/dressed-dark.svg",
  4754. extra: 1133 / 1060,
  4755. bottom: 15.2 / 1148.6
  4756. }
  4757. },
  4758. dressedLight: {
  4759. height: math.unit(7 + 5 / 6, "feet"),
  4760. weight: math.unit(325, "lb"),
  4761. name: "Dressed (Light)",
  4762. image: {
  4763. source: "./media/characters/asana/dressed-light.svg",
  4764. extra: 1133 / 1060,
  4765. bottom: 15.2 / 1148.6
  4766. }
  4767. },
  4768. },
  4769. [
  4770. {
  4771. name: "Standard",
  4772. height: math.unit(7 + 5 / 6, "feet"),
  4773. default: true
  4774. },
  4775. {
  4776. name: "Large",
  4777. height: math.unit(10, "meters")
  4778. },
  4779. {
  4780. name: "Macro",
  4781. height: math.unit(2500, "meters")
  4782. },
  4783. {
  4784. name: "Megamacro",
  4785. height: math.unit(5e6, "meters")
  4786. },
  4787. {
  4788. name: "Examacro",
  4789. height: math.unit(5e12, "lightyears")
  4790. },
  4791. {
  4792. name: "Max Size",
  4793. height: math.unit(1e31, "lightyears")
  4794. }
  4795. ]
  4796. ))
  4797. characterMakers.push(() => makeCharacter(
  4798. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4799. {
  4800. front: {
  4801. height: math.unit(2, "meter"),
  4802. weight: math.unit(60, "kg"),
  4803. name: "Front",
  4804. image: {
  4805. source: "./media/characters/ebony/front.svg",
  4806. bottom: 0.03,
  4807. extra: 1045 / 810 + 0.03
  4808. }
  4809. },
  4810. side: {
  4811. height: math.unit(2, "meter"),
  4812. weight: math.unit(60, "kg"),
  4813. name: "Side",
  4814. image: {
  4815. source: "./media/characters/ebony/side.svg",
  4816. bottom: 0.03,
  4817. extra: 1045 / 810 + 0.03
  4818. }
  4819. },
  4820. back: {
  4821. height: math.unit(2, "meter"),
  4822. weight: math.unit(60, "kg"),
  4823. name: "Back",
  4824. image: {
  4825. source: "./media/characters/ebony/back.svg",
  4826. bottom: 0.01,
  4827. extra: 1045 / 810 + 0.01
  4828. }
  4829. },
  4830. },
  4831. [
  4832. // TODO check why I did this lol
  4833. {
  4834. name: "Standard",
  4835. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4836. default: true
  4837. },
  4838. {
  4839. name: "Macro",
  4840. height: math.unit(200, "feet")
  4841. },
  4842. {
  4843. name: "Gigamacro",
  4844. height: math.unit(13000, "km")
  4845. }
  4846. ]
  4847. ))
  4848. characterMakers.push(() => makeCharacter(
  4849. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4850. {
  4851. front: {
  4852. height: math.unit(6, "feet"),
  4853. weight: math.unit(175, "lb"),
  4854. name: "Front",
  4855. image: {
  4856. source: "./media/characters/mountain/front.svg",
  4857. extra: 972 / 955,
  4858. bottom: 64 / 1036.6
  4859. }
  4860. },
  4861. back: {
  4862. height: math.unit(6, "feet"),
  4863. weight: math.unit(175, "lb"),
  4864. name: "Back",
  4865. image: {
  4866. source: "./media/characters/mountain/back.svg",
  4867. extra: 970 / 950,
  4868. bottom: 28.25 / 999
  4869. }
  4870. },
  4871. },
  4872. [
  4873. {
  4874. name: "Large",
  4875. height: math.unit(20, "meters")
  4876. },
  4877. {
  4878. name: "Macro",
  4879. height: math.unit(300, "meters")
  4880. },
  4881. {
  4882. name: "Gigamacro",
  4883. height: math.unit(10000, "km"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Examacro",
  4888. height: math.unit(10e9, "lightyears")
  4889. }
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4894. {
  4895. front: {
  4896. height: math.unit(8, "feet"),
  4897. weight: math.unit(500, "lb"),
  4898. name: "Front",
  4899. image: {
  4900. source: "./media/characters/rick/front.svg"
  4901. }
  4902. }
  4903. },
  4904. [
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(8, "feet"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Macro",
  4912. height: math.unit(5, "km")
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(8, "feet"),
  4921. weight: math.unit(120, "lb"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/ona/front.svg"
  4925. }
  4926. },
  4927. frontAlt: {
  4928. height: math.unit(8, "feet"),
  4929. weight: math.unit(120, "lb"),
  4930. name: "Front (Alt)",
  4931. image: {
  4932. source: "./media/characters/ona/front-alt.svg"
  4933. }
  4934. },
  4935. back: {
  4936. height: math.unit(8, "feet"),
  4937. weight: math.unit(120, "lb"),
  4938. name: "Back",
  4939. image: {
  4940. source: "./media/characters/ona/back.svg"
  4941. }
  4942. },
  4943. foot: {
  4944. height: math.unit(1.1, "feet"),
  4945. name: "Foot",
  4946. image: {
  4947. source: "./media/characters/ona/foot.svg"
  4948. }
  4949. }
  4950. },
  4951. [
  4952. {
  4953. name: "Megamacro",
  4954. height: math.unit(70, "km"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Gigamacro",
  4959. height: math.unit(681818, "miles")
  4960. },
  4961. {
  4962. name: "Examacro",
  4963. height: math.unit(3800000, "lightyears")
  4964. },
  4965. ]
  4966. ))
  4967. characterMakers.push(() => makeCharacter(
  4968. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4969. {
  4970. front: {
  4971. height: math.unit(12, "feet"),
  4972. weight: math.unit(3000, "lb"),
  4973. name: "Front",
  4974. image: {
  4975. source: "./media/characters/mech/front.svg",
  4976. extra: 2900 / 2770,
  4977. bottom: 110 / 3010
  4978. }
  4979. },
  4980. back: {
  4981. height: math.unit(12, "feet"),
  4982. weight: math.unit(3000, "lb"),
  4983. name: "Back",
  4984. image: {
  4985. source: "./media/characters/mech/back.svg",
  4986. extra: 3011 / 2890,
  4987. bottom: 94 / 3105
  4988. }
  4989. },
  4990. maw: {
  4991. height: math.unit(3.07, "feet"),
  4992. name: "Maw",
  4993. image: {
  4994. source: "./media/characters/mech/maw.svg"
  4995. }
  4996. },
  4997. head: {
  4998. height: math.unit(3.07, "feet"),
  4999. name: "Head",
  5000. image: {
  5001. source: "./media/characters/mech/head.svg"
  5002. }
  5003. },
  5004. dick: {
  5005. height: math.unit(1.43, "feet"),
  5006. name: "Dick",
  5007. image: {
  5008. source: "./media/characters/mech/dick.svg"
  5009. }
  5010. },
  5011. },
  5012. [
  5013. {
  5014. name: "Normal",
  5015. height: math.unit(12, "feet")
  5016. },
  5017. {
  5018. name: "Macro",
  5019. height: math.unit(300, "feet"),
  5020. default: true
  5021. },
  5022. {
  5023. name: "Macro+",
  5024. height: math.unit(1500, "feet")
  5025. },
  5026. ]
  5027. ))
  5028. characterMakers.push(() => makeCharacter(
  5029. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5030. {
  5031. front: {
  5032. height: math.unit(1.3, "meter"),
  5033. weight: math.unit(30, "kg"),
  5034. name: "Front",
  5035. image: {
  5036. source: "./media/characters/gregory/front.svg",
  5037. }
  5038. }
  5039. },
  5040. [
  5041. {
  5042. name: "Normal",
  5043. height: math.unit(1.3, "meter"),
  5044. default: true
  5045. },
  5046. {
  5047. name: "Macro",
  5048. height: math.unit(20, "meter")
  5049. }
  5050. ]
  5051. ))
  5052. characterMakers.push(() => makeCharacter(
  5053. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5054. {
  5055. front: {
  5056. height: math.unit(2.8, "meter"),
  5057. weight: math.unit(200, "kg"),
  5058. name: "Front",
  5059. image: {
  5060. source: "./media/characters/elory/front.svg",
  5061. }
  5062. }
  5063. },
  5064. [
  5065. {
  5066. name: "Normal",
  5067. height: math.unit(2.8, "meter"),
  5068. default: true
  5069. },
  5070. {
  5071. name: "Macro",
  5072. height: math.unit(38, "meter")
  5073. }
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5078. {
  5079. front: {
  5080. height: math.unit(470, "feet"),
  5081. weight: math.unit(924, "tons"),
  5082. name: "Front",
  5083. image: {
  5084. source: "./media/characters/angelpatamon/front.svg",
  5085. }
  5086. }
  5087. },
  5088. [
  5089. {
  5090. name: "Normal",
  5091. height: math.unit(470, "feet"),
  5092. default: true
  5093. },
  5094. {
  5095. name: "Deity Size I",
  5096. height: math.unit(28651.2, "km")
  5097. },
  5098. {
  5099. name: "Deity Size II",
  5100. height: math.unit(171907.2, "km")
  5101. }
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5106. {
  5107. side: {
  5108. height: math.unit(7.2, "meter"),
  5109. weight: math.unit(8.2, "tons"),
  5110. name: "Side",
  5111. image: {
  5112. source: "./media/characters/cryae/side.svg",
  5113. extra: 3500 / 1500
  5114. }
  5115. }
  5116. },
  5117. [
  5118. {
  5119. name: "Normal",
  5120. height: math.unit(7.2, "meter"),
  5121. default: true
  5122. }
  5123. ]
  5124. ))
  5125. characterMakers.push(() => makeCharacter(
  5126. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5127. {
  5128. front: {
  5129. height: math.unit(6, "feet"),
  5130. weight: math.unit(175, "lb"),
  5131. name: "Front",
  5132. image: {
  5133. source: "./media/characters/xera/front.svg",
  5134. extra: 2377 / 1972,
  5135. bottom: 75.5 / 2452
  5136. }
  5137. },
  5138. side: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(175, "lb"),
  5141. name: "Side",
  5142. image: {
  5143. source: "./media/characters/xera/side.svg",
  5144. extra: 2345 / 2019,
  5145. bottom: 39.7 / 2384
  5146. }
  5147. },
  5148. back: {
  5149. height: math.unit(6, "feet"),
  5150. weight: math.unit(175, "lb"),
  5151. name: "Back",
  5152. image: {
  5153. source: "./media/characters/xera/back.svg",
  5154. extra: 2095 / 1984,
  5155. bottom: 67 / 2166
  5156. }
  5157. },
  5158. },
  5159. [
  5160. {
  5161. name: "Small",
  5162. height: math.unit(10, "feet")
  5163. },
  5164. {
  5165. name: "Macro",
  5166. height: math.unit(500, "meters"),
  5167. default: true
  5168. },
  5169. {
  5170. name: "Macro+",
  5171. height: math.unit(10, "km")
  5172. },
  5173. {
  5174. name: "Gigamacro",
  5175. height: math.unit(25000, "km")
  5176. },
  5177. {
  5178. name: "Teramacro",
  5179. height: math.unit(3e6, "km")
  5180. }
  5181. ]
  5182. ))
  5183. characterMakers.push(() => makeCharacter(
  5184. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5185. {
  5186. front: {
  5187. height: math.unit(6, "feet"),
  5188. weight: math.unit(175, "lb"),
  5189. name: "Front",
  5190. image: {
  5191. source: "./media/characters/nebula/front.svg",
  5192. extra: 2566 / 2362,
  5193. bottom: 81 / 2644
  5194. }
  5195. }
  5196. },
  5197. [
  5198. {
  5199. name: "Small",
  5200. height: math.unit(4.5, "meters")
  5201. },
  5202. {
  5203. name: "Macro",
  5204. height: math.unit(1500, "meters"),
  5205. default: true
  5206. },
  5207. {
  5208. name: "Megamacro",
  5209. height: math.unit(150, "km")
  5210. },
  5211. {
  5212. name: "Gigamacro",
  5213. height: math.unit(27000, "km")
  5214. }
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5219. {
  5220. front: {
  5221. height: math.unit(6, "feet"),
  5222. weight: math.unit(225, "lb"),
  5223. name: "Front",
  5224. image: {
  5225. source: "./media/characters/abysgar/front.svg",
  5226. extra: 1739/1614,
  5227. bottom: 71/1810
  5228. }
  5229. },
  5230. frontNsfw: {
  5231. height: math.unit(6, "feet"),
  5232. weight: math.unit(225, "lb"),
  5233. name: "Front (NSFW)",
  5234. image: {
  5235. source: "./media/characters/abysgar/front-nsfw.svg",
  5236. extra: 1739/1614,
  5237. bottom: 71/1810
  5238. }
  5239. },
  5240. back: {
  5241. height: math.unit(4.6, "feet"),
  5242. weight: math.unit(225, "lb"),
  5243. name: "Back",
  5244. image: {
  5245. source: "./media/characters/abysgar/back.svg",
  5246. extra: 1384/1327,
  5247. bottom: 0/1384
  5248. }
  5249. },
  5250. head: {
  5251. height: math.unit(1.25, "feet"),
  5252. name: "Head",
  5253. image: {
  5254. source: "./media/characters/abysgar/head.svg",
  5255. extra: 669/569,
  5256. bottom: 0/669
  5257. }
  5258. },
  5259. },
  5260. [
  5261. {
  5262. name: "Small",
  5263. height: math.unit(4.5, "meters")
  5264. },
  5265. {
  5266. name: "Macro",
  5267. height: math.unit(1250, "meters"),
  5268. default: true
  5269. },
  5270. {
  5271. name: "Megamacro",
  5272. height: math.unit(125, "km")
  5273. },
  5274. {
  5275. name: "Gigamacro",
  5276. height: math.unit(26000, "km")
  5277. }
  5278. ]
  5279. ))
  5280. characterMakers.push(() => makeCharacter(
  5281. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5282. {
  5283. front: {
  5284. height: math.unit(6, "feet"),
  5285. weight: math.unit(180, "lb"),
  5286. name: "Front",
  5287. image: {
  5288. source: "./media/characters/yakuz/front.svg"
  5289. }
  5290. }
  5291. },
  5292. [
  5293. {
  5294. name: "Small",
  5295. height: math.unit(5, "meters")
  5296. },
  5297. {
  5298. name: "Macro",
  5299. height: math.unit(1500, "meters"),
  5300. default: true
  5301. },
  5302. {
  5303. name: "Megamacro",
  5304. height: math.unit(200, "km")
  5305. },
  5306. {
  5307. name: "Gigamacro",
  5308. height: math.unit(100000, "km")
  5309. }
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5314. {
  5315. front: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(175, "lb"),
  5318. name: "Front",
  5319. image: {
  5320. source: "./media/characters/mirova/front.svg",
  5321. extra: 3334 / 3071,
  5322. bottom: 42 / 3375.6
  5323. }
  5324. }
  5325. },
  5326. [
  5327. {
  5328. name: "Small",
  5329. height: math.unit(5, "meters")
  5330. },
  5331. {
  5332. name: "Macro",
  5333. height: math.unit(900, "meters"),
  5334. default: true
  5335. },
  5336. {
  5337. name: "Megamacro",
  5338. height: math.unit(135, "km")
  5339. },
  5340. {
  5341. name: "Gigamacro",
  5342. height: math.unit(20000, "km")
  5343. }
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5348. {
  5349. side: {
  5350. height: math.unit(28.35, "feet"),
  5351. weight: math.unit(99.75, "tons"),
  5352. name: "Side",
  5353. image: {
  5354. source: "./media/characters/asana-mech/side.svg",
  5355. extra: 923 / 699,
  5356. bottom: 50 / 975
  5357. }
  5358. },
  5359. chaingun: {
  5360. height: math.unit(7, "feet"),
  5361. weight: math.unit(2400, "lb"),
  5362. name: "Chaingun",
  5363. image: {
  5364. source: "./media/characters/asana-mech/chaingun.svg"
  5365. }
  5366. },
  5367. laser: {
  5368. height: math.unit(7.12, "feet"),
  5369. weight: math.unit(2000, "lb"),
  5370. name: "Laser",
  5371. image: {
  5372. source: "./media/characters/asana-mech/laser.svg"
  5373. }
  5374. },
  5375. },
  5376. [
  5377. {
  5378. name: "Normal",
  5379. height: math.unit(28.35, "feet"),
  5380. default: true
  5381. },
  5382. {
  5383. name: "Macro",
  5384. height: math.unit(2500, "feet")
  5385. },
  5386. {
  5387. name: "Megamacro",
  5388. height: math.unit(25, "miles")
  5389. },
  5390. {
  5391. name: "Examacro",
  5392. height: math.unit(6e8, "lightyears")
  5393. },
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5398. {
  5399. front: {
  5400. height: math.unit(5, "meters"),
  5401. weight: math.unit(1000, "kg"),
  5402. name: "Front",
  5403. image: {
  5404. source: "./media/characters/asche/front.svg",
  5405. extra: 1258 / 1190,
  5406. bottom: 47 / 1305
  5407. }
  5408. },
  5409. frontUnderwear: {
  5410. height: math.unit(5, "meters"),
  5411. weight: math.unit(1000, "kg"),
  5412. name: "Front (Underwear)",
  5413. image: {
  5414. source: "./media/characters/asche/front-underwear.svg",
  5415. extra: 1258 / 1190,
  5416. bottom: 47 / 1305
  5417. }
  5418. },
  5419. frontDressed: {
  5420. height: math.unit(5, "meters"),
  5421. weight: math.unit(1000, "kg"),
  5422. name: "Front (Dressed)",
  5423. image: {
  5424. source: "./media/characters/asche/front-dressed.svg",
  5425. extra: 1258 / 1190,
  5426. bottom: 47 / 1305
  5427. }
  5428. },
  5429. frontArmor: {
  5430. height: math.unit(5, "meters"),
  5431. weight: math.unit(1000, "kg"),
  5432. name: "Front (Armored)",
  5433. image: {
  5434. source: "./media/characters/asche/front-armored.svg",
  5435. extra: 1374 / 1308,
  5436. bottom: 23 / 1397
  5437. }
  5438. },
  5439. mp724: {
  5440. height: math.unit(0.96, "meters"),
  5441. weight: math.unit(38, "kg"),
  5442. name: "H&K MP724",
  5443. image: {
  5444. source: "./media/characters/asche/h&k-mp724.svg"
  5445. }
  5446. },
  5447. side: {
  5448. height: math.unit(5, "meters"),
  5449. weight: math.unit(1000, "kg"),
  5450. name: "Side",
  5451. image: {
  5452. source: "./media/characters/asche/side.svg",
  5453. extra: 1717 / 1609,
  5454. bottom: 0.005
  5455. }
  5456. },
  5457. back: {
  5458. height: math.unit(5, "meters"),
  5459. weight: math.unit(1000, "kg"),
  5460. name: "Back",
  5461. image: {
  5462. source: "./media/characters/asche/back.svg",
  5463. extra: 1570 / 1501
  5464. }
  5465. },
  5466. },
  5467. [
  5468. {
  5469. name: "DEFCON 5",
  5470. height: math.unit(5, "meters")
  5471. },
  5472. {
  5473. name: "DEFCON 4",
  5474. height: math.unit(500, "meters"),
  5475. default: true
  5476. },
  5477. {
  5478. name: "DEFCON 3",
  5479. height: math.unit(5, "km")
  5480. },
  5481. {
  5482. name: "DEFCON 2",
  5483. height: math.unit(500, "km")
  5484. },
  5485. {
  5486. name: "DEFCON 1",
  5487. height: math.unit(500000, "km")
  5488. },
  5489. {
  5490. name: "DEFCON 0",
  5491. height: math.unit(3, "gigaparsecs")
  5492. },
  5493. ]
  5494. ))
  5495. characterMakers.push(() => makeCharacter(
  5496. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5497. {
  5498. front: {
  5499. height: math.unit(7, "feet"),
  5500. weight: math.unit(92.7, "kg"),
  5501. name: "Front",
  5502. image: {
  5503. source: "./media/characters/gale/front.svg",
  5504. extra: 977/919,
  5505. bottom: 105/1082
  5506. }
  5507. },
  5508. side: {
  5509. height: math.unit(6.7, "feet"),
  5510. weight: math.unit(92.7, "kg"),
  5511. name: "Side",
  5512. image: {
  5513. source: "./media/characters/gale/side.svg",
  5514. extra: 978/922,
  5515. bottom: 140/1118
  5516. }
  5517. },
  5518. back: {
  5519. height: math.unit(7, "feet"),
  5520. weight: math.unit(92.7, "kg"),
  5521. name: "Back",
  5522. image: {
  5523. source: "./media/characters/gale/back.svg",
  5524. extra: 966/920,
  5525. bottom: 61/1027
  5526. }
  5527. },
  5528. maw: {
  5529. height: math.unit(2.23, "feet"),
  5530. name: "Maw",
  5531. image: {
  5532. source: "./media/characters/gale/maw.svg"
  5533. }
  5534. },
  5535. foot: {
  5536. height: math.unit(2.1, "feet"),
  5537. name: "Foot",
  5538. image: {
  5539. source: "./media/characters/gale/foot.svg"
  5540. }
  5541. },
  5542. },
  5543. [
  5544. {
  5545. name: "Normal",
  5546. height: math.unit(7, "feet")
  5547. },
  5548. {
  5549. name: "Macro",
  5550. height: math.unit(150, "feet"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Macro+",
  5555. height: math.unit(300, "feet")
  5556. },
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5561. {
  5562. front: {
  5563. height: math.unit(5 + 10/12, "feet"),
  5564. weight: math.unit(67, "kg"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/draylen/front.svg",
  5568. extra: 832/777,
  5569. bottom: 85/917
  5570. }
  5571. }
  5572. },
  5573. [
  5574. {
  5575. name: "Normal",
  5576. height: math.unit(5 + 10/12, "feet")
  5577. },
  5578. {
  5579. name: "Macro",
  5580. height: math.unit(150, "feet"),
  5581. default: true
  5582. }
  5583. ]
  5584. ))
  5585. characterMakers.push(() => makeCharacter(
  5586. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5587. {
  5588. front: {
  5589. height: math.unit(7 + 9 / 12, "feet"),
  5590. weight: math.unit(379, "lbs"),
  5591. name: "Front",
  5592. image: {
  5593. source: "./media/characters/chez/front.svg"
  5594. }
  5595. },
  5596. side: {
  5597. height: math.unit(7 + 9 / 12, "feet"),
  5598. weight: math.unit(379, "lbs"),
  5599. name: "Side",
  5600. image: {
  5601. source: "./media/characters/chez/side.svg"
  5602. }
  5603. }
  5604. },
  5605. [
  5606. {
  5607. name: "Normal",
  5608. height: math.unit(7 + 9 / 12, "feet"),
  5609. default: true
  5610. },
  5611. {
  5612. name: "God King",
  5613. height: math.unit(9750000, "meters")
  5614. }
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(275, "lbs"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/kaylum/front.svg",
  5626. bottom: 0.01,
  5627. extra: 1166 / 1031
  5628. }
  5629. },
  5630. frontWingless: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(275, "lbs"),
  5633. name: "Front (Wingless)",
  5634. image: {
  5635. source: "./media/characters/kaylum/front-wingless.svg",
  5636. bottom: 0.01,
  5637. extra: 1117 / 1031
  5638. }
  5639. }
  5640. },
  5641. [
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(3.05, "meters")
  5645. },
  5646. {
  5647. name: "Master",
  5648. height: math.unit(5.5, "meters")
  5649. },
  5650. {
  5651. name: "Rampage",
  5652. height: math.unit(19, "meters")
  5653. },
  5654. {
  5655. name: "Macro Lite",
  5656. height: math.unit(37, "meters")
  5657. },
  5658. {
  5659. name: "Hyper Predator",
  5660. height: math.unit(61, "meters")
  5661. },
  5662. {
  5663. name: "Macro",
  5664. height: math.unit(138, "meters"),
  5665. default: true
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(5 + 5 / 12, "feet"),
  5674. weight: math.unit(120, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/geta/front.svg",
  5678. extra: 1003/933,
  5679. bottom: 21/1024
  5680. }
  5681. },
  5682. paw: {
  5683. height: math.unit(0.35, "feet"),
  5684. name: "Paw",
  5685. image: {
  5686. source: "./media/characters/geta/paw.svg"
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Micro",
  5693. height: math.unit(3, "inches"),
  5694. default: true
  5695. },
  5696. {
  5697. name: "Normal",
  5698. height: math.unit(5 + 5 / 12, "feet")
  5699. }
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5704. {
  5705. front: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(300, "lbs"),
  5708. name: "Front",
  5709. image: {
  5710. source: "./media/characters/tyrnn/front.svg"
  5711. }
  5712. }
  5713. },
  5714. [
  5715. {
  5716. name: "Main Height",
  5717. height: math.unit(355, "feet"),
  5718. default: true
  5719. },
  5720. {
  5721. name: "Fave. Height",
  5722. height: math.unit(2400, "feet")
  5723. }
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5728. {
  5729. front: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(300, "lbs"),
  5732. name: "Front",
  5733. image: {
  5734. source: "./media/characters/appledectomy/front.svg"
  5735. }
  5736. }
  5737. },
  5738. [
  5739. {
  5740. name: "Macro",
  5741. height: math.unit(2500, "feet")
  5742. },
  5743. {
  5744. name: "Megamacro",
  5745. height: math.unit(50, "miles"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Gigamacro",
  5750. height: math.unit(5000, "miles")
  5751. },
  5752. {
  5753. name: "Teramacro",
  5754. height: math.unit(250000, "miles")
  5755. },
  5756. ]
  5757. ))
  5758. characterMakers.push(() => makeCharacter(
  5759. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5760. {
  5761. front: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(200, "lbs"),
  5764. name: "Front",
  5765. image: {
  5766. source: "./media/characters/vulpes/front.svg",
  5767. extra: 573 / 543,
  5768. bottom: 0.033
  5769. }
  5770. },
  5771. side: {
  5772. height: math.unit(6, "feet"),
  5773. weight: math.unit(200, "lbs"),
  5774. name: "Side",
  5775. image: {
  5776. source: "./media/characters/vulpes/side.svg",
  5777. extra: 577 / 549,
  5778. bottom: 11 / 588
  5779. }
  5780. },
  5781. back: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(200, "lbs"),
  5784. name: "Back",
  5785. image: {
  5786. source: "./media/characters/vulpes/back.svg",
  5787. extra: 573 / 549,
  5788. bottom: 20 / 593
  5789. }
  5790. },
  5791. feet: {
  5792. height: math.unit(1.276, "feet"),
  5793. name: "Feet",
  5794. image: {
  5795. source: "./media/characters/vulpes/feet.svg"
  5796. }
  5797. },
  5798. maw: {
  5799. height: math.unit(1.18, "feet"),
  5800. name: "Maw",
  5801. image: {
  5802. source: "./media/characters/vulpes/maw.svg"
  5803. }
  5804. },
  5805. },
  5806. [
  5807. {
  5808. name: "Micro",
  5809. height: math.unit(2, "inches")
  5810. },
  5811. {
  5812. name: "Normal",
  5813. height: math.unit(6.3, "feet")
  5814. },
  5815. {
  5816. name: "Macro",
  5817. height: math.unit(850, "feet")
  5818. },
  5819. {
  5820. name: "Megamacro",
  5821. height: math.unit(7500, "feet"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Gigamacro",
  5826. height: math.unit(570000, "miles")
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5832. {
  5833. front: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(210, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/rain-fallen/front.svg"
  5839. }
  5840. },
  5841. side: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(210, "lbs"),
  5844. name: "Side",
  5845. image: {
  5846. source: "./media/characters/rain-fallen/side.svg"
  5847. }
  5848. },
  5849. back: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(210, "lbs"),
  5852. name: "Back",
  5853. image: {
  5854. source: "./media/characters/rain-fallen/back.svg"
  5855. }
  5856. },
  5857. feral: {
  5858. height: math.unit(9, "feet"),
  5859. weight: math.unit(700, "lbs"),
  5860. name: "Feral",
  5861. image: {
  5862. source: "./media/characters/rain-fallen/feral.svg"
  5863. }
  5864. },
  5865. },
  5866. [
  5867. {
  5868. name: "Meddling with Mortals",
  5869. height: math.unit(8 + 8/12, "feet")
  5870. },
  5871. {
  5872. name: "Normal",
  5873. height: math.unit(5, "meter")
  5874. },
  5875. {
  5876. name: "Macro",
  5877. height: math.unit(150, "meter"),
  5878. default: true
  5879. },
  5880. {
  5881. name: "Megamacro",
  5882. height: math.unit(278e6, "meter")
  5883. },
  5884. {
  5885. name: "Gigamacro",
  5886. height: math.unit(2e9, "meter")
  5887. },
  5888. {
  5889. name: "Teramacro",
  5890. height: math.unit(8e12, "meter")
  5891. },
  5892. {
  5893. name: "Devourer",
  5894. height: math.unit(14, "zettameters")
  5895. },
  5896. {
  5897. name: "Scarlet King",
  5898. height: math.unit(18, "yottameters")
  5899. },
  5900. {
  5901. name: "Void",
  5902. height: math.unit(1e88, "yottameters")
  5903. }
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5908. {
  5909. standing: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(180, "lbs"),
  5912. name: "Standing",
  5913. image: {
  5914. source: "./media/characters/zaakira/standing.svg",
  5915. extra: 1599/1504,
  5916. bottom: 39/1638
  5917. }
  5918. },
  5919. laying: {
  5920. height: math.unit(3.3, "feet"),
  5921. weight: math.unit(180, "lbs"),
  5922. name: "Laying",
  5923. image: {
  5924. source: "./media/characters/zaakira/laying.svg"
  5925. }
  5926. },
  5927. },
  5928. [
  5929. {
  5930. name: "Normal",
  5931. height: math.unit(12, "feet")
  5932. },
  5933. {
  5934. name: "Macro",
  5935. height: math.unit(279, "feet"),
  5936. default: true
  5937. }
  5938. ]
  5939. ))
  5940. characterMakers.push(() => makeCharacter(
  5941. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5942. {
  5943. femSfw: {
  5944. height: math.unit(8, "feet"),
  5945. weight: math.unit(350, "lb"),
  5946. name: "Fem",
  5947. image: {
  5948. source: "./media/characters/sigvald/fem-sfw.svg",
  5949. extra: 182 / 164,
  5950. bottom: 8.7 / 190.5
  5951. }
  5952. },
  5953. femNsfw: {
  5954. height: math.unit(8, "feet"),
  5955. weight: math.unit(350, "lb"),
  5956. name: "Fem (NSFW)",
  5957. image: {
  5958. source: "./media/characters/sigvald/fem-nsfw.svg",
  5959. extra: 182 / 164,
  5960. bottom: 8.7 / 190.5
  5961. }
  5962. },
  5963. maleNsfw: {
  5964. height: math.unit(8, "feet"),
  5965. weight: math.unit(350, "lb"),
  5966. name: "Male (NSFW)",
  5967. image: {
  5968. source: "./media/characters/sigvald/male-nsfw.svg",
  5969. extra: 182 / 164,
  5970. bottom: 8.7 / 190.5
  5971. }
  5972. },
  5973. hermNsfw: {
  5974. height: math.unit(8, "feet"),
  5975. weight: math.unit(350, "lb"),
  5976. name: "Herm (NSFW)",
  5977. image: {
  5978. source: "./media/characters/sigvald/herm-nsfw.svg",
  5979. extra: 182 / 164,
  5980. bottom: 8.7 / 190.5
  5981. }
  5982. },
  5983. dick: {
  5984. height: math.unit(2.36, "feet"),
  5985. name: "Dick",
  5986. image: {
  5987. source: "./media/characters/sigvald/dick.svg"
  5988. }
  5989. },
  5990. eye: {
  5991. height: math.unit(0.31, "feet"),
  5992. name: "Eye",
  5993. image: {
  5994. source: "./media/characters/sigvald/eye.svg"
  5995. }
  5996. },
  5997. mouth: {
  5998. height: math.unit(0.92, "feet"),
  5999. name: "Mouth",
  6000. image: {
  6001. source: "./media/characters/sigvald/mouth.svg"
  6002. }
  6003. },
  6004. paws: {
  6005. height: math.unit(2.2, "feet"),
  6006. name: "Paws",
  6007. image: {
  6008. source: "./media/characters/sigvald/paws.svg"
  6009. }
  6010. }
  6011. },
  6012. [
  6013. {
  6014. name: "Normal",
  6015. height: math.unit(8, "feet")
  6016. },
  6017. {
  6018. name: "Large",
  6019. height: math.unit(12, "feet")
  6020. },
  6021. {
  6022. name: "Larger",
  6023. height: math.unit(20, "feet")
  6024. },
  6025. {
  6026. name: "Macro",
  6027. height: math.unit(150, "feet")
  6028. },
  6029. {
  6030. name: "Macro+",
  6031. height: math.unit(200, "feet"),
  6032. default: true
  6033. },
  6034. ]
  6035. ))
  6036. characterMakers.push(() => makeCharacter(
  6037. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6038. {
  6039. side: {
  6040. height: math.unit(12, "feet"),
  6041. weight: math.unit(2000, "kg"),
  6042. name: "Side",
  6043. image: {
  6044. source: "./media/characters/scott/side.svg",
  6045. extra: 754 / 724,
  6046. bottom: 0.069
  6047. }
  6048. },
  6049. upright: {
  6050. height: math.unit(12, "feet"),
  6051. weight: math.unit(2000, "kg"),
  6052. name: "Upright",
  6053. image: {
  6054. source: "./media/characters/scott/upright.svg",
  6055. extra: 3881 / 3722,
  6056. bottom: 0.05
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Normal",
  6063. height: math.unit(12, "feet"),
  6064. default: true
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6070. {
  6071. side: {
  6072. height: math.unit(8, "meters"),
  6073. weight: math.unit(84755, "lbs"),
  6074. name: "Side",
  6075. image: {
  6076. source: "./media/characters/tobias/side.svg",
  6077. extra: 1474 / 1096,
  6078. bottom: 38.9 / 1513.1235
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(8, "meters"),
  6086. default: true
  6087. },
  6088. ]
  6089. ))
  6090. characterMakers.push(() => makeCharacter(
  6091. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6092. {
  6093. front: {
  6094. height: math.unit(5.5, "feet"),
  6095. weight: math.unit(400, "lbs"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/kieran/front.svg",
  6099. extra: 2694 / 2364,
  6100. bottom: 217 / 2908
  6101. }
  6102. },
  6103. side: {
  6104. height: math.unit(5.5, "feet"),
  6105. weight: math.unit(400, "lbs"),
  6106. name: "Side",
  6107. image: {
  6108. source: "./media/characters/kieran/side.svg",
  6109. extra: 875 / 777,
  6110. bottom: 84.6 / 959
  6111. }
  6112. },
  6113. },
  6114. [
  6115. {
  6116. name: "Normal",
  6117. height: math.unit(5.5, "feet"),
  6118. default: true
  6119. },
  6120. ]
  6121. ))
  6122. characterMakers.push(() => makeCharacter(
  6123. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6124. {
  6125. side: {
  6126. height: math.unit(2, "meters"),
  6127. weight: math.unit(70, "kg"),
  6128. name: "Side",
  6129. image: {
  6130. source: "./media/characters/sanya/side.svg",
  6131. bottom: 0.02,
  6132. extra: 1.02
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Small",
  6139. height: math.unit(2, "meters")
  6140. },
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(3, "meters")
  6144. },
  6145. {
  6146. name: "Macro",
  6147. height: math.unit(16, "meters"),
  6148. default: true
  6149. },
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6154. {
  6155. front: {
  6156. height: math.unit(2, "meters"),
  6157. weight: math.unit(120, "kg"),
  6158. name: "Front",
  6159. image: {
  6160. source: "./media/characters/miranda/front.svg",
  6161. extra: 195 / 185,
  6162. bottom: 10.9 / 206.5
  6163. }
  6164. },
  6165. back: {
  6166. height: math.unit(2, "meters"),
  6167. weight: math.unit(120, "kg"),
  6168. name: "Back",
  6169. image: {
  6170. source: "./media/characters/miranda/back.svg",
  6171. extra: 201 / 193,
  6172. bottom: 2.3 / 203.7
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(10, "feet"),
  6180. default: true
  6181. }
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "James", species: ["deer"], tags: ["anthro"] },
  6186. {
  6187. side: {
  6188. height: math.unit(2, "meters"),
  6189. weight: math.unit(100, "kg"),
  6190. name: "Front",
  6191. image: {
  6192. source: "./media/characters/james/front.svg",
  6193. extra: 10 / 8.5
  6194. }
  6195. },
  6196. },
  6197. [
  6198. {
  6199. name: "Normal",
  6200. height: math.unit(8.5, "feet"),
  6201. default: true
  6202. }
  6203. ]
  6204. ))
  6205. characterMakers.push(() => makeCharacter(
  6206. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6207. {
  6208. side: {
  6209. height: math.unit(9.5, "feet"),
  6210. weight: math.unit(2500, "lbs"),
  6211. name: "Side",
  6212. image: {
  6213. source: "./media/characters/heather/side.svg"
  6214. }
  6215. },
  6216. },
  6217. [
  6218. {
  6219. name: "Normal",
  6220. height: math.unit(9.5, "feet"),
  6221. default: true
  6222. }
  6223. ]
  6224. ))
  6225. characterMakers.push(() => makeCharacter(
  6226. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6227. {
  6228. side: {
  6229. height: math.unit(6.5, "feet"),
  6230. weight: math.unit(400, "lbs"),
  6231. name: "Side",
  6232. image: {
  6233. source: "./media/characters/lukas/side.svg",
  6234. extra: 7.25 / 6.5
  6235. }
  6236. },
  6237. },
  6238. [
  6239. {
  6240. name: "Normal",
  6241. height: math.unit(6.5, "feet"),
  6242. default: true
  6243. }
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6248. {
  6249. side: {
  6250. height: math.unit(5, "feet"),
  6251. weight: math.unit(3000, "lbs"),
  6252. name: "Side",
  6253. image: {
  6254. source: "./media/characters/louise/side.svg"
  6255. }
  6256. },
  6257. },
  6258. [
  6259. {
  6260. name: "Normal",
  6261. height: math.unit(5, "feet"),
  6262. default: true
  6263. }
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6268. {
  6269. side: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(150, "lbs"),
  6272. name: "Side",
  6273. image: {
  6274. source: "./media/characters/ramona/side.svg",
  6275. extra: 871/854,
  6276. bottom: 41/912
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Normal",
  6283. height: math.unit(6 + 4/12, "feet")
  6284. },
  6285. {
  6286. name: "Minimacro",
  6287. height: math.unit(5.3, "meters"),
  6288. default: true
  6289. },
  6290. {
  6291. name: "Macro",
  6292. height: math.unit(20, "stories")
  6293. },
  6294. {
  6295. name: "Macro+",
  6296. height: math.unit(50, "stories")
  6297. },
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6302. {
  6303. standing: {
  6304. height: math.unit(5.75, "feet"),
  6305. weight: math.unit(160, "lbs"),
  6306. name: "Standing",
  6307. image: {
  6308. source: "./media/characters/deerpuff/standing.svg",
  6309. extra: 682 / 624
  6310. }
  6311. },
  6312. sitting: {
  6313. height: math.unit(5.75 / 1.79, "feet"),
  6314. weight: math.unit(160, "lbs"),
  6315. name: "Sitting",
  6316. image: {
  6317. source: "./media/characters/deerpuff/sitting.svg",
  6318. bottom: 44 / 400,
  6319. extra: 1
  6320. }
  6321. },
  6322. taurLaying: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(400, "lbs"),
  6325. name: "Taur (Laying)",
  6326. image: {
  6327. source: "./media/characters/deerpuff/taur-laying.svg"
  6328. }
  6329. },
  6330. },
  6331. [
  6332. {
  6333. name: "Puffball",
  6334. height: math.unit(6, "inches")
  6335. },
  6336. {
  6337. name: "Normalpuff",
  6338. height: math.unit(5.75, "feet")
  6339. },
  6340. {
  6341. name: "Macropuff",
  6342. height: math.unit(1500, "feet"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Megapuff",
  6347. height: math.unit(500, "miles")
  6348. },
  6349. {
  6350. name: "Gigapuff",
  6351. height: math.unit(250000, "miles")
  6352. },
  6353. {
  6354. name: "Omegapuff",
  6355. height: math.unit(1000, "lightyears")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6361. {
  6362. stomping: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(170, "lbs"),
  6365. name: "Stomping",
  6366. image: {
  6367. source: "./media/characters/vivian/stomping.svg"
  6368. }
  6369. },
  6370. sitting: {
  6371. height: math.unit(6 / 1.75, "feet"),
  6372. weight: math.unit(170, "lbs"),
  6373. name: "Sitting",
  6374. image: {
  6375. source: "./media/characters/vivian/sitting.svg",
  6376. bottom: 1 / 6.4,
  6377. extra: 1,
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(7, "feet"),
  6385. default: true
  6386. },
  6387. {
  6388. name: "Macro",
  6389. height: math.unit(10, "stories")
  6390. },
  6391. {
  6392. name: "Macro+",
  6393. height: math.unit(30, "stories")
  6394. },
  6395. {
  6396. name: "Megamacro",
  6397. height: math.unit(10, "miles")
  6398. },
  6399. {
  6400. name: "Megamacro+",
  6401. height: math.unit(2750000, "meters")
  6402. },
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6407. {
  6408. front: {
  6409. height: math.unit(6, "feet"),
  6410. weight: math.unit(160, "lbs"),
  6411. name: "Front",
  6412. image: {
  6413. source: "./media/characters/prince/front.svg",
  6414. extra: 1938/1682,
  6415. bottom: 45/1983
  6416. }
  6417. },
  6418. back: {
  6419. height: math.unit(6, "feet"),
  6420. weight: math.unit(160, "lbs"),
  6421. name: "Back",
  6422. image: {
  6423. source: "./media/characters/prince/back.svg",
  6424. extra: 1955/1726,
  6425. bottom: 6/1961
  6426. }
  6427. },
  6428. },
  6429. [
  6430. {
  6431. name: "Normal",
  6432. height: math.unit(7.75, "feet"),
  6433. default: true
  6434. },
  6435. {
  6436. name: "Not cute",
  6437. height: math.unit(17, "feet")
  6438. },
  6439. {
  6440. name: "I said NOT",
  6441. height: math.unit(91, "feet")
  6442. },
  6443. {
  6444. name: "Please stop",
  6445. height: math.unit(560, "feet")
  6446. },
  6447. {
  6448. name: "What have you done",
  6449. height: math.unit(2200, "feet")
  6450. },
  6451. {
  6452. name: "Deer God",
  6453. height: math.unit(3.6, "miles")
  6454. },
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6459. {
  6460. standing: {
  6461. height: math.unit(6, "feet"),
  6462. weight: math.unit(300, "lbs"),
  6463. name: "Standing",
  6464. image: {
  6465. source: "./media/characters/psymon/standing.svg",
  6466. extra: 1888 / 1810,
  6467. bottom: 0.05
  6468. }
  6469. },
  6470. slithering: {
  6471. height: math.unit(6, "feet"),
  6472. weight: math.unit(300, "lbs"),
  6473. name: "Slithering",
  6474. image: {
  6475. source: "./media/characters/psymon/slithering.svg",
  6476. extra: 1330 / 1224
  6477. }
  6478. },
  6479. slitheringAlt: {
  6480. height: math.unit(6, "feet"),
  6481. weight: math.unit(300, "lbs"),
  6482. name: "Slithering (Alt)",
  6483. image: {
  6484. source: "./media/characters/psymon/slithering-alt.svg",
  6485. extra: 1330 / 1224
  6486. }
  6487. },
  6488. },
  6489. [
  6490. {
  6491. name: "Normal",
  6492. height: math.unit(11.25, "feet"),
  6493. default: true
  6494. },
  6495. {
  6496. name: "Large",
  6497. height: math.unit(27, "feet")
  6498. },
  6499. {
  6500. name: "Giant",
  6501. height: math.unit(87, "feet")
  6502. },
  6503. {
  6504. name: "Macro",
  6505. height: math.unit(365, "feet")
  6506. },
  6507. {
  6508. name: "Megamacro",
  6509. height: math.unit(3, "miles")
  6510. },
  6511. {
  6512. name: "World Serpent",
  6513. height: math.unit(8000, "miles")
  6514. },
  6515. ]
  6516. ))
  6517. characterMakers.push(() => makeCharacter(
  6518. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6519. {
  6520. front: {
  6521. height: math.unit(6, "feet"),
  6522. weight: math.unit(180, "lbs"),
  6523. name: "Front",
  6524. image: {
  6525. source: "./media/characters/daimos/front.svg",
  6526. extra: 4160 / 3897,
  6527. bottom: 0.021
  6528. }
  6529. }
  6530. },
  6531. [
  6532. {
  6533. name: "Normal",
  6534. height: math.unit(8, "feet"),
  6535. default: true
  6536. },
  6537. {
  6538. name: "Big Dog",
  6539. height: math.unit(22, "feet")
  6540. },
  6541. {
  6542. name: "Macro",
  6543. height: math.unit(127, "feet")
  6544. },
  6545. {
  6546. name: "Megamacro",
  6547. height: math.unit(3600, "feet")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6553. {
  6554. side: {
  6555. height: math.unit(6, "feet"),
  6556. weight: math.unit(180, "lbs"),
  6557. name: "Side",
  6558. image: {
  6559. source: "./media/characters/blake/side.svg",
  6560. extra: 1212 / 1120,
  6561. bottom: 0.05
  6562. }
  6563. },
  6564. crouched: {
  6565. height: math.unit(6 * 0.57, "feet"),
  6566. weight: math.unit(180, "lbs"),
  6567. name: "Crouched",
  6568. image: {
  6569. source: "./media/characters/blake/crouched.svg",
  6570. extra: 840 / 587,
  6571. bottom: 0.04
  6572. }
  6573. },
  6574. bent: {
  6575. height: math.unit(6 * 0.75, "feet"),
  6576. weight: math.unit(180, "lbs"),
  6577. name: "Bent",
  6578. image: {
  6579. source: "./media/characters/blake/bent.svg",
  6580. extra: 592 / 544,
  6581. bottom: 0.035
  6582. }
  6583. },
  6584. },
  6585. [
  6586. {
  6587. name: "Normal",
  6588. height: math.unit(8 + 1 / 6, "feet"),
  6589. default: true
  6590. },
  6591. {
  6592. name: "Big Backside",
  6593. height: math.unit(37, "feet")
  6594. },
  6595. {
  6596. name: "Subway Shredder",
  6597. height: math.unit(72, "feet")
  6598. },
  6599. {
  6600. name: "City Carver",
  6601. height: math.unit(1675, "feet")
  6602. },
  6603. {
  6604. name: "Tectonic Tweaker",
  6605. height: math.unit(2300, "miles")
  6606. },
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6611. {
  6612. front: {
  6613. height: math.unit(6, "feet"),
  6614. weight: math.unit(180, "lbs"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/guisetto/front.svg",
  6618. extra: 856 / 817,
  6619. bottom: 0.06
  6620. }
  6621. },
  6622. airborne: {
  6623. height: math.unit(6, "feet"),
  6624. weight: math.unit(180, "lbs"),
  6625. name: "Airborne",
  6626. image: {
  6627. source: "./media/characters/guisetto/airborne.svg",
  6628. extra: 584 / 525
  6629. }
  6630. },
  6631. },
  6632. [
  6633. {
  6634. name: "Normal",
  6635. height: math.unit(10 + 11 / 12, "feet"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Large",
  6640. height: math.unit(35, "feet")
  6641. },
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(475, "feet")
  6645. },
  6646. ]
  6647. ))
  6648. characterMakers.push(() => makeCharacter(
  6649. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6650. {
  6651. front: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(180, "lbs"),
  6654. name: "Front",
  6655. image: {
  6656. source: "./media/characters/luxor/front.svg",
  6657. extra: 2940 / 2152
  6658. }
  6659. },
  6660. back: {
  6661. height: math.unit(6, "feet"),
  6662. weight: math.unit(180, "lbs"),
  6663. name: "Back",
  6664. image: {
  6665. source: "./media/characters/luxor/back.svg",
  6666. extra: 1083 / 960
  6667. }
  6668. },
  6669. },
  6670. [
  6671. {
  6672. name: "Normal",
  6673. height: math.unit(5 + 5 / 6, "feet"),
  6674. default: true
  6675. },
  6676. {
  6677. name: "Lamp",
  6678. height: math.unit(50, "feet")
  6679. },
  6680. {
  6681. name: "Lämp",
  6682. height: math.unit(300, "feet")
  6683. },
  6684. {
  6685. name: "The sun is a lamp",
  6686. height: math.unit(250000, "miles")
  6687. },
  6688. ]
  6689. ))
  6690. characterMakers.push(() => makeCharacter(
  6691. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6692. {
  6693. front: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(50, "lbs"),
  6696. name: "Front",
  6697. image: {
  6698. source: "./media/characters/huoyan/front.svg"
  6699. }
  6700. },
  6701. side: {
  6702. height: math.unit(6, "feet"),
  6703. weight: math.unit(180, "lbs"),
  6704. name: "Side",
  6705. image: {
  6706. source: "./media/characters/huoyan/side.svg"
  6707. }
  6708. },
  6709. },
  6710. [
  6711. {
  6712. name: "Chef",
  6713. height: math.unit(9, "feet")
  6714. },
  6715. {
  6716. name: "Normal",
  6717. height: math.unit(65, "feet"),
  6718. default: true
  6719. },
  6720. {
  6721. name: "Macro",
  6722. height: math.unit(780, "feet")
  6723. },
  6724. {
  6725. name: "Flaming Mountain",
  6726. height: math.unit(4.8, "miles")
  6727. },
  6728. {
  6729. name: "Celestial",
  6730. height: math.unit(765000, "miles")
  6731. },
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6736. {
  6737. front: {
  6738. height: math.unit(5 + 3 / 4, "feet"),
  6739. weight: math.unit(120, "lbs"),
  6740. name: "Front",
  6741. image: {
  6742. source: "./media/characters/tails/front.svg"
  6743. }
  6744. }
  6745. },
  6746. [
  6747. {
  6748. name: "Normal",
  6749. height: math.unit(5 + 3 / 4, "feet"),
  6750. default: true
  6751. }
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6756. {
  6757. front: {
  6758. height: math.unit(4, "feet"),
  6759. weight: math.unit(50, "lbs"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/rainy/front.svg"
  6763. }
  6764. }
  6765. },
  6766. [
  6767. {
  6768. name: "Macro",
  6769. height: math.unit(800, "feet"),
  6770. default: true
  6771. }
  6772. ]
  6773. ))
  6774. characterMakers.push(() => makeCharacter(
  6775. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6776. {
  6777. front: {
  6778. height: math.unit(6, "feet"),
  6779. weight: math.unit(150, "lbs"),
  6780. name: "Front",
  6781. image: {
  6782. source: "./media/characters/rainier/front.svg"
  6783. }
  6784. }
  6785. },
  6786. [
  6787. {
  6788. name: "Micro",
  6789. height: math.unit(2, "mm"),
  6790. default: true
  6791. }
  6792. ]
  6793. ))
  6794. characterMakers.push(() => makeCharacter(
  6795. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6796. {
  6797. front: {
  6798. height: math.unit(8 + 4/12, "feet"),
  6799. weight: math.unit(450, "kilograms"),
  6800. volume: math.unit(5, "cups"),
  6801. name: "Front",
  6802. image: {
  6803. source: "./media/characters/andy-renard/front.svg",
  6804. extra: 1839/1726,
  6805. bottom: 134/1973
  6806. }
  6807. },
  6808. back: {
  6809. height: math.unit(8 + 4/12, "feet"),
  6810. weight: math.unit(450, "kilograms"),
  6811. volume: math.unit(5, "cups"),
  6812. name: "Back",
  6813. image: {
  6814. source: "./media/characters/andy-renard/back.svg",
  6815. extra: 1838/1710,
  6816. bottom: 105/1943
  6817. }
  6818. },
  6819. },
  6820. [
  6821. {
  6822. name: "Tall",
  6823. height: math.unit(8 + 4/12, "feet")
  6824. },
  6825. {
  6826. name: "Mini Macro",
  6827. height: math.unit(15, "feet"),
  6828. default: true
  6829. },
  6830. {
  6831. name: "Macro",
  6832. height: math.unit(100, "feet")
  6833. },
  6834. {
  6835. name: "Mega Macro",
  6836. height: math.unit(1000, "feet")
  6837. },
  6838. {
  6839. name: "Giga Macro",
  6840. height: math.unit(10, "miles")
  6841. },
  6842. {
  6843. name: "God Macro",
  6844. height: math.unit(1, "multiverse")
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(6, "feet"),
  6853. weight: math.unit(210, "lbs"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/cimmaron/front-sfw.svg",
  6857. extra: 701 / 676,
  6858. bottom: 0.046
  6859. }
  6860. },
  6861. back: {
  6862. height: math.unit(6, "feet"),
  6863. weight: math.unit(210, "lbs"),
  6864. name: "Back",
  6865. image: {
  6866. source: "./media/characters/cimmaron/back-sfw.svg",
  6867. extra: 701 / 676,
  6868. bottom: 0.046
  6869. }
  6870. },
  6871. frontNsfw: {
  6872. height: math.unit(6, "feet"),
  6873. weight: math.unit(210, "lbs"),
  6874. name: "Front (NSFW)",
  6875. image: {
  6876. source: "./media/characters/cimmaron/front-nsfw.svg",
  6877. extra: 701 / 676,
  6878. bottom: 0.046
  6879. }
  6880. },
  6881. backNsfw: {
  6882. height: math.unit(6, "feet"),
  6883. weight: math.unit(210, "lbs"),
  6884. name: "Back (NSFW)",
  6885. image: {
  6886. source: "./media/characters/cimmaron/back-nsfw.svg",
  6887. extra: 701 / 676,
  6888. bottom: 0.046
  6889. }
  6890. },
  6891. dick: {
  6892. height: math.unit(1.714, "feet"),
  6893. name: "Dick",
  6894. image: {
  6895. source: "./media/characters/cimmaron/dick.svg"
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(6, "feet"),
  6903. default: true
  6904. },
  6905. {
  6906. name: "Macro Mayor",
  6907. height: math.unit(350, "meters")
  6908. },
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(200, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/akari/front.svg",
  6920. extra: 962 / 901,
  6921. bottom: 0.04
  6922. }
  6923. }
  6924. },
  6925. [
  6926. {
  6927. name: "Micro",
  6928. height: math.unit(5, "inches"),
  6929. default: true
  6930. },
  6931. {
  6932. name: "Normal",
  6933. height: math.unit(7, "feet")
  6934. },
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6939. {
  6940. front: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(140, "lbs"),
  6943. name: "Front",
  6944. image: {
  6945. source: "./media/characters/cynosura/front.svg",
  6946. extra: 437/410,
  6947. bottom: 9/446
  6948. }
  6949. },
  6950. back: {
  6951. height: math.unit(6, "feet"),
  6952. weight: math.unit(140, "lbs"),
  6953. name: "Back",
  6954. image: {
  6955. source: "./media/characters/cynosura/back.svg",
  6956. extra: 1304/1160,
  6957. bottom: 71/1375
  6958. }
  6959. },
  6960. },
  6961. [
  6962. {
  6963. name: "Micro",
  6964. height: math.unit(4, "inches")
  6965. },
  6966. {
  6967. name: "Normal",
  6968. height: math.unit(5.75, "feet"),
  6969. default: true
  6970. },
  6971. {
  6972. name: "Tall",
  6973. height: math.unit(10, "feet")
  6974. },
  6975. {
  6976. name: "Big",
  6977. height: math.unit(20, "feet")
  6978. },
  6979. {
  6980. name: "Macro",
  6981. height: math.unit(50, "feet")
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6987. {
  6988. front: {
  6989. height: math.unit(13 + 2/12, "feet"),
  6990. weight: math.unit(800, "kg"),
  6991. name: "Front",
  6992. image: {
  6993. source: "./media/characters/gin/front.svg",
  6994. extra: 1312/1191,
  6995. bottom: 45/1357
  6996. }
  6997. },
  6998. mouth: {
  6999. height: math.unit(2.39 * 1.8, "feet"),
  7000. name: "Mouth",
  7001. image: {
  7002. source: "./media/characters/gin/mouth.svg"
  7003. }
  7004. },
  7005. hand: {
  7006. height: math.unit(1.57 * 2.19, "feet"),
  7007. name: "Hand",
  7008. image: {
  7009. source: "./media/characters/gin/hand.svg"
  7010. }
  7011. },
  7012. foot: {
  7013. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7014. name: "Foot",
  7015. image: {
  7016. source: "./media/characters/gin/foot.svg"
  7017. }
  7018. },
  7019. sole: {
  7020. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7021. name: "Sole",
  7022. image: {
  7023. source: "./media/characters/gin/sole.svg"
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Very Small",
  7030. height: math.unit(13 + 2 / 12, "feet")
  7031. },
  7032. {
  7033. name: "Micro",
  7034. height: math.unit(600, "miles")
  7035. },
  7036. {
  7037. name: "Regular",
  7038. height: math.unit(20, "earths"),
  7039. default: true
  7040. },
  7041. {
  7042. name: "Macro",
  7043. height: math.unit(2.2, "solarradii")
  7044. },
  7045. {
  7046. name: "Teramacro",
  7047. height: math.unit(1.2, "galaxies")
  7048. },
  7049. {
  7050. name: "Omegamacro",
  7051. height: math.unit(200, "universes")
  7052. },
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7057. {
  7058. front: {
  7059. height: math.unit(6 + 1 / 6, "feet"),
  7060. weight: math.unit(178, "lbs"),
  7061. name: "Front",
  7062. image: {
  7063. source: "./media/characters/guy/front.svg"
  7064. }
  7065. }
  7066. },
  7067. [
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(6 + 1 / 6, "feet"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Large",
  7075. height: math.unit(25 + 7 / 12, "feet")
  7076. },
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(60 + 9 / 12, "feet")
  7080. },
  7081. {
  7082. name: "Macro+",
  7083. height: math.unit(246, "feet")
  7084. },
  7085. {
  7086. name: "Macro++",
  7087. height: math.unit(878, "feet")
  7088. }
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7093. {
  7094. front: {
  7095. height: math.unit(9, "feet"),
  7096. weight: math.unit(800, "lbs"),
  7097. name: "Front",
  7098. image: {
  7099. source: "./media/characters/tiberius/front.svg",
  7100. extra: 2295 / 2071
  7101. }
  7102. },
  7103. back: {
  7104. height: math.unit(9, "feet"),
  7105. weight: math.unit(800, "lbs"),
  7106. name: "Back",
  7107. image: {
  7108. source: "./media/characters/tiberius/back.svg",
  7109. extra: 2373 / 2160
  7110. }
  7111. },
  7112. },
  7113. [
  7114. {
  7115. name: "Normal",
  7116. height: math.unit(9, "feet"),
  7117. default: true
  7118. }
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7123. {
  7124. front: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(600, "lbs"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/surgo/front.svg",
  7130. extra: 3591 / 2227
  7131. }
  7132. },
  7133. back: {
  7134. height: math.unit(6, "feet"),
  7135. weight: math.unit(600, "lbs"),
  7136. name: "Back",
  7137. image: {
  7138. source: "./media/characters/surgo/back.svg",
  7139. extra: 3557 / 2228
  7140. }
  7141. },
  7142. laying: {
  7143. height: math.unit(6 * 0.85, "feet"),
  7144. weight: math.unit(600, "lbs"),
  7145. name: "Laying",
  7146. image: {
  7147. source: "./media/characters/surgo/laying.svg"
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Normal",
  7154. height: math.unit(6, "feet"),
  7155. default: true
  7156. }
  7157. ]
  7158. ))
  7159. characterMakers.push(() => makeCharacter(
  7160. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7161. {
  7162. side: {
  7163. height: math.unit(6, "feet"),
  7164. weight: math.unit(150, "lbs"),
  7165. name: "Side",
  7166. image: {
  7167. source: "./media/characters/cibus/side.svg",
  7168. extra: 800 / 400
  7169. }
  7170. },
  7171. },
  7172. [
  7173. {
  7174. name: "Normal",
  7175. height: math.unit(6, "feet"),
  7176. default: true
  7177. }
  7178. ]
  7179. ))
  7180. characterMakers.push(() => makeCharacter(
  7181. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7182. {
  7183. front: {
  7184. height: math.unit(6, "feet"),
  7185. weight: math.unit(240, "lbs"),
  7186. name: "Front",
  7187. image: {
  7188. source: "./media/characters/nibbles/front.svg"
  7189. }
  7190. },
  7191. side: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(240, "lbs"),
  7194. name: "Side",
  7195. image: {
  7196. source: "./media/characters/nibbles/side.svg"
  7197. }
  7198. },
  7199. },
  7200. [
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(9, "feet"),
  7204. default: true
  7205. }
  7206. ]
  7207. ))
  7208. characterMakers.push(() => makeCharacter(
  7209. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7210. {
  7211. side: {
  7212. height: math.unit(5 + 1 / 6, "feet"),
  7213. weight: math.unit(130, "lbs"),
  7214. name: "Side",
  7215. image: {
  7216. source: "./media/characters/rikky/side.svg",
  7217. extra: 851 / 801
  7218. }
  7219. },
  7220. },
  7221. [
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(5 + 1 / 6, "feet")
  7225. },
  7226. {
  7227. name: "Macro",
  7228. height: math.unit(152, "feet"),
  7229. default: true
  7230. },
  7231. {
  7232. name: "Megamacro",
  7233. height: math.unit(7, "miles")
  7234. }
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7239. {
  7240. side: {
  7241. height: math.unit(370, "cm"),
  7242. weight: math.unit(350, "lbs"),
  7243. name: "Side",
  7244. image: {
  7245. source: "./media/characters/malfressa/side.svg"
  7246. }
  7247. },
  7248. walking: {
  7249. height: math.unit(370, "cm"),
  7250. weight: math.unit(350, "lbs"),
  7251. name: "Walking",
  7252. image: {
  7253. source: "./media/characters/malfressa/walking.svg"
  7254. }
  7255. },
  7256. feral: {
  7257. height: math.unit(2500, "cm"),
  7258. weight: math.unit(100000, "lbs"),
  7259. name: "Feral",
  7260. image: {
  7261. source: "./media/characters/malfressa/feral.svg",
  7262. extra: 2108 / 837,
  7263. bottom: 0.02
  7264. }
  7265. },
  7266. },
  7267. [
  7268. {
  7269. name: "Normal",
  7270. height: math.unit(370, "cm")
  7271. },
  7272. {
  7273. name: "Macro",
  7274. height: math.unit(300, "meters"),
  7275. default: true
  7276. }
  7277. ]
  7278. ))
  7279. characterMakers.push(() => makeCharacter(
  7280. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7281. {
  7282. front: {
  7283. height: math.unit(6, "feet"),
  7284. weight: math.unit(60, "kg"),
  7285. name: "Front",
  7286. image: {
  7287. source: "./media/characters/jaro/front.svg",
  7288. extra: 845/817,
  7289. bottom: 45/890
  7290. }
  7291. },
  7292. back: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(60, "kg"),
  7295. name: "Back",
  7296. image: {
  7297. source: "./media/characters/jaro/back.svg",
  7298. extra: 847/817,
  7299. bottom: 34/881
  7300. }
  7301. },
  7302. },
  7303. [
  7304. {
  7305. name: "Micro",
  7306. height: math.unit(7, "inches")
  7307. },
  7308. {
  7309. name: "Normal",
  7310. height: math.unit(5.5, "feet"),
  7311. default: true
  7312. },
  7313. {
  7314. name: "Minimacro",
  7315. height: math.unit(20, "feet")
  7316. },
  7317. {
  7318. name: "Macro",
  7319. height: math.unit(200, "meters")
  7320. }
  7321. ]
  7322. ))
  7323. characterMakers.push(() => makeCharacter(
  7324. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7325. {
  7326. front: {
  7327. height: math.unit(6, "feet"),
  7328. weight: math.unit(195, "lb"),
  7329. name: "Front",
  7330. image: {
  7331. source: "./media/characters/rogue/front.svg"
  7332. }
  7333. },
  7334. },
  7335. [
  7336. {
  7337. name: "Macro",
  7338. height: math.unit(90, "feet"),
  7339. default: true
  7340. },
  7341. ]
  7342. ))
  7343. characterMakers.push(() => makeCharacter(
  7344. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7345. {
  7346. standing: {
  7347. height: math.unit(5 + 8 / 12, "feet"),
  7348. weight: math.unit(140, "lb"),
  7349. name: "Standing",
  7350. image: {
  7351. source: "./media/characters/piper/standing.svg",
  7352. extra: 1440/1284,
  7353. bottom: 66/1506
  7354. }
  7355. },
  7356. running: {
  7357. height: math.unit(5 + 8 / 12, "feet"),
  7358. weight: math.unit(140, "lb"),
  7359. name: "Running",
  7360. image: {
  7361. source: "./media/characters/piper/running.svg",
  7362. extra: 3948/3655,
  7363. bottom: 0/3948
  7364. }
  7365. },
  7366. sole: {
  7367. height: math.unit(0.81, "feet"),
  7368. weight: math.unit(2, "kg"),
  7369. name: "Sole",
  7370. image: {
  7371. source: "./media/characters/piper/sole.svg"
  7372. }
  7373. },
  7374. nipple: {
  7375. height: math.unit(0.25, "feet"),
  7376. weight: math.unit(1.5, "lb"),
  7377. name: "Nipple",
  7378. image: {
  7379. source: "./media/characters/piper/nipple.svg"
  7380. }
  7381. },
  7382. head: {
  7383. height: math.unit(1.1, "feet"),
  7384. name: "Head",
  7385. image: {
  7386. source: "./media/characters/piper/head.svg"
  7387. }
  7388. },
  7389. },
  7390. [
  7391. {
  7392. name: "Micro",
  7393. height: math.unit(2, "inches")
  7394. },
  7395. {
  7396. name: "Normal",
  7397. height: math.unit(5 + 8 / 12, "feet")
  7398. },
  7399. {
  7400. name: "Macro",
  7401. height: math.unit(250, "feet"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Megamacro",
  7406. height: math.unit(7, "miles")
  7407. },
  7408. ]
  7409. ))
  7410. characterMakers.push(() => makeCharacter(
  7411. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7412. {
  7413. front: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(220, "lb"),
  7416. name: "Front",
  7417. image: {
  7418. source: "./media/characters/gemini/front.svg"
  7419. }
  7420. },
  7421. back: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(220, "lb"),
  7424. name: "Back",
  7425. image: {
  7426. source: "./media/characters/gemini/back.svg"
  7427. }
  7428. },
  7429. kneeling: {
  7430. height: math.unit(6 / 1.5, "feet"),
  7431. weight: math.unit(220, "lb"),
  7432. name: "Kneeling",
  7433. image: {
  7434. source: "./media/characters/gemini/kneeling.svg",
  7435. bottom: 0.02
  7436. }
  7437. },
  7438. },
  7439. [
  7440. {
  7441. name: "Macro",
  7442. height: math.unit(300, "meters"),
  7443. default: true
  7444. },
  7445. {
  7446. name: "Megamacro",
  7447. height: math.unit(6900, "meters")
  7448. },
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7453. {
  7454. anthro: {
  7455. height: math.unit(2.35, "meters"),
  7456. weight: math.unit(73, "kg"),
  7457. name: "Anthro",
  7458. image: {
  7459. source: "./media/characters/alicia/anthro.svg",
  7460. extra: 2571 / 2385,
  7461. bottom: 75 / 2648
  7462. }
  7463. },
  7464. paw: {
  7465. height: math.unit(1.32, "feet"),
  7466. name: "Paw",
  7467. image: {
  7468. source: "./media/characters/alicia/paw.svg"
  7469. }
  7470. },
  7471. feral: {
  7472. height: math.unit(1.69, "meters"),
  7473. weight: math.unit(73, "kg"),
  7474. name: "Feral",
  7475. image: {
  7476. source: "./media/characters/alicia/feral.svg",
  7477. extra: 2123 / 1715,
  7478. bottom: 222 / 2349
  7479. }
  7480. },
  7481. },
  7482. [
  7483. {
  7484. name: "Normal",
  7485. height: math.unit(2.35, "meters")
  7486. },
  7487. {
  7488. name: "Macro",
  7489. height: math.unit(60, "meters"),
  7490. default: true
  7491. },
  7492. {
  7493. name: "Megamacro",
  7494. height: math.unit(10000, "kilometers")
  7495. },
  7496. ]
  7497. ))
  7498. characterMakers.push(() => makeCharacter(
  7499. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7500. {
  7501. front: {
  7502. height: math.unit(7, "feet"),
  7503. weight: math.unit(250, "lbs"),
  7504. name: "Front",
  7505. image: {
  7506. source: "./media/characters/archy/front.svg"
  7507. }
  7508. }
  7509. },
  7510. [
  7511. {
  7512. name: "Micro",
  7513. height: math.unit(1, "inch")
  7514. },
  7515. {
  7516. name: "Shorty",
  7517. height: math.unit(5, "feet")
  7518. },
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(7, "feet")
  7522. },
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(600, "meters"),
  7526. default: true
  7527. },
  7528. {
  7529. name: "Megamacro",
  7530. height: math.unit(1, "mile")
  7531. },
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7536. {
  7537. front: {
  7538. height: math.unit(1.65, "meters"),
  7539. weight: math.unit(74, "kg"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/berri/front.svg",
  7543. extra: 857 / 837,
  7544. bottom: 18 / 877
  7545. }
  7546. },
  7547. bum: {
  7548. height: math.unit(1.46, "feet"),
  7549. name: "Bum",
  7550. image: {
  7551. source: "./media/characters/berri/bum.svg"
  7552. }
  7553. },
  7554. mouth: {
  7555. height: math.unit(0.44, "feet"),
  7556. name: "Mouth",
  7557. image: {
  7558. source: "./media/characters/berri/mouth.svg"
  7559. }
  7560. },
  7561. paw: {
  7562. height: math.unit(0.826, "feet"),
  7563. name: "Paw",
  7564. image: {
  7565. source: "./media/characters/berri/paw.svg"
  7566. }
  7567. },
  7568. },
  7569. [
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(1.65, "meters")
  7573. },
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(60, "m"),
  7577. default: true
  7578. },
  7579. {
  7580. name: "Megamacro",
  7581. height: math.unit(9.213, "km")
  7582. },
  7583. {
  7584. name: "Planet Eater",
  7585. height: math.unit(489, "megameters")
  7586. },
  7587. {
  7588. name: "Teramacro",
  7589. height: math.unit(2471635000000, "meters")
  7590. },
  7591. {
  7592. name: "Examacro",
  7593. height: math.unit(8.0624e+26, "meters")
  7594. }
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7599. {
  7600. front: {
  7601. height: math.unit(1.72, "meters"),
  7602. weight: math.unit(68, "kg"),
  7603. name: "Front",
  7604. image: {
  7605. source: "./media/characters/lexi/front.svg"
  7606. }
  7607. }
  7608. },
  7609. [
  7610. {
  7611. name: "Very Smol",
  7612. height: math.unit(10, "mm")
  7613. },
  7614. {
  7615. name: "Micro",
  7616. height: math.unit(6.8, "cm"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Normal",
  7621. height: math.unit(1.72, "m")
  7622. }
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7627. {
  7628. front: {
  7629. height: math.unit(1.69, "meters"),
  7630. weight: math.unit(68, "kg"),
  7631. name: "Front",
  7632. image: {
  7633. source: "./media/characters/martin/front.svg",
  7634. extra: 596 / 581
  7635. }
  7636. }
  7637. },
  7638. [
  7639. {
  7640. name: "Micro",
  7641. height: math.unit(6.85, "cm"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "Normal",
  7646. height: math.unit(1.69, "m")
  7647. }
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7652. {
  7653. front: {
  7654. height: math.unit(1.69, "meters"),
  7655. weight: math.unit(68, "kg"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/juno/front.svg"
  7659. }
  7660. }
  7661. },
  7662. [
  7663. {
  7664. name: "Micro",
  7665. height: math.unit(7, "cm")
  7666. },
  7667. {
  7668. name: "Normal",
  7669. height: math.unit(1.89, "m")
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(353, "meters"),
  7674. default: true
  7675. }
  7676. ]
  7677. ))
  7678. characterMakers.push(() => makeCharacter(
  7679. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7680. {
  7681. front: {
  7682. height: math.unit(1.93, "meters"),
  7683. weight: math.unit(83, "kg"),
  7684. name: "Front",
  7685. image: {
  7686. source: "./media/characters/samantha/front.svg"
  7687. }
  7688. },
  7689. frontClothed: {
  7690. height: math.unit(1.93, "meters"),
  7691. weight: math.unit(83, "kg"),
  7692. name: "Front (Clothed)",
  7693. image: {
  7694. source: "./media/characters/samantha/front-clothed.svg"
  7695. }
  7696. },
  7697. back: {
  7698. height: math.unit(1.93, "meters"),
  7699. weight: math.unit(83, "kg"),
  7700. name: "Back",
  7701. image: {
  7702. source: "./media/characters/samantha/back.svg"
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Normal",
  7709. height: math.unit(1.93, "m")
  7710. },
  7711. {
  7712. name: "Macro",
  7713. height: math.unit(74, "meters"),
  7714. default: true
  7715. },
  7716. {
  7717. name: "Macro+",
  7718. height: math.unit(223, "meters"),
  7719. },
  7720. {
  7721. name: "Megamacro",
  7722. height: math.unit(8381, "meters"),
  7723. },
  7724. {
  7725. name: "Megamacro+",
  7726. height: math.unit(12000, "kilometers")
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7732. {
  7733. front: {
  7734. height: math.unit(1.92, "meters"),
  7735. weight: math.unit(80, "kg"),
  7736. name: "Front",
  7737. image: {
  7738. source: "./media/characters/dr-clay/front.svg"
  7739. }
  7740. },
  7741. frontClothed: {
  7742. height: math.unit(1.92, "meters"),
  7743. weight: math.unit(80, "kg"),
  7744. name: "Front (Clothed)",
  7745. image: {
  7746. source: "./media/characters/dr-clay/front-clothed.svg"
  7747. }
  7748. }
  7749. },
  7750. [
  7751. {
  7752. name: "Normal",
  7753. height: math.unit(1.92, "m")
  7754. },
  7755. {
  7756. name: "Macro",
  7757. height: math.unit(214, "meters"),
  7758. default: true
  7759. },
  7760. {
  7761. name: "Macro+",
  7762. height: math.unit(12.237, "meters"),
  7763. },
  7764. {
  7765. name: "Megamacro",
  7766. height: math.unit(557, "megameters"),
  7767. },
  7768. {
  7769. name: "Unimaginable",
  7770. height: math.unit(120e9, "lightyears")
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7776. {
  7777. front: {
  7778. height: math.unit(2, "meters"),
  7779. weight: math.unit(80, "kg"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7783. }
  7784. }
  7785. },
  7786. [
  7787. {
  7788. name: "Teramacro",
  7789. height: math.unit(500000, "lightyears"),
  7790. default: true
  7791. },
  7792. ]
  7793. ))
  7794. characterMakers.push(() => makeCharacter(
  7795. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7796. {
  7797. crux: {
  7798. height: math.unit(2, "meters"),
  7799. weight: math.unit(150, "kg"),
  7800. name: "Crux",
  7801. image: {
  7802. source: "./media/characters/vemus/crux.svg",
  7803. extra: 1074/936,
  7804. bottom: 23/1097
  7805. }
  7806. },
  7807. skunkTanuki: {
  7808. height: math.unit(2, "meters"),
  7809. weight: math.unit(150, "kg"),
  7810. name: "Skunk-Tanuki",
  7811. image: {
  7812. source: "./media/characters/vemus/skunk-tanuki.svg",
  7813. extra: 926/893,
  7814. bottom: 20/946
  7815. }
  7816. },
  7817. },
  7818. [
  7819. {
  7820. name: "Normal",
  7821. height: math.unit(4, "meters"),
  7822. default: true
  7823. },
  7824. {
  7825. name: "Big",
  7826. height: math.unit(8, "meters")
  7827. },
  7828. {
  7829. name: "Macro",
  7830. height: math.unit(100, "meters")
  7831. },
  7832. {
  7833. name: "Macro+",
  7834. height: math.unit(1500, "meters")
  7835. },
  7836. {
  7837. name: "Stellar",
  7838. height: math.unit(14e8, "meters")
  7839. },
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7844. {
  7845. front: {
  7846. height: math.unit(2, "meters"),
  7847. weight: math.unit(70, "kg"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/beherit/front.svg",
  7851. extra: 1234/1109,
  7852. bottom: 55/1289
  7853. }
  7854. }
  7855. },
  7856. [
  7857. {
  7858. name: "Normal",
  7859. height: math.unit(6, "feet")
  7860. },
  7861. {
  7862. name: "Lorg",
  7863. height: math.unit(25, "feet"),
  7864. default: true
  7865. },
  7866. {
  7867. name: "Lorger",
  7868. height: math.unit(75, "feet")
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(200, "meters")
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(2, "meters"),
  7881. weight: math.unit(150, "kg"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/everett/front.svg",
  7885. extra: 1017/866,
  7886. bottom: 86/1103
  7887. }
  7888. },
  7889. paw: {
  7890. height: math.unit(2 / 3.6, "meters"),
  7891. name: "Paw",
  7892. image: {
  7893. source: "./media/characters/everett/paw.svg"
  7894. }
  7895. },
  7896. },
  7897. [
  7898. {
  7899. name: "Normal",
  7900. height: math.unit(15, "feet"),
  7901. default: true
  7902. },
  7903. {
  7904. name: "Lorg",
  7905. height: math.unit(70, "feet"),
  7906. default: true
  7907. },
  7908. {
  7909. name: "Lorger",
  7910. height: math.unit(250, "feet")
  7911. },
  7912. {
  7913. name: "Macro",
  7914. height: math.unit(500, "meters")
  7915. },
  7916. ]
  7917. ))
  7918. characterMakers.push(() => makeCharacter(
  7919. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7920. {
  7921. front: {
  7922. height: math.unit(2, "meters"),
  7923. weight: math.unit(86, "kg"),
  7924. name: "Front",
  7925. image: {
  7926. source: "./media/characters/rose/front.svg",
  7927. extra: 1785/1636,
  7928. bottom: 30/1815
  7929. },
  7930. form: "liom",
  7931. default: true
  7932. },
  7933. frontSporty: {
  7934. height: math.unit(2, "meters"),
  7935. weight: math.unit(86, "kg"),
  7936. name: "Front (Sporty)",
  7937. image: {
  7938. source: "./media/characters/rose/front-sporty.svg",
  7939. extra: 350/335,
  7940. bottom: 10/360
  7941. },
  7942. form: "liom"
  7943. },
  7944. frontAlt: {
  7945. height: math.unit(1.6, "meters"),
  7946. weight: math.unit(86, "kg"),
  7947. name: "Front (Alt)",
  7948. image: {
  7949. source: "./media/characters/rose/front-alt.svg",
  7950. extra: 299/283,
  7951. bottom: 3/302
  7952. },
  7953. form: "liom"
  7954. },
  7955. plush: {
  7956. height: math.unit(2, "meters"),
  7957. weight: math.unit(86/3, "kg"),
  7958. name: "Plush",
  7959. image: {
  7960. source: "./media/characters/rose/plush.svg",
  7961. extra: 361/337,
  7962. bottom: 11/372
  7963. },
  7964. form: "plush",
  7965. default: true
  7966. },
  7967. faeStanding: {
  7968. height: math.unit(10, "cm"),
  7969. weight: math.unit(10, "grams"),
  7970. name: "Standing",
  7971. image: {
  7972. source: "./media/characters/rose/fae-standing.svg",
  7973. extra: 1189/1060,
  7974. bottom: 27/1216
  7975. },
  7976. form: "fae",
  7977. default: true
  7978. },
  7979. faeSitting: {
  7980. height: math.unit(5, "cm"),
  7981. weight: math.unit(10, "grams"),
  7982. name: "Sitting",
  7983. image: {
  7984. source: "./media/characters/rose/fae-sitting.svg",
  7985. extra: 737/577,
  7986. bottom: 356/1093
  7987. },
  7988. form: "fae"
  7989. },
  7990. faePaw: {
  7991. height: math.unit(1.35, "cm"),
  7992. name: "Paw",
  7993. image: {
  7994. source: "./media/characters/rose/fae-paw.svg"
  7995. },
  7996. form: "fae"
  7997. },
  7998. },
  7999. [
  8000. {
  8001. name: "True Micro",
  8002. height: math.unit(9, "cm"),
  8003. form: "liom"
  8004. },
  8005. {
  8006. name: "Micro",
  8007. height: math.unit(16, "cm"),
  8008. form: "liom"
  8009. },
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(1.85, "meters"),
  8013. default: true,
  8014. form: "liom"
  8015. },
  8016. {
  8017. name: "Mini-Macro",
  8018. height: math.unit(5, "meters"),
  8019. form: "liom"
  8020. },
  8021. {
  8022. name: "Macro",
  8023. height: math.unit(15, "meters"),
  8024. form: "liom"
  8025. },
  8026. {
  8027. name: "True Macro",
  8028. height: math.unit(40, "meters"),
  8029. form: "liom"
  8030. },
  8031. {
  8032. name: "City Scale",
  8033. height: math.unit(1, "km"),
  8034. form: "liom"
  8035. },
  8036. {
  8037. name: "Plushie",
  8038. height: math.unit(9, "cm"),
  8039. form: "plush",
  8040. default: true
  8041. },
  8042. {
  8043. name: "Fae",
  8044. height: math.unit(10, "cm"),
  8045. form: "fae",
  8046. default: true
  8047. },
  8048. ],
  8049. {
  8050. "liom": {
  8051. name: "Liom"
  8052. },
  8053. "plush": {
  8054. name: "Plush"
  8055. },
  8056. "fae": {
  8057. name: "Fae Fox",
  8058. default: true
  8059. }
  8060. }
  8061. ))
  8062. characterMakers.push(() => makeCharacter(
  8063. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8064. {
  8065. front: {
  8066. height: math.unit(2, "meters"),
  8067. weight: math.unit(350, "lbs"),
  8068. name: "Front",
  8069. image: {
  8070. source: "./media/characters/regal/front.svg"
  8071. }
  8072. },
  8073. back: {
  8074. height: math.unit(2, "meters"),
  8075. weight: math.unit(350, "lbs"),
  8076. name: "Back",
  8077. image: {
  8078. source: "./media/characters/regal/back.svg"
  8079. }
  8080. },
  8081. },
  8082. [
  8083. {
  8084. name: "Macro",
  8085. height: math.unit(350, "feet"),
  8086. default: true
  8087. }
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(4 + 11 / 12, "feet"),
  8095. weight: math.unit(100, "lbs"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/opal/front.svg"
  8099. }
  8100. },
  8101. frontAlt: {
  8102. height: math.unit(4 + 11 / 12, "feet"),
  8103. weight: math.unit(100, "lbs"),
  8104. name: "Front (Alt)",
  8105. image: {
  8106. source: "./media/characters/opal/front-alt.svg"
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Small",
  8113. height: math.unit(4 + 11 / 12, "feet")
  8114. },
  8115. {
  8116. name: "Normal",
  8117. height: math.unit(20, "feet"),
  8118. default: true
  8119. },
  8120. {
  8121. name: "Macro",
  8122. height: math.unit(120, "feet")
  8123. },
  8124. {
  8125. name: "Megamacro",
  8126. height: math.unit(80, "miles")
  8127. },
  8128. {
  8129. name: "True Size",
  8130. height: math.unit(100000, "lightyears")
  8131. },
  8132. ]
  8133. ))
  8134. characterMakers.push(() => makeCharacter(
  8135. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8136. {
  8137. front: {
  8138. height: math.unit(6, "feet"),
  8139. weight: math.unit(200, "lbs"),
  8140. name: "Front",
  8141. image: {
  8142. source: "./media/characters/vector-wuff/front.svg"
  8143. }
  8144. }
  8145. },
  8146. [
  8147. {
  8148. name: "Normal",
  8149. height: math.unit(2.8, "meters")
  8150. },
  8151. {
  8152. name: "Macro",
  8153. height: math.unit(450, "meters"),
  8154. default: true
  8155. },
  8156. {
  8157. name: "Megamacro",
  8158. height: math.unit(15, "kilometers")
  8159. }
  8160. ]
  8161. ))
  8162. characterMakers.push(() => makeCharacter(
  8163. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8164. {
  8165. front: {
  8166. height: math.unit(6, "feet"),
  8167. weight: math.unit(256, "lbs"),
  8168. name: "Front",
  8169. image: {
  8170. source: "./media/characters/dannik/front.svg"
  8171. }
  8172. }
  8173. },
  8174. [
  8175. {
  8176. name: "Macro",
  8177. height: math.unit(69.57, "meters"),
  8178. default: true
  8179. },
  8180. ]
  8181. ))
  8182. characterMakers.push(() => makeCharacter(
  8183. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8184. {
  8185. front: {
  8186. height: math.unit(6, "feet"),
  8187. weight: math.unit(120, "lbs"),
  8188. name: "Front",
  8189. image: {
  8190. source: "./media/characters/azura-saharah/front.svg"
  8191. }
  8192. },
  8193. back: {
  8194. height: math.unit(6, "feet"),
  8195. weight: math.unit(120, "lbs"),
  8196. name: "Back",
  8197. image: {
  8198. source: "./media/characters/azura-saharah/back.svg"
  8199. }
  8200. },
  8201. },
  8202. [
  8203. {
  8204. name: "Macro",
  8205. height: math.unit(100, "feet"),
  8206. default: true
  8207. },
  8208. ]
  8209. ))
  8210. characterMakers.push(() => makeCharacter(
  8211. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8212. {
  8213. side: {
  8214. height: math.unit(5 + 4 / 12, "feet"),
  8215. weight: math.unit(163, "lbs"),
  8216. name: "Side",
  8217. image: {
  8218. source: "./media/characters/kennedy/side.svg"
  8219. }
  8220. }
  8221. },
  8222. [
  8223. {
  8224. name: "Standard Doggo",
  8225. height: math.unit(5 + 4 / 12, "feet")
  8226. },
  8227. {
  8228. name: "Big Doggo",
  8229. height: math.unit(25 + 3 / 12, "feet"),
  8230. default: true
  8231. },
  8232. ]
  8233. ))
  8234. characterMakers.push(() => makeCharacter(
  8235. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8236. {
  8237. front: {
  8238. height: math.unit(5 + 5/12, "feet"),
  8239. weight: math.unit(100, "lbs"),
  8240. name: "Front",
  8241. image: {
  8242. source: "./media/characters/odios-de-lunar/front.svg",
  8243. extra: 1468/1323,
  8244. bottom: 22/1490
  8245. }
  8246. }
  8247. },
  8248. [
  8249. {
  8250. name: "Micro",
  8251. height: math.unit(3, "inches")
  8252. },
  8253. {
  8254. name: "Normal",
  8255. height: math.unit(5.5, "feet"),
  8256. default: true
  8257. },
  8258. {
  8259. name: "Macro",
  8260. height: math.unit(100, "feet")
  8261. },
  8262. ]
  8263. ))
  8264. characterMakers.push(() => makeCharacter(
  8265. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8266. {
  8267. back: {
  8268. height: math.unit(6, "feet"),
  8269. weight: math.unit(220, "lbs"),
  8270. name: "Back",
  8271. image: {
  8272. source: "./media/characters/mandake/back.svg"
  8273. }
  8274. }
  8275. },
  8276. [
  8277. {
  8278. name: "Normal",
  8279. height: math.unit(7, "feet"),
  8280. default: true
  8281. },
  8282. {
  8283. name: "Macro",
  8284. height: math.unit(78, "feet")
  8285. },
  8286. {
  8287. name: "Macro+",
  8288. height: math.unit(300, "meters")
  8289. },
  8290. {
  8291. name: "Macro++",
  8292. height: math.unit(2400, "feet")
  8293. },
  8294. {
  8295. name: "Megamacro",
  8296. height: math.unit(5167, "meters")
  8297. },
  8298. {
  8299. name: "Gigamacro",
  8300. height: math.unit(41769, "miles")
  8301. },
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(6, "feet"),
  8309. weight: math.unit(120, "lbs"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/yozey/front.svg"
  8313. }
  8314. },
  8315. frontAlt: {
  8316. height: math.unit(6, "feet"),
  8317. weight: math.unit(120, "lbs"),
  8318. name: "Front (Alt)",
  8319. image: {
  8320. source: "./media/characters/yozey/front-alt.svg"
  8321. }
  8322. },
  8323. side: {
  8324. height: math.unit(6, "feet"),
  8325. weight: math.unit(120, "lbs"),
  8326. name: "Side",
  8327. image: {
  8328. source: "./media/characters/yozey/side.svg"
  8329. }
  8330. },
  8331. },
  8332. [
  8333. {
  8334. name: "Micro",
  8335. height: math.unit(3, "inches"),
  8336. default: true
  8337. },
  8338. {
  8339. name: "Normal",
  8340. height: math.unit(6, "feet")
  8341. }
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8346. {
  8347. front: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(103, "lbs"),
  8350. name: "Front",
  8351. image: {
  8352. source: "./media/characters/valeska-voss/front.svg"
  8353. }
  8354. }
  8355. },
  8356. [
  8357. {
  8358. name: "Mini-Sized Sub",
  8359. height: math.unit(3.1, "inches")
  8360. },
  8361. {
  8362. name: "Mid-Sized Sub",
  8363. height: math.unit(6.2, "inches")
  8364. },
  8365. {
  8366. name: "Full-Sized Sub",
  8367. height: math.unit(9.3, "inches")
  8368. },
  8369. {
  8370. name: "Normal",
  8371. height: math.unit(5 + 2 / 12, "foot"),
  8372. default: true
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(6, "feet"),
  8381. weight: math.unit(160, "lbs"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/gene-zeta/front.svg",
  8385. extra: 3006 / 2826,
  8386. bottom: 182 / 3188
  8387. }
  8388. }
  8389. },
  8390. [
  8391. {
  8392. name: "Micro",
  8393. height: math.unit(6, "inches")
  8394. },
  8395. {
  8396. name: "Normal",
  8397. height: math.unit(5 + 11 / 12, "foot"),
  8398. default: true
  8399. },
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(140, "feet")
  8403. },
  8404. {
  8405. name: "Supercharged",
  8406. height: math.unit(2500, "feet")
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(6, "feet"),
  8415. weight: math.unit(350, "lbs"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/razinox/front.svg",
  8419. extra: 1686 / 1548,
  8420. bottom: 28.2 / 1868
  8421. }
  8422. },
  8423. back: {
  8424. height: math.unit(6, "feet"),
  8425. weight: math.unit(350, "lbs"),
  8426. name: "Back",
  8427. image: {
  8428. source: "./media/characters/razinox/back.svg",
  8429. extra: 1660 / 1590,
  8430. bottom: 15 / 1665
  8431. }
  8432. },
  8433. },
  8434. [
  8435. {
  8436. name: "Normal",
  8437. height: math.unit(10 + 8 / 12, "foot")
  8438. },
  8439. {
  8440. name: "Minimacro",
  8441. height: math.unit(15, "foot")
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(60, "foot"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "Megamacro",
  8450. height: math.unit(5, "miles")
  8451. },
  8452. {
  8453. name: "Gigamacro",
  8454. height: math.unit(6000, "miles")
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8460. {
  8461. front: {
  8462. height: math.unit(6, "feet"),
  8463. weight: math.unit(150, "lbs"),
  8464. name: "Front",
  8465. image: {
  8466. source: "./media/characters/cobalt/front.svg"
  8467. }
  8468. }
  8469. },
  8470. [
  8471. {
  8472. name: "Normal",
  8473. height: math.unit(8 + 1 / 12, "foot")
  8474. },
  8475. {
  8476. name: "Macro",
  8477. height: math.unit(111, "foot"),
  8478. default: true
  8479. },
  8480. {
  8481. name: "Supracosmic",
  8482. height: math.unit(1e42, "feet")
  8483. },
  8484. ]
  8485. ))
  8486. characterMakers.push(() => makeCharacter(
  8487. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8488. {
  8489. front: {
  8490. height: math.unit(5, "inches"),
  8491. name: "Front",
  8492. image: {
  8493. source: "./media/characters/amanda/front.svg",
  8494. extra: 926/791,
  8495. bottom: 38/964
  8496. }
  8497. },
  8498. back: {
  8499. height: math.unit(5, "inches"),
  8500. name: "Back",
  8501. image: {
  8502. source: "./media/characters/amanda/back.svg",
  8503. extra: 909/805,
  8504. bottom: 43/952
  8505. }
  8506. },
  8507. },
  8508. [
  8509. {
  8510. name: "Micro",
  8511. height: math.unit(5, "inches"),
  8512. default: true
  8513. },
  8514. ]
  8515. ))
  8516. characterMakers.push(() => makeCharacter(
  8517. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8518. {
  8519. front: {
  8520. height: math.unit(2.75, "meters"),
  8521. weight: math.unit(1200, "lb"),
  8522. name: "Front",
  8523. image: {
  8524. source: "./media/characters/teal/front.svg",
  8525. extra: 2463 / 2320,
  8526. bottom: 166 / 2629
  8527. }
  8528. },
  8529. back: {
  8530. height: math.unit(2.75, "meters"),
  8531. weight: math.unit(1200, "lb"),
  8532. name: "Back",
  8533. image: {
  8534. source: "./media/characters/teal/back.svg",
  8535. extra: 2580 / 2489,
  8536. bottom: 151 / 2731
  8537. }
  8538. },
  8539. sitting: {
  8540. height: math.unit(1.9, "meters"),
  8541. weight: math.unit(1200, "lb"),
  8542. name: "Sitting",
  8543. image: {
  8544. source: "./media/characters/teal/sitting.svg",
  8545. extra: 623 / 590,
  8546. bottom: 121 / 744
  8547. }
  8548. },
  8549. standing: {
  8550. height: math.unit(2.75, "meters"),
  8551. weight: math.unit(1200, "lb"),
  8552. name: "Standing",
  8553. image: {
  8554. source: "./media/characters/teal/standing.svg",
  8555. extra: 923 / 893,
  8556. bottom: 60 / 983
  8557. }
  8558. },
  8559. stretching: {
  8560. height: math.unit(3.65, "meters"),
  8561. weight: math.unit(1200, "lb"),
  8562. name: "Stretching",
  8563. image: {
  8564. source: "./media/characters/teal/stretching.svg",
  8565. extra: 1276 / 1244,
  8566. bottom: 0 / 1276
  8567. }
  8568. },
  8569. legged: {
  8570. height: math.unit(1.3, "meters"),
  8571. weight: math.unit(100, "lb"),
  8572. name: "Legged",
  8573. image: {
  8574. source: "./media/characters/teal/legged.svg",
  8575. extra: 462 / 437,
  8576. bottom: 24 / 486
  8577. }
  8578. },
  8579. naga: {
  8580. height: math.unit(5.4, "meters"),
  8581. weight: math.unit(4000, "lb"),
  8582. name: "Naga",
  8583. image: {
  8584. source: "./media/characters/teal/naga.svg",
  8585. extra: 1902 / 1858,
  8586. bottom: 0 / 1902
  8587. }
  8588. },
  8589. hand: {
  8590. height: math.unit(0.52, "meters"),
  8591. name: "Hand",
  8592. image: {
  8593. source: "./media/characters/teal/hand.svg"
  8594. }
  8595. },
  8596. maw: {
  8597. height: math.unit(0.43, "meters"),
  8598. name: "Maw",
  8599. image: {
  8600. source: "./media/characters/teal/maw.svg"
  8601. }
  8602. },
  8603. slit: {
  8604. height: math.unit(0.25, "meters"),
  8605. name: "Slit",
  8606. image: {
  8607. source: "./media/characters/teal/slit.svg"
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Normal",
  8614. height: math.unit(2.75, "meters"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Macro",
  8619. height: math.unit(300, "feet")
  8620. },
  8621. {
  8622. name: "Macro+",
  8623. height: math.unit(2000, "feet")
  8624. },
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8629. {
  8630. frontCat: {
  8631. height: math.unit(6, "feet"),
  8632. weight: math.unit(180, "lbs"),
  8633. name: "Front (Cat)",
  8634. image: {
  8635. source: "./media/characters/ravin-amulet/front-cat.svg"
  8636. }
  8637. },
  8638. frontCatAlt: {
  8639. height: math.unit(6, "feet"),
  8640. weight: math.unit(180, "lbs"),
  8641. name: "Front (Alt, Cat)",
  8642. image: {
  8643. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8644. }
  8645. },
  8646. frontWerewolf: {
  8647. height: math.unit(6 * 1.2, "feet"),
  8648. weight: math.unit(225, "lbs"),
  8649. name: "Front (Werewolf)",
  8650. image: {
  8651. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8652. }
  8653. },
  8654. backWerewolf: {
  8655. height: math.unit(6 * 1.2, "feet"),
  8656. weight: math.unit(225, "lbs"),
  8657. name: "Back (Werewolf)",
  8658. image: {
  8659. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Nano",
  8666. height: math.unit(1, "micrometer")
  8667. },
  8668. {
  8669. name: "Micro",
  8670. height: math.unit(1, "inch")
  8671. },
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(6, "feet"),
  8675. default: true
  8676. },
  8677. {
  8678. name: "Macro",
  8679. height: math.unit(60, "feet")
  8680. }
  8681. ]
  8682. ))
  8683. characterMakers.push(() => makeCharacter(
  8684. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8685. {
  8686. front: {
  8687. height: math.unit(6, "feet"),
  8688. weight: math.unit(165, "lbs"),
  8689. name: "Front",
  8690. image: {
  8691. source: "./media/characters/fluoresce/front.svg"
  8692. }
  8693. }
  8694. },
  8695. [
  8696. {
  8697. name: "Micro",
  8698. height: math.unit(6, "cm")
  8699. },
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(5 + 7 / 12, "feet"),
  8703. default: true
  8704. },
  8705. {
  8706. name: "Macro",
  8707. height: math.unit(56, "feet")
  8708. },
  8709. {
  8710. name: "Megamacro",
  8711. height: math.unit(1.9, "miles")
  8712. },
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(9 + 6 / 12, "feet"),
  8720. weight: math.unit(523, "lbs"),
  8721. name: "Side",
  8722. image: {
  8723. source: "./media/characters/aurora/side.svg",
  8724. extra: 474/393,
  8725. bottom: 5/479
  8726. }
  8727. }
  8728. },
  8729. [
  8730. {
  8731. name: "Normal",
  8732. height: math.unit(9 + 6 / 12, "feet")
  8733. },
  8734. {
  8735. name: "Macro",
  8736. height: math.unit(96, "feet"),
  8737. default: true
  8738. },
  8739. {
  8740. name: "Macro+",
  8741. height: math.unit(243, "feet")
  8742. },
  8743. ]
  8744. ))
  8745. characterMakers.push(() => makeCharacter(
  8746. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8747. {
  8748. front: {
  8749. height: math.unit(194, "cm"),
  8750. weight: math.unit(90, "kg"),
  8751. name: "Front",
  8752. image: {
  8753. source: "./media/characters/ranek/front.svg",
  8754. extra: 1862/1791,
  8755. bottom: 80/1942
  8756. }
  8757. },
  8758. back: {
  8759. height: math.unit(194, "cm"),
  8760. weight: math.unit(90, "kg"),
  8761. name: "Back",
  8762. image: {
  8763. source: "./media/characters/ranek/back.svg",
  8764. extra: 1853/1787,
  8765. bottom: 74/1927
  8766. }
  8767. },
  8768. feral: {
  8769. height: math.unit(30, "cm"),
  8770. weight: math.unit(1.6, "lbs"),
  8771. name: "Feral",
  8772. image: {
  8773. source: "./media/characters/ranek/feral.svg",
  8774. extra: 990/631,
  8775. bottom: 29/1019
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Normal",
  8782. height: math.unit(194, "cm"),
  8783. default: true
  8784. },
  8785. {
  8786. name: "Macro",
  8787. height: math.unit(100, "meters")
  8788. },
  8789. ]
  8790. ))
  8791. characterMakers.push(() => makeCharacter(
  8792. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8793. {
  8794. front: {
  8795. height: math.unit(5 + 6 / 12, "feet"),
  8796. weight: math.unit(153, "lbs"),
  8797. name: "Front",
  8798. image: {
  8799. source: "./media/characters/andrew-cooper/front.svg"
  8800. }
  8801. },
  8802. },
  8803. [
  8804. {
  8805. name: "Nano",
  8806. height: math.unit(1, "mm")
  8807. },
  8808. {
  8809. name: "Micro",
  8810. height: math.unit(2, "inches")
  8811. },
  8812. {
  8813. name: "Normal",
  8814. height: math.unit(5 + 6 / 12, "feet"),
  8815. default: true
  8816. }
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(6, "feet"),
  8824. weight: math.unit(180, "lbs"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/akane-sato/front.svg",
  8828. extra: 1219 / 1140
  8829. }
  8830. },
  8831. back: {
  8832. height: math.unit(6, "feet"),
  8833. weight: math.unit(180, "lbs"),
  8834. name: "Back",
  8835. image: {
  8836. source: "./media/characters/akane-sato/back.svg",
  8837. extra: 1219 / 1170
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Normal",
  8844. height: math.unit(2.5, "meters")
  8845. },
  8846. {
  8847. name: "Macro",
  8848. height: math.unit(250, "meters"),
  8849. default: true
  8850. },
  8851. {
  8852. name: "Megamacro",
  8853. height: math.unit(25, "km")
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8859. {
  8860. front: {
  8861. height: math.unit(6, "feet"),
  8862. weight: math.unit(65, "kg"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/rook/front.svg",
  8866. extra: 960 / 950
  8867. }
  8868. }
  8869. },
  8870. [
  8871. {
  8872. name: "Normal",
  8873. height: math.unit(8.8, "feet")
  8874. },
  8875. {
  8876. name: "Macro",
  8877. height: math.unit(88, "feet"),
  8878. default: true
  8879. },
  8880. {
  8881. name: "Megamacro",
  8882. height: math.unit(8, "miles")
  8883. },
  8884. ]
  8885. ))
  8886. characterMakers.push(() => makeCharacter(
  8887. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8888. {
  8889. front: {
  8890. height: math.unit(12 + 2 / 12, "feet"),
  8891. weight: math.unit(808, "lbs"),
  8892. name: "Front",
  8893. image: {
  8894. source: "./media/characters/prodigy/front.svg"
  8895. }
  8896. }
  8897. },
  8898. [
  8899. {
  8900. name: "Normal",
  8901. height: math.unit(12 + 2 / 12, "feet"),
  8902. default: true
  8903. },
  8904. {
  8905. name: "Macro",
  8906. height: math.unit(143, "feet")
  8907. },
  8908. {
  8909. name: "Macro+",
  8910. height: math.unit(400, "feet")
  8911. },
  8912. ]
  8913. ))
  8914. characterMakers.push(() => makeCharacter(
  8915. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8916. {
  8917. front: {
  8918. height: math.unit(6, "feet"),
  8919. weight: math.unit(225, "lbs"),
  8920. name: "Front",
  8921. image: {
  8922. source: "./media/characters/daniel/front.svg"
  8923. }
  8924. },
  8925. leaning: {
  8926. height: math.unit(6, "feet"),
  8927. weight: math.unit(225, "lbs"),
  8928. name: "Leaning",
  8929. image: {
  8930. source: "./media/characters/daniel/leaning.svg"
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Macro",
  8937. height: math.unit(1000, "feet"),
  8938. default: true
  8939. },
  8940. ]
  8941. ))
  8942. characterMakers.push(() => makeCharacter(
  8943. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8944. {
  8945. front: {
  8946. height: math.unit(6, "feet"),
  8947. weight: math.unit(88, "lbs"),
  8948. name: "Front",
  8949. image: {
  8950. source: "./media/characters/chiros/front.svg",
  8951. extra: 306 / 226
  8952. }
  8953. },
  8954. side: {
  8955. height: math.unit(6, "feet"),
  8956. weight: math.unit(88, "lbs"),
  8957. name: "Side",
  8958. image: {
  8959. source: "./media/characters/chiros/side.svg",
  8960. extra: 306 / 226
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(6, "cm"),
  8968. default: true
  8969. },
  8970. ]
  8971. ))
  8972. characterMakers.push(() => makeCharacter(
  8973. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8974. {
  8975. front: {
  8976. height: math.unit(6, "feet"),
  8977. weight: math.unit(100, "lbs"),
  8978. name: "Front",
  8979. image: {
  8980. source: "./media/characters/selka/front.svg",
  8981. extra: 947 / 887
  8982. }
  8983. }
  8984. },
  8985. [
  8986. {
  8987. name: "Normal",
  8988. height: math.unit(5, "cm"),
  8989. default: true
  8990. },
  8991. ]
  8992. ))
  8993. characterMakers.push(() => makeCharacter(
  8994. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8995. {
  8996. front: {
  8997. height: math.unit(8 + 3 / 12, "feet"),
  8998. weight: math.unit(424, "lbs"),
  8999. name: "Front",
  9000. image: {
  9001. source: "./media/characters/verin/front.svg",
  9002. extra: 1845 / 1550
  9003. }
  9004. },
  9005. frontArmored: {
  9006. height: math.unit(8 + 3 / 12, "feet"),
  9007. weight: math.unit(424, "lbs"),
  9008. name: "Front (Armored)",
  9009. image: {
  9010. source: "./media/characters/verin/front-armor.svg",
  9011. extra: 1845 / 1550,
  9012. bottom: 0.01
  9013. }
  9014. },
  9015. back: {
  9016. height: math.unit(8 + 3 / 12, "feet"),
  9017. weight: math.unit(424, "lbs"),
  9018. name: "Back",
  9019. image: {
  9020. source: "./media/characters/verin/back.svg",
  9021. bottom: 0.1,
  9022. extra: 1
  9023. }
  9024. },
  9025. foot: {
  9026. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9027. name: "Foot",
  9028. image: {
  9029. source: "./media/characters/verin/foot.svg"
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(8 + 3 / 12, "feet")
  9037. },
  9038. {
  9039. name: "Minimacro",
  9040. height: math.unit(21, "feet"),
  9041. default: true
  9042. },
  9043. {
  9044. name: "Macro",
  9045. height: math.unit(626, "feet")
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9051. {
  9052. front: {
  9053. height: math.unit(2.718, "meters"),
  9054. weight: math.unit(150, "lbs"),
  9055. name: "Front",
  9056. image: {
  9057. source: "./media/characters/sovrim-terraquian/front.svg",
  9058. extra: 1752/1689,
  9059. bottom: 36/1788
  9060. }
  9061. },
  9062. back: {
  9063. height: math.unit(2.718, "meters"),
  9064. weight: math.unit(150, "lbs"),
  9065. name: "Back",
  9066. image: {
  9067. source: "./media/characters/sovrim-terraquian/back.svg",
  9068. extra: 1698/1657,
  9069. bottom: 58/1756
  9070. }
  9071. },
  9072. tongue: {
  9073. height: math.unit(2.865, "feet"),
  9074. name: "Tongue",
  9075. image: {
  9076. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9077. }
  9078. },
  9079. hand: {
  9080. height: math.unit(1.61, "feet"),
  9081. name: "Hand",
  9082. image: {
  9083. source: "./media/characters/sovrim-terraquian/hand.svg"
  9084. }
  9085. },
  9086. foot: {
  9087. height: math.unit(1.05, "feet"),
  9088. name: "Foot",
  9089. image: {
  9090. source: "./media/characters/sovrim-terraquian/foot.svg"
  9091. }
  9092. },
  9093. footAlt: {
  9094. height: math.unit(0.88, "feet"),
  9095. name: "Foot (Alt)",
  9096. image: {
  9097. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9098. }
  9099. },
  9100. },
  9101. [
  9102. {
  9103. name: "Micro",
  9104. height: math.unit(2, "inches")
  9105. },
  9106. {
  9107. name: "Small",
  9108. height: math.unit(1, "meter")
  9109. },
  9110. {
  9111. name: "Normal",
  9112. height: math.unit(Math.E, "meters"),
  9113. default: true
  9114. },
  9115. {
  9116. name: "Macro",
  9117. height: math.unit(20, "meters")
  9118. },
  9119. {
  9120. name: "Macro+",
  9121. height: math.unit(400, "meters")
  9122. },
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9127. {
  9128. front: {
  9129. height: math.unit(7, "feet"),
  9130. weight: math.unit(489, "lbs"),
  9131. name: "Front",
  9132. image: {
  9133. source: "./media/characters/reece-silvermane/front.svg",
  9134. bottom: 0.02,
  9135. extra: 1
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Macro",
  9142. height: math.unit(1.5, "miles"),
  9143. default: true
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(6, "feet"),
  9152. weight: math.unit(78, "kg"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/kane/front.svg",
  9156. extra: 978 / 899
  9157. }
  9158. },
  9159. back: {
  9160. height: math.unit(6, "feet"),
  9161. weight: math.unit(78, "kg"),
  9162. name: "Back",
  9163. image: {
  9164. source: "./media/characters/kane/back.svg",
  9165. extra: 1966/1800,
  9166. bottom: 0/1966
  9167. }
  9168. },
  9169. head: {
  9170. height: math.unit(1.4, "feet"),
  9171. name: "Head",
  9172. image: {
  9173. source: "./media/characters/kane/head.svg"
  9174. }
  9175. },
  9176. },
  9177. [
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(2.1, "m"),
  9181. },
  9182. {
  9183. name: "Macro",
  9184. height: math.unit(1, "km"),
  9185. default: true
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9191. {
  9192. front: {
  9193. height: math.unit(6, "feet"),
  9194. weight: math.unit(200, "kg"),
  9195. name: "Front",
  9196. image: {
  9197. source: "./media/characters/tegon/front.svg",
  9198. bottom: 0.01,
  9199. extra: 1
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Micro",
  9206. height: math.unit(1, "inch")
  9207. },
  9208. {
  9209. name: "Normal",
  9210. height: math.unit(6 + 3 / 12, "feet"),
  9211. default: true
  9212. },
  9213. {
  9214. name: "Macro",
  9215. height: math.unit(300, "feet")
  9216. },
  9217. {
  9218. name: "Megamacro",
  9219. height: math.unit(69, "miles")
  9220. },
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9225. {
  9226. side: {
  9227. height: math.unit(6, "feet"),
  9228. weight: math.unit(2304, "lbs"),
  9229. name: "Side",
  9230. image: {
  9231. source: "./media/characters/arcturax/side.svg",
  9232. extra: 790 / 376,
  9233. bottom: 0.01
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(2, "inch")
  9241. },
  9242. {
  9243. name: "Normal",
  9244. height: math.unit(6, "feet")
  9245. },
  9246. {
  9247. name: "Macro",
  9248. height: math.unit(39, "feet"),
  9249. default: true
  9250. },
  9251. {
  9252. name: "Megamacro",
  9253. height: math.unit(7, "miles")
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(50, "lbs"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/sentri/front.svg",
  9266. extra: 1750 / 1570,
  9267. bottom: 0.025
  9268. }
  9269. },
  9270. frontAlt: {
  9271. height: math.unit(6, "feet"),
  9272. weight: math.unit(50, "lbs"),
  9273. name: "Front (Alt)",
  9274. image: {
  9275. source: "./media/characters/sentri/front-alt.svg",
  9276. extra: 1750 / 1570,
  9277. bottom: 0.025
  9278. }
  9279. },
  9280. },
  9281. [
  9282. {
  9283. name: "Normal",
  9284. height: math.unit(15, "feet"),
  9285. default: true
  9286. },
  9287. {
  9288. name: "Macro",
  9289. height: math.unit(2500, "feet")
  9290. }
  9291. ]
  9292. ))
  9293. characterMakers.push(() => makeCharacter(
  9294. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9295. {
  9296. front: {
  9297. height: math.unit(5 + 8 / 12, "feet"),
  9298. weight: math.unit(130, "lbs"),
  9299. name: "Front",
  9300. image: {
  9301. source: "./media/characters/corvin/front.svg",
  9302. extra: 1803 / 1629
  9303. }
  9304. },
  9305. frontShirt: {
  9306. height: math.unit(5 + 8 / 12, "feet"),
  9307. weight: math.unit(130, "lbs"),
  9308. name: "Front (Shirt)",
  9309. image: {
  9310. source: "./media/characters/corvin/front-shirt.svg",
  9311. extra: 1803 / 1629
  9312. }
  9313. },
  9314. frontPoncho: {
  9315. height: math.unit(5 + 8 / 12, "feet"),
  9316. weight: math.unit(130, "lbs"),
  9317. name: "Front (Poncho)",
  9318. image: {
  9319. source: "./media/characters/corvin/front-poncho.svg",
  9320. extra: 1803 / 1629
  9321. }
  9322. },
  9323. side: {
  9324. height: math.unit(5 + 8 / 12, "feet"),
  9325. weight: math.unit(130, "lbs"),
  9326. name: "Side",
  9327. image: {
  9328. source: "./media/characters/corvin/side.svg",
  9329. extra: 1012 / 945
  9330. }
  9331. },
  9332. back: {
  9333. height: math.unit(5 + 8 / 12, "feet"),
  9334. weight: math.unit(130, "lbs"),
  9335. name: "Back",
  9336. image: {
  9337. source: "./media/characters/corvin/back.svg",
  9338. extra: 1803 / 1629
  9339. }
  9340. },
  9341. },
  9342. [
  9343. {
  9344. name: "Micro",
  9345. height: math.unit(3, "inches")
  9346. },
  9347. {
  9348. name: "Normal",
  9349. height: math.unit(5 + 8 / 12, "feet")
  9350. },
  9351. {
  9352. name: "Macro",
  9353. height: math.unit(300, "feet"),
  9354. default: true
  9355. },
  9356. {
  9357. name: "Megamacro",
  9358. height: math.unit(500, "miles")
  9359. }
  9360. ]
  9361. ))
  9362. characterMakers.push(() => makeCharacter(
  9363. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9364. {
  9365. front: {
  9366. height: math.unit(6, "feet"),
  9367. weight: math.unit(135, "lbs"),
  9368. name: "Front",
  9369. image: {
  9370. source: "./media/characters/q/front.svg",
  9371. extra: 854 / 752,
  9372. bottom: 0.005
  9373. }
  9374. },
  9375. back: {
  9376. height: math.unit(6, "feet"),
  9377. weight: math.unit(130, "lbs"),
  9378. name: "Back",
  9379. image: {
  9380. source: "./media/characters/q/back.svg",
  9381. extra: 854 / 752
  9382. }
  9383. },
  9384. },
  9385. [
  9386. {
  9387. name: "Macro",
  9388. height: math.unit(90, "feet"),
  9389. default: true
  9390. },
  9391. {
  9392. name: "Extra Macro",
  9393. height: math.unit(300, "feet"),
  9394. },
  9395. {
  9396. name: "BIG WALF",
  9397. height: math.unit(750, "feet"),
  9398. },
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9403. {
  9404. front: {
  9405. height: math.unit(3, "feet"),
  9406. weight: math.unit(28, "lbs"),
  9407. name: "Front",
  9408. image: {
  9409. source: "./media/characters/citrine/front.svg"
  9410. }
  9411. }
  9412. },
  9413. [
  9414. {
  9415. name: "Normal",
  9416. height: math.unit(3, "feet"),
  9417. default: true
  9418. }
  9419. ]
  9420. ))
  9421. characterMakers.push(() => makeCharacter(
  9422. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9423. {
  9424. front: {
  9425. height: math.unit(14, "feet"),
  9426. weight: math.unit(1450, "kg"),
  9427. preyCapacity: math.unit(15, "people"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/aura-starwind/front.svg",
  9431. extra: 1440/1327,
  9432. bottom: 11/1451
  9433. }
  9434. },
  9435. side: {
  9436. height: math.unit(14, "feet"),
  9437. weight: math.unit(1450, "kg"),
  9438. preyCapacity: math.unit(15, "people"),
  9439. name: "Side",
  9440. image: {
  9441. source: "./media/characters/aura-starwind/side.svg",
  9442. extra: 1654 / 1497
  9443. }
  9444. },
  9445. taur: {
  9446. height: math.unit(18, "feet"),
  9447. weight: math.unit(5500, "kg"),
  9448. preyCapacity: math.unit(50, "people"),
  9449. name: "Taur",
  9450. image: {
  9451. source: "./media/characters/aura-starwind/taur.svg",
  9452. extra: 1760 / 1650
  9453. }
  9454. },
  9455. feral: {
  9456. height: math.unit(46, "feet"),
  9457. weight: math.unit(25000, "kg"),
  9458. preyCapacity: math.unit(120, "people"),
  9459. name: "Feral",
  9460. image: {
  9461. source: "./media/characters/aura-starwind/feral.svg"
  9462. }
  9463. },
  9464. },
  9465. [
  9466. {
  9467. name: "Normal",
  9468. height: math.unit(14, "feet"),
  9469. default: true
  9470. },
  9471. {
  9472. name: "Macro",
  9473. height: math.unit(50, "meters")
  9474. },
  9475. {
  9476. name: "Megamacro",
  9477. height: math.unit(5000, "meters")
  9478. },
  9479. {
  9480. name: "Gigamacro",
  9481. height: math.unit(100000, "kilometers")
  9482. },
  9483. ]
  9484. ))
  9485. characterMakers.push(() => makeCharacter(
  9486. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9487. {
  9488. front: {
  9489. height: math.unit(2 + 7 / 12, "feet"),
  9490. weight: math.unit(32, "lbs"),
  9491. name: "Front",
  9492. image: {
  9493. source: "./media/characters/rivet/front.svg",
  9494. extra: 1716 / 1658,
  9495. bottom: 0.03
  9496. }
  9497. },
  9498. foot: {
  9499. height: math.unit(0.551, "feet"),
  9500. name: "Rivet's Foot",
  9501. image: {
  9502. source: "./media/characters/rivet/foot.svg"
  9503. },
  9504. rename: true
  9505. }
  9506. },
  9507. [
  9508. {
  9509. name: "Micro",
  9510. height: math.unit(1.5, "inches"),
  9511. },
  9512. {
  9513. name: "Normal",
  9514. height: math.unit(2 + 7 / 12, "feet"),
  9515. default: true
  9516. },
  9517. {
  9518. name: "Macro",
  9519. height: math.unit(85, "feet")
  9520. },
  9521. {
  9522. name: "Megamacro",
  9523. height: math.unit(2.2, "km")
  9524. }
  9525. ]
  9526. ))
  9527. characterMakers.push(() => makeCharacter(
  9528. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9529. {
  9530. front: {
  9531. height: math.unit(5 + 9 / 12, "feet"),
  9532. weight: math.unit(150, "lbs"),
  9533. name: "Front",
  9534. image: {
  9535. source: "./media/characters/coffee/front.svg",
  9536. extra: 946/880,
  9537. bottom: 66/1012
  9538. }
  9539. },
  9540. foot: {
  9541. height: math.unit(1.29, "feet"),
  9542. name: "Foot",
  9543. image: {
  9544. source: "./media/characters/coffee/foot.svg"
  9545. }
  9546. },
  9547. },
  9548. [
  9549. {
  9550. name: "Micro",
  9551. height: math.unit(2, "inches"),
  9552. },
  9553. {
  9554. name: "Normal",
  9555. height: math.unit(5 + 9 / 12, "feet"),
  9556. default: true
  9557. },
  9558. {
  9559. name: "Macro",
  9560. height: math.unit(800, "feet")
  9561. },
  9562. {
  9563. name: "Megamacro",
  9564. height: math.unit(25, "miles")
  9565. }
  9566. ]
  9567. ))
  9568. characterMakers.push(() => makeCharacter(
  9569. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9570. {
  9571. front: {
  9572. height: math.unit(6, "feet"),
  9573. weight: math.unit(200, "lbs"),
  9574. name: "Front",
  9575. image: {
  9576. source: "./media/characters/chari-gal/front.svg",
  9577. extra: 735/649,
  9578. bottom: 55/790
  9579. },
  9580. form: "normal",
  9581. default: true
  9582. },
  9583. back: {
  9584. height: math.unit(6, "feet"),
  9585. weight: math.unit(200, "lb"),
  9586. name: "Back",
  9587. image: {
  9588. source: "./media/characters/chari-gal/back.svg",
  9589. extra: 762/666,
  9590. bottom: 31/793
  9591. },
  9592. form: "normal"
  9593. },
  9594. mouth: {
  9595. height: math.unit(1.35, "feet"),
  9596. name: "Mouth",
  9597. image: {
  9598. source: "./media/characters/chari-gal/mouth.svg"
  9599. },
  9600. form: "normal"
  9601. },
  9602. gigantamax: {
  9603. height: math.unit(6 * 16, "feet"),
  9604. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9605. name: "Gigantamax",
  9606. image: {
  9607. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9608. extra: 1507/1149,
  9609. bottom: 254/1761
  9610. },
  9611. form: "gigantamax",
  9612. default: true
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(5 + 7 / 12, "feet"),
  9619. form: "normal",
  9620. },
  9621. {
  9622. name: "Macro",
  9623. height: math.unit(200, "feet"),
  9624. default: true,
  9625. form: "normal"
  9626. },
  9627. {
  9628. name: "Normal",
  9629. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9630. form: "gigantamax",
  9631. },
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(16 * 200, "feet"),
  9635. default: true,
  9636. form: "gigantamax"
  9637. },
  9638. ],
  9639. {
  9640. "normal": {
  9641. name: "Normal",
  9642. default: true
  9643. },
  9644. "gigantamax": {
  9645. name: "Gigantamax",
  9646. },
  9647. }
  9648. ))
  9649. characterMakers.push(() => makeCharacter(
  9650. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9651. {
  9652. front: {
  9653. height: math.unit(6, "feet"),
  9654. weight: math.unit(150, "lbs"),
  9655. name: "Front",
  9656. image: {
  9657. source: "./media/characters/nova/front.svg",
  9658. extra: 5000 / 4722,
  9659. bottom: 0.02
  9660. }
  9661. }
  9662. },
  9663. [
  9664. {
  9665. name: "Micro-",
  9666. height: math.unit(0.8, "inches")
  9667. },
  9668. {
  9669. name: "Micro",
  9670. height: math.unit(2, "inches"),
  9671. default: true
  9672. },
  9673. ]
  9674. ))
  9675. characterMakers.push(() => makeCharacter(
  9676. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9677. {
  9678. koboldFront: {
  9679. height: math.unit(3 + 1 / 12, "feet"),
  9680. weight: math.unit(21.7, "lbs"),
  9681. name: "Front",
  9682. image: {
  9683. source: "./media/characters/argent/kobold-front.svg",
  9684. extra: 1471 / 1331,
  9685. bottom: 100.8 / 1575.5
  9686. },
  9687. form: "kobold",
  9688. default: true
  9689. },
  9690. dragonFront: {
  9691. height: math.unit(75, "inches"),
  9692. name: "Front",
  9693. image: {
  9694. source: "./media/characters/argent/dragon-front.svg",
  9695. extra: 1389/1248,
  9696. bottom: 54/1443
  9697. },
  9698. form: "dragon",
  9699. },
  9700. dragonBack: {
  9701. height: math.unit(75, "inches"),
  9702. name: "Back",
  9703. image: {
  9704. source: "./media/characters/argent/dragon-back.svg",
  9705. extra: 1399/1271,
  9706. bottom: 23/1422
  9707. },
  9708. form: "dragon",
  9709. },
  9710. dragonDressed: {
  9711. height: math.unit(75, "inches"),
  9712. name: "Dressed",
  9713. image: {
  9714. source: "./media/characters/argent/dragon-dressed.svg",
  9715. extra: 1350/1215,
  9716. bottom: 26/1376
  9717. },
  9718. form: "dragon"
  9719. },
  9720. dragonHead: {
  9721. height: math.unit(23.5, "inches"),
  9722. name: "Head",
  9723. image: {
  9724. source: "./media/characters/argent/dragon-head.svg"
  9725. },
  9726. form: "dragon",
  9727. },
  9728. },
  9729. [
  9730. {
  9731. name: "Micro",
  9732. height: math.unit(2, "inches"),
  9733. form: "kobold",
  9734. },
  9735. {
  9736. name: "Normal",
  9737. height: math.unit(3 + 1 / 12, "feet"),
  9738. form: "kobold",
  9739. default: true
  9740. },
  9741. {
  9742. name: "Macro",
  9743. height: math.unit(120, "feet"),
  9744. form: "kobold",
  9745. },
  9746. {
  9747. name: "Speck",
  9748. height: math.unit(1, "mm"),
  9749. form: "dragon",
  9750. },
  9751. {
  9752. name: "Tiny",
  9753. height: math.unit(1, "cm"),
  9754. form: "dragon",
  9755. },
  9756. {
  9757. name: "Micro",
  9758. height: math.unit(5, "cm"),
  9759. form: "dragon",
  9760. },
  9761. {
  9762. name: "Normal",
  9763. height: math.unit(75, "inches"),
  9764. form: "dragon",
  9765. default: true
  9766. },
  9767. {
  9768. name: "Extra Tall",
  9769. height: math.unit(9, "feet"),
  9770. form: "dragon",
  9771. },
  9772. {
  9773. name: "Inconvenient",
  9774. height: math.unit(5, "meters"),
  9775. form: "dragon",
  9776. },
  9777. {
  9778. name: "Macro",
  9779. height: math.unit(70, "meters"),
  9780. form: "dragon",
  9781. },
  9782. {
  9783. name: "Macro+",
  9784. height: math.unit(250, "meters"),
  9785. form: "dragon",
  9786. },
  9787. {
  9788. name: "Megamacro",
  9789. height: math.unit(20, "km"),
  9790. form: "dragon",
  9791. },
  9792. {
  9793. name: "Mountainous",
  9794. height: math.unit(100, "km"),
  9795. form: "dragon",
  9796. },
  9797. {
  9798. name: "Continental",
  9799. height: math.unit(2, "megameters"),
  9800. form: "dragon",
  9801. },
  9802. {
  9803. name: "Too Big",
  9804. height: math.unit(900, "megameters"),
  9805. form: "dragon",
  9806. },
  9807. ],
  9808. {
  9809. "kobold": {
  9810. name: "Kobold",
  9811. default: true
  9812. },
  9813. "dragon": {
  9814. name: "Dragon",
  9815. },
  9816. }
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9820. {
  9821. lamp: {
  9822. height: math.unit(7 * 1559 / 989, "feet"),
  9823. name: "Magic Lamp",
  9824. image: {
  9825. source: "./media/characters/mira-al-cul/lamp.svg",
  9826. extra: 1617 / 1559
  9827. }
  9828. },
  9829. front: {
  9830. height: math.unit(7, "feet"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/mira-al-cul/front.svg",
  9834. extra: 1044 / 990
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Heavily Restricted",
  9841. height: math.unit(7 * 1559 / 989, "feet")
  9842. },
  9843. {
  9844. name: "Freshly Freed",
  9845. height: math.unit(50 * 1559 / 989, "feet")
  9846. },
  9847. {
  9848. name: "World Encompassing",
  9849. height: math.unit(10000 * 1559 / 989, "miles")
  9850. },
  9851. {
  9852. name: "Galactic",
  9853. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9854. },
  9855. {
  9856. name: "Palmed Universe",
  9857. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9858. default: true
  9859. },
  9860. {
  9861. name: "Multiversal Matriarch",
  9862. height: math.unit(8.87e10, "yottameters")
  9863. },
  9864. {
  9865. name: "Void Mother",
  9866. height: math.unit(3.14e110, "yottaparsecs")
  9867. },
  9868. {
  9869. name: "Toying with Transcendence",
  9870. height: math.unit(1e307, "meters")
  9871. },
  9872. ]
  9873. ))
  9874. characterMakers.push(() => makeCharacter(
  9875. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9876. {
  9877. front: {
  9878. height: math.unit(17 + 1 / 12, "feet"),
  9879. weight: math.unit(476.2 * 5, "lbs"),
  9880. name: "Front",
  9881. image: {
  9882. source: "./media/characters/kuro-shi-uchū/front.svg",
  9883. extra: 2329 / 1835,
  9884. bottom: 0.02
  9885. }
  9886. },
  9887. },
  9888. [
  9889. {
  9890. name: "Micro",
  9891. height: math.unit(2, "inches")
  9892. },
  9893. {
  9894. name: "Normal",
  9895. height: math.unit(12, "meters")
  9896. },
  9897. {
  9898. name: "Planetary",
  9899. height: math.unit(0.00929, "AU"),
  9900. default: true
  9901. },
  9902. {
  9903. name: "Universal",
  9904. height: math.unit(20, "gigaparsecs")
  9905. },
  9906. ]
  9907. ))
  9908. characterMakers.push(() => makeCharacter(
  9909. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9910. {
  9911. front: {
  9912. height: math.unit(5 + 2 / 12, "feet"),
  9913. weight: math.unit(120, "lbs"),
  9914. name: "Front",
  9915. image: {
  9916. source: "./media/characters/katherine/front.svg",
  9917. extra: 2075 / 1969
  9918. }
  9919. },
  9920. dress: {
  9921. height: math.unit(5 + 2 / 12, "feet"),
  9922. weight: math.unit(120, "lbs"),
  9923. name: "Dress",
  9924. image: {
  9925. source: "./media/characters/katherine/dress.svg",
  9926. extra: 2258 / 2064
  9927. }
  9928. },
  9929. },
  9930. [
  9931. {
  9932. name: "Micro",
  9933. height: math.unit(1, "inches"),
  9934. default: true
  9935. },
  9936. {
  9937. name: "Normal",
  9938. height: math.unit(5 + 2 / 12, "feet")
  9939. },
  9940. {
  9941. name: "Macro",
  9942. height: math.unit(100, "meters")
  9943. },
  9944. {
  9945. name: "Megamacro",
  9946. height: math.unit(80, "miles")
  9947. },
  9948. ]
  9949. ))
  9950. characterMakers.push(() => makeCharacter(
  9951. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9952. {
  9953. front: {
  9954. height: math.unit(7 + 8 / 12, "feet"),
  9955. weight: math.unit(250, "lbs"),
  9956. name: "Front",
  9957. image: {
  9958. source: "./media/characters/yevis/front.svg",
  9959. extra: 1938 / 1755
  9960. }
  9961. }
  9962. },
  9963. [
  9964. {
  9965. name: "Mortal",
  9966. height: math.unit(7 + 8 / 12, "feet")
  9967. },
  9968. {
  9969. name: "Battle",
  9970. height: math.unit(25 + 11 / 12, "feet")
  9971. },
  9972. {
  9973. name: "Wrath",
  9974. height: math.unit(1654 + 11 / 12, "feet")
  9975. },
  9976. {
  9977. name: "Planet Destroyer",
  9978. height: math.unit(12000, "miles")
  9979. },
  9980. {
  9981. name: "Galaxy Conqueror",
  9982. height: math.unit(1.45, "zettameters"),
  9983. default: true
  9984. },
  9985. {
  9986. name: "Universal War",
  9987. height: math.unit(184, "gigaparsecs")
  9988. },
  9989. {
  9990. name: "Eternity War",
  9991. height: math.unit(1.98e55, "yottaparsecs")
  9992. },
  9993. ]
  9994. ))
  9995. characterMakers.push(() => makeCharacter(
  9996. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9997. {
  9998. front: {
  9999. height: math.unit(5 + 8 / 12, "feet"),
  10000. weight: math.unit(63, "kg"),
  10001. name: "Front",
  10002. image: {
  10003. source: "./media/characters/xavier/front.svg",
  10004. extra: 944 / 883
  10005. }
  10006. },
  10007. frontStretch: {
  10008. height: math.unit(5 + 8 / 12, "feet"),
  10009. weight: math.unit(63, "kg"),
  10010. name: "Stretching",
  10011. image: {
  10012. source: "./media/characters/xavier/front-stretch.svg",
  10013. extra: 962 / 820
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Normal",
  10020. height: math.unit(5 + 8 / 12, "feet")
  10021. },
  10022. {
  10023. name: "Macro",
  10024. height: math.unit(100, "meters"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "McLargeHuge",
  10029. height: math.unit(10, "miles")
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(5 + 5 / 12, "feet"),
  10038. weight: math.unit(150, "lb"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/joshii/front.svg",
  10042. extra: 765 / 653,
  10043. bottom: 51 / 816
  10044. }
  10045. },
  10046. foot: {
  10047. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10048. name: "Foot",
  10049. image: {
  10050. source: "./media/characters/joshii/foot.svg"
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Micro",
  10057. height: math.unit(2, "inches")
  10058. },
  10059. {
  10060. name: "Normal",
  10061. height: math.unit(5 + 5 / 12, "feet")
  10062. },
  10063. {
  10064. name: "Macro",
  10065. height: math.unit(785, "feet"),
  10066. default: true
  10067. },
  10068. {
  10069. name: "Megamacro",
  10070. height: math.unit(24.5, "miles")
  10071. },
  10072. ]
  10073. ))
  10074. characterMakers.push(() => makeCharacter(
  10075. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10076. {
  10077. front: {
  10078. height: math.unit(6, "feet"),
  10079. weight: math.unit(150, "lb"),
  10080. name: "Front",
  10081. image: {
  10082. source: "./media/characters/goddess-elizabeth/front.svg",
  10083. extra: 1800 / 1525,
  10084. bottom: 0.005
  10085. }
  10086. },
  10087. foot: {
  10088. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10089. name: "Foot",
  10090. image: {
  10091. source: "./media/characters/goddess-elizabeth/foot.svg"
  10092. }
  10093. },
  10094. mouth: {
  10095. height: math.unit(6, "feet"),
  10096. name: "Mouth",
  10097. image: {
  10098. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10099. }
  10100. },
  10101. },
  10102. [
  10103. {
  10104. name: "Micro",
  10105. height: math.unit(12, "feet")
  10106. },
  10107. {
  10108. name: "Normal",
  10109. height: math.unit(80, "miles"),
  10110. default: true
  10111. },
  10112. {
  10113. name: "Macro",
  10114. height: math.unit(15000, "parsecs")
  10115. },
  10116. ]
  10117. ))
  10118. characterMakers.push(() => makeCharacter(
  10119. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10120. {
  10121. front: {
  10122. height: math.unit(5 + 9 / 12, "feet"),
  10123. weight: math.unit(144, "lb"),
  10124. name: "Front",
  10125. image: {
  10126. source: "./media/characters/kara/front.svg"
  10127. }
  10128. },
  10129. feet: {
  10130. height: math.unit(6 / 6.765, "feet"),
  10131. name: "Kara's Feet",
  10132. rename: true,
  10133. image: {
  10134. source: "./media/characters/kara/feet.svg"
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Normal",
  10141. height: math.unit(5 + 9 / 12, "feet")
  10142. },
  10143. {
  10144. name: "Macro",
  10145. height: math.unit(174, "feet"),
  10146. default: true
  10147. },
  10148. ]
  10149. ))
  10150. characterMakers.push(() => makeCharacter(
  10151. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10152. {
  10153. front: {
  10154. height: math.unit(18, "feet"),
  10155. weight: math.unit(4050, "lb"),
  10156. name: "Front",
  10157. image: {
  10158. source: "./media/characters/tyrone/front.svg",
  10159. extra: 2405 / 2270,
  10160. bottom: 182 / 2587
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(18, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Macro",
  10172. height: math.unit(300, "feet")
  10173. },
  10174. {
  10175. name: "Megamacro",
  10176. height: math.unit(15, "km")
  10177. },
  10178. {
  10179. name: "Gigamacro",
  10180. height: math.unit(500, "km")
  10181. },
  10182. {
  10183. name: "Teramacro",
  10184. height: math.unit(0.5, "gigameters")
  10185. },
  10186. {
  10187. name: "Omnimacro",
  10188. height: math.unit(1e252, "yottauniverse")
  10189. },
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10194. {
  10195. front: {
  10196. height: math.unit(7 + 8 / 12, "feet"),
  10197. weight: math.unit(120, "lb"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/danny/front.svg",
  10201. extra: 1490 / 1350
  10202. }
  10203. },
  10204. back: {
  10205. height: math.unit(7 + 8 / 12, "feet"),
  10206. weight: math.unit(120, "lb"),
  10207. name: "Back",
  10208. image: {
  10209. source: "./media/characters/danny/back.svg",
  10210. extra: 1490 / 1350
  10211. }
  10212. },
  10213. },
  10214. [
  10215. {
  10216. name: "Normal",
  10217. height: math.unit(7 + 8 / 12, "feet"),
  10218. default: true
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(3.5, "inches"),
  10227. weight: math.unit(19, "grams"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/mallow/front.svg",
  10231. extra: 471 / 431
  10232. }
  10233. },
  10234. back: {
  10235. height: math.unit(3.5, "inches"),
  10236. weight: math.unit(19, "grams"),
  10237. name: "Back",
  10238. image: {
  10239. source: "./media/characters/mallow/back.svg",
  10240. extra: 471 / 431
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Normal",
  10247. height: math.unit(3.5, "inches"),
  10248. default: true
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(9, "feet"),
  10257. weight: math.unit(230, "kg"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/starry-aqua/front.svg"
  10261. }
  10262. },
  10263. back: {
  10264. height: math.unit(9, "feet"),
  10265. weight: math.unit(230, "kg"),
  10266. name: "Back",
  10267. image: {
  10268. source: "./media/characters/starry-aqua/back.svg"
  10269. }
  10270. },
  10271. hand: {
  10272. height: math.unit(9 * 0.1168, "feet"),
  10273. name: "Hand",
  10274. image: {
  10275. source: "./media/characters/starry-aqua/hand.svg"
  10276. }
  10277. },
  10278. foot: {
  10279. height: math.unit(9 * 0.18, "feet"),
  10280. name: "Foot",
  10281. image: {
  10282. source: "./media/characters/starry-aqua/foot.svg"
  10283. }
  10284. }
  10285. },
  10286. [
  10287. {
  10288. name: "Micro",
  10289. height: math.unit(3, "inches")
  10290. },
  10291. {
  10292. name: "Normal",
  10293. height: math.unit(9, "feet")
  10294. },
  10295. {
  10296. name: "Macro",
  10297. height: math.unit(300, "feet"),
  10298. default: true
  10299. },
  10300. {
  10301. name: "Megamacro",
  10302. height: math.unit(3200, "feet")
  10303. }
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(15, "feet"),
  10311. weight: math.unit(5026, "lb"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/luka-towers/front.svg",
  10315. extra: 1269/1133,
  10316. bottom: 51/1320
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Normal",
  10323. height: math.unit(15, "feet"),
  10324. default: true
  10325. },
  10326. {
  10327. name: "Minimacro",
  10328. height: math.unit(25, "feet")
  10329. },
  10330. {
  10331. name: "Macro",
  10332. height: math.unit(320, "feet")
  10333. },
  10334. {
  10335. name: "Megamacro",
  10336. height: math.unit(35000, "feet")
  10337. },
  10338. {
  10339. name: "Gigamacro",
  10340. height: math.unit(4000, "miles")
  10341. },
  10342. {
  10343. name: "Teramacro",
  10344. height: math.unit(15000, "miles")
  10345. },
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10350. {
  10351. front: {
  10352. height: math.unit(6, "feet"),
  10353. weight: math.unit(150, "lb"),
  10354. name: "Front",
  10355. image: {
  10356. source: "./media/characters/natalie-nightring/front.svg",
  10357. extra: 1,
  10358. bottom: 0.06
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Uh Oh",
  10365. height: math.unit(0.1, "mm")
  10366. },
  10367. {
  10368. name: "Small",
  10369. height: math.unit(3, "inches")
  10370. },
  10371. {
  10372. name: "Human Scale",
  10373. height: math.unit(6, "feet")
  10374. },
  10375. {
  10376. name: "Librarian",
  10377. height: math.unit(50, "feet"),
  10378. default: true
  10379. },
  10380. {
  10381. name: "Immense",
  10382. height: math.unit(200, "miles")
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(6, "feet"),
  10391. weight: math.unit(180, "lbs"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/danni-rosie/front.svg",
  10395. extra: 1260 / 1128,
  10396. bottom: 0.022
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Micro",
  10403. height: math.unit(2, "inches"),
  10404. default: true
  10405. },
  10406. ]
  10407. ))
  10408. characterMakers.push(() => makeCharacter(
  10409. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10410. {
  10411. front: {
  10412. height: math.unit(5 + 9 / 12, "feet"),
  10413. weight: math.unit(220, "lb"),
  10414. name: "Front",
  10415. image: {
  10416. source: "./media/characters/samantha-kruse/front.svg",
  10417. extra: (985 / 935),
  10418. bottom: 0.03
  10419. }
  10420. },
  10421. frontUndressed: {
  10422. height: math.unit(5 + 9 / 12, "feet"),
  10423. weight: math.unit(220, "lb"),
  10424. name: "Front (Undressed)",
  10425. image: {
  10426. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10427. extra: (973 / 923),
  10428. bottom: 0.025
  10429. }
  10430. },
  10431. fat: {
  10432. height: math.unit(5 + 9 / 12, "feet"),
  10433. weight: math.unit(900, "lb"),
  10434. name: "Front (Fat)",
  10435. image: {
  10436. source: "./media/characters/samantha-kruse/fat.svg",
  10437. extra: 2688 / 2561
  10438. }
  10439. },
  10440. },
  10441. [
  10442. {
  10443. name: "Normal",
  10444. height: math.unit(5 + 9 / 12, "feet"),
  10445. default: true
  10446. }
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10451. {
  10452. back: {
  10453. height: math.unit(5 + 4 / 12, "feet"),
  10454. weight: math.unit(4963, "lb"),
  10455. name: "Back",
  10456. image: {
  10457. source: "./media/characters/amelia-rosie/back.svg",
  10458. extra: 1113 / 963,
  10459. bottom: 0.01
  10460. }
  10461. },
  10462. },
  10463. [
  10464. {
  10465. name: "Level 0",
  10466. height: math.unit(5 + 4 / 12, "feet")
  10467. },
  10468. {
  10469. name: "Level 1",
  10470. height: math.unit(164597, "feet"),
  10471. default: true
  10472. },
  10473. {
  10474. name: "Level 2",
  10475. height: math.unit(956243, "miles")
  10476. },
  10477. {
  10478. name: "Level 3",
  10479. height: math.unit(29421709423, "miles")
  10480. },
  10481. {
  10482. name: "Level 4",
  10483. height: math.unit(154, "lightyears")
  10484. },
  10485. {
  10486. name: "Level 5",
  10487. height: math.unit(4738272, "lightyears")
  10488. },
  10489. {
  10490. name: "Level 6",
  10491. height: math.unit(145787152896, "lightyears")
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(5 + 11 / 12, "feet"),
  10500. weight: math.unit(65, "kg"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/rook-kitara/front.svg",
  10504. extra: 1347 / 1274,
  10505. bottom: 0.005
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Totally Unfair",
  10512. height: math.unit(1.8, "mm")
  10513. },
  10514. {
  10515. name: "Lap Rookie",
  10516. height: math.unit(1.4, "feet")
  10517. },
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(5 + 11 / 12, "feet"),
  10521. default: true
  10522. },
  10523. {
  10524. name: "How Did This Happen",
  10525. height: math.unit(80, "miles")
  10526. }
  10527. ]
  10528. ))
  10529. characterMakers.push(() => makeCharacter(
  10530. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10531. {
  10532. front: {
  10533. height: math.unit(7, "feet"),
  10534. weight: math.unit(300, "lb"),
  10535. name: "Front",
  10536. image: {
  10537. source: "./media/characters/pisces/front.svg",
  10538. extra: 2255 / 2115,
  10539. bottom: 0.03
  10540. }
  10541. },
  10542. back: {
  10543. height: math.unit(7, "feet"),
  10544. weight: math.unit(300, "lb"),
  10545. name: "Back",
  10546. image: {
  10547. source: "./media/characters/pisces/back.svg",
  10548. extra: 2146 / 2055,
  10549. bottom: 0.04
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Normal",
  10556. height: math.unit(7, "feet"),
  10557. default: true
  10558. },
  10559. {
  10560. name: "Swimming Pool",
  10561. height: math.unit(12.2, "meters")
  10562. },
  10563. {
  10564. name: "Olympic Swimming Pool",
  10565. height: math.unit(56.3, "meters")
  10566. },
  10567. {
  10568. name: "Lake Superior",
  10569. height: math.unit(93900, "meters")
  10570. },
  10571. {
  10572. name: "Mediterranean Sea",
  10573. height: math.unit(644457, "meters")
  10574. },
  10575. {
  10576. name: "World's Oceans",
  10577. height: math.unit(4567491, "meters")
  10578. },
  10579. ]
  10580. ))
  10581. characterMakers.push(() => makeCharacter(
  10582. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10583. {
  10584. front: {
  10585. height: math.unit(2.3, "meters"),
  10586. weight: math.unit(120, "kg"),
  10587. name: "Front",
  10588. image: {
  10589. source: "./media/characters/zelas/front.svg"
  10590. }
  10591. },
  10592. side: {
  10593. height: math.unit(2.3, "meters"),
  10594. weight: math.unit(120, "kg"),
  10595. name: "Side",
  10596. image: {
  10597. source: "./media/characters/zelas/side.svg"
  10598. }
  10599. },
  10600. back: {
  10601. height: math.unit(2.3, "meters"),
  10602. weight: math.unit(120, "kg"),
  10603. name: "Back",
  10604. image: {
  10605. source: "./media/characters/zelas/back.svg"
  10606. }
  10607. },
  10608. foot: {
  10609. height: math.unit(1.116, "feet"),
  10610. name: "Foot",
  10611. image: {
  10612. source: "./media/characters/zelas/foot.svg"
  10613. }
  10614. },
  10615. },
  10616. [
  10617. {
  10618. name: "Normal",
  10619. height: math.unit(2.3, "meters")
  10620. },
  10621. {
  10622. name: "Macro",
  10623. height: math.unit(30, "meters"),
  10624. default: true
  10625. },
  10626. ]
  10627. ))
  10628. characterMakers.push(() => makeCharacter(
  10629. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10630. {
  10631. front: {
  10632. height: math.unit(1, "inch"),
  10633. weight: math.unit(0.21, "grams"),
  10634. name: "Front",
  10635. image: {
  10636. source: "./media/characters/talbot/front.svg",
  10637. extra: 594 / 544
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Micro",
  10644. height: math.unit(1, "inch"),
  10645. default: true
  10646. },
  10647. ]
  10648. ))
  10649. characterMakers.push(() => makeCharacter(
  10650. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10651. {
  10652. front: {
  10653. height: math.unit(3 + 3 / 12, "feet"),
  10654. weight: math.unit(51.8, "lb"),
  10655. name: "Front",
  10656. image: {
  10657. source: "./media/characters/fliss/front.svg",
  10658. extra: 840 / 640
  10659. }
  10660. },
  10661. },
  10662. [
  10663. {
  10664. name: "Teeny Tiny",
  10665. height: math.unit(1, "mm")
  10666. },
  10667. {
  10668. name: "Small",
  10669. height: math.unit(1, "inch"),
  10670. default: true
  10671. },
  10672. {
  10673. name: "Standard Sylveon",
  10674. height: math.unit(3 + 3 / 12, "feet")
  10675. },
  10676. {
  10677. name: "Large Nuisance",
  10678. height: math.unit(33, "feet")
  10679. },
  10680. {
  10681. name: "City Filler",
  10682. height: math.unit(3000, "feet")
  10683. },
  10684. {
  10685. name: "New Horizon",
  10686. height: math.unit(6000, "miles")
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10692. {
  10693. front: {
  10694. height: math.unit(5, "cm"),
  10695. weight: math.unit(1.94, "g"),
  10696. name: "Front",
  10697. image: {
  10698. source: "./media/characters/fleta/front.svg",
  10699. extra: 835 / 803
  10700. }
  10701. },
  10702. back: {
  10703. height: math.unit(5, "cm"),
  10704. weight: math.unit(1.94, "g"),
  10705. name: "Back",
  10706. image: {
  10707. source: "./media/characters/fleta/back.svg",
  10708. extra: 835 / 803
  10709. }
  10710. },
  10711. },
  10712. [
  10713. {
  10714. name: "Micro",
  10715. height: math.unit(5, "cm"),
  10716. default: true
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10722. {
  10723. front: {
  10724. height: math.unit(6, "feet"),
  10725. weight: math.unit(225, "lb"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/dominic/front.svg",
  10729. extra: 1770 / 1620,
  10730. bottom: 0.025
  10731. }
  10732. },
  10733. back: {
  10734. height: math.unit(6, "feet"),
  10735. weight: math.unit(225, "lb"),
  10736. name: "Back",
  10737. image: {
  10738. source: "./media/characters/dominic/back.svg",
  10739. extra: 1745 / 1620,
  10740. bottom: 0.065
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Nano",
  10747. height: math.unit(0.1, "mm")
  10748. },
  10749. {
  10750. name: "Micro-",
  10751. height: math.unit(1, "mm")
  10752. },
  10753. {
  10754. name: "Micro",
  10755. height: math.unit(4, "inches")
  10756. },
  10757. {
  10758. name: "Normal",
  10759. height: math.unit(6 + 4 / 12, "feet"),
  10760. default: true
  10761. },
  10762. {
  10763. name: "Macro",
  10764. height: math.unit(115, "feet")
  10765. },
  10766. {
  10767. name: "Macro+",
  10768. height: math.unit(955, "feet")
  10769. },
  10770. {
  10771. name: "Megamacro",
  10772. height: math.unit(8990, "feet")
  10773. },
  10774. {
  10775. name: "Gigmacro",
  10776. height: math.unit(9310, "miles")
  10777. },
  10778. {
  10779. name: "Teramacro",
  10780. height: math.unit(1567005010, "miles")
  10781. },
  10782. {
  10783. name: "Examacro",
  10784. height: math.unit(1425, "parsecs")
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10790. {
  10791. front: {
  10792. height: math.unit(400, "feet"),
  10793. weight: math.unit(44444444, "lb"),
  10794. name: "Front",
  10795. image: {
  10796. source: "./media/characters/major-colonel/front.svg"
  10797. }
  10798. },
  10799. back: {
  10800. height: math.unit(400, "feet"),
  10801. weight: math.unit(44444444, "lb"),
  10802. name: "Back",
  10803. image: {
  10804. source: "./media/characters/major-colonel/back.svg"
  10805. }
  10806. },
  10807. },
  10808. [
  10809. {
  10810. name: "Macro",
  10811. height: math.unit(400, "feet"),
  10812. default: true
  10813. },
  10814. ]
  10815. ))
  10816. characterMakers.push(() => makeCharacter(
  10817. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10818. {
  10819. catFront: {
  10820. height: math.unit(6, "feet"),
  10821. weight: math.unit(120, "lb"),
  10822. name: "Front (Cat Side)",
  10823. image: {
  10824. source: "./media/characters/axel-lycan/cat-front.svg",
  10825. extra: 430 / 402,
  10826. bottom: 43 / 472.35
  10827. }
  10828. },
  10829. catBack: {
  10830. height: math.unit(6, "feet"),
  10831. weight: math.unit(120, "lb"),
  10832. name: "Back (Cat Side)",
  10833. image: {
  10834. source: "./media/characters/axel-lycan/cat-back.svg",
  10835. extra: 447 / 419,
  10836. bottom: 23.3 / 469
  10837. }
  10838. },
  10839. wolfFront: {
  10840. height: math.unit(6, "feet"),
  10841. weight: math.unit(120, "lb"),
  10842. name: "Front (Wolf Side)",
  10843. image: {
  10844. source: "./media/characters/axel-lycan/wolf-front.svg",
  10845. extra: 485 / 456,
  10846. bottom: 19 / 504
  10847. }
  10848. },
  10849. wolfBack: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(120, "lb"),
  10852. name: "Back (Wolf Side)",
  10853. image: {
  10854. source: "./media/characters/axel-lycan/wolf-back.svg",
  10855. extra: 475 / 438,
  10856. bottom: 39.2 / 514
  10857. }
  10858. },
  10859. },
  10860. [
  10861. {
  10862. name: "Macro",
  10863. height: math.unit(1, "km"),
  10864. default: true
  10865. },
  10866. ]
  10867. ))
  10868. characterMakers.push(() => makeCharacter(
  10869. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10870. {
  10871. front: {
  10872. height: math.unit(5 + 9 / 12, "feet"),
  10873. weight: math.unit(175, "lb"),
  10874. name: "Front",
  10875. image: {
  10876. source: "./media/characters/vanrel-hyena/front.svg",
  10877. extra: 1086 / 1010,
  10878. bottom: 0.04
  10879. }
  10880. },
  10881. },
  10882. [
  10883. {
  10884. name: "Normal",
  10885. height: math.unit(5 + 9 / 12, "feet"),
  10886. default: true
  10887. },
  10888. ]
  10889. ))
  10890. characterMakers.push(() => makeCharacter(
  10891. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10892. {
  10893. front: {
  10894. height: math.unit(6, "feet"),
  10895. weight: math.unit(103, "lb"),
  10896. name: "Front",
  10897. image: {
  10898. source: "./media/characters/abbott-absol/front.svg",
  10899. extra: 2010 / 1842
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Megamicro",
  10906. height: math.unit(0.1, "mm")
  10907. },
  10908. {
  10909. name: "Micro",
  10910. height: math.unit(1, "inch")
  10911. },
  10912. {
  10913. name: "Normal",
  10914. height: math.unit(6, "feet"),
  10915. default: true
  10916. },
  10917. ]
  10918. ))
  10919. characterMakers.push(() => makeCharacter(
  10920. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10921. {
  10922. front: {
  10923. height: math.unit(6, "feet"),
  10924. weight: math.unit(264, "lb"),
  10925. name: "Front",
  10926. image: {
  10927. source: "./media/characters/hector/front.svg",
  10928. extra: 2280 / 2130,
  10929. bottom: 0.07
  10930. }
  10931. },
  10932. },
  10933. [
  10934. {
  10935. name: "Normal",
  10936. height: math.unit(12.25, "foot"),
  10937. default: true
  10938. },
  10939. {
  10940. name: "Macro",
  10941. height: math.unit(160, "feet")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10947. {
  10948. front: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(150, "lb"),
  10951. name: "Front",
  10952. image: {
  10953. source: "./media/characters/sal/front.svg",
  10954. extra: 1846 / 1699,
  10955. bottom: 0.04
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Megamacro",
  10962. height: math.unit(10, "miles"),
  10963. default: true
  10964. },
  10965. ]
  10966. ))
  10967. characterMakers.push(() => makeCharacter(
  10968. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10969. {
  10970. front: {
  10971. height: math.unit(3, "meters"),
  10972. weight: math.unit(450, "kg"),
  10973. name: "front",
  10974. image: {
  10975. source: "./media/characters/ranger/front.svg",
  10976. extra: 2401 / 2243,
  10977. bottom: 0.05
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Normal",
  10984. height: math.unit(3, "meters"),
  10985. default: true
  10986. },
  10987. ]
  10988. ))
  10989. characterMakers.push(() => makeCharacter(
  10990. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10991. {
  10992. front: {
  10993. height: math.unit(14, "feet"),
  10994. weight: math.unit(800, "kg"),
  10995. name: "Front",
  10996. image: {
  10997. source: "./media/characters/theresa/front.svg",
  10998. extra: 3575 / 3346,
  10999. bottom: 0.03
  11000. }
  11001. },
  11002. },
  11003. [
  11004. {
  11005. name: "Normal",
  11006. height: math.unit(14, "feet"),
  11007. default: true
  11008. },
  11009. ]
  11010. ))
  11011. characterMakers.push(() => makeCharacter(
  11012. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11013. {
  11014. front: {
  11015. height: math.unit(6, "feet"),
  11016. weight: math.unit(3, "kg"),
  11017. name: "Front",
  11018. image: {
  11019. source: "./media/characters/ine/front.svg",
  11020. extra: 678 / 539,
  11021. bottom: 0.023
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(2.265, "feet"),
  11029. default: true
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11035. {
  11036. front: {
  11037. height: math.unit(5, "feet"),
  11038. weight: math.unit(30, "kg"),
  11039. name: "Front",
  11040. image: {
  11041. source: "./media/characters/vial/front.svg",
  11042. extra: 1365 / 1277,
  11043. bottom: 0.04
  11044. }
  11045. },
  11046. },
  11047. [
  11048. {
  11049. name: "Normal",
  11050. height: math.unit(5, "feet"),
  11051. default: true
  11052. },
  11053. ]
  11054. ))
  11055. characterMakers.push(() => makeCharacter(
  11056. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11057. {
  11058. side: {
  11059. height: math.unit(3.4, "meters"),
  11060. weight: math.unit(1000, "lb"),
  11061. name: "Side",
  11062. image: {
  11063. source: "./media/characters/rovoska/side.svg",
  11064. extra: 4403 / 1515
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(3.4, "meters"),
  11072. default: true
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(8, "feet"),
  11081. weight: math.unit(315, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/gunner-rotthbauer/front.svg"
  11085. }
  11086. },
  11087. back: {
  11088. height: math.unit(8, "feet"),
  11089. weight: math.unit(315, "lb"),
  11090. name: "Back",
  11091. image: {
  11092. source: "./media/characters/gunner-rotthbauer/back.svg"
  11093. }
  11094. },
  11095. },
  11096. [
  11097. {
  11098. name: "Micro",
  11099. height: math.unit(3.5, "inches")
  11100. },
  11101. {
  11102. name: "Normal",
  11103. height: math.unit(8, "feet"),
  11104. default: true
  11105. },
  11106. {
  11107. name: "Macro",
  11108. height: math.unit(250, "feet")
  11109. },
  11110. {
  11111. name: "Megamacro",
  11112. height: math.unit(1, "AU")
  11113. },
  11114. ]
  11115. ))
  11116. characterMakers.push(() => makeCharacter(
  11117. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11118. {
  11119. front: {
  11120. height: math.unit(5 + 5 / 12, "feet"),
  11121. weight: math.unit(140, "lb"),
  11122. name: "Front",
  11123. image: {
  11124. source: "./media/characters/allatia/front.svg",
  11125. extra: 1227 / 1180,
  11126. bottom: 0.027
  11127. }
  11128. },
  11129. },
  11130. [
  11131. {
  11132. name: "Normal",
  11133. height: math.unit(5 + 5 / 12, "feet")
  11134. },
  11135. {
  11136. name: "Macro",
  11137. height: math.unit(250, "feet"),
  11138. default: true
  11139. },
  11140. {
  11141. name: "Megamacro",
  11142. height: math.unit(8, "miles")
  11143. }
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11148. {
  11149. front: {
  11150. height: math.unit(6, "feet"),
  11151. weight: math.unit(120, "lb"),
  11152. name: "Front",
  11153. image: {
  11154. source: "./media/characters/tene/front.svg",
  11155. extra: 814/750,
  11156. bottom: 36/850
  11157. }
  11158. },
  11159. stomping: {
  11160. height: math.unit(2.025, "meters"),
  11161. weight: math.unit(120, "lb"),
  11162. name: "Stomping",
  11163. image: {
  11164. source: "./media/characters/tene/stomping.svg",
  11165. extra: 885/821,
  11166. bottom: 15/900
  11167. }
  11168. },
  11169. sitting: {
  11170. height: math.unit(1, "meter"),
  11171. weight: math.unit(120, "lb"),
  11172. name: "Sitting",
  11173. image: {
  11174. source: "./media/characters/tene/sitting.svg",
  11175. extra: 396/366,
  11176. bottom: 79/475
  11177. }
  11178. },
  11179. smiling: {
  11180. height: math.unit(1.2, "feet"),
  11181. name: "Smiling",
  11182. image: {
  11183. source: "./media/characters/tene/smiling.svg",
  11184. extra: 1364/1071,
  11185. bottom: 0/1364
  11186. }
  11187. },
  11188. smug: {
  11189. height: math.unit(1.3, "feet"),
  11190. name: "Smug",
  11191. image: {
  11192. source: "./media/characters/tene/smug.svg",
  11193. extra: 1323/1082,
  11194. bottom: 0/1323
  11195. }
  11196. },
  11197. feral: {
  11198. height: math.unit(3.9, "feet"),
  11199. weight: math.unit(250, "lb"),
  11200. name: "Feral",
  11201. image: {
  11202. source: "./media/characters/tene/feral.svg",
  11203. extra: 717 / 458,
  11204. bottom: 0.179
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Normal",
  11211. height: math.unit(6, "feet")
  11212. },
  11213. {
  11214. name: "Macro",
  11215. height: math.unit(300, "feet"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Megamacro",
  11220. height: math.unit(5, "miles")
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11226. {
  11227. side: {
  11228. height: math.unit(6, "feet"),
  11229. name: "Side",
  11230. image: {
  11231. source: "./media/characters/evander/side.svg",
  11232. extra: 877 / 477
  11233. }
  11234. },
  11235. },
  11236. [
  11237. {
  11238. name: "Normal",
  11239. height: math.unit(0.83, "meters"),
  11240. default: true
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11246. {
  11247. front: {
  11248. height: math.unit(12, "feet"),
  11249. weight: math.unit(1000, "lb"),
  11250. name: "Front",
  11251. image: {
  11252. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11253. extra: 1762 / 1611
  11254. }
  11255. },
  11256. back: {
  11257. height: math.unit(12, "feet"),
  11258. weight: math.unit(1000, "lb"),
  11259. name: "Back",
  11260. image: {
  11261. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11262. extra: 1762 / 1611
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(12, "feet"),
  11270. default: true
  11271. },
  11272. {
  11273. name: "Kaiju",
  11274. height: math.unit(150, "feet")
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(6, "feet"),
  11283. weight: math.unit(150, "lb"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/zero-alurus/front.svg"
  11287. }
  11288. },
  11289. back: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(150, "lb"),
  11292. name: "Back",
  11293. image: {
  11294. source: "./media/characters/zero-alurus/back.svg"
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(5 + 10 / 12, "feet")
  11302. },
  11303. {
  11304. name: "Macro",
  11305. height: math.unit(60, "feet"),
  11306. default: true
  11307. },
  11308. {
  11309. name: "Macro+",
  11310. height: math.unit(450, "feet")
  11311. },
  11312. ]
  11313. ))
  11314. characterMakers.push(() => makeCharacter(
  11315. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11316. {
  11317. front: {
  11318. height: math.unit(6, "feet"),
  11319. weight: math.unit(200, "lb"),
  11320. name: "Front",
  11321. image: {
  11322. source: "./media/characters/mega-shi/front.svg",
  11323. extra: 1279 / 1250,
  11324. bottom: 0.02
  11325. }
  11326. },
  11327. back: {
  11328. height: math.unit(6, "feet"),
  11329. weight: math.unit(200, "lb"),
  11330. name: "Back",
  11331. image: {
  11332. source: "./media/characters/mega-shi/back.svg",
  11333. extra: 1279 / 1250,
  11334. bottom: 0.02
  11335. }
  11336. },
  11337. },
  11338. [
  11339. {
  11340. name: "Micro",
  11341. height: math.unit(16 + 6 / 12, "feet")
  11342. },
  11343. {
  11344. name: "Third Dimension",
  11345. height: math.unit(40, "meters")
  11346. },
  11347. {
  11348. name: "Normal",
  11349. height: math.unit(660, "feet"),
  11350. default: true
  11351. },
  11352. {
  11353. name: "Megamacro",
  11354. height: math.unit(10, "miles")
  11355. },
  11356. {
  11357. name: "Planetary Launch",
  11358. height: math.unit(500, "miles")
  11359. },
  11360. {
  11361. name: "Interstellar",
  11362. height: math.unit(1e9, "miles")
  11363. },
  11364. {
  11365. name: "Leaving the Universe",
  11366. height: math.unit(1, "gigaparsec")
  11367. },
  11368. {
  11369. name: "Travelling Universes",
  11370. height: math.unit(30e15, "parsecs")
  11371. },
  11372. ]
  11373. ))
  11374. characterMakers.push(() => makeCharacter(
  11375. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11376. {
  11377. front: {
  11378. height: math.unit(5 + 4/12, "feet"),
  11379. weight: math.unit(120, "lb"),
  11380. name: "Front",
  11381. image: {
  11382. source: "./media/characters/odyssey/front.svg",
  11383. extra: 1747/1571,
  11384. bottom: 47/1794
  11385. }
  11386. },
  11387. side: {
  11388. height: math.unit(5.1, "feet"),
  11389. weight: math.unit(120, "lb"),
  11390. name: "Side",
  11391. image: {
  11392. source: "./media/characters/odyssey/side.svg",
  11393. extra: 1847/1619,
  11394. bottom: 47/1894
  11395. }
  11396. },
  11397. lounging: {
  11398. height: math.unit(1.464, "feet"),
  11399. weight: math.unit(120, "lb"),
  11400. name: "Lounging",
  11401. image: {
  11402. source: "./media/characters/odyssey/lounging.svg",
  11403. extra: 1235/837,
  11404. bottom: 551/1786
  11405. }
  11406. },
  11407. },
  11408. [
  11409. {
  11410. name: "Normal",
  11411. height: math.unit(5 + 4 / 12, "feet")
  11412. },
  11413. {
  11414. name: "Macro",
  11415. height: math.unit(1, "km")
  11416. },
  11417. {
  11418. name: "Megamacro",
  11419. height: math.unit(3000, "km")
  11420. },
  11421. {
  11422. name: "Gigamacro",
  11423. height: math.unit(1, "AU"),
  11424. default: true
  11425. },
  11426. {
  11427. name: "Omniversal",
  11428. height: math.unit(100e14, "lightyears")
  11429. },
  11430. ]
  11431. ))
  11432. characterMakers.push(() => makeCharacter(
  11433. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11434. {
  11435. front: {
  11436. height: math.unit(5 + 10/12, "feet"),
  11437. name: "Front",
  11438. image: {
  11439. source: "./media/characters/mekuto/front.svg",
  11440. extra: 875/835,
  11441. bottom: 46/921
  11442. }
  11443. },
  11444. },
  11445. [
  11446. {
  11447. name: "Minimicro",
  11448. height: math.unit(0.2, "inches")
  11449. },
  11450. {
  11451. name: "Micro",
  11452. height: math.unit(1.5, "inches")
  11453. },
  11454. {
  11455. name: "Normal",
  11456. height: math.unit(5 + 10 / 12, "feet"),
  11457. default: true
  11458. },
  11459. {
  11460. name: "Minimacro",
  11461. height: math.unit(17 + 9 / 12, "feet")
  11462. },
  11463. {
  11464. name: "Macro",
  11465. height: math.unit(177.5, "feet")
  11466. },
  11467. {
  11468. name: "Megamacro",
  11469. height: math.unit(152, "miles")
  11470. },
  11471. ]
  11472. ))
  11473. characterMakers.push(() => makeCharacter(
  11474. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11475. {
  11476. front: {
  11477. height: math.unit(6.5, "inches"),
  11478. weight: math.unit(13, "oz"),
  11479. name: "Front",
  11480. image: {
  11481. source: "./media/characters/dafydd-tomos/front.svg",
  11482. extra: 2990 / 2603,
  11483. bottom: 0.03
  11484. }
  11485. },
  11486. },
  11487. [
  11488. {
  11489. name: "Micro",
  11490. height: math.unit(6.5, "inches"),
  11491. default: true
  11492. },
  11493. ]
  11494. ))
  11495. characterMakers.push(() => makeCharacter(
  11496. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11497. {
  11498. front: {
  11499. height: math.unit(6, "feet"),
  11500. weight: math.unit(150, "lb"),
  11501. name: "Front",
  11502. image: {
  11503. source: "./media/characters/splinter/front.svg",
  11504. extra: 2990 / 2882,
  11505. bottom: 0.04
  11506. }
  11507. },
  11508. back: {
  11509. height: math.unit(6, "feet"),
  11510. weight: math.unit(150, "lb"),
  11511. name: "Back",
  11512. image: {
  11513. source: "./media/characters/splinter/back.svg",
  11514. extra: 2990 / 2882,
  11515. bottom: 0.04
  11516. }
  11517. },
  11518. },
  11519. [
  11520. {
  11521. name: "Normal",
  11522. height: math.unit(6, "feet")
  11523. },
  11524. {
  11525. name: "Macro",
  11526. height: math.unit(230, "meters"),
  11527. default: true
  11528. },
  11529. ]
  11530. ))
  11531. characterMakers.push(() => makeCharacter(
  11532. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11533. {
  11534. front: {
  11535. height: math.unit(4 + 10 / 12, "feet"),
  11536. weight: math.unit(480, "lb"),
  11537. name: "Front",
  11538. image: {
  11539. source: "./media/characters/snow-gabumon/front.svg",
  11540. extra: 1140 / 963,
  11541. bottom: 0.058
  11542. }
  11543. },
  11544. back: {
  11545. height: math.unit(4 + 10 / 12, "feet"),
  11546. weight: math.unit(480, "lb"),
  11547. name: "Back",
  11548. image: {
  11549. source: "./media/characters/snow-gabumon/back.svg",
  11550. extra: 1115 / 962,
  11551. bottom: 0.041
  11552. }
  11553. },
  11554. frontUndresed: {
  11555. height: math.unit(4 + 10 / 12, "feet"),
  11556. weight: math.unit(480, "lb"),
  11557. name: "Front (Undressed)",
  11558. image: {
  11559. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11560. extra: 1061 / 960,
  11561. bottom: 0.045
  11562. }
  11563. },
  11564. },
  11565. [
  11566. {
  11567. name: "Micro",
  11568. height: math.unit(1, "inch")
  11569. },
  11570. {
  11571. name: "Normal",
  11572. height: math.unit(4 + 10 / 12, "feet"),
  11573. default: true
  11574. },
  11575. {
  11576. name: "Macro",
  11577. height: math.unit(200, "feet")
  11578. },
  11579. {
  11580. name: "Megamacro",
  11581. height: math.unit(120, "miles")
  11582. },
  11583. {
  11584. name: "Gigamacro",
  11585. height: math.unit(9800, "miles")
  11586. },
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11591. {
  11592. front: {
  11593. height: math.unit(1.7, "meters"),
  11594. weight: math.unit(140, "lb"),
  11595. name: "Front",
  11596. image: {
  11597. source: "./media/characters/moody/front.svg",
  11598. extra: 3226 / 3007,
  11599. bottom: 0.087
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Micro",
  11606. height: math.unit(1, "mm")
  11607. },
  11608. {
  11609. name: "Normal",
  11610. height: math.unit(1.7, "meters"),
  11611. default: true
  11612. },
  11613. {
  11614. name: "Macro",
  11615. height: math.unit(80, "meters")
  11616. },
  11617. {
  11618. name: "Macro+",
  11619. height: math.unit(500, "meters")
  11620. },
  11621. ]
  11622. ))
  11623. characterMakers.push(() => makeCharacter(
  11624. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11625. {
  11626. front: {
  11627. height: math.unit(6, "feet"),
  11628. weight: math.unit(150, "lb"),
  11629. name: "Front",
  11630. image: {
  11631. source: "./media/characters/zyas/front.svg",
  11632. extra: 1180 / 1120,
  11633. bottom: 0.045
  11634. }
  11635. },
  11636. },
  11637. [
  11638. {
  11639. name: "Normal",
  11640. height: math.unit(10, "feet"),
  11641. default: true
  11642. },
  11643. {
  11644. name: "Macro",
  11645. height: math.unit(500, "feet")
  11646. },
  11647. {
  11648. name: "Megamacro",
  11649. height: math.unit(5, "miles")
  11650. },
  11651. {
  11652. name: "Teramacro",
  11653. height: math.unit(150000, "miles")
  11654. },
  11655. ]
  11656. ))
  11657. characterMakers.push(() => makeCharacter(
  11658. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11659. {
  11660. front: {
  11661. height: math.unit(6, "feet"),
  11662. weight: math.unit(150, "lb"),
  11663. name: "Front",
  11664. image: {
  11665. source: "./media/characters/cuon/front.svg",
  11666. extra: 1390 / 1320,
  11667. bottom: 0.008
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Micro",
  11674. height: math.unit(3, "inches")
  11675. },
  11676. {
  11677. name: "Normal",
  11678. height: math.unit(18 + 9 / 12, "feet"),
  11679. default: true
  11680. },
  11681. {
  11682. name: "Macro",
  11683. height: math.unit(360, "feet")
  11684. },
  11685. {
  11686. name: "Megamacro",
  11687. height: math.unit(360, "miles")
  11688. },
  11689. ]
  11690. ))
  11691. characterMakers.push(() => makeCharacter(
  11692. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11693. {
  11694. front: {
  11695. height: math.unit(2.4, "meters"),
  11696. weight: math.unit(70, "kg"),
  11697. name: "Front",
  11698. image: {
  11699. source: "./media/characters/nyanuxk/front.svg",
  11700. extra: 1172 / 1084,
  11701. bottom: 0.065
  11702. }
  11703. },
  11704. side: {
  11705. height: math.unit(2.4, "meters"),
  11706. weight: math.unit(70, "kg"),
  11707. name: "Side",
  11708. image: {
  11709. source: "./media/characters/nyanuxk/side.svg",
  11710. extra: 1190 / 1132,
  11711. bottom: 0.007
  11712. }
  11713. },
  11714. back: {
  11715. height: math.unit(2.4, "meters"),
  11716. weight: math.unit(70, "kg"),
  11717. name: "Back",
  11718. image: {
  11719. source: "./media/characters/nyanuxk/back.svg",
  11720. extra: 1200 / 1141,
  11721. bottom: 0.015
  11722. }
  11723. },
  11724. foot: {
  11725. height: math.unit(0.52, "meters"),
  11726. name: "Foot",
  11727. image: {
  11728. source: "./media/characters/nyanuxk/foot.svg"
  11729. }
  11730. },
  11731. },
  11732. [
  11733. {
  11734. name: "Micro",
  11735. height: math.unit(2, "cm")
  11736. },
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(2.4, "meters"),
  11740. default: true
  11741. },
  11742. {
  11743. name: "Smaller Macro",
  11744. height: math.unit(120, "meters")
  11745. },
  11746. {
  11747. name: "Bigger Macro",
  11748. height: math.unit(1.2, "km")
  11749. },
  11750. {
  11751. name: "Megamacro",
  11752. height: math.unit(15, "kilometers")
  11753. },
  11754. {
  11755. name: "Gigamacro",
  11756. height: math.unit(2000, "km")
  11757. },
  11758. {
  11759. name: "Teramacro",
  11760. height: math.unit(500000, "km")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11766. {
  11767. side: {
  11768. height: math.unit(6, "feet"),
  11769. name: "Side",
  11770. image: {
  11771. source: "./media/characters/ailbhe/side.svg",
  11772. extra: 757 / 464,
  11773. bottom: 0.041
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Normal",
  11780. height: math.unit(1.07, "meters"),
  11781. default: true
  11782. },
  11783. ]
  11784. ))
  11785. characterMakers.push(() => makeCharacter(
  11786. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11787. {
  11788. front: {
  11789. height: math.unit(6, "feet"),
  11790. weight: math.unit(120, "kg"),
  11791. name: "Front",
  11792. image: {
  11793. source: "./media/characters/zevulfius/front.svg",
  11794. extra: 965 / 903
  11795. }
  11796. },
  11797. side: {
  11798. height: math.unit(6, "feet"),
  11799. weight: math.unit(120, "kg"),
  11800. name: "Side",
  11801. image: {
  11802. source: "./media/characters/zevulfius/side.svg",
  11803. extra: 939 / 900
  11804. }
  11805. },
  11806. back: {
  11807. height: math.unit(6, "feet"),
  11808. weight: math.unit(120, "kg"),
  11809. name: "Back",
  11810. image: {
  11811. source: "./media/characters/zevulfius/back.svg",
  11812. extra: 918 / 854,
  11813. bottom: 0.005
  11814. }
  11815. },
  11816. foot: {
  11817. height: math.unit(6 / 3.72, "feet"),
  11818. name: "Foot",
  11819. image: {
  11820. source: "./media/characters/zevulfius/foot.svg"
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Macro",
  11827. height: math.unit(750, "meters")
  11828. },
  11829. {
  11830. name: "Megamacro",
  11831. height: math.unit(20, "km"),
  11832. default: true
  11833. },
  11834. {
  11835. name: "Gigamacro",
  11836. height: math.unit(2000, "km")
  11837. },
  11838. {
  11839. name: "Teramacro",
  11840. height: math.unit(250000, "km")
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(100, "feet"),
  11849. weight: math.unit(350, "kg"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/rikes/front.svg",
  11853. extra: 1565 / 1483,
  11854. bottom: 0.017
  11855. }
  11856. },
  11857. },
  11858. [
  11859. {
  11860. name: "Macro",
  11861. height: math.unit(100, "feet"),
  11862. default: true
  11863. },
  11864. ]
  11865. ))
  11866. characterMakers.push(() => makeCharacter(
  11867. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11868. {
  11869. front: {
  11870. height: math.unit(8, "feet"),
  11871. weight: math.unit(356, "lb"),
  11872. name: "Front",
  11873. image: {
  11874. source: "./media/characters/adam-silver-mane/front.svg",
  11875. extra: 1036/937,
  11876. bottom: 63/1099
  11877. }
  11878. },
  11879. side: {
  11880. height: math.unit(8, "feet"),
  11881. weight: math.unit(356, "lb"),
  11882. name: "Side",
  11883. image: {
  11884. source: "./media/characters/adam-silver-mane/side.svg",
  11885. extra: 997/901,
  11886. bottom: 59/1056
  11887. }
  11888. },
  11889. frontNsfw: {
  11890. height: math.unit(8, "feet"),
  11891. weight: math.unit(356, "lb"),
  11892. name: "Front (NSFW)",
  11893. image: {
  11894. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11895. extra: 1036/937,
  11896. bottom: 63/1099
  11897. }
  11898. },
  11899. sideNsfw: {
  11900. height: math.unit(8, "feet"),
  11901. weight: math.unit(356, "lb"),
  11902. name: "Side (NSFW)",
  11903. image: {
  11904. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11905. extra: 997/901,
  11906. bottom: 59/1056
  11907. }
  11908. },
  11909. dick: {
  11910. height: math.unit(2.1, "feet"),
  11911. name: "Dick",
  11912. image: {
  11913. source: "./media/characters/adam-silver-mane/dick.svg"
  11914. }
  11915. },
  11916. taur: {
  11917. height: math.unit(16, "feet"),
  11918. weight: math.unit(1500, "kg"),
  11919. name: "Taur",
  11920. image: {
  11921. source: "./media/characters/adam-silver-mane/taur.svg",
  11922. extra: 1713 / 1571,
  11923. bottom: 0.01
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Normal",
  11930. height: math.unit(8, "feet")
  11931. },
  11932. {
  11933. name: "Minimacro",
  11934. height: math.unit(80, "feet")
  11935. },
  11936. {
  11937. name: "MDA",
  11938. height: math.unit(80, "meters")
  11939. },
  11940. {
  11941. name: "Macro",
  11942. height: math.unit(800, "feet"),
  11943. default: true
  11944. },
  11945. {
  11946. name: "Megamacro",
  11947. height: math.unit(8000, "feet")
  11948. },
  11949. {
  11950. name: "Gigamacro",
  11951. height: math.unit(800, "miles")
  11952. },
  11953. {
  11954. name: "Teramacro",
  11955. height: math.unit(80000, "miles")
  11956. },
  11957. {
  11958. name: "Celestial",
  11959. height: math.unit(8e6, "miles")
  11960. },
  11961. {
  11962. name: "Star Dragon",
  11963. height: math.unit(800000, "parsecs")
  11964. },
  11965. {
  11966. name: "Godly",
  11967. height: math.unit(800, "teraparsecs")
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11973. {
  11974. front: {
  11975. height: math.unit(6, "feet"),
  11976. weight: math.unit(150, "lb"),
  11977. name: "Front",
  11978. image: {
  11979. source: "./media/characters/ky'owin/front.svg",
  11980. extra: 3862/3053,
  11981. bottom: 74/3936
  11982. }
  11983. },
  11984. },
  11985. [
  11986. {
  11987. name: "Normal",
  11988. height: math.unit(6 + 8 / 12, "feet")
  11989. },
  11990. {
  11991. name: "Large",
  11992. height: math.unit(68, "feet")
  11993. },
  11994. {
  11995. name: "Macro",
  11996. height: math.unit(132, "feet")
  11997. },
  11998. {
  11999. name: "Macro+",
  12000. height: math.unit(340, "feet")
  12001. },
  12002. {
  12003. name: "Macro++",
  12004. height: math.unit(680, "feet"),
  12005. default: true
  12006. },
  12007. {
  12008. name: "Megamacro",
  12009. height: math.unit(1, "mile")
  12010. },
  12011. {
  12012. name: "Megamacro+",
  12013. height: math.unit(10, "miles")
  12014. },
  12015. ]
  12016. ))
  12017. characterMakers.push(() => makeCharacter(
  12018. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12019. {
  12020. front: {
  12021. height: math.unit(4, "feet"),
  12022. weight: math.unit(50, "lb"),
  12023. name: "Front",
  12024. image: {
  12025. source: "./media/characters/mal/front.svg",
  12026. extra: 785 / 724,
  12027. bottom: 0.07
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Micro",
  12034. height: math.unit(4, "inches")
  12035. },
  12036. {
  12037. name: "Normal",
  12038. height: math.unit(4, "feet"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Macro",
  12043. height: math.unit(200, "feet")
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(6, "feet"),
  12052. weight: math.unit(150, "lb"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/jordan-deware/front.svg",
  12056. extra: 1191 / 1012
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Nano",
  12063. height: math.unit(0.01, "mm")
  12064. },
  12065. {
  12066. name: "Minimicro",
  12067. height: math.unit(1, "mm")
  12068. },
  12069. {
  12070. name: "Micro",
  12071. height: math.unit(0.5, "inches")
  12072. },
  12073. {
  12074. name: "Normal",
  12075. height: math.unit(4, "feet"),
  12076. default: true
  12077. },
  12078. {
  12079. name: "Minimacro",
  12080. height: math.unit(40, "meters")
  12081. },
  12082. {
  12083. name: "Small Macro",
  12084. height: math.unit(400, "meters")
  12085. },
  12086. {
  12087. name: "Macro",
  12088. height: math.unit(4, "miles")
  12089. },
  12090. {
  12091. name: "Megamacro",
  12092. height: math.unit(40, "miles")
  12093. },
  12094. {
  12095. name: "Megamacro+",
  12096. height: math.unit(400, "miles")
  12097. },
  12098. {
  12099. name: "Gigamacro",
  12100. height: math.unit(400000, "miles")
  12101. },
  12102. ]
  12103. ))
  12104. characterMakers.push(() => makeCharacter(
  12105. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12106. {
  12107. side: {
  12108. height: math.unit(6, "feet"),
  12109. weight: math.unit(150, "lb"),
  12110. name: "Side",
  12111. image: {
  12112. source: "./media/characters/kimiko/side.svg",
  12113. extra: 600 / 358
  12114. }
  12115. },
  12116. },
  12117. [
  12118. {
  12119. name: "Normal",
  12120. height: math.unit(15, "feet"),
  12121. default: true
  12122. },
  12123. {
  12124. name: "Macro",
  12125. height: math.unit(220, "feet")
  12126. },
  12127. {
  12128. name: "Macro+",
  12129. height: math.unit(1450, "feet")
  12130. },
  12131. {
  12132. name: "Megamacro",
  12133. height: math.unit(11500, "feet")
  12134. },
  12135. {
  12136. name: "Gigamacro",
  12137. height: math.unit(9500, "miles")
  12138. },
  12139. {
  12140. name: "Teramacro",
  12141. height: math.unit(2208005005, "miles")
  12142. },
  12143. {
  12144. name: "Examacro",
  12145. height: math.unit(2750, "parsecs")
  12146. },
  12147. {
  12148. name: "Zettamacro",
  12149. height: math.unit(101500, "parsecs")
  12150. },
  12151. ]
  12152. ))
  12153. characterMakers.push(() => makeCharacter(
  12154. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12155. {
  12156. front: {
  12157. height: math.unit(6, "feet"),
  12158. weight: math.unit(70, "kg"),
  12159. name: "Front",
  12160. image: {
  12161. source: "./media/characters/andrew-sleepy/front.svg"
  12162. }
  12163. },
  12164. side: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(70, "kg"),
  12167. name: "Side",
  12168. image: {
  12169. source: "./media/characters/andrew-sleepy/side.svg"
  12170. }
  12171. },
  12172. },
  12173. [
  12174. {
  12175. name: "Micro",
  12176. height: math.unit(1, "mm"),
  12177. default: true
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(6, "feet"),
  12186. weight: math.unit(150, "lb"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/judio/front.svg",
  12190. extra: 1258 / 1110
  12191. }
  12192. },
  12193. },
  12194. [
  12195. {
  12196. name: "Normal",
  12197. height: math.unit(5 + 6 / 12, "feet")
  12198. },
  12199. {
  12200. name: "Macro",
  12201. height: math.unit(1000, "feet"),
  12202. default: true
  12203. },
  12204. {
  12205. name: "Megamacro",
  12206. height: math.unit(10, "miles")
  12207. },
  12208. ]
  12209. ))
  12210. characterMakers.push(() => makeCharacter(
  12211. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12212. {
  12213. frontDressed: {
  12214. height: math.unit(6, "feet"),
  12215. weight: math.unit(68, "kg"),
  12216. name: "Front (Dressed)",
  12217. image: {
  12218. source: "./media/characters/nomaxice/front-dressed.svg",
  12219. extra: 1137/824,
  12220. bottom: 74/1211
  12221. }
  12222. },
  12223. frontShorts: {
  12224. height: math.unit(6, "feet"),
  12225. weight: math.unit(68, "kg"),
  12226. name: "Front (Shorts)",
  12227. image: {
  12228. source: "./media/characters/nomaxice/front-shorts.svg",
  12229. extra: 1137/824,
  12230. bottom: 74/1211
  12231. }
  12232. },
  12233. back: {
  12234. height: math.unit(6, "feet"),
  12235. weight: math.unit(68, "kg"),
  12236. name: "Back",
  12237. image: {
  12238. source: "./media/characters/nomaxice/back.svg",
  12239. extra: 822/786,
  12240. bottom: 39/861
  12241. }
  12242. },
  12243. hand: {
  12244. height: math.unit(0.565, "feet"),
  12245. name: "Hand",
  12246. image: {
  12247. source: "./media/characters/nomaxice/hand.svg"
  12248. }
  12249. },
  12250. foot: {
  12251. height: math.unit(1, "feet"),
  12252. name: "Foot",
  12253. image: {
  12254. source: "./media/characters/nomaxice/foot.svg"
  12255. }
  12256. },
  12257. },
  12258. [
  12259. {
  12260. name: "Micro",
  12261. height: math.unit(8, "cm")
  12262. },
  12263. {
  12264. name: "Norm",
  12265. height: math.unit(1.82, "m")
  12266. },
  12267. {
  12268. name: "Norm+",
  12269. height: math.unit(8.8, "feet"),
  12270. default: true
  12271. },
  12272. {
  12273. name: "Big",
  12274. height: math.unit(8, "meters")
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(18, "meters")
  12279. },
  12280. {
  12281. name: "Macro+",
  12282. height: math.unit(88, "meters")
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12288. {
  12289. front: {
  12290. height: math.unit(12, "feet"),
  12291. weight: math.unit(1.5, "tons"),
  12292. name: "Front",
  12293. image: {
  12294. source: "./media/characters/dydros/front.svg",
  12295. extra: 863 / 800,
  12296. bottom: 0.015
  12297. }
  12298. },
  12299. back: {
  12300. height: math.unit(12, "feet"),
  12301. weight: math.unit(1.5, "tons"),
  12302. name: "Back",
  12303. image: {
  12304. source: "./media/characters/dydros/back.svg",
  12305. extra: 900 / 843,
  12306. bottom: 0.005
  12307. }
  12308. },
  12309. },
  12310. [
  12311. {
  12312. name: "Normal",
  12313. height: math.unit(12, "feet"),
  12314. default: true
  12315. },
  12316. ]
  12317. ))
  12318. characterMakers.push(() => makeCharacter(
  12319. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12320. {
  12321. front: {
  12322. height: math.unit(6, "feet"),
  12323. weight: math.unit(100, "kg"),
  12324. name: "Front",
  12325. image: {
  12326. source: "./media/characters/riggi/front.svg",
  12327. extra: 5787 / 5303
  12328. }
  12329. },
  12330. hyper: {
  12331. height: math.unit(6 * 5 / 3, "feet"),
  12332. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12333. name: "Hyper",
  12334. image: {
  12335. source: "./media/characters/riggi/hyper.svg",
  12336. extra: 3595 / 3485
  12337. }
  12338. },
  12339. },
  12340. [
  12341. {
  12342. name: "Small Macro",
  12343. height: math.unit(50, "feet")
  12344. },
  12345. {
  12346. name: "Default",
  12347. height: math.unit(200, "feet"),
  12348. default: true
  12349. },
  12350. {
  12351. name: "Loom",
  12352. height: math.unit(10000, "feet")
  12353. },
  12354. {
  12355. name: "Cruising Altitude",
  12356. height: math.unit(30000, "feet")
  12357. },
  12358. {
  12359. name: "Megamacro",
  12360. height: math.unit(100, "miles")
  12361. },
  12362. {
  12363. name: "Continent Sized",
  12364. height: math.unit(2800, "miles")
  12365. },
  12366. {
  12367. name: "Earth Sized",
  12368. height: math.unit(8000, "miles")
  12369. },
  12370. ]
  12371. ))
  12372. characterMakers.push(() => makeCharacter(
  12373. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12374. {
  12375. front: {
  12376. height: math.unit(6, "feet"),
  12377. weight: math.unit(250, "lb"),
  12378. name: "Front",
  12379. image: {
  12380. source: "./media/characters/alexi/front.svg",
  12381. extra: 3483 / 3291,
  12382. bottom: 0.04
  12383. }
  12384. },
  12385. back: {
  12386. height: math.unit(6, "feet"),
  12387. weight: math.unit(250, "lb"),
  12388. name: "Back",
  12389. image: {
  12390. source: "./media/characters/alexi/back.svg",
  12391. extra: 3533 / 3356,
  12392. bottom: 0.021
  12393. }
  12394. },
  12395. frontTransforming: {
  12396. height: math.unit(8.58, "feet"),
  12397. weight: math.unit(1300, "lb"),
  12398. name: "Transforming",
  12399. image: {
  12400. source: "./media/characters/alexi/front-transforming.svg",
  12401. extra: 437 / 409,
  12402. bottom: 19 / 458.66
  12403. }
  12404. },
  12405. frontTransformed: {
  12406. height: math.unit(12.5, "feet"),
  12407. weight: math.unit(4000, "lb"),
  12408. name: "Transformed",
  12409. image: {
  12410. source: "./media/characters/alexi/front-transformed.svg",
  12411. extra: 639 / 614,
  12412. bottom: 30.55 / 671
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Normal",
  12419. height: math.unit(14, "feet"),
  12420. default: true
  12421. },
  12422. {
  12423. name: "Minimacro",
  12424. height: math.unit(30, "meters")
  12425. },
  12426. {
  12427. name: "Macro",
  12428. height: math.unit(500, "meters")
  12429. },
  12430. {
  12431. name: "Megamacro",
  12432. height: math.unit(9000, "km")
  12433. },
  12434. {
  12435. name: "Teramacro",
  12436. height: math.unit(384000, "km")
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(6, "feet"),
  12445. weight: math.unit(150, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/kayroo/front.svg",
  12449. extra: 1153 / 1038,
  12450. bottom: 0.06
  12451. }
  12452. },
  12453. foot: {
  12454. height: math.unit(6, "feet"),
  12455. weight: math.unit(150, "lb"),
  12456. name: "Foot",
  12457. image: {
  12458. source: "./media/characters/kayroo/foot.svg"
  12459. }
  12460. },
  12461. },
  12462. [
  12463. {
  12464. name: "Normal",
  12465. height: math.unit(8, "feet"),
  12466. default: true
  12467. },
  12468. {
  12469. name: "Minimacro",
  12470. height: math.unit(250, "feet")
  12471. },
  12472. {
  12473. name: "Macro",
  12474. height: math.unit(2800, "feet")
  12475. },
  12476. {
  12477. name: "Megamacro",
  12478. height: math.unit(5200, "feet")
  12479. },
  12480. {
  12481. name: "Gigamacro",
  12482. height: math.unit(27000, "feet")
  12483. },
  12484. {
  12485. name: "Omega",
  12486. height: math.unit(45000, "feet")
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12492. {
  12493. front: {
  12494. height: math.unit(18, "feet"),
  12495. weight: math.unit(5800, "lb"),
  12496. name: "Front",
  12497. image: {
  12498. source: "./media/characters/rhys/front.svg",
  12499. extra: 3386 / 3090,
  12500. bottom: 0.07
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(18, "feet"),
  12508. default: true
  12509. },
  12510. {
  12511. name: "Working Size",
  12512. height: math.unit(200, "feet")
  12513. },
  12514. {
  12515. name: "Demolition Size",
  12516. height: math.unit(2000, "feet")
  12517. },
  12518. {
  12519. name: "Maximum Licensed Size",
  12520. height: math.unit(5, "miles")
  12521. },
  12522. {
  12523. name: "Maximum Observed Size",
  12524. height: math.unit(10, "yottameters")
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12530. {
  12531. front: {
  12532. height: math.unit(6, "feet"),
  12533. weight: math.unit(250, "lb"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/toto/front.svg",
  12537. extra: 527 / 479,
  12538. bottom: 0.05
  12539. }
  12540. },
  12541. },
  12542. [
  12543. {
  12544. name: "Micro",
  12545. height: math.unit(3, "feet")
  12546. },
  12547. {
  12548. name: "Normal",
  12549. height: math.unit(10, "feet")
  12550. },
  12551. {
  12552. name: "Macro",
  12553. height: math.unit(150, "feet"),
  12554. default: true
  12555. },
  12556. {
  12557. name: "Megamacro",
  12558. height: math.unit(1200, "feet")
  12559. },
  12560. ]
  12561. ))
  12562. characterMakers.push(() => makeCharacter(
  12563. { name: "King", species: ["lion"], tags: ["anthro"] },
  12564. {
  12565. back: {
  12566. height: math.unit(6, "feet"),
  12567. weight: math.unit(150, "lb"),
  12568. name: "Back",
  12569. image: {
  12570. source: "./media/characters/king/back.svg"
  12571. }
  12572. },
  12573. },
  12574. [
  12575. {
  12576. name: "Micro",
  12577. height: math.unit(2, "inches")
  12578. },
  12579. {
  12580. name: "Normal",
  12581. height: math.unit(8, "feet")
  12582. },
  12583. {
  12584. name: "Macro",
  12585. height: math.unit(200, "feet"),
  12586. default: true
  12587. },
  12588. {
  12589. name: "Megamacro",
  12590. height: math.unit(50, "miles")
  12591. },
  12592. ]
  12593. ))
  12594. characterMakers.push(() => makeCharacter(
  12595. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12596. {
  12597. front: {
  12598. height: math.unit(11, "feet"),
  12599. weight: math.unit(1400, "lb"),
  12600. name: "Front",
  12601. image: {
  12602. source: "./media/characters/cordite/front.svg",
  12603. extra: 1919/1827,
  12604. bottom: 40/1959
  12605. }
  12606. },
  12607. side: {
  12608. height: math.unit(11, "feet"),
  12609. weight: math.unit(1400, "lb"),
  12610. name: "Side",
  12611. image: {
  12612. source: "./media/characters/cordite/side.svg",
  12613. extra: 1908/1793,
  12614. bottom: 38/1946
  12615. }
  12616. },
  12617. back: {
  12618. height: math.unit(11, "feet"),
  12619. weight: math.unit(1400, "lb"),
  12620. name: "Back",
  12621. image: {
  12622. source: "./media/characters/cordite/back.svg",
  12623. extra: 1938/1837,
  12624. bottom: 10/1948
  12625. }
  12626. },
  12627. feral: {
  12628. height: math.unit(2, "feet"),
  12629. weight: math.unit(90, "lb"),
  12630. name: "Feral",
  12631. image: {
  12632. source: "./media/characters/cordite/feral.svg",
  12633. extra: 1260 / 755,
  12634. bottom: 0.05
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Normal",
  12641. height: math.unit(11, "feet"),
  12642. default: true
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(6, "feet"),
  12651. weight: math.unit(150, "lb"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/pianostrong/front.svg",
  12655. extra: 6577 / 6254,
  12656. bottom: 0.02
  12657. }
  12658. },
  12659. side: {
  12660. height: math.unit(6, "feet"),
  12661. weight: math.unit(150, "lb"),
  12662. name: "Side",
  12663. image: {
  12664. source: "./media/characters/pianostrong/side.svg",
  12665. extra: 6106 / 5730
  12666. }
  12667. },
  12668. back: {
  12669. height: math.unit(6, "feet"),
  12670. weight: math.unit(150, "lb"),
  12671. name: "Back",
  12672. image: {
  12673. source: "./media/characters/pianostrong/back.svg",
  12674. extra: 6085 / 5733,
  12675. bottom: 0.01
  12676. }
  12677. },
  12678. },
  12679. [
  12680. {
  12681. name: "Macro",
  12682. height: math.unit(100, "feet")
  12683. },
  12684. {
  12685. name: "Macro+",
  12686. height: math.unit(300, "feet"),
  12687. default: true
  12688. },
  12689. {
  12690. name: "Macro++",
  12691. height: math.unit(1000, "feet")
  12692. },
  12693. ]
  12694. ))
  12695. characterMakers.push(() => makeCharacter(
  12696. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12697. {
  12698. front: {
  12699. height: math.unit(6, "feet"),
  12700. weight: math.unit(150, "lb"),
  12701. name: "Front",
  12702. image: {
  12703. source: "./media/characters/kona/front.svg",
  12704. extra: 2960 / 2629,
  12705. bottom: 0.005
  12706. }
  12707. },
  12708. },
  12709. [
  12710. {
  12711. name: "Normal",
  12712. height: math.unit(11 + 8 / 12, "feet")
  12713. },
  12714. {
  12715. name: "Macro",
  12716. height: math.unit(850, "feet"),
  12717. default: true
  12718. },
  12719. {
  12720. name: "Macro+",
  12721. height: math.unit(1.5, "km"),
  12722. default: true
  12723. },
  12724. {
  12725. name: "Megamacro",
  12726. height: math.unit(80, "miles")
  12727. },
  12728. {
  12729. name: "Gigamacro",
  12730. height: math.unit(3500, "miles")
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12736. {
  12737. side: {
  12738. height: math.unit(1.9, "meters"),
  12739. weight: math.unit(326, "kg"),
  12740. name: "Side",
  12741. image: {
  12742. source: "./media/characters/levi/side.svg",
  12743. extra: 1704 / 1334,
  12744. bottom: 0.02
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Normal",
  12751. height: math.unit(1.9, "meters"),
  12752. default: true
  12753. },
  12754. {
  12755. name: "Macro",
  12756. height: math.unit(20, "meters")
  12757. },
  12758. {
  12759. name: "Macro+",
  12760. height: math.unit(200, "meters")
  12761. },
  12762. {
  12763. name: "Megamacro",
  12764. height: math.unit(2, "km")
  12765. },
  12766. {
  12767. name: "Megamacro+",
  12768. height: math.unit(20, "km")
  12769. },
  12770. {
  12771. name: "Gigamacro",
  12772. height: math.unit(2500, "km")
  12773. },
  12774. {
  12775. name: "Gigamacro+",
  12776. height: math.unit(120000, "km")
  12777. },
  12778. {
  12779. name: "Teramacro",
  12780. height: math.unit(7.77e6, "km")
  12781. },
  12782. ]
  12783. ))
  12784. characterMakers.push(() => makeCharacter(
  12785. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12786. {
  12787. front: {
  12788. height: math.unit(6 + 4/12, "feet"),
  12789. weight: math.unit(190, "lb"),
  12790. name: "Front",
  12791. image: {
  12792. source: "./media/characters/bmc/front.svg",
  12793. extra: 1626/1472,
  12794. bottom: 79/1705
  12795. }
  12796. },
  12797. back: {
  12798. height: math.unit(6 + 4/12, "feet"),
  12799. weight: math.unit(190, "lb"),
  12800. name: "Back",
  12801. image: {
  12802. source: "./media/characters/bmc/back.svg",
  12803. extra: 1640/1479,
  12804. bottom: 45/1685
  12805. }
  12806. },
  12807. frontArmor: {
  12808. height: math.unit(6 + 4/12, "feet"),
  12809. weight: math.unit(190, "lb"),
  12810. name: "Front-armor",
  12811. image: {
  12812. source: "./media/characters/bmc/front-armor.svg",
  12813. extra: 1538/1468,
  12814. bottom: 79/1617
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Human-sized",
  12821. height: math.unit(6 + 4 / 12, "feet")
  12822. },
  12823. {
  12824. name: "Interactive Size",
  12825. height: math.unit(25, "feet")
  12826. },
  12827. {
  12828. name: "Small",
  12829. height: math.unit(250, "feet")
  12830. },
  12831. {
  12832. name: "Normal",
  12833. height: math.unit(1250, "feet"),
  12834. default: true
  12835. },
  12836. {
  12837. name: "Good Day",
  12838. height: math.unit(88, "miles")
  12839. },
  12840. {
  12841. name: "Largest Measured Size",
  12842. height: math.unit(105.960, "galaxies")
  12843. },
  12844. ]
  12845. ))
  12846. characterMakers.push(() => makeCharacter(
  12847. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12848. {
  12849. front: {
  12850. height: math.unit(20, "feet"),
  12851. weight: math.unit(2016, "kg"),
  12852. name: "Front",
  12853. image: {
  12854. source: "./media/characters/sven-the-kaiju/front.svg",
  12855. extra: 1277/1250,
  12856. bottom: 35/1312
  12857. }
  12858. },
  12859. mouth: {
  12860. height: math.unit(1.85, "feet"),
  12861. name: "Mouth",
  12862. image: {
  12863. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Fairy",
  12870. height: math.unit(6, "inches")
  12871. },
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(20, "feet"),
  12875. default: true
  12876. },
  12877. {
  12878. name: "Rampage",
  12879. height: math.unit(200, "feet")
  12880. },
  12881. {
  12882. name: "Archfey Forest Guardian",
  12883. height: math.unit(1, "mile")
  12884. },
  12885. ]
  12886. ))
  12887. characterMakers.push(() => makeCharacter(
  12888. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12889. {
  12890. front: {
  12891. height: math.unit(4, "meters"),
  12892. weight: math.unit(2, "tons"),
  12893. name: "Front",
  12894. image: {
  12895. source: "./media/characters/marik/front.svg",
  12896. extra: 1057 / 1003,
  12897. bottom: 0.08
  12898. }
  12899. },
  12900. },
  12901. [
  12902. {
  12903. name: "Normal",
  12904. height: math.unit(4, "meters"),
  12905. default: true
  12906. },
  12907. {
  12908. name: "Macro",
  12909. height: math.unit(20, "meters")
  12910. },
  12911. {
  12912. name: "Megamacro",
  12913. height: math.unit(50, "km")
  12914. },
  12915. {
  12916. name: "Gigamacro",
  12917. height: math.unit(100, "km")
  12918. },
  12919. {
  12920. name: "Alpha Macro",
  12921. height: math.unit(7.88e7, "yottameters")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(6, "feet"),
  12930. weight: math.unit(110, "lb"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/mel/front.svg",
  12934. extra: 736 / 617,
  12935. bottom: 0.017
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Pico",
  12942. height: math.unit(3, "pm")
  12943. },
  12944. {
  12945. name: "Nano",
  12946. height: math.unit(3, "nm")
  12947. },
  12948. {
  12949. name: "Micro",
  12950. height: math.unit(0.3, "mm"),
  12951. default: true
  12952. },
  12953. {
  12954. name: "Micro+",
  12955. height: math.unit(3, "mm")
  12956. },
  12957. {
  12958. name: "Normal",
  12959. height: math.unit(5 + 10.5 / 12, "feet")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12965. {
  12966. kaiju: {
  12967. height: math.unit(1.75, "meters"),
  12968. weight: math.unit(55, "kg"),
  12969. name: "Kaiju",
  12970. image: {
  12971. source: "./media/characters/lykonous/kaiju.svg",
  12972. extra: 1055 / 946,
  12973. bottom: 0.135
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Normal",
  12980. height: math.unit(2.5, "meters"),
  12981. default: true
  12982. },
  12983. {
  12984. name: "Kaiju Dragon",
  12985. height: math.unit(60, "meters")
  12986. },
  12987. {
  12988. name: "Mega Kaiju",
  12989. height: math.unit(120, "km")
  12990. },
  12991. {
  12992. name: "Giga Kaiju",
  12993. height: math.unit(200, "megameters")
  12994. },
  12995. {
  12996. name: "Terra Kaiju",
  12997. height: math.unit(400, "gigameters")
  12998. },
  12999. {
  13000. name: "Kaiju Dragon God",
  13001. height: math.unit(13000, "exaparsecs")
  13002. },
  13003. ]
  13004. ))
  13005. characterMakers.push(() => makeCharacter(
  13006. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13007. {
  13008. front: {
  13009. height: math.unit(6, "feet"),
  13010. weight: math.unit(150, "lb"),
  13011. name: "Front",
  13012. image: {
  13013. source: "./media/characters/blü/front.svg",
  13014. extra: 1883 / 1564,
  13015. bottom: 0.031
  13016. }
  13017. },
  13018. },
  13019. [
  13020. {
  13021. name: "Normal",
  13022. height: math.unit(13, "feet"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Big Boi",
  13027. height: math.unit(150, "meters")
  13028. },
  13029. {
  13030. name: "Mini Stomper",
  13031. height: math.unit(300, "meters")
  13032. },
  13033. {
  13034. name: "Macro",
  13035. height: math.unit(1000, "meters")
  13036. },
  13037. {
  13038. name: "Megamacro",
  13039. height: math.unit(11000, "meters")
  13040. },
  13041. {
  13042. name: "Gigamacro",
  13043. height: math.unit(11000, "km")
  13044. },
  13045. {
  13046. name: "Teramacro",
  13047. height: math.unit(420000, "km")
  13048. },
  13049. {
  13050. name: "Examacro",
  13051. height: math.unit(120, "parsecs")
  13052. },
  13053. {
  13054. name: "God Tho",
  13055. height: math.unit(98000000000, "parsecs")
  13056. },
  13057. ]
  13058. ))
  13059. characterMakers.push(() => makeCharacter(
  13060. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13061. {
  13062. taurFront: {
  13063. height: math.unit(6, "feet"),
  13064. weight: math.unit(200, "lb"),
  13065. name: "Taur (Front)",
  13066. image: {
  13067. source: "./media/characters/scales/taur-front.svg",
  13068. extra: 1,
  13069. bottom: 0.05
  13070. }
  13071. },
  13072. taurBack: {
  13073. height: math.unit(6, "feet"),
  13074. weight: math.unit(200, "lb"),
  13075. name: "Taur (Back)",
  13076. image: {
  13077. source: "./media/characters/scales/taur-back.svg",
  13078. extra: 1,
  13079. bottom: 0.08
  13080. }
  13081. },
  13082. anthro: {
  13083. height: math.unit(6 * 7 / 12, "feet"),
  13084. weight: math.unit(100, "lb"),
  13085. name: "Anthro",
  13086. image: {
  13087. source: "./media/characters/scales/anthro.svg",
  13088. extra: 1,
  13089. bottom: 0.06
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Normal",
  13096. height: math.unit(12, "feet"),
  13097. default: true
  13098. },
  13099. ]
  13100. ))
  13101. characterMakers.push(() => makeCharacter(
  13102. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13103. {
  13104. front: {
  13105. height: math.unit(6, "feet"),
  13106. weight: math.unit(150, "lb"),
  13107. name: "Front",
  13108. image: {
  13109. source: "./media/characters/koragos/front.svg",
  13110. extra: 841 / 794,
  13111. bottom: 0.035
  13112. }
  13113. },
  13114. back: {
  13115. height: math.unit(6, "feet"),
  13116. weight: math.unit(150, "lb"),
  13117. name: "Back",
  13118. image: {
  13119. source: "./media/characters/koragos/back.svg",
  13120. extra: 841 / 810,
  13121. bottom: 0.022
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "Normal",
  13128. height: math.unit(6 + 11 / 12, "feet"),
  13129. default: true
  13130. },
  13131. {
  13132. name: "Macro",
  13133. height: math.unit(490, "feet")
  13134. },
  13135. {
  13136. name: "Megamacro",
  13137. height: math.unit(10, "miles")
  13138. },
  13139. {
  13140. name: "Gigamacro",
  13141. height: math.unit(50, "miles")
  13142. },
  13143. ]
  13144. ))
  13145. characterMakers.push(() => makeCharacter(
  13146. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13147. {
  13148. front: {
  13149. height: math.unit(6, "feet"),
  13150. weight: math.unit(250, "lb"),
  13151. name: "Front",
  13152. image: {
  13153. source: "./media/characters/xylrem/front.svg",
  13154. extra: 3323 / 3050,
  13155. bottom: 0.065
  13156. }
  13157. },
  13158. },
  13159. [
  13160. {
  13161. name: "Micro",
  13162. height: math.unit(4, "feet")
  13163. },
  13164. {
  13165. name: "Normal",
  13166. height: math.unit(16, "feet"),
  13167. default: true
  13168. },
  13169. {
  13170. name: "Macro",
  13171. height: math.unit(2720, "feet")
  13172. },
  13173. {
  13174. name: "Megamacro",
  13175. height: math.unit(25000, "miles")
  13176. },
  13177. ]
  13178. ))
  13179. characterMakers.push(() => makeCharacter(
  13180. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13181. {
  13182. front: {
  13183. height: math.unit(8, "feet"),
  13184. weight: math.unit(250, "kg"),
  13185. name: "Front",
  13186. image: {
  13187. source: "./media/characters/ikideru/front.svg",
  13188. extra: 930 / 870,
  13189. bottom: 0.087
  13190. }
  13191. },
  13192. back: {
  13193. height: math.unit(8, "feet"),
  13194. weight: math.unit(250, "kg"),
  13195. name: "Back",
  13196. image: {
  13197. source: "./media/characters/ikideru/back.svg",
  13198. extra: 919 / 852,
  13199. bottom: 0.055
  13200. }
  13201. },
  13202. },
  13203. [
  13204. {
  13205. name: "Rare",
  13206. height: math.unit(8, "feet"),
  13207. default: true
  13208. },
  13209. {
  13210. name: "Playful Loom",
  13211. height: math.unit(80, "feet")
  13212. },
  13213. {
  13214. name: "City Leaner",
  13215. height: math.unit(230, "feet")
  13216. },
  13217. {
  13218. name: "Megamacro",
  13219. height: math.unit(2500, "feet")
  13220. },
  13221. {
  13222. name: "Gigamacro",
  13223. height: math.unit(26400, "feet")
  13224. },
  13225. {
  13226. name: "Tectonic Shifter",
  13227. height: math.unit(1.7, "megameters")
  13228. },
  13229. {
  13230. name: "Planet Carer",
  13231. height: math.unit(21, "megameters")
  13232. },
  13233. {
  13234. name: "God",
  13235. height: math.unit(11157.22, "parsecs")
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13241. {
  13242. front: {
  13243. height: math.unit(6, "feet"),
  13244. weight: math.unit(120, "lb"),
  13245. name: "Front",
  13246. image: {
  13247. source: "./media/characters/neo/front.svg"
  13248. }
  13249. },
  13250. },
  13251. [
  13252. {
  13253. name: "Micro",
  13254. height: math.unit(2, "inches"),
  13255. default: true
  13256. },
  13257. {
  13258. name: "Human Size",
  13259. height: math.unit(5 + 8 / 12, "feet")
  13260. },
  13261. ]
  13262. ))
  13263. characterMakers.push(() => makeCharacter(
  13264. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13265. {
  13266. front: {
  13267. height: math.unit(13 + 10 / 12, "feet"),
  13268. weight: math.unit(5320, "lb"),
  13269. name: "Front",
  13270. image: {
  13271. source: "./media/characters/chauncey-chantz/front.svg",
  13272. extra: 1587 / 1435,
  13273. bottom: 0.02
  13274. }
  13275. },
  13276. },
  13277. [
  13278. {
  13279. name: "Normal",
  13280. height: math.unit(13 + 10 / 12, "feet"),
  13281. default: true
  13282. },
  13283. {
  13284. name: "Macro",
  13285. height: math.unit(45, "feet")
  13286. },
  13287. {
  13288. name: "Megamacro",
  13289. height: math.unit(250, "miles")
  13290. },
  13291. {
  13292. name: "Planetary",
  13293. height: math.unit(10000, "miles")
  13294. },
  13295. {
  13296. name: "Galactic",
  13297. height: math.unit(40000, "parsecs")
  13298. },
  13299. {
  13300. name: "Universal",
  13301. height: math.unit(1, "yottameter")
  13302. },
  13303. ]
  13304. ))
  13305. characterMakers.push(() => makeCharacter(
  13306. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13307. {
  13308. front: {
  13309. height: math.unit(6, "feet"),
  13310. weight: math.unit(150, "lb"),
  13311. name: "Front",
  13312. image: {
  13313. source: "./media/characters/epifox/front.svg",
  13314. extra: 1,
  13315. bottom: 0.075
  13316. }
  13317. },
  13318. },
  13319. [
  13320. {
  13321. name: "Micro",
  13322. height: math.unit(6, "inches")
  13323. },
  13324. {
  13325. name: "Normal",
  13326. height: math.unit(12, "feet"),
  13327. default: true
  13328. },
  13329. {
  13330. name: "Macro",
  13331. height: math.unit(3810, "feet")
  13332. },
  13333. {
  13334. name: "Megamacro",
  13335. height: math.unit(500, "miles")
  13336. },
  13337. ]
  13338. ))
  13339. characterMakers.push(() => makeCharacter(
  13340. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13341. {
  13342. front: {
  13343. height: math.unit(1.8796, "m"),
  13344. weight: math.unit(230, "lb"),
  13345. name: "Front",
  13346. image: {
  13347. source: "./media/characters/colin-t/front.svg",
  13348. extra: 1272 / 1193,
  13349. bottom: 0.07
  13350. }
  13351. },
  13352. },
  13353. [
  13354. {
  13355. name: "Micro",
  13356. height: math.unit(0.571, "meters")
  13357. },
  13358. {
  13359. name: "Normal",
  13360. height: math.unit(1.8796, "meters"),
  13361. default: true
  13362. },
  13363. {
  13364. name: "Tall",
  13365. height: math.unit(4, "meters")
  13366. },
  13367. {
  13368. name: "Macro",
  13369. height: math.unit(67.241, "meters")
  13370. },
  13371. {
  13372. name: "Megamacro",
  13373. height: math.unit(371.856, "meters")
  13374. },
  13375. {
  13376. name: "Planetary",
  13377. height: math.unit(12631.5689, "km")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13383. {
  13384. front: {
  13385. height: math.unit(1.85, "meters"),
  13386. weight: math.unit(80, "kg"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/matvei/front.svg",
  13390. extra: 456/447,
  13391. bottom: 8/464
  13392. }
  13393. },
  13394. back: {
  13395. height: math.unit(1.85, "meters"),
  13396. weight: math.unit(80, "kg"),
  13397. name: "Back",
  13398. image: {
  13399. source: "./media/characters/matvei/back.svg",
  13400. extra: 434/427,
  13401. bottom: 11/445
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Normal",
  13408. height: math.unit(1.85, "meters"),
  13409. default: true
  13410. },
  13411. ]
  13412. ))
  13413. characterMakers.push(() => makeCharacter(
  13414. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13415. {
  13416. front: {
  13417. height: math.unit(5 + 9 / 12, "feet"),
  13418. weight: math.unit(70, "lb"),
  13419. name: "Front",
  13420. image: {
  13421. source: "./media/characters/quincy/front.svg",
  13422. extra: 3041 / 2751
  13423. }
  13424. },
  13425. back: {
  13426. height: math.unit(5 + 9 / 12, "feet"),
  13427. weight: math.unit(70, "lb"),
  13428. name: "Back",
  13429. image: {
  13430. source: "./media/characters/quincy/back.svg",
  13431. extra: 3041 / 2751
  13432. }
  13433. },
  13434. flying: {
  13435. height: math.unit(5 + 4 / 12, "feet"),
  13436. weight: math.unit(70, "lb"),
  13437. name: "Flying",
  13438. image: {
  13439. source: "./media/characters/quincy/flying.svg",
  13440. extra: 1044 / 930
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Micro",
  13447. height: math.unit(3, "cm")
  13448. },
  13449. {
  13450. name: "Normal",
  13451. height: math.unit(5 + 9 / 12, "feet")
  13452. },
  13453. {
  13454. name: "Macro",
  13455. height: math.unit(200, "meters"),
  13456. default: true
  13457. },
  13458. {
  13459. name: "Megamacro",
  13460. height: math.unit(1000, "meters")
  13461. },
  13462. ]
  13463. ))
  13464. characterMakers.push(() => makeCharacter(
  13465. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13466. {
  13467. front: {
  13468. height: math.unit(3 + 11/12, "feet"),
  13469. weight: math.unit(50, "lb"),
  13470. name: "Front",
  13471. image: {
  13472. source: "./media/characters/vanrel/front.svg",
  13473. extra: 1104/949,
  13474. bottom: 52/1156
  13475. }
  13476. },
  13477. back: {
  13478. height: math.unit(3 + 11/12, "feet"),
  13479. weight: math.unit(50, "lb"),
  13480. name: "Back",
  13481. image: {
  13482. source: "./media/characters/vanrel/back.svg",
  13483. extra: 1119/976,
  13484. bottom: 37/1156
  13485. }
  13486. },
  13487. tome: {
  13488. height: math.unit(1.35, "feet"),
  13489. weight: math.unit(10, "lb"),
  13490. name: "Vanrel's Tome",
  13491. rename: true,
  13492. image: {
  13493. source: "./media/characters/vanrel/tome.svg"
  13494. }
  13495. },
  13496. beans: {
  13497. height: math.unit(0.89, "feet"),
  13498. name: "Beans",
  13499. image: {
  13500. source: "./media/characters/vanrel/beans.svg"
  13501. }
  13502. },
  13503. },
  13504. [
  13505. {
  13506. name: "Normal",
  13507. height: math.unit(3 + 11/12, "feet"),
  13508. default: true
  13509. },
  13510. ]
  13511. ))
  13512. characterMakers.push(() => makeCharacter(
  13513. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13514. {
  13515. front: {
  13516. height: math.unit(7 + 5 / 12, "feet"),
  13517. name: "Front",
  13518. image: {
  13519. source: "./media/characters/kuiper-vanrel/front.svg",
  13520. extra: 1219/1169,
  13521. bottom: 69/1288
  13522. }
  13523. },
  13524. back: {
  13525. height: math.unit(7 + 5 / 12, "feet"),
  13526. name: "Back",
  13527. image: {
  13528. source: "./media/characters/kuiper-vanrel/back.svg",
  13529. extra: 1236/1193,
  13530. bottom: 27/1263
  13531. }
  13532. },
  13533. foot: {
  13534. height: math.unit(0.55, "meters"),
  13535. name: "Foot",
  13536. image: {
  13537. source: "./media/characters/kuiper-vanrel/foot.svg",
  13538. }
  13539. },
  13540. battle: {
  13541. height: math.unit(6.824, "feet"),
  13542. name: "Battle",
  13543. image: {
  13544. source: "./media/characters/kuiper-vanrel/battle.svg",
  13545. extra: 1466 / 1327,
  13546. bottom: 29 / 1492.5
  13547. }
  13548. },
  13549. meerkui: {
  13550. height: math.unit(18, "inches"),
  13551. name: "Meerkui",
  13552. image: {
  13553. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13554. extra: 1354/1289,
  13555. bottom: 69/1423
  13556. }
  13557. },
  13558. },
  13559. [
  13560. {
  13561. name: "Normal",
  13562. height: math.unit(7 + 5 / 12, "feet"),
  13563. default: true
  13564. },
  13565. ]
  13566. ))
  13567. characterMakers.push(() => makeCharacter(
  13568. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13569. {
  13570. front: {
  13571. height: math.unit(8 + 5 / 12, "feet"),
  13572. name: "Front",
  13573. image: {
  13574. source: "./media/characters/keset-vanrel/front.svg",
  13575. extra: 1231/1148,
  13576. bottom: 82/1313
  13577. }
  13578. },
  13579. back: {
  13580. height: math.unit(8 + 5 / 12, "feet"),
  13581. name: "Back",
  13582. image: {
  13583. source: "./media/characters/keset-vanrel/back.svg",
  13584. extra: 1240/1174,
  13585. bottom: 33/1273
  13586. }
  13587. },
  13588. hand: {
  13589. height: math.unit(0.6, "meters"),
  13590. name: "Hand",
  13591. image: {
  13592. source: "./media/characters/keset-vanrel/hand.svg"
  13593. }
  13594. },
  13595. foot: {
  13596. height: math.unit(0.94978, "meters"),
  13597. name: "Foot",
  13598. image: {
  13599. source: "./media/characters/keset-vanrel/foot.svg"
  13600. }
  13601. },
  13602. battle: {
  13603. height: math.unit(7.408, "feet"),
  13604. name: "Battle",
  13605. image: {
  13606. source: "./media/characters/keset-vanrel/battle.svg",
  13607. extra: 1890 / 1386,
  13608. bottom: 73.28 / 1970
  13609. }
  13610. },
  13611. },
  13612. [
  13613. {
  13614. name: "Normal",
  13615. height: math.unit(8 + 5 / 12, "feet"),
  13616. default: true
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(6, "feet"),
  13625. weight: math.unit(150, "lb"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/neos/front.svg",
  13629. extra: 1696 / 992,
  13630. bottom: 0.14
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Normal",
  13637. height: math.unit(54, "cm"),
  13638. default: true
  13639. },
  13640. {
  13641. name: "Macro",
  13642. height: math.unit(100, "m")
  13643. },
  13644. {
  13645. name: "Megamacro",
  13646. height: math.unit(10, "km")
  13647. },
  13648. {
  13649. name: "Megamacro+",
  13650. height: math.unit(100, "km")
  13651. },
  13652. {
  13653. name: "Gigamacro",
  13654. height: math.unit(100, "Mm")
  13655. },
  13656. {
  13657. name: "Teramacro",
  13658. height: math.unit(100, "Gm")
  13659. },
  13660. {
  13661. name: "Examacro",
  13662. height: math.unit(100, "Em")
  13663. },
  13664. {
  13665. name: "Godly",
  13666. height: math.unit(10000, "Ym")
  13667. },
  13668. {
  13669. name: "Beyond Godly",
  13670. height: math.unit(25, "multiverses")
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13676. {
  13677. feminine: {
  13678. height: math.unit(5, "feet"),
  13679. weight: math.unit(100, "lb"),
  13680. name: "Feminine",
  13681. image: {
  13682. source: "./media/characters/sammy-mouse/feminine.svg",
  13683. extra: 2526 / 2425,
  13684. bottom: 0.123
  13685. }
  13686. },
  13687. masculine: {
  13688. height: math.unit(5, "feet"),
  13689. weight: math.unit(100, "lb"),
  13690. name: "Masculine",
  13691. image: {
  13692. source: "./media/characters/sammy-mouse/masculine.svg",
  13693. extra: 2526 / 2425,
  13694. bottom: 0.123
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Micro",
  13701. height: math.unit(5, "inches")
  13702. },
  13703. {
  13704. name: "Normal",
  13705. height: math.unit(5, "feet"),
  13706. default: true
  13707. },
  13708. {
  13709. name: "Macro",
  13710. height: math.unit(60, "feet")
  13711. },
  13712. ]
  13713. ))
  13714. characterMakers.push(() => makeCharacter(
  13715. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13716. {
  13717. front: {
  13718. height: math.unit(4, "feet"),
  13719. weight: math.unit(50, "lb"),
  13720. name: "Front",
  13721. image: {
  13722. source: "./media/characters/kole/front.svg",
  13723. extra: 1423 / 1303,
  13724. bottom: 0.025
  13725. }
  13726. },
  13727. back: {
  13728. height: math.unit(4, "feet"),
  13729. weight: math.unit(50, "lb"),
  13730. name: "Back",
  13731. image: {
  13732. source: "./media/characters/kole/back.svg",
  13733. extra: 1426 / 1280,
  13734. bottom: 0.02
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Normal",
  13741. height: math.unit(4, "feet"),
  13742. default: true
  13743. },
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13748. {
  13749. front: {
  13750. height: math.unit(2.5, "feet"),
  13751. weight: math.unit(32, "lb"),
  13752. name: "Front",
  13753. image: {
  13754. source: "./media/characters/rufran/front.svg",
  13755. extra: 1313/885,
  13756. bottom: 94/1407
  13757. }
  13758. },
  13759. side: {
  13760. height: math.unit(2.5, "feet"),
  13761. weight: math.unit(32, "lb"),
  13762. name: "Side",
  13763. image: {
  13764. source: "./media/characters/rufran/side.svg",
  13765. extra: 1109/852,
  13766. bottom: 118/1227
  13767. }
  13768. },
  13769. back: {
  13770. height: math.unit(2.5, "feet"),
  13771. weight: math.unit(32, "lb"),
  13772. name: "Back",
  13773. image: {
  13774. source: "./media/characters/rufran/back.svg",
  13775. extra: 1280/878,
  13776. bottom: 131/1411
  13777. }
  13778. },
  13779. mouth: {
  13780. height: math.unit(1.13, "feet"),
  13781. name: "Mouth",
  13782. image: {
  13783. source: "./media/characters/rufran/mouth.svg"
  13784. }
  13785. },
  13786. foot: {
  13787. height: math.unit(1.33, "feet"),
  13788. name: "Foot",
  13789. image: {
  13790. source: "./media/characters/rufran/foot.svg"
  13791. }
  13792. },
  13793. koboldFront: {
  13794. height: math.unit(2 + 6 / 12, "feet"),
  13795. weight: math.unit(20, "lb"),
  13796. name: "Front (Kobold)",
  13797. image: {
  13798. source: "./media/characters/rufran/kobold-front.svg",
  13799. extra: 2041 / 1839,
  13800. bottom: 0.055
  13801. }
  13802. },
  13803. koboldBack: {
  13804. height: math.unit(2 + 6 / 12, "feet"),
  13805. weight: math.unit(20, "lb"),
  13806. name: "Back (Kobold)",
  13807. image: {
  13808. source: "./media/characters/rufran/kobold-back.svg",
  13809. extra: 2054 / 1839,
  13810. bottom: 0.01
  13811. }
  13812. },
  13813. koboldHand: {
  13814. height: math.unit(0.2166, "meters"),
  13815. name: "Hand (Kobold)",
  13816. image: {
  13817. source: "./media/characters/rufran/kobold-hand.svg"
  13818. }
  13819. },
  13820. koboldFoot: {
  13821. height: math.unit(0.185, "meters"),
  13822. name: "Foot (Kobold)",
  13823. image: {
  13824. source: "./media/characters/rufran/kobold-foot.svg"
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Micro",
  13831. height: math.unit(1, "inch")
  13832. },
  13833. {
  13834. name: "Normal",
  13835. height: math.unit(2 + 6 / 12, "feet"),
  13836. default: true
  13837. },
  13838. {
  13839. name: "Big",
  13840. height: math.unit(60, "feet")
  13841. },
  13842. {
  13843. name: "Macro",
  13844. height: math.unit(325, "feet")
  13845. },
  13846. ]
  13847. ))
  13848. characterMakers.push(() => makeCharacter(
  13849. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13850. {
  13851. front: {
  13852. height: math.unit(0.3, "meters"),
  13853. weight: math.unit(3.5, "kg"),
  13854. name: "Front",
  13855. image: {
  13856. source: "./media/characters/chip/front.svg",
  13857. extra: 748 / 674
  13858. }
  13859. },
  13860. },
  13861. [
  13862. {
  13863. name: "Micro",
  13864. height: math.unit(1, "inch"),
  13865. default: true
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13871. {
  13872. side: {
  13873. height: math.unit(2.3, "meters"),
  13874. weight: math.unit(3500, "lb"),
  13875. name: "Side",
  13876. image: {
  13877. source: "./media/characters/torvid/side.svg",
  13878. extra: 1972 / 722,
  13879. bottom: 0.035
  13880. }
  13881. },
  13882. },
  13883. [
  13884. {
  13885. name: "Normal",
  13886. height: math.unit(2.3, "meters"),
  13887. default: true
  13888. },
  13889. ]
  13890. ))
  13891. characterMakers.push(() => makeCharacter(
  13892. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13893. {
  13894. front: {
  13895. height: math.unit(2, "meters"),
  13896. weight: math.unit(150.5, "kg"),
  13897. name: "Front",
  13898. image: {
  13899. source: "./media/characters/susan/front.svg",
  13900. extra: 693 / 635,
  13901. bottom: 0.05
  13902. }
  13903. },
  13904. },
  13905. [
  13906. {
  13907. name: "Megamacro",
  13908. height: math.unit(505, "miles"),
  13909. default: true
  13910. },
  13911. ]
  13912. ))
  13913. characterMakers.push(() => makeCharacter(
  13914. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13915. {
  13916. front: {
  13917. height: math.unit(6, "feet"),
  13918. weight: math.unit(150, "lb"),
  13919. name: "Front",
  13920. image: {
  13921. source: "./media/characters/raindrops/front.svg",
  13922. extra: 2655 / 2461,
  13923. bottom: 49 / 2705
  13924. }
  13925. },
  13926. back: {
  13927. height: math.unit(6, "feet"),
  13928. weight: math.unit(150, "lb"),
  13929. name: "Back",
  13930. image: {
  13931. source: "./media/characters/raindrops/back.svg",
  13932. extra: 2574 / 2400,
  13933. bottom: 65 / 2634
  13934. }
  13935. },
  13936. },
  13937. [
  13938. {
  13939. name: "Micro",
  13940. height: math.unit(6, "inches")
  13941. },
  13942. {
  13943. name: "Normal",
  13944. height: math.unit(6 + 2 / 12, "feet")
  13945. },
  13946. {
  13947. name: "Macro",
  13948. height: math.unit(131, "feet"),
  13949. default: true
  13950. },
  13951. {
  13952. name: "Megamacro",
  13953. height: math.unit(15, "miles")
  13954. },
  13955. {
  13956. name: "Gigamacro",
  13957. height: math.unit(4000, "miles")
  13958. },
  13959. {
  13960. name: "Teramacro",
  13961. height: math.unit(315000, "miles")
  13962. },
  13963. ]
  13964. ))
  13965. characterMakers.push(() => makeCharacter(
  13966. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13967. {
  13968. front: {
  13969. height: math.unit(2.794, "meters"),
  13970. weight: math.unit(325, "kg"),
  13971. name: "Front",
  13972. image: {
  13973. source: "./media/characters/tezwa/front.svg",
  13974. extra: 2083 / 1906,
  13975. bottom: 0.031
  13976. }
  13977. },
  13978. foot: {
  13979. height: math.unit(0.687, "meters"),
  13980. name: "Foot",
  13981. image: {
  13982. source: "./media/characters/tezwa/foot.svg"
  13983. }
  13984. },
  13985. },
  13986. [
  13987. {
  13988. name: "Normal",
  13989. height: math.unit(9 + 2 / 12, "feet"),
  13990. default: true
  13991. },
  13992. ]
  13993. ))
  13994. characterMakers.push(() => makeCharacter(
  13995. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13996. {
  13997. front: {
  13998. height: math.unit(58, "feet"),
  13999. weight: math.unit(89000, "lb"),
  14000. name: "Front",
  14001. image: {
  14002. source: "./media/characters/typhus/front.svg",
  14003. extra: 816 / 800,
  14004. bottom: 0.065
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Macro",
  14011. height: math.unit(58, "feet"),
  14012. default: true
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14018. {
  14019. front: {
  14020. height: math.unit(12, "feet"),
  14021. weight: math.unit(6, "tonnes"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/lyra-von-wulf/front.svg",
  14025. extra: 1,
  14026. bottom: 0.10
  14027. }
  14028. },
  14029. frontMecha: {
  14030. height: math.unit(12, "feet"),
  14031. weight: math.unit(12, "tonnes"),
  14032. name: "Front (Mecha)",
  14033. image: {
  14034. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14035. extra: 1,
  14036. bottom: 0.042
  14037. }
  14038. },
  14039. maw: {
  14040. height: math.unit(2.2, "feet"),
  14041. name: "Maw",
  14042. image: {
  14043. source: "./media/characters/lyra-von-wulf/maw.svg"
  14044. }
  14045. },
  14046. },
  14047. [
  14048. {
  14049. name: "Normal",
  14050. height: math.unit(12, "feet"),
  14051. default: true
  14052. },
  14053. {
  14054. name: "Classic",
  14055. height: math.unit(50, "feet")
  14056. },
  14057. {
  14058. name: "Macro",
  14059. height: math.unit(500, "feet")
  14060. },
  14061. {
  14062. name: "Megamacro",
  14063. height: math.unit(1, "mile")
  14064. },
  14065. {
  14066. name: "Gigamacro",
  14067. height: math.unit(400, "miles")
  14068. },
  14069. {
  14070. name: "Teramacro",
  14071. height: math.unit(22000, "miles")
  14072. },
  14073. {
  14074. name: "Solarmacro",
  14075. height: math.unit(8600000, "miles")
  14076. },
  14077. {
  14078. name: "Galactic",
  14079. height: math.unit(1057000, "lightyears")
  14080. },
  14081. ]
  14082. ))
  14083. characterMakers.push(() => makeCharacter(
  14084. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14085. {
  14086. front: {
  14087. height: math.unit(6 + 10 / 12, "feet"),
  14088. weight: math.unit(150, "lb"),
  14089. name: "Front",
  14090. image: {
  14091. source: "./media/characters/dixon/front.svg",
  14092. extra: 3361 / 3209,
  14093. bottom: 0.01
  14094. }
  14095. },
  14096. },
  14097. [
  14098. {
  14099. name: "Normal",
  14100. height: math.unit(6 + 10 / 12, "feet"),
  14101. default: true
  14102. },
  14103. {
  14104. name: "Big",
  14105. height: math.unit(12, "meters")
  14106. },
  14107. {
  14108. name: "Macro",
  14109. height: math.unit(500, "meters")
  14110. },
  14111. {
  14112. name: "Megamacro",
  14113. height: math.unit(2, "km")
  14114. },
  14115. ]
  14116. ))
  14117. characterMakers.push(() => makeCharacter(
  14118. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14119. {
  14120. front: {
  14121. height: math.unit(185, "cm"),
  14122. weight: math.unit(68, "kg"),
  14123. name: "Front",
  14124. image: {
  14125. source: "./media/characters/kauko/front.svg",
  14126. extra: 1455 / 1421,
  14127. bottom: 0.03
  14128. }
  14129. },
  14130. back: {
  14131. height: math.unit(185, "cm"),
  14132. weight: math.unit(68, "kg"),
  14133. name: "Back",
  14134. image: {
  14135. source: "./media/characters/kauko/back.svg",
  14136. extra: 1455 / 1421,
  14137. bottom: 0.004
  14138. }
  14139. },
  14140. },
  14141. [
  14142. {
  14143. name: "Normal",
  14144. height: math.unit(185, "cm"),
  14145. default: true
  14146. },
  14147. ]
  14148. ))
  14149. characterMakers.push(() => makeCharacter(
  14150. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14151. {
  14152. frontSfw: {
  14153. height: math.unit(5, "meters"),
  14154. weight: math.unit(4250, "lb"),
  14155. name: "Front",
  14156. image: {
  14157. source: "./media/characters/varg/front-sfw.svg",
  14158. extra: 1103/1010,
  14159. bottom: 50/1153
  14160. },
  14161. form: "anthro",
  14162. default: true
  14163. },
  14164. backSfw: {
  14165. height: math.unit(5, "meters"),
  14166. weight: math.unit(4250, "lb"),
  14167. name: "Back",
  14168. image: {
  14169. source: "./media/characters/varg/back-sfw.svg",
  14170. extra: 1038/1022,
  14171. bottom: 36/1074
  14172. },
  14173. form: "anthro"
  14174. },
  14175. frontNsfw: {
  14176. height: math.unit(5, "meters"),
  14177. weight: math.unit(4250, "lb"),
  14178. name: "Front (NSFW)",
  14179. image: {
  14180. source: "./media/characters/varg/front-nsfw.svg",
  14181. extra: 1103/1010,
  14182. bottom: 50/1153
  14183. },
  14184. form: "anthro"
  14185. },
  14186. sheath: {
  14187. height: math.unit(3.8, "feet"),
  14188. weight: math.unit(90, "kilograms"),
  14189. name: "Sheath",
  14190. image: {
  14191. source: "./media/characters/varg/sheath.svg"
  14192. },
  14193. form: "anthro"
  14194. },
  14195. dick: {
  14196. height: math.unit(4.6, "feet"),
  14197. weight: math.unit(451, "kilograms"),
  14198. name: "Dick",
  14199. image: {
  14200. source: "./media/characters/varg/dick.svg"
  14201. },
  14202. form: "anthro"
  14203. },
  14204. feralSfw: {
  14205. height: math.unit(5, "meters"),
  14206. weight: math.unit(100000, "lb"),
  14207. name: "Side",
  14208. image: {
  14209. source: "./media/characters/varg/feral-sfw.svg",
  14210. extra: 1065/511,
  14211. bottom: 211/1276
  14212. },
  14213. form: "feral",
  14214. default: true
  14215. },
  14216. feralNsfw: {
  14217. height: math.unit(5, "meters"),
  14218. weight: math.unit(100000, "lb"),
  14219. name: "Side (NSFW)",
  14220. image: {
  14221. source: "./media/characters/varg/feral-nsfw.svg",
  14222. extra: 1065/511,
  14223. bottom: 211/1276
  14224. },
  14225. form: "feral",
  14226. },
  14227. feralSheath: {
  14228. height: math.unit(9.8, "feet"),
  14229. weight: math.unit(2000, "kilograms"),
  14230. name: "Sheath",
  14231. image: {
  14232. source: "./media/characters/varg/sheath.svg"
  14233. },
  14234. form: "feral"
  14235. },
  14236. feralDick: {
  14237. height: math.unit(13.11, "feet"),
  14238. weight: math.unit(10440, "kilograms"),
  14239. name: "Dick",
  14240. image: {
  14241. source: "./media/characters/varg/dick.svg"
  14242. },
  14243. form: "feral"
  14244. },
  14245. },
  14246. [
  14247. {
  14248. name: "Normal",
  14249. height: math.unit(5, "meters"),
  14250. form: "anthro"
  14251. },
  14252. {
  14253. name: "Macro",
  14254. height: math.unit(200, "meters"),
  14255. form: "anthro"
  14256. },
  14257. {
  14258. name: "Megamacro",
  14259. height: math.unit(20, "kilometers"),
  14260. form: "anthro"
  14261. },
  14262. {
  14263. name: "True Size",
  14264. height: math.unit(211, "km"),
  14265. form: "anthro",
  14266. default: true
  14267. },
  14268. {
  14269. name: "Gigamacro",
  14270. height: math.unit(1000, "km"),
  14271. form: "anthro"
  14272. },
  14273. {
  14274. name: "Gigamacro+",
  14275. height: math.unit(8000, "km"),
  14276. form: "anthro"
  14277. },
  14278. {
  14279. name: "Teramacro",
  14280. height: math.unit(1000000, "km"),
  14281. form: "anthro"
  14282. },
  14283. {
  14284. name: "Normal",
  14285. height: math.unit(5, "meters"),
  14286. form: "feral"
  14287. },
  14288. {
  14289. name: "Macro",
  14290. height: math.unit(200, "meters"),
  14291. form: "feral"
  14292. },
  14293. {
  14294. name: "Megamacro",
  14295. height: math.unit(20, "kilometers"),
  14296. form: "feral"
  14297. },
  14298. {
  14299. name: "True Size",
  14300. height: math.unit(211, "km"),
  14301. form: "feral",
  14302. default: true
  14303. },
  14304. {
  14305. name: "Gigamacro",
  14306. height: math.unit(1000, "km"),
  14307. form: "feral"
  14308. },
  14309. {
  14310. name: "Gigamacro+",
  14311. height: math.unit(8000, "km"),
  14312. form: "feral"
  14313. },
  14314. {
  14315. name: "Teramacro",
  14316. height: math.unit(1000000, "km"),
  14317. form: "feral"
  14318. },
  14319. ],
  14320. {
  14321. "anthro": {
  14322. name: "Anthro",
  14323. default: true
  14324. },
  14325. "feral": {
  14326. name: "Feral",
  14327. },
  14328. }
  14329. ))
  14330. characterMakers.push(() => makeCharacter(
  14331. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14332. {
  14333. front: {
  14334. height: math.unit(7 + 7 / 12, "feet"),
  14335. weight: math.unit(267, "lb"),
  14336. name: "Front",
  14337. image: {
  14338. source: "./media/characters/dayza/front.svg",
  14339. extra: 1262 / 1200,
  14340. bottom: 0.035
  14341. }
  14342. },
  14343. side: {
  14344. height: math.unit(7 + 7 / 12, "feet"),
  14345. weight: math.unit(267, "lb"),
  14346. name: "Side",
  14347. image: {
  14348. source: "./media/characters/dayza/side.svg",
  14349. extra: 1295 / 1245,
  14350. bottom: 0.05
  14351. }
  14352. },
  14353. back: {
  14354. height: math.unit(7 + 7 / 12, "feet"),
  14355. weight: math.unit(267, "lb"),
  14356. name: "Back",
  14357. image: {
  14358. source: "./media/characters/dayza/back.svg",
  14359. extra: 1241 / 1170
  14360. }
  14361. },
  14362. },
  14363. [
  14364. {
  14365. name: "Normal",
  14366. height: math.unit(7 + 7 / 12, "feet"),
  14367. default: true
  14368. },
  14369. {
  14370. name: "Macro",
  14371. height: math.unit(155, "feet")
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(6 + 5 / 12, "feet"),
  14380. weight: math.unit(160, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/xanthos/front.svg",
  14384. extra: 1,
  14385. bottom: 0.04
  14386. }
  14387. },
  14388. back: {
  14389. height: math.unit(6 + 5 / 12, "feet"),
  14390. weight: math.unit(160, "lb"),
  14391. name: "Back",
  14392. image: {
  14393. source: "./media/characters/xanthos/back.svg",
  14394. extra: 1,
  14395. bottom: 0.03
  14396. }
  14397. },
  14398. hand: {
  14399. height: math.unit(0.928, "feet"),
  14400. name: "Hand",
  14401. image: {
  14402. source: "./media/characters/xanthos/hand.svg"
  14403. }
  14404. },
  14405. foot: {
  14406. height: math.unit(1.286, "feet"),
  14407. name: "Foot",
  14408. image: {
  14409. source: "./media/characters/xanthos/foot.svg"
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Normal",
  14416. height: math.unit(6 + 5 / 12, "feet"),
  14417. default: true
  14418. },
  14419. {
  14420. name: "Normal+",
  14421. height: math.unit(6, "meters")
  14422. },
  14423. {
  14424. name: "Macro",
  14425. height: math.unit(40, "feet")
  14426. },
  14427. {
  14428. name: "Macro+",
  14429. height: math.unit(200, "meters")
  14430. },
  14431. {
  14432. name: "Megamacro",
  14433. height: math.unit(20, "km")
  14434. },
  14435. {
  14436. name: "Megamacro+",
  14437. height: math.unit(100, "km")
  14438. },
  14439. {
  14440. name: "Gigamacro",
  14441. height: math.unit(200, "megameters")
  14442. },
  14443. {
  14444. name: "Gigamacro+",
  14445. height: math.unit(1.5, "gigameters")
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(6 + 3 / 12, "feet"),
  14454. weight: math.unit(215, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/grynn/front.svg",
  14458. extra: 4627 / 4209,
  14459. bottom: 0.047
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Micro",
  14466. height: math.unit(6, "inches")
  14467. },
  14468. {
  14469. name: "Normal",
  14470. height: math.unit(6 + 3 / 12, "feet"),
  14471. default: true
  14472. },
  14473. {
  14474. name: "Big",
  14475. height: math.unit(104, "feet")
  14476. },
  14477. {
  14478. name: "Macro",
  14479. height: math.unit(944, "feet")
  14480. },
  14481. {
  14482. name: "Macro+",
  14483. height: math.unit(9480, "feet")
  14484. },
  14485. {
  14486. name: "Megamacro",
  14487. height: math.unit(78752, "feet")
  14488. },
  14489. {
  14490. name: "Megamacro+",
  14491. height: math.unit(630128, "feet")
  14492. },
  14493. {
  14494. name: "Megamacro++",
  14495. height: math.unit(3150695, "feet")
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(7 + 5 / 12, "feet"),
  14504. weight: math.unit(450, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/mocha-aura/front.svg",
  14508. extra: 1907 / 1817,
  14509. bottom: 0.04
  14510. }
  14511. },
  14512. back: {
  14513. height: math.unit(7 + 5 / 12, "feet"),
  14514. weight: math.unit(450, "lb"),
  14515. name: "Back",
  14516. image: {
  14517. source: "./media/characters/mocha-aura/back.svg",
  14518. extra: 1900 / 1825,
  14519. bottom: 0.045
  14520. }
  14521. },
  14522. },
  14523. [
  14524. {
  14525. name: "Nano",
  14526. height: math.unit(1, "nm")
  14527. },
  14528. {
  14529. name: "Megamicro",
  14530. height: math.unit(1, "mm")
  14531. },
  14532. {
  14533. name: "Micro",
  14534. height: math.unit(3, "inches")
  14535. },
  14536. {
  14537. name: "Normal",
  14538. height: math.unit(7 + 5 / 12, "feet"),
  14539. default: true
  14540. },
  14541. {
  14542. name: "Macro",
  14543. height: math.unit(30, "feet")
  14544. },
  14545. {
  14546. name: "Megamacro",
  14547. height: math.unit(3500, "feet")
  14548. },
  14549. {
  14550. name: "Teramacro",
  14551. height: math.unit(500000, "miles")
  14552. },
  14553. {
  14554. name: "Petamacro",
  14555. height: math.unit(50000000000000000, "parsecs")
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14561. {
  14562. front: {
  14563. height: math.unit(6, "feet"),
  14564. weight: math.unit(150, "lb"),
  14565. name: "Front",
  14566. image: {
  14567. source: "./media/characters/ilisha-devya/front.svg",
  14568. extra: 1053/1049,
  14569. bottom: 270/1323
  14570. }
  14571. },
  14572. back: {
  14573. height: math.unit(6, "feet"),
  14574. weight: math.unit(150, "lb"),
  14575. name: "Back",
  14576. image: {
  14577. source: "./media/characters/ilisha-devya/back.svg",
  14578. extra: 1131/1128,
  14579. bottom: 39/1170
  14580. }
  14581. },
  14582. },
  14583. [
  14584. {
  14585. name: "Macro",
  14586. height: math.unit(500, "feet"),
  14587. default: true
  14588. },
  14589. {
  14590. name: "Megamacro",
  14591. height: math.unit(10, "miles")
  14592. },
  14593. {
  14594. name: "Gigamacro",
  14595. height: math.unit(100000, "miles")
  14596. },
  14597. {
  14598. name: "Examacro",
  14599. height: math.unit(1e9, "lightyears")
  14600. },
  14601. {
  14602. name: "Omniversal",
  14603. height: math.unit(1e33, "lightyears")
  14604. },
  14605. {
  14606. name: "Beyond Infinite",
  14607. height: math.unit(1e100, "lightyears")
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14613. {
  14614. Side: {
  14615. height: math.unit(6, "feet"),
  14616. weight: math.unit(150, "lb"),
  14617. name: "Side",
  14618. image: {
  14619. source: "./media/characters/mira/side.svg",
  14620. extra: 900 / 799,
  14621. bottom: 0.02
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Human Size",
  14628. height: math.unit(6, "feet")
  14629. },
  14630. {
  14631. name: "Macro",
  14632. height: math.unit(100, "feet"),
  14633. default: true
  14634. },
  14635. {
  14636. name: "Megamacro",
  14637. height: math.unit(10, "miles")
  14638. },
  14639. {
  14640. name: "Gigamacro",
  14641. height: math.unit(25000, "miles")
  14642. },
  14643. {
  14644. name: "Teramacro",
  14645. height: math.unit(300, "AU")
  14646. },
  14647. {
  14648. name: "Full Size",
  14649. height: math.unit(4.5e10, "lightyears")
  14650. },
  14651. ]
  14652. ))
  14653. characterMakers.push(() => makeCharacter(
  14654. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14655. {
  14656. front: {
  14657. height: math.unit(6, "feet"),
  14658. weight: math.unit(150, "lb"),
  14659. name: "Front",
  14660. image: {
  14661. source: "./media/characters/holly/front.svg",
  14662. extra: 639 / 606
  14663. }
  14664. },
  14665. back: {
  14666. height: math.unit(6, "feet"),
  14667. weight: math.unit(150, "lb"),
  14668. name: "Back",
  14669. image: {
  14670. source: "./media/characters/holly/back.svg",
  14671. extra: 623 / 598
  14672. }
  14673. },
  14674. frontWorking: {
  14675. height: math.unit(6, "feet"),
  14676. weight: math.unit(150, "lb"),
  14677. name: "Front (Working)",
  14678. image: {
  14679. source: "./media/characters/holly/front-working.svg",
  14680. extra: 607 / 577,
  14681. bottom: 0.048
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Normal",
  14688. height: math.unit(12 + 3 / 12, "feet"),
  14689. default: true
  14690. },
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14695. {
  14696. front: {
  14697. height: math.unit(6, "feet"),
  14698. weight: math.unit(150, "lb"),
  14699. name: "Front",
  14700. image: {
  14701. source: "./media/characters/porter/front.svg",
  14702. extra: 1,
  14703. bottom: 0.01
  14704. }
  14705. },
  14706. frontRobes: {
  14707. height: math.unit(6, "feet"),
  14708. weight: math.unit(150, "lb"),
  14709. name: "Front (Robes)",
  14710. image: {
  14711. source: "./media/characters/porter/front-robes.svg",
  14712. extra: 1.01,
  14713. bottom: 0.01
  14714. }
  14715. },
  14716. },
  14717. [
  14718. {
  14719. name: "Normal",
  14720. height: math.unit(11 + 9 / 12, "feet"),
  14721. default: true
  14722. },
  14723. ]
  14724. ))
  14725. characterMakers.push(() => makeCharacter(
  14726. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14727. {
  14728. legendary: {
  14729. height: math.unit(6, "feet"),
  14730. weight: math.unit(150, "lb"),
  14731. name: "Legendary",
  14732. image: {
  14733. source: "./media/characters/lucy/legendary.svg",
  14734. extra: 1355 / 1100,
  14735. bottom: 0.045
  14736. }
  14737. },
  14738. },
  14739. [
  14740. {
  14741. name: "Legendary",
  14742. height: math.unit(86882 * 2, "miles"),
  14743. default: true
  14744. },
  14745. ]
  14746. ))
  14747. characterMakers.push(() => makeCharacter(
  14748. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14749. {
  14750. front: {
  14751. height: math.unit(6, "feet"),
  14752. weight: math.unit(150, "lb"),
  14753. name: "Front",
  14754. image: {
  14755. source: "./media/characters/drusilla/front.svg",
  14756. extra: 678 / 635,
  14757. bottom: 0.03
  14758. }
  14759. },
  14760. back: {
  14761. height: math.unit(6, "feet"),
  14762. weight: math.unit(150, "lb"),
  14763. name: "Back",
  14764. image: {
  14765. source: "./media/characters/drusilla/back.svg",
  14766. extra: 678 / 635,
  14767. bottom: 0.005
  14768. }
  14769. },
  14770. },
  14771. [
  14772. {
  14773. name: "Macro",
  14774. height: math.unit(100, "feet")
  14775. },
  14776. {
  14777. name: "Canon Height",
  14778. height: math.unit(2000, "feet"),
  14779. default: true
  14780. },
  14781. ]
  14782. ))
  14783. characterMakers.push(() => makeCharacter(
  14784. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14785. {
  14786. front: {
  14787. height: math.unit(6, "feet"),
  14788. weight: math.unit(180, "lb"),
  14789. name: "Front",
  14790. image: {
  14791. source: "./media/characters/renard-thatch/front.svg",
  14792. extra: 2411 / 2275,
  14793. bottom: 0.01
  14794. }
  14795. },
  14796. frontPosing: {
  14797. height: math.unit(6, "feet"),
  14798. weight: math.unit(180, "lb"),
  14799. name: "Front (Posing)",
  14800. image: {
  14801. source: "./media/characters/renard-thatch/front-posing.svg",
  14802. extra: 2381 / 2261,
  14803. bottom: 0.01
  14804. }
  14805. },
  14806. back: {
  14807. height: math.unit(6, "feet"),
  14808. weight: math.unit(180, "lb"),
  14809. name: "Back",
  14810. image: {
  14811. source: "./media/characters/renard-thatch/back.svg",
  14812. extra: 2428 / 2288
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Micro",
  14819. height: math.unit(3, "inches")
  14820. },
  14821. {
  14822. name: "Default",
  14823. height: math.unit(6, "feet"),
  14824. default: true
  14825. },
  14826. {
  14827. name: "Macro",
  14828. height: math.unit(75, "feet")
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(1450, "feet"),
  14837. weight: math.unit(1.21e6, "tons"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/sekvra/front.svg",
  14841. extra: 1193/1190,
  14842. bottom: 78/1271
  14843. }
  14844. },
  14845. side: {
  14846. height: math.unit(1450, "feet"),
  14847. weight: math.unit(1.21e6, "tons"),
  14848. name: "Side",
  14849. image: {
  14850. source: "./media/characters/sekvra/side.svg",
  14851. extra: 1193/1190,
  14852. bottom: 52/1245
  14853. }
  14854. },
  14855. back: {
  14856. height: math.unit(1450, "feet"),
  14857. weight: math.unit(1.21e6, "tons"),
  14858. name: "Back",
  14859. image: {
  14860. source: "./media/characters/sekvra/back.svg",
  14861. extra: 1219/1216,
  14862. bottom: 21/1240
  14863. }
  14864. },
  14865. frontClothed: {
  14866. height: math.unit(1450, "feet"),
  14867. weight: math.unit(1.21e6, "tons"),
  14868. name: "Front (Clothed)",
  14869. image: {
  14870. source: "./media/characters/sekvra/front-clothed.svg",
  14871. extra: 1192/1189,
  14872. bottom: 79/1271
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Macro",
  14879. height: math.unit(1450, "feet"),
  14880. default: true
  14881. },
  14882. {
  14883. name: "Megamacro",
  14884. height: math.unit(15000, "feet")
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(6, "feet"),
  14893. weight: math.unit(150, "lb"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/carmine/front.svg",
  14897. extra: 1557/1538,
  14898. bottom: 68/1625
  14899. }
  14900. },
  14901. frontArmor: {
  14902. height: math.unit(6, "feet"),
  14903. weight: math.unit(150, "lb"),
  14904. name: "Front (Armor)",
  14905. image: {
  14906. source: "./media/characters/carmine/front-armor.svg",
  14907. extra: 1549/1530,
  14908. bottom: 82/1631
  14909. }
  14910. },
  14911. mouth: {
  14912. height: math.unit(0.55, "feet"),
  14913. name: "Mouth",
  14914. image: {
  14915. source: "./media/characters/carmine/mouth.svg"
  14916. }
  14917. },
  14918. hand: {
  14919. height: math.unit(1.05, "feet"),
  14920. name: "Hand",
  14921. image: {
  14922. source: "./media/characters/carmine/hand.svg"
  14923. }
  14924. },
  14925. foot: {
  14926. height: math.unit(0.6, "feet"),
  14927. name: "Foot",
  14928. image: {
  14929. source: "./media/characters/carmine/foot.svg"
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Large",
  14936. height: math.unit(1, "mile")
  14937. },
  14938. {
  14939. name: "Huge",
  14940. height: math.unit(40, "miles"),
  14941. default: true
  14942. },
  14943. {
  14944. name: "Colossal",
  14945. height: math.unit(2500, "miles")
  14946. },
  14947. ]
  14948. ))
  14949. characterMakers.push(() => makeCharacter(
  14950. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14951. {
  14952. front: {
  14953. height: math.unit(6, "feet"),
  14954. weight: math.unit(150, "lb"),
  14955. name: "Front",
  14956. image: {
  14957. source: "./media/characters/elyssia/front.svg",
  14958. extra: 2201 / 2035,
  14959. bottom: 0.05
  14960. }
  14961. },
  14962. frontClothed: {
  14963. height: math.unit(6, "feet"),
  14964. weight: math.unit(150, "lb"),
  14965. name: "Front (Clothed)",
  14966. image: {
  14967. source: "./media/characters/elyssia/front-clothed.svg",
  14968. extra: 2201 / 2035,
  14969. bottom: 0.05
  14970. }
  14971. },
  14972. back: {
  14973. height: math.unit(6, "feet"),
  14974. weight: math.unit(150, "lb"),
  14975. name: "Back",
  14976. image: {
  14977. source: "./media/characters/elyssia/back.svg",
  14978. extra: 2201 / 2035,
  14979. bottom: 0.013
  14980. }
  14981. },
  14982. },
  14983. [
  14984. {
  14985. name: "Smaller",
  14986. height: math.unit(150, "feet")
  14987. },
  14988. {
  14989. name: "Standard",
  14990. height: math.unit(1400, "feet"),
  14991. default: true
  14992. },
  14993. {
  14994. name: "Distracted",
  14995. height: math.unit(15000, "feet")
  14996. },
  14997. ]
  14998. ))
  14999. characterMakers.push(() => makeCharacter(
  15000. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15001. {
  15002. front: {
  15003. height: math.unit(7 + 4/12, "feet"),
  15004. weight: math.unit(690, "lb"),
  15005. name: "Front",
  15006. image: {
  15007. source: "./media/characters/geno-maxwell/front.svg",
  15008. extra: 984/856,
  15009. bottom: 87/1071
  15010. }
  15011. },
  15012. back: {
  15013. height: math.unit(7 + 4/12, "feet"),
  15014. weight: math.unit(690, "lb"),
  15015. name: "Back",
  15016. image: {
  15017. source: "./media/characters/geno-maxwell/back.svg",
  15018. extra: 981/854,
  15019. bottom: 57/1038
  15020. }
  15021. },
  15022. frontCostume: {
  15023. height: math.unit(7 + 4/12, "feet"),
  15024. weight: math.unit(690, "lb"),
  15025. name: "Front (Costume)",
  15026. image: {
  15027. source: "./media/characters/geno-maxwell/front-costume.svg",
  15028. extra: 984/856,
  15029. bottom: 87/1071
  15030. }
  15031. },
  15032. backcostume: {
  15033. height: math.unit(7 + 4/12, "feet"),
  15034. weight: math.unit(690, "lb"),
  15035. name: "Back (Costume)",
  15036. image: {
  15037. source: "./media/characters/geno-maxwell/back-costume.svg",
  15038. extra: 981/854,
  15039. bottom: 57/1038
  15040. }
  15041. },
  15042. },
  15043. [
  15044. {
  15045. name: "Micro",
  15046. height: math.unit(3, "inches")
  15047. },
  15048. {
  15049. name: "Normal",
  15050. height: math.unit(7 + 4 / 12, "feet"),
  15051. default: true
  15052. },
  15053. {
  15054. name: "Macro",
  15055. height: math.unit(220, "feet")
  15056. },
  15057. {
  15058. name: "Megamacro",
  15059. height: math.unit(11, "miles")
  15060. },
  15061. ]
  15062. ))
  15063. characterMakers.push(() => makeCharacter(
  15064. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15065. {
  15066. front: {
  15067. height: math.unit(7 + 4/12, "feet"),
  15068. weight: math.unit(750, "lb"),
  15069. name: "Front",
  15070. image: {
  15071. source: "./media/characters/regena-maxwell/front.svg",
  15072. extra: 984/856,
  15073. bottom: 87/1071
  15074. }
  15075. },
  15076. back: {
  15077. height: math.unit(7 + 4/12, "feet"),
  15078. weight: math.unit(750, "lb"),
  15079. name: "Back",
  15080. image: {
  15081. source: "./media/characters/regena-maxwell/back.svg",
  15082. extra: 981/854,
  15083. bottom: 57/1038
  15084. }
  15085. },
  15086. frontCostume: {
  15087. height: math.unit(7 + 4/12, "feet"),
  15088. weight: math.unit(750, "lb"),
  15089. name: "Front (Costume)",
  15090. image: {
  15091. source: "./media/characters/regena-maxwell/front-costume.svg",
  15092. extra: 984/856,
  15093. bottom: 87/1071
  15094. }
  15095. },
  15096. backcostume: {
  15097. height: math.unit(7 + 4/12, "feet"),
  15098. weight: math.unit(750, "lb"),
  15099. name: "Back (Costume)",
  15100. image: {
  15101. source: "./media/characters/regena-maxwell/back-costume.svg",
  15102. extra: 981/854,
  15103. bottom: 57/1038
  15104. }
  15105. },
  15106. },
  15107. [
  15108. {
  15109. name: "Normal",
  15110. height: math.unit(7 + 4 / 12, "feet"),
  15111. default: true
  15112. },
  15113. {
  15114. name: "Macro",
  15115. height: math.unit(220, "feet")
  15116. },
  15117. {
  15118. name: "Megamacro",
  15119. height: math.unit(11, "miles")
  15120. },
  15121. ]
  15122. ))
  15123. characterMakers.push(() => makeCharacter(
  15124. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15125. {
  15126. front: {
  15127. height: math.unit(6, "feet"),
  15128. weight: math.unit(150, "lb"),
  15129. name: "Front",
  15130. image: {
  15131. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15132. extra: 860 / 690,
  15133. bottom: 0.03
  15134. }
  15135. },
  15136. },
  15137. [
  15138. {
  15139. name: "Normal",
  15140. height: math.unit(1.7, "meters"),
  15141. default: true
  15142. },
  15143. ]
  15144. ))
  15145. characterMakers.push(() => makeCharacter(
  15146. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15147. {
  15148. front: {
  15149. height: math.unit(6, "feet"),
  15150. weight: math.unit(150, "lb"),
  15151. name: "Front",
  15152. image: {
  15153. source: "./media/characters/quilly/front.svg",
  15154. extra: 890 / 776
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Gigamacro",
  15161. height: math.unit(404090, "miles"),
  15162. default: true
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(7 + 8 / 12, "feet"),
  15171. weight: math.unit(350, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/tempest/front.svg",
  15175. extra: 1175 / 1086,
  15176. bottom: 0.02
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(7 + 8 / 12, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15190. {
  15191. side: {
  15192. height: math.unit(4 + 5 / 12, "feet"),
  15193. weight: math.unit(80, "lb"),
  15194. name: "Side",
  15195. image: {
  15196. source: "./media/characters/rodger/side.svg",
  15197. extra: 1235 / 1118
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Micro",
  15204. height: math.unit(1, "inch")
  15205. },
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(4 + 5 / 12, "feet"),
  15209. default: true
  15210. },
  15211. {
  15212. name: "Macro",
  15213. height: math.unit(120, "feet")
  15214. },
  15215. ]
  15216. ))
  15217. characterMakers.push(() => makeCharacter(
  15218. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15219. {
  15220. front: {
  15221. height: math.unit(6, "feet"),
  15222. weight: math.unit(150, "lb"),
  15223. name: "Front",
  15224. image: {
  15225. source: "./media/characters/danyel/front.svg",
  15226. extra: 1185 / 1123,
  15227. bottom: 0.05
  15228. }
  15229. },
  15230. },
  15231. [
  15232. {
  15233. name: "Shrunken",
  15234. height: math.unit(0.5, "mm")
  15235. },
  15236. {
  15237. name: "Micro",
  15238. height: math.unit(1, "mm"),
  15239. default: true
  15240. },
  15241. {
  15242. name: "Upsized",
  15243. height: math.unit(5 + 5 / 12, "feet")
  15244. },
  15245. ]
  15246. ))
  15247. characterMakers.push(() => makeCharacter(
  15248. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15249. {
  15250. front: {
  15251. height: math.unit(5 + 6 / 12, "feet"),
  15252. weight: math.unit(200, "lb"),
  15253. name: "Front",
  15254. image: {
  15255. source: "./media/characters/vivian-bijoux/front.svg",
  15256. extra: 1217/1209,
  15257. bottom: 76/1293
  15258. }
  15259. },
  15260. back: {
  15261. height: math.unit(5 + 6 / 12, "feet"),
  15262. weight: math.unit(200, "lb"),
  15263. name: "Back",
  15264. image: {
  15265. source: "./media/characters/vivian-bijoux/back.svg",
  15266. extra: 1214/1208,
  15267. bottom: 51/1265
  15268. }
  15269. },
  15270. dressed: {
  15271. height: math.unit(5 + 6 / 12, "feet"),
  15272. weight: math.unit(200, "lb"),
  15273. name: "Dressed",
  15274. image: {
  15275. source: "./media/characters/vivian-bijoux/dressed.svg",
  15276. extra: 1217/1209,
  15277. bottom: 76/1293
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(5 + 6 / 12, "feet"),
  15285. default: true
  15286. },
  15287. {
  15288. name: "Bad Dream",
  15289. height: math.unit(500, "feet")
  15290. },
  15291. {
  15292. name: "Nightmare",
  15293. height: math.unit(500, "miles")
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(6 + 1 / 12, "feet"),
  15302. weight: math.unit(260, "lb"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/zeta/front.svg",
  15306. extra: 1968 / 1889,
  15307. bottom: 0.06
  15308. }
  15309. },
  15310. back: {
  15311. height: math.unit(6 + 1 / 12, "feet"),
  15312. weight: math.unit(260, "lb"),
  15313. name: "Back",
  15314. image: {
  15315. source: "./media/characters/zeta/back.svg",
  15316. extra: 1944 / 1858,
  15317. bottom: 0.03
  15318. }
  15319. },
  15320. hand: {
  15321. height: math.unit(1.112, "feet"),
  15322. name: "Hand",
  15323. image: {
  15324. source: "./media/characters/zeta/hand.svg"
  15325. }
  15326. },
  15327. foot: {
  15328. height: math.unit(1.48, "feet"),
  15329. name: "Foot",
  15330. image: {
  15331. source: "./media/characters/zeta/foot.svg"
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Micro",
  15338. height: math.unit(6, "inches")
  15339. },
  15340. {
  15341. name: "Normal",
  15342. height: math.unit(6 + 1 / 12, "feet"),
  15343. default: true
  15344. },
  15345. {
  15346. name: "Macro",
  15347. height: math.unit(20, "feet")
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15353. {
  15354. front: {
  15355. height: math.unit(6, "feet"),
  15356. weight: math.unit(150, "lb"),
  15357. name: "Front",
  15358. image: {
  15359. source: "./media/characters/jamie-larsen/front.svg",
  15360. extra: 962 / 933,
  15361. bottom: 0.02
  15362. }
  15363. },
  15364. back: {
  15365. height: math.unit(6, "feet"),
  15366. weight: math.unit(150, "lb"),
  15367. name: "Back",
  15368. image: {
  15369. source: "./media/characters/jamie-larsen/back.svg",
  15370. extra: 997 / 946
  15371. }
  15372. },
  15373. },
  15374. [
  15375. {
  15376. name: "Macro",
  15377. height: math.unit(28 + 7 / 12, "feet"),
  15378. default: true
  15379. },
  15380. {
  15381. name: "Macro+",
  15382. height: math.unit(180, "feet")
  15383. },
  15384. {
  15385. name: "Megamacro",
  15386. height: math.unit(10, "miles")
  15387. },
  15388. {
  15389. name: "Gigamacro",
  15390. height: math.unit(200000, "miles")
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15396. {
  15397. front: {
  15398. height: math.unit(6, "feet"),
  15399. weight: math.unit(120, "lb"),
  15400. name: "Front",
  15401. image: {
  15402. source: "./media/characters/vance/front.svg",
  15403. extra: 1980 / 1890,
  15404. bottom: 0.09
  15405. }
  15406. },
  15407. back: {
  15408. height: math.unit(6, "feet"),
  15409. weight: math.unit(120, "lb"),
  15410. name: "Back",
  15411. image: {
  15412. source: "./media/characters/vance/back.svg",
  15413. extra: 2081 / 1994,
  15414. bottom: 0.014
  15415. }
  15416. },
  15417. hand: {
  15418. height: math.unit(0.88, "feet"),
  15419. name: "Hand",
  15420. image: {
  15421. source: "./media/characters/vance/hand.svg"
  15422. }
  15423. },
  15424. foot: {
  15425. height: math.unit(0.64, "feet"),
  15426. name: "Foot",
  15427. image: {
  15428. source: "./media/characters/vance/foot.svg"
  15429. }
  15430. },
  15431. },
  15432. [
  15433. {
  15434. name: "Small",
  15435. height: math.unit(90, "feet"),
  15436. default: true
  15437. },
  15438. {
  15439. name: "Macro",
  15440. height: math.unit(100, "meters")
  15441. },
  15442. {
  15443. name: "Megamacro",
  15444. height: math.unit(15, "miles")
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15450. {
  15451. front: {
  15452. height: math.unit(6, "feet"),
  15453. weight: math.unit(180, "lb"),
  15454. name: "Front",
  15455. image: {
  15456. source: "./media/characters/xochitl/front.svg",
  15457. extra: 2297 / 2261,
  15458. bottom: 0.065
  15459. }
  15460. },
  15461. back: {
  15462. height: math.unit(6, "feet"),
  15463. weight: math.unit(180, "lb"),
  15464. name: "Back",
  15465. image: {
  15466. source: "./media/characters/xochitl/back.svg",
  15467. extra: 2386 / 2354,
  15468. bottom: 0.01
  15469. }
  15470. },
  15471. foot: {
  15472. height: math.unit(6 / 5 * 1.15, "feet"),
  15473. weight: math.unit(150, "lb"),
  15474. name: "Foot",
  15475. image: {
  15476. source: "./media/characters/xochitl/foot.svg"
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Macro",
  15483. height: math.unit(80, "feet")
  15484. },
  15485. {
  15486. name: "Macro+",
  15487. height: math.unit(400, "feet"),
  15488. default: true
  15489. },
  15490. {
  15491. name: "Gigamacro",
  15492. height: math.unit(80000, "miles")
  15493. },
  15494. {
  15495. name: "Gigamacro+",
  15496. height: math.unit(400000, "miles")
  15497. },
  15498. {
  15499. name: "Teramacro",
  15500. height: math.unit(300, "AU")
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(6, "feet"),
  15509. weight: math.unit(150, "lb"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/vincent/front.svg",
  15513. extra: 1130 / 1080,
  15514. bottom: 0.055
  15515. }
  15516. },
  15517. beak: {
  15518. height: math.unit(6 * 0.1, "feet"),
  15519. name: "Beak",
  15520. image: {
  15521. source: "./media/characters/vincent/beak.svg"
  15522. }
  15523. },
  15524. hand: {
  15525. height: math.unit(6 * 0.85, "feet"),
  15526. weight: math.unit(150, "lb"),
  15527. name: "Hand",
  15528. image: {
  15529. source: "./media/characters/vincent/hand.svg"
  15530. }
  15531. },
  15532. foot: {
  15533. height: math.unit(6 * 0.19, "feet"),
  15534. weight: math.unit(150, "lb"),
  15535. name: "Foot",
  15536. image: {
  15537. source: "./media/characters/vincent/foot.svg"
  15538. }
  15539. },
  15540. },
  15541. [
  15542. {
  15543. name: "Base",
  15544. height: math.unit(6 + 5 / 12, "feet"),
  15545. default: true
  15546. },
  15547. {
  15548. name: "Macro",
  15549. height: math.unit(300, "feet")
  15550. },
  15551. {
  15552. name: "Megamacro",
  15553. height: math.unit(2, "miles")
  15554. },
  15555. {
  15556. name: "Gigamacro",
  15557. height: math.unit(1000, "miles")
  15558. },
  15559. ]
  15560. ))
  15561. characterMakers.push(() => makeCharacter(
  15562. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15563. {
  15564. front: {
  15565. height: math.unit(2, "meters"),
  15566. weight: math.unit(500, "kg"),
  15567. name: "Front",
  15568. image: {
  15569. source: "./media/characters/coatl/front.svg",
  15570. extra: 3948 / 3500,
  15571. bottom: 0.082
  15572. }
  15573. },
  15574. },
  15575. [
  15576. {
  15577. name: "Normal",
  15578. height: math.unit(4, "meters")
  15579. },
  15580. {
  15581. name: "Macro",
  15582. height: math.unit(100, "meters"),
  15583. default: true
  15584. },
  15585. {
  15586. name: "Macro+",
  15587. height: math.unit(300, "meters")
  15588. },
  15589. {
  15590. name: "Megamacro",
  15591. height: math.unit(3, "gigameters")
  15592. },
  15593. {
  15594. name: "Megamacro+",
  15595. height: math.unit(300, "terameters")
  15596. },
  15597. {
  15598. name: "Megamacro++",
  15599. height: math.unit(3, "lightyears")
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15605. {
  15606. front: {
  15607. height: math.unit(6, "feet"),
  15608. weight: math.unit(50, "kg"),
  15609. name: "front",
  15610. image: {
  15611. source: "./media/characters/shiroryu/front.svg",
  15612. extra: 1990 / 1935
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Mortal Mingling",
  15619. height: math.unit(3, "meters")
  15620. },
  15621. {
  15622. name: "Kaiju-ish",
  15623. height: math.unit(250, "meters")
  15624. },
  15625. {
  15626. name: "Somewhat Godly",
  15627. height: math.unit(400, "km"),
  15628. default: true
  15629. },
  15630. {
  15631. name: "Planetary",
  15632. height: math.unit(300, "megameters")
  15633. },
  15634. {
  15635. name: "Galaxy-dwarfing",
  15636. height: math.unit(450, "kiloparsecs")
  15637. },
  15638. {
  15639. name: "Universe Eater",
  15640. height: math.unit(150, "gigaparsecs")
  15641. },
  15642. {
  15643. name: "Almost Immeasurable",
  15644. height: math.unit(1.3e266, "yottaparsecs")
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(6, "feet"),
  15653. weight: math.unit(150, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/umeko/front.svg",
  15657. extra: 1,
  15658. bottom: 0.019
  15659. }
  15660. },
  15661. frontArmored: {
  15662. height: math.unit(6, "feet"),
  15663. weight: math.unit(150, "lb"),
  15664. name: "Front (Armored)",
  15665. image: {
  15666. source: "./media/characters/umeko/front-armored.svg",
  15667. extra: 1,
  15668. bottom: 0.021
  15669. }
  15670. },
  15671. },
  15672. [
  15673. {
  15674. name: "Macro",
  15675. height: math.unit(220, "feet"),
  15676. default: true
  15677. },
  15678. {
  15679. name: "Guardian Dragon",
  15680. height: math.unit(50, "miles")
  15681. },
  15682. {
  15683. name: "Cosmic",
  15684. height: math.unit(800000, "miles")
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(6, "feet"),
  15693. weight: math.unit(150, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/cassidy/front.svg",
  15697. extra: 810/808,
  15698. bottom: 41/851
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Canon Height",
  15705. height: math.unit(120, "feet"),
  15706. default: true
  15707. },
  15708. {
  15709. name: "Macro+",
  15710. height: math.unit(400, "feet")
  15711. },
  15712. {
  15713. name: "Macro++",
  15714. height: math.unit(4000, "feet")
  15715. },
  15716. {
  15717. name: "Megamacro",
  15718. height: math.unit(3, "miles")
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15724. {
  15725. front: {
  15726. height: math.unit(6, "feet"),
  15727. weight: math.unit(150, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/isaac/front.svg",
  15731. extra: 896 / 815,
  15732. bottom: 0.11
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Human Size",
  15739. height: math.unit(8, "feet"),
  15740. default: true
  15741. },
  15742. {
  15743. name: "Macro",
  15744. height: math.unit(400, "feet")
  15745. },
  15746. {
  15747. name: "Megamacro",
  15748. height: math.unit(50, "miles")
  15749. },
  15750. {
  15751. name: "Canon Height",
  15752. height: math.unit(200, "AU")
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15758. {
  15759. front: {
  15760. height: math.unit(6, "feet"),
  15761. weight: math.unit(72, "kg"),
  15762. name: "Front",
  15763. image: {
  15764. source: "./media/characters/sleekit/front.svg",
  15765. extra: 4693 / 4487,
  15766. bottom: 0.012
  15767. }
  15768. },
  15769. },
  15770. [
  15771. {
  15772. name: "Minimum Height",
  15773. height: math.unit(10, "meters")
  15774. },
  15775. {
  15776. name: "Smaller",
  15777. height: math.unit(25, "meters")
  15778. },
  15779. {
  15780. name: "Larger",
  15781. height: math.unit(38, "meters"),
  15782. default: true
  15783. },
  15784. {
  15785. name: "Maximum height",
  15786. height: math.unit(100, "meters")
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15792. {
  15793. front: {
  15794. height: math.unit(6, "feet"),
  15795. weight: math.unit(150, "lb"),
  15796. name: "Front",
  15797. image: {
  15798. source: "./media/characters/nillia/front.svg",
  15799. extra: 719/665,
  15800. bottom: 6/725
  15801. }
  15802. },
  15803. back: {
  15804. height: math.unit(6, "feet"),
  15805. weight: math.unit(150, "lb"),
  15806. name: "Back",
  15807. image: {
  15808. source: "./media/characters/nillia/back.svg",
  15809. extra: 705/651,
  15810. bottom: 5/710
  15811. }
  15812. },
  15813. },
  15814. [
  15815. {
  15816. name: "Canon Height",
  15817. height: math.unit(489, "feet"),
  15818. default: true
  15819. }
  15820. ]
  15821. ))
  15822. characterMakers.push(() => makeCharacter(
  15823. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15824. {
  15825. front: {
  15826. height: math.unit(6, "feet"),
  15827. weight: math.unit(150, "lb"),
  15828. name: "Front",
  15829. image: {
  15830. source: "./media/characters/mesmyriza/front.svg",
  15831. extra: 1541/1291,
  15832. bottom: 87/1628
  15833. }
  15834. },
  15835. foot: {
  15836. height: math.unit(6 / (250 / 35), "feet"),
  15837. name: "Foot",
  15838. image: {
  15839. source: "./media/characters/mesmyriza/foot.svg"
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Macro",
  15846. height: math.unit(457, "meters"),
  15847. default: true
  15848. },
  15849. {
  15850. name: "Megamacro",
  15851. height: math.unit(8, "megameters")
  15852. },
  15853. ]
  15854. ))
  15855. characterMakers.push(() => makeCharacter(
  15856. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15857. {
  15858. front: {
  15859. height: math.unit(6, "feet"),
  15860. weight: math.unit(250, "lb"),
  15861. name: "Front",
  15862. image: {
  15863. source: "./media/characters/saudade/front.svg",
  15864. extra: 1172 / 1139,
  15865. bottom: 0.035
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Micro",
  15872. height: math.unit(3, "inches")
  15873. },
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(6, "feet"),
  15877. default: true
  15878. },
  15879. {
  15880. name: "Macro",
  15881. height: math.unit(50, "feet")
  15882. },
  15883. {
  15884. name: "Megamacro",
  15885. height: math.unit(2800, "feet")
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(5 + 4 / 12, "feet"),
  15894. weight: math.unit(100, "lb"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/keireer/front.svg",
  15898. extra: 716 / 666,
  15899. bottom: 0.05
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Normal",
  15906. height: math.unit(5 + 4 / 12, "feet"),
  15907. default: true
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15913. {
  15914. front: {
  15915. height: math.unit(5.5, "feet"),
  15916. weight: math.unit(90, "kg"),
  15917. name: "Front",
  15918. image: {
  15919. source: "./media/characters/mirja/front.svg",
  15920. extra: 1452/1262,
  15921. bottom: 67/1519
  15922. }
  15923. },
  15924. frontDressed: {
  15925. height: math.unit(5.5, "feet"),
  15926. weight: math.unit(90, "lb"),
  15927. name: "Front (Dressed)",
  15928. image: {
  15929. source: "./media/characters/mirja/dressed.svg",
  15930. extra: 1452/1262,
  15931. bottom: 67/1519
  15932. }
  15933. },
  15934. back: {
  15935. height: math.unit(6, "feet"),
  15936. weight: math.unit(90, "lb"),
  15937. name: "Back",
  15938. image: {
  15939. source: "./media/characters/mirja/back.svg",
  15940. extra: 1892/1795,
  15941. bottom: 48/1940
  15942. }
  15943. },
  15944. maw: {
  15945. height: math.unit(1.312, "feet"),
  15946. name: "Maw",
  15947. image: {
  15948. source: "./media/characters/mirja/maw.svg"
  15949. }
  15950. },
  15951. paw: {
  15952. height: math.unit(1.15, "feet"),
  15953. name: "Paw",
  15954. image: {
  15955. source: "./media/characters/mirja/paw.svg"
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "\"Incognito\"",
  15962. height: math.unit(3, "meters")
  15963. },
  15964. {
  15965. name: "Strolling Size",
  15966. height: math.unit(15, "km")
  15967. },
  15968. {
  15969. name: "Larger Strolling Size",
  15970. height: math.unit(400, "km")
  15971. },
  15972. {
  15973. name: "Preferred Size",
  15974. height: math.unit(5000, "km"),
  15975. default: true
  15976. },
  15977. {
  15978. name: "True Size",
  15979. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15980. },
  15981. ]
  15982. ))
  15983. characterMakers.push(() => makeCharacter(
  15984. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15985. {
  15986. front: {
  15987. height: math.unit(15, "feet"),
  15988. weight: math.unit(880, "kg"),
  15989. name: "Front",
  15990. image: {
  15991. source: "./media/characters/nightraver/front.svg",
  15992. extra: 2444 / 2160,
  15993. bottom: 0.027
  15994. }
  15995. },
  15996. back: {
  15997. height: math.unit(15, "feet"),
  15998. weight: math.unit(880, "kg"),
  15999. name: "Back",
  16000. image: {
  16001. source: "./media/characters/nightraver/back.svg",
  16002. extra: 2309 / 2180,
  16003. bottom: 0.005
  16004. }
  16005. },
  16006. sole: {
  16007. height: math.unit(2.878, "feet"),
  16008. name: "Sole",
  16009. image: {
  16010. source: "./media/characters/nightraver/sole.svg"
  16011. }
  16012. },
  16013. foot: {
  16014. height: math.unit(2.285, "feet"),
  16015. name: "Foot",
  16016. image: {
  16017. source: "./media/characters/nightraver/foot.svg"
  16018. }
  16019. },
  16020. maw: {
  16021. height: math.unit(2.67, "feet"),
  16022. name: "Maw",
  16023. image: {
  16024. source: "./media/characters/nightraver/maw.svg"
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Micro",
  16031. height: math.unit(1, "cm")
  16032. },
  16033. {
  16034. name: "Normal",
  16035. height: math.unit(15, "feet"),
  16036. default: true
  16037. },
  16038. {
  16039. name: "Macro",
  16040. height: math.unit(300, "feet")
  16041. },
  16042. {
  16043. name: "Megamacro",
  16044. height: math.unit(300, "miles")
  16045. },
  16046. {
  16047. name: "Gigamacro",
  16048. height: math.unit(10000, "miles")
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16054. {
  16055. side: {
  16056. height: math.unit(2, "inches"),
  16057. weight: math.unit(5, "grams"),
  16058. name: "Side",
  16059. image: {
  16060. source: "./media/characters/arc/side.svg"
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Micro",
  16067. height: math.unit(2, "inches"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(1.1938, "meters"),
  16077. weight: math.unit(54, "kg"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/nebula-shahar/front.svg",
  16081. extra: 1642 / 1436,
  16082. bottom: 0.06
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Megamicro",
  16089. height: math.unit(0.3, "mm")
  16090. },
  16091. {
  16092. name: "Micro",
  16093. height: math.unit(3, "cm")
  16094. },
  16095. {
  16096. name: "Normal",
  16097. height: math.unit(138, "cm"),
  16098. default: true
  16099. },
  16100. {
  16101. name: "Macro",
  16102. height: math.unit(30, "m")
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(5.24, "feet"),
  16111. weight: math.unit(150, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/shayla/front.svg",
  16115. extra: 1512 / 1414,
  16116. bottom: 0.01
  16117. }
  16118. },
  16119. back: {
  16120. height: math.unit(5.24, "feet"),
  16121. weight: math.unit(150, "lb"),
  16122. name: "Back",
  16123. image: {
  16124. source: "./media/characters/shayla/back.svg",
  16125. extra: 1512 / 1414
  16126. }
  16127. },
  16128. hand: {
  16129. height: math.unit(0.7781496062992126, "feet"),
  16130. name: "Hand",
  16131. image: {
  16132. source: "./media/characters/shayla/hand.svg"
  16133. }
  16134. },
  16135. foot: {
  16136. height: math.unit(1.4206036745406823, "feet"),
  16137. name: "Foot",
  16138. image: {
  16139. source: "./media/characters/shayla/foot.svg"
  16140. }
  16141. },
  16142. },
  16143. [
  16144. {
  16145. name: "Micro",
  16146. height: math.unit(0.32, "feet")
  16147. },
  16148. {
  16149. name: "Normal",
  16150. height: math.unit(5.24, "feet"),
  16151. default: true
  16152. },
  16153. {
  16154. name: "Macro",
  16155. height: math.unit(492.12, "feet")
  16156. },
  16157. {
  16158. name: "Megamacro",
  16159. height: math.unit(186.41, "miles")
  16160. },
  16161. ]
  16162. ))
  16163. characterMakers.push(() => makeCharacter(
  16164. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16165. {
  16166. front: {
  16167. height: math.unit(2.2, "m"),
  16168. weight: math.unit(120, "kg"),
  16169. name: "Front",
  16170. image: {
  16171. source: "./media/characters/pia-jr/front.svg",
  16172. extra: 1000 / 970,
  16173. bottom: 0.035
  16174. }
  16175. },
  16176. hand: {
  16177. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16178. name: "Hand",
  16179. image: {
  16180. source: "./media/characters/pia-jr/hand.svg"
  16181. }
  16182. },
  16183. paw: {
  16184. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16185. name: "Paw",
  16186. image: {
  16187. source: "./media/characters/pia-jr/paw.svg"
  16188. }
  16189. },
  16190. },
  16191. [
  16192. {
  16193. name: "Micro",
  16194. height: math.unit(1.2, "cm")
  16195. },
  16196. {
  16197. name: "Normal",
  16198. height: math.unit(2.2, "m"),
  16199. default: true
  16200. },
  16201. {
  16202. name: "Macro",
  16203. height: math.unit(180, "m")
  16204. },
  16205. {
  16206. name: "Megamacro",
  16207. height: math.unit(420, "km")
  16208. },
  16209. ]
  16210. ))
  16211. characterMakers.push(() => makeCharacter(
  16212. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16213. {
  16214. front: {
  16215. height: math.unit(2, "m"),
  16216. weight: math.unit(115, "kg"),
  16217. name: "Front",
  16218. image: {
  16219. source: "./media/characters/pia-sr/front.svg",
  16220. extra: 760 / 730,
  16221. bottom: 0.015
  16222. }
  16223. },
  16224. back: {
  16225. height: math.unit(2, "m"),
  16226. weight: math.unit(115, "kg"),
  16227. name: "Back",
  16228. image: {
  16229. source: "./media/characters/pia-sr/back.svg",
  16230. extra: 760 / 730,
  16231. bottom: 0.01
  16232. }
  16233. },
  16234. hand: {
  16235. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16236. name: "Hand",
  16237. image: {
  16238. source: "./media/characters/pia-sr/hand.svg"
  16239. }
  16240. },
  16241. foot: {
  16242. height: math.unit(1.83, "feet"),
  16243. name: "Foot",
  16244. image: {
  16245. source: "./media/characters/pia-sr/foot.svg"
  16246. }
  16247. },
  16248. },
  16249. [
  16250. {
  16251. name: "Micro",
  16252. height: math.unit(88, "mm")
  16253. },
  16254. {
  16255. name: "Normal",
  16256. height: math.unit(2, "m"),
  16257. default: true
  16258. },
  16259. {
  16260. name: "Macro",
  16261. height: math.unit(200, "m")
  16262. },
  16263. {
  16264. name: "Megamacro",
  16265. height: math.unit(420, "km")
  16266. },
  16267. ]
  16268. ))
  16269. characterMakers.push(() => makeCharacter(
  16270. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16271. {
  16272. front: {
  16273. height: math.unit(8 + 2 / 12, "feet"),
  16274. weight: math.unit(300, "lb"),
  16275. name: "Front",
  16276. image: {
  16277. source: "./media/characters/kibibyte/front.svg",
  16278. extra: 2221 / 2098,
  16279. bottom: 0.04
  16280. }
  16281. },
  16282. },
  16283. [
  16284. {
  16285. name: "Normal",
  16286. height: math.unit(8 + 2 / 12, "feet"),
  16287. default: true
  16288. },
  16289. {
  16290. name: "Socialable Macro",
  16291. height: math.unit(50, "feet")
  16292. },
  16293. {
  16294. name: "Macro",
  16295. height: math.unit(300, "feet")
  16296. },
  16297. {
  16298. name: "Megamacro",
  16299. height: math.unit(500, "miles")
  16300. },
  16301. ]
  16302. ))
  16303. characterMakers.push(() => makeCharacter(
  16304. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16305. {
  16306. front: {
  16307. height: math.unit(6, "feet"),
  16308. weight: math.unit(150, "lb"),
  16309. name: "Front",
  16310. image: {
  16311. source: "./media/characters/felix/front.svg",
  16312. extra: 762 / 722,
  16313. bottom: 0.02
  16314. }
  16315. },
  16316. frontClothed: {
  16317. height: math.unit(6, "feet"),
  16318. weight: math.unit(150, "lb"),
  16319. name: "Front (Clothed)",
  16320. image: {
  16321. source: "./media/characters/felix/front-clothed.svg",
  16322. extra: 762 / 722,
  16323. bottom: 0.02
  16324. }
  16325. },
  16326. },
  16327. [
  16328. {
  16329. name: "Normal",
  16330. height: math.unit(6 + 8 / 12, "feet"),
  16331. default: true
  16332. },
  16333. {
  16334. name: "Macro",
  16335. height: math.unit(2600, "feet")
  16336. },
  16337. {
  16338. name: "Megamacro",
  16339. height: math.unit(450, "miles")
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16345. {
  16346. front: {
  16347. height: math.unit(6 + 1 / 12, "feet"),
  16348. weight: math.unit(250, "lb"),
  16349. name: "Front",
  16350. image: {
  16351. source: "./media/characters/tobo/front.svg",
  16352. extra: 608 / 586,
  16353. bottom: 0.023
  16354. }
  16355. },
  16356. back: {
  16357. height: math.unit(6 + 1 / 12, "feet"),
  16358. weight: math.unit(250, "lb"),
  16359. name: "Back",
  16360. image: {
  16361. source: "./media/characters/tobo/back.svg",
  16362. extra: 608 / 586
  16363. }
  16364. },
  16365. },
  16366. [
  16367. {
  16368. name: "Nano",
  16369. height: math.unit(2, "nm")
  16370. },
  16371. {
  16372. name: "Megamicro",
  16373. height: math.unit(0.1, "mm")
  16374. },
  16375. {
  16376. name: "Micro",
  16377. height: math.unit(1, "inch"),
  16378. default: true
  16379. },
  16380. {
  16381. name: "Human-sized",
  16382. height: math.unit(6 + 1 / 12, "feet")
  16383. },
  16384. {
  16385. name: "Macro",
  16386. height: math.unit(250, "feet")
  16387. },
  16388. {
  16389. name: "Megamacro",
  16390. height: math.unit(75, "miles")
  16391. },
  16392. {
  16393. name: "Texas-sized",
  16394. height: math.unit(750, "miles")
  16395. },
  16396. {
  16397. name: "Teramacro",
  16398. height: math.unit(50000, "miles")
  16399. },
  16400. ]
  16401. ))
  16402. characterMakers.push(() => makeCharacter(
  16403. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16404. {
  16405. front: {
  16406. height: math.unit(6, "feet"),
  16407. weight: math.unit(269, "lb"),
  16408. name: "Front",
  16409. image: {
  16410. source: "./media/characters/danny-kapowsky/front.svg",
  16411. extra: 766 / 736,
  16412. bottom: 0.044
  16413. }
  16414. },
  16415. back: {
  16416. height: math.unit(6, "feet"),
  16417. weight: math.unit(269, "lb"),
  16418. name: "Back",
  16419. image: {
  16420. source: "./media/characters/danny-kapowsky/back.svg",
  16421. extra: 797 / 760,
  16422. bottom: 0.025
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Macro",
  16429. height: math.unit(150, "feet"),
  16430. default: true
  16431. },
  16432. {
  16433. name: "Macro+",
  16434. height: math.unit(200, "feet")
  16435. },
  16436. {
  16437. name: "Macro++",
  16438. height: math.unit(300, "feet")
  16439. },
  16440. {
  16441. name: "Macro+++",
  16442. height: math.unit(400, "feet")
  16443. },
  16444. ]
  16445. ))
  16446. characterMakers.push(() => makeCharacter(
  16447. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16448. {
  16449. side: {
  16450. height: math.unit(6, "feet"),
  16451. weight: math.unit(170, "lb"),
  16452. name: "Side",
  16453. image: {
  16454. source: "./media/characters/finn/side.svg",
  16455. extra: 1953 / 1807,
  16456. bottom: 0.057
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Megamacro",
  16463. height: math.unit(14445, "feet"),
  16464. default: true
  16465. },
  16466. ]
  16467. ))
  16468. characterMakers.push(() => makeCharacter(
  16469. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16470. {
  16471. front: {
  16472. height: math.unit(5 + 6 / 12, "feet"),
  16473. weight: math.unit(125, "lb"),
  16474. name: "Front",
  16475. image: {
  16476. source: "./media/characters/roy/front.svg",
  16477. extra: 1,
  16478. bottom: 0.11
  16479. }
  16480. },
  16481. },
  16482. [
  16483. {
  16484. name: "Micro",
  16485. height: math.unit(3, "inches"),
  16486. default: true
  16487. },
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(5 + 6 / 12, "feet")
  16491. },
  16492. {
  16493. name: "Lesser Macro",
  16494. height: math.unit(60, "feet")
  16495. },
  16496. {
  16497. name: "Greater Macro",
  16498. height: math.unit(120, "feet")
  16499. },
  16500. ]
  16501. ))
  16502. characterMakers.push(() => makeCharacter(
  16503. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16504. {
  16505. front: {
  16506. height: math.unit(6, "feet"),
  16507. weight: math.unit(100, "lb"),
  16508. name: "Front",
  16509. image: {
  16510. source: "./media/characters/aevsivs/front.svg",
  16511. extra: 1,
  16512. bottom: 0.03
  16513. }
  16514. },
  16515. back: {
  16516. height: math.unit(6, "feet"),
  16517. weight: math.unit(100, "lb"),
  16518. name: "Back",
  16519. image: {
  16520. source: "./media/characters/aevsivs/back.svg"
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Micro",
  16527. height: math.unit(2, "inches"),
  16528. default: true
  16529. },
  16530. {
  16531. name: "Normal",
  16532. height: math.unit(5, "feet")
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(5 + 7 / 12, "feet"),
  16541. weight: math.unit(159, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/hildegard/front.svg",
  16545. extra: 289 / 269,
  16546. bottom: 7.63 / 297.8
  16547. }
  16548. },
  16549. back: {
  16550. height: math.unit(5 + 7 / 12, "feet"),
  16551. weight: math.unit(159, "lb"),
  16552. name: "Back",
  16553. image: {
  16554. source: "./media/characters/hildegard/back.svg",
  16555. extra: 280 / 260,
  16556. bottom: 2.3 / 282
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(5 + 7 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16570. {
  16571. bernard: {
  16572. height: math.unit(2 + 7 / 12, "feet"),
  16573. weight: math.unit(66, "lb"),
  16574. name: "Bernard",
  16575. rename: true,
  16576. image: {
  16577. source: "./media/characters/bernard-wilder/bernard.svg",
  16578. extra: 192 / 128,
  16579. bottom: 0.05
  16580. }
  16581. },
  16582. wilder: {
  16583. height: math.unit(5 + 8 / 12, "feet"),
  16584. weight: math.unit(143, "lb"),
  16585. name: "Wilder",
  16586. rename: true,
  16587. image: {
  16588. source: "./media/characters/bernard-wilder/wilder.svg",
  16589. extra: 361 / 312,
  16590. bottom: 0.02
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Normal",
  16597. height: math.unit(2 + 7 / 12, "feet"),
  16598. default: true
  16599. },
  16600. ]
  16601. ))
  16602. characterMakers.push(() => makeCharacter(
  16603. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16604. {
  16605. anthro: {
  16606. height: math.unit(6 + 1 / 12, "feet"),
  16607. weight: math.unit(155, "lb"),
  16608. name: "Anthro",
  16609. image: {
  16610. source: "./media/characters/hearth/anthro.svg",
  16611. extra: 1178/1136,
  16612. bottom: 28/1206
  16613. }
  16614. },
  16615. feral: {
  16616. height: math.unit(3.78, "feet"),
  16617. weight: math.unit(35, "kg"),
  16618. name: "Feral",
  16619. image: {
  16620. source: "./media/characters/hearth/feral.svg",
  16621. extra: 153 / 135,
  16622. bottom: 0.03
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(6 + 1 / 12, "feet"),
  16630. default: true
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16636. {
  16637. front: {
  16638. height: math.unit(6, "feet"),
  16639. weight: math.unit(182, "lb"),
  16640. name: "Front",
  16641. image: {
  16642. source: "./media/characters/ingrid/front.svg",
  16643. extra: 294 / 268,
  16644. bottom: 0.027
  16645. }
  16646. },
  16647. },
  16648. [
  16649. {
  16650. name: "Normal",
  16651. height: math.unit(6, "feet"),
  16652. default: true
  16653. },
  16654. ]
  16655. ))
  16656. characterMakers.push(() => makeCharacter(
  16657. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16658. {
  16659. eevee: {
  16660. height: math.unit(2 + 10 / 12, "feet"),
  16661. weight: math.unit(86, "lb"),
  16662. name: "Malgam",
  16663. image: {
  16664. source: "./media/characters/malgam/eevee.svg",
  16665. extra: 952/784,
  16666. bottom: 38/990
  16667. }
  16668. },
  16669. sylveon: {
  16670. height: math.unit(4, "feet"),
  16671. weight: math.unit(101, "lb"),
  16672. name: "Future Malgam",
  16673. rename: true,
  16674. image: {
  16675. source: "./media/characters/malgam/sylveon.svg",
  16676. extra: 371 / 325,
  16677. bottom: 0.015
  16678. }
  16679. },
  16680. gigantamax: {
  16681. height: math.unit(50, "feet"),
  16682. name: "Gigantamax Malgam",
  16683. rename: true,
  16684. image: {
  16685. source: "./media/characters/malgam/gigantamax.svg"
  16686. }
  16687. },
  16688. },
  16689. [
  16690. {
  16691. name: "Normal",
  16692. height: math.unit(2 + 10 / 12, "feet"),
  16693. default: true
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16699. {
  16700. front: {
  16701. height: math.unit(5 + 11 / 12, "feet"),
  16702. weight: math.unit(188, "lb"),
  16703. name: "Front",
  16704. image: {
  16705. source: "./media/characters/fleur/front.svg",
  16706. extra: 309 / 283,
  16707. bottom: 0.007
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(5 + 11 / 12, "feet"),
  16715. default: true
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(5 + 4 / 12, "feet"),
  16724. weight: math.unit(122, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/jude/front.svg",
  16728. extra: 288 / 273,
  16729. bottom: 0.03
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(5 + 4 / 12, "feet"),
  16737. default: true
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16743. {
  16744. front: {
  16745. height: math.unit(5 + 11 / 12, "feet"),
  16746. weight: math.unit(190, "lb"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/seara/front.svg",
  16750. extra: 1,
  16751. bottom: 0.05
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(5 + 11 / 12, "feet"),
  16759. default: true
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(16 + 5 / 12, "feet"),
  16768. weight: math.unit(524, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/caspian-lugia/front.svg",
  16772. extra: 1,
  16773. bottom: 0.04
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(16 + 5 / 12, "feet"),
  16781. default: true
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16787. {
  16788. front: {
  16789. height: math.unit(5 + 7 / 12, "feet"),
  16790. weight: math.unit(170, "lb"),
  16791. name: "Front",
  16792. image: {
  16793. source: "./media/characters/mika/front.svg",
  16794. extra: 1,
  16795. bottom: 0.016
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(5 + 7 / 12, "feet"),
  16803. default: true
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(6 + 2 / 12, "feet"),
  16812. weight: math.unit(268, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/sol/front.svg",
  16816. extra: 247 / 231,
  16817. bottom: 0.05
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(6 + 2 / 12, "feet"),
  16825. default: true
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16831. {
  16832. buizel: {
  16833. height: math.unit(2 + 5 / 12, "feet"),
  16834. weight: math.unit(87, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/umiko/buizel.svg",
  16838. extra: 172 / 157,
  16839. bottom: 0.01
  16840. },
  16841. form: "buizel",
  16842. default: true
  16843. },
  16844. floatzel: {
  16845. height: math.unit(5 + 9 / 12, "feet"),
  16846. weight: math.unit(250, "lb"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/umiko/floatzel.svg",
  16850. extra: 1076/1006,
  16851. bottom: 15/1091
  16852. },
  16853. form: "floatzel",
  16854. default: true
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Normal",
  16860. height: math.unit(2 + 5 / 12, "feet"),
  16861. form: "buizel",
  16862. default: true
  16863. },
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(5 + 9 / 12, "feet"),
  16867. form: "floatzel",
  16868. default: true
  16869. },
  16870. ],
  16871. {
  16872. "buizel": {
  16873. name: "Buizel"
  16874. },
  16875. "floatzel": {
  16876. name: "Floatzel",
  16877. default: true
  16878. }
  16879. }
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16883. {
  16884. front: {
  16885. height: math.unit(6 + 2 / 12, "feet"),
  16886. weight: math.unit(146, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/iliac/front.svg",
  16890. extra: 389 / 365,
  16891. bottom: 0.035
  16892. }
  16893. },
  16894. },
  16895. [
  16896. {
  16897. name: "Normal",
  16898. height: math.unit(6 + 2 / 12, "feet"),
  16899. default: true
  16900. },
  16901. ]
  16902. ))
  16903. characterMakers.push(() => makeCharacter(
  16904. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16905. {
  16906. front: {
  16907. height: math.unit(6, "feet"),
  16908. weight: math.unit(170, "lb"),
  16909. name: "Front",
  16910. image: {
  16911. source: "./media/characters/topaz/front.svg",
  16912. extra: 317 / 303,
  16913. bottom: 0.055
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Normal",
  16920. height: math.unit(6, "feet"),
  16921. default: true
  16922. },
  16923. ]
  16924. ))
  16925. characterMakers.push(() => makeCharacter(
  16926. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16927. {
  16928. front: {
  16929. height: math.unit(5 + 11 / 12, "feet"),
  16930. weight: math.unit(144, "lb"),
  16931. name: "Front",
  16932. image: {
  16933. source: "./media/characters/gabriel/front.svg",
  16934. extra: 285 / 262,
  16935. bottom: 0.004
  16936. }
  16937. },
  16938. },
  16939. [
  16940. {
  16941. name: "Normal",
  16942. height: math.unit(5 + 11 / 12, "feet"),
  16943. default: true
  16944. },
  16945. ]
  16946. ))
  16947. characterMakers.push(() => makeCharacter(
  16948. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16949. {
  16950. side: {
  16951. height: math.unit(6 + 5 / 12, "feet"),
  16952. weight: math.unit(300, "lb"),
  16953. name: "Side",
  16954. image: {
  16955. source: "./media/characters/tempest-suicune/side.svg",
  16956. extra: 195 / 154,
  16957. bottom: 0.04
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(6 + 5 / 12, "feet"),
  16965. default: true
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(7 + 2 / 12, "feet"),
  16974. weight: math.unit(322, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/vulcan/front.svg",
  16978. extra: 154 / 147,
  16979. bottom: 0.04
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(7 + 2 / 12, "feet"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16993. {
  16994. front: {
  16995. height: math.unit(5 + 10 / 12, "feet"),
  16996. weight: math.unit(264, "lb"),
  16997. name: "Front",
  16998. image: {
  16999. source: "./media/characters/gault/front.svg",
  17000. extra: 161 / 140,
  17001. bottom: 0.028
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(5 + 10 / 12, "feet"),
  17009. default: true
  17010. },
  17011. ]
  17012. ))
  17013. characterMakers.push(() => makeCharacter(
  17014. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17015. {
  17016. front: {
  17017. height: math.unit(6, "feet"),
  17018. weight: math.unit(150, "lb"),
  17019. name: "Front",
  17020. image: {
  17021. source: "./media/characters/shard/front.svg",
  17022. extra: 273 / 238,
  17023. bottom: 0.02
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(3 + 6 / 12, "feet"),
  17031. default: true
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17037. {
  17038. front: {
  17039. height: math.unit(5 + 11 / 12, "feet"),
  17040. weight: math.unit(146, "lb"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/ashe/front.svg",
  17044. extra: 400 / 373,
  17045. bottom: 0.01
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(5 + 11 / 12, "feet"),
  17053. default: true
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17059. {
  17060. front: {
  17061. height: math.unit(5 + 5 / 12, "feet"),
  17062. weight: math.unit(135, "lb"),
  17063. name: "Front",
  17064. image: {
  17065. source: "./media/characters/beatrix/front.svg",
  17066. extra: 392 / 379,
  17067. bottom: 0.01
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(6, "feet"),
  17075. default: true
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17081. {
  17082. front: {
  17083. height: math.unit(6 + 2/12, "feet"),
  17084. weight: math.unit(135, "lb"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/ignatius/front.svg",
  17088. extra: 1380/1259,
  17089. bottom: 27/1407
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(6 + 2/12, "feet"),
  17097. default: true
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17103. {
  17104. front: {
  17105. height: math.unit(6 + 2 / 12, "feet"),
  17106. weight: math.unit(138, "lb"),
  17107. name: "Front",
  17108. image: {
  17109. source: "./media/characters/mei-li/front.svg",
  17110. extra: 237 / 229,
  17111. bottom: 0.03
  17112. }
  17113. },
  17114. },
  17115. [
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(6 + 2 / 12, "feet"),
  17119. default: true
  17120. },
  17121. ]
  17122. ))
  17123. characterMakers.push(() => makeCharacter(
  17124. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17125. {
  17126. front: {
  17127. height: math.unit(2 + 4 / 12, "feet"),
  17128. weight: math.unit(62, "lb"),
  17129. name: "Front",
  17130. image: {
  17131. source: "./media/characters/puru/front.svg",
  17132. extra: 206 / 149,
  17133. bottom: 0.06
  17134. }
  17135. },
  17136. },
  17137. [
  17138. {
  17139. name: "Normal",
  17140. height: math.unit(2 + 4 / 12, "feet"),
  17141. default: true
  17142. },
  17143. ]
  17144. ))
  17145. characterMakers.push(() => makeCharacter(
  17146. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17147. {
  17148. anthro: {
  17149. height: math.unit(5 + 8/12, "feet"),
  17150. weight: math.unit(200, "lb"),
  17151. energyNeed: math.unit(2000, "kcal"),
  17152. name: "Anthro",
  17153. image: {
  17154. source: "./media/characters/kee/anthro.svg",
  17155. extra: 3251/3184,
  17156. bottom: 250/3501
  17157. }
  17158. },
  17159. taur: {
  17160. height: math.unit(11, "feet"),
  17161. weight: math.unit(500, "lb"),
  17162. energyNeed: math.unit(5000, "kcal"),
  17163. name: "Taur",
  17164. image: {
  17165. source: "./media/characters/kee/taur.svg",
  17166. extra: 1362/1320,
  17167. bottom: 83/1445
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(5 + 8/12, "feet"),
  17175. default: true
  17176. },
  17177. {
  17178. name: "Macro",
  17179. height: math.unit(35, "feet")
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17185. {
  17186. anthro: {
  17187. height: math.unit(7, "feet"),
  17188. weight: math.unit(190, "lb"),
  17189. name: "Anthro",
  17190. image: {
  17191. source: "./media/characters/cobalt-dracha/anthro.svg",
  17192. extra: 231 / 225,
  17193. bottom: 0.04
  17194. }
  17195. },
  17196. feral: {
  17197. height: math.unit(9 + 7 / 12, "feet"),
  17198. weight: math.unit(294, "lb"),
  17199. name: "Feral",
  17200. image: {
  17201. source: "./media/characters/cobalt-dracha/feral.svg",
  17202. extra: 692 / 633,
  17203. bottom: 0.05
  17204. }
  17205. },
  17206. },
  17207. [
  17208. {
  17209. name: "Normal",
  17210. height: math.unit(7, "feet"),
  17211. default: true
  17212. },
  17213. ]
  17214. ))
  17215. characterMakers.push(() => makeCharacter(
  17216. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17217. {
  17218. fallen: {
  17219. height: math.unit(11 + 8 / 12, "feet"),
  17220. weight: math.unit(485, "lb"),
  17221. name: "Java (Fallen)",
  17222. rename: true,
  17223. image: {
  17224. source: "./media/characters/java/fallen.svg",
  17225. extra: 226 / 208,
  17226. bottom: 0.005
  17227. }
  17228. },
  17229. godkin: {
  17230. height: math.unit(10 + 6 / 12, "feet"),
  17231. weight: math.unit(328, "lb"),
  17232. name: "Java (Godkin)",
  17233. rename: true,
  17234. image: {
  17235. source: "./media/characters/java/godkin.svg",
  17236. extra: 1104/1068,
  17237. bottom: 36/1140
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(11 + 8 / 12, "feet"),
  17245. default: true
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17251. {
  17252. front: {
  17253. height: math.unit(5 + 9 / 12, "feet"),
  17254. weight: math.unit(170, "lb"),
  17255. name: "Front",
  17256. image: {
  17257. source: "./media/characters/purna/front.svg",
  17258. extra: 239 / 229,
  17259. bottom: 0.01
  17260. }
  17261. },
  17262. },
  17263. [
  17264. {
  17265. name: "Normal",
  17266. height: math.unit(5 + 9 / 12, "feet"),
  17267. default: true
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17273. {
  17274. front: {
  17275. height: math.unit(5 + 9 / 12, "feet"),
  17276. weight: math.unit(142, "lb"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/kuva/front.svg",
  17280. extra: 281 / 271,
  17281. bottom: 0.006
  17282. }
  17283. },
  17284. },
  17285. [
  17286. {
  17287. name: "Normal",
  17288. height: math.unit(5 + 9 / 12, "feet"),
  17289. default: true
  17290. },
  17291. ]
  17292. ))
  17293. characterMakers.push(() => makeCharacter(
  17294. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17295. {
  17296. anthro: {
  17297. height: math.unit(9 + 2 / 12, "feet"),
  17298. weight: math.unit(270, "lb"),
  17299. name: "Anthro",
  17300. image: {
  17301. source: "./media/characters/embra/anthro.svg",
  17302. extra: 200 / 187,
  17303. bottom: 0.02
  17304. }
  17305. },
  17306. feral: {
  17307. height: math.unit(18 + 8 / 12, "feet"),
  17308. weight: math.unit(576, "lb"),
  17309. name: "Feral",
  17310. image: {
  17311. source: "./media/characters/embra/feral.svg",
  17312. extra: 152 / 137,
  17313. bottom: 0.037
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Normal",
  17320. height: math.unit(9 + 2 / 12, "feet"),
  17321. default: true
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17327. {
  17328. anthro: {
  17329. height: math.unit(10 + 9 / 12, "feet"),
  17330. weight: math.unit(224, "lb"),
  17331. name: "Anthro",
  17332. image: {
  17333. source: "./media/characters/grottos/anthro.svg",
  17334. extra: 350 / 332,
  17335. bottom: 0.045
  17336. }
  17337. },
  17338. feral: {
  17339. height: math.unit(20 + 7 / 12, "feet"),
  17340. weight: math.unit(629, "lb"),
  17341. name: "Feral",
  17342. image: {
  17343. source: "./media/characters/grottos/feral.svg",
  17344. extra: 207 / 190,
  17345. bottom: 0.05
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Normal",
  17352. height: math.unit(10 + 9 / 12, "feet"),
  17353. default: true
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17359. {
  17360. anthro: {
  17361. height: math.unit(9 + 6 / 12, "feet"),
  17362. weight: math.unit(298, "lb"),
  17363. name: "Anthro",
  17364. image: {
  17365. source: "./media/characters/frifna/anthro.svg",
  17366. extra: 282 / 269,
  17367. bottom: 0.015
  17368. }
  17369. },
  17370. feral: {
  17371. height: math.unit(16 + 2 / 12, "feet"),
  17372. weight: math.unit(624, "lb"),
  17373. name: "Feral",
  17374. image: {
  17375. source: "./media/characters/frifna/feral.svg"
  17376. }
  17377. },
  17378. },
  17379. [
  17380. {
  17381. name: "Normal",
  17382. height: math.unit(9 + 6 / 12, "feet"),
  17383. default: true
  17384. },
  17385. ]
  17386. ))
  17387. characterMakers.push(() => makeCharacter(
  17388. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17389. {
  17390. front: {
  17391. height: math.unit(6 + 2 / 12, "feet"),
  17392. weight: math.unit(168, "lb"),
  17393. name: "Front",
  17394. image: {
  17395. source: "./media/characters/elise/front.svg",
  17396. extra: 276 / 271
  17397. }
  17398. },
  17399. },
  17400. [
  17401. {
  17402. name: "Normal",
  17403. height: math.unit(6 + 2 / 12, "feet"),
  17404. default: true
  17405. },
  17406. ]
  17407. ))
  17408. characterMakers.push(() => makeCharacter(
  17409. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17410. {
  17411. front: {
  17412. height: math.unit(5 + 10 / 12, "feet"),
  17413. weight: math.unit(210, "lb"),
  17414. name: "Front",
  17415. image: {
  17416. source: "./media/characters/glade/front.svg",
  17417. extra: 258 / 247,
  17418. bottom: 0.008
  17419. }
  17420. },
  17421. },
  17422. [
  17423. {
  17424. name: "Normal",
  17425. height: math.unit(5 + 10 / 12, "feet"),
  17426. default: true
  17427. },
  17428. ]
  17429. ))
  17430. characterMakers.push(() => makeCharacter(
  17431. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17432. {
  17433. front: {
  17434. height: math.unit(5 + 10 / 12, "feet"),
  17435. weight: math.unit(129, "lb"),
  17436. name: "Front",
  17437. image: {
  17438. source: "./media/characters/rina/front.svg",
  17439. extra: 266 / 255,
  17440. bottom: 0.005
  17441. }
  17442. },
  17443. },
  17444. [
  17445. {
  17446. name: "Normal",
  17447. height: math.unit(5 + 10 / 12, "feet"),
  17448. default: true
  17449. },
  17450. ]
  17451. ))
  17452. characterMakers.push(() => makeCharacter(
  17453. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17454. {
  17455. front: {
  17456. height: math.unit(6 + 1 / 12, "feet"),
  17457. weight: math.unit(192, "lb"),
  17458. name: "Front",
  17459. image: {
  17460. source: "./media/characters/veronica/front.svg",
  17461. extra: 319 / 309,
  17462. bottom: 0.005
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(6 + 1 / 12, "feet"),
  17470. default: true
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17476. {
  17477. front: {
  17478. height: math.unit(9 + 3 / 12, "feet"),
  17479. weight: math.unit(1100, "lb"),
  17480. name: "Front",
  17481. image: {
  17482. source: "./media/characters/braxton/front.svg",
  17483. extra: 1057 / 984,
  17484. bottom: 0.05
  17485. }
  17486. },
  17487. },
  17488. [
  17489. {
  17490. name: "Normal",
  17491. height: math.unit(9 + 3 / 12, "feet")
  17492. },
  17493. {
  17494. name: "Giant",
  17495. height: math.unit(300, "feet"),
  17496. default: true
  17497. },
  17498. {
  17499. name: "Macro",
  17500. height: math.unit(700, "feet")
  17501. },
  17502. {
  17503. name: "Megamacro",
  17504. height: math.unit(6000, "feet")
  17505. },
  17506. ]
  17507. ))
  17508. characterMakers.push(() => makeCharacter(
  17509. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17510. {
  17511. front: {
  17512. height: math.unit(6 + 7 / 12, "feet"),
  17513. weight: math.unit(150, "lb"),
  17514. name: "Front",
  17515. image: {
  17516. source: "./media/characters/blue-feyonics/front.svg",
  17517. extra: 1403 / 1306,
  17518. bottom: 0.047
  17519. }
  17520. },
  17521. },
  17522. [
  17523. {
  17524. name: "Normal",
  17525. height: math.unit(6 + 7 / 12, "feet"),
  17526. default: true
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17532. {
  17533. front: {
  17534. height: math.unit(1.8, "meters"),
  17535. weight: math.unit(60, "kg"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/maxwell/front.svg",
  17539. extra: 2060 / 1873
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Micro",
  17546. height: math.unit(1, "mm")
  17547. },
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(1.8, "meter"),
  17551. default: true
  17552. },
  17553. {
  17554. name: "Macro",
  17555. height: math.unit(30, "meters")
  17556. },
  17557. {
  17558. name: "Megamacro",
  17559. height: math.unit(10, "km")
  17560. },
  17561. ]
  17562. ))
  17563. characterMakers.push(() => makeCharacter(
  17564. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17565. {
  17566. front: {
  17567. height: math.unit(6, "feet"),
  17568. weight: math.unit(150, "lb"),
  17569. name: "Front",
  17570. image: {
  17571. source: "./media/characters/jack/front.svg",
  17572. extra: 1754 / 1640,
  17573. bottom: 0.01
  17574. }
  17575. },
  17576. },
  17577. [
  17578. {
  17579. name: "Normal",
  17580. height: math.unit(80000, "feet"),
  17581. default: true
  17582. },
  17583. {
  17584. name: "Max size",
  17585. height: math.unit(10, "lightyears")
  17586. },
  17587. ]
  17588. ))
  17589. characterMakers.push(() => makeCharacter(
  17590. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17591. {
  17592. urban: {
  17593. height: math.unit(5, "feet"),
  17594. weight: math.unit(240, "lb"),
  17595. name: "Urban",
  17596. image: {
  17597. source: "./media/characters/cafat/urban.svg",
  17598. extra: 1223/1126,
  17599. bottom: 205/1428
  17600. }
  17601. },
  17602. summer: {
  17603. height: math.unit(5, "feet"),
  17604. weight: math.unit(240, "lb"),
  17605. name: "Summer",
  17606. image: {
  17607. source: "./media/characters/cafat/summer.svg",
  17608. extra: 1223/1126,
  17609. bottom: 205/1428
  17610. }
  17611. },
  17612. winter: {
  17613. height: math.unit(5, "feet"),
  17614. weight: math.unit(240, "lb"),
  17615. name: "Winter",
  17616. image: {
  17617. source: "./media/characters/cafat/winter.svg",
  17618. extra: 1223/1126,
  17619. bottom: 205/1428
  17620. }
  17621. },
  17622. lingerie: {
  17623. height: math.unit(5, "feet"),
  17624. weight: math.unit(240, "lb"),
  17625. name: "Lingerie",
  17626. image: {
  17627. source: "./media/characters/cafat/lingerie.svg",
  17628. extra: 1223/1126,
  17629. bottom: 205/1428
  17630. }
  17631. },
  17632. upright: {
  17633. height: math.unit(6.3, "feet"),
  17634. weight: math.unit(240, "lb"),
  17635. name: "Upright",
  17636. image: {
  17637. source: "./media/characters/cafat/upright.svg",
  17638. bottom: 0.01
  17639. }
  17640. },
  17641. uprightFull: {
  17642. height: math.unit(6.3, "feet"),
  17643. weight: math.unit(240, "lb"),
  17644. name: "Upright (Full)",
  17645. image: {
  17646. source: "./media/characters/cafat/upright-full.svg",
  17647. bottom: 0.01
  17648. }
  17649. },
  17650. },
  17651. [
  17652. {
  17653. name: "Small",
  17654. height: math.unit(5, "feet"),
  17655. default: true
  17656. },
  17657. {
  17658. name: "Large",
  17659. height: math.unit(13, "feet")
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17665. {
  17666. front: {
  17667. height: math.unit(6, "feet"),
  17668. weight: math.unit(150, "lb"),
  17669. name: "Front",
  17670. image: {
  17671. source: "./media/characters/verin-raharra/front.svg",
  17672. extra: 5019 / 4835,
  17673. bottom: 0.023
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(7 + 5 / 12, "feet"),
  17681. default: true
  17682. },
  17683. {
  17684. name: "Upsized",
  17685. height: math.unit(20, "feet")
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17691. {
  17692. front: {
  17693. height: math.unit(7, "feet"),
  17694. weight: math.unit(230, "lb"),
  17695. name: "Front",
  17696. image: {
  17697. source: "./media/characters/nakata/front.svg",
  17698. extra: 1.005,
  17699. bottom: 0.01
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Normal",
  17706. height: math.unit(7, "feet"),
  17707. default: true
  17708. },
  17709. {
  17710. name: "Big",
  17711. height: math.unit(14, "feet")
  17712. },
  17713. {
  17714. name: "Macro",
  17715. height: math.unit(400, "feet")
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17721. {
  17722. front: {
  17723. height: math.unit(4.91, "feet"),
  17724. weight: math.unit(100, "lb"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/lily/front.svg",
  17728. extra: 1585 / 1415,
  17729. bottom: 0.02
  17730. }
  17731. },
  17732. },
  17733. [
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(4.91, "feet"),
  17737. default: true
  17738. },
  17739. ]
  17740. ))
  17741. characterMakers.push(() => makeCharacter(
  17742. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17743. {
  17744. laying: {
  17745. height: math.unit(4 + 4 / 12, "feet"),
  17746. weight: math.unit(600, "lb"),
  17747. name: "Laying",
  17748. image: {
  17749. source: "./media/characters/sheila/laying.svg",
  17750. extra: 1333 / 1265,
  17751. bottom: 0.16
  17752. }
  17753. },
  17754. },
  17755. [
  17756. {
  17757. name: "Normal",
  17758. height: math.unit(4 + 4 / 12, "feet"),
  17759. default: true
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17765. {
  17766. front: {
  17767. height: math.unit(6, "feet"),
  17768. weight: math.unit(190, "lb"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/sax/front.svg",
  17772. extra: 1187 / 973,
  17773. bottom: 0.042
  17774. }
  17775. },
  17776. },
  17777. [
  17778. {
  17779. name: "Micro",
  17780. height: math.unit(4, "inches"),
  17781. default: true
  17782. },
  17783. ]
  17784. ))
  17785. characterMakers.push(() => makeCharacter(
  17786. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17787. {
  17788. front: {
  17789. height: math.unit(6, "feet"),
  17790. weight: math.unit(150, "lb"),
  17791. name: "Front",
  17792. image: {
  17793. source: "./media/characters/pandora/front.svg",
  17794. extra: 2720 / 2556,
  17795. bottom: 0.015
  17796. }
  17797. },
  17798. back: {
  17799. height: math.unit(6, "feet"),
  17800. weight: math.unit(150, "lb"),
  17801. name: "Back",
  17802. image: {
  17803. source: "./media/characters/pandora/back.svg",
  17804. extra: 2720 / 2556,
  17805. bottom: 0.01
  17806. }
  17807. },
  17808. beans: {
  17809. height: math.unit(6 / 8, "feet"),
  17810. name: "Beans",
  17811. image: {
  17812. source: "./media/characters/pandora/beans.svg"
  17813. }
  17814. },
  17815. collar: {
  17816. height: math.unit(0.31, "feet"),
  17817. name: "Collar",
  17818. image: {
  17819. source: "./media/characters/pandora/collar.svg"
  17820. }
  17821. },
  17822. skirt: {
  17823. height: math.unit(6, "feet"),
  17824. weight: math.unit(150, "lb"),
  17825. name: "Skirt",
  17826. image: {
  17827. source: "./media/characters/pandora/skirt.svg",
  17828. extra: 1622 / 1525,
  17829. bottom: 0.015
  17830. }
  17831. },
  17832. hoodie: {
  17833. height: math.unit(6, "feet"),
  17834. weight: math.unit(150, "lb"),
  17835. name: "Hoodie",
  17836. image: {
  17837. source: "./media/characters/pandora/hoodie.svg",
  17838. extra: 1622 / 1525,
  17839. bottom: 0.015
  17840. }
  17841. },
  17842. casual: {
  17843. height: math.unit(6, "feet"),
  17844. weight: math.unit(150, "lb"),
  17845. name: "Casual",
  17846. image: {
  17847. source: "./media/characters/pandora/casual.svg",
  17848. extra: 1622 / 1525,
  17849. bottom: 0.015
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(6, "feet")
  17857. },
  17858. {
  17859. name: "Big Steppy",
  17860. height: math.unit(1, "km"),
  17861. default: true
  17862. },
  17863. {
  17864. name: "Galactic Steppy",
  17865. height: math.unit(2, "gigameters")
  17866. },
  17867. ]
  17868. ))
  17869. characterMakers.push(() => makeCharacter(
  17870. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17871. {
  17872. side: {
  17873. height: math.unit(10, "feet"),
  17874. weight: math.unit(800, "kg"),
  17875. name: "Side",
  17876. image: {
  17877. source: "./media/characters/venio-darcony/side.svg",
  17878. extra: 1373 / 1003,
  17879. bottom: 0.037
  17880. }
  17881. },
  17882. front: {
  17883. height: math.unit(19, "feet"),
  17884. weight: math.unit(800, "kg"),
  17885. name: "Front",
  17886. image: {
  17887. source: "./media/characters/venio-darcony/front.svg"
  17888. }
  17889. },
  17890. back: {
  17891. height: math.unit(19, "feet"),
  17892. weight: math.unit(800, "kg"),
  17893. name: "Back",
  17894. image: {
  17895. source: "./media/characters/venio-darcony/back.svg"
  17896. }
  17897. },
  17898. sideNsfw: {
  17899. height: math.unit(10, "feet"),
  17900. weight: math.unit(800, "kg"),
  17901. name: "Side (NSFW)",
  17902. image: {
  17903. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17904. extra: 1373 / 1003,
  17905. bottom: 0.037
  17906. }
  17907. },
  17908. frontNsfw: {
  17909. height: math.unit(19, "feet"),
  17910. weight: math.unit(800, "kg"),
  17911. name: "Front (NSFW)",
  17912. image: {
  17913. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17914. }
  17915. },
  17916. backNsfw: {
  17917. height: math.unit(19, "feet"),
  17918. weight: math.unit(800, "kg"),
  17919. name: "Back (NSFW)",
  17920. image: {
  17921. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17922. }
  17923. },
  17924. sideArmored: {
  17925. height: math.unit(10, "feet"),
  17926. weight: math.unit(800, "kg"),
  17927. name: "Side (Armored)",
  17928. image: {
  17929. source: "./media/characters/venio-darcony/side-armored.svg",
  17930. extra: 1373 / 1003,
  17931. bottom: 0.037
  17932. }
  17933. },
  17934. frontArmored: {
  17935. height: math.unit(19, "feet"),
  17936. weight: math.unit(900, "kg"),
  17937. name: "Front (Armored)",
  17938. image: {
  17939. source: "./media/characters/venio-darcony/front-armored.svg"
  17940. }
  17941. },
  17942. backArmored: {
  17943. height: math.unit(19, "feet"),
  17944. weight: math.unit(900, "kg"),
  17945. name: "Back (Armored)",
  17946. image: {
  17947. source: "./media/characters/venio-darcony/back-armored.svg"
  17948. }
  17949. },
  17950. sword: {
  17951. height: math.unit(10, "feet"),
  17952. weight: math.unit(50, "lb"),
  17953. name: "Sword",
  17954. image: {
  17955. source: "./media/characters/venio-darcony/sword.svg"
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Normal",
  17962. height: math.unit(10, "feet")
  17963. },
  17964. {
  17965. name: "Macro",
  17966. height: math.unit(130, "feet"),
  17967. default: true
  17968. },
  17969. {
  17970. name: "Macro+",
  17971. height: math.unit(240, "feet")
  17972. },
  17973. ]
  17974. ))
  17975. characterMakers.push(() => makeCharacter(
  17976. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17977. {
  17978. front: {
  17979. height: math.unit(6, "feet"),
  17980. weight: math.unit(150, "lb"),
  17981. name: "Front",
  17982. image: {
  17983. source: "./media/characters/veski/front.svg",
  17984. extra: 1299 / 1225,
  17985. bottom: 0.04
  17986. }
  17987. },
  17988. back: {
  17989. height: math.unit(6, "feet"),
  17990. weight: math.unit(150, "lb"),
  17991. name: "Back",
  17992. image: {
  17993. source: "./media/characters/veski/back.svg",
  17994. extra: 1299 / 1225,
  17995. bottom: 0.008
  17996. }
  17997. },
  17998. maw: {
  17999. height: math.unit(1.5 * 1.21, "feet"),
  18000. name: "Maw",
  18001. image: {
  18002. source: "./media/characters/veski/maw.svg"
  18003. }
  18004. },
  18005. },
  18006. [
  18007. {
  18008. name: "Macro",
  18009. height: math.unit(2, "km"),
  18010. default: true
  18011. },
  18012. ]
  18013. ))
  18014. characterMakers.push(() => makeCharacter(
  18015. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18016. {
  18017. front: {
  18018. height: math.unit(5 + 7 / 12, "feet"),
  18019. name: "Front",
  18020. image: {
  18021. source: "./media/characters/isabelle/front.svg",
  18022. extra: 2130 / 1976,
  18023. bottom: 0.05
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Supermicro",
  18030. height: math.unit(10, "micrometers")
  18031. },
  18032. {
  18033. name: "Micro",
  18034. height: math.unit(1, "inch")
  18035. },
  18036. {
  18037. name: "Tiny",
  18038. height: math.unit(5, "inches")
  18039. },
  18040. {
  18041. name: "Standard",
  18042. height: math.unit(5 + 7 / 12, "inches")
  18043. },
  18044. {
  18045. name: "Macro",
  18046. height: math.unit(80, "meters"),
  18047. default: true
  18048. },
  18049. {
  18050. name: "Megamacro",
  18051. height: math.unit(250, "meters")
  18052. },
  18053. {
  18054. name: "Gigamacro",
  18055. height: math.unit(5, "km")
  18056. },
  18057. {
  18058. name: "Cosmic",
  18059. height: math.unit(2.5e6, "miles")
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(6, "feet"),
  18068. weight: math.unit(150, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/hanzo/front.svg",
  18072. extra: 374 / 344,
  18073. bottom: 0.02
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(8, "feet"),
  18081. default: true
  18082. },
  18083. ]
  18084. ))
  18085. characterMakers.push(() => makeCharacter(
  18086. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18087. {
  18088. front: {
  18089. height: math.unit(7, "feet"),
  18090. weight: math.unit(130, "lb"),
  18091. name: "Front",
  18092. image: {
  18093. source: "./media/characters/anna/front.svg",
  18094. extra: 169 / 145,
  18095. bottom: 0.06
  18096. }
  18097. },
  18098. full: {
  18099. height: math.unit(4.96, "feet"),
  18100. weight: math.unit(220, "lb"),
  18101. name: "Full",
  18102. image: {
  18103. source: "./media/characters/anna/full.svg",
  18104. extra: 138 / 114,
  18105. bottom: 0.15
  18106. }
  18107. },
  18108. tongue: {
  18109. height: math.unit(2.53, "feet"),
  18110. name: "Tongue",
  18111. image: {
  18112. source: "./media/characters/anna/tongue.svg"
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(7, "feet"),
  18120. default: true
  18121. },
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18126. {
  18127. front: {
  18128. height: math.unit(7, "feet"),
  18129. weight: math.unit(150, "lb"),
  18130. name: "Front",
  18131. image: {
  18132. source: "./media/characters/ian-corvid/front.svg",
  18133. extra: 150 / 142,
  18134. bottom: 0.02
  18135. }
  18136. },
  18137. back: {
  18138. height: math.unit(7, "feet"),
  18139. weight: math.unit(150, "lb"),
  18140. name: "Back",
  18141. image: {
  18142. source: "./media/characters/ian-corvid/back.svg",
  18143. extra: 150 / 143,
  18144. bottom: 0.01
  18145. }
  18146. },
  18147. stomping: {
  18148. height: math.unit(7, "feet"),
  18149. weight: math.unit(150, "lb"),
  18150. name: "Stomping",
  18151. image: {
  18152. source: "./media/characters/ian-corvid/stomping.svg",
  18153. extra: 76 / 72
  18154. }
  18155. },
  18156. sitting: {
  18157. height: math.unit(7 / 1.8, "feet"),
  18158. weight: math.unit(150, "lb"),
  18159. name: "Sitting",
  18160. image: {
  18161. source: "./media/characters/ian-corvid/sitting.svg",
  18162. extra: 1400 / 1269,
  18163. bottom: 0.15
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Tiny Microw",
  18170. height: math.unit(1, "inch")
  18171. },
  18172. {
  18173. name: "Microw",
  18174. height: math.unit(6, "inches")
  18175. },
  18176. {
  18177. name: "Crow",
  18178. height: math.unit(7 + 1 / 12, "feet"),
  18179. default: true
  18180. },
  18181. {
  18182. name: "Macrow",
  18183. height: math.unit(176, "feet")
  18184. },
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18189. {
  18190. front: {
  18191. height: math.unit(5 + 7 / 12, "feet"),
  18192. weight: math.unit(147, "lb"),
  18193. name: "Front",
  18194. image: {
  18195. source: "./media/characters/natalie-kellon/front.svg",
  18196. extra: 1214 / 1141,
  18197. bottom: 0.02
  18198. }
  18199. },
  18200. },
  18201. [
  18202. {
  18203. name: "Micro",
  18204. height: math.unit(1 / 16, "inch")
  18205. },
  18206. {
  18207. name: "Tiny",
  18208. height: math.unit(4, "inches")
  18209. },
  18210. {
  18211. name: "Normal",
  18212. height: math.unit(5 + 7 / 12, "feet"),
  18213. default: true
  18214. },
  18215. {
  18216. name: "Amazon",
  18217. height: math.unit(12, "feet")
  18218. },
  18219. {
  18220. name: "Giantess",
  18221. height: math.unit(160, "meters")
  18222. },
  18223. {
  18224. name: "Titaness",
  18225. height: math.unit(800, "meters")
  18226. },
  18227. ]
  18228. ))
  18229. characterMakers.push(() => makeCharacter(
  18230. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18231. {
  18232. front: {
  18233. height: math.unit(6, "feet"),
  18234. weight: math.unit(150, "lb"),
  18235. name: "Front",
  18236. image: {
  18237. source: "./media/characters/alluria/front.svg",
  18238. extra: 806 / 738,
  18239. bottom: 0.01
  18240. }
  18241. },
  18242. side: {
  18243. height: math.unit(6, "feet"),
  18244. weight: math.unit(150, "lb"),
  18245. name: "Side",
  18246. image: {
  18247. source: "./media/characters/alluria/side.svg",
  18248. extra: 800 / 750,
  18249. }
  18250. },
  18251. back: {
  18252. height: math.unit(6, "feet"),
  18253. weight: math.unit(150, "lb"),
  18254. name: "Back",
  18255. image: {
  18256. source: "./media/characters/alluria/back.svg",
  18257. extra: 806 / 738,
  18258. }
  18259. },
  18260. frontMaid: {
  18261. height: math.unit(6, "feet"),
  18262. weight: math.unit(150, "lb"),
  18263. name: "Front (Maid)",
  18264. image: {
  18265. source: "./media/characters/alluria/front-maid.svg",
  18266. extra: 806 / 738,
  18267. bottom: 0.01
  18268. }
  18269. },
  18270. sideMaid: {
  18271. height: math.unit(6, "feet"),
  18272. weight: math.unit(150, "lb"),
  18273. name: "Side (Maid)",
  18274. image: {
  18275. source: "./media/characters/alluria/side-maid.svg",
  18276. extra: 800 / 750,
  18277. bottom: 0.005
  18278. }
  18279. },
  18280. backMaid: {
  18281. height: math.unit(6, "feet"),
  18282. weight: math.unit(150, "lb"),
  18283. name: "Back (Maid)",
  18284. image: {
  18285. source: "./media/characters/alluria/back-maid.svg",
  18286. extra: 806 / 738,
  18287. }
  18288. },
  18289. },
  18290. [
  18291. {
  18292. name: "Micro",
  18293. height: math.unit(6, "inches"),
  18294. default: true
  18295. },
  18296. ]
  18297. ))
  18298. characterMakers.push(() => makeCharacter(
  18299. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18300. {
  18301. front: {
  18302. height: math.unit(6, "feet"),
  18303. weight: math.unit(150, "lb"),
  18304. name: "Front",
  18305. image: {
  18306. source: "./media/characters/kyle/front.svg",
  18307. extra: 1069 / 962,
  18308. bottom: 77.228 / 1727.45
  18309. }
  18310. },
  18311. },
  18312. [
  18313. {
  18314. name: "Macro",
  18315. height: math.unit(150, "feet"),
  18316. default: true
  18317. },
  18318. ]
  18319. ))
  18320. characterMakers.push(() => makeCharacter(
  18321. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18322. {
  18323. front: {
  18324. height: math.unit(6, "feet"),
  18325. weight: math.unit(300, "lb"),
  18326. name: "Front",
  18327. image: {
  18328. source: "./media/characters/duncan/front.svg",
  18329. extra: 1650 / 1482,
  18330. bottom: 0.05
  18331. }
  18332. },
  18333. },
  18334. [
  18335. {
  18336. name: "Macro",
  18337. height: math.unit(100, "feet"),
  18338. default: true
  18339. },
  18340. ]
  18341. ))
  18342. characterMakers.push(() => makeCharacter(
  18343. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18344. {
  18345. front: {
  18346. height: math.unit(5 + 4 / 12, "feet"),
  18347. weight: math.unit(220, "lb"),
  18348. name: "Front",
  18349. image: {
  18350. source: "./media/characters/memory/front.svg",
  18351. extra: 3641 / 3545,
  18352. bottom: 0.03
  18353. }
  18354. },
  18355. back: {
  18356. height: math.unit(5 + 4 / 12, "feet"),
  18357. weight: math.unit(220, "lb"),
  18358. name: "Back",
  18359. image: {
  18360. source: "./media/characters/memory/back.svg",
  18361. extra: 3641 / 3545,
  18362. bottom: 0.025
  18363. }
  18364. },
  18365. frontSkirt: {
  18366. height: math.unit(5 + 4 / 12, "feet"),
  18367. weight: math.unit(220, "lb"),
  18368. name: "Front (Skirt)",
  18369. image: {
  18370. source: "./media/characters/memory/front-skirt.svg",
  18371. extra: 3641 / 3545,
  18372. bottom: 0.03
  18373. }
  18374. },
  18375. frontDress: {
  18376. height: math.unit(5 + 4 / 12, "feet"),
  18377. weight: math.unit(220, "lb"),
  18378. name: "Front (Dress)",
  18379. image: {
  18380. source: "./media/characters/memory/front-dress.svg",
  18381. extra: 3641 / 3545,
  18382. bottom: 0.03
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Micro",
  18389. height: math.unit(6, "inches"),
  18390. default: true
  18391. },
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(5 + 4 / 12, "feet")
  18395. },
  18396. ]
  18397. ))
  18398. characterMakers.push(() => makeCharacter(
  18399. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18400. {
  18401. front: {
  18402. height: math.unit(4 + 11 / 12, "feet"),
  18403. weight: math.unit(100, "lb"),
  18404. name: "Front",
  18405. image: {
  18406. source: "./media/characters/luno/front.svg",
  18407. extra: 1535 / 1487,
  18408. bottom: 0.03
  18409. }
  18410. },
  18411. },
  18412. [
  18413. {
  18414. name: "Micro",
  18415. height: math.unit(3, "inches")
  18416. },
  18417. {
  18418. name: "Normal",
  18419. height: math.unit(4 + 11 / 12, "feet"),
  18420. default: true
  18421. },
  18422. {
  18423. name: "Macro",
  18424. height: math.unit(300, "feet")
  18425. },
  18426. {
  18427. name: "Megamacro",
  18428. height: math.unit(700, "miles")
  18429. },
  18430. ]
  18431. ))
  18432. characterMakers.push(() => makeCharacter(
  18433. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18434. {
  18435. front: {
  18436. height: math.unit(6 + 2 / 12, "feet"),
  18437. weight: math.unit(170, "lb"),
  18438. name: "Front",
  18439. image: {
  18440. source: "./media/characters/jamesy/front.svg",
  18441. extra: 440 / 382,
  18442. bottom: 0.005
  18443. }
  18444. },
  18445. },
  18446. [
  18447. {
  18448. name: "Micro",
  18449. height: math.unit(3, "inches")
  18450. },
  18451. {
  18452. name: "Normal",
  18453. height: math.unit(6 + 2 / 12, "feet"),
  18454. default: true
  18455. },
  18456. {
  18457. name: "Macro",
  18458. height: math.unit(300, "feet")
  18459. },
  18460. {
  18461. name: "Megamacro",
  18462. height: math.unit(700, "miles")
  18463. },
  18464. ]
  18465. ))
  18466. characterMakers.push(() => makeCharacter(
  18467. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18468. {
  18469. front: {
  18470. height: math.unit(6, "feet"),
  18471. weight: math.unit(160, "lb"),
  18472. name: "Front",
  18473. image: {
  18474. source: "./media/characters/mark/front.svg",
  18475. extra: 3300 / 3100,
  18476. bottom: 136.42 / 3440.47
  18477. }
  18478. },
  18479. },
  18480. [
  18481. {
  18482. name: "Macro",
  18483. height: math.unit(120, "meters")
  18484. },
  18485. {
  18486. name: "Bigger Macro",
  18487. height: math.unit(350, "meters")
  18488. },
  18489. {
  18490. name: "Megamacro",
  18491. height: math.unit(8, "km"),
  18492. default: true
  18493. },
  18494. {
  18495. name: "Continental",
  18496. height: math.unit(4550, "km")
  18497. },
  18498. {
  18499. name: "Planetary",
  18500. height: math.unit(65000, "km")
  18501. },
  18502. ]
  18503. ))
  18504. characterMakers.push(() => makeCharacter(
  18505. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18506. {
  18507. front: {
  18508. height: math.unit(6, "feet"),
  18509. weight: math.unit(400, "lb"),
  18510. name: "Front",
  18511. image: {
  18512. source: "./media/characters/mac/front.svg",
  18513. extra: 1048 / 987.7,
  18514. bottom: 60 / 1107.6,
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Macro",
  18521. height: math.unit(500, "feet"),
  18522. default: true
  18523. },
  18524. ]
  18525. ))
  18526. characterMakers.push(() => makeCharacter(
  18527. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18528. {
  18529. front: {
  18530. height: math.unit(5 + 2 / 12, "feet"),
  18531. weight: math.unit(190, "lb"),
  18532. name: "Front",
  18533. image: {
  18534. source: "./media/characters/bari/front.svg",
  18535. extra: 3156 / 2880,
  18536. bottom: 0.03
  18537. }
  18538. },
  18539. back: {
  18540. height: math.unit(5 + 2 / 12, "feet"),
  18541. weight: math.unit(190, "lb"),
  18542. name: "Back",
  18543. image: {
  18544. source: "./media/characters/bari/back.svg",
  18545. extra: 3260 / 2834,
  18546. bottom: 0.025
  18547. }
  18548. },
  18549. frontPlush: {
  18550. height: math.unit(5 + 2 / 12, "feet"),
  18551. weight: math.unit(190, "lb"),
  18552. name: "Front (Plush)",
  18553. image: {
  18554. source: "./media/characters/bari/front-plush.svg",
  18555. extra: 1112 / 1061,
  18556. bottom: 0.002
  18557. }
  18558. },
  18559. },
  18560. [
  18561. {
  18562. name: "Micro",
  18563. height: math.unit(3, "inches")
  18564. },
  18565. {
  18566. name: "Normal",
  18567. height: math.unit(5 + 2 / 12, "feet"),
  18568. default: true
  18569. },
  18570. {
  18571. name: "Macro",
  18572. height: math.unit(20, "feet")
  18573. },
  18574. ]
  18575. ))
  18576. characterMakers.push(() => makeCharacter(
  18577. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18578. {
  18579. front: {
  18580. height: math.unit(6 + 1 / 12, "feet"),
  18581. weight: math.unit(275, "lb"),
  18582. name: "Front",
  18583. image: {
  18584. source: "./media/characters/hunter-misha-raven/front.svg"
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Mortal",
  18591. height: math.unit(6 + 1 / 12, "feet")
  18592. },
  18593. {
  18594. name: "Divine",
  18595. height: math.unit(1.12134e34, "parsecs"),
  18596. default: true
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18602. {
  18603. front: {
  18604. height: math.unit(6 + 3 / 12, "feet"),
  18605. weight: math.unit(220, "lb"),
  18606. name: "Front",
  18607. image: {
  18608. source: "./media/characters/max-calore/front.svg",
  18609. extra: 1700 / 1648,
  18610. bottom: 0.01
  18611. }
  18612. },
  18613. back: {
  18614. height: math.unit(6 + 3 / 12, "feet"),
  18615. weight: math.unit(220, "lb"),
  18616. name: "Back",
  18617. image: {
  18618. source: "./media/characters/max-calore/back.svg",
  18619. extra: 1700 / 1648,
  18620. bottom: 0.01
  18621. }
  18622. },
  18623. },
  18624. [
  18625. {
  18626. name: "Normal",
  18627. height: math.unit(6 + 3 / 12, "feet"),
  18628. default: true
  18629. },
  18630. ]
  18631. ))
  18632. characterMakers.push(() => makeCharacter(
  18633. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18634. {
  18635. side: {
  18636. height: math.unit(2 + 8 / 12, "feet"),
  18637. weight: math.unit(99, "lb"),
  18638. name: "Side",
  18639. image: {
  18640. source: "./media/characters/aspen/side.svg",
  18641. extra: 152 / 138,
  18642. bottom: 0.032
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(2 + 8 / 12, "feet"),
  18650. default: true
  18651. },
  18652. ]
  18653. ))
  18654. characterMakers.push(() => makeCharacter(
  18655. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18656. {
  18657. side: {
  18658. height: math.unit(3 + 2 / 12, "feet"),
  18659. weight: math.unit(224, "lb"),
  18660. name: "Side",
  18661. image: {
  18662. source: "./media/characters/sheila-feral-wolf/side.svg",
  18663. extra: 179 / 166,
  18664. bottom: 0.03
  18665. }
  18666. },
  18667. },
  18668. [
  18669. {
  18670. name: "Normal",
  18671. height: math.unit(3 + 2 / 12, "feet"),
  18672. default: true
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18678. {
  18679. side: {
  18680. height: math.unit(1 + 9 / 12, "feet"),
  18681. weight: math.unit(38, "lb"),
  18682. name: "Side",
  18683. image: {
  18684. source: "./media/characters/michelle/side.svg",
  18685. extra: 147 / 136.7,
  18686. bottom: 0.03
  18687. }
  18688. },
  18689. },
  18690. [
  18691. {
  18692. name: "Normal",
  18693. height: math.unit(1 + 9 / 12, "feet"),
  18694. default: true
  18695. },
  18696. ]
  18697. ))
  18698. characterMakers.push(() => makeCharacter(
  18699. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18700. {
  18701. front: {
  18702. height: math.unit(1.54, "feet"),
  18703. weight: math.unit(50, "lb"),
  18704. name: "Front",
  18705. image: {
  18706. source: "./media/characters/nino/front.svg"
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(1.54, "feet"),
  18714. default: true
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(1.49, "feet"),
  18723. weight: math.unit(45, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/viola/front.svg"
  18727. }
  18728. },
  18729. },
  18730. [
  18731. {
  18732. name: "Normal",
  18733. height: math.unit(1.49, "feet"),
  18734. default: true
  18735. },
  18736. ]
  18737. ))
  18738. characterMakers.push(() => makeCharacter(
  18739. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18740. {
  18741. front: {
  18742. height: math.unit(6 + 5 / 12, "feet"),
  18743. weight: math.unit(580, "lb"),
  18744. name: "Front",
  18745. image: {
  18746. source: "./media/characters/atlas/front.svg",
  18747. extra: 298.5 / 290,
  18748. bottom: 0.015
  18749. }
  18750. },
  18751. },
  18752. [
  18753. {
  18754. name: "Normal",
  18755. height: math.unit(6 + 5 / 12, "feet"),
  18756. default: true
  18757. },
  18758. ]
  18759. ))
  18760. characterMakers.push(() => makeCharacter(
  18761. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18762. {
  18763. side: {
  18764. height: math.unit(15.6, "inches"),
  18765. weight: math.unit(10, "lb"),
  18766. name: "Side",
  18767. image: {
  18768. source: "./media/characters/davy/side.svg",
  18769. extra: 200 / 170,
  18770. bottom: 0.01
  18771. }
  18772. },
  18773. },
  18774. [
  18775. {
  18776. name: "Normal",
  18777. height: math.unit(15.6, "inches"),
  18778. default: true
  18779. },
  18780. ]
  18781. ))
  18782. characterMakers.push(() => makeCharacter(
  18783. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18784. {
  18785. side: {
  18786. height: math.unit(4 + 8 / 12, "feet"),
  18787. weight: math.unit(166, "lb"),
  18788. name: "Side",
  18789. image: {
  18790. source: "./media/characters/fiona/side.svg",
  18791. extra: 232 / 220,
  18792. bottom: 0.03
  18793. }
  18794. },
  18795. },
  18796. [
  18797. {
  18798. name: "Normal",
  18799. height: math.unit(4 + 8 / 12, "feet"),
  18800. default: true
  18801. },
  18802. ]
  18803. ))
  18804. characterMakers.push(() => makeCharacter(
  18805. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18806. {
  18807. front: {
  18808. height: math.unit(26, "inches"),
  18809. weight: math.unit(35, "lb"),
  18810. name: "Front",
  18811. image: {
  18812. source: "./media/characters/lyla/front.svg",
  18813. bottom: 0.1
  18814. }
  18815. },
  18816. },
  18817. [
  18818. {
  18819. name: "Normal",
  18820. height: math.unit(3, "feet"),
  18821. default: true
  18822. },
  18823. ]
  18824. ))
  18825. characterMakers.push(() => makeCharacter(
  18826. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18827. {
  18828. side: {
  18829. height: math.unit(1.8, "feet"),
  18830. weight: math.unit(44, "lb"),
  18831. name: "Side",
  18832. image: {
  18833. source: "./media/characters/perseus/side.svg",
  18834. bottom: 0.21
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Normal",
  18841. height: math.unit(1.8, "feet"),
  18842. default: true
  18843. },
  18844. ]
  18845. ))
  18846. characterMakers.push(() => makeCharacter(
  18847. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18848. {
  18849. side: {
  18850. height: math.unit(4 + 2 / 12, "feet"),
  18851. weight: math.unit(20, "lb"),
  18852. name: "Side",
  18853. image: {
  18854. source: "./media/characters/remus/side.svg"
  18855. }
  18856. },
  18857. },
  18858. [
  18859. {
  18860. name: "Normal",
  18861. height: math.unit(4 + 2 / 12, "feet"),
  18862. default: true
  18863. },
  18864. ]
  18865. ))
  18866. characterMakers.push(() => makeCharacter(
  18867. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18868. {
  18869. front: {
  18870. height: math.unit(4 + 11 / 12, "feet"),
  18871. weight: math.unit(114, "lb"),
  18872. name: "Front",
  18873. image: {
  18874. source: "./media/characters/raf/front.svg",
  18875. extra: 1504/1339,
  18876. bottom: 26/1530
  18877. }
  18878. },
  18879. side: {
  18880. height: math.unit(4 + 11 / 12, "feet"),
  18881. weight: math.unit(114, "lb"),
  18882. name: "Side",
  18883. image: {
  18884. source: "./media/characters/raf/side.svg",
  18885. extra: 1466/1316,
  18886. bottom: 29/1495
  18887. }
  18888. },
  18889. paw: {
  18890. height: math.unit(1.45, "feet"),
  18891. name: "Paw",
  18892. image: {
  18893. source: "./media/characters/raf/paw.svg"
  18894. },
  18895. extraAttributes: {
  18896. "toeSize": {
  18897. name: "Toe Size",
  18898. power: 2,
  18899. type: "area",
  18900. base: math.unit(0.004, "m^2")
  18901. },
  18902. "padSize": {
  18903. name: "Pad Size",
  18904. power: 2,
  18905. type: "area",
  18906. base: math.unit(0.04, "m^2")
  18907. },
  18908. "footSize": {
  18909. name: "Foot Size",
  18910. power: 2,
  18911. type: "area",
  18912. base: math.unit(0.08, "m^2")
  18913. },
  18914. }
  18915. },
  18916. },
  18917. [
  18918. {
  18919. name: "Micro",
  18920. height: math.unit(2, "inches")
  18921. },
  18922. {
  18923. name: "Normal",
  18924. height: math.unit(4 + 11 / 12, "feet"),
  18925. default: true
  18926. },
  18927. {
  18928. name: "Macro",
  18929. height: math.unit(70, "feet")
  18930. },
  18931. ]
  18932. ))
  18933. characterMakers.push(() => makeCharacter(
  18934. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18935. {
  18936. front: {
  18937. height: math.unit(1.5, "meters"),
  18938. weight: math.unit(68, "kg"),
  18939. name: "Front",
  18940. image: {
  18941. source: "./media/characters/liam-einarr/front.svg",
  18942. extra: 2822 / 2666
  18943. }
  18944. },
  18945. back: {
  18946. height: math.unit(1.5, "meters"),
  18947. weight: math.unit(68, "kg"),
  18948. name: "Back",
  18949. image: {
  18950. source: "./media/characters/liam-einarr/back.svg",
  18951. extra: 2822 / 2666,
  18952. bottom: 0.015
  18953. }
  18954. },
  18955. },
  18956. [
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(1.5, "meters"),
  18960. default: true
  18961. },
  18962. {
  18963. name: "Macro",
  18964. height: math.unit(150, "meters")
  18965. },
  18966. {
  18967. name: "Megamacro",
  18968. height: math.unit(35, "km")
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(6, "feet"),
  18977. weight: math.unit(75, "kg"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/linda/front.svg",
  18981. extra: 930 / 874,
  18982. bottom: 0.004
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Normal",
  18989. height: math.unit(6, "feet"),
  18990. default: true
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18996. {
  18997. front: {
  18998. height: math.unit(6 + 8 / 12, "feet"),
  18999. weight: math.unit(220, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/caylex/front.svg",
  19003. extra: 821 / 772,
  19004. bottom: 0.07
  19005. }
  19006. },
  19007. back: {
  19008. height: math.unit(6 + 8 / 12, "feet"),
  19009. weight: math.unit(220, "lb"),
  19010. name: "Back",
  19011. image: {
  19012. source: "./media/characters/caylex/back.svg",
  19013. extra: 821 / 772,
  19014. bottom: 0.022
  19015. }
  19016. },
  19017. hand: {
  19018. height: math.unit(1.25, "feet"),
  19019. name: "Hand",
  19020. image: {
  19021. source: "./media/characters/caylex/hand.svg"
  19022. }
  19023. },
  19024. foot: {
  19025. height: math.unit(1.6, "feet"),
  19026. name: "Foot",
  19027. image: {
  19028. source: "./media/characters/caylex/foot.svg"
  19029. }
  19030. },
  19031. armored: {
  19032. height: math.unit(6 + 8 / 12, "feet"),
  19033. weight: math.unit(250, "lb"),
  19034. name: "Armored",
  19035. image: {
  19036. source: "./media/characters/caylex/armored.svg",
  19037. extra: 1420 / 1310,
  19038. bottom: 0.045
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(6 + 8 / 12, "feet"),
  19046. default: true
  19047. },
  19048. {
  19049. name: "Normal+",
  19050. height: math.unit(12, "feet")
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19056. {
  19057. front: {
  19058. height: math.unit(7 + 6 / 12, "feet"),
  19059. weight: math.unit(288, "lb"),
  19060. name: "Front",
  19061. image: {
  19062. source: "./media/characters/alana/front.svg",
  19063. extra: 679 / 653,
  19064. bottom: 22.5 / 701
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(7 + 6 / 12, "feet")
  19072. },
  19073. {
  19074. name: "Large",
  19075. height: math.unit(50, "feet")
  19076. },
  19077. {
  19078. name: "Macro",
  19079. height: math.unit(100, "feet"),
  19080. default: true
  19081. },
  19082. {
  19083. name: "Macro+",
  19084. height: math.unit(200, "feet")
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(6 + 1 / 12, "feet"),
  19093. weight: math.unit(210, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/hasani/front.svg",
  19097. extra: 244 / 232,
  19098. bottom: 0.01
  19099. }
  19100. },
  19101. back: {
  19102. height: math.unit(6 + 1 / 12, "feet"),
  19103. weight: math.unit(210, "lb"),
  19104. name: "Back",
  19105. image: {
  19106. source: "./media/characters/hasani/back.svg",
  19107. extra: 244 / 232,
  19108. bottom: 0.01
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(6 + 1 / 12, "feet")
  19116. },
  19117. {
  19118. name: "Macro",
  19119. height: math.unit(175, "feet"),
  19120. default: true
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(1.82, "meters"),
  19129. weight: math.unit(140, "lb"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/nita/front.svg",
  19133. extra: 2473 / 2363,
  19134. bottom: 0.01
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(1.82, "m")
  19142. },
  19143. {
  19144. name: "Macro",
  19145. height: math.unit(300, "m")
  19146. },
  19147. {
  19148. name: "Mistake Canon",
  19149. height: math.unit(0.5, "miles"),
  19150. default: true
  19151. },
  19152. {
  19153. name: "Big Mistake",
  19154. height: math.unit(13, "miles")
  19155. },
  19156. {
  19157. name: "Playing God",
  19158. height: math.unit(2450, "miles")
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(4, "feet"),
  19167. weight: math.unit(120, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/shiriko/front.svg",
  19171. extra: 970/934,
  19172. bottom: 5/975
  19173. }
  19174. },
  19175. },
  19176. [
  19177. {
  19178. name: "Normal",
  19179. height: math.unit(4, "feet"),
  19180. default: true
  19181. },
  19182. ]
  19183. ))
  19184. characterMakers.push(() => makeCharacter(
  19185. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19186. {
  19187. front: {
  19188. height: math.unit(6, "feet"),
  19189. name: "front",
  19190. image: {
  19191. source: "./media/characters/deja/front.svg",
  19192. extra: 926 / 840,
  19193. bottom: 0.07
  19194. }
  19195. },
  19196. },
  19197. [
  19198. {
  19199. name: "Planck Length",
  19200. height: math.unit(1.6e-35, "meters")
  19201. },
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(30.48, "meters"),
  19205. default: true
  19206. },
  19207. {
  19208. name: "Universal",
  19209. height: math.unit(8.8e26, "meters")
  19210. },
  19211. ]
  19212. ))
  19213. characterMakers.push(() => makeCharacter(
  19214. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19215. {
  19216. side: {
  19217. height: math.unit(8, "feet"),
  19218. weight: math.unit(6300, "lb"),
  19219. name: "Side",
  19220. image: {
  19221. source: "./media/characters/anima/side.svg",
  19222. bottom: 0.035
  19223. }
  19224. },
  19225. },
  19226. [
  19227. {
  19228. name: "Normal",
  19229. height: math.unit(8, "feet"),
  19230. default: true
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19236. {
  19237. front: {
  19238. height: math.unit(8, "feet"),
  19239. weight: math.unit(350, "lb"),
  19240. name: "Front",
  19241. image: {
  19242. source: "./media/characters/bianca/front.svg",
  19243. extra: 234 / 225,
  19244. bottom: 0.03
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(8, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(11 + 5/12, "feet"),
  19261. weight: math.unit(1200, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/adinia/front.svg",
  19265. extra: 1767/1641,
  19266. bottom: 44/1811
  19267. },
  19268. extraAttributes: {
  19269. "energyIntake": {
  19270. name: "Energy Intake",
  19271. power: 3,
  19272. type: "energy",
  19273. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19274. },
  19275. }
  19276. },
  19277. back: {
  19278. height: math.unit(11 + 5/12, "feet"),
  19279. weight: math.unit(1200, "lb"),
  19280. name: "Back",
  19281. image: {
  19282. source: "./media/characters/adinia/back.svg",
  19283. extra: 1834/1684,
  19284. bottom: 14/1848
  19285. },
  19286. extraAttributes: {
  19287. "energyIntake": {
  19288. name: "Energy Intake",
  19289. power: 3,
  19290. type: "energy",
  19291. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19292. },
  19293. }
  19294. },
  19295. maw: {
  19296. height: math.unit(3.79, "feet"),
  19297. name: "Maw",
  19298. image: {
  19299. source: "./media/characters/adinia/maw.svg"
  19300. }
  19301. },
  19302. rump: {
  19303. height: math.unit(4.6, "feet"),
  19304. name: "Rump",
  19305. image: {
  19306. source: "./media/characters/adinia/rump.svg"
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Normal",
  19313. height: math.unit(11 + 5 / 12, "feet"),
  19314. default: true
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19320. {
  19321. front: {
  19322. height: math.unit(3, "meters"),
  19323. weight: math.unit(200, "kg"),
  19324. name: "Front",
  19325. image: {
  19326. source: "./media/characters/lykasa/front.svg",
  19327. extra: 1076 / 976,
  19328. bottom: 0.06
  19329. }
  19330. },
  19331. },
  19332. [
  19333. {
  19334. name: "Normal",
  19335. height: math.unit(3, "meters")
  19336. },
  19337. {
  19338. name: "Kaiju",
  19339. height: math.unit(120, "meters"),
  19340. default: true
  19341. },
  19342. {
  19343. name: "Mega Kaiju",
  19344. height: math.unit(240, "km")
  19345. },
  19346. {
  19347. name: "Giga Kaiju",
  19348. height: math.unit(400, "megameters")
  19349. },
  19350. {
  19351. name: "Tera Kaiju",
  19352. height: math.unit(800, "gigameters")
  19353. },
  19354. {
  19355. name: "Kaiju Dragon Goddess",
  19356. height: math.unit(26, "zettaparsecs")
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19362. {
  19363. side: {
  19364. height: math.unit(283 / 124 * 6, "feet"),
  19365. weight: math.unit(35000, "lb"),
  19366. name: "Side",
  19367. image: {
  19368. source: "./media/characters/malfaren/side.svg",
  19369. extra: 1310/529,
  19370. bottom: 24/1334
  19371. }
  19372. },
  19373. front: {
  19374. height: math.unit(22.36, "feet"),
  19375. weight: math.unit(35000, "lb"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/malfaren/front.svg",
  19379. extra: 1237/1115,
  19380. bottom: 32/1269
  19381. }
  19382. },
  19383. maw: {
  19384. height: math.unit(6.9, "feet"),
  19385. name: "Maw",
  19386. image: {
  19387. source: "./media/characters/malfaren/maw.svg"
  19388. }
  19389. },
  19390. dick: {
  19391. height: math.unit(6.19, "feet"),
  19392. name: "Dick",
  19393. image: {
  19394. source: "./media/characters/malfaren/dick.svg"
  19395. }
  19396. },
  19397. eye: {
  19398. height: math.unit(0.69, "feet"),
  19399. name: "Eye",
  19400. image: {
  19401. source: "./media/characters/malfaren/eye.svg"
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Big",
  19408. height: math.unit(283 / 162 * 6, "feet"),
  19409. },
  19410. {
  19411. name: "Bigger",
  19412. height: math.unit(283 / 124 * 6, "feet")
  19413. },
  19414. {
  19415. name: "Massive",
  19416. height: math.unit(283 / 92 * 6, "feet"),
  19417. default: true
  19418. },
  19419. {
  19420. name: "👀💦",
  19421. height: math.unit(283 / 73 * 6, "feet"),
  19422. },
  19423. ]
  19424. ))
  19425. characterMakers.push(() => makeCharacter(
  19426. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19427. {
  19428. front: {
  19429. height: math.unit(1.7, "m"),
  19430. weight: math.unit(70, "kg"),
  19431. name: "Front",
  19432. image: {
  19433. source: "./media/characters/kernel/front.svg",
  19434. extra: 222 / 210,
  19435. bottom: 0.007
  19436. }
  19437. },
  19438. },
  19439. [
  19440. {
  19441. name: "Nano",
  19442. height: math.unit(17, "micrometers")
  19443. },
  19444. {
  19445. name: "Micro",
  19446. height: math.unit(1.7, "mm")
  19447. },
  19448. {
  19449. name: "Small",
  19450. height: math.unit(1.7, "cm")
  19451. },
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(1.7, "m"),
  19455. default: true
  19456. },
  19457. ]
  19458. ))
  19459. characterMakers.push(() => makeCharacter(
  19460. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19461. {
  19462. front: {
  19463. height: math.unit(1.75, "meters"),
  19464. weight: math.unit(65, "kg"),
  19465. name: "Front",
  19466. image: {
  19467. source: "./media/characters/jayne-folest/front.svg",
  19468. extra: 2115 / 2007,
  19469. bottom: 0.02
  19470. }
  19471. },
  19472. back: {
  19473. height: math.unit(1.75, "meters"),
  19474. weight: math.unit(65, "kg"),
  19475. name: "Back",
  19476. image: {
  19477. source: "./media/characters/jayne-folest/back.svg",
  19478. extra: 2115 / 2007,
  19479. bottom: 0.005
  19480. }
  19481. },
  19482. frontClothed: {
  19483. height: math.unit(1.75, "meters"),
  19484. weight: math.unit(65, "kg"),
  19485. name: "Front (Clothed)",
  19486. image: {
  19487. source: "./media/characters/jayne-folest/front-clothed.svg",
  19488. extra: 2115 / 2007,
  19489. bottom: 0.035
  19490. }
  19491. },
  19492. hand: {
  19493. height: math.unit(1 / 1.260, "feet"),
  19494. name: "Hand",
  19495. image: {
  19496. source: "./media/characters/jayne-folest/hand.svg"
  19497. }
  19498. },
  19499. foot: {
  19500. height: math.unit(1 / 0.918, "feet"),
  19501. name: "Foot",
  19502. image: {
  19503. source: "./media/characters/jayne-folest/foot.svg"
  19504. }
  19505. },
  19506. },
  19507. [
  19508. {
  19509. name: "Micro",
  19510. height: math.unit(4, "cm")
  19511. },
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(1.75, "meters")
  19515. },
  19516. {
  19517. name: "Macro",
  19518. height: math.unit(47.5, "meters"),
  19519. default: true
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19525. {
  19526. front: {
  19527. height: math.unit(180, "cm"),
  19528. weight: math.unit(70, "kg"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/algier/front.svg",
  19532. extra: 596 / 572,
  19533. bottom: 0.04
  19534. }
  19535. },
  19536. back: {
  19537. height: math.unit(180, "cm"),
  19538. weight: math.unit(70, "kg"),
  19539. name: "Back",
  19540. image: {
  19541. source: "./media/characters/algier/back.svg",
  19542. extra: 596 / 572,
  19543. bottom: 0.025
  19544. }
  19545. },
  19546. frontdressed: {
  19547. height: math.unit(180, "cm"),
  19548. weight: math.unit(150, "kg"),
  19549. name: "Front-dressed",
  19550. image: {
  19551. source: "./media/characters/algier/front-dressed.svg",
  19552. extra: 596 / 572,
  19553. bottom: 0.038
  19554. }
  19555. },
  19556. },
  19557. [
  19558. {
  19559. name: "Micro",
  19560. height: math.unit(5, "cm")
  19561. },
  19562. {
  19563. name: "Normal",
  19564. height: math.unit(180, "cm"),
  19565. default: true
  19566. },
  19567. {
  19568. name: "Macro",
  19569. height: math.unit(64, "m")
  19570. },
  19571. ]
  19572. ))
  19573. characterMakers.push(() => makeCharacter(
  19574. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19575. {
  19576. upright: {
  19577. height: math.unit(7, "feet"),
  19578. weight: math.unit(300, "lb"),
  19579. name: "Upright",
  19580. image: {
  19581. source: "./media/characters/pretzel/upright.svg",
  19582. extra: 534 / 522,
  19583. bottom: 0.065
  19584. }
  19585. },
  19586. sprawling: {
  19587. height: math.unit(3.75, "feet"),
  19588. weight: math.unit(300, "lb"),
  19589. name: "Sprawling",
  19590. image: {
  19591. source: "./media/characters/pretzel/sprawling.svg",
  19592. extra: 314 / 281,
  19593. bottom: 0.1
  19594. }
  19595. },
  19596. tongue: {
  19597. height: math.unit(2, "feet"),
  19598. name: "Tongue",
  19599. image: {
  19600. source: "./media/characters/pretzel/tongue.svg"
  19601. }
  19602. },
  19603. },
  19604. [
  19605. {
  19606. name: "Normal",
  19607. height: math.unit(7, "feet"),
  19608. default: true
  19609. },
  19610. {
  19611. name: "Oversized",
  19612. height: math.unit(15, "feet")
  19613. },
  19614. {
  19615. name: "Huge",
  19616. height: math.unit(30, "feet")
  19617. },
  19618. {
  19619. name: "Macro",
  19620. height: math.unit(250, "feet")
  19621. },
  19622. ]
  19623. ))
  19624. characterMakers.push(() => makeCharacter(
  19625. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19626. {
  19627. sideFront: {
  19628. height: math.unit(5 + 2 / 12, "feet"),
  19629. weight: math.unit(120, "lb"),
  19630. name: "Front Side",
  19631. image: {
  19632. source: "./media/characters/roxi/side-front.svg",
  19633. extra: 2924 / 2717,
  19634. bottom: 0.08
  19635. }
  19636. },
  19637. sideBack: {
  19638. height: math.unit(5 + 2 / 12, "feet"),
  19639. weight: math.unit(120, "lb"),
  19640. name: "Back Side",
  19641. image: {
  19642. source: "./media/characters/roxi/side-back.svg",
  19643. extra: 2904 / 2693,
  19644. bottom: 0.06
  19645. }
  19646. },
  19647. front: {
  19648. height: math.unit(5 + 2 / 12, "feet"),
  19649. weight: math.unit(120, "lb"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/roxi/front.svg",
  19653. extra: 2028 / 1907,
  19654. bottom: 0.01
  19655. }
  19656. },
  19657. frontAlt: {
  19658. height: math.unit(5 + 2 / 12, "feet"),
  19659. weight: math.unit(120, "lb"),
  19660. name: "Front (Alt)",
  19661. image: {
  19662. source: "./media/characters/roxi/front-alt.svg",
  19663. extra: 1828 / 1798,
  19664. bottom: 0.01
  19665. }
  19666. },
  19667. sitting: {
  19668. height: math.unit(2.8, "feet"),
  19669. weight: math.unit(120, "lb"),
  19670. name: "Sitting",
  19671. image: {
  19672. source: "./media/characters/roxi/sitting.svg",
  19673. extra: 2660 / 2462,
  19674. bottom: 0.1
  19675. }
  19676. },
  19677. },
  19678. [
  19679. {
  19680. name: "Normal",
  19681. height: math.unit(5 + 2 / 12, "feet"),
  19682. default: true
  19683. },
  19684. ]
  19685. ))
  19686. characterMakers.push(() => makeCharacter(
  19687. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19688. {
  19689. side: {
  19690. height: math.unit(55, "feet"),
  19691. weight: math.unit(153, "tons"),
  19692. name: "Side",
  19693. image: {
  19694. source: "./media/characters/shadow/side.svg",
  19695. extra: 701 / 628,
  19696. bottom: 0.02
  19697. }
  19698. },
  19699. flying: {
  19700. height: math.unit(145, "feet"),
  19701. weight: math.unit(153, "tons"),
  19702. name: "Flying",
  19703. image: {
  19704. source: "./media/characters/shadow/flying.svg"
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(55, "feet"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19718. {
  19719. front: {
  19720. height: math.unit(6, "feet"),
  19721. weight: math.unit(200, "lb"),
  19722. name: "Front",
  19723. image: {
  19724. source: "./media/characters/marcie/front.svg",
  19725. extra: 960 / 876,
  19726. bottom: 58 / 1017.87
  19727. }
  19728. },
  19729. },
  19730. [
  19731. {
  19732. name: "Macro",
  19733. height: math.unit(1, "mile"),
  19734. default: true
  19735. },
  19736. ]
  19737. ))
  19738. characterMakers.push(() => makeCharacter(
  19739. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19740. {
  19741. front: {
  19742. height: math.unit(7, "feet"),
  19743. weight: math.unit(200, "lb"),
  19744. name: "Front",
  19745. image: {
  19746. source: "./media/characters/kachina/front.svg",
  19747. extra: 1290.68 / 1119,
  19748. bottom: 36.5 / 1327.18
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(7, "feet"),
  19756. default: true
  19757. },
  19758. ]
  19759. ))
  19760. characterMakers.push(() => makeCharacter(
  19761. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19762. {
  19763. looking: {
  19764. height: math.unit(2, "meters"),
  19765. weight: math.unit(300, "kg"),
  19766. name: "Looking",
  19767. image: {
  19768. source: "./media/characters/kash/looking.svg",
  19769. extra: 474 / 344,
  19770. bottom: 0.03
  19771. }
  19772. },
  19773. side: {
  19774. height: math.unit(2, "meters"),
  19775. weight: math.unit(300, "kg"),
  19776. name: "Side",
  19777. image: {
  19778. source: "./media/characters/kash/side.svg",
  19779. extra: 302 / 251,
  19780. bottom: 0.03
  19781. }
  19782. },
  19783. front: {
  19784. height: math.unit(2, "meters"),
  19785. weight: math.unit(300, "kg"),
  19786. name: "Front",
  19787. image: {
  19788. source: "./media/characters/kash/front.svg",
  19789. extra: 495 / 360,
  19790. bottom: 0.015
  19791. }
  19792. },
  19793. },
  19794. [
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(2, "meters"),
  19798. default: true
  19799. },
  19800. {
  19801. name: "Big",
  19802. height: math.unit(3, "meters")
  19803. },
  19804. {
  19805. name: "Large",
  19806. height: math.unit(5, "meters")
  19807. },
  19808. ]
  19809. ))
  19810. characterMakers.push(() => makeCharacter(
  19811. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19812. {
  19813. feeding: {
  19814. height: math.unit(6.7, "feet"),
  19815. weight: math.unit(350, "lb"),
  19816. name: "Feeding",
  19817. image: {
  19818. source: "./media/characters/lalim/feeding.svg",
  19819. }
  19820. },
  19821. },
  19822. [
  19823. {
  19824. name: "Normal",
  19825. height: math.unit(6.7, "feet"),
  19826. default: true
  19827. },
  19828. ]
  19829. ))
  19830. characterMakers.push(() => makeCharacter(
  19831. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19832. {
  19833. front: {
  19834. height: math.unit(9.5, "feet"),
  19835. weight: math.unit(600, "lb"),
  19836. name: "Front",
  19837. image: {
  19838. source: "./media/characters/de'vout/front.svg",
  19839. extra: 1443 / 1328,
  19840. bottom: 0.025
  19841. }
  19842. },
  19843. back: {
  19844. height: math.unit(9.5, "feet"),
  19845. weight: math.unit(600, "lb"),
  19846. name: "Back",
  19847. image: {
  19848. source: "./media/characters/de'vout/back.svg",
  19849. extra: 1443 / 1328
  19850. }
  19851. },
  19852. frontDressed: {
  19853. height: math.unit(9.5, "feet"),
  19854. weight: math.unit(600, "lb"),
  19855. name: "Front (Dressed",
  19856. image: {
  19857. source: "./media/characters/de'vout/front-dressed.svg",
  19858. extra: 1443 / 1328,
  19859. bottom: 0.025
  19860. }
  19861. },
  19862. backDressed: {
  19863. height: math.unit(9.5, "feet"),
  19864. weight: math.unit(600, "lb"),
  19865. name: "Back (Dressed",
  19866. image: {
  19867. source: "./media/characters/de'vout/back-dressed.svg",
  19868. extra: 1443 / 1328
  19869. }
  19870. },
  19871. },
  19872. [
  19873. {
  19874. name: "Normal",
  19875. height: math.unit(9.5, "feet"),
  19876. default: true
  19877. },
  19878. ]
  19879. ))
  19880. characterMakers.push(() => makeCharacter(
  19881. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19882. {
  19883. front: {
  19884. height: math.unit(8, "feet"),
  19885. weight: math.unit(225, "lb"),
  19886. name: "Front",
  19887. image: {
  19888. source: "./media/characters/talana/front.svg",
  19889. extra: 1410 / 1300,
  19890. bottom: 0.015
  19891. }
  19892. },
  19893. frontDressed: {
  19894. height: math.unit(8, "feet"),
  19895. weight: math.unit(225, "lb"),
  19896. name: "Front (Dressed",
  19897. image: {
  19898. source: "./media/characters/talana/front-dressed.svg",
  19899. extra: 1410 / 1300,
  19900. bottom: 0.015
  19901. }
  19902. },
  19903. },
  19904. [
  19905. {
  19906. name: "Normal",
  19907. height: math.unit(8, "feet"),
  19908. default: true
  19909. },
  19910. ]
  19911. ))
  19912. characterMakers.push(() => makeCharacter(
  19913. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19914. {
  19915. side: {
  19916. height: math.unit(7.2, "feet"),
  19917. weight: math.unit(150, "lb"),
  19918. name: "Side",
  19919. image: {
  19920. source: "./media/characters/xeauvok/side.svg",
  19921. extra: 1975 / 1523,
  19922. bottom: 0.07
  19923. }
  19924. },
  19925. },
  19926. [
  19927. {
  19928. name: "Normal",
  19929. height: math.unit(7.2, "feet"),
  19930. default: true
  19931. },
  19932. ]
  19933. ))
  19934. characterMakers.push(() => makeCharacter(
  19935. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19936. {
  19937. side: {
  19938. height: math.unit(4, "meters"),
  19939. weight: math.unit(2200, "kg"),
  19940. name: "Side",
  19941. image: {
  19942. source: "./media/characters/zara/side.svg",
  19943. extra: 765/744,
  19944. bottom: 156/921
  19945. }
  19946. },
  19947. },
  19948. [
  19949. {
  19950. name: "Normal",
  19951. height: math.unit(4, "meters"),
  19952. default: true
  19953. },
  19954. ]
  19955. ))
  19956. characterMakers.push(() => makeCharacter(
  19957. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19958. {
  19959. side: {
  19960. height: math.unit(6, "feet"),
  19961. weight: math.unit(150, "lb"),
  19962. name: "Side",
  19963. image: {
  19964. source: "./media/characters/richard-dragon/side.svg",
  19965. extra: 845 / 340,
  19966. bottom: 0.017
  19967. }
  19968. },
  19969. maw: {
  19970. height: math.unit(2.97, "feet"),
  19971. name: "Maw",
  19972. image: {
  19973. source: "./media/characters/richard-dragon/maw.svg"
  19974. }
  19975. },
  19976. },
  19977. [
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19982. {
  19983. front: {
  19984. height: math.unit(4, "feet"),
  19985. weight: math.unit(100, "lb"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/richard-smeargle/front.svg",
  19989. extra: 2952 / 2820,
  19990. bottom: 0.028
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Normal",
  19997. height: math.unit(4, "feet"),
  19998. default: true
  19999. },
  20000. {
  20001. name: "Dynamax",
  20002. height: math.unit(20, "meters")
  20003. },
  20004. ]
  20005. ))
  20006. characterMakers.push(() => makeCharacter(
  20007. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20008. {
  20009. front: {
  20010. height: math.unit(6, "feet"),
  20011. weight: math.unit(110, "lb"),
  20012. name: "Front",
  20013. image: {
  20014. source: "./media/characters/klay/front.svg",
  20015. extra: 962 / 883,
  20016. bottom: 0.04
  20017. }
  20018. },
  20019. back: {
  20020. height: math.unit(6, "feet"),
  20021. weight: math.unit(110, "lb"),
  20022. name: "Back",
  20023. image: {
  20024. source: "./media/characters/klay/back.svg",
  20025. extra: 962 / 883
  20026. }
  20027. },
  20028. beans: {
  20029. height: math.unit(1.15, "feet"),
  20030. name: "Beans",
  20031. image: {
  20032. source: "./media/characters/klay/beans.svg"
  20033. }
  20034. },
  20035. },
  20036. [
  20037. {
  20038. name: "Micro",
  20039. height: math.unit(6, "inches")
  20040. },
  20041. {
  20042. name: "Mini",
  20043. height: math.unit(3, "feet")
  20044. },
  20045. {
  20046. name: "Normal",
  20047. height: math.unit(6, "feet"),
  20048. default: true
  20049. },
  20050. {
  20051. name: "Big",
  20052. height: math.unit(25, "feet")
  20053. },
  20054. {
  20055. name: "Macro",
  20056. height: math.unit(100, "feet")
  20057. },
  20058. {
  20059. name: "Megamacro",
  20060. height: math.unit(400, "feet")
  20061. },
  20062. ]
  20063. ))
  20064. characterMakers.push(() => makeCharacter(
  20065. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20066. {
  20067. front: {
  20068. height: math.unit(6, "feet"),
  20069. weight: math.unit(160, "lb"),
  20070. name: "Front",
  20071. image: {
  20072. source: "./media/characters/marcus/front.svg",
  20073. extra: 734 / 676,
  20074. bottom: 0.03
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Little",
  20081. height: math.unit(6, "feet")
  20082. },
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(110, "feet"),
  20086. default: true
  20087. },
  20088. {
  20089. name: "Macro",
  20090. height: math.unit(250, "feet")
  20091. },
  20092. {
  20093. name: "Megamacro",
  20094. height: math.unit(1000, "feet")
  20095. },
  20096. ]
  20097. ))
  20098. characterMakers.push(() => makeCharacter(
  20099. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20100. {
  20101. front: {
  20102. height: math.unit(7, "feet"),
  20103. weight: math.unit(275, "lb"),
  20104. name: "Front",
  20105. image: {
  20106. source: "./media/characters/claude-delroute/front.svg",
  20107. extra: 902/827,
  20108. bottom: 26/928
  20109. }
  20110. },
  20111. side: {
  20112. height: math.unit(7, "feet"),
  20113. weight: math.unit(275, "lb"),
  20114. name: "Side",
  20115. image: {
  20116. source: "./media/characters/claude-delroute/side.svg",
  20117. extra: 908/853,
  20118. bottom: 16/924
  20119. }
  20120. },
  20121. back: {
  20122. height: math.unit(7, "feet"),
  20123. weight: math.unit(275, "lb"),
  20124. name: "Back",
  20125. image: {
  20126. source: "./media/characters/claude-delroute/back.svg",
  20127. extra: 911/829,
  20128. bottom: 18/929
  20129. }
  20130. },
  20131. maw: {
  20132. height: math.unit(0.6407, "meters"),
  20133. name: "Maw",
  20134. image: {
  20135. source: "./media/characters/claude-delroute/maw.svg"
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Normal",
  20142. height: math.unit(7, "feet"),
  20143. default: true
  20144. },
  20145. {
  20146. name: "Lorge",
  20147. height: math.unit(20, "feet")
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20153. {
  20154. front: {
  20155. height: math.unit(8 + 4 / 12, "feet"),
  20156. weight: math.unit(600, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/dragonien/front.svg",
  20160. extra: 100 / 94,
  20161. bottom: 3.3 / 103.3445
  20162. }
  20163. },
  20164. back: {
  20165. height: math.unit(8 + 4 / 12, "feet"),
  20166. weight: math.unit(600, "lb"),
  20167. name: "Back",
  20168. image: {
  20169. source: "./media/characters/dragonien/back.svg",
  20170. extra: 776 / 746,
  20171. bottom: 6.4 / 782.0616
  20172. }
  20173. },
  20174. foot: {
  20175. height: math.unit(1.54, "feet"),
  20176. name: "Foot",
  20177. image: {
  20178. source: "./media/characters/dragonien/foot.svg",
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "Normal",
  20185. height: math.unit(8 + 4 / 12, "feet"),
  20186. default: true
  20187. },
  20188. {
  20189. name: "Macro",
  20190. height: math.unit(200, "feet")
  20191. },
  20192. {
  20193. name: "Megamacro",
  20194. height: math.unit(1, "mile")
  20195. },
  20196. {
  20197. name: "Gigamacro",
  20198. height: math.unit(1000, "miles")
  20199. },
  20200. ]
  20201. ))
  20202. characterMakers.push(() => makeCharacter(
  20203. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20204. {
  20205. front: {
  20206. height: math.unit(5 + 2 / 12, "feet"),
  20207. weight: math.unit(110, "lb"),
  20208. name: "Front",
  20209. image: {
  20210. source: "./media/characters/desta/front.svg",
  20211. extra: 767 / 726,
  20212. bottom: 11.7 / 779
  20213. }
  20214. },
  20215. back: {
  20216. height: math.unit(5 + 2 / 12, "feet"),
  20217. weight: math.unit(110, "lb"),
  20218. name: "Back",
  20219. image: {
  20220. source: "./media/characters/desta/back.svg",
  20221. extra: 777 / 728,
  20222. bottom: 6 / 784
  20223. }
  20224. },
  20225. frontAlt: {
  20226. height: math.unit(5 + 2 / 12, "feet"),
  20227. weight: math.unit(110, "lb"),
  20228. name: "Front",
  20229. image: {
  20230. source: "./media/characters/desta/front-alt.svg",
  20231. extra: 1482 / 1417
  20232. }
  20233. },
  20234. side: {
  20235. height: math.unit(5 + 2 / 12, "feet"),
  20236. weight: math.unit(110, "lb"),
  20237. name: "Side",
  20238. image: {
  20239. source: "./media/characters/desta/side.svg",
  20240. extra: 2579 / 2491,
  20241. bottom: 0.053
  20242. }
  20243. },
  20244. },
  20245. [
  20246. {
  20247. name: "Micro",
  20248. height: math.unit(6, "inches")
  20249. },
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(5 + 2 / 12, "feet"),
  20253. default: true
  20254. },
  20255. {
  20256. name: "Macro",
  20257. height: math.unit(62, "feet")
  20258. },
  20259. {
  20260. name: "Megamacro",
  20261. height: math.unit(1800, "feet")
  20262. },
  20263. ]
  20264. ))
  20265. characterMakers.push(() => makeCharacter(
  20266. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20267. {
  20268. front: {
  20269. height: math.unit(10, "feet"),
  20270. weight: math.unit(700, "lb"),
  20271. name: "Front",
  20272. image: {
  20273. source: "./media/characters/storm-alystar/front.svg",
  20274. extra: 2112 / 1898,
  20275. bottom: 0.034
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "Micro",
  20282. height: math.unit(3.5, "inches")
  20283. },
  20284. {
  20285. name: "Normal",
  20286. height: math.unit(10, "feet"),
  20287. default: true
  20288. },
  20289. {
  20290. name: "Macro",
  20291. height: math.unit(400, "feet")
  20292. },
  20293. {
  20294. name: "Deific",
  20295. height: math.unit(60, "miles")
  20296. },
  20297. ]
  20298. ))
  20299. characterMakers.push(() => makeCharacter(
  20300. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20301. {
  20302. front: {
  20303. height: math.unit(2.35, "meters"),
  20304. weight: math.unit(119, "kg"),
  20305. name: "Front",
  20306. image: {
  20307. source: "./media/characters/ilia/front.svg",
  20308. extra: 1285 / 1255,
  20309. bottom: 0.06
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(2.35, "meters")
  20317. },
  20318. {
  20319. name: "Macro",
  20320. height: math.unit(140, "meters"),
  20321. default: true
  20322. },
  20323. {
  20324. name: "Megamacro",
  20325. height: math.unit(100, "miles")
  20326. },
  20327. ]
  20328. ))
  20329. characterMakers.push(() => makeCharacter(
  20330. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20331. {
  20332. front: {
  20333. height: math.unit(6 + 5 / 12, "feet"),
  20334. weight: math.unit(190, "lb"),
  20335. name: "Front",
  20336. image: {
  20337. source: "./media/characters/kingdead/front.svg",
  20338. extra: 1228 / 1177
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Micro",
  20345. height: math.unit(7, "inches")
  20346. },
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(6 + 5 / 12, "feet")
  20350. },
  20351. {
  20352. name: "Macro",
  20353. height: math.unit(150, "feet"),
  20354. default: true
  20355. },
  20356. {
  20357. name: "Megamacro",
  20358. height: math.unit(200, "miles")
  20359. },
  20360. ]
  20361. ))
  20362. characterMakers.push(() => makeCharacter(
  20363. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20364. {
  20365. front: {
  20366. height: math.unit(8, "feet"),
  20367. weight: math.unit(600, "lb"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/kyrehx/front.svg",
  20371. extra: 1195 / 1095,
  20372. bottom: 0.034
  20373. }
  20374. },
  20375. },
  20376. [
  20377. {
  20378. name: "Micro",
  20379. height: math.unit(2, "inches")
  20380. },
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(8, "feet"),
  20384. default: true
  20385. },
  20386. {
  20387. name: "Macro",
  20388. height: math.unit(255, "feet")
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20394. {
  20395. front: {
  20396. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20397. weight: math.unit(184, "lb"),
  20398. name: "Front",
  20399. image: {
  20400. source: "./media/characters/xang/front.svg",
  20401. extra: 845 / 755
  20402. }
  20403. },
  20404. },
  20405. [
  20406. {
  20407. name: "Normal",
  20408. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20409. default: true
  20410. },
  20411. {
  20412. name: "Macro",
  20413. height: math.unit(0.935 * 146, "feet")
  20414. },
  20415. {
  20416. name: "Megamacro",
  20417. height: math.unit(0.935 * 3, "miles")
  20418. },
  20419. ]
  20420. ))
  20421. characterMakers.push(() => makeCharacter(
  20422. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20423. {
  20424. frontDressed: {
  20425. height: math.unit(5 + 7 / 12, "feet"),
  20426. weight: math.unit(140, "lb"),
  20427. name: "Front (Dressed)",
  20428. image: {
  20429. source: "./media/characters/doc-weardno/front-dressed.svg",
  20430. extra: 263 / 234
  20431. }
  20432. },
  20433. backDressed: {
  20434. height: math.unit(5 + 7 / 12, "feet"),
  20435. weight: math.unit(140, "lb"),
  20436. name: "Back (Dressed)",
  20437. image: {
  20438. source: "./media/characters/doc-weardno/back-dressed.svg",
  20439. extra: 266 / 238
  20440. }
  20441. },
  20442. front: {
  20443. height: math.unit(5 + 7 / 12, "feet"),
  20444. weight: math.unit(140, "lb"),
  20445. name: "Front",
  20446. image: {
  20447. source: "./media/characters/doc-weardno/front.svg",
  20448. extra: 254 / 233
  20449. }
  20450. },
  20451. },
  20452. [
  20453. {
  20454. name: "Micro",
  20455. height: math.unit(3, "inches")
  20456. },
  20457. {
  20458. name: "Normal",
  20459. height: math.unit(5 + 7 / 12, "feet"),
  20460. default: true
  20461. },
  20462. {
  20463. name: "Macro",
  20464. height: math.unit(25, "feet")
  20465. },
  20466. {
  20467. name: "Megamacro",
  20468. height: math.unit(2, "miles")
  20469. },
  20470. ]
  20471. ))
  20472. characterMakers.push(() => makeCharacter(
  20473. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20474. {
  20475. front: {
  20476. height: math.unit(6 + 2 / 12, "feet"),
  20477. weight: math.unit(153, "lb"),
  20478. name: "Front",
  20479. image: {
  20480. source: "./media/characters/seth-whilst/front.svg",
  20481. bottom: 0.07
  20482. }
  20483. },
  20484. },
  20485. [
  20486. {
  20487. name: "Micro",
  20488. height: math.unit(5, "inches")
  20489. },
  20490. {
  20491. name: "Normal",
  20492. height: math.unit(6 + 2 / 12, "feet"),
  20493. default: true
  20494. },
  20495. ]
  20496. ))
  20497. characterMakers.push(() => makeCharacter(
  20498. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20499. {
  20500. front: {
  20501. height: math.unit(3, "inches"),
  20502. weight: math.unit(8, "grams"),
  20503. name: "Front",
  20504. image: {
  20505. source: "./media/characters/pocket-jabari/front.svg",
  20506. extra: 1024 / 974,
  20507. bottom: 0.039
  20508. }
  20509. },
  20510. },
  20511. [
  20512. {
  20513. name: "Minimicro",
  20514. height: math.unit(8, "mm")
  20515. },
  20516. {
  20517. name: "Micro",
  20518. height: math.unit(3, "inches"),
  20519. default: true
  20520. },
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(3, "feet")
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20529. {
  20530. frontDressed: {
  20531. height: math.unit(15, "feet"),
  20532. weight: math.unit(3280, "lb"),
  20533. name: "Front (Dressed)",
  20534. image: {
  20535. source: "./media/characters/sapphy/front-dressed.svg",
  20536. extra: 1951/1654,
  20537. bottom: 194/2145
  20538. },
  20539. form: "anthro",
  20540. default: true
  20541. },
  20542. backDressed: {
  20543. height: math.unit(15, "feet"),
  20544. weight: math.unit(3280, "lb"),
  20545. name: "Back (Dressed)",
  20546. image: {
  20547. source: "./media/characters/sapphy/back-dressed.svg",
  20548. extra: 2058/1918,
  20549. bottom: 125/2183
  20550. },
  20551. form: "anthro"
  20552. },
  20553. frontNude: {
  20554. height: math.unit(15, "feet"),
  20555. weight: math.unit(3280, "lb"),
  20556. name: "Front (Nude)",
  20557. image: {
  20558. source: "./media/characters/sapphy/front-nude.svg",
  20559. extra: 1951/1654,
  20560. bottom: 194/2145
  20561. },
  20562. form: "anthro"
  20563. },
  20564. backNude: {
  20565. height: math.unit(15, "feet"),
  20566. weight: math.unit(3280, "lb"),
  20567. name: "Back (Nude)",
  20568. image: {
  20569. source: "./media/characters/sapphy/back-nude.svg",
  20570. extra: 2058/1918,
  20571. bottom: 125/2183
  20572. },
  20573. form: "anthro"
  20574. },
  20575. full: {
  20576. height: math.unit(15, "feet"),
  20577. weight: math.unit(3280, "lb"),
  20578. name: "Full",
  20579. image: {
  20580. source: "./media/characters/sapphy/full.svg",
  20581. extra: 1396/1317,
  20582. bottom: 44/1440
  20583. },
  20584. form: "anthro"
  20585. },
  20586. dick: {
  20587. height: math.unit(3.8, "feet"),
  20588. name: "Dick",
  20589. image: {
  20590. source: "./media/characters/sapphy/dick.svg"
  20591. },
  20592. form: "anthro"
  20593. },
  20594. feral: {
  20595. height: math.unit(35, "feet"),
  20596. weight: math.unit(160, "tons"),
  20597. name: "Feral",
  20598. image: {
  20599. source: "./media/characters/sapphy/feral.svg",
  20600. extra: 1050/573,
  20601. bottom: 60/1110
  20602. },
  20603. form: "feral",
  20604. default: true
  20605. },
  20606. },
  20607. [
  20608. {
  20609. name: "Normal",
  20610. height: math.unit(15, "feet"),
  20611. form: "anthro"
  20612. },
  20613. {
  20614. name: "Casual Macro",
  20615. height: math.unit(120, "feet"),
  20616. form: "anthro"
  20617. },
  20618. {
  20619. name: "Macro",
  20620. height: math.unit(2150, "feet"),
  20621. default: true,
  20622. form: "anthro"
  20623. },
  20624. {
  20625. name: "Megamacro",
  20626. height: math.unit(8, "miles"),
  20627. form: "anthro"
  20628. },
  20629. {
  20630. name: "Galaxy Mom",
  20631. height: math.unit(6, "megalightyears"),
  20632. form: "anthro"
  20633. },
  20634. {
  20635. name: "Normal",
  20636. height: math.unit(35, "feet"),
  20637. form: "feral",
  20638. default: true
  20639. },
  20640. {
  20641. name: "Macro",
  20642. height: math.unit(300, "feet"),
  20643. form: "feral"
  20644. },
  20645. {
  20646. name: "Galaxy Mom",
  20647. height: math.unit(10, "megalightyears"),
  20648. form: "feral"
  20649. },
  20650. ],
  20651. {
  20652. "anthro": {
  20653. name: "Anthro",
  20654. default: true
  20655. },
  20656. "feral": {
  20657. name: "Feral"
  20658. }
  20659. }
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20663. {
  20664. hyenaFront: {
  20665. height: math.unit(6, "feet"),
  20666. weight: math.unit(190, "lb"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/kiro/hyena-front.svg",
  20670. extra: 927/839,
  20671. bottom: 91/1018
  20672. },
  20673. form: "hyena",
  20674. default: true
  20675. },
  20676. front: {
  20677. height: math.unit(6, "feet"),
  20678. weight: math.unit(170, "lb"),
  20679. name: "Front",
  20680. image: {
  20681. source: "./media/characters/kiro/front.svg",
  20682. extra: 1064 / 1012,
  20683. bottom: 0.052
  20684. },
  20685. form: "folf",
  20686. default: true
  20687. },
  20688. },
  20689. [
  20690. {
  20691. name: "Micro",
  20692. height: math.unit(6, "inches"),
  20693. form: "folf"
  20694. },
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(6, "feet"),
  20698. form: "folf",
  20699. default: true
  20700. },
  20701. {
  20702. name: "Macro",
  20703. height: math.unit(72, "feet"),
  20704. form: "folf"
  20705. },
  20706. {
  20707. name: "Micro",
  20708. height: math.unit(6, "inches"),
  20709. form: "hyena"
  20710. },
  20711. {
  20712. name: "Normal",
  20713. height: math.unit(6, "feet"),
  20714. form: "hyena",
  20715. default: true
  20716. },
  20717. {
  20718. name: "Macro",
  20719. height: math.unit(72, "feet"),
  20720. form: "hyena"
  20721. },
  20722. ],
  20723. {
  20724. "hyena": {
  20725. name: "Hyena",
  20726. default: true
  20727. },
  20728. "folf": {
  20729. name: "Folf",
  20730. },
  20731. }
  20732. ))
  20733. characterMakers.push(() => makeCharacter(
  20734. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20735. {
  20736. front: {
  20737. height: math.unit(5 + 9 / 12, "feet"),
  20738. weight: math.unit(175, "lb"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/irishfox/front.svg",
  20742. extra: 1912 / 1680,
  20743. bottom: 0.02
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Nano",
  20750. height: math.unit(1, "mm")
  20751. },
  20752. {
  20753. name: "Micro",
  20754. height: math.unit(2, "inches")
  20755. },
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(5 + 9 / 12, "feet"),
  20759. default: true
  20760. },
  20761. {
  20762. name: "Macro",
  20763. height: math.unit(45, "feet")
  20764. },
  20765. ]
  20766. ))
  20767. characterMakers.push(() => makeCharacter(
  20768. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20769. {
  20770. front: {
  20771. height: math.unit(6 + 1 / 12, "feet"),
  20772. weight: math.unit(75, "lb"),
  20773. name: "Front",
  20774. image: {
  20775. source: "./media/characters/aronai-sieyes/front.svg",
  20776. extra: 1532/1450,
  20777. bottom: 42/1574
  20778. }
  20779. },
  20780. side: {
  20781. height: math.unit(6 + 1 / 12, "feet"),
  20782. weight: math.unit(75, "lb"),
  20783. name: "Side",
  20784. image: {
  20785. source: "./media/characters/aronai-sieyes/side.svg",
  20786. extra: 1422/1365,
  20787. bottom: 148/1570
  20788. }
  20789. },
  20790. back: {
  20791. height: math.unit(6 + 1 / 12, "feet"),
  20792. weight: math.unit(75, "lb"),
  20793. name: "Back",
  20794. image: {
  20795. source: "./media/characters/aronai-sieyes/back.svg",
  20796. extra: 1526/1464,
  20797. bottom: 51/1577
  20798. }
  20799. },
  20800. dressed: {
  20801. height: math.unit(6 + 1 / 12, "feet"),
  20802. weight: math.unit(75, "lb"),
  20803. name: "Dressed",
  20804. image: {
  20805. source: "./media/characters/aronai-sieyes/dressed.svg",
  20806. extra: 1559/1483,
  20807. bottom: 39/1598
  20808. }
  20809. },
  20810. slit: {
  20811. height: math.unit(1.3, "feet"),
  20812. name: "Slit",
  20813. image: {
  20814. source: "./media/characters/aronai-sieyes/slit.svg"
  20815. }
  20816. },
  20817. slitSpread: {
  20818. height: math.unit(0.9, "feet"),
  20819. name: "Slit (Spread)",
  20820. image: {
  20821. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20822. }
  20823. },
  20824. rump: {
  20825. height: math.unit(1.3, "feet"),
  20826. name: "Rump",
  20827. image: {
  20828. source: "./media/characters/aronai-sieyes/rump.svg"
  20829. }
  20830. },
  20831. maw: {
  20832. height: math.unit(1.25, "feet"),
  20833. name: "Maw",
  20834. image: {
  20835. source: "./media/characters/aronai-sieyes/maw.svg"
  20836. }
  20837. },
  20838. feral: {
  20839. height: math.unit(18, "feet"),
  20840. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20841. name: "Feral",
  20842. image: {
  20843. source: "./media/characters/aronai-sieyes/feral.svg",
  20844. extra: 1530 / 1240,
  20845. bottom: 0.035
  20846. }
  20847. },
  20848. },
  20849. [
  20850. {
  20851. name: "Micro",
  20852. height: math.unit(2, "inches")
  20853. },
  20854. {
  20855. name: "Normal",
  20856. height: math.unit(6 + 1 / 12, "feet"),
  20857. default: true
  20858. }
  20859. ]
  20860. ))
  20861. characterMakers.push(() => makeCharacter(
  20862. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20863. {
  20864. front: {
  20865. height: math.unit(12, "feet"),
  20866. weight: math.unit(410, "kg"),
  20867. name: "Front",
  20868. image: {
  20869. source: "./media/characters/xuna/front.svg",
  20870. extra: 2184 / 1980
  20871. }
  20872. },
  20873. side: {
  20874. height: math.unit(12, "feet"),
  20875. weight: math.unit(410, "kg"),
  20876. name: "Side",
  20877. image: {
  20878. source: "./media/characters/xuna/side.svg",
  20879. extra: 2184 / 1980
  20880. }
  20881. },
  20882. back: {
  20883. height: math.unit(12, "feet"),
  20884. weight: math.unit(410, "kg"),
  20885. name: "Back",
  20886. image: {
  20887. source: "./media/characters/xuna/back.svg",
  20888. extra: 2184 / 1980
  20889. }
  20890. },
  20891. },
  20892. [
  20893. {
  20894. name: "Nano glow",
  20895. height: math.unit(10, "nm")
  20896. },
  20897. {
  20898. name: "Micro floof",
  20899. height: math.unit(0.3, "m")
  20900. },
  20901. {
  20902. name: "Huggable softy boi",
  20903. height: math.unit(3.6576, "m"),
  20904. default: true
  20905. },
  20906. {
  20907. name: "Admirable floof",
  20908. height: math.unit(80, "meters")
  20909. },
  20910. {
  20911. name: "Gentle macro",
  20912. height: math.unit(300, "meters")
  20913. },
  20914. {
  20915. name: "Very careful floof",
  20916. height: math.unit(3200, "meters")
  20917. },
  20918. {
  20919. name: "The mega floof",
  20920. height: math.unit(36000, "meters")
  20921. },
  20922. {
  20923. name: "Giga-fur-Wicker",
  20924. height: math.unit(4800000, "meters")
  20925. },
  20926. {
  20927. name: "Licky world",
  20928. height: math.unit(20000000, "meters")
  20929. },
  20930. {
  20931. name: "Floofy cyan sun",
  20932. height: math.unit(1500000000, "meters")
  20933. },
  20934. {
  20935. name: "Milky Wicker",
  20936. height: math.unit(1000000000000000000000, "meters")
  20937. },
  20938. {
  20939. name: "The observing Wicker",
  20940. height: math.unit(999999999999999999999999999, "meters")
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20946. {
  20947. front: {
  20948. height: math.unit(5 + 9 / 12, "feet"),
  20949. weight: math.unit(150, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/arokha-sieyes/front.svg",
  20953. extra: 1425 / 1284,
  20954. bottom: 0.05
  20955. }
  20956. },
  20957. },
  20958. [
  20959. {
  20960. name: "Normal",
  20961. height: math.unit(5 + 9 / 12, "feet")
  20962. },
  20963. {
  20964. name: "Macro",
  20965. height: math.unit(30, "meters"),
  20966. default: true
  20967. },
  20968. ]
  20969. ))
  20970. characterMakers.push(() => makeCharacter(
  20971. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20972. {
  20973. front: {
  20974. height: math.unit(6, "feet"),
  20975. weight: math.unit(180, "lb"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/arokh-sieyes/front.svg",
  20979. extra: 1830 / 1769,
  20980. bottom: 0.01
  20981. }
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Normal",
  20987. height: math.unit(6, "feet")
  20988. },
  20989. {
  20990. name: "Macro",
  20991. height: math.unit(30, "meters"),
  20992. default: true
  20993. },
  20994. ]
  20995. ))
  20996. characterMakers.push(() => makeCharacter(
  20997. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20998. {
  20999. side: {
  21000. height: math.unit(13 + 1 / 12, "feet"),
  21001. weight: math.unit(8.5, "tonnes"),
  21002. preyCapacity: math.unit(36, "people"),
  21003. name: "Side",
  21004. image: {
  21005. source: "./media/characters/goldeneye/side.svg",
  21006. extra: 1139/741,
  21007. bottom: 98/1237
  21008. }
  21009. },
  21010. front: {
  21011. height: math.unit(5.1, "feet"),
  21012. weight: math.unit(8.5, "tonnes"),
  21013. preyCapacity: math.unit(36, "people"),
  21014. name: "Front",
  21015. image: {
  21016. source: "./media/characters/goldeneye/front.svg",
  21017. extra: 635/365,
  21018. bottom: 598/1233
  21019. }
  21020. },
  21021. maw: {
  21022. height: math.unit(6.6, "feet"),
  21023. name: "Maw",
  21024. image: {
  21025. source: "./media/characters/goldeneye/maw.svg"
  21026. }
  21027. },
  21028. headFront: {
  21029. height: math.unit(8, "feet"),
  21030. name: "Head (Front)",
  21031. image: {
  21032. source: "./media/characters/goldeneye/head-front.svg"
  21033. }
  21034. },
  21035. headSide: {
  21036. height: math.unit(6, "feet"),
  21037. name: "Head (Side)",
  21038. image: {
  21039. source: "./media/characters/goldeneye/head-side.svg"
  21040. }
  21041. },
  21042. headBack: {
  21043. height: math.unit(8, "feet"),
  21044. name: "Head (Back)",
  21045. image: {
  21046. source: "./media/characters/goldeneye/head-back.svg"
  21047. }
  21048. },
  21049. paw: {
  21050. height: math.unit(3.4, "feet"),
  21051. name: "Paw",
  21052. image: {
  21053. source: "./media/characters/goldeneye/paw.svg"
  21054. }
  21055. },
  21056. toering: {
  21057. height: math.unit(0.45, "feet"),
  21058. name: "Toering",
  21059. image: {
  21060. source: "./media/characters/goldeneye/toering.svg"
  21061. }
  21062. },
  21063. eyes: {
  21064. height: math.unit(0.5, "feet"),
  21065. name: "Eyes",
  21066. image: {
  21067. source: "./media/characters/goldeneye/eyes.svg"
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(13 + 1 / 12, "feet"),
  21075. default: true
  21076. },
  21077. ]
  21078. ))
  21079. characterMakers.push(() => makeCharacter(
  21080. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21081. {
  21082. front: {
  21083. height: math.unit(6 + 1 / 12, "feet"),
  21084. weight: math.unit(210, "lb"),
  21085. name: "Front",
  21086. image: {
  21087. source: "./media/characters/leonardo-lycheborne/front.svg",
  21088. extra: 776/723,
  21089. bottom: 34/810
  21090. }
  21091. },
  21092. side: {
  21093. height: math.unit(6 + 1 / 12, "feet"),
  21094. weight: math.unit(210, "lb"),
  21095. name: "Side",
  21096. image: {
  21097. source: "./media/characters/leonardo-lycheborne/side.svg",
  21098. extra: 780/728,
  21099. bottom: 12/792
  21100. }
  21101. },
  21102. back: {
  21103. height: math.unit(6 + 1 / 12, "feet"),
  21104. weight: math.unit(210, "lb"),
  21105. name: "Back",
  21106. image: {
  21107. source: "./media/characters/leonardo-lycheborne/back.svg",
  21108. extra: 775/721,
  21109. bottom: 17/792
  21110. }
  21111. },
  21112. hand: {
  21113. height: math.unit(1.08, "feet"),
  21114. name: "Hand",
  21115. image: {
  21116. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21117. }
  21118. },
  21119. foot: {
  21120. height: math.unit(1.32, "feet"),
  21121. name: "Foot",
  21122. image: {
  21123. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21124. }
  21125. },
  21126. maw: {
  21127. height: math.unit(1, "feet"),
  21128. name: "Maw",
  21129. image: {
  21130. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21131. }
  21132. },
  21133. were: {
  21134. height: math.unit(20, "feet"),
  21135. weight: math.unit(7800, "lb"),
  21136. name: "Were",
  21137. image: {
  21138. source: "./media/characters/leonardo-lycheborne/were.svg",
  21139. extra: 1224/1165,
  21140. bottom: 72/1296
  21141. }
  21142. },
  21143. feral: {
  21144. height: math.unit(7.5, "feet"),
  21145. weight: math.unit(600, "lb"),
  21146. name: "Feral",
  21147. image: {
  21148. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21149. extra: 797/702,
  21150. bottom: 139/936
  21151. }
  21152. },
  21153. taur: {
  21154. height: math.unit(11, "feet"),
  21155. weight: math.unit(3300, "lb"),
  21156. name: "Taur",
  21157. image: {
  21158. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21159. extra: 1271/1197,
  21160. bottom: 47/1318
  21161. }
  21162. },
  21163. barghest: {
  21164. height: math.unit(11, "feet"),
  21165. weight: math.unit(1300, "lb"),
  21166. name: "Barghest",
  21167. image: {
  21168. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21169. extra: 1291/1204,
  21170. bottom: 37/1328
  21171. }
  21172. },
  21173. dick: {
  21174. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21175. name: "Dick",
  21176. image: {
  21177. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21178. }
  21179. },
  21180. dickWere: {
  21181. height: math.unit((20) / 3.8, "feet"),
  21182. name: "Dick (Were)",
  21183. image: {
  21184. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21185. }
  21186. },
  21187. },
  21188. [
  21189. {
  21190. name: "Normal",
  21191. height: math.unit(6 + 1 / 12, "feet"),
  21192. default: true
  21193. },
  21194. ]
  21195. ))
  21196. characterMakers.push(() => makeCharacter(
  21197. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21198. {
  21199. front: {
  21200. height: math.unit(10, "feet"),
  21201. weight: math.unit(350, "lb"),
  21202. name: "Front",
  21203. image: {
  21204. source: "./media/characters/jet/front.svg",
  21205. extra: 2050 / 1980,
  21206. bottom: 0.013
  21207. }
  21208. },
  21209. back: {
  21210. height: math.unit(10, "feet"),
  21211. weight: math.unit(350, "lb"),
  21212. name: "Back",
  21213. image: {
  21214. source: "./media/characters/jet/back.svg",
  21215. extra: 2050 / 1980,
  21216. bottom: 0.013
  21217. }
  21218. },
  21219. },
  21220. [
  21221. {
  21222. name: "Micro",
  21223. height: math.unit(6, "inches")
  21224. },
  21225. {
  21226. name: "Normal",
  21227. height: math.unit(10, "feet"),
  21228. default: true
  21229. },
  21230. {
  21231. name: "Macro",
  21232. height: math.unit(100, "feet")
  21233. },
  21234. ]
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21238. {
  21239. front: {
  21240. height: math.unit(15, "feet"),
  21241. weight: math.unit(2800, "lb"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/tanarath/front.svg",
  21245. extra: 2392 / 2220,
  21246. bottom: 0.03
  21247. }
  21248. },
  21249. back: {
  21250. height: math.unit(15, "feet"),
  21251. weight: math.unit(2800, "lb"),
  21252. name: "Back",
  21253. image: {
  21254. source: "./media/characters/tanarath/back.svg",
  21255. extra: 2392 / 2220,
  21256. bottom: 0.03
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Normal",
  21263. height: math.unit(15, "feet"),
  21264. default: true
  21265. },
  21266. ]
  21267. ))
  21268. characterMakers.push(() => makeCharacter(
  21269. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21270. {
  21271. front: {
  21272. height: math.unit(7 + 1 / 12, "feet"),
  21273. weight: math.unit(175, "lb"),
  21274. name: "Front",
  21275. image: {
  21276. source: "./media/characters/patty-cattybatty/front.svg",
  21277. extra: 908 / 874,
  21278. bottom: 0.025
  21279. }
  21280. },
  21281. },
  21282. [
  21283. {
  21284. name: "Micro",
  21285. height: math.unit(1, "inch")
  21286. },
  21287. {
  21288. name: "Normal",
  21289. height: math.unit(7 + 1 / 12, "feet")
  21290. },
  21291. {
  21292. name: "Mini Macro",
  21293. height: math.unit(155, "feet")
  21294. },
  21295. {
  21296. name: "Macro",
  21297. height: math.unit(1077, "feet")
  21298. },
  21299. {
  21300. name: "Mega Macro",
  21301. height: math.unit(47650, "feet"),
  21302. default: true
  21303. },
  21304. {
  21305. name: "Giga Macro",
  21306. height: math.unit(440, "miles")
  21307. },
  21308. {
  21309. name: "Tera Macro",
  21310. height: math.unit(8700, "miles")
  21311. },
  21312. {
  21313. name: "Planetary Macro",
  21314. height: math.unit(32700, "miles")
  21315. },
  21316. {
  21317. name: "Solar Macro",
  21318. height: math.unit(550000, "miles")
  21319. },
  21320. {
  21321. name: "Celestial Macro",
  21322. height: math.unit(2.5, "AU")
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21328. {
  21329. front: {
  21330. height: math.unit(4 + 5 / 12, "feet"),
  21331. weight: math.unit(90, "lb"),
  21332. name: "Front",
  21333. image: {
  21334. source: "./media/characters/cappu/front.svg",
  21335. extra: 1247 / 1152,
  21336. bottom: 0.012
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Normal",
  21343. height: math.unit(4 + 5 / 12, "feet"),
  21344. default: true
  21345. },
  21346. ]
  21347. ))
  21348. characterMakers.push(() => makeCharacter(
  21349. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21350. {
  21351. frontDressed: {
  21352. height: math.unit(70, "cm"),
  21353. weight: math.unit(6, "kg"),
  21354. name: "Front (Dressed)",
  21355. image: {
  21356. source: "./media/characters/sebi/front-dressed.svg",
  21357. extra: 713.5 / 686.5,
  21358. bottom: 0.003
  21359. }
  21360. },
  21361. front: {
  21362. height: math.unit(70, "cm"),
  21363. weight: math.unit(5, "kg"),
  21364. name: "Front",
  21365. image: {
  21366. source: "./media/characters/sebi/front.svg",
  21367. extra: 713.5 / 686.5,
  21368. bottom: 0.003
  21369. }
  21370. }
  21371. },
  21372. [
  21373. {
  21374. name: "Normal",
  21375. height: math.unit(70, "cm"),
  21376. default: true
  21377. },
  21378. {
  21379. name: "Macro",
  21380. height: math.unit(8, "meters")
  21381. },
  21382. ]
  21383. ))
  21384. characterMakers.push(() => makeCharacter(
  21385. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21386. {
  21387. front: {
  21388. height: math.unit(6, "feet"),
  21389. weight: math.unit(150, "lb"),
  21390. name: "Front",
  21391. image: {
  21392. source: "./media/characters/typhek/front.svg",
  21393. extra: 1948 / 1929,
  21394. bottom: 0.025
  21395. }
  21396. },
  21397. side: {
  21398. height: math.unit(6, "feet"),
  21399. weight: math.unit(150, "lb"),
  21400. name: "Side",
  21401. image: {
  21402. source: "./media/characters/typhek/side.svg",
  21403. extra: 2034 / 2010,
  21404. bottom: 0.003
  21405. }
  21406. },
  21407. back: {
  21408. height: math.unit(6, "feet"),
  21409. weight: math.unit(150, "lb"),
  21410. name: "Back",
  21411. image: {
  21412. source: "./media/characters/typhek/back.svg",
  21413. extra: 2005 / 1978,
  21414. bottom: 0.004
  21415. }
  21416. },
  21417. palm: {
  21418. height: math.unit(1.2, "feet"),
  21419. name: "Palm",
  21420. image: {
  21421. source: "./media/characters/typhek/palm.svg"
  21422. }
  21423. },
  21424. fist: {
  21425. height: math.unit(1.1, "feet"),
  21426. name: "Fist",
  21427. image: {
  21428. source: "./media/characters/typhek/fist.svg"
  21429. }
  21430. },
  21431. foot: {
  21432. height: math.unit(1.57, "feet"),
  21433. name: "Foot",
  21434. image: {
  21435. source: "./media/characters/typhek/foot.svg"
  21436. }
  21437. },
  21438. sole: {
  21439. height: math.unit(2.05, "feet"),
  21440. name: "Sole",
  21441. image: {
  21442. source: "./media/characters/typhek/sole.svg"
  21443. }
  21444. },
  21445. },
  21446. [
  21447. {
  21448. name: "Macro",
  21449. height: math.unit(40, "stories"),
  21450. default: true
  21451. },
  21452. {
  21453. name: "Megamacro",
  21454. height: math.unit(1, "mile")
  21455. },
  21456. {
  21457. name: "Gigamacro",
  21458. height: math.unit(4000, "solarradii")
  21459. },
  21460. {
  21461. name: "Universal",
  21462. height: math.unit(1.1, "universes")
  21463. }
  21464. ]
  21465. ))
  21466. characterMakers.push(() => makeCharacter(
  21467. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21468. {
  21469. side: {
  21470. height: math.unit(5 + 7 / 12, "feet"),
  21471. weight: math.unit(150, "lb"),
  21472. name: "Side",
  21473. image: {
  21474. source: "./media/characters/kassy/side.svg",
  21475. extra: 1280 / 1225,
  21476. bottom: 0.002
  21477. }
  21478. },
  21479. front: {
  21480. height: math.unit(5 + 7 / 12, "feet"),
  21481. weight: math.unit(150, "lb"),
  21482. name: "Front",
  21483. image: {
  21484. source: "./media/characters/kassy/front.svg",
  21485. extra: 1280 / 1225,
  21486. bottom: 0.025
  21487. }
  21488. },
  21489. back: {
  21490. height: math.unit(5 + 7 / 12, "feet"),
  21491. weight: math.unit(150, "lb"),
  21492. name: "Back",
  21493. image: {
  21494. source: "./media/characters/kassy/back.svg",
  21495. extra: 1280 / 1225,
  21496. bottom: 0.002
  21497. }
  21498. },
  21499. foot: {
  21500. height: math.unit(1.266, "feet"),
  21501. name: "Foot",
  21502. image: {
  21503. source: "./media/characters/kassy/foot.svg"
  21504. }
  21505. },
  21506. },
  21507. [
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(5 + 7 / 12, "feet")
  21511. },
  21512. {
  21513. name: "Macro",
  21514. height: math.unit(137, "feet"),
  21515. default: true
  21516. },
  21517. {
  21518. name: "Megamacro",
  21519. height: math.unit(1, "mile")
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21525. {
  21526. front: {
  21527. height: math.unit(6 + 1 / 12, "feet"),
  21528. weight: math.unit(200, "lb"),
  21529. name: "Front",
  21530. image: {
  21531. source: "./media/characters/neil/front.svg",
  21532. extra: 1326 / 1250,
  21533. bottom: 0.023
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Normal",
  21540. height: math.unit(6 + 1 / 12, "feet"),
  21541. default: true
  21542. },
  21543. {
  21544. name: "Macro",
  21545. height: math.unit(200, "feet")
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21551. {
  21552. front: {
  21553. height: math.unit(5 + 9 / 12, "feet"),
  21554. weight: math.unit(190, "lb"),
  21555. name: "Front",
  21556. image: {
  21557. source: "./media/characters/atticus/front.svg",
  21558. extra: 2934 / 2785,
  21559. bottom: 0.025
  21560. }
  21561. },
  21562. },
  21563. [
  21564. {
  21565. name: "Normal",
  21566. height: math.unit(5 + 9 / 12, "feet"),
  21567. default: true
  21568. },
  21569. {
  21570. name: "Macro",
  21571. height: math.unit(180, "feet")
  21572. },
  21573. ]
  21574. ))
  21575. characterMakers.push(() => makeCharacter(
  21576. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21577. {
  21578. side: {
  21579. height: math.unit(9, "feet"),
  21580. weight: math.unit(650, "lb"),
  21581. name: "Side",
  21582. image: {
  21583. source: "./media/characters/milo/side.svg",
  21584. extra: 2644 / 2310,
  21585. bottom: 0.032
  21586. }
  21587. },
  21588. },
  21589. [
  21590. {
  21591. name: "Normal",
  21592. height: math.unit(9, "feet"),
  21593. default: true
  21594. },
  21595. {
  21596. name: "Macro",
  21597. height: math.unit(300, "feet")
  21598. },
  21599. ]
  21600. ))
  21601. characterMakers.push(() => makeCharacter(
  21602. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21603. {
  21604. side: {
  21605. height: math.unit(8, "meters"),
  21606. weight: math.unit(90000, "kg"),
  21607. name: "Side",
  21608. image: {
  21609. source: "./media/characters/ijzer/side.svg",
  21610. extra: 2756 / 1600,
  21611. bottom: 0.01
  21612. }
  21613. },
  21614. },
  21615. [
  21616. {
  21617. name: "Small",
  21618. height: math.unit(3, "meters")
  21619. },
  21620. {
  21621. name: "Normal",
  21622. height: math.unit(8, "meters"),
  21623. default: true
  21624. },
  21625. {
  21626. name: "Normal+",
  21627. height: math.unit(10, "meters")
  21628. },
  21629. {
  21630. name: "Bigger",
  21631. height: math.unit(24, "meters")
  21632. },
  21633. {
  21634. name: "Huge",
  21635. height: math.unit(80, "meters")
  21636. },
  21637. ]
  21638. ))
  21639. characterMakers.push(() => makeCharacter(
  21640. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21641. {
  21642. front: {
  21643. height: math.unit(6 + 2 / 12, "feet"),
  21644. weight: math.unit(153, "lb"),
  21645. name: "Front",
  21646. image: {
  21647. source: "./media/characters/luca-cervicum/front.svg",
  21648. extra: 370 / 327,
  21649. bottom: 0.015
  21650. }
  21651. },
  21652. back: {
  21653. height: math.unit(6 + 2 / 12, "feet"),
  21654. weight: math.unit(153, "lb"),
  21655. name: "Back",
  21656. image: {
  21657. source: "./media/characters/luca-cervicum/back.svg",
  21658. extra: 367 / 333,
  21659. bottom: 0.005
  21660. }
  21661. },
  21662. frontGear: {
  21663. height: math.unit(6 + 2 / 12, "feet"),
  21664. weight: math.unit(173, "lb"),
  21665. name: "Front (Gear)",
  21666. image: {
  21667. source: "./media/characters/luca-cervicum/front-gear.svg",
  21668. extra: 377 / 333,
  21669. bottom: 0.006
  21670. }
  21671. },
  21672. },
  21673. [
  21674. {
  21675. name: "Normal",
  21676. height: math.unit(6 + 2 / 12, "feet"),
  21677. default: true
  21678. },
  21679. ]
  21680. ))
  21681. characterMakers.push(() => makeCharacter(
  21682. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21683. {
  21684. front: {
  21685. height: math.unit(6 + 1 / 12, "feet"),
  21686. weight: math.unit(304, "lb"),
  21687. name: "Front",
  21688. image: {
  21689. source: "./media/characters/oliver/front.svg",
  21690. extra: 157 / 143,
  21691. bottom: 0.08
  21692. }
  21693. },
  21694. },
  21695. [
  21696. {
  21697. name: "Normal",
  21698. height: math.unit(6 + 1 / 12, "feet"),
  21699. default: true
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21705. {
  21706. front: {
  21707. height: math.unit(5 + 7 / 12, "feet"),
  21708. weight: math.unit(140, "lb"),
  21709. name: "Front",
  21710. image: {
  21711. source: "./media/characters/shane/front.svg",
  21712. extra: 304 / 289,
  21713. bottom: 0.005
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(5 + 7 / 12, "feet"),
  21721. default: true
  21722. },
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21727. {
  21728. front: {
  21729. height: math.unit(5 + 9 / 12, "feet"),
  21730. weight: math.unit(178, "lb"),
  21731. name: "Front",
  21732. image: {
  21733. source: "./media/characters/shin/front.svg",
  21734. extra: 159 / 151,
  21735. bottom: 0.015
  21736. }
  21737. },
  21738. },
  21739. [
  21740. {
  21741. name: "Normal",
  21742. height: math.unit(5 + 9 / 12, "feet"),
  21743. default: true
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21749. {
  21750. front: {
  21751. height: math.unit(5 + 10 / 12, "feet"),
  21752. weight: math.unit(168, "lb"),
  21753. name: "Front",
  21754. image: {
  21755. source: "./media/characters/xerxes/front.svg",
  21756. extra: 282 / 260,
  21757. bottom: 0.045
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(5 + 10 / 12, "feet"),
  21765. default: true
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(6 + 7 / 12, "feet"),
  21774. weight: math.unit(208, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/chaska/front.svg",
  21778. extra: 332 / 319,
  21779. bottom: 0.015
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Normal",
  21786. height: math.unit(6 + 7 / 12, "feet"),
  21787. default: true
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21793. {
  21794. front: {
  21795. height: math.unit(5 + 8 / 12, "feet"),
  21796. weight: math.unit(208, "lb"),
  21797. name: "Front",
  21798. image: {
  21799. source: "./media/characters/enuk/front.svg",
  21800. extra: 437 / 406,
  21801. bottom: 0.02
  21802. }
  21803. },
  21804. },
  21805. [
  21806. {
  21807. name: "Normal",
  21808. height: math.unit(5 + 8 / 12, "feet"),
  21809. default: true
  21810. },
  21811. ]
  21812. ))
  21813. characterMakers.push(() => makeCharacter(
  21814. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21815. {
  21816. front: {
  21817. height: math.unit(5 + 10 / 12, "feet"),
  21818. weight: math.unit(252, "lb"),
  21819. name: "Front",
  21820. image: {
  21821. source: "./media/characters/bruun/front.svg",
  21822. extra: 197 / 187,
  21823. bottom: 0.012
  21824. }
  21825. },
  21826. },
  21827. [
  21828. {
  21829. name: "Normal",
  21830. height: math.unit(5 + 10 / 12, "feet"),
  21831. default: true
  21832. },
  21833. ]
  21834. ))
  21835. characterMakers.push(() => makeCharacter(
  21836. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21837. {
  21838. front: {
  21839. height: math.unit(6 + 10 / 12, "feet"),
  21840. weight: math.unit(255, "lb"),
  21841. name: "Front",
  21842. image: {
  21843. source: "./media/characters/alexeev/front.svg",
  21844. extra: 213 / 200,
  21845. bottom: 0.05
  21846. }
  21847. },
  21848. },
  21849. [
  21850. {
  21851. name: "Normal",
  21852. height: math.unit(6 + 10 / 12, "feet"),
  21853. default: true
  21854. },
  21855. ]
  21856. ))
  21857. characterMakers.push(() => makeCharacter(
  21858. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21859. {
  21860. front: {
  21861. height: math.unit(2 + 8 / 12, "feet"),
  21862. weight: math.unit(22, "lb"),
  21863. name: "Front",
  21864. image: {
  21865. source: "./media/characters/evelyn/front.svg",
  21866. extra: 208 / 180
  21867. }
  21868. },
  21869. },
  21870. [
  21871. {
  21872. name: "Normal",
  21873. height: math.unit(2 + 8 / 12, "feet"),
  21874. default: true
  21875. },
  21876. ]
  21877. ))
  21878. characterMakers.push(() => makeCharacter(
  21879. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21880. {
  21881. front: {
  21882. height: math.unit(5 + 9 / 12, "feet"),
  21883. weight: math.unit(139, "lb"),
  21884. name: "Front",
  21885. image: {
  21886. source: "./media/characters/inca/front.svg",
  21887. extra: 294 / 291,
  21888. bottom: 0.03
  21889. }
  21890. },
  21891. },
  21892. [
  21893. {
  21894. name: "Normal",
  21895. height: math.unit(5 + 9 / 12, "feet"),
  21896. default: true
  21897. },
  21898. ]
  21899. ))
  21900. characterMakers.push(() => makeCharacter(
  21901. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21902. {
  21903. front: {
  21904. height: math.unit(6 + 3 / 12, "feet"),
  21905. weight: math.unit(185, "lb"),
  21906. name: "Front",
  21907. image: {
  21908. source: "./media/characters/mera/front.svg",
  21909. extra: 291 / 277,
  21910. bottom: 0.03
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Normal",
  21917. height: math.unit(6 + 3 / 12, "feet"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21924. {
  21925. front: {
  21926. height: math.unit(6 + 7 / 12, "feet"),
  21927. weight: math.unit(160, "lb"),
  21928. name: "Front",
  21929. image: {
  21930. source: "./media/characters/ceres/front.svg",
  21931. extra: 1023 / 950,
  21932. bottom: 0.027
  21933. }
  21934. },
  21935. back: {
  21936. height: math.unit(6 + 7 / 12, "feet"),
  21937. weight: math.unit(160, "lb"),
  21938. name: "Back",
  21939. image: {
  21940. source: "./media/characters/ceres/back.svg",
  21941. extra: 1023 / 950
  21942. }
  21943. },
  21944. },
  21945. [
  21946. {
  21947. name: "Normal",
  21948. height: math.unit(6 + 7 / 12, "feet"),
  21949. default: true
  21950. },
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21955. {
  21956. front: {
  21957. height: math.unit(5 + 10 / 12, "feet"),
  21958. weight: math.unit(150, "lb"),
  21959. name: "Front",
  21960. image: {
  21961. source: "./media/characters/kris/front.svg",
  21962. extra: 885 / 803,
  21963. bottom: 0.03
  21964. }
  21965. },
  21966. },
  21967. [
  21968. {
  21969. name: "Normal",
  21970. height: math.unit(5 + 10 / 12, "feet"),
  21971. default: true
  21972. },
  21973. ]
  21974. ))
  21975. characterMakers.push(() => makeCharacter(
  21976. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21977. {
  21978. dragon_front: {
  21979. height: math.unit(5, "feet"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/taluthus/dragon-front.svg",
  21983. extra: 1203/1098,
  21984. bottom: 46/1249
  21985. },
  21986. form: "dragon",
  21987. default: true
  21988. },
  21989. dragon_maw: {
  21990. height: math.unit(2.35, "feet"),
  21991. name: "Maw",
  21992. image: {
  21993. source: "./media/characters/taluthus/dragon-maw.svg"
  21994. },
  21995. form: "dragon",
  21996. },
  21997. kitsune_front: {
  21998. height: math.unit(7, "feet"),
  21999. name: "Front",
  22000. image: {
  22001. source: "./media/characters/taluthus/kitsune-front.svg",
  22002. extra: 900/841,
  22003. bottom: 65/965
  22004. },
  22005. form: "kitsune",
  22006. default: true
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Normal",
  22012. height: math.unit(5, "feet"),
  22013. form: "dragon",
  22014. default: true,
  22015. },
  22016. {
  22017. name: "Normal",
  22018. height: math.unit(7, "feet"),
  22019. form: "kitsune",
  22020. default: true
  22021. },
  22022. {
  22023. name: "Macro",
  22024. height: math.unit(300, "feet"),
  22025. allForms: true
  22026. },
  22027. ],
  22028. {
  22029. "dragon": {
  22030. name: "Dragon",
  22031. default: true
  22032. },
  22033. "kitsune": {
  22034. name: "Kitsune",
  22035. },
  22036. }
  22037. ))
  22038. characterMakers.push(() => makeCharacter(
  22039. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22040. {
  22041. front: {
  22042. height: math.unit(5 + 9 / 12, "feet"),
  22043. weight: math.unit(145, "lb"),
  22044. name: "Front",
  22045. image: {
  22046. source: "./media/characters/dawn/front.svg",
  22047. extra: 2094 / 2016,
  22048. bottom: 0.025
  22049. }
  22050. },
  22051. back: {
  22052. height: math.unit(5 + 9 / 12, "feet"),
  22053. weight: math.unit(160, "lb"),
  22054. name: "Back",
  22055. image: {
  22056. source: "./media/characters/dawn/back.svg",
  22057. extra: 2112 / 2080,
  22058. bottom: 0.005
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Normal",
  22065. height: math.unit(6 + 7 / 12, "feet"),
  22066. default: true
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22072. {
  22073. anthro: {
  22074. height: math.unit(8 + 3 / 12, "feet"),
  22075. weight: math.unit(450, "lb"),
  22076. name: "Anthro",
  22077. image: {
  22078. source: "./media/characters/arador/anthro.svg",
  22079. extra: 1835 / 1718,
  22080. bottom: 0.025
  22081. }
  22082. },
  22083. feral: {
  22084. height: math.unit(4, "feet"),
  22085. weight: math.unit(200, "lb"),
  22086. name: "Feral",
  22087. image: {
  22088. source: "./media/characters/arador/feral.svg",
  22089. extra: 1683 / 1514,
  22090. bottom: 0.07
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(8 + 3 / 12, "feet")
  22098. },
  22099. {
  22100. name: "Macro",
  22101. height: math.unit(82.5, "feet"),
  22102. default: true
  22103. },
  22104. ]
  22105. ))
  22106. characterMakers.push(() => makeCharacter(
  22107. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22108. {
  22109. front: {
  22110. height: math.unit(5 + 10 / 12, "feet"),
  22111. weight: math.unit(125, "lb"),
  22112. name: "Front",
  22113. image: {
  22114. source: "./media/characters/dharsi/front.svg",
  22115. extra: 716 / 630,
  22116. bottom: 0.035
  22117. }
  22118. },
  22119. },
  22120. [
  22121. {
  22122. name: "Nano",
  22123. height: math.unit(100, "nm")
  22124. },
  22125. {
  22126. name: "Micro",
  22127. height: math.unit(2, "inches")
  22128. },
  22129. {
  22130. name: "Normal",
  22131. height: math.unit(5 + 10 / 12, "feet"),
  22132. default: true
  22133. },
  22134. {
  22135. name: "Macro",
  22136. height: math.unit(1000, "feet")
  22137. },
  22138. {
  22139. name: "Megamacro",
  22140. height: math.unit(10, "miles")
  22141. },
  22142. {
  22143. name: "Gigamacro",
  22144. height: math.unit(3000, "miles")
  22145. },
  22146. {
  22147. name: "Teramacro",
  22148. height: math.unit(500000, "miles")
  22149. },
  22150. {
  22151. name: "Teramacro+",
  22152. height: math.unit(30, "galaxies")
  22153. },
  22154. ]
  22155. ))
  22156. characterMakers.push(() => makeCharacter(
  22157. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22158. {
  22159. front: {
  22160. height: math.unit(6, "feet"),
  22161. weight: math.unit(150, "lb"),
  22162. name: "Front",
  22163. image: {
  22164. source: "./media/characters/deathy/front.svg",
  22165. extra: 1552 / 1463,
  22166. bottom: 0.025
  22167. }
  22168. },
  22169. side: {
  22170. height: math.unit(6, "feet"),
  22171. weight: math.unit(150, "lb"),
  22172. name: "Side",
  22173. image: {
  22174. source: "./media/characters/deathy/side.svg",
  22175. extra: 1604 / 1455,
  22176. bottom: 0.025
  22177. }
  22178. },
  22179. back: {
  22180. height: math.unit(6, "feet"),
  22181. weight: math.unit(150, "lb"),
  22182. name: "Back",
  22183. image: {
  22184. source: "./media/characters/deathy/back.svg",
  22185. extra: 1580 / 1463,
  22186. bottom: 0.005
  22187. }
  22188. },
  22189. },
  22190. [
  22191. {
  22192. name: "Micro",
  22193. height: math.unit(5, "millimeters")
  22194. },
  22195. {
  22196. name: "Normal",
  22197. height: math.unit(6 + 5 / 12, "feet"),
  22198. default: true
  22199. },
  22200. ]
  22201. ))
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22204. {
  22205. front: {
  22206. height: math.unit(16, "feet"),
  22207. weight: math.unit(4000, "lb"),
  22208. name: "Front",
  22209. image: {
  22210. source: "./media/characters/juniper/front.svg",
  22211. bottom: 0.04
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(16, "feet"),
  22219. default: true
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22225. {
  22226. front: {
  22227. height: math.unit(6, "feet"),
  22228. weight: math.unit(150, "lb"),
  22229. name: "Front",
  22230. image: {
  22231. source: "./media/characters/hipster/front.svg",
  22232. extra: 1312 / 1209,
  22233. bottom: 0.025
  22234. }
  22235. },
  22236. back: {
  22237. height: math.unit(6, "feet"),
  22238. weight: math.unit(150, "lb"),
  22239. name: "Back",
  22240. image: {
  22241. source: "./media/characters/hipster/back.svg",
  22242. extra: 1281 / 1196,
  22243. bottom: 0.01
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Micro",
  22250. height: math.unit(1, "mm")
  22251. },
  22252. {
  22253. name: "Normal",
  22254. height: math.unit(4, "inches"),
  22255. default: true
  22256. },
  22257. {
  22258. name: "Macro",
  22259. height: math.unit(500, "feet")
  22260. },
  22261. {
  22262. name: "Megamacro",
  22263. height: math.unit(1000, "miles")
  22264. },
  22265. ]
  22266. ))
  22267. characterMakers.push(() => makeCharacter(
  22268. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22269. {
  22270. front: {
  22271. height: math.unit(6, "feet"),
  22272. weight: math.unit(150, "lb"),
  22273. name: "Front",
  22274. image: {
  22275. source: "./media/characters/tendirmuldr/front.svg",
  22276. extra: 1878 / 1772,
  22277. bottom: 0.015
  22278. }
  22279. },
  22280. },
  22281. [
  22282. {
  22283. name: "Megamacro",
  22284. height: math.unit(1500, "miles"),
  22285. default: true
  22286. },
  22287. ]
  22288. ))
  22289. characterMakers.push(() => makeCharacter(
  22290. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22291. {
  22292. front: {
  22293. height: math.unit(14, "feet"),
  22294. weight: math.unit(12000, "lb"),
  22295. name: "Front",
  22296. image: {
  22297. source: "./media/characters/mort/front.svg",
  22298. extra: 365 / 318,
  22299. bottom: 0.01
  22300. }
  22301. },
  22302. side: {
  22303. height: math.unit(14, "feet"),
  22304. weight: math.unit(12000, "lb"),
  22305. name: "Side",
  22306. image: {
  22307. source: "./media/characters/mort/side.svg",
  22308. extra: 365 / 318,
  22309. bottom: 0.052
  22310. },
  22311. default: true
  22312. },
  22313. back: {
  22314. height: math.unit(14, "feet"),
  22315. weight: math.unit(12000, "lb"),
  22316. name: "Back",
  22317. image: {
  22318. source: "./media/characters/mort/back.svg",
  22319. extra: 371 / 332,
  22320. bottom: 0.18
  22321. }
  22322. },
  22323. },
  22324. [
  22325. {
  22326. name: "Normal",
  22327. height: math.unit(14, "feet"),
  22328. default: true
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22334. {
  22335. front: {
  22336. height: math.unit(8, "feet"),
  22337. weight: math.unit(1, "ton"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/lycoa/front.svg",
  22341. extra: 1836/1728,
  22342. bottom: 81/1917
  22343. }
  22344. },
  22345. back: {
  22346. height: math.unit(8, "feet"),
  22347. weight: math.unit(1, "ton"),
  22348. name: "Back",
  22349. image: {
  22350. source: "./media/characters/lycoa/back.svg",
  22351. extra: 1785/1720,
  22352. bottom: 91/1876
  22353. }
  22354. },
  22355. head: {
  22356. height: math.unit(1.6243, "feet"),
  22357. name: "Head",
  22358. image: {
  22359. source: "./media/characters/lycoa/head.svg",
  22360. extra: 1011/782,
  22361. bottom: 0/1011
  22362. }
  22363. },
  22364. tailmaw: {
  22365. height: math.unit(1.9, "feet"),
  22366. name: "Tailmaw",
  22367. image: {
  22368. source: "./media/characters/lycoa/tailmaw.svg"
  22369. }
  22370. },
  22371. tentacles: {
  22372. height: math.unit(2.1, "feet"),
  22373. name: "Tentacles",
  22374. image: {
  22375. source: "./media/characters/lycoa/tentacles.svg"
  22376. }
  22377. },
  22378. dick: {
  22379. height: math.unit(1.73, "feet"),
  22380. name: "Dick",
  22381. image: {
  22382. source: "./media/characters/lycoa/dick.svg"
  22383. }
  22384. },
  22385. },
  22386. [
  22387. {
  22388. name: "Normal",
  22389. height: math.unit(8, "feet"),
  22390. default: true
  22391. },
  22392. {
  22393. name: "Macro",
  22394. height: math.unit(30, "feet")
  22395. },
  22396. ]
  22397. ))
  22398. characterMakers.push(() => makeCharacter(
  22399. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22400. {
  22401. front: {
  22402. height: math.unit(4 + 2 / 12, "feet"),
  22403. weight: math.unit(70, "lb"),
  22404. name: "Front",
  22405. image: {
  22406. source: "./media/characters/naldara/front.svg",
  22407. extra: 1664/1387,
  22408. bottom: 81/1745
  22409. },
  22410. form: "anthro",
  22411. default: true
  22412. },
  22413. naga: {
  22414. height: math.unit(20, "feet"),
  22415. weight: math.unit(15000, "kg"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/naldara/naga.svg",
  22419. extra: 1590/1396,
  22420. bottom: 285/1875
  22421. },
  22422. form: "naga",
  22423. default: true
  22424. },
  22425. },
  22426. [
  22427. {
  22428. name: "Normal",
  22429. height: math.unit(4 + 2 / 12, "feet"),
  22430. form: "anthro",
  22431. default: true
  22432. },
  22433. {
  22434. name: "Normal",
  22435. height: math.unit(20, "feet"),
  22436. form: "naga",
  22437. default: true
  22438. },
  22439. ],
  22440. {
  22441. "anthro": {
  22442. name: "Anthro",
  22443. default: true
  22444. },
  22445. "naga": {
  22446. name: "Naga"
  22447. }
  22448. }
  22449. ))
  22450. characterMakers.push(() => makeCharacter(
  22451. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22452. {
  22453. front: {
  22454. height: math.unit(13 + 7 / 12, "feet"),
  22455. weight: math.unit(1500, "lb"),
  22456. name: "Front",
  22457. image: {
  22458. source: "./media/characters/briar/front.svg",
  22459. extra: 1223/1157,
  22460. bottom: 123/1346
  22461. }
  22462. },
  22463. },
  22464. [
  22465. {
  22466. name: "Normal",
  22467. height: math.unit(13 + 7 / 12, "feet"),
  22468. default: true
  22469. },
  22470. ]
  22471. ))
  22472. characterMakers.push(() => makeCharacter(
  22473. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22474. {
  22475. side: {
  22476. height: math.unit(16, "feet"),
  22477. weight: math.unit(500, "lb"),
  22478. name: "Side",
  22479. image: {
  22480. source: "./media/characters/vanguard/side.svg",
  22481. extra: 1022/914,
  22482. bottom: 30/1052
  22483. }
  22484. },
  22485. sideAlt: {
  22486. height: math.unit(10, "feet"),
  22487. weight: math.unit(500, "lb"),
  22488. name: "Side (Alt)",
  22489. image: {
  22490. source: "./media/characters/vanguard/side-alt.svg",
  22491. extra: 502 / 425,
  22492. bottom: 0.087
  22493. }
  22494. },
  22495. },
  22496. [
  22497. {
  22498. name: "Normal",
  22499. height: math.unit(17.71, "feet"),
  22500. default: true
  22501. },
  22502. ]
  22503. ))
  22504. characterMakers.push(() => makeCharacter(
  22505. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22506. {
  22507. front: {
  22508. height: math.unit(7.5, "feet"),
  22509. weight: math.unit(2, "lb"),
  22510. name: "Front",
  22511. image: {
  22512. source: "./media/characters/artemis/work-safe-front.svg",
  22513. extra: 1192 / 1075,
  22514. bottom: 0.07
  22515. },
  22516. form: "work-safe",
  22517. default: true
  22518. },
  22519. frontNsfw: {
  22520. height: math.unit(7.5, "feet"),
  22521. weight: math.unit(2, "lb"),
  22522. name: "Front",
  22523. image: {
  22524. source: "./media/characters/artemis/calibrating-front.svg",
  22525. extra: 1192 / 1075,
  22526. bottom: 0.07
  22527. },
  22528. form: "calibrating",
  22529. default: true
  22530. },
  22531. frontNsfwer: {
  22532. height: math.unit(7.5, "feet"),
  22533. weight: math.unit(2, "lb"),
  22534. name: "Front",
  22535. image: {
  22536. source: "./media/characters/artemis/oversize-load-front.svg",
  22537. extra: 1192 / 1075,
  22538. bottom: 0.07
  22539. },
  22540. form: "oversize-load",
  22541. default: true
  22542. },
  22543. side: {
  22544. height: math.unit(7.5, "feet"),
  22545. weight: math.unit(2, "lb"),
  22546. name: "Side",
  22547. image: {
  22548. source: "./media/characters/artemis/work-safe-side.svg",
  22549. extra: 1192 / 1075,
  22550. bottom: 0.07
  22551. },
  22552. form: "work-safe"
  22553. },
  22554. sideNsfw: {
  22555. height: math.unit(7.5, "feet"),
  22556. weight: math.unit(2, "lb"),
  22557. name: "Side",
  22558. image: {
  22559. source: "./media/characters/artemis/calibrating-side.svg",
  22560. extra: 1192 / 1075,
  22561. bottom: 0.07
  22562. },
  22563. form: "calibrating"
  22564. },
  22565. sideNsfwer: {
  22566. height: math.unit(7.5, "feet"),
  22567. weight: math.unit(2, "lb"),
  22568. name: "Side",
  22569. image: {
  22570. source: "./media/characters/artemis/oversize-load-side.svg",
  22571. extra: 1192 / 1075,
  22572. bottom: 0.07
  22573. },
  22574. form: "oversize-load"
  22575. },
  22576. maw: {
  22577. height: math.unit(1.1, "feet"),
  22578. name: "Maw",
  22579. image: {
  22580. source: "./media/characters/artemis/maw.svg"
  22581. },
  22582. form: "work-safe"
  22583. },
  22584. stomach: {
  22585. height: math.unit(0.95, "feet"),
  22586. name: "Stomach",
  22587. image: {
  22588. source: "./media/characters/artemis/stomach.svg"
  22589. },
  22590. form: "work-safe"
  22591. },
  22592. dickCanine: {
  22593. height: math.unit(1, "feet"),
  22594. name: "Dick (Canine)",
  22595. image: {
  22596. source: "./media/characters/artemis/dick-canine.svg"
  22597. },
  22598. form: "calibrating"
  22599. },
  22600. dickEquine: {
  22601. height: math.unit(0.85, "feet"),
  22602. name: "Dick (Equine)",
  22603. image: {
  22604. source: "./media/characters/artemis/dick-equine.svg"
  22605. },
  22606. form: "calibrating"
  22607. },
  22608. dickExotic: {
  22609. height: math.unit(0.85, "feet"),
  22610. name: "Dick (Exotic)",
  22611. image: {
  22612. source: "./media/characters/artemis/dick-exotic.svg"
  22613. },
  22614. form: "calibrating"
  22615. },
  22616. dickCanineBigger: {
  22617. height: math.unit(1 * 1.33, "feet"),
  22618. name: "Dick (Canine)",
  22619. image: {
  22620. source: "./media/characters/artemis/dick-canine.svg"
  22621. },
  22622. form: "oversize-load"
  22623. },
  22624. dickEquineBigger: {
  22625. height: math.unit(0.85 * 1.33, "feet"),
  22626. name: "Dick (Equine)",
  22627. image: {
  22628. source: "./media/characters/artemis/dick-equine.svg"
  22629. },
  22630. form: "oversize-load"
  22631. },
  22632. dickExoticBigger: {
  22633. height: math.unit(0.85 * 1.33, "feet"),
  22634. name: "Dick (Exotic)",
  22635. image: {
  22636. source: "./media/characters/artemis/dick-exotic.svg"
  22637. },
  22638. form: "oversize-load"
  22639. },
  22640. },
  22641. [
  22642. {
  22643. name: "Normal",
  22644. height: math.unit(7.5, "feet"),
  22645. form: "work-safe",
  22646. default: true
  22647. },
  22648. {
  22649. name: "Normal",
  22650. height: math.unit(7.5, "feet"),
  22651. form: "calibrating",
  22652. default: true
  22653. },
  22654. {
  22655. name: "Normal",
  22656. height: math.unit(7.5, "feet"),
  22657. form: "oversize-load",
  22658. default: true
  22659. },
  22660. {
  22661. name: "Enlarged",
  22662. height: math.unit(12, "feet"),
  22663. form: "work-safe",
  22664. },
  22665. {
  22666. name: "Enlarged",
  22667. height: math.unit(12, "feet"),
  22668. form: "calibrating",
  22669. },
  22670. {
  22671. name: "Enlarged",
  22672. height: math.unit(12, "feet"),
  22673. form: "oversize-load",
  22674. },
  22675. ],
  22676. {
  22677. "work-safe": {
  22678. name: "Work-Safe",
  22679. default: true
  22680. },
  22681. "calibrating": {
  22682. name: "Calibrating"
  22683. },
  22684. "oversize-load": {
  22685. name: "Oversize Load"
  22686. }
  22687. }
  22688. ))
  22689. characterMakers.push(() => makeCharacter(
  22690. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22691. {
  22692. front: {
  22693. height: math.unit(5 + 3 / 12, "feet"),
  22694. weight: math.unit(160, "lb"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/kira/front.svg",
  22698. extra: 906 / 786,
  22699. bottom: 0.01
  22700. }
  22701. },
  22702. back: {
  22703. height: math.unit(5 + 3 / 12, "feet"),
  22704. weight: math.unit(160, "lb"),
  22705. name: "Back",
  22706. image: {
  22707. source: "./media/characters/kira/back.svg",
  22708. extra: 882 / 757,
  22709. bottom: 0.005
  22710. }
  22711. },
  22712. frontDressed: {
  22713. height: math.unit(5 + 3 / 12, "feet"),
  22714. weight: math.unit(160, "lb"),
  22715. name: "Front (Dressed)",
  22716. image: {
  22717. source: "./media/characters/kira/front-dressed.svg",
  22718. extra: 906 / 786,
  22719. bottom: 0.01
  22720. }
  22721. },
  22722. beans: {
  22723. height: math.unit(0.92, "feet"),
  22724. name: "Beans",
  22725. image: {
  22726. source: "./media/characters/kira/beans.svg"
  22727. }
  22728. },
  22729. },
  22730. [
  22731. {
  22732. name: "Normal",
  22733. height: math.unit(5 + 3 / 12, "feet"),
  22734. default: true
  22735. },
  22736. ]
  22737. ))
  22738. characterMakers.push(() => makeCharacter(
  22739. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22740. {
  22741. front: {
  22742. height: math.unit(5 + 4 / 12, "feet"),
  22743. weight: math.unit(145, "lb"),
  22744. name: "Front",
  22745. image: {
  22746. source: "./media/characters/scramble/front.svg",
  22747. extra: 763 / 727,
  22748. bottom: 0.05
  22749. }
  22750. },
  22751. back: {
  22752. height: math.unit(5 + 4 / 12, "feet"),
  22753. weight: math.unit(145, "lb"),
  22754. name: "Back",
  22755. image: {
  22756. source: "./media/characters/scramble/back.svg",
  22757. extra: 826 / 737,
  22758. bottom: 0.002
  22759. }
  22760. },
  22761. },
  22762. [
  22763. {
  22764. name: "Normal",
  22765. height: math.unit(5 + 4 / 12, "feet"),
  22766. default: true
  22767. },
  22768. ]
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22772. {
  22773. side: {
  22774. height: math.unit(6 + 2 / 12, "feet"),
  22775. weight: math.unit(190, "lb"),
  22776. name: "Side",
  22777. image: {
  22778. source: "./media/characters/biscuit/side.svg",
  22779. extra: 858 / 791,
  22780. bottom: 0.044
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Normal",
  22787. height: math.unit(6 + 2 / 12, "feet"),
  22788. default: true
  22789. },
  22790. ]
  22791. ))
  22792. characterMakers.push(() => makeCharacter(
  22793. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22794. {
  22795. front: {
  22796. height: math.unit(5 + 2 / 12, "feet"),
  22797. weight: math.unit(120, "lb"),
  22798. name: "Front",
  22799. image: {
  22800. source: "./media/characters/poffin/front.svg",
  22801. extra: 786 / 680,
  22802. bottom: 0.005
  22803. }
  22804. },
  22805. },
  22806. [
  22807. {
  22808. name: "Normal",
  22809. height: math.unit(5 + 2 / 12, "feet"),
  22810. default: true
  22811. },
  22812. ]
  22813. ))
  22814. characterMakers.push(() => makeCharacter(
  22815. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22816. {
  22817. front: {
  22818. height: math.unit(6 + 3 / 12, "feet"),
  22819. weight: math.unit(519, "lb"),
  22820. name: "Front",
  22821. image: {
  22822. source: "./media/characters/dhari/front.svg",
  22823. extra: 1048 / 946,
  22824. bottom: 0.015
  22825. }
  22826. },
  22827. back: {
  22828. height: math.unit(6 + 3 / 12, "feet"),
  22829. weight: math.unit(519, "lb"),
  22830. name: "Back",
  22831. image: {
  22832. source: "./media/characters/dhari/back.svg",
  22833. extra: 1048 / 931,
  22834. bottom: 0.005
  22835. }
  22836. },
  22837. frontDressed: {
  22838. height: math.unit(6 + 3 / 12, "feet"),
  22839. weight: math.unit(519, "lb"),
  22840. name: "Front (Dressed)",
  22841. image: {
  22842. source: "./media/characters/dhari/front-dressed.svg",
  22843. extra: 1713 / 1546,
  22844. bottom: 0.02
  22845. }
  22846. },
  22847. backDressed: {
  22848. height: math.unit(6 + 3 / 12, "feet"),
  22849. weight: math.unit(519, "lb"),
  22850. name: "Back (Dressed)",
  22851. image: {
  22852. source: "./media/characters/dhari/back-dressed.svg",
  22853. extra: 1699 / 1537,
  22854. bottom: 0.01
  22855. }
  22856. },
  22857. maw: {
  22858. height: math.unit(0.95, "feet"),
  22859. name: "Maw",
  22860. image: {
  22861. source: "./media/characters/dhari/maw.svg"
  22862. }
  22863. },
  22864. wereFront: {
  22865. height: math.unit(12 + 8 / 12, "feet"),
  22866. weight: math.unit(4000, "lb"),
  22867. name: "Front (Were)",
  22868. image: {
  22869. source: "./media/characters/dhari/were-front.svg",
  22870. extra: 1065 / 969,
  22871. bottom: 0.015
  22872. }
  22873. },
  22874. wereBack: {
  22875. height: math.unit(12 + 8 / 12, "feet"),
  22876. weight: math.unit(4000, "lb"),
  22877. name: "Back (Were)",
  22878. image: {
  22879. source: "./media/characters/dhari/were-back.svg",
  22880. extra: 1065 / 969,
  22881. bottom: 0.012
  22882. }
  22883. },
  22884. wereMaw: {
  22885. height: math.unit(0.625, "meters"),
  22886. name: "Maw (Were)",
  22887. image: {
  22888. source: "./media/characters/dhari/were-maw.svg"
  22889. }
  22890. },
  22891. },
  22892. [
  22893. {
  22894. name: "Normal",
  22895. height: math.unit(6 + 3 / 12, "feet"),
  22896. default: true
  22897. },
  22898. ]
  22899. ))
  22900. characterMakers.push(() => makeCharacter(
  22901. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22902. {
  22903. anthro: {
  22904. height: math.unit(5 + 7 / 12, "feet"),
  22905. weight: math.unit(175, "lb"),
  22906. name: "Anthro",
  22907. image: {
  22908. source: "./media/characters/rena-dyne/anthro.svg",
  22909. extra: 1849 / 1785,
  22910. bottom: 0.005
  22911. }
  22912. },
  22913. taur: {
  22914. height: math.unit(15 + 6 / 12, "feet"),
  22915. weight: math.unit(8000, "lb"),
  22916. name: "Taur",
  22917. image: {
  22918. source: "./media/characters/rena-dyne/taur.svg",
  22919. extra: 2315 / 2234,
  22920. bottom: 0.033
  22921. }
  22922. },
  22923. },
  22924. [
  22925. {
  22926. name: "Normal",
  22927. height: math.unit(5 + 7 / 12, "feet"),
  22928. default: true
  22929. },
  22930. ]
  22931. ))
  22932. characterMakers.push(() => makeCharacter(
  22933. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22934. {
  22935. front: {
  22936. height: math.unit(8, "feet"),
  22937. weight: math.unit(600, "lb"),
  22938. name: "Front",
  22939. image: {
  22940. source: "./media/characters/weremeep/front.svg",
  22941. extra: 970/849,
  22942. bottom: 7/977
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Normal",
  22949. height: math.unit(8, "feet"),
  22950. default: true
  22951. },
  22952. {
  22953. name: "Lorg",
  22954. height: math.unit(12, "feet")
  22955. },
  22956. {
  22957. name: "Oh Lawd She Comin'",
  22958. height: math.unit(20, "feet")
  22959. },
  22960. ]
  22961. ))
  22962. characterMakers.push(() => makeCharacter(
  22963. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22964. {
  22965. front: {
  22966. height: math.unit(4, "feet"),
  22967. weight: math.unit(90, "lb"),
  22968. name: "Front",
  22969. image: {
  22970. source: "./media/characters/reza/front.svg",
  22971. extra: 1183 / 1111,
  22972. bottom: 0.017
  22973. }
  22974. },
  22975. back: {
  22976. height: math.unit(4, "feet"),
  22977. weight: math.unit(90, "lb"),
  22978. name: "Back",
  22979. image: {
  22980. source: "./media/characters/reza/back.svg",
  22981. extra: 1183 / 1111,
  22982. bottom: 0.01
  22983. }
  22984. },
  22985. drake: {
  22986. height: math.unit(30, "feet"),
  22987. weight: math.unit(246960, "lb"),
  22988. name: "Drake",
  22989. image: {
  22990. source: "./media/characters/reza/drake.svg",
  22991. extra: 2350 / 2024,
  22992. bottom: 60.7 / 2403
  22993. }
  22994. },
  22995. },
  22996. [
  22997. {
  22998. name: "Normal",
  22999. height: math.unit(4, "feet"),
  23000. default: true
  23001. },
  23002. ]
  23003. ))
  23004. characterMakers.push(() => makeCharacter(
  23005. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23006. {
  23007. side: {
  23008. height: math.unit(15, "feet"),
  23009. weight: math.unit(14, "tons"),
  23010. name: "Side",
  23011. image: {
  23012. source: "./media/characters/athea/side.svg",
  23013. extra: 960 / 540,
  23014. bottom: 0.003
  23015. }
  23016. },
  23017. sitting: {
  23018. height: math.unit(6 * 2.85, "feet"),
  23019. weight: math.unit(14, "tons"),
  23020. name: "Sitting",
  23021. image: {
  23022. source: "./media/characters/athea/sitting.svg",
  23023. extra: 621 / 581,
  23024. bottom: 0.075
  23025. }
  23026. },
  23027. maw: {
  23028. height: math.unit(7.59498031496063, "feet"),
  23029. name: "Maw",
  23030. image: {
  23031. source: "./media/characters/athea/maw.svg"
  23032. }
  23033. },
  23034. },
  23035. [
  23036. {
  23037. name: "Lap Cat",
  23038. height: math.unit(2.5, "feet")
  23039. },
  23040. {
  23041. name: "Minimacro",
  23042. height: math.unit(15, "feet"),
  23043. default: true
  23044. },
  23045. {
  23046. name: "Macro",
  23047. height: math.unit(120, "feet")
  23048. },
  23049. {
  23050. name: "Macro+",
  23051. height: math.unit(640, "feet")
  23052. },
  23053. {
  23054. name: "Colossus",
  23055. height: math.unit(2.2, "miles")
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(8 + 8 / 12, "feet"),
  23064. weight: math.unit(130, "kg"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/seroko/front.svg",
  23068. extra: 1385 / 1280,
  23069. bottom: 0.025
  23070. }
  23071. },
  23072. back: {
  23073. height: math.unit(8 + 8 / 12, "feet"),
  23074. weight: math.unit(130, "kg"),
  23075. name: "Back",
  23076. image: {
  23077. source: "./media/characters/seroko/back.svg",
  23078. extra: 1369 / 1238,
  23079. bottom: 0.018
  23080. }
  23081. },
  23082. frontDressed: {
  23083. height: math.unit(8 + 8 / 12, "feet"),
  23084. weight: math.unit(130, "kg"),
  23085. name: "Front (Dressed)",
  23086. image: {
  23087. source: "./media/characters/seroko/front-dressed.svg",
  23088. extra: 1366 / 1275,
  23089. bottom: 0.03
  23090. }
  23091. },
  23092. },
  23093. [
  23094. {
  23095. name: "Normal",
  23096. height: math.unit(8 + 8 / 12, "feet"),
  23097. default: true
  23098. },
  23099. ]
  23100. ))
  23101. characterMakers.push(() => makeCharacter(
  23102. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23103. {
  23104. front: {
  23105. height: math.unit(5.5, "feet"),
  23106. weight: math.unit(160, "lb"),
  23107. name: "Front",
  23108. image: {
  23109. source: "./media/characters/quatzi/front.svg",
  23110. extra: 2346 / 2242,
  23111. bottom: 0.015
  23112. }
  23113. },
  23114. },
  23115. [
  23116. {
  23117. name: "Normal",
  23118. height: math.unit(5.5, "feet"),
  23119. default: true
  23120. },
  23121. {
  23122. name: "Big",
  23123. height: math.unit(7.7, "feet")
  23124. },
  23125. ]
  23126. ))
  23127. characterMakers.push(() => makeCharacter(
  23128. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23129. {
  23130. front: {
  23131. height: math.unit(5 + 11 / 12, "feet"),
  23132. weight: math.unit(180, "lb"),
  23133. name: "Front",
  23134. image: {
  23135. source: "./media/characters/sen/front.svg",
  23136. extra: 1321 / 1254,
  23137. bottom: 0.015
  23138. }
  23139. },
  23140. side: {
  23141. height: math.unit(5 + 11 / 12, "feet"),
  23142. weight: math.unit(180, "lb"),
  23143. name: "Side",
  23144. image: {
  23145. source: "./media/characters/sen/side.svg",
  23146. extra: 1321 / 1254,
  23147. bottom: 0.007
  23148. }
  23149. },
  23150. back: {
  23151. height: math.unit(5 + 11 / 12, "feet"),
  23152. weight: math.unit(180, "lb"),
  23153. name: "Back",
  23154. image: {
  23155. source: "./media/characters/sen/back.svg",
  23156. extra: 1321 / 1254
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Normal",
  23163. height: math.unit(5 + 11 / 12, "feet"),
  23164. default: true
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23170. {
  23171. front: {
  23172. height: math.unit(166.6, "cm"),
  23173. weight: math.unit(66.6, "kg"),
  23174. name: "Front",
  23175. image: {
  23176. source: "./media/characters/fruity/front.svg",
  23177. extra: 1510 / 1386,
  23178. bottom: 0.04
  23179. }
  23180. },
  23181. back: {
  23182. height: math.unit(166.6, "cm"),
  23183. weight: math.unit(66.6, "lb"),
  23184. name: "Back",
  23185. image: {
  23186. source: "./media/characters/fruity/back.svg",
  23187. extra: 1563 / 1435,
  23188. bottom: 0.005
  23189. }
  23190. },
  23191. },
  23192. [
  23193. {
  23194. name: "Normal",
  23195. height: math.unit(166.6, "cm"),
  23196. default: true
  23197. },
  23198. {
  23199. name: "Demonic",
  23200. height: math.unit(166.6, "feet")
  23201. },
  23202. ]
  23203. ))
  23204. characterMakers.push(() => makeCharacter(
  23205. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23206. {
  23207. side: {
  23208. height: math.unit(10, "feet"),
  23209. weight: math.unit(500, "lb"),
  23210. name: "Side",
  23211. image: {
  23212. source: "./media/characters/zost/side.svg",
  23213. extra: 2870/2533,
  23214. bottom: 252/3122
  23215. }
  23216. },
  23217. mawFront: {
  23218. height: math.unit(1.08, "meters"),
  23219. name: "Maw (Front)",
  23220. image: {
  23221. source: "./media/characters/zost/maw-front.svg"
  23222. }
  23223. },
  23224. mawSide: {
  23225. height: math.unit(2.66, "feet"),
  23226. name: "Maw (Side)",
  23227. image: {
  23228. source: "./media/characters/zost/maw-side.svg"
  23229. }
  23230. },
  23231. wingspan: {
  23232. height: math.unit(7.4, "feet"),
  23233. name: "Wingspan",
  23234. image: {
  23235. source: "./media/characters/zost/wingspan.svg"
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Normal",
  23242. height: math.unit(10, "feet"),
  23243. default: true
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23249. {
  23250. front: {
  23251. height: math.unit(5 + 4 / 12, "feet"),
  23252. weight: math.unit(120, "lb"),
  23253. name: "Front",
  23254. image: {
  23255. source: "./media/characters/luci/front.svg",
  23256. extra: 1985 / 1884,
  23257. bottom: 0.04
  23258. }
  23259. },
  23260. back: {
  23261. height: math.unit(5 + 4 / 12, "feet"),
  23262. weight: math.unit(120, "lb"),
  23263. name: "Back",
  23264. image: {
  23265. source: "./media/characters/luci/back.svg",
  23266. extra: 1892 / 1791,
  23267. bottom: 0.002
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Normal",
  23274. height: math.unit(5 + 4 / 12, "feet"),
  23275. default: true
  23276. },
  23277. ]
  23278. ))
  23279. characterMakers.push(() => makeCharacter(
  23280. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23281. {
  23282. front: {
  23283. height: math.unit(1500, "feet"),
  23284. weight: math.unit(3.8e6, "tons"),
  23285. name: "Front",
  23286. image: {
  23287. source: "./media/characters/2th/front.svg",
  23288. extra: 3489 / 3350,
  23289. bottom: 0.1
  23290. }
  23291. },
  23292. foot: {
  23293. height: math.unit(461, "feet"),
  23294. name: "Foot",
  23295. image: {
  23296. source: "./media/characters/2th/foot.svg"
  23297. }
  23298. },
  23299. },
  23300. [
  23301. {
  23302. name: "\"Micro\"",
  23303. height: math.unit(15 + 7 / 12, "feet")
  23304. },
  23305. {
  23306. name: "Normal",
  23307. height: math.unit(1500, "feet"),
  23308. default: true
  23309. },
  23310. {
  23311. name: "Macro",
  23312. height: math.unit(5000, "feet")
  23313. },
  23314. {
  23315. name: "Megamacro",
  23316. height: math.unit(15, "miles")
  23317. },
  23318. {
  23319. name: "Gigamacro",
  23320. height: math.unit(4000, "miles")
  23321. },
  23322. {
  23323. name: "Galactic",
  23324. height: math.unit(50, "AU")
  23325. },
  23326. ]
  23327. ))
  23328. characterMakers.push(() => makeCharacter(
  23329. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23330. {
  23331. front: {
  23332. height: math.unit(5 + 6 / 12, "feet"),
  23333. weight: math.unit(220, "lb"),
  23334. name: "Front",
  23335. image: {
  23336. source: "./media/characters/amethyst/front.svg",
  23337. extra: 2078 / 2040,
  23338. bottom: 0.045
  23339. }
  23340. },
  23341. back: {
  23342. height: math.unit(5 + 6 / 12, "feet"),
  23343. weight: math.unit(220, "lb"),
  23344. name: "Back",
  23345. image: {
  23346. source: "./media/characters/amethyst/back.svg",
  23347. extra: 2021 / 1989,
  23348. bottom: 0.02
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Normal",
  23355. height: math.unit(5 + 6 / 12, "feet"),
  23356. default: true
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23362. {
  23363. front: {
  23364. height: math.unit(4 + 11 / 12, "feet"),
  23365. weight: math.unit(120, "lb"),
  23366. name: "Front",
  23367. image: {
  23368. source: "./media/characters/yumi-akiyama/front.svg",
  23369. extra: 1327 / 1235,
  23370. bottom: 0.02
  23371. }
  23372. },
  23373. back: {
  23374. height: math.unit(4 + 11 / 12, "feet"),
  23375. weight: math.unit(120, "lb"),
  23376. name: "Back",
  23377. image: {
  23378. source: "./media/characters/yumi-akiyama/back.svg",
  23379. extra: 1287 / 1245,
  23380. bottom: 0.002
  23381. }
  23382. },
  23383. },
  23384. [
  23385. {
  23386. name: "Galactic",
  23387. height: math.unit(50, "galaxies"),
  23388. default: true
  23389. },
  23390. {
  23391. name: "Universal",
  23392. height: math.unit(100, "universes")
  23393. },
  23394. ]
  23395. ))
  23396. characterMakers.push(() => makeCharacter(
  23397. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23398. {
  23399. front: {
  23400. height: math.unit(8, "feet"),
  23401. weight: math.unit(500, "lb"),
  23402. name: "Front",
  23403. image: {
  23404. source: "./media/characters/rifter-yrmori/front.svg",
  23405. extra: 1180 / 1125,
  23406. bottom: 0.02
  23407. }
  23408. },
  23409. back: {
  23410. height: math.unit(8, "feet"),
  23411. weight: math.unit(500, "lb"),
  23412. name: "Back",
  23413. image: {
  23414. source: "./media/characters/rifter-yrmori/back.svg",
  23415. extra: 1190 / 1145,
  23416. bottom: 0.001
  23417. }
  23418. },
  23419. wings: {
  23420. height: math.unit(7.75, "feet"),
  23421. weight: math.unit(500, "lb"),
  23422. name: "Wings",
  23423. image: {
  23424. source: "./media/characters/rifter-yrmori/wings.svg",
  23425. extra: 1357 / 1285
  23426. }
  23427. },
  23428. maw: {
  23429. height: math.unit(0.8, "feet"),
  23430. name: "Maw",
  23431. image: {
  23432. source: "./media/characters/rifter-yrmori/maw.svg"
  23433. }
  23434. },
  23435. mawfront: {
  23436. height: math.unit(1.45, "feet"),
  23437. name: "Maw (Front)",
  23438. image: {
  23439. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23440. }
  23441. },
  23442. },
  23443. [
  23444. {
  23445. name: "Normal",
  23446. height: math.unit(8, "feet"),
  23447. default: true
  23448. },
  23449. {
  23450. name: "Macro",
  23451. height: math.unit(42, "meters")
  23452. },
  23453. ]
  23454. ))
  23455. characterMakers.push(() => makeCharacter(
  23456. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23457. {
  23458. were: {
  23459. height: math.unit(25 + 6 / 12, "feet"),
  23460. weight: math.unit(10000, "lb"),
  23461. name: "Were",
  23462. image: {
  23463. source: "./media/characters/tahajin/were.svg",
  23464. extra: 801 / 770,
  23465. bottom: 0.042
  23466. }
  23467. },
  23468. aquatic: {
  23469. height: math.unit(6 + 4 / 12, "feet"),
  23470. weight: math.unit(160, "lb"),
  23471. name: "Aquatic",
  23472. image: {
  23473. source: "./media/characters/tahajin/aquatic.svg",
  23474. extra: 572 / 542,
  23475. bottom: 0.04
  23476. }
  23477. },
  23478. chow: {
  23479. height: math.unit(8 + 11 / 12, "feet"),
  23480. weight: math.unit(450, "lb"),
  23481. name: "Chow",
  23482. image: {
  23483. source: "./media/characters/tahajin/chow.svg",
  23484. extra: 660 / 640,
  23485. bottom: 0.015
  23486. }
  23487. },
  23488. demiNaga: {
  23489. height: math.unit(6 + 8 / 12, "feet"),
  23490. weight: math.unit(300, "lb"),
  23491. name: "Demi Naga",
  23492. image: {
  23493. source: "./media/characters/tahajin/demi-naga.svg",
  23494. extra: 643 / 615,
  23495. bottom: 0.1
  23496. }
  23497. },
  23498. data: {
  23499. height: math.unit(5, "inches"),
  23500. weight: math.unit(0.1, "lb"),
  23501. name: "Data",
  23502. image: {
  23503. source: "./media/characters/tahajin/data.svg"
  23504. }
  23505. },
  23506. fluu: {
  23507. height: math.unit(5 + 7 / 12, "feet"),
  23508. weight: math.unit(140, "lb"),
  23509. name: "Fluu",
  23510. image: {
  23511. source: "./media/characters/tahajin/fluu.svg",
  23512. extra: 628 / 592,
  23513. bottom: 0.02
  23514. }
  23515. },
  23516. starWarrior: {
  23517. height: math.unit(4 + 5 / 12, "feet"),
  23518. weight: math.unit(50, "lb"),
  23519. name: "Star Warrior",
  23520. image: {
  23521. source: "./media/characters/tahajin/star-warrior.svg"
  23522. }
  23523. },
  23524. },
  23525. [
  23526. {
  23527. name: "Normal",
  23528. height: math.unit(25 + 6 / 12, "feet"),
  23529. default: true
  23530. },
  23531. ]
  23532. ))
  23533. characterMakers.push(() => makeCharacter(
  23534. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23535. {
  23536. front: {
  23537. height: math.unit(8, "feet"),
  23538. weight: math.unit(350, "lb"),
  23539. name: "Front",
  23540. image: {
  23541. source: "./media/characters/gabira/front.svg",
  23542. extra: 1261/1154,
  23543. bottom: 51/1312
  23544. }
  23545. },
  23546. back: {
  23547. height: math.unit(8, "feet"),
  23548. weight: math.unit(350, "lb"),
  23549. name: "Back",
  23550. image: {
  23551. source: "./media/characters/gabira/back.svg",
  23552. extra: 1265/1163,
  23553. bottom: 46/1311
  23554. }
  23555. },
  23556. head: {
  23557. height: math.unit(2.85, "feet"),
  23558. name: "Head",
  23559. image: {
  23560. source: "./media/characters/gabira/head.svg"
  23561. }
  23562. },
  23563. },
  23564. [
  23565. {
  23566. name: "Normal",
  23567. height: math.unit(8, "feet"),
  23568. default: true
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23574. {
  23575. front: {
  23576. height: math.unit(5 + 3 / 12, "feet"),
  23577. weight: math.unit(137, "lb"),
  23578. name: "Front",
  23579. image: {
  23580. source: "./media/characters/sasha-katraine/front.svg",
  23581. extra: 1745/1694,
  23582. bottom: 37/1782
  23583. }
  23584. },
  23585. back: {
  23586. height: math.unit(5 + 3 / 12, "feet"),
  23587. weight: math.unit(137, "lb"),
  23588. name: "Back",
  23589. image: {
  23590. source: "./media/characters/sasha-katraine/back.svg",
  23591. extra: 1776/1699,
  23592. bottom: 26/1802
  23593. }
  23594. },
  23595. },
  23596. [
  23597. {
  23598. name: "Micro",
  23599. height: math.unit(5, "inches")
  23600. },
  23601. {
  23602. name: "Normal",
  23603. height: math.unit(5 + 3 / 12, "feet"),
  23604. default: true
  23605. },
  23606. ]
  23607. ))
  23608. characterMakers.push(() => makeCharacter(
  23609. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23610. {
  23611. side: {
  23612. height: math.unit(4, "inches"),
  23613. weight: math.unit(200, "grams"),
  23614. name: "Side",
  23615. image: {
  23616. source: "./media/characters/der/side.svg",
  23617. extra: 719 / 400,
  23618. bottom: 30.6 / 749.9187
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Micro",
  23625. height: math.unit(4, "inches"),
  23626. default: true
  23627. },
  23628. ]
  23629. ))
  23630. characterMakers.push(() => makeCharacter(
  23631. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23632. {
  23633. side: {
  23634. height: math.unit(30, "meters"),
  23635. weight: math.unit(700, "tonnes"),
  23636. name: "Side",
  23637. image: {
  23638. source: "./media/characters/fixerdragon/side.svg",
  23639. extra: (1293.0514 - 116.03) / 1106.86,
  23640. bottom: 116.03 / 1293.0514
  23641. }
  23642. },
  23643. },
  23644. [
  23645. {
  23646. name: "Planck",
  23647. height: math.unit(1.6e-35, "meters")
  23648. },
  23649. {
  23650. name: "Micro",
  23651. height: math.unit(0.4, "meters")
  23652. },
  23653. {
  23654. name: "Normal",
  23655. height: math.unit(30, "meters"),
  23656. default: true
  23657. },
  23658. {
  23659. name: "Megamacro",
  23660. height: math.unit(1.2, "megameters")
  23661. },
  23662. {
  23663. name: "Teramacro",
  23664. height: math.unit(130, "terameters")
  23665. },
  23666. {
  23667. name: "Yottamacro",
  23668. height: math.unit(6200, "yottameters")
  23669. },
  23670. ]
  23671. ));
  23672. characterMakers.push(() => makeCharacter(
  23673. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23674. {
  23675. front: {
  23676. height: math.unit(8, "feet"),
  23677. weight: math.unit(250, "lb"),
  23678. name: "Front",
  23679. image: {
  23680. source: "./media/characters/kite/front.svg",
  23681. extra: 2796 / 2659,
  23682. bottom: 0.002
  23683. }
  23684. },
  23685. },
  23686. [
  23687. {
  23688. name: "Normal",
  23689. height: math.unit(8, "feet"),
  23690. default: true
  23691. },
  23692. {
  23693. name: "Macro",
  23694. height: math.unit(360, "feet")
  23695. },
  23696. {
  23697. name: "Megamacro",
  23698. height: math.unit(1500, "feet")
  23699. },
  23700. ]
  23701. ))
  23702. characterMakers.push(() => makeCharacter(
  23703. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23704. {
  23705. front: {
  23706. height: math.unit(5 + 11/12, "feet"),
  23707. weight: math.unit(170, "lb"),
  23708. name: "Front",
  23709. image: {
  23710. source: "./media/characters/poojawa-vynar/front.svg",
  23711. extra: 1735/1585,
  23712. bottom: 96/1831
  23713. }
  23714. },
  23715. back: {
  23716. height: math.unit(5 + 11/12, "feet"),
  23717. weight: math.unit(170, "lb"),
  23718. name: "Back",
  23719. image: {
  23720. source: "./media/characters/poojawa-vynar/back.svg",
  23721. extra: 1749/1607,
  23722. bottom: 28/1777
  23723. }
  23724. },
  23725. male: {
  23726. height: math.unit(5 + 11/12, "feet"),
  23727. weight: math.unit(170, "lb"),
  23728. name: "Male",
  23729. image: {
  23730. source: "./media/characters/poojawa-vynar/male.svg",
  23731. extra: 1855/1713,
  23732. bottom: 63/1918
  23733. }
  23734. },
  23735. taur: {
  23736. height: math.unit(5 + 11/12, "feet"),
  23737. weight: math.unit(170, "lb"),
  23738. name: "Taur",
  23739. image: {
  23740. source: "./media/characters/poojawa-vynar/taur.svg",
  23741. extra: 1151/1059,
  23742. bottom: 356/1507
  23743. }
  23744. },
  23745. frontDressed: {
  23746. height: math.unit(5 + 11/12, "feet"),
  23747. weight: math.unit(170, "lb"),
  23748. name: "Front (Dressed)",
  23749. image: {
  23750. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23751. extra: 1735/1585,
  23752. bottom: 96/1831
  23753. }
  23754. },
  23755. backDressed: {
  23756. height: math.unit(5 + 11/12, "feet"),
  23757. weight: math.unit(170, "lb"),
  23758. name: "Back (Dressed)",
  23759. image: {
  23760. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23761. extra: 1749/1607,
  23762. bottom: 28/1777
  23763. }
  23764. },
  23765. maleDressed: {
  23766. height: math.unit(5 + 11/12, "feet"),
  23767. weight: math.unit(170, "lb"),
  23768. name: "Male (Dressed)",
  23769. image: {
  23770. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23771. extra: 1855/1713,
  23772. bottom: 63/1918
  23773. }
  23774. },
  23775. taurDressed: {
  23776. height: math.unit(5 + 11/12, "feet"),
  23777. weight: math.unit(170, "lb"),
  23778. name: "Taur (Dressed)",
  23779. image: {
  23780. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23781. extra: 1151/1059,
  23782. bottom: 356/1507
  23783. }
  23784. },
  23785. maw: {
  23786. height: math.unit(1.46, "feet"),
  23787. name: "Maw",
  23788. image: {
  23789. source: "./media/characters/poojawa-vynar/maw.svg"
  23790. }
  23791. },
  23792. head: {
  23793. height: math.unit(2.34, "feet"),
  23794. name: "Head",
  23795. image: {
  23796. source: "./media/characters/poojawa-vynar/head.svg"
  23797. }
  23798. },
  23799. paw: {
  23800. height: math.unit(1.61, "feet"),
  23801. name: "Paw",
  23802. image: {
  23803. source: "./media/characters/poojawa-vynar/paw.svg"
  23804. }
  23805. },
  23806. pawToering: {
  23807. height: math.unit(1.72, "feet"),
  23808. name: "Paw (Toering)",
  23809. image: {
  23810. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23811. }
  23812. },
  23813. toering: {
  23814. height: math.unit(2.9, "inches"),
  23815. name: "Toering",
  23816. image: {
  23817. source: "./media/characters/poojawa-vynar/toering.svg"
  23818. }
  23819. },
  23820. shaft: {
  23821. height: math.unit(0.625, "feet"),
  23822. name: "Shaft",
  23823. image: {
  23824. source: "./media/characters/poojawa-vynar/shaft.svg"
  23825. }
  23826. },
  23827. spade: {
  23828. height: math.unit(0.42, "feet"),
  23829. name: "Spade",
  23830. image: {
  23831. source: "./media/characters/poojawa-vynar/spade.svg"
  23832. }
  23833. },
  23834. },
  23835. [
  23836. {
  23837. name: "Shortstack",
  23838. height: math.unit(4, "feet")
  23839. },
  23840. {
  23841. name: "Normal",
  23842. height: math.unit(5 + 11 / 12, "feet"),
  23843. default: true
  23844. },
  23845. {
  23846. name: "Tauric",
  23847. height: math.unit(4, "meters")
  23848. },
  23849. ]
  23850. ))
  23851. characterMakers.push(() => makeCharacter(
  23852. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23853. {
  23854. front: {
  23855. height: math.unit(293, "meters"),
  23856. weight: math.unit(70400, "tons"),
  23857. name: "Front",
  23858. image: {
  23859. source: "./media/characters/violette/front.svg",
  23860. extra: 1227 / 1180,
  23861. bottom: 0.005
  23862. }
  23863. },
  23864. back: {
  23865. height: math.unit(293, "meters"),
  23866. weight: math.unit(70400, "tons"),
  23867. name: "Back",
  23868. image: {
  23869. source: "./media/characters/violette/back.svg",
  23870. extra: 1227 / 1180,
  23871. bottom: 0.005
  23872. }
  23873. },
  23874. },
  23875. [
  23876. {
  23877. name: "Macro",
  23878. height: math.unit(293, "meters"),
  23879. default: true
  23880. },
  23881. ]
  23882. ))
  23883. characterMakers.push(() => makeCharacter(
  23884. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23885. {
  23886. front: {
  23887. height: math.unit(1050, "feet"),
  23888. weight: math.unit(200000, "tons"),
  23889. name: "Front",
  23890. image: {
  23891. source: "./media/characters/alessandra/front.svg",
  23892. extra: 960 / 912,
  23893. bottom: 0.06
  23894. }
  23895. },
  23896. },
  23897. [
  23898. {
  23899. name: "Macro",
  23900. height: math.unit(1050, "feet")
  23901. },
  23902. {
  23903. name: "Macro+",
  23904. height: math.unit(900, "meters"),
  23905. default: true
  23906. },
  23907. ]
  23908. ))
  23909. characterMakers.push(() => makeCharacter(
  23910. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23911. {
  23912. front: {
  23913. height: math.unit(5, "feet"),
  23914. weight: math.unit(187, "lb"),
  23915. name: "Front",
  23916. image: {
  23917. source: "./media/characters/person/front.svg",
  23918. extra: 3087 / 2945,
  23919. bottom: 91 / 3181
  23920. }
  23921. },
  23922. },
  23923. [
  23924. {
  23925. name: "Micro",
  23926. height: math.unit(3, "inches")
  23927. },
  23928. {
  23929. name: "Normal",
  23930. height: math.unit(5, "feet"),
  23931. default: true
  23932. },
  23933. {
  23934. name: "Macro",
  23935. height: math.unit(90, "feet")
  23936. },
  23937. {
  23938. name: "Max Size",
  23939. height: math.unit(280, "feet")
  23940. },
  23941. ]
  23942. ))
  23943. characterMakers.push(() => makeCharacter(
  23944. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23945. {
  23946. front: {
  23947. height: math.unit(4.5, "meters"),
  23948. weight: math.unit(3200, "lb"),
  23949. name: "Front",
  23950. image: {
  23951. source: "./media/characters/ty/front.svg",
  23952. extra: 1038 / 960,
  23953. bottom: 31.156 / 1068
  23954. }
  23955. },
  23956. back: {
  23957. height: math.unit(4.5, "meters"),
  23958. weight: math.unit(3200, "lb"),
  23959. name: "Back",
  23960. image: {
  23961. source: "./media/characters/ty/back.svg",
  23962. extra: 1044 / 966,
  23963. bottom: 7.48 / 1049
  23964. }
  23965. },
  23966. },
  23967. [
  23968. {
  23969. name: "Normal",
  23970. height: math.unit(4.5, "meters"),
  23971. default: true
  23972. },
  23973. ]
  23974. ))
  23975. characterMakers.push(() => makeCharacter(
  23976. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23977. {
  23978. front: {
  23979. height: math.unit(5 + 4 / 12, "feet"),
  23980. weight: math.unit(115, "lb"),
  23981. name: "Front",
  23982. image: {
  23983. source: "./media/characters/rocky/front.svg",
  23984. extra: 1012 / 975,
  23985. bottom: 54 / 1066
  23986. }
  23987. },
  23988. },
  23989. [
  23990. {
  23991. name: "Normal",
  23992. height: math.unit(5 + 4 / 12, "feet"),
  23993. default: true
  23994. },
  23995. ]
  23996. ))
  23997. characterMakers.push(() => makeCharacter(
  23998. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23999. {
  24000. upright: {
  24001. height: math.unit(6, "meters"),
  24002. weight: math.unit(4000, "kg"),
  24003. name: "Upright",
  24004. image: {
  24005. source: "./media/characters/ruin/upright.svg",
  24006. extra: 668 / 661,
  24007. bottom: 42 / 799.8396
  24008. }
  24009. },
  24010. },
  24011. [
  24012. {
  24013. name: "Normal",
  24014. height: math.unit(6, "meters"),
  24015. default: true
  24016. },
  24017. ]
  24018. ))
  24019. characterMakers.push(() => makeCharacter(
  24020. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24021. {
  24022. front: {
  24023. height: math.unit(5, "feet"),
  24024. weight: math.unit(106, "lb"),
  24025. name: "Front",
  24026. image: {
  24027. source: "./media/characters/robin/front.svg",
  24028. extra: 862 / 799,
  24029. bottom: 42.4 / 914.8856
  24030. }
  24031. },
  24032. },
  24033. [
  24034. {
  24035. name: "Normal",
  24036. height: math.unit(5, "feet"),
  24037. default: true
  24038. },
  24039. ]
  24040. ))
  24041. characterMakers.push(() => makeCharacter(
  24042. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24043. {
  24044. side: {
  24045. height: math.unit(3, "feet"),
  24046. weight: math.unit(225, "lb"),
  24047. name: "Side",
  24048. image: {
  24049. source: "./media/characters/saian/side.svg",
  24050. extra: 566 / 356,
  24051. bottom: 79.7 / 643
  24052. }
  24053. },
  24054. maw: {
  24055. height: math.unit(2.85, "feet"),
  24056. name: "Maw",
  24057. image: {
  24058. source: "./media/characters/saian/maw.svg"
  24059. }
  24060. },
  24061. },
  24062. [
  24063. {
  24064. name: "Normal",
  24065. height: math.unit(3, "feet"),
  24066. default: true
  24067. },
  24068. ]
  24069. ))
  24070. characterMakers.push(() => makeCharacter(
  24071. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24072. {
  24073. side: {
  24074. height: math.unit(8, "feet"),
  24075. weight: math.unit(300, "lb"),
  24076. name: "Side",
  24077. image: {
  24078. source: "./media/characters/equus-silvermane/side.svg",
  24079. extra: 2176 / 2050,
  24080. bottom: 65.7 / 2245
  24081. }
  24082. },
  24083. front: {
  24084. height: math.unit(8, "feet"),
  24085. weight: math.unit(300, "lb"),
  24086. name: "Front",
  24087. image: {
  24088. source: "./media/characters/equus-silvermane/front.svg",
  24089. extra: 4633 / 4400,
  24090. bottom: 71.3 / 4706.915
  24091. }
  24092. },
  24093. sideStepping: {
  24094. height: math.unit(8, "feet"),
  24095. weight: math.unit(300, "lb"),
  24096. name: "Side (Stepping)",
  24097. image: {
  24098. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24099. extra: 1968 / 1860,
  24100. bottom: 16.4 / 1989
  24101. }
  24102. },
  24103. },
  24104. [
  24105. {
  24106. name: "Normal",
  24107. height: math.unit(8, "feet")
  24108. },
  24109. {
  24110. name: "Minimacro",
  24111. height: math.unit(75, "feet"),
  24112. default: true
  24113. },
  24114. {
  24115. name: "Macro",
  24116. height: math.unit(150, "feet")
  24117. },
  24118. {
  24119. name: "Macro+",
  24120. height: math.unit(1000, "feet")
  24121. },
  24122. {
  24123. name: "Megamacro",
  24124. height: math.unit(1, "mile")
  24125. },
  24126. ]
  24127. ))
  24128. characterMakers.push(() => makeCharacter(
  24129. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24130. {
  24131. side: {
  24132. height: math.unit(20, "feet"),
  24133. weight: math.unit(30000, "kg"),
  24134. name: "Side",
  24135. image: {
  24136. source: "./media/characters/windar/side.svg",
  24137. extra: 1491 / 1248,
  24138. bottom: 82.56 / 1568
  24139. }
  24140. },
  24141. },
  24142. [
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(20, "feet"),
  24146. default: true
  24147. },
  24148. ]
  24149. ))
  24150. characterMakers.push(() => makeCharacter(
  24151. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24152. {
  24153. side: {
  24154. height: math.unit(15.66, "feet"),
  24155. weight: math.unit(150, "lb"),
  24156. name: "Side",
  24157. image: {
  24158. source: "./media/characters/melody/side.svg",
  24159. extra: 1097 / 944,
  24160. bottom: 11.8 / 1109
  24161. }
  24162. },
  24163. sideOutfit: {
  24164. height: math.unit(15.66, "feet"),
  24165. weight: math.unit(150, "lb"),
  24166. name: "Side (Outfit)",
  24167. image: {
  24168. source: "./media/characters/melody/side-outfit.svg",
  24169. extra: 1097 / 944,
  24170. bottom: 11.8 / 1109
  24171. }
  24172. },
  24173. },
  24174. [
  24175. {
  24176. name: "Normal",
  24177. height: math.unit(15.66, "feet"),
  24178. default: true
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24184. {
  24185. armoredFront: {
  24186. height: math.unit(8, "feet"),
  24187. weight: math.unit(325, "lb"),
  24188. name: "Front",
  24189. image: {
  24190. source: "./media/characters/windera/armored-front.svg",
  24191. extra: 1830/1598,
  24192. bottom: 151/1981
  24193. },
  24194. form: "armored",
  24195. default: true
  24196. },
  24197. macroFront: {
  24198. height: math.unit(70, "feet"),
  24199. weight: math.unit(315453, "lb"),
  24200. name: "Front",
  24201. image: {
  24202. source: "./media/characters/windera/macro-front.svg",
  24203. extra: 963/883,
  24204. bottom: 23/986
  24205. },
  24206. form: "macro",
  24207. default: true
  24208. },
  24209. },
  24210. [
  24211. {
  24212. name: "Normal",
  24213. height: math.unit(8, "feet"),
  24214. default: true,
  24215. form: "armored"
  24216. },
  24217. {
  24218. name: "Normal",
  24219. height: math.unit(70, "feet"),
  24220. default: true,
  24221. form: "macro"
  24222. },
  24223. ],
  24224. {
  24225. "armored": {
  24226. name: "Armored",
  24227. default: true
  24228. },
  24229. "macro": {
  24230. name: "Macro",
  24231. },
  24232. }
  24233. ))
  24234. characterMakers.push(() => makeCharacter(
  24235. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24236. {
  24237. front: {
  24238. height: math.unit(28.75, "feet"),
  24239. weight: math.unit(2000, "kg"),
  24240. name: "Front",
  24241. image: {
  24242. source: "./media/characters/sonear/front.svg",
  24243. extra: 1041.1 / 964.9,
  24244. bottom: 53.7 / 1096.6
  24245. }
  24246. },
  24247. },
  24248. [
  24249. {
  24250. name: "Normal",
  24251. height: math.unit(28.75, "feet"),
  24252. default: true
  24253. },
  24254. ]
  24255. ))
  24256. characterMakers.push(() => makeCharacter(
  24257. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24258. {
  24259. side: {
  24260. height: math.unit(25.5, "feet"),
  24261. weight: math.unit(23000, "kg"),
  24262. name: "Side",
  24263. image: {
  24264. source: "./media/characters/kanara/side.svg"
  24265. }
  24266. },
  24267. },
  24268. [
  24269. {
  24270. name: "Normal",
  24271. height: math.unit(25.5, "feet"),
  24272. default: true
  24273. },
  24274. ]
  24275. ))
  24276. characterMakers.push(() => makeCharacter(
  24277. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24278. {
  24279. side: {
  24280. height: math.unit(10, "feet"),
  24281. weight: math.unit(1000, "kg"),
  24282. name: "Side",
  24283. image: {
  24284. source: "./media/characters/ereus/side.svg",
  24285. extra: 1157 / 959,
  24286. bottom: 153 / 1312.5
  24287. }
  24288. },
  24289. },
  24290. [
  24291. {
  24292. name: "Normal",
  24293. height: math.unit(10, "feet"),
  24294. default: true
  24295. },
  24296. ]
  24297. ))
  24298. characterMakers.push(() => makeCharacter(
  24299. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24300. {
  24301. side: {
  24302. height: math.unit(4.5, "feet"),
  24303. weight: math.unit(500, "lb"),
  24304. name: "Side",
  24305. image: {
  24306. source: "./media/characters/e-ter/side.svg",
  24307. extra: 1550 / 1248,
  24308. bottom: 146 / 1694
  24309. }
  24310. },
  24311. },
  24312. [
  24313. {
  24314. name: "Normal",
  24315. height: math.unit(4.5, "feet"),
  24316. default: true
  24317. },
  24318. ]
  24319. ))
  24320. characterMakers.push(() => makeCharacter(
  24321. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24322. {
  24323. side: {
  24324. height: math.unit(9.7, "feet"),
  24325. weight: math.unit(4000, "kg"),
  24326. name: "Side",
  24327. image: {
  24328. source: "./media/characters/yamie/side.svg"
  24329. }
  24330. },
  24331. },
  24332. [
  24333. {
  24334. name: "Normal",
  24335. height: math.unit(9.7, "feet"),
  24336. default: true
  24337. },
  24338. ]
  24339. ))
  24340. characterMakers.push(() => makeCharacter(
  24341. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24342. {
  24343. front: {
  24344. height: math.unit(50, "feet"),
  24345. weight: math.unit(50000, "kg"),
  24346. name: "Front",
  24347. image: {
  24348. source: "./media/characters/anders/front.svg",
  24349. extra: 570 / 539,
  24350. bottom: 14.7 / 586.7
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Large",
  24357. height: math.unit(50, "feet")
  24358. },
  24359. {
  24360. name: "Macro",
  24361. height: math.unit(2000, "feet"),
  24362. default: true
  24363. },
  24364. {
  24365. name: "Megamacro",
  24366. height: math.unit(12, "miles")
  24367. },
  24368. ]
  24369. ))
  24370. characterMakers.push(() => makeCharacter(
  24371. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24372. {
  24373. front: {
  24374. height: math.unit(7 + 2 / 12, "feet"),
  24375. weight: math.unit(300, "lb"),
  24376. name: "Front",
  24377. image: {
  24378. source: "./media/characters/reban/front.svg",
  24379. extra: 1287/1212,
  24380. bottom: 148/1435
  24381. }
  24382. },
  24383. head: {
  24384. height: math.unit(1.95, "feet"),
  24385. name: "Head",
  24386. image: {
  24387. source: "./media/characters/reban/head.svg"
  24388. }
  24389. },
  24390. maw: {
  24391. height: math.unit(0.95, "feet"),
  24392. name: "Maw",
  24393. image: {
  24394. source: "./media/characters/reban/maw.svg"
  24395. }
  24396. },
  24397. foot: {
  24398. height: math.unit(1.65, "feet"),
  24399. name: "Foot",
  24400. image: {
  24401. source: "./media/characters/reban/foot.svg"
  24402. }
  24403. },
  24404. dick: {
  24405. height: math.unit(7 / 5, "feet"),
  24406. name: "Dick",
  24407. image: {
  24408. source: "./media/characters/reban/dick.svg"
  24409. }
  24410. },
  24411. },
  24412. [
  24413. {
  24414. name: "Natural Height",
  24415. height: math.unit(7 + 2 / 12, "feet")
  24416. },
  24417. {
  24418. name: "Macro",
  24419. height: math.unit(500, "feet"),
  24420. default: true
  24421. },
  24422. {
  24423. name: "Canon Height",
  24424. height: math.unit(50, "AU")
  24425. },
  24426. ]
  24427. ))
  24428. characterMakers.push(() => makeCharacter(
  24429. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24430. {
  24431. front: {
  24432. height: math.unit(6, "feet"),
  24433. weight: math.unit(150, "lb"),
  24434. name: "Front",
  24435. image: {
  24436. source: "./media/characters/terrance-keayes/front.svg",
  24437. extra: 1.005,
  24438. bottom: 151 / 1615
  24439. }
  24440. },
  24441. side: {
  24442. height: math.unit(6, "feet"),
  24443. weight: math.unit(150, "lb"),
  24444. name: "Side",
  24445. image: {
  24446. source: "./media/characters/terrance-keayes/side.svg",
  24447. extra: 1.005,
  24448. bottom: 129.4 / 1544
  24449. }
  24450. },
  24451. back: {
  24452. height: math.unit(6, "feet"),
  24453. weight: math.unit(150, "lb"),
  24454. name: "Back",
  24455. image: {
  24456. source: "./media/characters/terrance-keayes/back.svg",
  24457. extra: 1.005,
  24458. bottom: 58.4 / 1557.3
  24459. }
  24460. },
  24461. dick: {
  24462. height: math.unit(6 * 0.208, "feet"),
  24463. name: "Dick",
  24464. image: {
  24465. source: "./media/characters/terrance-keayes/dick.svg"
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Canon Height",
  24472. height: math.unit(35, "miles"),
  24473. default: true
  24474. },
  24475. ]
  24476. ))
  24477. characterMakers.push(() => makeCharacter(
  24478. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24479. {
  24480. front: {
  24481. height: math.unit(6, "feet"),
  24482. weight: math.unit(150, "lb"),
  24483. name: "Front",
  24484. image: {
  24485. source: "./media/characters/ofelia/front.svg",
  24486. extra: 1130/1117,
  24487. bottom: 91/1221
  24488. }
  24489. },
  24490. back: {
  24491. height: math.unit(6, "feet"),
  24492. weight: math.unit(150, "lb"),
  24493. name: "Back",
  24494. image: {
  24495. source: "./media/characters/ofelia/back.svg",
  24496. extra: 1172/1159,
  24497. bottom: 28/1200
  24498. }
  24499. },
  24500. maw: {
  24501. height: math.unit(1, "feet"),
  24502. name: "Maw",
  24503. image: {
  24504. source: "./media/characters/ofelia/maw.svg"
  24505. }
  24506. },
  24507. foot: {
  24508. height: math.unit(1.949, "feet"),
  24509. name: "Foot",
  24510. image: {
  24511. source: "./media/characters/ofelia/foot.svg"
  24512. }
  24513. },
  24514. },
  24515. [
  24516. {
  24517. name: "Canon Height",
  24518. height: math.unit(2000, "miles"),
  24519. default: true
  24520. },
  24521. ]
  24522. ))
  24523. characterMakers.push(() => makeCharacter(
  24524. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24525. {
  24526. front: {
  24527. height: math.unit(6, "feet"),
  24528. weight: math.unit(150, "lb"),
  24529. name: "Front",
  24530. image: {
  24531. source: "./media/characters/samuel/front.svg",
  24532. extra: 265 / 258,
  24533. bottom: 2 / 266.1566
  24534. }
  24535. },
  24536. },
  24537. [
  24538. {
  24539. name: "Macro",
  24540. height: math.unit(100, "feet"),
  24541. default: true
  24542. },
  24543. {
  24544. name: "Full Size",
  24545. height: math.unit(1000, "miles")
  24546. },
  24547. ]
  24548. ))
  24549. characterMakers.push(() => makeCharacter(
  24550. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24551. {
  24552. front: {
  24553. height: math.unit(6, "feet"),
  24554. weight: math.unit(300, "lb"),
  24555. name: "Front",
  24556. image: {
  24557. source: "./media/characters/beishir-kiel/front.svg",
  24558. extra: 569 / 547,
  24559. bottom: 41.9 / 609
  24560. }
  24561. },
  24562. maw: {
  24563. height: math.unit(6 * 0.202, "feet"),
  24564. name: "Maw",
  24565. image: {
  24566. source: "./media/characters/beishir-kiel/maw.svg"
  24567. }
  24568. },
  24569. },
  24570. [
  24571. {
  24572. name: "Macro",
  24573. height: math.unit(300, "feet"),
  24574. default: true
  24575. },
  24576. ]
  24577. ))
  24578. characterMakers.push(() => makeCharacter(
  24579. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24580. {
  24581. front: {
  24582. height: math.unit(5 + 7/12, "feet"),
  24583. weight: math.unit(120, "lb"),
  24584. name: "Front",
  24585. image: {
  24586. source: "./media/characters/logan-grey/front.svg",
  24587. extra: 1836/1738,
  24588. bottom: 108/1944
  24589. }
  24590. },
  24591. back: {
  24592. height: math.unit(5 + 7/12, "feet"),
  24593. weight: math.unit(120, "lb"),
  24594. name: "Back",
  24595. image: {
  24596. source: "./media/characters/logan-grey/back.svg",
  24597. extra: 1880/1794,
  24598. bottom: 24/1904
  24599. }
  24600. },
  24601. frontSfw: {
  24602. height: math.unit(5 + 7/12, "feet"),
  24603. weight: math.unit(120, "lb"),
  24604. name: "Front (SFW)",
  24605. image: {
  24606. source: "./media/characters/logan-grey/front-sfw.svg",
  24607. extra: 1836/1738,
  24608. bottom: 108/1944
  24609. }
  24610. },
  24611. backSfw: {
  24612. height: math.unit(5 + 7/12, "feet"),
  24613. weight: math.unit(120, "lb"),
  24614. name: "Back (SFW)",
  24615. image: {
  24616. source: "./media/characters/logan-grey/back-sfw.svg",
  24617. extra: 1880/1794,
  24618. bottom: 24/1904
  24619. }
  24620. },
  24621. hands: {
  24622. height: math.unit(0.84, "feet"),
  24623. name: "Hands",
  24624. image: {
  24625. source: "./media/characters/logan-grey/hands.svg"
  24626. }
  24627. },
  24628. paws: {
  24629. height: math.unit(0.72, "feet"),
  24630. name: "Paws",
  24631. image: {
  24632. source: "./media/characters/logan-grey/paws.svg"
  24633. }
  24634. },
  24635. cock: {
  24636. height: math.unit(1.45, "feet"),
  24637. name: "Cock",
  24638. image: {
  24639. source: "./media/characters/logan-grey/cock.svg"
  24640. }
  24641. },
  24642. cockAlt: {
  24643. height: math.unit(1.437, "feet"),
  24644. name: "Cock (alt)",
  24645. image: {
  24646. source: "./media/characters/logan-grey/cock-alt.svg"
  24647. }
  24648. },
  24649. },
  24650. [
  24651. {
  24652. name: "Normal",
  24653. height: math.unit(5 + 8 / 12, "feet")
  24654. },
  24655. {
  24656. name: "The 500 Foot Femboy",
  24657. height: math.unit(500, "feet"),
  24658. default: true
  24659. },
  24660. {
  24661. name: "Megmacro",
  24662. height: math.unit(20, "miles")
  24663. },
  24664. ]
  24665. ))
  24666. characterMakers.push(() => makeCharacter(
  24667. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24668. {
  24669. front: {
  24670. height: math.unit(8 + 2 / 12, "feet"),
  24671. weight: math.unit(275, "lb"),
  24672. name: "Front",
  24673. image: {
  24674. source: "./media/characters/draganta/front.svg",
  24675. extra: 1177 / 1135,
  24676. bottom: 33.46 / 1212.1
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Normal",
  24683. height: math.unit(8 + 6 / 12, "feet"),
  24684. default: true
  24685. },
  24686. {
  24687. name: "Macro",
  24688. height: math.unit(150, "feet")
  24689. },
  24690. {
  24691. name: "Megamacro",
  24692. height: math.unit(1000, "miles")
  24693. },
  24694. ]
  24695. ))
  24696. characterMakers.push(() => makeCharacter(
  24697. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24698. {
  24699. front: {
  24700. height: math.unit(1.72, "m"),
  24701. weight: math.unit(80, "lb"),
  24702. name: "Front",
  24703. image: {
  24704. source: "./media/characters/voski/front.svg",
  24705. extra: 2076.22 / 2022.4,
  24706. bottom: 102.7 / 2177.3866
  24707. }
  24708. },
  24709. frontFlaccid: {
  24710. height: math.unit(1.72, "m"),
  24711. weight: math.unit(80, "lb"),
  24712. name: "Front (Flaccid)",
  24713. image: {
  24714. source: "./media/characters/voski/front-flaccid.svg",
  24715. extra: 2076.22 / 2022.4,
  24716. bottom: 102.7 / 2177.3866
  24717. }
  24718. },
  24719. frontErect: {
  24720. height: math.unit(1.72, "m"),
  24721. weight: math.unit(80, "lb"),
  24722. name: "Front (Erect)",
  24723. image: {
  24724. source: "./media/characters/voski/front-erect.svg",
  24725. extra: 2076.22 / 2022.4,
  24726. bottom: 102.7 / 2177.3866
  24727. }
  24728. },
  24729. back: {
  24730. height: math.unit(1.72, "m"),
  24731. weight: math.unit(80, "lb"),
  24732. name: "Back",
  24733. image: {
  24734. source: "./media/characters/voski/back.svg",
  24735. extra: 2104 / 2051,
  24736. bottom: 10.45 / 2113.63
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(1.72, "m")
  24744. },
  24745. {
  24746. name: "Macro",
  24747. height: math.unit(55, "m"),
  24748. default: true
  24749. },
  24750. {
  24751. name: "Macro+",
  24752. height: math.unit(300, "m")
  24753. },
  24754. {
  24755. name: "Macro++",
  24756. height: math.unit(700, "m")
  24757. },
  24758. {
  24759. name: "Macro+++",
  24760. height: math.unit(4500, "m")
  24761. },
  24762. {
  24763. name: "Macro++++",
  24764. height: math.unit(45, "km")
  24765. },
  24766. {
  24767. name: "Macro+++++",
  24768. height: math.unit(1220, "km")
  24769. },
  24770. ]
  24771. ))
  24772. characterMakers.push(() => makeCharacter(
  24773. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24774. {
  24775. front: {
  24776. height: math.unit(2.3, "m"),
  24777. weight: math.unit(304, "kg"),
  24778. name: "Front",
  24779. image: {
  24780. source: "./media/characters/icowom-lee/front.svg",
  24781. extra: 985 / 955,
  24782. bottom: 25.4 / 1012
  24783. }
  24784. },
  24785. fronttentacles: {
  24786. height: math.unit(2.3, "m"),
  24787. weight: math.unit(304, "kg"),
  24788. name: "Front-tentacles",
  24789. image: {
  24790. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24791. extra: 985 / 955,
  24792. bottom: 25.4 / 1012
  24793. }
  24794. },
  24795. back: {
  24796. height: math.unit(2.3, "m"),
  24797. weight: math.unit(304, "kg"),
  24798. name: "Back",
  24799. image: {
  24800. source: "./media/characters/icowom-lee/back.svg",
  24801. extra: 975 / 954,
  24802. bottom: 9.5 / 985
  24803. }
  24804. },
  24805. backtentacles: {
  24806. height: math.unit(2.3, "m"),
  24807. weight: math.unit(304, "kg"),
  24808. name: "Back-tentacles",
  24809. image: {
  24810. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24811. extra: 975 / 954,
  24812. bottom: 9.5 / 985
  24813. }
  24814. },
  24815. frontDressed: {
  24816. height: math.unit(2.3, "m"),
  24817. weight: math.unit(304, "kg"),
  24818. name: "Front (Dressed)",
  24819. image: {
  24820. source: "./media/characters/icowom-lee/front-dressed.svg",
  24821. extra: 3076 / 2933,
  24822. bottom: 51.4 / 3125.1889
  24823. }
  24824. },
  24825. rump: {
  24826. height: math.unit(0.776, "meters"),
  24827. name: "Rump",
  24828. image: {
  24829. source: "./media/characters/icowom-lee/rump.svg"
  24830. }
  24831. },
  24832. genitals: {
  24833. height: math.unit(0.78, "meters"),
  24834. name: "Genitals",
  24835. image: {
  24836. source: "./media/characters/icowom-lee/genitals.svg"
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Normal",
  24843. height: math.unit(2.3, "meters"),
  24844. default: true
  24845. },
  24846. {
  24847. name: "Macro",
  24848. height: math.unit(94, "meters"),
  24849. default: true
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24855. {
  24856. front: {
  24857. height: math.unit(22, "meters"),
  24858. weight: math.unit(21000, "kg"),
  24859. name: "Front",
  24860. image: {
  24861. source: "./media/characters/shock-diamond/front.svg",
  24862. extra: 2204 / 2053,
  24863. bottom: 65 / 2239.47
  24864. }
  24865. },
  24866. frontNude: {
  24867. height: math.unit(22, "meters"),
  24868. weight: math.unit(21000, "kg"),
  24869. name: "Front (Nude)",
  24870. image: {
  24871. source: "./media/characters/shock-diamond/front-nude.svg",
  24872. extra: 2514 / 2285,
  24873. bottom: 13 / 2527.56
  24874. }
  24875. },
  24876. },
  24877. [
  24878. {
  24879. name: "Normal",
  24880. height: math.unit(3, "meters")
  24881. },
  24882. {
  24883. name: "Macro",
  24884. height: math.unit(22, "meters"),
  24885. default: true
  24886. },
  24887. ]
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24891. {
  24892. front: {
  24893. height: math.unit(5 + 4/12, "feet"),
  24894. weight: math.unit(125, "lb"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/rory/front.svg",
  24898. extra: 1790/1681,
  24899. bottom: 66/1856
  24900. },
  24901. form: "normal",
  24902. default: true
  24903. },
  24904. back: {
  24905. height: math.unit(5 + 4/12, "feet"),
  24906. weight: math.unit(125, "lb"),
  24907. name: "Back",
  24908. image: {
  24909. source: "./media/characters/rory/back.svg",
  24910. extra: 1805/1690,
  24911. bottom: 56/1861
  24912. },
  24913. form: "normal"
  24914. },
  24915. frontDressed: {
  24916. height: math.unit(5 + 4/12, "feet"),
  24917. weight: math.unit(125, "lb"),
  24918. name: "Front (Dressed)",
  24919. image: {
  24920. source: "./media/characters/rory/front-dressed.svg",
  24921. extra: 1790/1681,
  24922. bottom: 66/1856
  24923. },
  24924. form: "normal"
  24925. },
  24926. backDressed: {
  24927. height: math.unit(5 + 4/12, "feet"),
  24928. weight: math.unit(125, "lb"),
  24929. name: "Back (Dressed)",
  24930. image: {
  24931. source: "./media/characters/rory/back-dressed.svg",
  24932. extra: 1805/1690,
  24933. bottom: 56/1861
  24934. },
  24935. form: "normal"
  24936. },
  24937. frontNsfw: {
  24938. height: math.unit(5 + 4/12, "feet"),
  24939. weight: math.unit(125, "lb"),
  24940. name: "Front (NSFW)",
  24941. image: {
  24942. source: "./media/characters/rory/front-nsfw.svg",
  24943. extra: 1790/1681,
  24944. bottom: 66/1856
  24945. },
  24946. form: "normal"
  24947. },
  24948. backNsfw: {
  24949. height: math.unit(5 + 4/12, "feet"),
  24950. weight: math.unit(125, "lb"),
  24951. name: "Back (NSFW)",
  24952. image: {
  24953. source: "./media/characters/rory/back-nsfw.svg",
  24954. extra: 1805/1690,
  24955. bottom: 56/1861
  24956. },
  24957. form: "normal"
  24958. },
  24959. dick: {
  24960. height: math.unit(0.8, "feet"),
  24961. name: "Dick",
  24962. image: {
  24963. source: "./media/characters/rory/dick.svg"
  24964. },
  24965. form: "normal"
  24966. },
  24967. thicc_front: {
  24968. height: math.unit(5 + 4/12, "feet"),
  24969. weight: math.unit(195, "lb"),
  24970. name: "Front",
  24971. image: {
  24972. source: "./media/characters/rory/thicc-front.svg",
  24973. extra: 1220/1100,
  24974. bottom: 103/1323
  24975. },
  24976. form: "thicc",
  24977. default: true
  24978. },
  24979. thicc_back: {
  24980. height: math.unit(5 + 4/12, "feet"),
  24981. weight: math.unit(195, "lb"),
  24982. name: "Back",
  24983. image: {
  24984. source: "./media/characters/rory/thicc-back.svg",
  24985. extra: 1166/1086,
  24986. bottom: 35/1201
  24987. },
  24988. form: "thicc"
  24989. },
  24990. },
  24991. [
  24992. {
  24993. name: "Micro",
  24994. height: math.unit(3, "inches"),
  24995. allForms: true
  24996. },
  24997. {
  24998. name: "Normal",
  24999. height: math.unit(5 + 4/12, "feet"),
  25000. allForms: true,
  25001. default: true
  25002. },
  25003. {
  25004. name: "Macro",
  25005. height: math.unit(90, "feet"),
  25006. allForms: true
  25007. },
  25008. {
  25009. name: "Supercharged",
  25010. height: math.unit(270, "feet"),
  25011. allForms: true
  25012. },
  25013. ],
  25014. {
  25015. "normal": {
  25016. name: "Normal",
  25017. default: true
  25018. },
  25019. "thicc": {
  25020. name: "Thicc",
  25021. },
  25022. }
  25023. ))
  25024. characterMakers.push(() => makeCharacter(
  25025. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25026. {
  25027. front: {
  25028. height: math.unit(5 + 9 / 12, "feet"),
  25029. weight: math.unit(190, "lb"),
  25030. name: "Front",
  25031. image: {
  25032. source: "./media/characters/sprisk/front.svg",
  25033. extra: 1225 / 1180,
  25034. bottom: 42.7 / 1266.4
  25035. }
  25036. },
  25037. frontNsfw: {
  25038. height: math.unit(5 + 9 / 12, "feet"),
  25039. weight: math.unit(190, "lb"),
  25040. name: "Front (NSFW)",
  25041. image: {
  25042. source: "./media/characters/sprisk/front-nsfw.svg",
  25043. extra: 1225 / 1180,
  25044. bottom: 42.7 / 1266.4
  25045. }
  25046. },
  25047. back: {
  25048. height: math.unit(5 + 9 / 12, "feet"),
  25049. weight: math.unit(190, "lb"),
  25050. name: "Back",
  25051. image: {
  25052. source: "./media/characters/sprisk/back.svg",
  25053. extra: 1247 / 1200,
  25054. bottom: 5.6 / 1253.04
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Tiny",
  25061. height: math.unit(2, "inches")
  25062. },
  25063. {
  25064. name: "Normal",
  25065. height: math.unit(5 + 9 / 12, "feet"),
  25066. default: true
  25067. },
  25068. {
  25069. name: "Mini Macro",
  25070. height: math.unit(18, "feet")
  25071. },
  25072. {
  25073. name: "Macro",
  25074. height: math.unit(100, "feet")
  25075. },
  25076. {
  25077. name: "MACRO",
  25078. height: math.unit(50, "miles")
  25079. },
  25080. {
  25081. name: "M A C R O",
  25082. height: math.unit(300, "miles")
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25088. {
  25089. side: {
  25090. height: math.unit(15.6, "meters"),
  25091. weight: math.unit(700000, "kg"),
  25092. name: "Side",
  25093. image: {
  25094. source: "./media/characters/bunsen/side.svg",
  25095. extra: 1644 / 358
  25096. }
  25097. },
  25098. foot: {
  25099. height: math.unit(1.611 * 1644 / 358, "meter"),
  25100. name: "Foot",
  25101. image: {
  25102. source: "./media/characters/bunsen/foot.svg"
  25103. }
  25104. },
  25105. },
  25106. [
  25107. {
  25108. name: "Small",
  25109. height: math.unit(10, "feet")
  25110. },
  25111. {
  25112. name: "Normal",
  25113. height: math.unit(15.6, "meters"),
  25114. default: true
  25115. },
  25116. ]
  25117. ))
  25118. characterMakers.push(() => makeCharacter(
  25119. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25120. {
  25121. front: {
  25122. height: math.unit(4 + 11 / 12, "feet"),
  25123. weight: math.unit(140, "lb"),
  25124. name: "Front",
  25125. image: {
  25126. source: "./media/characters/sesh/front.svg",
  25127. extra: 3420 / 3231,
  25128. bottom: 72 / 3949.5
  25129. }
  25130. },
  25131. },
  25132. [
  25133. {
  25134. name: "Normal",
  25135. height: math.unit(4 + 11 / 12, "feet")
  25136. },
  25137. {
  25138. name: "Grown",
  25139. height: math.unit(15, "feet"),
  25140. default: true
  25141. },
  25142. {
  25143. name: "Macro",
  25144. height: math.unit(1500, "feet")
  25145. },
  25146. {
  25147. name: "Megamacro",
  25148. height: math.unit(30, "miles")
  25149. },
  25150. {
  25151. name: "Continental",
  25152. height: math.unit(3000, "miles")
  25153. },
  25154. {
  25155. name: "Gravity Mass",
  25156. height: math.unit(300000, "miles")
  25157. },
  25158. {
  25159. name: "Planet Buster",
  25160. height: math.unit(30000000, "miles")
  25161. },
  25162. {
  25163. name: "Big",
  25164. height: math.unit(3000000000, "miles")
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25170. {
  25171. front: {
  25172. height: math.unit(9, "feet"),
  25173. weight: math.unit(350, "lb"),
  25174. name: "Front",
  25175. image: {
  25176. source: "./media/characters/pepper/front.svg",
  25177. extra: 1448 / 1312,
  25178. bottom: 9.4 / 1457.88
  25179. }
  25180. },
  25181. back: {
  25182. height: math.unit(9, "feet"),
  25183. weight: math.unit(350, "lb"),
  25184. name: "Back",
  25185. image: {
  25186. source: "./media/characters/pepper/back.svg",
  25187. extra: 1423 / 1300,
  25188. bottom: 4.6 / 1429
  25189. }
  25190. },
  25191. maw: {
  25192. height: math.unit(0.932, "feet"),
  25193. name: "Maw",
  25194. image: {
  25195. source: "./media/characters/pepper/maw.svg"
  25196. }
  25197. },
  25198. },
  25199. [
  25200. {
  25201. name: "Normal",
  25202. height: math.unit(9, "feet"),
  25203. default: true
  25204. },
  25205. ]
  25206. ))
  25207. characterMakers.push(() => makeCharacter(
  25208. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25209. {
  25210. front: {
  25211. height: math.unit(6, "feet"),
  25212. weight: math.unit(150, "lb"),
  25213. name: "Front",
  25214. image: {
  25215. source: "./media/characters/maelstrom/front.svg",
  25216. extra: 2100 / 1883,
  25217. bottom: 94 / 2196.7
  25218. }
  25219. },
  25220. },
  25221. [
  25222. {
  25223. name: "Less Kaiju",
  25224. height: math.unit(200, "feet")
  25225. },
  25226. {
  25227. name: "Kaiju",
  25228. height: math.unit(400, "feet"),
  25229. default: true
  25230. },
  25231. {
  25232. name: "Kaiju-er",
  25233. height: math.unit(600, "feet")
  25234. },
  25235. ]
  25236. ))
  25237. characterMakers.push(() => makeCharacter(
  25238. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25239. {
  25240. front: {
  25241. height: math.unit(6 + 5 / 12, "feet"),
  25242. weight: math.unit(180, "lb"),
  25243. name: "Front",
  25244. image: {
  25245. source: "./media/characters/lexir/front.svg",
  25246. extra: 180 / 172,
  25247. bottom: 12 / 192
  25248. }
  25249. },
  25250. back: {
  25251. height: math.unit(6 + 5 / 12, "feet"),
  25252. weight: math.unit(180, "lb"),
  25253. name: "Back",
  25254. image: {
  25255. source: "./media/characters/lexir/back.svg",
  25256. extra: 1273/1201,
  25257. bottom: 39/1312
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Very Smal",
  25264. height: math.unit(1, "nm")
  25265. },
  25266. {
  25267. name: "Normal",
  25268. height: math.unit(6 + 5 / 12, "feet"),
  25269. default: true
  25270. },
  25271. {
  25272. name: "Macro",
  25273. height: math.unit(1, "mile")
  25274. },
  25275. {
  25276. name: "Megamacro",
  25277. height: math.unit(50, "miles")
  25278. },
  25279. ]
  25280. ))
  25281. characterMakers.push(() => makeCharacter(
  25282. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25283. {
  25284. front: {
  25285. height: math.unit(1.5, "meters"),
  25286. weight: math.unit(100, "lb"),
  25287. name: "Front",
  25288. image: {
  25289. source: "./media/characters/maksio/front.svg",
  25290. extra: 1549 / 1531,
  25291. bottom: 123.7 / 1674.5429
  25292. }
  25293. },
  25294. back: {
  25295. height: math.unit(1.5, "meters"),
  25296. weight: math.unit(100, "lb"),
  25297. name: "Back",
  25298. image: {
  25299. source: "./media/characters/maksio/back.svg",
  25300. extra: 1541 / 1509,
  25301. bottom: 97 / 1639
  25302. }
  25303. },
  25304. hand: {
  25305. height: math.unit(0.621, "feet"),
  25306. name: "Hand",
  25307. image: {
  25308. source: "./media/characters/maksio/hand.svg"
  25309. }
  25310. },
  25311. foot: {
  25312. height: math.unit(1.611, "feet"),
  25313. name: "Foot",
  25314. image: {
  25315. source: "./media/characters/maksio/foot.svg"
  25316. }
  25317. },
  25318. },
  25319. [
  25320. {
  25321. name: "Shrunken",
  25322. height: math.unit(10, "cm")
  25323. },
  25324. {
  25325. name: "Normal",
  25326. height: math.unit(150, "cm"),
  25327. default: true
  25328. },
  25329. ]
  25330. ))
  25331. characterMakers.push(() => makeCharacter(
  25332. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25333. {
  25334. front: {
  25335. height: math.unit(100, "feet"),
  25336. name: "Front",
  25337. image: {
  25338. source: "./media/characters/erza-bear/front.svg",
  25339. extra: 2449 / 2390,
  25340. bottom: 46 / 2494
  25341. }
  25342. },
  25343. back: {
  25344. height: math.unit(100, "feet"),
  25345. name: "Back",
  25346. image: {
  25347. source: "./media/characters/erza-bear/back.svg",
  25348. extra: 2489 / 2430,
  25349. bottom: 85.4 / 2480
  25350. }
  25351. },
  25352. tail: {
  25353. height: math.unit(42, "feet"),
  25354. name: "Tail",
  25355. image: {
  25356. source: "./media/characters/erza-bear/tail.svg"
  25357. }
  25358. },
  25359. tongue: {
  25360. height: math.unit(8, "feet"),
  25361. name: "Tongue",
  25362. image: {
  25363. source: "./media/characters/erza-bear/tongue.svg"
  25364. }
  25365. },
  25366. dick: {
  25367. height: math.unit(10.5, "feet"),
  25368. name: "Dick",
  25369. image: {
  25370. source: "./media/characters/erza-bear/dick.svg"
  25371. }
  25372. },
  25373. dickVertical: {
  25374. height: math.unit(16.9, "feet"),
  25375. name: "Dick (Vertical)",
  25376. image: {
  25377. source: "./media/characters/erza-bear/dick-vertical.svg"
  25378. }
  25379. },
  25380. },
  25381. [
  25382. {
  25383. name: "Macro",
  25384. height: math.unit(100, "feet"),
  25385. default: true
  25386. },
  25387. ]
  25388. ))
  25389. characterMakers.push(() => makeCharacter(
  25390. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25391. {
  25392. front: {
  25393. height: math.unit(172, "cm"),
  25394. weight: math.unit(73, "kg"),
  25395. name: "Front",
  25396. image: {
  25397. source: "./media/characters/violet-flor/front.svg",
  25398. extra: 1530 / 1442,
  25399. bottom: 61.9 / 1588.8
  25400. }
  25401. },
  25402. back: {
  25403. height: math.unit(180, "cm"),
  25404. weight: math.unit(73, "kg"),
  25405. name: "Back",
  25406. image: {
  25407. source: "./media/characters/violet-flor/back.svg",
  25408. extra: 1692 / 1630,
  25409. bottom: 20 / 1712
  25410. }
  25411. },
  25412. },
  25413. [
  25414. {
  25415. name: "Normal",
  25416. height: math.unit(172, "cm"),
  25417. default: true
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25423. {
  25424. front: {
  25425. height: math.unit(6, "feet"),
  25426. weight: math.unit(220, "lb"),
  25427. name: "Front",
  25428. image: {
  25429. source: "./media/characters/lynn-rhea/front.svg",
  25430. extra: 310 / 273
  25431. }
  25432. },
  25433. back: {
  25434. height: math.unit(6, "feet"),
  25435. weight: math.unit(220, "lb"),
  25436. name: "Back",
  25437. image: {
  25438. source: "./media/characters/lynn-rhea/back.svg",
  25439. extra: 310 / 273
  25440. }
  25441. },
  25442. dicks: {
  25443. height: math.unit(0.9, "feet"),
  25444. name: "Dicks",
  25445. image: {
  25446. source: "./media/characters/lynn-rhea/dicks.svg"
  25447. }
  25448. },
  25449. slit: {
  25450. height: math.unit(0.4, "feet"),
  25451. name: "Slit",
  25452. image: {
  25453. source: "./media/characters/lynn-rhea/slit.svg"
  25454. }
  25455. },
  25456. },
  25457. [
  25458. {
  25459. name: "Micro",
  25460. height: math.unit(1, "inch")
  25461. },
  25462. {
  25463. name: "Macro",
  25464. height: math.unit(60, "feet"),
  25465. default: true
  25466. },
  25467. {
  25468. name: "Megamacro",
  25469. height: math.unit(2, "miles")
  25470. },
  25471. {
  25472. name: "Gigamacro",
  25473. height: math.unit(3, "earths")
  25474. },
  25475. {
  25476. name: "Galactic",
  25477. height: math.unit(0.8, "galaxies")
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25483. {
  25484. front: {
  25485. height: math.unit(1600, "feet"),
  25486. weight: math.unit(85758785169, "kg"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/valathos/front.svg",
  25490. extra: 1451 / 1339
  25491. }
  25492. },
  25493. },
  25494. [
  25495. {
  25496. name: "Macro",
  25497. height: math.unit(1600, "feet"),
  25498. default: true
  25499. },
  25500. ]
  25501. ))
  25502. characterMakers.push(() => makeCharacter(
  25503. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25504. {
  25505. front: {
  25506. height: math.unit(7 + 5 / 12, "feet"),
  25507. weight: math.unit(300, "lb"),
  25508. name: "Front",
  25509. image: {
  25510. source: "./media/characters/azula/front.svg",
  25511. extra: 3208 / 2880,
  25512. bottom: 80.2 / 3277
  25513. }
  25514. },
  25515. back: {
  25516. height: math.unit(7 + 5 / 12, "feet"),
  25517. weight: math.unit(300, "lb"),
  25518. name: "Back",
  25519. image: {
  25520. source: "./media/characters/azula/back.svg",
  25521. extra: 3169 / 2822,
  25522. bottom: 150.6 / 3321
  25523. }
  25524. },
  25525. },
  25526. [
  25527. {
  25528. name: "Normal",
  25529. height: math.unit(7 + 5 / 12, "feet"),
  25530. default: true
  25531. },
  25532. {
  25533. name: "Big",
  25534. height: math.unit(20, "feet")
  25535. },
  25536. ]
  25537. ))
  25538. characterMakers.push(() => makeCharacter(
  25539. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25540. {
  25541. front: {
  25542. height: math.unit(5 + 1 / 12, "feet"),
  25543. weight: math.unit(110, "lb"),
  25544. name: "Front",
  25545. image: {
  25546. source: "./media/characters/rupert/front.svg",
  25547. extra: 1549 / 1495,
  25548. bottom: 54.2 / 1604.4
  25549. }
  25550. },
  25551. },
  25552. [
  25553. {
  25554. name: "Normal",
  25555. height: math.unit(5 + 1 / 12, "feet"),
  25556. default: true
  25557. },
  25558. ]
  25559. ))
  25560. characterMakers.push(() => makeCharacter(
  25561. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25562. {
  25563. front: {
  25564. height: math.unit(8 + 4 / 12, "feet"),
  25565. weight: math.unit(350, "lb"),
  25566. name: "Front",
  25567. image: {
  25568. source: "./media/characters/sheera-castellar/front.svg",
  25569. extra: 1957 / 1894,
  25570. bottom: 26.97 / 1975.017
  25571. }
  25572. },
  25573. side: {
  25574. height: math.unit(8 + 4 / 12, "feet"),
  25575. weight: math.unit(350, "lb"),
  25576. name: "Side",
  25577. image: {
  25578. source: "./media/characters/sheera-castellar/side.svg",
  25579. extra: 1957 / 1894
  25580. }
  25581. },
  25582. back: {
  25583. height: math.unit(8 + 4 / 12, "feet"),
  25584. weight: math.unit(350, "lb"),
  25585. name: "Back",
  25586. image: {
  25587. source: "./media/characters/sheera-castellar/back.svg",
  25588. extra: 1957 / 1894
  25589. }
  25590. },
  25591. angled: {
  25592. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25593. weight: math.unit(350, "lb"),
  25594. name: "Angled",
  25595. image: {
  25596. source: "./media/characters/sheera-castellar/angled.svg",
  25597. extra: 1807 / 1707,
  25598. bottom: 68 / 1875
  25599. }
  25600. },
  25601. genitals: {
  25602. height: math.unit(2.2, "feet"),
  25603. name: "Genitals",
  25604. image: {
  25605. source: "./media/characters/sheera-castellar/genitals.svg"
  25606. }
  25607. },
  25608. taur: {
  25609. height: math.unit(10 + 6/12, "feet"),
  25610. name: "Taur",
  25611. image: {
  25612. source: "./media/characters/sheera-castellar/taur.svg",
  25613. extra: 2017/1909,
  25614. bottom: 185/2202
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(8 + 4 / 12, "feet")
  25622. },
  25623. {
  25624. name: "Macro",
  25625. height: math.unit(150, "feet"),
  25626. default: true
  25627. },
  25628. {
  25629. name: "Macro+",
  25630. height: math.unit(800, "feet")
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25636. {
  25637. front: {
  25638. height: math.unit(6, "feet"),
  25639. weight: math.unit(150, "lb"),
  25640. name: "Front",
  25641. image: {
  25642. source: "./media/characters/jaipur/front.svg",
  25643. extra: 3860 / 3731,
  25644. bottom: 287 / 4140
  25645. }
  25646. },
  25647. back: {
  25648. height: math.unit(6, "feet"),
  25649. weight: math.unit(150, "lb"),
  25650. name: "Back",
  25651. image: {
  25652. source: "./media/characters/jaipur/back.svg",
  25653. extra: 1637/1561,
  25654. bottom: 154/1791
  25655. }
  25656. },
  25657. },
  25658. [
  25659. {
  25660. name: "Normal",
  25661. height: math.unit(1.85, "meters"),
  25662. default: true
  25663. },
  25664. {
  25665. name: "Macro",
  25666. height: math.unit(150, "meters")
  25667. },
  25668. {
  25669. name: "Macro+",
  25670. height: math.unit(0.5, "miles")
  25671. },
  25672. {
  25673. name: "Macro++",
  25674. height: math.unit(2.5, "miles")
  25675. },
  25676. {
  25677. name: "Macro+++",
  25678. height: math.unit(12, "miles")
  25679. },
  25680. {
  25681. name: "Macro++++",
  25682. height: math.unit(120, "miles")
  25683. },
  25684. {
  25685. name: "Macro+++++",
  25686. height: math.unit(1200, "miles")
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25692. {
  25693. front: {
  25694. height: math.unit(6, "feet"),
  25695. weight: math.unit(150, "lb"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/sheila-wolf/front.svg",
  25699. extra: 1931 / 1808,
  25700. bottom: 29.5 / 1960
  25701. }
  25702. },
  25703. dick: {
  25704. height: math.unit(1.464, "feet"),
  25705. name: "Dick",
  25706. image: {
  25707. source: "./media/characters/sheila-wolf/dick.svg"
  25708. }
  25709. },
  25710. muzzle: {
  25711. height: math.unit(0.513, "feet"),
  25712. name: "Muzzle",
  25713. image: {
  25714. source: "./media/characters/sheila-wolf/muzzle.svg"
  25715. }
  25716. },
  25717. },
  25718. [
  25719. {
  25720. name: "Macro",
  25721. height: math.unit(70, "feet"),
  25722. default: true
  25723. },
  25724. ]
  25725. ))
  25726. characterMakers.push(() => makeCharacter(
  25727. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25728. {
  25729. front: {
  25730. height: math.unit(32, "meters"),
  25731. weight: math.unit(300000, "kg"),
  25732. name: "Front",
  25733. image: {
  25734. source: "./media/characters/almor/front.svg",
  25735. extra: 1408 / 1322,
  25736. bottom: 94.6 / 1506.5
  25737. }
  25738. },
  25739. },
  25740. [
  25741. {
  25742. name: "Macro",
  25743. height: math.unit(32, "meters"),
  25744. default: true
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25750. {
  25751. front: {
  25752. height: math.unit(7, "feet"),
  25753. weight: math.unit(200, "lb"),
  25754. name: "Front",
  25755. image: {
  25756. source: "./media/characters/silver/front.svg",
  25757. extra: 472.1 / 450.5,
  25758. bottom: 26.5 / 499.424
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Normal",
  25765. height: math.unit(7, "feet"),
  25766. default: true
  25767. },
  25768. {
  25769. name: "Macro",
  25770. height: math.unit(800, "feet")
  25771. },
  25772. {
  25773. name: "Megamacro",
  25774. height: math.unit(250, "miles")
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25780. {
  25781. front: {
  25782. height: math.unit(6, "feet"),
  25783. weight: math.unit(150, "lb"),
  25784. name: "Front",
  25785. image: {
  25786. source: "./media/characters/pliskin/front.svg",
  25787. extra: 1469 / 1359,
  25788. bottom: 70 / 1540
  25789. }
  25790. },
  25791. },
  25792. [
  25793. {
  25794. name: "Micro",
  25795. height: math.unit(3, "inches")
  25796. },
  25797. {
  25798. name: "Normal",
  25799. height: math.unit(5 + 11 / 12, "feet"),
  25800. default: true
  25801. },
  25802. {
  25803. name: "Macro",
  25804. height: math.unit(120, "feet")
  25805. },
  25806. ]
  25807. ))
  25808. characterMakers.push(() => makeCharacter(
  25809. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25810. {
  25811. front: {
  25812. height: math.unit(6, "feet"),
  25813. weight: math.unit(150, "lb"),
  25814. name: "Front",
  25815. image: {
  25816. source: "./media/characters/sammy/front.svg",
  25817. extra: 1193 / 1089,
  25818. bottom: 30.5 / 1226
  25819. }
  25820. },
  25821. },
  25822. [
  25823. {
  25824. name: "Macro",
  25825. height: math.unit(1700, "feet"),
  25826. default: true
  25827. },
  25828. {
  25829. name: "Examacro",
  25830. height: math.unit(2.5e9, "lightyears")
  25831. },
  25832. ]
  25833. ))
  25834. characterMakers.push(() => makeCharacter(
  25835. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25836. {
  25837. front: {
  25838. height: math.unit(21, "meters"),
  25839. weight: math.unit(12, "tonnes"),
  25840. name: "Front",
  25841. image: {
  25842. source: "./media/characters/kuru/front.svg",
  25843. extra: 4301 / 3785,
  25844. bottom: 371.3 / 4691
  25845. }
  25846. },
  25847. },
  25848. [
  25849. {
  25850. name: "Macro",
  25851. height: math.unit(21, "meters"),
  25852. default: true
  25853. },
  25854. ]
  25855. ))
  25856. characterMakers.push(() => makeCharacter(
  25857. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25858. {
  25859. front: {
  25860. height: math.unit(23, "meters"),
  25861. weight: math.unit(12.2, "tonnes"),
  25862. name: "Front",
  25863. image: {
  25864. source: "./media/characters/rakka/front.svg",
  25865. extra: 4670 / 4169,
  25866. bottom: 301 / 4968.7
  25867. }
  25868. },
  25869. },
  25870. [
  25871. {
  25872. name: "Macro",
  25873. height: math.unit(23, "meters"),
  25874. default: true
  25875. },
  25876. ]
  25877. ))
  25878. characterMakers.push(() => makeCharacter(
  25879. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25880. {
  25881. front: {
  25882. height: math.unit(6, "feet"),
  25883. weight: math.unit(150, "lb"),
  25884. name: "Front",
  25885. image: {
  25886. source: "./media/characters/rhys-feline/front.svg",
  25887. extra: 2488 / 2308,
  25888. bottom: 35.67 / 2519.19
  25889. }
  25890. },
  25891. },
  25892. [
  25893. {
  25894. name: "Really Small",
  25895. height: math.unit(1, "nm")
  25896. },
  25897. {
  25898. name: "Micro",
  25899. height: math.unit(4, "inches")
  25900. },
  25901. {
  25902. name: "Normal",
  25903. height: math.unit(4 + 10 / 12, "feet"),
  25904. default: true
  25905. },
  25906. {
  25907. name: "Macro",
  25908. height: math.unit(100, "feet")
  25909. },
  25910. {
  25911. name: "Megamacto",
  25912. height: math.unit(50, "miles")
  25913. },
  25914. ]
  25915. ))
  25916. characterMakers.push(() => makeCharacter(
  25917. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25918. {
  25919. side: {
  25920. height: math.unit(30, "feet"),
  25921. weight: math.unit(35000, "kg"),
  25922. name: "Side",
  25923. image: {
  25924. source: "./media/characters/alydar/side.svg",
  25925. extra: 234 / 222,
  25926. bottom: 6.5 / 241
  25927. }
  25928. },
  25929. front: {
  25930. height: math.unit(30, "feet"),
  25931. weight: math.unit(35000, "kg"),
  25932. name: "Front",
  25933. image: {
  25934. source: "./media/characters/alydar/front.svg",
  25935. extra: 223.37 / 210.2,
  25936. bottom: 22.3 / 246.76
  25937. }
  25938. },
  25939. top: {
  25940. height: math.unit(64.54, "feet"),
  25941. weight: math.unit(35000, "kg"),
  25942. name: "Top",
  25943. image: {
  25944. source: "./media/characters/alydar/top.svg"
  25945. }
  25946. },
  25947. anthro: {
  25948. height: math.unit(30, "feet"),
  25949. weight: math.unit(9000, "kg"),
  25950. name: "Anthro",
  25951. image: {
  25952. source: "./media/characters/alydar/anthro.svg",
  25953. extra: 432 / 421,
  25954. bottom: 7.18 / 440
  25955. }
  25956. },
  25957. maw: {
  25958. height: math.unit(11.693, "feet"),
  25959. name: "Maw",
  25960. image: {
  25961. source: "./media/characters/alydar/maw.svg"
  25962. }
  25963. },
  25964. head: {
  25965. height: math.unit(11.693, "feet"),
  25966. name: "Head",
  25967. image: {
  25968. source: "./media/characters/alydar/head.svg"
  25969. }
  25970. },
  25971. headAlt: {
  25972. height: math.unit(12.861, "feet"),
  25973. name: "Head (Alt)",
  25974. image: {
  25975. source: "./media/characters/alydar/head-alt.svg"
  25976. }
  25977. },
  25978. wing: {
  25979. height: math.unit(20.712, "feet"),
  25980. name: "Wing",
  25981. image: {
  25982. source: "./media/characters/alydar/wing.svg"
  25983. }
  25984. },
  25985. wingFeather: {
  25986. height: math.unit(9.662, "feet"),
  25987. name: "Wing Feather",
  25988. image: {
  25989. source: "./media/characters/alydar/wing-feather.svg"
  25990. }
  25991. },
  25992. countourFeather: {
  25993. height: math.unit(4.154, "feet"),
  25994. name: "Contour Feather",
  25995. image: {
  25996. source: "./media/characters/alydar/contour-feather.svg"
  25997. }
  25998. },
  25999. },
  26000. [
  26001. {
  26002. name: "Diplomatic",
  26003. height: math.unit(13, "feet"),
  26004. default: true
  26005. },
  26006. {
  26007. name: "Small",
  26008. height: math.unit(30, "feet")
  26009. },
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(95, "feet"),
  26013. default: true
  26014. },
  26015. {
  26016. name: "Large",
  26017. height: math.unit(285, "feet")
  26018. },
  26019. {
  26020. name: "Incomprehensible",
  26021. height: math.unit(450, "megameters")
  26022. },
  26023. ]
  26024. ))
  26025. characterMakers.push(() => makeCharacter(
  26026. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26027. {
  26028. side: {
  26029. height: math.unit(11, "feet"),
  26030. weight: math.unit(1750, "kg"),
  26031. name: "Side",
  26032. image: {
  26033. source: "./media/characters/selicia/side.svg",
  26034. extra: 440 / 396,
  26035. bottom: 24.8 / 465.979
  26036. }
  26037. },
  26038. maw: {
  26039. height: math.unit(4.665, "feet"),
  26040. name: "Maw",
  26041. image: {
  26042. source: "./media/characters/selicia/maw.svg"
  26043. }
  26044. },
  26045. },
  26046. [
  26047. {
  26048. name: "Normal",
  26049. height: math.unit(11, "feet"),
  26050. default: true
  26051. },
  26052. ]
  26053. ))
  26054. characterMakers.push(() => makeCharacter(
  26055. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26056. {
  26057. side: {
  26058. height: math.unit(2 + 6 / 12, "feet"),
  26059. weight: math.unit(30, "lb"),
  26060. name: "Side",
  26061. image: {
  26062. source: "./media/characters/layla/side.svg",
  26063. extra: 244 / 188,
  26064. bottom: 18.2 / 262.1
  26065. }
  26066. },
  26067. back: {
  26068. height: math.unit(2 + 6 / 12, "feet"),
  26069. weight: math.unit(30, "lb"),
  26070. name: "Back",
  26071. image: {
  26072. source: "./media/characters/layla/back.svg",
  26073. extra: 308 / 241.5,
  26074. bottom: 8.9 / 316.8
  26075. }
  26076. },
  26077. cumming: {
  26078. height: math.unit(2 + 6 / 12, "feet"),
  26079. weight: math.unit(30, "lb"),
  26080. name: "Cumming",
  26081. image: {
  26082. source: "./media/characters/layla/cumming.svg",
  26083. extra: 342 / 279,
  26084. bottom: 595 / 938
  26085. }
  26086. },
  26087. dickFlaccid: {
  26088. height: math.unit(2.595, "feet"),
  26089. name: "Flaccid Genitals",
  26090. image: {
  26091. source: "./media/characters/layla/dick-flaccid.svg"
  26092. }
  26093. },
  26094. dickErect: {
  26095. height: math.unit(2.359, "feet"),
  26096. name: "Erect Genitals",
  26097. image: {
  26098. source: "./media/characters/layla/dick-erect.svg"
  26099. }
  26100. },
  26101. dragon: {
  26102. height: math.unit(40, "feet"),
  26103. name: "Dragon",
  26104. image: {
  26105. source: "./media/characters/layla/dragon.svg",
  26106. extra: 610/535,
  26107. bottom: 367/977
  26108. }
  26109. },
  26110. taur: {
  26111. height: math.unit(30, "feet"),
  26112. name: "Taur",
  26113. image: {
  26114. source: "./media/characters/layla/taur.svg",
  26115. extra: 1268/1199,
  26116. bottom: 112/1380
  26117. }
  26118. },
  26119. },
  26120. [
  26121. {
  26122. name: "Micro",
  26123. height: math.unit(1, "inch")
  26124. },
  26125. {
  26126. name: "Small",
  26127. height: math.unit(1, "foot")
  26128. },
  26129. {
  26130. name: "Normal",
  26131. height: math.unit(2 + 6 / 12, "feet"),
  26132. default: true
  26133. },
  26134. {
  26135. name: "Macro",
  26136. height: math.unit(200, "feet")
  26137. },
  26138. {
  26139. name: "Megamacro",
  26140. height: math.unit(1000, "miles")
  26141. },
  26142. {
  26143. name: "Planetary",
  26144. height: math.unit(8000, "miles")
  26145. },
  26146. {
  26147. name: "True Layla",
  26148. height: math.unit(200000 * 7, "multiverses")
  26149. },
  26150. ]
  26151. ))
  26152. characterMakers.push(() => makeCharacter(
  26153. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26154. {
  26155. back: {
  26156. height: math.unit(10.5, "feet"),
  26157. weight: math.unit(800, "lb"),
  26158. name: "Back",
  26159. image: {
  26160. source: "./media/characters/knox/back.svg",
  26161. extra: 1486 / 1089,
  26162. bottom: 107 / 1601.4
  26163. }
  26164. },
  26165. side: {
  26166. height: math.unit(10.5, "feet"),
  26167. weight: math.unit(800, "lb"),
  26168. name: "Side",
  26169. image: {
  26170. source: "./media/characters/knox/side.svg",
  26171. extra: 244 / 218,
  26172. bottom: 14 / 260
  26173. }
  26174. },
  26175. },
  26176. [
  26177. {
  26178. name: "Compact",
  26179. height: math.unit(10.5, "feet"),
  26180. default: true
  26181. },
  26182. {
  26183. name: "Dynamax",
  26184. height: math.unit(210, "feet")
  26185. },
  26186. {
  26187. name: "Full Macro",
  26188. height: math.unit(850, "feet")
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(28, "feet"),
  26197. weight: math.unit(10500, "lb"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/kayda/front.svg",
  26201. extra: 1536 / 1428,
  26202. bottom: 68.7 / 1603
  26203. }
  26204. },
  26205. back: {
  26206. height: math.unit(28, "feet"),
  26207. weight: math.unit(10500, "lb"),
  26208. name: "Back",
  26209. image: {
  26210. source: "./media/characters/kayda/back.svg",
  26211. extra: 1557 / 1464,
  26212. bottom: 39.5 / 1597.49
  26213. }
  26214. },
  26215. dick: {
  26216. height: math.unit(3.858, "feet"),
  26217. name: "Dick",
  26218. image: {
  26219. source: "./media/characters/kayda/dick.svg"
  26220. }
  26221. },
  26222. },
  26223. [
  26224. {
  26225. name: "Macro",
  26226. height: math.unit(28, "feet"),
  26227. default: true
  26228. },
  26229. ]
  26230. ))
  26231. characterMakers.push(() => makeCharacter(
  26232. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26233. {
  26234. front: {
  26235. height: math.unit(10 + 11 / 12, "feet"),
  26236. weight: math.unit(1400, "lb"),
  26237. name: "Front",
  26238. image: {
  26239. source: "./media/characters/brian/front.svg",
  26240. extra: 737 / 692,
  26241. bottom: 55.4 / 785
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Normal",
  26248. height: math.unit(10 + 11 / 12, "feet"),
  26249. default: true
  26250. },
  26251. ]
  26252. ))
  26253. characterMakers.push(() => makeCharacter(
  26254. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26255. {
  26256. front: {
  26257. height: math.unit(5 + 8 / 12, "feet"),
  26258. weight: math.unit(140, "lb"),
  26259. name: "Front",
  26260. image: {
  26261. source: "./media/characters/khemri/front.svg",
  26262. extra: 4780 / 4059,
  26263. bottom: 80.1 / 4859.25
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Micro",
  26270. height: math.unit(6, "inches")
  26271. },
  26272. {
  26273. name: "Normal",
  26274. height: math.unit(5 + 8 / 12, "feet"),
  26275. default: true
  26276. },
  26277. ]
  26278. ))
  26279. characterMakers.push(() => makeCharacter(
  26280. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26281. {
  26282. front: {
  26283. height: math.unit(13, "feet"),
  26284. weight: math.unit(1700, "lb"),
  26285. name: "Front",
  26286. image: {
  26287. source: "./media/characters/felix-braveheart/front.svg",
  26288. extra: 1222 / 1157,
  26289. bottom: 53.2 / 1280
  26290. }
  26291. },
  26292. back: {
  26293. height: math.unit(13, "feet"),
  26294. weight: math.unit(1700, "lb"),
  26295. name: "Back",
  26296. image: {
  26297. source: "./media/characters/felix-braveheart/back.svg",
  26298. extra: 1277 / 1203,
  26299. bottom: 50.2 / 1327
  26300. }
  26301. },
  26302. feral: {
  26303. height: math.unit(6, "feet"),
  26304. weight: math.unit(400, "lb"),
  26305. name: "Feral",
  26306. image: {
  26307. source: "./media/characters/felix-braveheart/feral.svg",
  26308. extra: 682 / 625,
  26309. bottom: 6.9 / 688
  26310. }
  26311. },
  26312. },
  26313. [
  26314. {
  26315. name: "Normal",
  26316. height: math.unit(13, "feet"),
  26317. default: true
  26318. },
  26319. ]
  26320. ))
  26321. characterMakers.push(() => makeCharacter(
  26322. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26323. {
  26324. side: {
  26325. height: math.unit(5 + 11 / 12, "feet"),
  26326. weight: math.unit(1400, "lb"),
  26327. name: "Side",
  26328. image: {
  26329. source: "./media/characters/shadow-blade/side.svg",
  26330. extra: 1726 / 1267,
  26331. bottom: 58.4 / 1785
  26332. }
  26333. },
  26334. },
  26335. [
  26336. {
  26337. name: "Normal",
  26338. height: math.unit(5 + 11 / 12, "feet"),
  26339. default: true
  26340. },
  26341. ]
  26342. ))
  26343. characterMakers.push(() => makeCharacter(
  26344. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26345. {
  26346. front: {
  26347. height: math.unit(1 + 6 / 12, "feet"),
  26348. weight: math.unit(25, "lb"),
  26349. name: "Front",
  26350. image: {
  26351. source: "./media/characters/karla-halldor/front.svg",
  26352. extra: 1459 / 1383,
  26353. bottom: 12 / 1472
  26354. }
  26355. },
  26356. },
  26357. [
  26358. {
  26359. name: "Normal",
  26360. height: math.unit(1 + 6 / 12, "feet"),
  26361. default: true
  26362. },
  26363. ]
  26364. ))
  26365. characterMakers.push(() => makeCharacter(
  26366. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26367. {
  26368. front: {
  26369. height: math.unit(6 + 2 / 12, "feet"),
  26370. weight: math.unit(160, "lb"),
  26371. name: "Front",
  26372. image: {
  26373. source: "./media/characters/ariam/front.svg",
  26374. extra: 1073/976,
  26375. bottom: 52/1125
  26376. }
  26377. },
  26378. back: {
  26379. height: math.unit(6 + 2/12, "feet"),
  26380. weight: math.unit(160, "lb"),
  26381. name: "Back",
  26382. image: {
  26383. source: "./media/characters/ariam/back.svg",
  26384. extra: 1103/1023,
  26385. bottom: 9/1112
  26386. }
  26387. },
  26388. dressed: {
  26389. height: math.unit(6 + 2/12, "feet"),
  26390. weight: math.unit(160, "lb"),
  26391. name: "Dressed",
  26392. image: {
  26393. source: "./media/characters/ariam/dressed.svg",
  26394. extra: 1099/1009,
  26395. bottom: 25/1124
  26396. }
  26397. },
  26398. squatting: {
  26399. height: math.unit(4.1, "feet"),
  26400. weight: math.unit(160, "lb"),
  26401. name: "Squatting",
  26402. image: {
  26403. source: "./media/characters/ariam/squatting.svg",
  26404. extra: 2617 / 2112,
  26405. bottom: 61.2 / 2681,
  26406. }
  26407. },
  26408. },
  26409. [
  26410. {
  26411. name: "Normal",
  26412. height: math.unit(6 + 2 / 12, "feet"),
  26413. default: true
  26414. },
  26415. {
  26416. name: "Normal+",
  26417. height: math.unit(4, "meters")
  26418. },
  26419. {
  26420. name: "Macro",
  26421. height: math.unit(50, "meters")
  26422. },
  26423. {
  26424. name: "Macro+",
  26425. height: math.unit(100, "meters")
  26426. },
  26427. {
  26428. name: "Megamacro",
  26429. height: math.unit(20, "km")
  26430. },
  26431. {
  26432. name: "Caretaker",
  26433. height: math.unit(444, "megameters")
  26434. },
  26435. ]
  26436. ))
  26437. characterMakers.push(() => makeCharacter(
  26438. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26439. {
  26440. front: {
  26441. height: math.unit(1.67, "meters"),
  26442. weight: math.unit(140, "lb"),
  26443. name: "Front",
  26444. image: {
  26445. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26446. extra: 438 / 410,
  26447. bottom: 0.75 / 439
  26448. }
  26449. },
  26450. },
  26451. [
  26452. {
  26453. name: "Shrunken",
  26454. height: math.unit(7.6, "cm")
  26455. },
  26456. {
  26457. name: "Human Scale",
  26458. height: math.unit(1.67, "meters")
  26459. },
  26460. {
  26461. name: "Wolxi Scale",
  26462. height: math.unit(36.7, "meters"),
  26463. default: true
  26464. },
  26465. ]
  26466. ))
  26467. characterMakers.push(() => makeCharacter(
  26468. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26469. {
  26470. front: {
  26471. height: math.unit(1.73, "meters"),
  26472. weight: math.unit(240, "lb"),
  26473. name: "Front",
  26474. image: {
  26475. source: "./media/characters/izue-two-mothers/front.svg",
  26476. extra: 469 / 437,
  26477. bottom: 1.24 / 470.6
  26478. }
  26479. },
  26480. },
  26481. [
  26482. {
  26483. name: "Shrunken",
  26484. height: math.unit(7.86, "cm")
  26485. },
  26486. {
  26487. name: "Human Scale",
  26488. height: math.unit(1.73, "meters")
  26489. },
  26490. {
  26491. name: "Wolxi Scale",
  26492. height: math.unit(38, "meters"),
  26493. default: true
  26494. },
  26495. ]
  26496. ))
  26497. characterMakers.push(() => makeCharacter(
  26498. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26499. {
  26500. front: {
  26501. height: math.unit(1.55, "meters"),
  26502. weight: math.unit(120, "lb"),
  26503. name: "Front",
  26504. image: {
  26505. source: "./media/characters/teeku-love-shack/front.svg",
  26506. extra: 387 / 362,
  26507. bottom: 1.51 / 388
  26508. }
  26509. },
  26510. },
  26511. [
  26512. {
  26513. name: "Shrunken",
  26514. height: math.unit(7, "cm")
  26515. },
  26516. {
  26517. name: "Human Scale",
  26518. height: math.unit(1.55, "meters")
  26519. },
  26520. {
  26521. name: "Wolxi Scale",
  26522. height: math.unit(34.1, "meters"),
  26523. default: true
  26524. },
  26525. ]
  26526. ))
  26527. characterMakers.push(() => makeCharacter(
  26528. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26529. {
  26530. front: {
  26531. height: math.unit(1.83, "meters"),
  26532. weight: math.unit(135, "lb"),
  26533. name: "Front",
  26534. image: {
  26535. source: "./media/characters/dejma-the-red/front.svg",
  26536. extra: 480 / 458,
  26537. bottom: 1.8 / 482
  26538. }
  26539. },
  26540. },
  26541. [
  26542. {
  26543. name: "Shrunken",
  26544. height: math.unit(8.3, "cm")
  26545. },
  26546. {
  26547. name: "Human Scale",
  26548. height: math.unit(1.83, "meters")
  26549. },
  26550. {
  26551. name: "Wolxi Scale",
  26552. height: math.unit(40, "meters"),
  26553. default: true
  26554. },
  26555. ]
  26556. ))
  26557. characterMakers.push(() => makeCharacter(
  26558. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26559. {
  26560. front: {
  26561. height: math.unit(1.78, "meters"),
  26562. weight: math.unit(65, "kg"),
  26563. name: "Front",
  26564. image: {
  26565. source: "./media/characters/aki/front.svg",
  26566. extra: 452 / 415
  26567. }
  26568. },
  26569. frontNsfw: {
  26570. height: math.unit(1.78, "meters"),
  26571. weight: math.unit(65, "kg"),
  26572. name: "Front (NSFW)",
  26573. image: {
  26574. source: "./media/characters/aki/front-nsfw.svg",
  26575. extra: 452 / 415
  26576. }
  26577. },
  26578. back: {
  26579. height: math.unit(1.78, "meters"),
  26580. weight: math.unit(65, "kg"),
  26581. name: "Back",
  26582. image: {
  26583. source: "./media/characters/aki/back.svg",
  26584. extra: 452 / 415
  26585. }
  26586. },
  26587. rump: {
  26588. height: math.unit(2.05, "feet"),
  26589. name: "Rump",
  26590. image: {
  26591. source: "./media/characters/aki/rump.svg"
  26592. }
  26593. },
  26594. dick: {
  26595. height: math.unit(0.95, "feet"),
  26596. name: "Dick",
  26597. image: {
  26598. source: "./media/characters/aki/dick.svg"
  26599. }
  26600. },
  26601. },
  26602. [
  26603. {
  26604. name: "Micro",
  26605. height: math.unit(15, "cm")
  26606. },
  26607. {
  26608. name: "Normal",
  26609. height: math.unit(178, "cm"),
  26610. default: true
  26611. },
  26612. {
  26613. name: "Macro",
  26614. height: math.unit(214, "m")
  26615. },
  26616. {
  26617. name: "Macro+",
  26618. height: math.unit(534, "m")
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26624. {
  26625. front: {
  26626. height: math.unit(5 + 5 / 12, "feet"),
  26627. weight: math.unit(120, "lb"),
  26628. name: "Front",
  26629. image: {
  26630. source: "./media/characters/ari/front.svg",
  26631. extra: 1550/1471,
  26632. bottom: 39/1589
  26633. }
  26634. },
  26635. },
  26636. [
  26637. {
  26638. name: "Normal",
  26639. height: math.unit(5 + 5 / 12, "feet")
  26640. },
  26641. {
  26642. name: "Macro",
  26643. height: math.unit(100, "feet"),
  26644. default: true
  26645. },
  26646. {
  26647. name: "Megamacro",
  26648. height: math.unit(100, "miles")
  26649. },
  26650. {
  26651. name: "Gigamacro",
  26652. height: math.unit(80000, "miles")
  26653. },
  26654. ]
  26655. ))
  26656. characterMakers.push(() => makeCharacter(
  26657. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26658. {
  26659. side: {
  26660. height: math.unit(9, "feet"),
  26661. weight: math.unit(400, "kg"),
  26662. name: "Side",
  26663. image: {
  26664. source: "./media/characters/bolt/side.svg",
  26665. extra: 1126 / 896,
  26666. bottom: 60 / 1187.3,
  26667. }
  26668. },
  26669. },
  26670. [
  26671. {
  26672. name: "Micro",
  26673. height: math.unit(5, "inches")
  26674. },
  26675. {
  26676. name: "Normal",
  26677. height: math.unit(9, "feet"),
  26678. default: true
  26679. },
  26680. {
  26681. name: "Macro",
  26682. height: math.unit(700, "feet")
  26683. },
  26684. {
  26685. name: "Max Size",
  26686. height: math.unit(1.52e22, "yottameters")
  26687. },
  26688. ]
  26689. ))
  26690. characterMakers.push(() => makeCharacter(
  26691. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26692. {
  26693. front: {
  26694. height: math.unit(4.3, "meters"),
  26695. weight: math.unit(3, "tons"),
  26696. name: "Front",
  26697. image: {
  26698. source: "./media/characters/draekon-sylviar/front.svg",
  26699. extra: 2072/1512,
  26700. bottom: 74/2146
  26701. }
  26702. },
  26703. back: {
  26704. height: math.unit(4.3, "meters"),
  26705. weight: math.unit(3, "tons"),
  26706. name: "Back",
  26707. image: {
  26708. source: "./media/characters/draekon-sylviar/back.svg",
  26709. extra: 1639/1483,
  26710. bottom: 41/1680
  26711. }
  26712. },
  26713. feral: {
  26714. height: math.unit(1.15, "meters"),
  26715. weight: math.unit(3, "tons"),
  26716. name: "Feral",
  26717. image: {
  26718. source: "./media/characters/draekon-sylviar/feral.svg",
  26719. extra: 1033/395,
  26720. bottom: 130/1163
  26721. }
  26722. },
  26723. maw: {
  26724. height: math.unit(1.3, "meters"),
  26725. name: "Maw",
  26726. image: {
  26727. source: "./media/characters/draekon-sylviar/maw.svg"
  26728. }
  26729. },
  26730. mawSeparated: {
  26731. height: math.unit(1.53, "meters"),
  26732. name: "Separated Maw",
  26733. image: {
  26734. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26735. }
  26736. },
  26737. tail: {
  26738. height: math.unit(1.15, "meters"),
  26739. name: "Tail",
  26740. image: {
  26741. source: "./media/characters/draekon-sylviar/tail.svg"
  26742. }
  26743. },
  26744. tailDick: {
  26745. height: math.unit(1.15, "meters"),
  26746. name: "Tail (Dick)",
  26747. image: {
  26748. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26749. }
  26750. },
  26751. tailDickSeparated: {
  26752. height: math.unit(1.19, "meters"),
  26753. name: "Tail (Separated Dick)",
  26754. image: {
  26755. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26756. }
  26757. },
  26758. slit: {
  26759. height: math.unit(1, "meters"),
  26760. name: "Slit",
  26761. image: {
  26762. source: "./media/characters/draekon-sylviar/slit.svg"
  26763. }
  26764. },
  26765. dick: {
  26766. height: math.unit(1.15, "meters"),
  26767. name: "Dick",
  26768. image: {
  26769. source: "./media/characters/draekon-sylviar/dick.svg"
  26770. }
  26771. },
  26772. dickSeparated: {
  26773. height: math.unit(1.1, "meters"),
  26774. name: "Separated Dick",
  26775. image: {
  26776. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26777. }
  26778. },
  26779. sheath: {
  26780. height: math.unit(1.15, "meters"),
  26781. name: "Sheath",
  26782. image: {
  26783. source: "./media/characters/draekon-sylviar/sheath.svg"
  26784. }
  26785. },
  26786. },
  26787. [
  26788. {
  26789. name: "Small",
  26790. height: math.unit(4.53 / 2, "meters"),
  26791. default: true
  26792. },
  26793. {
  26794. name: "Normal",
  26795. height: math.unit(4.53, "meters"),
  26796. default: true
  26797. },
  26798. {
  26799. name: "Large",
  26800. height: math.unit(4.53 * 2, "meters"),
  26801. },
  26802. ]
  26803. ))
  26804. characterMakers.push(() => makeCharacter(
  26805. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26806. {
  26807. front: {
  26808. height: math.unit(6 + 2 / 12, "feet"),
  26809. weight: math.unit(180, "lb"),
  26810. name: "Front",
  26811. image: {
  26812. source: "./media/characters/brawler/front.svg",
  26813. extra: 3301 / 3027,
  26814. bottom: 138 / 3439
  26815. }
  26816. },
  26817. },
  26818. [
  26819. {
  26820. name: "Normal",
  26821. height: math.unit(6 + 2 / 12, "feet"),
  26822. default: true
  26823. },
  26824. ]
  26825. ))
  26826. characterMakers.push(() => makeCharacter(
  26827. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26828. {
  26829. front: {
  26830. height: math.unit(11, "feet"),
  26831. weight: math.unit(1000, "lb"),
  26832. name: "Front",
  26833. image: {
  26834. source: "./media/characters/alex/front.svg",
  26835. bottom: 44.5 / 620
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Micro",
  26842. height: math.unit(5, "inches")
  26843. },
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(11, "feet"),
  26847. default: true
  26848. },
  26849. {
  26850. name: "Macro",
  26851. height: math.unit(9.5e9, "feet")
  26852. },
  26853. {
  26854. name: "Max Size",
  26855. height: math.unit(1.4e283, "yottameters")
  26856. },
  26857. ]
  26858. ))
  26859. characterMakers.push(() => makeCharacter(
  26860. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26861. {
  26862. female: {
  26863. height: math.unit(29.9, "m"),
  26864. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26865. name: "Female",
  26866. image: {
  26867. source: "./media/characters/zenari/female.svg",
  26868. extra: 3281.6 / 3217,
  26869. bottom: 72.2 / 3353
  26870. }
  26871. },
  26872. male: {
  26873. height: math.unit(27.7, "m"),
  26874. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26875. name: "Male",
  26876. image: {
  26877. source: "./media/characters/zenari/male.svg",
  26878. extra: 3008 / 2991,
  26879. bottom: 54.6 / 3069
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Macro",
  26886. height: math.unit(29.7, "meters"),
  26887. default: true
  26888. },
  26889. ]
  26890. ))
  26891. characterMakers.push(() => makeCharacter(
  26892. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26893. {
  26894. female: {
  26895. height: math.unit(23.8, "m"),
  26896. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26897. name: "Female",
  26898. image: {
  26899. source: "./media/characters/mactarian/female.svg",
  26900. extra: 2662 / 2569,
  26901. bottom: 73 / 2736
  26902. }
  26903. },
  26904. male: {
  26905. height: math.unit(23.8, "m"),
  26906. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26907. name: "Male",
  26908. image: {
  26909. source: "./media/characters/mactarian/male.svg",
  26910. extra: 2673 / 2600,
  26911. bottom: 76 / 2750
  26912. }
  26913. },
  26914. },
  26915. [
  26916. {
  26917. name: "Macro",
  26918. height: math.unit(23.8, "meters"),
  26919. default: true
  26920. },
  26921. ]
  26922. ))
  26923. characterMakers.push(() => makeCharacter(
  26924. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26925. {
  26926. female: {
  26927. height: math.unit(19.3, "m"),
  26928. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26929. name: "Female",
  26930. image: {
  26931. source: "./media/characters/umok/female.svg",
  26932. extra: 2186 / 2078,
  26933. bottom: 87 / 2277
  26934. }
  26935. },
  26936. male: {
  26937. height: math.unit(19.5, "m"),
  26938. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26939. name: "Male",
  26940. image: {
  26941. source: "./media/characters/umok/male.svg",
  26942. extra: 2233 / 2140,
  26943. bottom: 24.4 / 2258
  26944. }
  26945. },
  26946. },
  26947. [
  26948. {
  26949. name: "Macro",
  26950. height: math.unit(19.3, "meters"),
  26951. default: true
  26952. },
  26953. ]
  26954. ))
  26955. characterMakers.push(() => makeCharacter(
  26956. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26957. {
  26958. female: {
  26959. height: math.unit(26.15, "m"),
  26960. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26961. name: "Female",
  26962. image: {
  26963. source: "./media/characters/joraxian/female.svg",
  26964. extra: 2912 / 2824,
  26965. bottom: 36 / 2956
  26966. }
  26967. },
  26968. male: {
  26969. height: math.unit(25.4, "m"),
  26970. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26971. name: "Male",
  26972. image: {
  26973. source: "./media/characters/joraxian/male.svg",
  26974. extra: 2877 / 2721,
  26975. bottom: 82 / 2967
  26976. }
  26977. },
  26978. },
  26979. [
  26980. {
  26981. name: "Macro",
  26982. height: math.unit(26.15, "meters"),
  26983. default: true
  26984. },
  26985. ]
  26986. ))
  26987. characterMakers.push(() => makeCharacter(
  26988. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26989. {
  26990. female: {
  26991. height: math.unit(21.6, "m"),
  26992. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26993. name: "Female",
  26994. image: {
  26995. source: "./media/characters/sthara/female.svg",
  26996. extra: 2516 / 2347,
  26997. bottom: 21.5 / 2537
  26998. }
  26999. },
  27000. male: {
  27001. height: math.unit(24, "m"),
  27002. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27003. name: "Male",
  27004. image: {
  27005. source: "./media/characters/sthara/male.svg",
  27006. extra: 2732 / 2607,
  27007. bottom: 23 / 2732
  27008. }
  27009. },
  27010. },
  27011. [
  27012. {
  27013. name: "Macro",
  27014. height: math.unit(21.6, "meters"),
  27015. default: true
  27016. },
  27017. ]
  27018. ))
  27019. characterMakers.push(() => makeCharacter(
  27020. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27021. {
  27022. front: {
  27023. height: math.unit(6 + 4 / 12, "feet"),
  27024. weight: math.unit(175, "lb"),
  27025. name: "Front",
  27026. image: {
  27027. source: "./media/characters/luka-bryzant/front.svg",
  27028. extra: 311 / 289,
  27029. bottom: 4 / 315
  27030. }
  27031. },
  27032. back: {
  27033. height: math.unit(6 + 4 / 12, "feet"),
  27034. weight: math.unit(175, "lb"),
  27035. name: "Back",
  27036. image: {
  27037. source: "./media/characters/luka-bryzant/back.svg",
  27038. extra: 311 / 289,
  27039. bottom: 3.8 / 313.7
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Micro",
  27046. height: math.unit(10, "inches")
  27047. },
  27048. {
  27049. name: "Normal",
  27050. height: math.unit(6 + 4 / 12, "feet"),
  27051. default: true
  27052. },
  27053. {
  27054. name: "Large",
  27055. height: math.unit(12, "feet")
  27056. },
  27057. ]
  27058. ))
  27059. characterMakers.push(() => makeCharacter(
  27060. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27061. {
  27062. front: {
  27063. height: math.unit(5 + 7 / 12, "feet"),
  27064. weight: math.unit(185, "lb"),
  27065. name: "Front",
  27066. image: {
  27067. source: "./media/characters/aman-aquila/front.svg",
  27068. extra: 1013 / 976,
  27069. bottom: 45.6 / 1057
  27070. }
  27071. },
  27072. side: {
  27073. height: math.unit(5 + 7 / 12, "feet"),
  27074. weight: math.unit(185, "lb"),
  27075. name: "Side",
  27076. image: {
  27077. source: "./media/characters/aman-aquila/side.svg",
  27078. extra: 1054 / 1011,
  27079. bottom: 15 / 1070
  27080. }
  27081. },
  27082. back: {
  27083. height: math.unit(5 + 7 / 12, "feet"),
  27084. weight: math.unit(185, "lb"),
  27085. name: "Back",
  27086. image: {
  27087. source: "./media/characters/aman-aquila/back.svg",
  27088. extra: 1026 / 970,
  27089. bottom: 12 / 1039
  27090. }
  27091. },
  27092. head: {
  27093. height: math.unit(1.211, "feet"),
  27094. name: "Head",
  27095. image: {
  27096. source: "./media/characters/aman-aquila/head.svg",
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Minimicro",
  27103. height: math.unit(0.057, "inches")
  27104. },
  27105. {
  27106. name: "Micro",
  27107. height: math.unit(7, "inches")
  27108. },
  27109. {
  27110. name: "Mini",
  27111. height: math.unit(3 + 7 / 12, "feet")
  27112. },
  27113. {
  27114. name: "Normal",
  27115. height: math.unit(5 + 7 / 12, "feet"),
  27116. default: true
  27117. },
  27118. {
  27119. name: "Macro",
  27120. height: math.unit(157 + 7 / 12, "feet")
  27121. },
  27122. {
  27123. name: "Megamacro",
  27124. height: math.unit(1557 + 7 / 12, "feet")
  27125. },
  27126. {
  27127. name: "Gigamacro",
  27128. height: math.unit(15557 + 7 / 12, "feet")
  27129. },
  27130. ]
  27131. ))
  27132. characterMakers.push(() => makeCharacter(
  27133. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27134. {
  27135. front: {
  27136. height: math.unit(3 + 2 / 12, "inches"),
  27137. weight: math.unit(0.3, "ounces"),
  27138. name: "Front",
  27139. image: {
  27140. source: "./media/characters/hiphae/front.svg",
  27141. extra: 1931 / 1683,
  27142. bottom: 24 / 1955
  27143. }
  27144. },
  27145. },
  27146. [
  27147. {
  27148. name: "Normal",
  27149. height: math.unit(3 + 1 / 2, "inches"),
  27150. default: true
  27151. },
  27152. ]
  27153. ))
  27154. characterMakers.push(() => makeCharacter(
  27155. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27156. {
  27157. front: {
  27158. height: math.unit(5 + 10 / 12, "feet"),
  27159. weight: math.unit(165, "lb"),
  27160. name: "Front",
  27161. image: {
  27162. source: "./media/characters/nicky/front.svg",
  27163. extra: 3144 / 2886,
  27164. bottom: 45.6 / 3192
  27165. }
  27166. },
  27167. back: {
  27168. height: math.unit(5 + 10 / 12, "feet"),
  27169. weight: math.unit(165, "lb"),
  27170. name: "Back",
  27171. image: {
  27172. source: "./media/characters/nicky/back.svg",
  27173. extra: 3055 / 2804,
  27174. bottom: 28.4 / 3087
  27175. }
  27176. },
  27177. frontclothed: {
  27178. height: math.unit(5 + 10 / 12, "feet"),
  27179. weight: math.unit(165, "lb"),
  27180. name: "Front-clothed",
  27181. image: {
  27182. source: "./media/characters/nicky/front-clothed.svg",
  27183. extra: 3184.9 / 2926.9,
  27184. bottom: 86.5 / 3239.9
  27185. }
  27186. },
  27187. foot: {
  27188. height: math.unit(1.16, "feet"),
  27189. name: "Foot",
  27190. image: {
  27191. source: "./media/characters/nicky/foot.svg"
  27192. }
  27193. },
  27194. feet: {
  27195. height: math.unit(1.34, "feet"),
  27196. name: "Feet",
  27197. image: {
  27198. source: "./media/characters/nicky/feet.svg"
  27199. }
  27200. },
  27201. maw: {
  27202. height: math.unit(0.9, "feet"),
  27203. name: "Maw",
  27204. image: {
  27205. source: "./media/characters/nicky/maw.svg"
  27206. }
  27207. },
  27208. },
  27209. [
  27210. {
  27211. name: "Normal",
  27212. height: math.unit(5 + 10 / 12, "feet"),
  27213. default: true
  27214. },
  27215. {
  27216. name: "Macro",
  27217. height: math.unit(60, "feet")
  27218. },
  27219. {
  27220. name: "Megamacro",
  27221. height: math.unit(1, "mile")
  27222. },
  27223. ]
  27224. ))
  27225. characterMakers.push(() => makeCharacter(
  27226. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27227. {
  27228. side: {
  27229. height: math.unit(10, "feet"),
  27230. weight: math.unit(600, "lb"),
  27231. name: "Side",
  27232. image: {
  27233. source: "./media/characters/blair/side.svg",
  27234. bottom: 16.6 / 475,
  27235. extra: 458 / 431
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Micro",
  27242. height: math.unit(8, "inches")
  27243. },
  27244. {
  27245. name: "Normal",
  27246. height: math.unit(10, "feet"),
  27247. default: true
  27248. },
  27249. {
  27250. name: "Macro",
  27251. height: math.unit(180, "feet")
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27257. {
  27258. front: {
  27259. height: math.unit(5 + 4 / 12, "feet"),
  27260. weight: math.unit(125, "lb"),
  27261. name: "Front",
  27262. image: {
  27263. source: "./media/characters/fisher/front.svg",
  27264. extra: 444 / 390,
  27265. bottom: 2 / 444.8
  27266. }
  27267. },
  27268. },
  27269. [
  27270. {
  27271. name: "Micro",
  27272. height: math.unit(4, "inches")
  27273. },
  27274. {
  27275. name: "Normal",
  27276. height: math.unit(5 + 4 / 12, "feet"),
  27277. default: true
  27278. },
  27279. {
  27280. name: "Macro",
  27281. height: math.unit(100, "feet")
  27282. },
  27283. ]
  27284. ))
  27285. characterMakers.push(() => makeCharacter(
  27286. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27287. {
  27288. front: {
  27289. height: math.unit(6.71, "feet"),
  27290. weight: math.unit(200, "lb"),
  27291. preyCapacity: math.unit(1000000, "people"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/gliss/front.svg",
  27295. extra: 2347 / 2231,
  27296. bottom: 113 / 2462
  27297. }
  27298. },
  27299. hammerspaceSize: {
  27300. height: math.unit(6.71 * 717, "feet"),
  27301. weight: math.unit(200, "lb"),
  27302. preyCapacity: math.unit(1000000, "people"),
  27303. name: "Hammerspace Size",
  27304. image: {
  27305. source: "./media/characters/gliss/front.svg",
  27306. extra: 2347 / 2231,
  27307. bottom: 113 / 2462
  27308. }
  27309. },
  27310. },
  27311. [
  27312. {
  27313. name: "Normal",
  27314. height: math.unit(6.71, "feet"),
  27315. default: true
  27316. },
  27317. ]
  27318. ))
  27319. characterMakers.push(() => makeCharacter(
  27320. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27321. {
  27322. side: {
  27323. height: math.unit(1.44, "m"),
  27324. weight: math.unit(80, "kg"),
  27325. name: "Side",
  27326. image: {
  27327. source: "./media/characters/dune-anderson/side.svg",
  27328. bottom: 49 / 1426
  27329. }
  27330. },
  27331. },
  27332. [
  27333. {
  27334. name: "Wolf-sized",
  27335. height: math.unit(1.44, "meters")
  27336. },
  27337. {
  27338. name: "Normal",
  27339. height: math.unit(5.05, "meters"),
  27340. default: true
  27341. },
  27342. {
  27343. name: "Big",
  27344. height: math.unit(14.4, "meters")
  27345. },
  27346. {
  27347. name: "Huge",
  27348. height: math.unit(144, "meters")
  27349. },
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27354. {
  27355. front: {
  27356. height: math.unit(7, "feet"),
  27357. weight: math.unit(425, "lb"),
  27358. name: "Front",
  27359. image: {
  27360. source: "./media/characters/hind/front.svg",
  27361. extra: 2091 / 1860,
  27362. bottom: 129 / 2220
  27363. }
  27364. },
  27365. back: {
  27366. height: math.unit(7, "feet"),
  27367. weight: math.unit(425, "lb"),
  27368. name: "Back",
  27369. image: {
  27370. source: "./media/characters/hind/back.svg",
  27371. extra: 2091 / 1860,
  27372. bottom: 24.6 / 2309
  27373. }
  27374. },
  27375. tail: {
  27376. height: math.unit(2.8, "feet"),
  27377. name: "Tail",
  27378. image: {
  27379. source: "./media/characters/hind/tail.svg"
  27380. }
  27381. },
  27382. head: {
  27383. height: math.unit(2.55, "feet"),
  27384. name: "Head",
  27385. image: {
  27386. source: "./media/characters/hind/head.svg"
  27387. }
  27388. },
  27389. },
  27390. [
  27391. {
  27392. name: "XS",
  27393. height: math.unit(0.7, "feet")
  27394. },
  27395. {
  27396. name: "Normal",
  27397. height: math.unit(7, "feet"),
  27398. default: true
  27399. },
  27400. {
  27401. name: "XL",
  27402. height: math.unit(70, "feet")
  27403. },
  27404. ]
  27405. ))
  27406. characterMakers.push(() => makeCharacter(
  27407. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27408. {
  27409. front: {
  27410. height: math.unit(2.1, "meters"),
  27411. weight: math.unit(150, "lb"),
  27412. name: "Front",
  27413. image: {
  27414. source: "./media/characters/tharquench-sizestealer/front.svg",
  27415. extra: 1605/1470,
  27416. bottom: 36/1641
  27417. }
  27418. },
  27419. frontAlt: {
  27420. height: math.unit(2.1, "meters"),
  27421. weight: math.unit(150, "lb"),
  27422. name: "Front (Alt)",
  27423. image: {
  27424. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27425. extra: 2318 / 2063,
  27426. bottom: 93.4 / 2410
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Nano",
  27433. height: math.unit(1, "mm")
  27434. },
  27435. {
  27436. name: "Micro",
  27437. height: math.unit(1, "cm")
  27438. },
  27439. {
  27440. name: "Normal",
  27441. height: math.unit(2.1, "meters"),
  27442. default: true
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27448. {
  27449. front: {
  27450. height: math.unit(7 + 5 / 12, "feet"),
  27451. weight: math.unit(357, "lb"),
  27452. name: "Front",
  27453. image: {
  27454. source: "./media/characters/solex-draconov/front.svg",
  27455. extra: 1993 / 1865,
  27456. bottom: 117 / 2111
  27457. }
  27458. },
  27459. },
  27460. [
  27461. {
  27462. name: "Natural Height",
  27463. height: math.unit(7 + 5 / 12, "feet"),
  27464. default: true
  27465. },
  27466. {
  27467. name: "Macro",
  27468. height: math.unit(350, "feet")
  27469. },
  27470. {
  27471. name: "Macro+",
  27472. height: math.unit(1000, "feet")
  27473. },
  27474. {
  27475. name: "Megamacro",
  27476. height: math.unit(20, "km")
  27477. },
  27478. {
  27479. name: "Megamacro+",
  27480. height: math.unit(1000, "km")
  27481. },
  27482. {
  27483. name: "Gigamacro",
  27484. height: math.unit(2.5, "Gm")
  27485. },
  27486. {
  27487. name: "Teramacro",
  27488. height: math.unit(15, "Tm")
  27489. },
  27490. {
  27491. name: "Galactic",
  27492. height: math.unit(30, "Zm")
  27493. },
  27494. {
  27495. name: "Universal",
  27496. height: math.unit(21000, "Ym")
  27497. },
  27498. {
  27499. name: "Omniversal",
  27500. height: math.unit(9.861e50, "Ym")
  27501. },
  27502. {
  27503. name: "Existential",
  27504. height: math.unit(1e300, "meters")
  27505. },
  27506. ]
  27507. ))
  27508. characterMakers.push(() => makeCharacter(
  27509. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27510. {
  27511. side: {
  27512. height: math.unit(25, "feet"),
  27513. weight: math.unit(90000, "lb"),
  27514. name: "Side",
  27515. image: {
  27516. source: "./media/characters/mandarax/side.svg",
  27517. extra: 614 / 332,
  27518. bottom: 55 / 630
  27519. }
  27520. },
  27521. lounging: {
  27522. height: math.unit(15.4, "feet"),
  27523. weight: math.unit(90000, "lb"),
  27524. name: "Lounging",
  27525. image: {
  27526. source: "./media/characters/mandarax/lounging.svg",
  27527. extra: 817/609,
  27528. bottom: 685/1502
  27529. }
  27530. },
  27531. head: {
  27532. height: math.unit(11.4, "feet"),
  27533. name: "Head",
  27534. image: {
  27535. source: "./media/characters/mandarax/head.svg"
  27536. }
  27537. },
  27538. belly: {
  27539. height: math.unit(33, "feet"),
  27540. name: "Belly",
  27541. preyCapacity: math.unit(500, "people"),
  27542. image: {
  27543. source: "./media/characters/mandarax/belly.svg"
  27544. }
  27545. },
  27546. dick: {
  27547. height: math.unit(8.46, "feet"),
  27548. name: "Dick",
  27549. image: {
  27550. source: "./media/characters/mandarax/dick.svg"
  27551. }
  27552. },
  27553. top: {
  27554. height: math.unit(28, "meters"),
  27555. name: "Top",
  27556. image: {
  27557. source: "./media/characters/mandarax/top.svg"
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(25, "feet"),
  27565. default: true
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27571. {
  27572. front: {
  27573. height: math.unit(5, "feet"),
  27574. weight: math.unit(90, "lb"),
  27575. name: "Front",
  27576. image: {
  27577. source: "./media/characters/pixil/front.svg",
  27578. extra: 2000 / 1618,
  27579. bottom: 12.3 / 2011
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Normal",
  27586. height: math.unit(5, "feet"),
  27587. default: true
  27588. },
  27589. {
  27590. name: "Megamacro",
  27591. height: math.unit(10, "miles"),
  27592. },
  27593. ]
  27594. ))
  27595. characterMakers.push(() => makeCharacter(
  27596. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27597. {
  27598. front: {
  27599. height: math.unit(7 + 2 / 12, "feet"),
  27600. weight: math.unit(200, "lb"),
  27601. name: "Front",
  27602. image: {
  27603. source: "./media/characters/angel/front.svg",
  27604. extra: 1830 / 1737,
  27605. bottom: 22.6 / 1854,
  27606. }
  27607. },
  27608. },
  27609. [
  27610. {
  27611. name: "Normal",
  27612. height: math.unit(7 + 2 / 12, "feet"),
  27613. default: true
  27614. },
  27615. {
  27616. name: "Macro",
  27617. height: math.unit(1000, "feet")
  27618. },
  27619. {
  27620. name: "Megamacro",
  27621. height: math.unit(2, "miles")
  27622. },
  27623. {
  27624. name: "Gigamacro",
  27625. height: math.unit(20, "earths")
  27626. },
  27627. ]
  27628. ))
  27629. characterMakers.push(() => makeCharacter(
  27630. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27631. {
  27632. front: {
  27633. height: math.unit(5, "feet"),
  27634. weight: math.unit(180, "lb"),
  27635. name: "Front",
  27636. image: {
  27637. source: "./media/characters/mekana/front.svg",
  27638. extra: 1671 / 1605,
  27639. bottom: 3.5 / 1691
  27640. }
  27641. },
  27642. side: {
  27643. height: math.unit(5, "feet"),
  27644. weight: math.unit(180, "lb"),
  27645. name: "Side",
  27646. image: {
  27647. source: "./media/characters/mekana/side.svg",
  27648. extra: 1671 / 1605,
  27649. bottom: 3.5 / 1691
  27650. }
  27651. },
  27652. back: {
  27653. height: math.unit(5, "feet"),
  27654. weight: math.unit(180, "lb"),
  27655. name: "Back",
  27656. image: {
  27657. source: "./media/characters/mekana/back.svg",
  27658. extra: 1671 / 1605,
  27659. bottom: 3.5 / 1691
  27660. }
  27661. },
  27662. },
  27663. [
  27664. {
  27665. name: "Normal",
  27666. height: math.unit(5, "feet"),
  27667. default: true
  27668. },
  27669. ]
  27670. ))
  27671. characterMakers.push(() => makeCharacter(
  27672. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27673. {
  27674. front: {
  27675. height: math.unit(4 + 6 / 12, "feet"),
  27676. weight: math.unit(80, "lb"),
  27677. name: "Front",
  27678. image: {
  27679. source: "./media/characters/pixie/front.svg",
  27680. extra: 1924 / 1825,
  27681. bottom: 22.4 / 1946
  27682. }
  27683. },
  27684. },
  27685. [
  27686. {
  27687. name: "Normal",
  27688. height: math.unit(4 + 6 / 12, "feet"),
  27689. default: true
  27690. },
  27691. {
  27692. name: "Macro",
  27693. height: math.unit(40, "feet")
  27694. },
  27695. ]
  27696. ))
  27697. characterMakers.push(() => makeCharacter(
  27698. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27699. {
  27700. front: {
  27701. height: math.unit(2.1, "meters"),
  27702. weight: math.unit(200, "lb"),
  27703. name: "Front",
  27704. image: {
  27705. source: "./media/characters/the-lascivious/front.svg",
  27706. extra: 1 / 0.893,
  27707. bottom: 3.5 / 573.7
  27708. }
  27709. },
  27710. },
  27711. [
  27712. {
  27713. name: "Human Scale",
  27714. height: math.unit(2.1, "meters")
  27715. },
  27716. {
  27717. name: "Wolxi Scale",
  27718. height: math.unit(46.2, "m"),
  27719. default: true
  27720. },
  27721. {
  27722. name: "Boinker of Buildings",
  27723. height: math.unit(10, "km")
  27724. },
  27725. {
  27726. name: "Shagger of Skyscrapers",
  27727. height: math.unit(40, "km")
  27728. },
  27729. {
  27730. name: "Banger of Boroughs",
  27731. height: math.unit(4000, "km")
  27732. },
  27733. {
  27734. name: "Screwer of States",
  27735. height: math.unit(100000, "km")
  27736. },
  27737. {
  27738. name: "Pounder of Planets",
  27739. height: math.unit(2000000, "km")
  27740. },
  27741. ]
  27742. ))
  27743. characterMakers.push(() => makeCharacter(
  27744. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27745. {
  27746. front: {
  27747. height: math.unit(6, "feet"),
  27748. weight: math.unit(150, "lb"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/aj/front.svg",
  27752. extra: 2039 / 1562,
  27753. bottom: 40 / 2079
  27754. }
  27755. },
  27756. },
  27757. [
  27758. {
  27759. name: "Normal",
  27760. height: math.unit(11 + 6 / 12, "feet"),
  27761. default: true
  27762. },
  27763. {
  27764. name: "Megamacro",
  27765. height: math.unit(60, "megameters")
  27766. },
  27767. ]
  27768. ))
  27769. characterMakers.push(() => makeCharacter(
  27770. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27771. {
  27772. side: {
  27773. height: math.unit(31 + 8 / 12, "feet"),
  27774. weight: math.unit(75000, "kg"),
  27775. name: "Side",
  27776. image: {
  27777. source: "./media/characters/koros/side.svg",
  27778. extra: 1442 / 1297,
  27779. bottom: 122.7 / 1562
  27780. }
  27781. },
  27782. dicksKingsCrown: {
  27783. height: math.unit(6, "feet"),
  27784. name: "Dicks (King's Crown)",
  27785. image: {
  27786. source: "./media/characters/koros/dicks-kings-crown.svg"
  27787. }
  27788. },
  27789. dicksTailSet: {
  27790. height: math.unit(3, "feet"),
  27791. name: "Dicks (Tail Set)",
  27792. image: {
  27793. source: "./media/characters/koros/dicks-tail-set.svg"
  27794. }
  27795. },
  27796. dickCumming: {
  27797. height: math.unit(7.98, "feet"),
  27798. name: "Dick (Cumming)",
  27799. image: {
  27800. source: "./media/characters/koros/dick-cumming.svg"
  27801. }
  27802. },
  27803. dicksBack: {
  27804. height: math.unit(5.9, "feet"),
  27805. name: "Dicks (Back)",
  27806. image: {
  27807. source: "./media/characters/koros/dicks-back.svg"
  27808. }
  27809. },
  27810. dicksFront: {
  27811. height: math.unit(3.72, "feet"),
  27812. name: "Dicks (Front)",
  27813. image: {
  27814. source: "./media/characters/koros/dicks-front.svg"
  27815. }
  27816. },
  27817. dicksPeeking: {
  27818. height: math.unit(3.0, "feet"),
  27819. name: "Dicks (Peeking)",
  27820. image: {
  27821. source: "./media/characters/koros/dicks-peeking.svg"
  27822. }
  27823. },
  27824. eye: {
  27825. height: math.unit(1.7, "feet"),
  27826. name: "Eye",
  27827. image: {
  27828. source: "./media/characters/koros/eye.svg"
  27829. }
  27830. },
  27831. headFront: {
  27832. height: math.unit(11.69, "feet"),
  27833. name: "Head (Front)",
  27834. image: {
  27835. source: "./media/characters/koros/head-front.svg"
  27836. }
  27837. },
  27838. headSide: {
  27839. height: math.unit(14, "feet"),
  27840. name: "Head (Side)",
  27841. image: {
  27842. source: "./media/characters/koros/head-side.svg"
  27843. }
  27844. },
  27845. leg: {
  27846. height: math.unit(17, "feet"),
  27847. name: "Leg",
  27848. image: {
  27849. source: "./media/characters/koros/leg.svg"
  27850. }
  27851. },
  27852. mawSide: {
  27853. height: math.unit(12.8, "feet"),
  27854. name: "Maw (Side)",
  27855. image: {
  27856. source: "./media/characters/koros/maw-side.svg"
  27857. }
  27858. },
  27859. mawSpitting: {
  27860. height: math.unit(17, "feet"),
  27861. name: "Maw (Spitting)",
  27862. image: {
  27863. source: "./media/characters/koros/maw-spitting.svg"
  27864. }
  27865. },
  27866. slit: {
  27867. height: math.unit(2.8, "feet"),
  27868. name: "Slit",
  27869. image: {
  27870. source: "./media/characters/koros/slit.svg"
  27871. }
  27872. },
  27873. stomach: {
  27874. height: math.unit(6.8, "feet"),
  27875. preyCapacity: math.unit(20, "people"),
  27876. name: "Stomach",
  27877. image: {
  27878. source: "./media/characters/koros/stomach.svg"
  27879. }
  27880. },
  27881. wingspanBottom: {
  27882. height: math.unit(114, "feet"),
  27883. name: "Wingspan (Bottom)",
  27884. image: {
  27885. source: "./media/characters/koros/wingspan-bottom.svg"
  27886. }
  27887. },
  27888. wingspanTop: {
  27889. height: math.unit(104, "feet"),
  27890. name: "Wingspan (Top)",
  27891. image: {
  27892. source: "./media/characters/koros/wingspan-top.svg"
  27893. }
  27894. },
  27895. },
  27896. [
  27897. {
  27898. name: "Normal",
  27899. height: math.unit(31 + 8 / 12, "feet"),
  27900. default: true
  27901. },
  27902. ]
  27903. ))
  27904. characterMakers.push(() => makeCharacter(
  27905. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27906. {
  27907. front: {
  27908. height: math.unit(18 + 5 / 12, "feet"),
  27909. weight: math.unit(3750, "kg"),
  27910. name: "Front",
  27911. image: {
  27912. source: "./media/characters/vexx/front.svg",
  27913. extra: 426 / 396,
  27914. bottom: 31.5 / 458
  27915. }
  27916. },
  27917. maw: {
  27918. height: math.unit(6, "feet"),
  27919. name: "Maw",
  27920. image: {
  27921. source: "./media/characters/vexx/maw.svg"
  27922. }
  27923. },
  27924. },
  27925. [
  27926. {
  27927. name: "Normal",
  27928. height: math.unit(18 + 5 / 12, "feet"),
  27929. default: true
  27930. },
  27931. ]
  27932. ))
  27933. characterMakers.push(() => makeCharacter(
  27934. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27935. {
  27936. front: {
  27937. height: math.unit(17 + 6 / 12, "feet"),
  27938. weight: math.unit(150, "lb"),
  27939. name: "Front",
  27940. image: {
  27941. source: "./media/characters/baadra/front.svg",
  27942. extra: 1694/1553,
  27943. bottom: 179/1873
  27944. }
  27945. },
  27946. frontAlt: {
  27947. height: math.unit(17 + 6 / 12, "feet"),
  27948. weight: math.unit(150, "lb"),
  27949. name: "Front (Alt)",
  27950. image: {
  27951. source: "./media/characters/baadra/front-alt.svg",
  27952. extra: 3137 / 2890,
  27953. bottom: 168.4 / 3305
  27954. }
  27955. },
  27956. back: {
  27957. height: math.unit(17 + 6 / 12, "feet"),
  27958. weight: math.unit(150, "lb"),
  27959. name: "Back",
  27960. image: {
  27961. source: "./media/characters/baadra/back.svg",
  27962. extra: 3142 / 2890,
  27963. bottom: 220 / 3371
  27964. }
  27965. },
  27966. head: {
  27967. height: math.unit(5.45, "feet"),
  27968. name: "Head",
  27969. image: {
  27970. source: "./media/characters/baadra/head.svg"
  27971. }
  27972. },
  27973. headAngry: {
  27974. height: math.unit(4.95, "feet"),
  27975. name: "Head (Angry)",
  27976. image: {
  27977. source: "./media/characters/baadra/head-angry.svg"
  27978. }
  27979. },
  27980. headOpen: {
  27981. height: math.unit(6, "feet"),
  27982. name: "Head (Open)",
  27983. image: {
  27984. source: "./media/characters/baadra/head-open.svg"
  27985. }
  27986. },
  27987. },
  27988. [
  27989. {
  27990. name: "Normal",
  27991. height: math.unit(17 + 6 / 12, "feet"),
  27992. default: true
  27993. },
  27994. ]
  27995. ))
  27996. characterMakers.push(() => makeCharacter(
  27997. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27998. {
  27999. front: {
  28000. height: math.unit(7 + 3 / 12, "feet"),
  28001. weight: math.unit(180, "lb"),
  28002. name: "Front",
  28003. image: {
  28004. source: "./media/characters/juri/front.svg",
  28005. extra: 1401 / 1237,
  28006. bottom: 18.5 / 1418
  28007. }
  28008. },
  28009. side: {
  28010. height: math.unit(7 + 3 / 12, "feet"),
  28011. weight: math.unit(180, "lb"),
  28012. name: "Side",
  28013. image: {
  28014. source: "./media/characters/juri/side.svg",
  28015. extra: 1424 / 1242,
  28016. bottom: 18.5 / 1447
  28017. }
  28018. },
  28019. sitting: {
  28020. height: math.unit(6, "feet"),
  28021. weight: math.unit(180, "lb"),
  28022. name: "Sitting",
  28023. image: {
  28024. source: "./media/characters/juri/sitting.svg",
  28025. extra: 1270 / 1143,
  28026. bottom: 100 / 1343
  28027. }
  28028. },
  28029. back: {
  28030. height: math.unit(7 + 3 / 12, "feet"),
  28031. weight: math.unit(180, "lb"),
  28032. name: "Back",
  28033. image: {
  28034. source: "./media/characters/juri/back.svg",
  28035. extra: 1377 / 1240,
  28036. bottom: 23.7 / 1405
  28037. }
  28038. },
  28039. maw: {
  28040. height: math.unit(2.8, "feet"),
  28041. name: "Maw",
  28042. image: {
  28043. source: "./media/characters/juri/maw.svg"
  28044. }
  28045. },
  28046. stomach: {
  28047. height: math.unit(0.89, "feet"),
  28048. preyCapacity: math.unit(4, "liters"),
  28049. name: "Stomach",
  28050. image: {
  28051. source: "./media/characters/juri/stomach.svg"
  28052. }
  28053. },
  28054. },
  28055. [
  28056. {
  28057. name: "Normal",
  28058. height: math.unit(7 + 3 / 12, "feet"),
  28059. default: true
  28060. },
  28061. ]
  28062. ))
  28063. characterMakers.push(() => makeCharacter(
  28064. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28065. {
  28066. fox: {
  28067. height: math.unit(5 + 6 / 12, "feet"),
  28068. weight: math.unit(140, "lb"),
  28069. name: "Fox",
  28070. image: {
  28071. source: "./media/characters/maxene-sita/fox.svg",
  28072. extra: 146 / 138,
  28073. bottom: 2.1 / 148.19
  28074. }
  28075. },
  28076. foxLaying: {
  28077. height: math.unit(1.70, "feet"),
  28078. weight: math.unit(140, "lb"),
  28079. name: "Fox (Laying)",
  28080. image: {
  28081. source: "./media/characters/maxene-sita/fox-laying.svg",
  28082. extra: 910 / 572,
  28083. bottom: 71 / 981
  28084. }
  28085. },
  28086. kitsune: {
  28087. height: math.unit(10, "feet"),
  28088. weight: math.unit(800, "lb"),
  28089. name: "Kitsune",
  28090. image: {
  28091. source: "./media/characters/maxene-sita/kitsune.svg",
  28092. extra: 185 / 176,
  28093. bottom: 4.7 / 189.9
  28094. }
  28095. },
  28096. hellhound: {
  28097. height: math.unit(10, "feet"),
  28098. weight: math.unit(700, "lb"),
  28099. name: "Hellhound",
  28100. image: {
  28101. source: "./media/characters/maxene-sita/hellhound.svg",
  28102. extra: 1600 / 1545,
  28103. bottom: 81 / 1681
  28104. }
  28105. },
  28106. },
  28107. [
  28108. {
  28109. name: "Normal",
  28110. height: math.unit(5 + 6 / 12, "feet"),
  28111. default: true
  28112. },
  28113. ]
  28114. ))
  28115. characterMakers.push(() => makeCharacter(
  28116. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28117. {
  28118. front: {
  28119. height: math.unit(3 + 4 / 12, "feet"),
  28120. weight: math.unit(70, "lb"),
  28121. name: "Front",
  28122. image: {
  28123. source: "./media/characters/maia/front.svg",
  28124. extra: 227 / 219.5,
  28125. bottom: 40 / 267
  28126. }
  28127. },
  28128. back: {
  28129. height: math.unit(3 + 4 / 12, "feet"),
  28130. weight: math.unit(70, "lb"),
  28131. name: "Back",
  28132. image: {
  28133. source: "./media/characters/maia/back.svg",
  28134. extra: 237 / 225
  28135. }
  28136. },
  28137. },
  28138. [
  28139. {
  28140. name: "Normal",
  28141. height: math.unit(3 + 4 / 12, "feet"),
  28142. default: true
  28143. },
  28144. ]
  28145. ))
  28146. characterMakers.push(() => makeCharacter(
  28147. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28148. {
  28149. front: {
  28150. height: math.unit(5 + 10 / 12, "feet"),
  28151. weight: math.unit(197, "lb"),
  28152. name: "Front",
  28153. image: {
  28154. source: "./media/characters/jabaro/front.svg",
  28155. extra: 225 / 216,
  28156. bottom: 5.06 / 230
  28157. }
  28158. },
  28159. back: {
  28160. height: math.unit(5 + 10 / 12, "feet"),
  28161. weight: math.unit(197, "lb"),
  28162. name: "Back",
  28163. image: {
  28164. source: "./media/characters/jabaro/back.svg",
  28165. extra: 225 / 219,
  28166. bottom: 1.9 / 227
  28167. }
  28168. },
  28169. },
  28170. [
  28171. {
  28172. name: "Normal",
  28173. height: math.unit(5 + 10 / 12, "feet"),
  28174. default: true
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28180. {
  28181. front: {
  28182. height: math.unit(5 + 8 / 12, "feet"),
  28183. weight: math.unit(139, "lb"),
  28184. name: "Front",
  28185. image: {
  28186. source: "./media/characters/risa/front.svg",
  28187. extra: 270 / 260,
  28188. bottom: 11.2 / 282
  28189. }
  28190. },
  28191. back: {
  28192. height: math.unit(5 + 8 / 12, "feet"),
  28193. weight: math.unit(139, "lb"),
  28194. name: "Back",
  28195. image: {
  28196. source: "./media/characters/risa/back.svg",
  28197. extra: 264 / 255,
  28198. bottom: 4 / 268
  28199. }
  28200. },
  28201. },
  28202. [
  28203. {
  28204. name: "Normal",
  28205. height: math.unit(5 + 8 / 12, "feet"),
  28206. default: true
  28207. },
  28208. ]
  28209. ))
  28210. characterMakers.push(() => makeCharacter(
  28211. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28212. {
  28213. front: {
  28214. height: math.unit(2 + 11 / 12, "feet"),
  28215. weight: math.unit(30, "lb"),
  28216. name: "Front",
  28217. image: {
  28218. source: "./media/characters/weatley/front.svg",
  28219. bottom: 10.7 / 414,
  28220. extra: 403.5 / 362
  28221. }
  28222. },
  28223. back: {
  28224. height: math.unit(2 + 11 / 12, "feet"),
  28225. weight: math.unit(30, "lb"),
  28226. name: "Back",
  28227. image: {
  28228. source: "./media/characters/weatley/back.svg",
  28229. bottom: 10.7 / 414,
  28230. extra: 403.5 / 362
  28231. }
  28232. },
  28233. },
  28234. [
  28235. {
  28236. name: "Normal",
  28237. height: math.unit(2 + 11 / 12, "feet"),
  28238. default: true
  28239. },
  28240. ]
  28241. ))
  28242. characterMakers.push(() => makeCharacter(
  28243. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28244. {
  28245. front: {
  28246. height: math.unit(5 + 2 / 12, "feet"),
  28247. weight: math.unit(50, "kg"),
  28248. name: "Front",
  28249. image: {
  28250. source: "./media/characters/mercury-crescent/front.svg",
  28251. extra: 1088 / 1033,
  28252. bottom: 18.9 / 1109
  28253. }
  28254. },
  28255. },
  28256. [
  28257. {
  28258. name: "Normal",
  28259. height: math.unit(5 + 2 / 12, "feet"),
  28260. default: true
  28261. },
  28262. ]
  28263. ))
  28264. characterMakers.push(() => makeCharacter(
  28265. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28266. {
  28267. front: {
  28268. height: math.unit(2, "feet"),
  28269. weight: math.unit(15, "kg"),
  28270. name: "Front",
  28271. image: {
  28272. source: "./media/characters/diamond-jones/front.svg",
  28273. extra: 727/723,
  28274. bottom: 46/773
  28275. }
  28276. },
  28277. },
  28278. [
  28279. {
  28280. name: "Normal",
  28281. height: math.unit(2, "feet"),
  28282. default: true
  28283. },
  28284. ]
  28285. ))
  28286. characterMakers.push(() => makeCharacter(
  28287. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28288. {
  28289. front: {
  28290. height: math.unit(3, "feet"),
  28291. weight: math.unit(30, "kg"),
  28292. name: "Front",
  28293. image: {
  28294. source: "./media/characters/sweet-bit/front.svg",
  28295. extra: 675 / 567,
  28296. bottom: 27.7 / 703
  28297. }
  28298. },
  28299. },
  28300. [
  28301. {
  28302. name: "Normal",
  28303. height: math.unit(3, "feet"),
  28304. default: true
  28305. },
  28306. ]
  28307. ))
  28308. characterMakers.push(() => makeCharacter(
  28309. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28310. {
  28311. side: {
  28312. height: math.unit(9.178, "feet"),
  28313. weight: math.unit(500, "lb"),
  28314. name: "Side",
  28315. image: {
  28316. source: "./media/characters/umbrazen/side.svg",
  28317. extra: 1730 / 1473,
  28318. bottom: 34.6 / 1765
  28319. }
  28320. },
  28321. },
  28322. [
  28323. {
  28324. name: "Normal",
  28325. height: math.unit(9.178, "feet"),
  28326. default: true
  28327. },
  28328. ]
  28329. ))
  28330. characterMakers.push(() => makeCharacter(
  28331. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28332. {
  28333. front: {
  28334. height: math.unit(10, "feet"),
  28335. weight: math.unit(750, "lb"),
  28336. name: "Front",
  28337. image: {
  28338. source: "./media/characters/arlist/front.svg",
  28339. extra: 961 / 778,
  28340. bottom: 6.2 / 986
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Normal",
  28347. height: math.unit(10, "feet"),
  28348. default: true
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(5 + 1 / 12, "feet"),
  28357. weight: math.unit(110, "lb"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/aradel/front.svg",
  28361. extra: 324 / 303,
  28362. bottom: 3.6 / 329.4
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Normal",
  28369. height: math.unit(5 + 1 / 12, "feet"),
  28370. default: true
  28371. },
  28372. ]
  28373. ))
  28374. characterMakers.push(() => makeCharacter(
  28375. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28376. {
  28377. dressed: {
  28378. height: math.unit(3 + 8 / 12, "feet"),
  28379. weight: math.unit(50, "lb"),
  28380. name: "Dressed",
  28381. image: {
  28382. source: "./media/characters/serryn/dressed.svg",
  28383. extra: 1792 / 1656,
  28384. bottom: 43.5 / 1840
  28385. }
  28386. },
  28387. nude: {
  28388. height: math.unit(3 + 8 / 12, "feet"),
  28389. weight: math.unit(50, "lb"),
  28390. name: "Nude",
  28391. image: {
  28392. source: "./media/characters/serryn/nude.svg",
  28393. extra: 1792 / 1656,
  28394. bottom: 43.5 / 1840
  28395. }
  28396. },
  28397. },
  28398. [
  28399. {
  28400. name: "Normal",
  28401. height: math.unit(3 + 8 / 12, "feet"),
  28402. default: true
  28403. },
  28404. ]
  28405. ))
  28406. characterMakers.push(() => makeCharacter(
  28407. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28408. {
  28409. front: {
  28410. height: math.unit(7 + 10 / 12, "feet"),
  28411. weight: math.unit(255, "lb"),
  28412. name: "Front",
  28413. image: {
  28414. source: "./media/characters/xavier-thyme/front.svg",
  28415. extra: 3733 / 3642,
  28416. bottom: 131 / 3869
  28417. }
  28418. },
  28419. frontRaven: {
  28420. height: math.unit(7 + 10 / 12, "feet"),
  28421. weight: math.unit(255, "lb"),
  28422. name: "Front (Raven)",
  28423. image: {
  28424. source: "./media/characters/xavier-thyme/front-raven.svg",
  28425. extra: 4385 / 3642,
  28426. bottom: 131 / 4517
  28427. }
  28428. },
  28429. },
  28430. [
  28431. {
  28432. name: "Normal",
  28433. height: math.unit(7 + 10 / 12, "feet"),
  28434. default: true
  28435. },
  28436. ]
  28437. ))
  28438. characterMakers.push(() => makeCharacter(
  28439. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28440. {
  28441. front: {
  28442. height: math.unit(1.6, "m"),
  28443. weight: math.unit(50, "kg"),
  28444. name: "Front",
  28445. image: {
  28446. source: "./media/characters/kiki/front.svg",
  28447. extra: 4682 / 3610,
  28448. bottom: 115 / 4777
  28449. }
  28450. },
  28451. },
  28452. [
  28453. {
  28454. name: "Normal",
  28455. height: math.unit(1.6, "meters"),
  28456. default: true
  28457. },
  28458. ]
  28459. ))
  28460. characterMakers.push(() => makeCharacter(
  28461. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28462. {
  28463. front: {
  28464. height: math.unit(50, "m"),
  28465. weight: math.unit(500, "tonnes"),
  28466. name: "Front",
  28467. image: {
  28468. source: "./media/characters/ryoko/front.svg",
  28469. extra: 4632 / 3926,
  28470. bottom: 193 / 4823
  28471. }
  28472. },
  28473. },
  28474. [
  28475. {
  28476. name: "Normal",
  28477. height: math.unit(50, "meters"),
  28478. default: true
  28479. },
  28480. ]
  28481. ))
  28482. characterMakers.push(() => makeCharacter(
  28483. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28484. {
  28485. front: {
  28486. height: math.unit(30, "m"),
  28487. weight: math.unit(22, "tonnes"),
  28488. name: "Front",
  28489. image: {
  28490. source: "./media/characters/elio/front.svg",
  28491. extra: 4582 / 3720,
  28492. bottom: 236 / 4828
  28493. }
  28494. },
  28495. },
  28496. [
  28497. {
  28498. name: "Normal",
  28499. height: math.unit(30, "meters"),
  28500. default: true
  28501. },
  28502. ]
  28503. ))
  28504. characterMakers.push(() => makeCharacter(
  28505. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28506. {
  28507. front: {
  28508. height: math.unit(6 + 3 / 12, "feet"),
  28509. weight: math.unit(120, "lb"),
  28510. name: "Front",
  28511. image: {
  28512. source: "./media/characters/azura/front.svg",
  28513. extra: 1149 / 1135,
  28514. bottom: 45 / 1194
  28515. }
  28516. },
  28517. frontClothed: {
  28518. height: math.unit(6 + 3 / 12, "feet"),
  28519. weight: math.unit(120, "lb"),
  28520. name: "Front (Clothed)",
  28521. image: {
  28522. source: "./media/characters/azura/front-clothed.svg",
  28523. extra: 1149 / 1135,
  28524. bottom: 45 / 1194
  28525. }
  28526. },
  28527. },
  28528. [
  28529. {
  28530. name: "Normal",
  28531. height: math.unit(6 + 3 / 12, "feet"),
  28532. default: true
  28533. },
  28534. {
  28535. name: "Macro",
  28536. height: math.unit(20 + 6 / 12, "feet")
  28537. },
  28538. {
  28539. name: "Megamacro",
  28540. height: math.unit(12, "miles")
  28541. },
  28542. {
  28543. name: "Gigamacro",
  28544. height: math.unit(10000, "miles")
  28545. },
  28546. {
  28547. name: "Teramacro",
  28548. height: math.unit(900000, "miles")
  28549. },
  28550. ]
  28551. ))
  28552. characterMakers.push(() => makeCharacter(
  28553. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28554. {
  28555. front: {
  28556. height: math.unit(12, "feet"),
  28557. weight: math.unit(1, "ton"),
  28558. capacity: math.unit(660000, "gallons"),
  28559. name: "Front",
  28560. image: {
  28561. source: "./media/characters/zeus/front.svg",
  28562. extra: 5005 / 4717,
  28563. bottom: 363 / 5388
  28564. }
  28565. },
  28566. },
  28567. [
  28568. {
  28569. name: "Normal",
  28570. height: math.unit(12, "feet")
  28571. },
  28572. {
  28573. name: "Preferred Size",
  28574. height: math.unit(0.5, "miles"),
  28575. default: true
  28576. },
  28577. {
  28578. name: "Giga Horse",
  28579. height: math.unit(300, "miles")
  28580. },
  28581. {
  28582. name: "Riding Planets",
  28583. height: math.unit(30, "megameters")
  28584. },
  28585. {
  28586. name: "Cosmic Giant",
  28587. height: math.unit(3, "zettameters")
  28588. },
  28589. {
  28590. name: "Breeding God",
  28591. height: math.unit(9.92e22, "yottameters")
  28592. },
  28593. ]
  28594. ))
  28595. characterMakers.push(() => makeCharacter(
  28596. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28597. {
  28598. side: {
  28599. height: math.unit(9, "feet"),
  28600. weight: math.unit(1500, "kg"),
  28601. name: "Side",
  28602. image: {
  28603. source: "./media/characters/fang/side.svg",
  28604. extra: 924 / 866,
  28605. bottom: 47.5 / 972.3
  28606. }
  28607. },
  28608. },
  28609. [
  28610. {
  28611. name: "Normal",
  28612. height: math.unit(9, "feet"),
  28613. default: true
  28614. },
  28615. {
  28616. name: "Macro",
  28617. height: math.unit(75 + 6 / 12, "feet")
  28618. },
  28619. {
  28620. name: "Teramacro",
  28621. height: math.unit(50000, "miles")
  28622. },
  28623. ]
  28624. ))
  28625. characterMakers.push(() => makeCharacter(
  28626. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28627. {
  28628. front: {
  28629. height: math.unit(10, "feet"),
  28630. weight: math.unit(2, "tons"),
  28631. name: "Front",
  28632. image: {
  28633. source: "./media/characters/rekhit/front.svg",
  28634. extra: 2796 / 2590,
  28635. bottom: 225 / 3022
  28636. }
  28637. },
  28638. },
  28639. [
  28640. {
  28641. name: "Normal",
  28642. height: math.unit(10, "feet"),
  28643. default: true
  28644. },
  28645. {
  28646. name: "Macro",
  28647. height: math.unit(500, "feet")
  28648. },
  28649. ]
  28650. ))
  28651. characterMakers.push(() => makeCharacter(
  28652. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28653. {
  28654. front: {
  28655. height: math.unit(7 + 6.451 / 12, "feet"),
  28656. weight: math.unit(310, "lb"),
  28657. name: "Front",
  28658. image: {
  28659. source: "./media/characters/dahlia-verrick/front.svg",
  28660. extra: 1488 / 1365,
  28661. bottom: 6.2 / 1495
  28662. }
  28663. },
  28664. back: {
  28665. height: math.unit(7 + 6.451 / 12, "feet"),
  28666. weight: math.unit(310, "lb"),
  28667. name: "Back",
  28668. image: {
  28669. source: "./media/characters/dahlia-verrick/back.svg",
  28670. extra: 1472 / 1351,
  28671. bottom: 5.28 / 1477
  28672. }
  28673. },
  28674. frontBusiness: {
  28675. height: math.unit(7 + 6.451 / 12, "feet"),
  28676. weight: math.unit(200, "lb"),
  28677. name: "Front (Business)",
  28678. image: {
  28679. source: "./media/characters/dahlia-verrick/front-business.svg",
  28680. extra: 1478 / 1381,
  28681. bottom: 5.5 / 1484
  28682. }
  28683. },
  28684. frontCasual: {
  28685. height: math.unit(7 + 6.451 / 12, "feet"),
  28686. weight: math.unit(200, "lb"),
  28687. name: "Front (Casual)",
  28688. image: {
  28689. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28690. extra: 1478 / 1381,
  28691. bottom: 5.5 / 1484
  28692. }
  28693. },
  28694. },
  28695. [
  28696. {
  28697. name: "Travel-Sized",
  28698. height: math.unit(7.45, "inches")
  28699. },
  28700. {
  28701. name: "Normal",
  28702. height: math.unit(7 + 6.451 / 12, "feet"),
  28703. default: true
  28704. },
  28705. {
  28706. name: "Hitting the Town",
  28707. height: math.unit(37 + 8 / 12, "feet")
  28708. },
  28709. {
  28710. name: "Stomp in the Suburbs",
  28711. height: math.unit(964 + 9.728 / 12, "feet")
  28712. },
  28713. {
  28714. name: "Sit on the City",
  28715. height: math.unit(61747 + 10.592 / 12, "feet")
  28716. },
  28717. {
  28718. name: "Glomp the Globe",
  28719. height: math.unit(252919327 + 4.832 / 12, "feet")
  28720. },
  28721. ]
  28722. ))
  28723. characterMakers.push(() => makeCharacter(
  28724. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28725. {
  28726. front: {
  28727. height: math.unit(6 + 4 / 12, "feet"),
  28728. weight: math.unit(320, "lb"),
  28729. name: "Front",
  28730. image: {
  28731. source: "./media/characters/balina-mahigan/front.svg",
  28732. extra: 447 / 428,
  28733. bottom: 18 / 466
  28734. }
  28735. },
  28736. back: {
  28737. height: math.unit(6 + 4 / 12, "feet"),
  28738. weight: math.unit(320, "lb"),
  28739. name: "Back",
  28740. image: {
  28741. source: "./media/characters/balina-mahigan/back.svg",
  28742. extra: 445 / 428,
  28743. bottom: 4.07 / 448
  28744. }
  28745. },
  28746. arm: {
  28747. height: math.unit(1.88, "feet"),
  28748. name: "Arm",
  28749. image: {
  28750. source: "./media/characters/balina-mahigan/arm.svg"
  28751. }
  28752. },
  28753. backPort: {
  28754. height: math.unit(0.685, "feet"),
  28755. name: "Back Port",
  28756. image: {
  28757. source: "./media/characters/balina-mahigan/back-port.svg"
  28758. }
  28759. },
  28760. hoofpaw: {
  28761. height: math.unit(1.41, "feet"),
  28762. name: "Hoofpaw",
  28763. image: {
  28764. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28765. }
  28766. },
  28767. leftHandBack: {
  28768. height: math.unit(0.938, "feet"),
  28769. name: "Left Hand (Back)",
  28770. image: {
  28771. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28772. }
  28773. },
  28774. leftHandFront: {
  28775. height: math.unit(0.938, "feet"),
  28776. name: "Left Hand (Front)",
  28777. image: {
  28778. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28779. }
  28780. },
  28781. rightHandBack: {
  28782. height: math.unit(0.95, "feet"),
  28783. name: "Right Hand (Back)",
  28784. image: {
  28785. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28786. }
  28787. },
  28788. rightHandFront: {
  28789. height: math.unit(0.95, "feet"),
  28790. name: "Right Hand (Front)",
  28791. image: {
  28792. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Normal",
  28799. height: math.unit(6 + 4 / 12, "feet"),
  28800. default: true
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28806. {
  28807. front: {
  28808. height: math.unit(6, "feet"),
  28809. weight: math.unit(320, "lb"),
  28810. name: "Front",
  28811. image: {
  28812. source: "./media/characters/balina-mejeri/front.svg",
  28813. extra: 517 / 488,
  28814. bottom: 44.2 / 561
  28815. }
  28816. },
  28817. },
  28818. [
  28819. {
  28820. name: "Normal",
  28821. height: math.unit(6 + 4 / 12, "feet")
  28822. },
  28823. {
  28824. name: "Business",
  28825. height: math.unit(155, "feet"),
  28826. default: true
  28827. },
  28828. ]
  28829. ))
  28830. characterMakers.push(() => makeCharacter(
  28831. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28832. {
  28833. kneeling: {
  28834. height: math.unit(6 + 4 / 12, "feet"),
  28835. weight: math.unit(300 * 20, "lb"),
  28836. name: "Kneeling",
  28837. image: {
  28838. source: "./media/characters/balbarian/kneeling.svg",
  28839. extra: 922 / 862,
  28840. bottom: 42.4 / 965
  28841. }
  28842. },
  28843. },
  28844. [
  28845. {
  28846. name: "Normal",
  28847. height: math.unit(6 + 4 / 12, "feet")
  28848. },
  28849. {
  28850. name: "Treasured",
  28851. height: math.unit(18 + 9 / 12, "feet"),
  28852. default: true
  28853. },
  28854. {
  28855. name: "Macro",
  28856. height: math.unit(900, "feet")
  28857. },
  28858. ]
  28859. ))
  28860. characterMakers.push(() => makeCharacter(
  28861. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28862. {
  28863. front: {
  28864. height: math.unit(6 + 4 / 12, "feet"),
  28865. weight: math.unit(325, "lb"),
  28866. name: "Front",
  28867. image: {
  28868. source: "./media/characters/balina-amarini/front.svg",
  28869. extra: 415 / 403,
  28870. bottom: 19 / 433.4
  28871. }
  28872. },
  28873. back: {
  28874. height: math.unit(6 + 4 / 12, "feet"),
  28875. weight: math.unit(325, "lb"),
  28876. name: "Back",
  28877. image: {
  28878. source: "./media/characters/balina-amarini/back.svg",
  28879. extra: 415 / 403,
  28880. bottom: 13.5 / 432
  28881. }
  28882. },
  28883. overdrive: {
  28884. height: math.unit(6 + 4 / 12, "feet"),
  28885. weight: math.unit(400, "lb"),
  28886. name: "Overdrive",
  28887. image: {
  28888. source: "./media/characters/balina-amarini/overdrive.svg",
  28889. extra: 269 / 259,
  28890. bottom: 12 / 282
  28891. }
  28892. },
  28893. },
  28894. [
  28895. {
  28896. name: "Boom",
  28897. height: math.unit(9 + 10 / 12, "feet"),
  28898. default: true
  28899. },
  28900. {
  28901. name: "Macro",
  28902. height: math.unit(280, "feet")
  28903. },
  28904. ]
  28905. ))
  28906. characterMakers.push(() => makeCharacter(
  28907. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28908. {
  28909. goddess: {
  28910. height: math.unit(600, "feet"),
  28911. weight: math.unit(2000000, "tons"),
  28912. name: "Goddess",
  28913. image: {
  28914. source: "./media/characters/lady-kubwa/goddess.svg",
  28915. extra: 1240.5 / 1223,
  28916. bottom: 22 / 1263
  28917. }
  28918. },
  28919. goddesser: {
  28920. height: math.unit(900, "feet"),
  28921. weight: math.unit(20000000, "lb"),
  28922. name: "Goddess-er",
  28923. image: {
  28924. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28925. extra: 899 / 888,
  28926. bottom: 12.6 / 912
  28927. }
  28928. },
  28929. },
  28930. [
  28931. {
  28932. name: "Macro",
  28933. height: math.unit(600, "feet"),
  28934. default: true
  28935. },
  28936. {
  28937. name: "Megamacro",
  28938. height: math.unit(250, "miles")
  28939. },
  28940. ]
  28941. ))
  28942. characterMakers.push(() => makeCharacter(
  28943. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28944. {
  28945. front: {
  28946. height: math.unit(7 + 7 / 12, "feet"),
  28947. weight: math.unit(250, "lb"),
  28948. name: "Front",
  28949. image: {
  28950. source: "./media/characters/tala-grovehorn/front.svg",
  28951. extra: 2636 / 2525,
  28952. bottom: 147 / 2781
  28953. }
  28954. },
  28955. back: {
  28956. height: math.unit(7 + 7 / 12, "feet"),
  28957. weight: math.unit(250, "lb"),
  28958. name: "Back",
  28959. image: {
  28960. source: "./media/characters/tala-grovehorn/back.svg",
  28961. extra: 2635 / 2539,
  28962. bottom: 100 / 2732.8
  28963. }
  28964. },
  28965. mouth: {
  28966. height: math.unit(1.15, "feet"),
  28967. name: "Mouth",
  28968. image: {
  28969. source: "./media/characters/tala-grovehorn/mouth.svg"
  28970. }
  28971. },
  28972. dick: {
  28973. height: math.unit(2.36, "feet"),
  28974. name: "Dick",
  28975. image: {
  28976. source: "./media/characters/tala-grovehorn/dick.svg"
  28977. }
  28978. },
  28979. slit: {
  28980. height: math.unit(0.61, "feet"),
  28981. name: "Slit",
  28982. image: {
  28983. source: "./media/characters/tala-grovehorn/slit.svg"
  28984. }
  28985. },
  28986. },
  28987. [
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28992. {
  28993. front: {
  28994. height: math.unit(7 + 7 / 12, "feet"),
  28995. weight: math.unit(225, "lb"),
  28996. name: "Front",
  28997. image: {
  28998. source: "./media/characters/epona/front.svg",
  28999. extra: 2445 / 2290,
  29000. bottom: 251 / 2696
  29001. }
  29002. },
  29003. back: {
  29004. height: math.unit(7 + 7 / 12, "feet"),
  29005. weight: math.unit(225, "lb"),
  29006. name: "Back",
  29007. image: {
  29008. source: "./media/characters/epona/back.svg",
  29009. extra: 2546 / 2408,
  29010. bottom: 44 / 2589
  29011. }
  29012. },
  29013. genitals: {
  29014. height: math.unit(1.5, "feet"),
  29015. name: "Genitals",
  29016. image: {
  29017. source: "./media/characters/epona/genitals.svg"
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Normal",
  29024. height: math.unit(7 + 7 / 12, "feet"),
  29025. default: true
  29026. },
  29027. ]
  29028. ))
  29029. characterMakers.push(() => makeCharacter(
  29030. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29031. {
  29032. front: {
  29033. height: math.unit(7, "feet"),
  29034. weight: math.unit(518, "lb"),
  29035. name: "Front",
  29036. image: {
  29037. source: "./media/characters/avia-bloodbourn/front.svg",
  29038. extra: 1466 / 1350,
  29039. bottom: 65 / 1527
  29040. }
  29041. },
  29042. },
  29043. [
  29044. ]
  29045. ))
  29046. characterMakers.push(() => makeCharacter(
  29047. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29048. {
  29049. front: {
  29050. height: math.unit(9.35, "feet"),
  29051. weight: math.unit(600, "lb"),
  29052. name: "Front",
  29053. image: {
  29054. source: "./media/characters/amera/front.svg",
  29055. extra: 891 / 818,
  29056. bottom: 30 / 922.7
  29057. }
  29058. },
  29059. back: {
  29060. height: math.unit(9.35, "feet"),
  29061. weight: math.unit(600, "lb"),
  29062. name: "Back",
  29063. image: {
  29064. source: "./media/characters/amera/back.svg",
  29065. extra: 876 / 824,
  29066. bottom: 6.8 / 884
  29067. }
  29068. },
  29069. dick: {
  29070. height: math.unit(2.14, "feet"),
  29071. name: "Dick",
  29072. image: {
  29073. source: "./media/characters/amera/dick.svg"
  29074. }
  29075. },
  29076. },
  29077. [
  29078. {
  29079. name: "Normal",
  29080. height: math.unit(9.35, "feet"),
  29081. default: true
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29087. {
  29088. kneeling: {
  29089. height: math.unit(3 + 4 / 12, "feet"),
  29090. weight: math.unit(90, "lb"),
  29091. name: "Kneeling",
  29092. image: {
  29093. source: "./media/characters/rosewen/kneeling.svg",
  29094. extra: 1835 / 1571,
  29095. bottom: 27.7 / 1862
  29096. }
  29097. },
  29098. },
  29099. [
  29100. {
  29101. name: "Normal",
  29102. height: math.unit(3 + 4 / 12, "feet"),
  29103. default: true
  29104. },
  29105. ]
  29106. ))
  29107. characterMakers.push(() => makeCharacter(
  29108. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29109. {
  29110. front: {
  29111. height: math.unit(5 + 10 / 12, "feet"),
  29112. weight: math.unit(200, "lb"),
  29113. name: "Front",
  29114. image: {
  29115. source: "./media/characters/sabah/front.svg",
  29116. extra: 849 / 763,
  29117. bottom: 33.9 / 881
  29118. }
  29119. },
  29120. },
  29121. [
  29122. {
  29123. name: "Normal",
  29124. height: math.unit(5 + 10 / 12, "feet"),
  29125. default: true
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29131. {
  29132. front: {
  29133. height: math.unit(3 + 5 / 12, "feet"),
  29134. weight: math.unit(40, "kg"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/purple-flame/front.svg",
  29138. extra: 1577 / 1412,
  29139. bottom: 97 / 1694
  29140. }
  29141. },
  29142. frontDressed: {
  29143. height: math.unit(3 + 5 / 12, "feet"),
  29144. weight: math.unit(40, "kg"),
  29145. name: "Front (Dressed)",
  29146. image: {
  29147. source: "./media/characters/purple-flame/front-dressed.svg",
  29148. extra: 1577 / 1412,
  29149. bottom: 97 / 1694
  29150. }
  29151. },
  29152. headphones: {
  29153. height: math.unit(0.85, "feet"),
  29154. name: "Headphones",
  29155. image: {
  29156. source: "./media/characters/purple-flame/headphones.svg"
  29157. }
  29158. },
  29159. },
  29160. [
  29161. {
  29162. name: "Really Small",
  29163. height: math.unit(5, "cm")
  29164. },
  29165. {
  29166. name: "Micro",
  29167. height: math.unit(1 + 5 / 12, "feet")
  29168. },
  29169. {
  29170. name: "Normal",
  29171. height: math.unit(3 + 5 / 12, "feet"),
  29172. default: true
  29173. },
  29174. {
  29175. name: "Minimacro",
  29176. height: math.unit(125, "feet")
  29177. },
  29178. {
  29179. name: "Macro",
  29180. height: math.unit(0.5, "miles")
  29181. },
  29182. {
  29183. name: "Megamacro",
  29184. height: math.unit(50, "miles")
  29185. },
  29186. {
  29187. name: "Gigantic",
  29188. height: math.unit(750, "miles")
  29189. },
  29190. {
  29191. name: "Planetary",
  29192. height: math.unit(15000, "miles")
  29193. },
  29194. ]
  29195. ))
  29196. characterMakers.push(() => makeCharacter(
  29197. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29198. {
  29199. front: {
  29200. height: math.unit(14, "feet"),
  29201. weight: math.unit(959, "lb"),
  29202. name: "Front",
  29203. image: {
  29204. source: "./media/characters/arsenal/front.svg",
  29205. extra: 2357 / 2157,
  29206. bottom: 93 / 2458
  29207. }
  29208. },
  29209. },
  29210. [
  29211. {
  29212. name: "Normal",
  29213. height: math.unit(14, "feet"),
  29214. default: true
  29215. },
  29216. ]
  29217. ))
  29218. characterMakers.push(() => makeCharacter(
  29219. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29220. {
  29221. front: {
  29222. height: math.unit(6, "feet"),
  29223. weight: math.unit(150, "lb"),
  29224. name: "Front",
  29225. image: {
  29226. source: "./media/characters/adira/front.svg",
  29227. extra: 1078 / 1029,
  29228. bottom: 87 / 1166
  29229. }
  29230. },
  29231. },
  29232. [
  29233. {
  29234. name: "Micro",
  29235. height: math.unit(4, "inches"),
  29236. default: true
  29237. },
  29238. {
  29239. name: "Macro",
  29240. height: math.unit(50, "feet")
  29241. },
  29242. ]
  29243. ))
  29244. characterMakers.push(() => makeCharacter(
  29245. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29246. {
  29247. front: {
  29248. height: math.unit(16, "feet"),
  29249. weight: math.unit(1000, "lb"),
  29250. name: "Front",
  29251. image: {
  29252. source: "./media/characters/grim/front.svg",
  29253. extra: 622 / 614,
  29254. bottom: 18.1 / 642
  29255. }
  29256. },
  29257. back: {
  29258. height: math.unit(16, "feet"),
  29259. weight: math.unit(1000, "lb"),
  29260. name: "Back",
  29261. image: {
  29262. source: "./media/characters/grim/back.svg",
  29263. extra: 610.6 / 602,
  29264. bottom: 40.8 / 652
  29265. }
  29266. },
  29267. hunched: {
  29268. height: math.unit(9.75, "feet"),
  29269. weight: math.unit(1000, "lb"),
  29270. name: "Hunched",
  29271. image: {
  29272. source: "./media/characters/grim/hunched.svg",
  29273. extra: 304 / 297,
  29274. bottom: 35.4 / 394
  29275. }
  29276. },
  29277. },
  29278. [
  29279. {
  29280. name: "Normal",
  29281. height: math.unit(16, "feet"),
  29282. default: true
  29283. },
  29284. ]
  29285. ))
  29286. characterMakers.push(() => makeCharacter(
  29287. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29288. {
  29289. front: {
  29290. height: math.unit(2.3, "meters"),
  29291. weight: math.unit(300, "lb"),
  29292. name: "Front",
  29293. image: {
  29294. source: "./media/characters/sinja/front-sfw.svg",
  29295. extra: 1393 / 1294,
  29296. bottom: 70 / 1463
  29297. }
  29298. },
  29299. frontNsfw: {
  29300. height: math.unit(2.3, "meters"),
  29301. weight: math.unit(300, "lb"),
  29302. name: "Front (NSFW)",
  29303. image: {
  29304. source: "./media/characters/sinja/front-nsfw.svg",
  29305. extra: 1393 / 1294,
  29306. bottom: 70 / 1463
  29307. }
  29308. },
  29309. back: {
  29310. height: math.unit(2.3, "meters"),
  29311. weight: math.unit(300, "lb"),
  29312. name: "Back",
  29313. image: {
  29314. source: "./media/characters/sinja/back.svg",
  29315. extra: 1393 / 1294,
  29316. bottom: 70 / 1463
  29317. }
  29318. },
  29319. head: {
  29320. height: math.unit(1.771, "feet"),
  29321. name: "Head",
  29322. image: {
  29323. source: "./media/characters/sinja/head.svg"
  29324. }
  29325. },
  29326. slit: {
  29327. height: math.unit(0.8, "feet"),
  29328. name: "Slit",
  29329. image: {
  29330. source: "./media/characters/sinja/slit.svg"
  29331. }
  29332. },
  29333. },
  29334. [
  29335. {
  29336. name: "Normal",
  29337. height: math.unit(2.3, "meters")
  29338. },
  29339. {
  29340. name: "Macro",
  29341. height: math.unit(91, "meters"),
  29342. default: true
  29343. },
  29344. {
  29345. name: "Megamacro",
  29346. height: math.unit(91440, "meters")
  29347. },
  29348. {
  29349. name: "Gigamacro",
  29350. height: math.unit(60960000, "meters")
  29351. },
  29352. {
  29353. name: "Teramacro",
  29354. height: math.unit(9144000000, "meters")
  29355. },
  29356. ]
  29357. ))
  29358. characterMakers.push(() => makeCharacter(
  29359. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29360. {
  29361. front: {
  29362. height: math.unit(1.7, "meters"),
  29363. weight: math.unit(130, "lb"),
  29364. name: "Front",
  29365. image: {
  29366. source: "./media/characters/kyu/front.svg",
  29367. extra: 415 / 395,
  29368. bottom: 5 / 420
  29369. }
  29370. },
  29371. head: {
  29372. height: math.unit(1.75, "feet"),
  29373. name: "Head",
  29374. image: {
  29375. source: "./media/characters/kyu/head.svg"
  29376. }
  29377. },
  29378. foot: {
  29379. height: math.unit(0.81, "feet"),
  29380. name: "Foot",
  29381. image: {
  29382. source: "./media/characters/kyu/foot.svg"
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "Normal",
  29389. height: math.unit(1.7, "meters")
  29390. },
  29391. {
  29392. name: "Macro",
  29393. height: math.unit(131, "feet"),
  29394. default: true
  29395. },
  29396. {
  29397. name: "Megamacro",
  29398. height: math.unit(91440, "meters")
  29399. },
  29400. {
  29401. name: "Gigamacro",
  29402. height: math.unit(60960000, "meters")
  29403. },
  29404. {
  29405. name: "Teramacro",
  29406. height: math.unit(9144000000, "meters")
  29407. },
  29408. ]
  29409. ))
  29410. characterMakers.push(() => makeCharacter(
  29411. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29412. {
  29413. front: {
  29414. height: math.unit(7 + 1 / 12, "feet"),
  29415. weight: math.unit(250, "lb"),
  29416. name: "Front",
  29417. image: {
  29418. source: "./media/characters/joey/front.svg",
  29419. extra: 1791 / 1537,
  29420. bottom: 28 / 1816
  29421. }
  29422. },
  29423. },
  29424. [
  29425. {
  29426. name: "Micro",
  29427. height: math.unit(3, "inches")
  29428. },
  29429. {
  29430. name: "Normal",
  29431. height: math.unit(7 + 1 / 12, "feet"),
  29432. default: true
  29433. },
  29434. ]
  29435. ))
  29436. characterMakers.push(() => makeCharacter(
  29437. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29438. {
  29439. front: {
  29440. height: math.unit(165, "cm"),
  29441. weight: math.unit(140, "lb"),
  29442. name: "Front",
  29443. image: {
  29444. source: "./media/characters/sam-evans/front.svg",
  29445. extra: 3417 / 3230,
  29446. bottom: 41.3 / 3417
  29447. }
  29448. },
  29449. frontSixTails: {
  29450. height: math.unit(165, "cm"),
  29451. weight: math.unit(140, "lb"),
  29452. name: "Front-six-tails",
  29453. image: {
  29454. source: "./media/characters/sam-evans/front-six-tails.svg",
  29455. extra: 3417 / 3230,
  29456. bottom: 41.3 / 3417
  29457. }
  29458. },
  29459. back: {
  29460. height: math.unit(165, "cm"),
  29461. weight: math.unit(140, "lb"),
  29462. name: "Back",
  29463. image: {
  29464. source: "./media/characters/sam-evans/back.svg",
  29465. extra: 3227 / 3032,
  29466. bottom: 6.8 / 3234
  29467. }
  29468. },
  29469. face: {
  29470. height: math.unit(0.68, "feet"),
  29471. name: "Face",
  29472. image: {
  29473. source: "./media/characters/sam-evans/face.svg"
  29474. }
  29475. },
  29476. },
  29477. [
  29478. {
  29479. name: "Normal",
  29480. height: math.unit(165, "cm"),
  29481. default: true
  29482. },
  29483. {
  29484. name: "Macro",
  29485. height: math.unit(100, "meters")
  29486. },
  29487. {
  29488. name: "Macro+",
  29489. height: math.unit(800, "meters")
  29490. },
  29491. {
  29492. name: "Macro++",
  29493. height: math.unit(3, "km")
  29494. },
  29495. {
  29496. name: "Macro+++",
  29497. height: math.unit(30, "km")
  29498. },
  29499. ]
  29500. ))
  29501. characterMakers.push(() => makeCharacter(
  29502. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29503. {
  29504. front: {
  29505. height: math.unit(10, "feet"),
  29506. weight: math.unit(750, "lb"),
  29507. name: "Front",
  29508. image: {
  29509. source: "./media/characters/juliet-a/front.svg",
  29510. extra: 1766 / 1720,
  29511. bottom: 43 / 1809
  29512. }
  29513. },
  29514. back: {
  29515. height: math.unit(10, "feet"),
  29516. weight: math.unit(750, "lb"),
  29517. name: "Back",
  29518. image: {
  29519. source: "./media/characters/juliet-a/back.svg",
  29520. extra: 1781 / 1734,
  29521. bottom: 35 / 1810,
  29522. }
  29523. },
  29524. },
  29525. [
  29526. {
  29527. name: "Normal",
  29528. height: math.unit(10, "feet"),
  29529. default: true
  29530. },
  29531. {
  29532. name: "Dragon Form",
  29533. height: math.unit(250, "feet")
  29534. },
  29535. {
  29536. name: "Macro",
  29537. height: math.unit(1000, "feet")
  29538. },
  29539. {
  29540. name: "Megamacro",
  29541. height: math.unit(10000, "feet")
  29542. }
  29543. ]
  29544. ))
  29545. characterMakers.push(() => makeCharacter(
  29546. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29547. {
  29548. regular: {
  29549. height: math.unit(7 + 3 / 12, "feet"),
  29550. weight: math.unit(260, "lb"),
  29551. name: "Regular",
  29552. image: {
  29553. source: "./media/characters/wild/regular.svg",
  29554. extra: 97.45 / 92,
  29555. bottom: 6.8 / 104.3
  29556. }
  29557. },
  29558. biggums: {
  29559. height: math.unit(8 + 6 / 12, "feet"),
  29560. weight: math.unit(425, "lb"),
  29561. name: "Biggums",
  29562. image: {
  29563. source: "./media/characters/wild/biggums.svg",
  29564. extra: 97.45 / 92,
  29565. bottom: 7.5 / 132.34
  29566. }
  29567. },
  29568. mawRegular: {
  29569. height: math.unit(1.24, "feet"),
  29570. name: "Maw (Regular)",
  29571. image: {
  29572. source: "./media/characters/wild/maw.svg"
  29573. }
  29574. },
  29575. mawBiggums: {
  29576. height: math.unit(1.47, "feet"),
  29577. name: "Maw (Biggums)",
  29578. image: {
  29579. source: "./media/characters/wild/maw.svg"
  29580. }
  29581. },
  29582. },
  29583. [
  29584. {
  29585. name: "Normal",
  29586. height: math.unit(7 + 3 / 12, "feet"),
  29587. default: true
  29588. },
  29589. ]
  29590. ))
  29591. characterMakers.push(() => makeCharacter(
  29592. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29593. {
  29594. front: {
  29595. height: math.unit(2.5, "meters"),
  29596. weight: math.unit(200, "kg"),
  29597. name: "Front",
  29598. image: {
  29599. source: "./media/characters/vidar/front.svg",
  29600. extra: 2994 / 2795,
  29601. bottom: 56 / 3061
  29602. }
  29603. },
  29604. back: {
  29605. height: math.unit(2.5, "meters"),
  29606. weight: math.unit(200, "kg"),
  29607. name: "Back",
  29608. image: {
  29609. source: "./media/characters/vidar/back.svg",
  29610. extra: 3131 / 2928,
  29611. bottom: 13.5 / 3141.5
  29612. }
  29613. },
  29614. feral: {
  29615. height: math.unit(2.5, "meters"),
  29616. weight: math.unit(2000, "kg"),
  29617. name: "Feral",
  29618. image: {
  29619. source: "./media/characters/vidar/feral.svg",
  29620. extra: 2790 / 1765,
  29621. bottom: 6 / 2796
  29622. }
  29623. },
  29624. },
  29625. [
  29626. {
  29627. name: "Normal",
  29628. height: math.unit(2.5, "meters"),
  29629. default: true
  29630. },
  29631. {
  29632. name: "Macro",
  29633. height: math.unit(100, "meters")
  29634. },
  29635. ]
  29636. ))
  29637. characterMakers.push(() => makeCharacter(
  29638. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29639. {
  29640. front: {
  29641. height: math.unit(5 + 9 / 12, "feet"),
  29642. weight: math.unit(120, "lb"),
  29643. name: "Front",
  29644. image: {
  29645. source: "./media/characters/ash/front.svg",
  29646. extra: 2189 / 1961,
  29647. bottom: 5.2 / 2194
  29648. }
  29649. },
  29650. },
  29651. [
  29652. {
  29653. name: "Normal",
  29654. height: math.unit(5 + 9 / 12, "feet"),
  29655. default: true
  29656. },
  29657. ]
  29658. ))
  29659. characterMakers.push(() => makeCharacter(
  29660. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29661. {
  29662. front: {
  29663. height: math.unit(9, "feet"),
  29664. weight: math.unit(10000, "lb"),
  29665. name: "Front",
  29666. image: {
  29667. source: "./media/characters/gygabite/front.svg",
  29668. bottom: 31.7 / 537.8,
  29669. extra: 505 / 370
  29670. }
  29671. },
  29672. },
  29673. [
  29674. {
  29675. name: "Normal",
  29676. height: math.unit(9, "feet"),
  29677. default: true
  29678. },
  29679. ]
  29680. ))
  29681. characterMakers.push(() => makeCharacter(
  29682. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29683. {
  29684. front: {
  29685. height: math.unit(12, "feet"),
  29686. weight: math.unit(4000, "lb"),
  29687. name: "Front",
  29688. image: {
  29689. source: "./media/characters/p0tat0/front.svg",
  29690. extra: 1065 / 921,
  29691. bottom: 55.7 / 1121.25
  29692. }
  29693. },
  29694. },
  29695. [
  29696. {
  29697. name: "Normal",
  29698. height: math.unit(12, "feet"),
  29699. default: true
  29700. },
  29701. ]
  29702. ))
  29703. characterMakers.push(() => makeCharacter(
  29704. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29705. {
  29706. side: {
  29707. height: math.unit(6.5, "feet"),
  29708. weight: math.unit(800, "lb"),
  29709. name: "Side",
  29710. image: {
  29711. source: "./media/characters/dusk/side.svg",
  29712. extra: 615 / 373,
  29713. bottom: 53 / 664
  29714. }
  29715. },
  29716. sitting: {
  29717. height: math.unit(7, "feet"),
  29718. weight: math.unit(800, "lb"),
  29719. name: "Sitting",
  29720. image: {
  29721. source: "./media/characters/dusk/sitting.svg",
  29722. extra: 753 / 425,
  29723. bottom: 33 / 774
  29724. }
  29725. },
  29726. head: {
  29727. height: math.unit(6.1, "feet"),
  29728. name: "Head",
  29729. image: {
  29730. source: "./media/characters/dusk/head.svg"
  29731. }
  29732. },
  29733. },
  29734. [
  29735. {
  29736. name: "Normal",
  29737. height: math.unit(7, "feet"),
  29738. default: true
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29744. {
  29745. front: {
  29746. height: math.unit(15, "feet"),
  29747. weight: math.unit(7000, "lb"),
  29748. name: "Front",
  29749. image: {
  29750. source: "./media/characters/jay-direwolf/front.svg",
  29751. extra: 1810 / 1732,
  29752. bottom: 66 / 1892
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Normal",
  29759. height: math.unit(15, "feet"),
  29760. default: true
  29761. },
  29762. ]
  29763. ))
  29764. characterMakers.push(() => makeCharacter(
  29765. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29766. {
  29767. front: {
  29768. height: math.unit(4 + 9 / 12, "feet"),
  29769. weight: math.unit(130, "lb"),
  29770. name: "Front",
  29771. image: {
  29772. source: "./media/characters/anchovie/front.svg",
  29773. extra: 382 / 350,
  29774. bottom: 25 / 409
  29775. }
  29776. },
  29777. back: {
  29778. height: math.unit(4 + 9 / 12, "feet"),
  29779. weight: math.unit(130, "lb"),
  29780. name: "Back",
  29781. image: {
  29782. source: "./media/characters/anchovie/back.svg",
  29783. extra: 385 / 352,
  29784. bottom: 16.6 / 402
  29785. }
  29786. },
  29787. frontDressed: {
  29788. height: math.unit(4 + 9 / 12, "feet"),
  29789. weight: math.unit(130, "lb"),
  29790. name: "Front (Dressed)",
  29791. image: {
  29792. source: "./media/characters/anchovie/front-dressed.svg",
  29793. extra: 382 / 350,
  29794. bottom: 25 / 409
  29795. }
  29796. },
  29797. backDressed: {
  29798. height: math.unit(4 + 9 / 12, "feet"),
  29799. weight: math.unit(130, "lb"),
  29800. name: "Back (Dressed)",
  29801. image: {
  29802. source: "./media/characters/anchovie/back-dressed.svg",
  29803. extra: 385 / 352,
  29804. bottom: 16.6 / 402
  29805. }
  29806. },
  29807. },
  29808. [
  29809. {
  29810. name: "Micro",
  29811. height: math.unit(6.4, "inches")
  29812. },
  29813. {
  29814. name: "Normal",
  29815. height: math.unit(4 + 9 / 12, "feet"),
  29816. default: true
  29817. },
  29818. ]
  29819. ))
  29820. characterMakers.push(() => makeCharacter(
  29821. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29822. {
  29823. front: {
  29824. height: math.unit(2, "meters"),
  29825. weight: math.unit(180, "lb"),
  29826. name: "Front",
  29827. image: {
  29828. source: "./media/characters/acidrenamon/front.svg",
  29829. extra: 987 / 890,
  29830. bottom: 22.8 / 1009
  29831. }
  29832. },
  29833. back: {
  29834. height: math.unit(2, "meters"),
  29835. weight: math.unit(180, "lb"),
  29836. name: "Back",
  29837. image: {
  29838. source: "./media/characters/acidrenamon/back.svg",
  29839. extra: 983 / 891,
  29840. bottom: 8.4 / 992
  29841. }
  29842. },
  29843. head: {
  29844. height: math.unit(1.92, "feet"),
  29845. name: "Head",
  29846. image: {
  29847. source: "./media/characters/acidrenamon/head.svg"
  29848. }
  29849. },
  29850. rump: {
  29851. height: math.unit(1.72, "feet"),
  29852. name: "Rump",
  29853. image: {
  29854. source: "./media/characters/acidrenamon/rump.svg"
  29855. }
  29856. },
  29857. tail: {
  29858. height: math.unit(4.2, "feet"),
  29859. name: "Tail",
  29860. image: {
  29861. source: "./media/characters/acidrenamon/tail.svg"
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(2, "meters"),
  29869. default: true
  29870. },
  29871. {
  29872. name: "Minimacro",
  29873. height: math.unit(7, "meters")
  29874. },
  29875. {
  29876. name: "Macro",
  29877. height: math.unit(200, "meters")
  29878. },
  29879. {
  29880. name: "Gigamacro",
  29881. height: math.unit(0.2, "earths")
  29882. },
  29883. ]
  29884. ))
  29885. characterMakers.push(() => makeCharacter(
  29886. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29887. {
  29888. front: {
  29889. height: math.unit(152, "feet"),
  29890. name: "Front",
  29891. image: {
  29892. source: "./media/characters/kenzie-lee/front.svg",
  29893. extra: 1869/1774,
  29894. bottom: 128/1997
  29895. }
  29896. },
  29897. side: {
  29898. height: math.unit(86, "feet"),
  29899. name: "Side",
  29900. image: {
  29901. source: "./media/characters/kenzie-lee/side.svg",
  29902. extra: 930/815,
  29903. bottom: 177/1107
  29904. }
  29905. },
  29906. paw: {
  29907. height: math.unit(15, "feet"),
  29908. name: "Paw",
  29909. image: {
  29910. source: "./media/characters/kenzie-lee/paw.svg"
  29911. }
  29912. },
  29913. },
  29914. [
  29915. {
  29916. name: "Kenzie Flea",
  29917. height: math.unit(2, "mm"),
  29918. default: true
  29919. },
  29920. {
  29921. name: "Micro",
  29922. height: math.unit(2, "inches")
  29923. },
  29924. {
  29925. name: "Normal",
  29926. height: math.unit(152, "feet")
  29927. },
  29928. {
  29929. name: "Megamacro",
  29930. height: math.unit(7, "miles")
  29931. },
  29932. {
  29933. name: "Gigamacro",
  29934. height: math.unit(8000, "miles")
  29935. },
  29936. ]
  29937. ))
  29938. characterMakers.push(() => makeCharacter(
  29939. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29940. {
  29941. front: {
  29942. height: math.unit(6, "feet"),
  29943. name: "Front",
  29944. image: {
  29945. source: "./media/characters/withers/front.svg",
  29946. extra: 1935/1760,
  29947. bottom: 72/2007
  29948. }
  29949. },
  29950. back: {
  29951. height: math.unit(6, "feet"),
  29952. name: "Back",
  29953. image: {
  29954. source: "./media/characters/withers/back.svg",
  29955. extra: 1944/1792,
  29956. bottom: 12/1956
  29957. }
  29958. },
  29959. dressed: {
  29960. height: math.unit(6, "feet"),
  29961. name: "Dressed",
  29962. image: {
  29963. source: "./media/characters/withers/dressed.svg",
  29964. extra: 1937/1765,
  29965. bottom: 73/2010
  29966. }
  29967. },
  29968. phase1: {
  29969. height: math.unit(1.1, "feet"),
  29970. name: "Phase 1",
  29971. image: {
  29972. source: "./media/characters/withers/phase-1.svg",
  29973. extra: 1885/1232,
  29974. bottom: 0/1885
  29975. }
  29976. },
  29977. phase2: {
  29978. height: math.unit(1.05, "feet"),
  29979. name: "Phase 2",
  29980. image: {
  29981. source: "./media/characters/withers/phase-2.svg",
  29982. extra: 1792/1090,
  29983. bottom: 0/1792
  29984. }
  29985. },
  29986. partyWipe: {
  29987. height: math.unit(1.1, "feet"),
  29988. name: "Party Wipe",
  29989. image: {
  29990. source: "./media/characters/withers/party-wipe.svg",
  29991. extra: 1864/1207,
  29992. bottom: 0/1864
  29993. }
  29994. },
  29995. },
  29996. [
  29997. {
  29998. name: "Macro",
  29999. height: math.unit(167, "feet"),
  30000. default: true
  30001. },
  30002. {
  30003. name: "Megamacro",
  30004. height: math.unit(15, "miles")
  30005. }
  30006. ]
  30007. ))
  30008. characterMakers.push(() => makeCharacter(
  30009. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30010. {
  30011. front: {
  30012. height: math.unit(6 + 7 / 12, "feet"),
  30013. weight: math.unit(250, "lb"),
  30014. name: "Front",
  30015. image: {
  30016. source: "./media/characters/nemoskii/front.svg",
  30017. extra: 2270 / 1734,
  30018. bottom: 86 / 2354
  30019. }
  30020. },
  30021. back: {
  30022. height: math.unit(6 + 7 / 12, "feet"),
  30023. weight: math.unit(250, "lb"),
  30024. name: "Back",
  30025. image: {
  30026. source: "./media/characters/nemoskii/back.svg",
  30027. extra: 1845 / 1788,
  30028. bottom: 10.5 / 1852
  30029. }
  30030. },
  30031. head: {
  30032. height: math.unit(1.31, "feet"),
  30033. name: "Head",
  30034. image: {
  30035. source: "./media/characters/nemoskii/head.svg"
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Micro",
  30042. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30043. },
  30044. {
  30045. name: "Normal",
  30046. height: math.unit(6 + 7 / 12, "feet"),
  30047. default: true
  30048. },
  30049. {
  30050. name: "Macro",
  30051. height: math.unit((6 + 7 / 12) * 150, "feet")
  30052. },
  30053. {
  30054. name: "Macro+",
  30055. height: math.unit((6 + 7 / 12) * 500, "feet")
  30056. },
  30057. {
  30058. name: "Megamacro",
  30059. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30060. },
  30061. ]
  30062. ))
  30063. characterMakers.push(() => makeCharacter(
  30064. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30065. {
  30066. front: {
  30067. height: math.unit(1, "mile"),
  30068. weight: math.unit(265261.9, "lb"),
  30069. name: "Front",
  30070. image: {
  30071. source: "./media/characters/shui/front.svg",
  30072. extra: 1633 / 1564,
  30073. bottom: 91.5 / 1726
  30074. }
  30075. },
  30076. },
  30077. [
  30078. {
  30079. name: "Macro",
  30080. height: math.unit(1, "mile"),
  30081. default: true
  30082. },
  30083. ]
  30084. ))
  30085. characterMakers.push(() => makeCharacter(
  30086. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30087. {
  30088. front: {
  30089. height: math.unit(12 + 6 / 12, "feet"),
  30090. weight: math.unit(1342, "lb"),
  30091. name: "Front",
  30092. image: {
  30093. source: "./media/characters/arokh-takakura/front.svg",
  30094. extra: 1089 / 1043,
  30095. bottom: 77.4 / 1176.7
  30096. }
  30097. },
  30098. back: {
  30099. height: math.unit(12 + 6 / 12, "feet"),
  30100. weight: math.unit(1342, "lb"),
  30101. name: "Back",
  30102. image: {
  30103. source: "./media/characters/arokh-takakura/back.svg",
  30104. extra: 1046 / 1019,
  30105. bottom: 102 / 1150
  30106. }
  30107. },
  30108. },
  30109. [
  30110. {
  30111. name: "Big",
  30112. height: math.unit(12 + 6 / 12, "feet"),
  30113. default: true
  30114. },
  30115. ]
  30116. ))
  30117. characterMakers.push(() => makeCharacter(
  30118. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30119. {
  30120. front: {
  30121. height: math.unit(5 + 6 / 12, "feet"),
  30122. weight: math.unit(150, "lb"),
  30123. name: "Front",
  30124. image: {
  30125. source: "./media/characters/theo/front.svg",
  30126. extra: 1184 / 1131,
  30127. bottom: 7.4 / 1191
  30128. }
  30129. },
  30130. },
  30131. [
  30132. {
  30133. name: "Micro",
  30134. height: math.unit(5, "inches")
  30135. },
  30136. {
  30137. name: "Normal",
  30138. height: math.unit(5 + 6 / 12, "feet"),
  30139. default: true
  30140. },
  30141. ]
  30142. ))
  30143. characterMakers.push(() => makeCharacter(
  30144. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30145. {
  30146. front: {
  30147. height: math.unit(5 + 9 / 12, "feet"),
  30148. weight: math.unit(130, "lb"),
  30149. name: "Front",
  30150. image: {
  30151. source: "./media/characters/cecelia-swift/front.svg",
  30152. extra: 502 / 484,
  30153. bottom: 23 / 523
  30154. }
  30155. },
  30156. back: {
  30157. height: math.unit(5 + 9 / 12, "feet"),
  30158. weight: math.unit(130, "lb"),
  30159. name: "Back",
  30160. image: {
  30161. source: "./media/characters/cecelia-swift/back.svg",
  30162. extra: 499 / 485,
  30163. bottom: 12 / 511
  30164. }
  30165. },
  30166. head: {
  30167. height: math.unit(0.90, "feet"),
  30168. name: "Head",
  30169. image: {
  30170. source: "./media/characters/cecelia-swift/head.svg"
  30171. }
  30172. },
  30173. rump: {
  30174. height: math.unit(1.75, "feet"),
  30175. name: "Rump",
  30176. image: {
  30177. source: "./media/characters/cecelia-swift/rump.svg"
  30178. }
  30179. },
  30180. },
  30181. [
  30182. {
  30183. name: "Normal",
  30184. height: math.unit(5 + 9 / 12, "feet"),
  30185. default: true
  30186. },
  30187. {
  30188. name: "Big",
  30189. height: math.unit(50, "feet")
  30190. },
  30191. {
  30192. name: "Macro",
  30193. height: math.unit(100, "feet")
  30194. },
  30195. {
  30196. name: "Macro+",
  30197. height: math.unit(500, "feet")
  30198. },
  30199. {
  30200. name: "Macro++",
  30201. height: math.unit(1000, "feet")
  30202. },
  30203. ]
  30204. ))
  30205. characterMakers.push(() => makeCharacter(
  30206. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30207. {
  30208. front: {
  30209. height: math.unit(6, "feet"),
  30210. weight: math.unit(150, "lb"),
  30211. name: "Front",
  30212. image: {
  30213. source: "./media/characters/kaunan/front.svg",
  30214. extra: 2890 / 2523,
  30215. bottom: 49 / 2939
  30216. }
  30217. },
  30218. },
  30219. [
  30220. {
  30221. name: "Macro",
  30222. height: math.unit(150, "feet"),
  30223. default: true
  30224. },
  30225. ]
  30226. ))
  30227. characterMakers.push(() => makeCharacter(
  30228. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30229. {
  30230. dressed: {
  30231. height: math.unit(175, "cm"),
  30232. weight: math.unit(60, "kg"),
  30233. name: "Dressed",
  30234. image: {
  30235. source: "./media/characters/fei/dressed.svg",
  30236. extra: 1402/1278,
  30237. bottom: 27/1429
  30238. }
  30239. },
  30240. nude: {
  30241. height: math.unit(175, "cm"),
  30242. weight: math.unit(60, "kg"),
  30243. name: "Nude",
  30244. image: {
  30245. source: "./media/characters/fei/nude.svg",
  30246. extra: 1402/1278,
  30247. bottom: 27/1429
  30248. }
  30249. },
  30250. heels: {
  30251. height: math.unit(0.466, "feet"),
  30252. name: "Heels",
  30253. image: {
  30254. source: "./media/characters/fei/heels.svg",
  30255. extra: 156/152,
  30256. bottom: 28/184
  30257. }
  30258. },
  30259. },
  30260. [
  30261. {
  30262. name: "Mortal",
  30263. height: math.unit(175, "cm")
  30264. },
  30265. {
  30266. name: "Normal",
  30267. height: math.unit(3500, "m")
  30268. },
  30269. {
  30270. name: "Stroll",
  30271. height: math.unit(18.4, "km"),
  30272. default: true
  30273. },
  30274. {
  30275. name: "Showoff",
  30276. height: math.unit(175, "km")
  30277. },
  30278. ]
  30279. ))
  30280. characterMakers.push(() => makeCharacter(
  30281. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30282. {
  30283. front: {
  30284. height: math.unit(7, "feet"),
  30285. weight: math.unit(1000, "kg"),
  30286. name: "Front",
  30287. image: {
  30288. source: "./media/characters/edrax/front.svg",
  30289. extra: 2838 / 2550,
  30290. bottom: 130 / 2968
  30291. }
  30292. },
  30293. },
  30294. [
  30295. {
  30296. name: "Small",
  30297. height: math.unit(7, "feet")
  30298. },
  30299. {
  30300. name: "Normal",
  30301. height: math.unit(1500, "meters")
  30302. },
  30303. {
  30304. name: "Mega",
  30305. height: math.unit(12000000, "km"),
  30306. default: true
  30307. },
  30308. {
  30309. name: "Megamacro",
  30310. height: math.unit(10600000, "lightyears")
  30311. },
  30312. {
  30313. name: "Hypermacro",
  30314. height: math.unit(256, "yottameters")
  30315. },
  30316. ]
  30317. ))
  30318. characterMakers.push(() => makeCharacter(
  30319. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30320. {
  30321. front: {
  30322. height: math.unit(10, "feet"),
  30323. weight: math.unit(750, "lb"),
  30324. name: "Front",
  30325. image: {
  30326. source: "./media/characters/clove/front.svg",
  30327. extra: 1918/1751,
  30328. bottom: 52/1970
  30329. }
  30330. },
  30331. back: {
  30332. height: math.unit(10, "feet"),
  30333. weight: math.unit(750, "lb"),
  30334. name: "Back",
  30335. image: {
  30336. source: "./media/characters/clove/back.svg",
  30337. extra: 1912/1747,
  30338. bottom: 50/1962
  30339. }
  30340. },
  30341. },
  30342. [
  30343. {
  30344. name: "Normal",
  30345. height: math.unit(10, "feet"),
  30346. default: true
  30347. },
  30348. ]
  30349. ))
  30350. characterMakers.push(() => makeCharacter(
  30351. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30352. {
  30353. front: {
  30354. height: math.unit(4, "feet"),
  30355. weight: math.unit(50, "lb"),
  30356. name: "Front",
  30357. image: {
  30358. source: "./media/characters/alex-rabbit/front.svg",
  30359. extra: 507 / 458,
  30360. bottom: 18.5 / 527
  30361. }
  30362. },
  30363. back: {
  30364. height: math.unit(4, "feet"),
  30365. weight: math.unit(50, "lb"),
  30366. name: "Back",
  30367. image: {
  30368. source: "./media/characters/alex-rabbit/back.svg",
  30369. extra: 502 / 460,
  30370. bottom: 18.9 / 521
  30371. }
  30372. },
  30373. },
  30374. [
  30375. {
  30376. name: "Normal",
  30377. height: math.unit(4, "feet"),
  30378. default: true
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30384. {
  30385. front: {
  30386. height: math.unit(1 + 3 / 12, "feet"),
  30387. weight: math.unit(80, "lb"),
  30388. name: "Front",
  30389. image: {
  30390. source: "./media/characters/zander-rose/front.svg",
  30391. extra: 916 / 797,
  30392. bottom: 17 / 933
  30393. }
  30394. },
  30395. back: {
  30396. height: math.unit(1 + 3 / 12, "feet"),
  30397. weight: math.unit(80, "lb"),
  30398. name: "Back",
  30399. image: {
  30400. source: "./media/characters/zander-rose/back.svg",
  30401. extra: 903 / 779,
  30402. bottom: 31 / 934
  30403. }
  30404. },
  30405. },
  30406. [
  30407. {
  30408. name: "Normal",
  30409. height: math.unit(1 + 3 / 12, "feet"),
  30410. default: true
  30411. },
  30412. ]
  30413. ))
  30414. characterMakers.push(() => makeCharacter(
  30415. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30416. {
  30417. anthro: {
  30418. height: math.unit(6, "feet"),
  30419. weight: math.unit(150, "lb"),
  30420. name: "Anthro",
  30421. image: {
  30422. source: "./media/characters/razz/anthro.svg",
  30423. extra: 1437 / 1343,
  30424. bottom: 48 / 1485
  30425. }
  30426. },
  30427. feral: {
  30428. height: math.unit(6, "feet"),
  30429. weight: math.unit(150, "lb"),
  30430. name: "Feral",
  30431. image: {
  30432. source: "./media/characters/razz/feral.svg",
  30433. extra: 2569 / 1385,
  30434. bottom: 95 / 2664
  30435. }
  30436. },
  30437. },
  30438. [
  30439. {
  30440. name: "Normal",
  30441. height: math.unit(6, "feet"),
  30442. default: true
  30443. },
  30444. ]
  30445. ))
  30446. characterMakers.push(() => makeCharacter(
  30447. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30448. {
  30449. front: {
  30450. height: math.unit(9 + 4 / 12, "feet"),
  30451. weight: math.unit(500, "lb"),
  30452. name: "Front",
  30453. image: {
  30454. source: "./media/characters/morrigan/front.svg",
  30455. extra: 2707 / 2579,
  30456. bottom: 156 / 2863
  30457. }
  30458. },
  30459. },
  30460. [
  30461. {
  30462. name: "Normal",
  30463. height: math.unit(9 + 4 / 12, "feet"),
  30464. default: true
  30465. },
  30466. ]
  30467. ))
  30468. characterMakers.push(() => makeCharacter(
  30469. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30470. {
  30471. front: {
  30472. height: math.unit(5, "stories"),
  30473. weight: math.unit(4000, "lb"),
  30474. name: "Front",
  30475. image: {
  30476. source: "./media/characters/jenene/front.svg",
  30477. extra: 1780 / 1710,
  30478. bottom: 57 / 1837
  30479. }
  30480. },
  30481. },
  30482. [
  30483. {
  30484. name: "Normal",
  30485. height: math.unit(5, "stories"),
  30486. default: true
  30487. },
  30488. ]
  30489. ))
  30490. characterMakers.push(() => makeCharacter(
  30491. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30492. {
  30493. taurSfw: {
  30494. height: math.unit(10, "meters"),
  30495. weight: math.unit(17500, "kg"),
  30496. name: "Taur",
  30497. image: {
  30498. source: "./media/characters/faey/taur-sfw.svg",
  30499. extra: 1200 / 968,
  30500. bottom: 41 / 1241
  30501. }
  30502. },
  30503. chestmaw: {
  30504. height: math.unit(2.01, "meters"),
  30505. name: "Chestmaw",
  30506. image: {
  30507. source: "./media/characters/faey/chestmaw.svg"
  30508. }
  30509. },
  30510. foot: {
  30511. height: math.unit(2.43, "meters"),
  30512. name: "Foot",
  30513. image: {
  30514. source: "./media/characters/faey/foot.svg"
  30515. }
  30516. },
  30517. jaws: {
  30518. height: math.unit(1.66, "meters"),
  30519. name: "Jaws",
  30520. image: {
  30521. source: "./media/characters/faey/jaws.svg"
  30522. }
  30523. },
  30524. tongues: {
  30525. height: math.unit(2.01, "meters"),
  30526. name: "Tongues",
  30527. image: {
  30528. source: "./media/characters/faey/tongues.svg"
  30529. }
  30530. },
  30531. },
  30532. [
  30533. {
  30534. name: "Small",
  30535. height: math.unit(10, "meters"),
  30536. default: true
  30537. },
  30538. {
  30539. name: "Big",
  30540. height: math.unit(500000, "km")
  30541. },
  30542. ]
  30543. ))
  30544. characterMakers.push(() => makeCharacter(
  30545. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30546. {
  30547. front: {
  30548. height: math.unit(7, "feet"),
  30549. weight: math.unit(275, "lb"),
  30550. name: "Front",
  30551. image: {
  30552. source: "./media/characters/roku/front.svg",
  30553. extra: 903 / 878,
  30554. bottom: 37 / 940
  30555. }
  30556. },
  30557. },
  30558. [
  30559. {
  30560. name: "Normal",
  30561. height: math.unit(7, "feet"),
  30562. default: true
  30563. },
  30564. {
  30565. name: "Macro",
  30566. height: math.unit(500, "feet")
  30567. },
  30568. {
  30569. name: "Megamacro",
  30570. height: math.unit(200, "miles")
  30571. },
  30572. ]
  30573. ))
  30574. characterMakers.push(() => makeCharacter(
  30575. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30576. {
  30577. front: {
  30578. height: math.unit(6 + 2 / 12, "feet"),
  30579. weight: math.unit(150, "lb"),
  30580. name: "Front",
  30581. image: {
  30582. source: "./media/characters/lira/front.svg",
  30583. extra: 1727 / 1605,
  30584. bottom: 26 / 1753
  30585. }
  30586. },
  30587. back: {
  30588. height: math.unit(6 + 2 / 12, "feet"),
  30589. weight: math.unit(150, "lb"),
  30590. name: "Back",
  30591. image: {
  30592. source: "./media/characters/lira/back.svg",
  30593. extra: 1713/1621,
  30594. bottom: 20/1733
  30595. }
  30596. },
  30597. hand: {
  30598. height: math.unit(0.75, "feet"),
  30599. name: "Hand",
  30600. image: {
  30601. source: "./media/characters/lira/hand.svg"
  30602. }
  30603. },
  30604. maw: {
  30605. height: math.unit(0.65, "feet"),
  30606. name: "Maw",
  30607. image: {
  30608. source: "./media/characters/lira/maw.svg"
  30609. }
  30610. },
  30611. pawDigi: {
  30612. height: math.unit(1.6, "feet"),
  30613. name: "Paw Digi",
  30614. image: {
  30615. source: "./media/characters/lira/paw-digi.svg"
  30616. }
  30617. },
  30618. pawPlanti: {
  30619. height: math.unit(1.4, "feet"),
  30620. name: "Paw Planti",
  30621. image: {
  30622. source: "./media/characters/lira/paw-planti.svg"
  30623. }
  30624. },
  30625. },
  30626. [
  30627. {
  30628. name: "Normal",
  30629. height: math.unit(6 + 2 / 12, "feet"),
  30630. default: true
  30631. },
  30632. {
  30633. name: "Macro",
  30634. height: math.unit(100, "feet")
  30635. },
  30636. {
  30637. name: "Macro²",
  30638. height: math.unit(1600, "feet")
  30639. },
  30640. {
  30641. name: "Planetary",
  30642. height: math.unit(20, "earths")
  30643. },
  30644. ]
  30645. ))
  30646. characterMakers.push(() => makeCharacter(
  30647. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30648. {
  30649. front: {
  30650. height: math.unit(6, "feet"),
  30651. weight: math.unit(150, "lb"),
  30652. name: "Front",
  30653. image: {
  30654. source: "./media/characters/hadjet/front.svg",
  30655. extra: 1480 / 1346,
  30656. bottom: 26 / 1506
  30657. }
  30658. },
  30659. frontNsfw: {
  30660. height: math.unit(6, "feet"),
  30661. weight: math.unit(150, "lb"),
  30662. name: "Front (NSFW)",
  30663. image: {
  30664. source: "./media/characters/hadjet/front-nsfw.svg",
  30665. extra: 1440 / 1358,
  30666. bottom: 52 / 1492
  30667. }
  30668. },
  30669. },
  30670. [
  30671. {
  30672. name: "Macro",
  30673. height: math.unit(10, "stories"),
  30674. default: true
  30675. },
  30676. {
  30677. name: "Megamacro",
  30678. height: math.unit(1.5, "miles")
  30679. },
  30680. {
  30681. name: "Megamacro+",
  30682. height: math.unit(5, "miles")
  30683. },
  30684. ]
  30685. ))
  30686. characterMakers.push(() => makeCharacter(
  30687. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30688. {
  30689. side: {
  30690. height: math.unit(106, "feet"),
  30691. weight: math.unit(500, "tonnes"),
  30692. name: "Side",
  30693. image: {
  30694. source: "./media/characters/kodran/side.svg",
  30695. extra: 553 / 480,
  30696. bottom: 33 / 586
  30697. }
  30698. },
  30699. front: {
  30700. height: math.unit(132, "feet"),
  30701. weight: math.unit(500, "tonnes"),
  30702. name: "Front",
  30703. image: {
  30704. source: "./media/characters/kodran/front.svg",
  30705. extra: 667 / 643,
  30706. bottom: 42 / 709
  30707. }
  30708. },
  30709. flying: {
  30710. height: math.unit(350, "feet"),
  30711. weight: math.unit(500, "tonnes"),
  30712. name: "Flying",
  30713. image: {
  30714. source: "./media/characters/kodran/flying.svg"
  30715. }
  30716. },
  30717. foot: {
  30718. height: math.unit(33, "feet"),
  30719. name: "Foot",
  30720. image: {
  30721. source: "./media/characters/kodran/foot.svg"
  30722. }
  30723. },
  30724. footFront: {
  30725. height: math.unit(19, "feet"),
  30726. name: "Foot (Front)",
  30727. image: {
  30728. source: "./media/characters/kodran/foot-front.svg",
  30729. extra: 261 / 261,
  30730. bottom: 91 / 352
  30731. }
  30732. },
  30733. headFront: {
  30734. height: math.unit(53, "feet"),
  30735. name: "Head (Front)",
  30736. image: {
  30737. source: "./media/characters/kodran/head-front.svg"
  30738. }
  30739. },
  30740. headSide: {
  30741. height: math.unit(65, "feet"),
  30742. name: "Head (Side)",
  30743. image: {
  30744. source: "./media/characters/kodran/head-side.svg"
  30745. }
  30746. },
  30747. throat: {
  30748. height: math.unit(79, "feet"),
  30749. name: "Throat",
  30750. image: {
  30751. source: "./media/characters/kodran/throat.svg"
  30752. }
  30753. },
  30754. },
  30755. [
  30756. {
  30757. name: "Large",
  30758. height: math.unit(106, "feet"),
  30759. default: true
  30760. },
  30761. ]
  30762. ))
  30763. characterMakers.push(() => makeCharacter(
  30764. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30765. {
  30766. side: {
  30767. height: math.unit(11, "feet"),
  30768. weight: math.unit(150, "lb"),
  30769. name: "Side",
  30770. image: {
  30771. source: "./media/characters/pyxaron/side.svg",
  30772. extra: 305 / 195,
  30773. bottom: 17 / 322
  30774. }
  30775. },
  30776. },
  30777. [
  30778. {
  30779. name: "Normal",
  30780. height: math.unit(11, "feet"),
  30781. default: true
  30782. },
  30783. ]
  30784. ))
  30785. characterMakers.push(() => makeCharacter(
  30786. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30787. {
  30788. front: {
  30789. height: math.unit(6, "feet"),
  30790. weight: math.unit(150, "lb"),
  30791. name: "Front",
  30792. image: {
  30793. source: "./media/characters/meep/front.svg",
  30794. extra: 88 / 80,
  30795. bottom: 6 / 94
  30796. }
  30797. },
  30798. },
  30799. [
  30800. {
  30801. name: "Fun Sized",
  30802. height: math.unit(2, "inches"),
  30803. default: true
  30804. },
  30805. {
  30806. name: "Friend Sized",
  30807. height: math.unit(8, "inches")
  30808. },
  30809. ]
  30810. ))
  30811. characterMakers.push(() => makeCharacter(
  30812. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30813. {
  30814. front: {
  30815. height: math.unit(15, "feet"),
  30816. weight: math.unit(2500, "lb"),
  30817. name: "Front",
  30818. image: {
  30819. source: "./media/characters/holly-rabbit/front.svg",
  30820. extra: 1433 / 1233,
  30821. bottom: 125 / 1558
  30822. }
  30823. },
  30824. dick: {
  30825. height: math.unit(4.6, "feet"),
  30826. name: "Dick",
  30827. image: {
  30828. source: "./media/characters/holly-rabbit/dick.svg"
  30829. }
  30830. },
  30831. },
  30832. [
  30833. {
  30834. name: "Normal",
  30835. height: math.unit(15, "feet"),
  30836. default: true
  30837. },
  30838. {
  30839. name: "Macro",
  30840. height: math.unit(250, "feet")
  30841. },
  30842. {
  30843. name: "Macro+",
  30844. height: math.unit(2500, "feet")
  30845. },
  30846. ]
  30847. ))
  30848. characterMakers.push(() => makeCharacter(
  30849. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30850. {
  30851. front: {
  30852. height: math.unit(3.02, "meters"),
  30853. weight: math.unit(500, "kg"),
  30854. name: "Front",
  30855. image: {
  30856. source: "./media/characters/drena/front.svg",
  30857. extra: 282 / 243,
  30858. bottom: 8 / 290
  30859. }
  30860. },
  30861. side: {
  30862. height: math.unit(3.02, "meters"),
  30863. weight: math.unit(500, "kg"),
  30864. name: "Side",
  30865. image: {
  30866. source: "./media/characters/drena/side.svg",
  30867. extra: 280 / 245,
  30868. bottom: 10 / 290
  30869. }
  30870. },
  30871. back: {
  30872. height: math.unit(3.02, "meters"),
  30873. weight: math.unit(500, "kg"),
  30874. name: "Back",
  30875. image: {
  30876. source: "./media/characters/drena/back.svg",
  30877. extra: 278 / 243,
  30878. bottom: 2 / 280
  30879. }
  30880. },
  30881. foot: {
  30882. height: math.unit(0.75, "meters"),
  30883. name: "Foot",
  30884. image: {
  30885. source: "./media/characters/drena/foot.svg"
  30886. }
  30887. },
  30888. maw: {
  30889. height: math.unit(0.82, "meters"),
  30890. name: "Maw",
  30891. image: {
  30892. source: "./media/characters/drena/maw.svg"
  30893. }
  30894. },
  30895. eating: {
  30896. height: math.unit(0.75, "meters"),
  30897. name: "Eating",
  30898. image: {
  30899. source: "./media/characters/drena/eating.svg"
  30900. }
  30901. },
  30902. rump: {
  30903. height: math.unit(0.93, "meters"),
  30904. name: "Rump",
  30905. image: {
  30906. source: "./media/characters/drena/rump.svg"
  30907. }
  30908. },
  30909. },
  30910. [
  30911. {
  30912. name: "Normal",
  30913. height: math.unit(3.02, "meters"),
  30914. default: true
  30915. },
  30916. ]
  30917. ))
  30918. characterMakers.push(() => makeCharacter(
  30919. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30920. {
  30921. front: {
  30922. height: math.unit(6 + 4 / 12, "feet"),
  30923. weight: math.unit(250, "lb"),
  30924. name: "Front",
  30925. image: {
  30926. source: "./media/characters/remmyzilla/front.svg",
  30927. extra: 4033 / 3588,
  30928. bottom: 123 / 4156
  30929. }
  30930. },
  30931. back: {
  30932. height: math.unit(6 + 4 / 12, "feet"),
  30933. weight: math.unit(250, "lb"),
  30934. name: "Back",
  30935. image: {
  30936. source: "./media/characters/remmyzilla/back.svg",
  30937. extra: 2687 / 2555,
  30938. bottom: 48 / 2735
  30939. }
  30940. },
  30941. paw: {
  30942. height: math.unit(1.73, "feet"),
  30943. name: "Paw",
  30944. image: {
  30945. source: "./media/characters/remmyzilla/paw.svg"
  30946. },
  30947. extraAttributes: {
  30948. "toeSize": {
  30949. name: "Toe Size",
  30950. power: 2,
  30951. type: "area",
  30952. base: math.unit(0.0035, "m^2")
  30953. },
  30954. "padSize": {
  30955. name: "Pad Size",
  30956. power: 2,
  30957. type: "area",
  30958. base: math.unit(0.015, "m^2")
  30959. },
  30960. "pawsize": {
  30961. name: "Paw Size",
  30962. power: 2,
  30963. type: "area",
  30964. base: math.unit(0.072, "m^2")
  30965. },
  30966. }
  30967. },
  30968. maw: {
  30969. height: math.unit(1.73, "feet"),
  30970. name: "Maw",
  30971. image: {
  30972. source: "./media/characters/remmyzilla/maw.svg"
  30973. }
  30974. },
  30975. },
  30976. [
  30977. {
  30978. name: "Normal",
  30979. height: math.unit(6 + 4 / 12, "feet")
  30980. },
  30981. {
  30982. name: "Minimacro",
  30983. height: math.unit(12 + 8 / 12, "feet")
  30984. },
  30985. {
  30986. name: "Normal",
  30987. height: math.unit(640, "feet"),
  30988. default: true
  30989. },
  30990. {
  30991. name: "Megamacro",
  30992. height: math.unit(6400, "feet")
  30993. },
  30994. {
  30995. name: "Gigamacro",
  30996. height: math.unit(64000, "miles")
  30997. },
  30998. ]
  30999. ))
  31000. characterMakers.push(() => makeCharacter(
  31001. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31002. {
  31003. front: {
  31004. height: math.unit(2.5, "meters"),
  31005. weight: math.unit(300, "lb"),
  31006. name: "Front",
  31007. image: {
  31008. source: "./media/characters/lawrence/front.svg",
  31009. extra: 357 / 335,
  31010. bottom: 30 / 387
  31011. }
  31012. },
  31013. back: {
  31014. height: math.unit(2.5, "meters"),
  31015. weight: math.unit(300, "lb"),
  31016. name: "Back",
  31017. image: {
  31018. source: "./media/characters/lawrence/back.svg",
  31019. extra: 357 / 338,
  31020. bottom: 16 / 373
  31021. }
  31022. },
  31023. head: {
  31024. height: math.unit(0.9, "meter"),
  31025. name: "Head",
  31026. image: {
  31027. source: "./media/characters/lawrence/head.svg"
  31028. }
  31029. },
  31030. maw: {
  31031. height: math.unit(0.7, "meter"),
  31032. name: "Maw",
  31033. image: {
  31034. source: "./media/characters/lawrence/maw.svg"
  31035. }
  31036. },
  31037. footBottom: {
  31038. height: math.unit(0.5, "meter"),
  31039. name: "Foot (Bottom)",
  31040. image: {
  31041. source: "./media/characters/lawrence/foot-bottom.svg"
  31042. }
  31043. },
  31044. footTop: {
  31045. height: math.unit(0.5, "meter"),
  31046. name: "Foot (Top)",
  31047. image: {
  31048. source: "./media/characters/lawrence/foot-top.svg"
  31049. }
  31050. },
  31051. },
  31052. [
  31053. {
  31054. name: "Normal",
  31055. height: math.unit(2.5, "meters"),
  31056. default: true
  31057. },
  31058. {
  31059. name: "Macro",
  31060. height: math.unit(95, "meters")
  31061. },
  31062. {
  31063. name: "Megamacro",
  31064. height: math.unit(150, "km")
  31065. },
  31066. ]
  31067. ))
  31068. characterMakers.push(() => makeCharacter(
  31069. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31070. {
  31071. front: {
  31072. height: math.unit(4.2, "meters"),
  31073. preyCapacity: math.unit(50, "m^3"),
  31074. weight: math.unit(30, "tonnes"),
  31075. name: "Front",
  31076. image: {
  31077. source: "./media/characters/sydney/front.svg",
  31078. extra: 1177/1129,
  31079. bottom: 197/1374
  31080. },
  31081. extraAttributes: {
  31082. "length": {
  31083. name: "Length",
  31084. power: 1,
  31085. type: "length",
  31086. base: math.unit(21, "meters")
  31087. },
  31088. }
  31089. },
  31090. },
  31091. [
  31092. {
  31093. name: "Normal",
  31094. height: math.unit(4.2, "meters"),
  31095. default: true
  31096. },
  31097. ]
  31098. ))
  31099. characterMakers.push(() => makeCharacter(
  31100. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31101. {
  31102. back: {
  31103. height: math.unit(201, "feet"),
  31104. name: "Back",
  31105. image: {
  31106. source: "./media/characters/jessica/back.svg",
  31107. extra: 273 / 259,
  31108. bottom: 7 / 280
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Normal",
  31115. height: math.unit(201, "feet"),
  31116. default: true
  31117. },
  31118. {
  31119. name: "Megamacro",
  31120. height: math.unit(8, "miles")
  31121. },
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31126. {
  31127. side: {
  31128. height: math.unit(5.6, "m"),
  31129. weight: math.unit(8000, "kg"),
  31130. name: "Side",
  31131. image: {
  31132. source: "./media/characters/victoria/side.svg",
  31133. extra: 1542/1229,
  31134. bottom: 124/1666
  31135. }
  31136. },
  31137. maw: {
  31138. height: math.unit(7.14, "feet"),
  31139. name: "Maw",
  31140. image: {
  31141. source: "./media/characters/victoria/maw.svg"
  31142. }
  31143. },
  31144. },
  31145. [
  31146. {
  31147. name: "Normal",
  31148. height: math.unit(5.6, "m"),
  31149. default: true
  31150. },
  31151. ]
  31152. ))
  31153. characterMakers.push(() => makeCharacter(
  31154. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31155. {
  31156. front: {
  31157. height: math.unit(5 + 6 / 12, "feet"),
  31158. name: "Front",
  31159. image: {
  31160. source: "./media/characters/cat/front.svg",
  31161. extra: 1449/1295,
  31162. bottom: 34/1483
  31163. },
  31164. form: "cat",
  31165. default: true
  31166. },
  31167. back: {
  31168. height: math.unit(5 + 6 / 12, "feet"),
  31169. name: "Back",
  31170. image: {
  31171. source: "./media/characters/cat/back.svg",
  31172. extra: 1466/1301,
  31173. bottom: 19/1485
  31174. },
  31175. form: "cat"
  31176. },
  31177. taur: {
  31178. height: math.unit(7, "feet"),
  31179. name: "Taur",
  31180. image: {
  31181. source: "./media/characters/cat/taur.svg",
  31182. extra: 1389/1233,
  31183. bottom: 83/1472
  31184. },
  31185. form: "taur",
  31186. default: true
  31187. },
  31188. lucarioFront: {
  31189. height: math.unit(4, "feet"),
  31190. name: "Lucario (Front)",
  31191. image: {
  31192. source: "./media/characters/cat/lucario-front.svg",
  31193. extra: 1149/1019,
  31194. bottom: 84/1233
  31195. },
  31196. form: "lucario",
  31197. default: true
  31198. },
  31199. lucarioBack: {
  31200. height: math.unit(4, "feet"),
  31201. name: "Lucario (Back)",
  31202. image: {
  31203. source: "./media/characters/cat/lucario-back.svg",
  31204. extra: 1190/1059,
  31205. bottom: 33/1223
  31206. },
  31207. form: "lucario"
  31208. },
  31209. megaLucario: {
  31210. height: math.unit(4, "feet"),
  31211. name: "Mega Lucario",
  31212. image: {
  31213. source: "./media/characters/cat/mega-lucario.svg",
  31214. extra: 1515 / 1319,
  31215. bottom: 63 / 1578
  31216. },
  31217. form: "lucario"
  31218. },
  31219. nickit: {
  31220. height: math.unit(2, "feet"),
  31221. name: "Nickit",
  31222. image: {
  31223. source: "./media/characters/cat/nickit.svg",
  31224. extra: 1980 / 1585,
  31225. bottom: 102 / 2082
  31226. },
  31227. form: "nickit",
  31228. default: true
  31229. },
  31230. lopunnyFront: {
  31231. height: math.unit(5, "feet"),
  31232. name: "Lopunny (Front)",
  31233. image: {
  31234. source: "./media/characters/cat/lopunny-front.svg",
  31235. extra: 1782 / 1469,
  31236. bottom: 38 / 1820
  31237. },
  31238. form: "lopunny",
  31239. default: true
  31240. },
  31241. lopunnyBack: {
  31242. height: math.unit(5, "feet"),
  31243. name: "Lopunny (Back)",
  31244. image: {
  31245. source: "./media/characters/cat/lopunny-back.svg",
  31246. extra: 1660 / 1490,
  31247. bottom: 25 / 1685
  31248. },
  31249. form: "lopunny"
  31250. },
  31251. },
  31252. [
  31253. {
  31254. name: "Really small",
  31255. height: math.unit(1, "nm")
  31256. },
  31257. {
  31258. name: "Micro",
  31259. height: math.unit(5, "inches")
  31260. },
  31261. {
  31262. name: "Normal",
  31263. height: math.unit(5 + 6 / 12, "feet"),
  31264. default: true
  31265. },
  31266. {
  31267. name: "Macro",
  31268. height: math.unit(50, "feet")
  31269. },
  31270. {
  31271. name: "Macro+",
  31272. height: math.unit(150, "feet")
  31273. },
  31274. {
  31275. name: "Megamacro",
  31276. height: math.unit(100, "miles")
  31277. },
  31278. ]
  31279. ))
  31280. characterMakers.push(() => makeCharacter(
  31281. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31282. {
  31283. front: {
  31284. height: math.unit(63.4, "meters"),
  31285. weight: math.unit(3.28349e+6, "kilograms"),
  31286. name: "Front",
  31287. image: {
  31288. source: "./media/characters/kirina-violet/front.svg",
  31289. extra: 2812 / 2725,
  31290. bottom: 0 / 2812
  31291. }
  31292. },
  31293. back: {
  31294. height: math.unit(63.4, "meters"),
  31295. weight: math.unit(3.28349e+6, "kilograms"),
  31296. name: "Back",
  31297. image: {
  31298. source: "./media/characters/kirina-violet/back.svg",
  31299. extra: 2812 / 2725,
  31300. bottom: 0 / 2812
  31301. }
  31302. },
  31303. mouth: {
  31304. height: math.unit(4.35, "meters"),
  31305. name: "Mouth",
  31306. image: {
  31307. source: "./media/characters/kirina-violet/mouth.svg"
  31308. }
  31309. },
  31310. paw: {
  31311. height: math.unit(5.6, "meters"),
  31312. name: "Paw",
  31313. image: {
  31314. source: "./media/characters/kirina-violet/paw.svg"
  31315. }
  31316. },
  31317. tail: {
  31318. height: math.unit(18, "meters"),
  31319. name: "Tail",
  31320. image: {
  31321. source: "./media/characters/kirina-violet/tail.svg"
  31322. }
  31323. },
  31324. },
  31325. [
  31326. {
  31327. name: "Macro",
  31328. height: math.unit(63.4, "meters"),
  31329. default: true
  31330. },
  31331. ]
  31332. ))
  31333. characterMakers.push(() => makeCharacter(
  31334. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31335. {
  31336. front: {
  31337. height: math.unit(75, "feet"),
  31338. name: "Front",
  31339. image: {
  31340. source: "./media/characters/cat-gigachu/front.svg",
  31341. extra: 1239/1027,
  31342. bottom: 32/1271
  31343. }
  31344. },
  31345. back: {
  31346. height: math.unit(75, "feet"),
  31347. name: "Back",
  31348. image: {
  31349. source: "./media/characters/cat-gigachu/back.svg",
  31350. extra: 1229/1030,
  31351. bottom: 9/1238
  31352. }
  31353. },
  31354. },
  31355. [
  31356. {
  31357. name: "Dynamax",
  31358. height: math.unit(75, "feet"),
  31359. default: true
  31360. },
  31361. ]
  31362. ))
  31363. characterMakers.push(() => makeCharacter(
  31364. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31365. {
  31366. front: {
  31367. height: math.unit(6, "feet"),
  31368. weight: math.unit(150, "lb"),
  31369. name: "Front",
  31370. image: {
  31371. source: "./media/characters/sfaiyan/front.svg",
  31372. extra: 999 / 978,
  31373. bottom: 5 / 1004
  31374. }
  31375. },
  31376. },
  31377. [
  31378. {
  31379. name: "Normal",
  31380. height: math.unit(1.82, "meters")
  31381. },
  31382. {
  31383. name: "Giant",
  31384. height: math.unit(2.27, "km"),
  31385. default: true
  31386. },
  31387. ]
  31388. ))
  31389. characterMakers.push(() => makeCharacter(
  31390. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31391. {
  31392. front: {
  31393. height: math.unit(179, "cm"),
  31394. weight: math.unit(100, "kg"),
  31395. name: "Front",
  31396. image: {
  31397. source: "./media/characters/raunehkeli/front.svg",
  31398. extra: 1934 / 1926,
  31399. bottom: 0 / 1934
  31400. }
  31401. },
  31402. },
  31403. [
  31404. {
  31405. name: "Normal",
  31406. height: math.unit(179, "cm")
  31407. },
  31408. {
  31409. name: "Maximum",
  31410. height: math.unit(575, "meters"),
  31411. default: true
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31417. {
  31418. front: {
  31419. height: math.unit(6, "feet"),
  31420. weight: math.unit(150, "lb"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31424. extra: 2625 / 2518,
  31425. bottom: 60 / 2685
  31426. }
  31427. },
  31428. },
  31429. [
  31430. {
  31431. name: "Normal",
  31432. height: math.unit(6 + 2 / 12, "feet")
  31433. },
  31434. {
  31435. name: "Macro",
  31436. height: math.unit(1180, "feet"),
  31437. default: true
  31438. },
  31439. ]
  31440. ))
  31441. characterMakers.push(() => makeCharacter(
  31442. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31443. {
  31444. front: {
  31445. height: math.unit(5 + 6 / 12, "feet"),
  31446. weight: math.unit(108, "lb"),
  31447. name: "Front",
  31448. image: {
  31449. source: "./media/characters/lilith-zott/front.svg",
  31450. extra: 2510 / 2238,
  31451. bottom: 100 / 2610
  31452. }
  31453. },
  31454. frontDressed: {
  31455. height: math.unit(5 + 6 / 12, "feet"),
  31456. weight: math.unit(108, "lb"),
  31457. name: "Front (Dressed)",
  31458. image: {
  31459. source: "./media/characters/lilith-zott/front-dressed.svg",
  31460. extra: 2510 / 2238,
  31461. bottom: 100 / 2610
  31462. }
  31463. },
  31464. },
  31465. [
  31466. {
  31467. name: "Normal",
  31468. height: math.unit(5 + 6 / 12, "feet")
  31469. },
  31470. {
  31471. name: "Macro",
  31472. height: math.unit(1030, "feet"),
  31473. default: true
  31474. },
  31475. ]
  31476. ))
  31477. characterMakers.push(() => makeCharacter(
  31478. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31479. {
  31480. front: {
  31481. height: math.unit(6, "feet"),
  31482. weight: math.unit(150, "lb"),
  31483. name: "Front",
  31484. image: {
  31485. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31486. extra: 2567 / 2435,
  31487. bottom: 39 / 2606
  31488. }
  31489. },
  31490. frontSuper: {
  31491. height: math.unit(6, "feet"),
  31492. name: "Front (Super)",
  31493. image: {
  31494. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31495. extra: 2567 / 2435,
  31496. bottom: 39 / 2606
  31497. }
  31498. },
  31499. },
  31500. [
  31501. {
  31502. name: "Normal",
  31503. height: math.unit(5 + 10 / 12, "feet")
  31504. },
  31505. {
  31506. name: "Macro",
  31507. height: math.unit(1100, "feet"),
  31508. default: true
  31509. },
  31510. ]
  31511. ))
  31512. characterMakers.push(() => makeCharacter(
  31513. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31514. {
  31515. front: {
  31516. height: math.unit(100, "miles"),
  31517. name: "Front",
  31518. image: {
  31519. source: "./media/characters/sona/front.svg",
  31520. extra: 2433 / 2201,
  31521. bottom: 53 / 2486
  31522. }
  31523. },
  31524. foot: {
  31525. height: math.unit(16.1, "miles"),
  31526. name: "Foot",
  31527. image: {
  31528. source: "./media/characters/sona/foot.svg"
  31529. }
  31530. },
  31531. },
  31532. [
  31533. {
  31534. name: "Macro",
  31535. height: math.unit(100, "miles"),
  31536. default: true
  31537. },
  31538. ]
  31539. ))
  31540. characterMakers.push(() => makeCharacter(
  31541. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31542. {
  31543. front: {
  31544. height: math.unit(6, "feet"),
  31545. weight: math.unit(150, "lb"),
  31546. name: "Front",
  31547. image: {
  31548. source: "./media/characters/bailey/front.svg",
  31549. extra: 1778 / 1724,
  31550. bottom: 30 / 1808
  31551. }
  31552. },
  31553. },
  31554. [
  31555. {
  31556. name: "Micro",
  31557. height: math.unit(4, "inches")
  31558. },
  31559. {
  31560. name: "Normal",
  31561. height: math.unit(5 + 5 / 12, "feet"),
  31562. default: true
  31563. },
  31564. {
  31565. name: "Macro",
  31566. height: math.unit(250, "feet")
  31567. },
  31568. {
  31569. name: "Megamacro",
  31570. height: math.unit(100, "miles")
  31571. },
  31572. ]
  31573. ))
  31574. characterMakers.push(() => makeCharacter(
  31575. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31576. {
  31577. front: {
  31578. height: math.unit(5 + 2 / 12, "feet"),
  31579. weight: math.unit(120, "lb"),
  31580. name: "Front",
  31581. image: {
  31582. source: "./media/characters/snaps/front.svg",
  31583. extra: 2370 / 2177,
  31584. bottom: 48 / 2418
  31585. }
  31586. },
  31587. back: {
  31588. height: math.unit(5 + 2 / 12, "feet"),
  31589. weight: math.unit(120, "lb"),
  31590. name: "Back",
  31591. image: {
  31592. source: "./media/characters/snaps/back.svg",
  31593. extra: 2408 / 2258,
  31594. bottom: 15 / 2423
  31595. }
  31596. },
  31597. },
  31598. [
  31599. {
  31600. name: "Micro",
  31601. height: math.unit(9, "inches")
  31602. },
  31603. {
  31604. name: "Normal",
  31605. height: math.unit(5 + 2 / 12, "feet"),
  31606. default: true
  31607. },
  31608. {
  31609. name: "Mini Macro",
  31610. height: math.unit(10, "feet")
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31616. {
  31617. front: {
  31618. height: math.unit(1.8, "meters"),
  31619. weight: math.unit(85, "kg"),
  31620. name: "Front",
  31621. image: {
  31622. source: "./media/characters/azteck/front.svg",
  31623. extra: 2815 / 2625,
  31624. bottom: 89 / 2904
  31625. }
  31626. },
  31627. back: {
  31628. height: math.unit(1.8, "meters"),
  31629. weight: math.unit(85, "kg"),
  31630. name: "Back",
  31631. image: {
  31632. source: "./media/characters/azteck/back.svg",
  31633. extra: 2856 / 2648,
  31634. bottom: 85 / 2941
  31635. }
  31636. },
  31637. frontDressed: {
  31638. height: math.unit(1.8, "meters"),
  31639. weight: math.unit(85, "kg"),
  31640. name: "Front (Dressed)",
  31641. image: {
  31642. source: "./media/characters/azteck/front-dressed.svg",
  31643. extra: 2147 / 2003,
  31644. bottom: 68 / 2215
  31645. }
  31646. },
  31647. head: {
  31648. height: math.unit(0.47, "meters"),
  31649. weight: math.unit(85, "kg"),
  31650. name: "Head",
  31651. image: {
  31652. source: "./media/characters/azteck/head.svg"
  31653. }
  31654. },
  31655. },
  31656. [
  31657. {
  31658. name: "Bite sized",
  31659. height: math.unit(16, "cm")
  31660. },
  31661. {
  31662. name: "Normal",
  31663. height: math.unit(1.8, "meters"),
  31664. default: true
  31665. },
  31666. ]
  31667. ))
  31668. characterMakers.push(() => makeCharacter(
  31669. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31670. {
  31671. front: {
  31672. height: math.unit(6, "feet"),
  31673. weight: math.unit(150, "lb"),
  31674. name: "Front",
  31675. image: {
  31676. source: "./media/characters/pidge/front.svg",
  31677. extra: 1936/1820,
  31678. bottom: 0/1936
  31679. }
  31680. },
  31681. back: {
  31682. height: math.unit(6, "feet"),
  31683. weight: math.unit(150, "lb"),
  31684. name: "Back",
  31685. image: {
  31686. source: "./media/characters/pidge/back.svg",
  31687. extra: 1938/1843,
  31688. bottom: 0/1938
  31689. }
  31690. },
  31691. casual: {
  31692. height: math.unit(6, "feet"),
  31693. weight: math.unit(150, "lb"),
  31694. name: "Casual",
  31695. image: {
  31696. source: "./media/characters/pidge/casual.svg",
  31697. extra: 1936/1820,
  31698. bottom: 0/1936
  31699. }
  31700. },
  31701. tech: {
  31702. height: math.unit(6, "feet"),
  31703. weight: math.unit(150, "lb"),
  31704. name: "Tech",
  31705. image: {
  31706. source: "./media/characters/pidge/tech.svg",
  31707. extra: 1802/1682,
  31708. bottom: 0/1802
  31709. }
  31710. },
  31711. head: {
  31712. height: math.unit(1.61, "feet"),
  31713. name: "Head",
  31714. image: {
  31715. source: "./media/characters/pidge/head.svg"
  31716. }
  31717. },
  31718. collar: {
  31719. height: math.unit(0.82, "feet"),
  31720. name: "Collar",
  31721. image: {
  31722. source: "./media/characters/pidge/collar.svg"
  31723. }
  31724. },
  31725. },
  31726. [
  31727. {
  31728. name: "Macro",
  31729. height: math.unit(2, "mile"),
  31730. default: true
  31731. },
  31732. {
  31733. name: "PUPPY",
  31734. height: math.unit(20, "miles")
  31735. },
  31736. ]
  31737. ))
  31738. characterMakers.push(() => makeCharacter(
  31739. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31740. {
  31741. front: {
  31742. height: math.unit(6, "feet"),
  31743. weight: math.unit(150, "lb"),
  31744. name: "Front",
  31745. image: {
  31746. source: "./media/characters/en/front.svg",
  31747. extra: 1697 / 1563,
  31748. bottom: 103 / 1800
  31749. }
  31750. },
  31751. back: {
  31752. height: math.unit(6, "feet"),
  31753. weight: math.unit(150, "lb"),
  31754. name: "Back",
  31755. image: {
  31756. source: "./media/characters/en/back.svg",
  31757. extra: 1700 / 1570,
  31758. bottom: 51 / 1751
  31759. }
  31760. },
  31761. frontDressed: {
  31762. height: math.unit(6, "feet"),
  31763. weight: math.unit(150, "lb"),
  31764. name: "Front (Dressed)",
  31765. image: {
  31766. source: "./media/characters/en/front-dressed.svg",
  31767. extra: 1697 / 1563,
  31768. bottom: 103 / 1800
  31769. }
  31770. },
  31771. backDressed: {
  31772. height: math.unit(6, "feet"),
  31773. weight: math.unit(150, "lb"),
  31774. name: "Back (Dressed)",
  31775. image: {
  31776. source: "./media/characters/en/back-dressed.svg",
  31777. extra: 1700 / 1570,
  31778. bottom: 51 / 1751
  31779. }
  31780. },
  31781. },
  31782. [
  31783. {
  31784. name: "Macro",
  31785. height: math.unit(210, "feet"),
  31786. default: true
  31787. },
  31788. ]
  31789. ))
  31790. characterMakers.push(() => makeCharacter(
  31791. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31792. {
  31793. front: {
  31794. height: math.unit(6, "feet"),
  31795. weight: math.unit(150, "lb"),
  31796. name: "Front",
  31797. image: {
  31798. source: "./media/characters/haze-orris/front.svg",
  31799. extra: 3975 / 3525,
  31800. bottom: 137 / 4112
  31801. }
  31802. },
  31803. },
  31804. [
  31805. {
  31806. name: "Micro",
  31807. height: math.unit(150, "mm"),
  31808. default: true
  31809. },
  31810. ]
  31811. ))
  31812. characterMakers.push(() => makeCharacter(
  31813. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31814. {
  31815. front: {
  31816. height: math.unit(6, "feet"),
  31817. weight: math.unit(150, "lb"),
  31818. name: "Front",
  31819. image: {
  31820. source: "./media/characters/casselene-yaro/front.svg",
  31821. extra: 4721 / 4541,
  31822. bottom: 82 / 4803
  31823. }
  31824. },
  31825. back: {
  31826. height: math.unit(6, "feet"),
  31827. weight: math.unit(150, "lb"),
  31828. name: "Back",
  31829. image: {
  31830. source: "./media/characters/casselene-yaro/back.svg",
  31831. extra: 4569 / 4377,
  31832. bottom: 69 / 4638
  31833. }
  31834. },
  31835. dressed: {
  31836. height: math.unit(6, "feet"),
  31837. weight: math.unit(150, "lb"),
  31838. name: "Dressed",
  31839. image: {
  31840. source: "./media/characters/casselene-yaro/dressed.svg",
  31841. extra: 4721 / 4541,
  31842. bottom: 82 / 4803
  31843. }
  31844. },
  31845. maw: {
  31846. height: math.unit(1, "feet"),
  31847. name: "Maw",
  31848. image: {
  31849. source: "./media/characters/casselene-yaro/maw.svg"
  31850. }
  31851. },
  31852. },
  31853. [
  31854. {
  31855. name: "Macro",
  31856. height: math.unit(190, "feet"),
  31857. default: true
  31858. },
  31859. ]
  31860. ))
  31861. characterMakers.push(() => makeCharacter(
  31862. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31863. {
  31864. front: {
  31865. height: math.unit(10, "feet"),
  31866. weight: math.unit(15015, "lb"),
  31867. name: "Front",
  31868. image: {
  31869. source: "./media/characters/platine/front.svg",
  31870. extra: 1741/1650,
  31871. bottom: 84/1825
  31872. }
  31873. },
  31874. side: {
  31875. height: math.unit(10, "feet"),
  31876. weight: math.unit(15015, "lb"),
  31877. name: "Side",
  31878. image: {
  31879. source: "./media/characters/platine/side.svg",
  31880. extra: 1790/1705,
  31881. bottom: 29/1819
  31882. }
  31883. },
  31884. },
  31885. [
  31886. {
  31887. name: "Normal",
  31888. height: math.unit(10, "feet"),
  31889. default: true
  31890. },
  31891. {
  31892. name: "Macro",
  31893. height: math.unit(100, "feet")
  31894. },
  31895. {
  31896. name: "Megamacro",
  31897. height: math.unit(1000, "feet")
  31898. },
  31899. ]
  31900. ))
  31901. characterMakers.push(() => makeCharacter(
  31902. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31903. {
  31904. front: {
  31905. height: math.unit(15 + 5 / 12, "feet"),
  31906. weight: math.unit(4600, "lb"),
  31907. name: "Front",
  31908. image: {
  31909. source: "./media/characters/neapolitan-ananassa/front.svg",
  31910. extra: 2903 / 2736,
  31911. bottom: 0 / 2903
  31912. }
  31913. },
  31914. side: {
  31915. height: math.unit(15 + 5 / 12, "feet"),
  31916. weight: math.unit(4600, "lb"),
  31917. name: "Side",
  31918. image: {
  31919. source: "./media/characters/neapolitan-ananassa/side.svg",
  31920. extra: 2925 / 2719,
  31921. bottom: 0 / 2925
  31922. }
  31923. },
  31924. back: {
  31925. height: math.unit(15 + 5 / 12, "feet"),
  31926. weight: math.unit(4600, "lb"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/neapolitan-ananassa/back.svg",
  31930. extra: 2903 / 2736,
  31931. bottom: 0 / 2903
  31932. }
  31933. },
  31934. },
  31935. [
  31936. {
  31937. name: "Normal",
  31938. height: math.unit(15 + 5 / 12, "feet"),
  31939. default: true
  31940. },
  31941. {
  31942. name: "Post-Millenium",
  31943. height: math.unit(35 + 5 / 12, "feet")
  31944. },
  31945. {
  31946. name: "Post-Era",
  31947. height: math.unit(450 + 5 / 12, "feet")
  31948. },
  31949. ]
  31950. ))
  31951. characterMakers.push(() => makeCharacter(
  31952. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31953. {
  31954. front: {
  31955. height: math.unit(300, "meters"),
  31956. weight: math.unit(125000, "tonnes"),
  31957. name: "Front",
  31958. image: {
  31959. source: "./media/characters/pazuzu/front.svg",
  31960. extra: 877 / 794,
  31961. bottom: 47 / 924
  31962. }
  31963. },
  31964. },
  31965. [
  31966. {
  31967. name: "Macro",
  31968. height: math.unit(300, "meters"),
  31969. default: true
  31970. },
  31971. ]
  31972. ))
  31973. characterMakers.push(() => makeCharacter(
  31974. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31975. {
  31976. side: {
  31977. height: math.unit(10 + 7 / 12, "feet"),
  31978. weight: math.unit(2.5, "tons"),
  31979. name: "Side",
  31980. image: {
  31981. source: "./media/characters/aasha/side.svg",
  31982. extra: 1345 / 1245,
  31983. bottom: 111 / 1456
  31984. }
  31985. },
  31986. back: {
  31987. height: math.unit(10 + 7 / 12, "feet"),
  31988. weight: math.unit(2.5, "tons"),
  31989. name: "Back",
  31990. image: {
  31991. source: "./media/characters/aasha/back.svg",
  31992. extra: 1133 / 1057,
  31993. bottom: 257 / 1390
  31994. }
  31995. },
  31996. },
  31997. [
  31998. {
  31999. name: "Normal",
  32000. height: math.unit(10 + 7 / 12, "feet"),
  32001. default: true
  32002. },
  32003. ]
  32004. ))
  32005. characterMakers.push(() => makeCharacter(
  32006. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32007. {
  32008. front: {
  32009. height: math.unit(6 + 3 / 12, "feet"),
  32010. name: "Front",
  32011. image: {
  32012. source: "./media/characters/nevan/front.svg",
  32013. extra: 704 / 704,
  32014. bottom: 28 / 732
  32015. }
  32016. },
  32017. back: {
  32018. height: math.unit(6 + 3 / 12, "feet"),
  32019. name: "Back",
  32020. image: {
  32021. source: "./media/characters/nevan/back.svg",
  32022. extra: 714 / 714,
  32023. bottom: 21 / 735
  32024. }
  32025. },
  32026. frontFlaccid: {
  32027. height: math.unit(6 + 3 / 12, "feet"),
  32028. name: "Front (Flaccid)",
  32029. image: {
  32030. source: "./media/characters/nevan/front-flaccid.svg",
  32031. extra: 704 / 704,
  32032. bottom: 28 / 732
  32033. }
  32034. },
  32035. frontErect: {
  32036. height: math.unit(6 + 3 / 12, "feet"),
  32037. name: "Front (Erect)",
  32038. image: {
  32039. source: "./media/characters/nevan/front-erect.svg",
  32040. extra: 704 / 704,
  32041. bottom: 28 / 732
  32042. }
  32043. },
  32044. backFlaccid: {
  32045. height: math.unit(6 + 3 / 12, "feet"),
  32046. name: "Back (Flaccid)",
  32047. image: {
  32048. source: "./media/characters/nevan/back-flaccid.svg",
  32049. extra: 714 / 714,
  32050. bottom: 21 / 735
  32051. }
  32052. },
  32053. },
  32054. [
  32055. {
  32056. name: "Normal",
  32057. height: math.unit(6 + 3 / 12, "feet"),
  32058. default: true
  32059. },
  32060. ]
  32061. ))
  32062. characterMakers.push(() => makeCharacter(
  32063. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32064. {
  32065. front: {
  32066. height: math.unit(4, "feet"),
  32067. name: "Front",
  32068. image: {
  32069. source: "./media/characters/arhan/front.svg",
  32070. extra: 3368 / 3133,
  32071. bottom: 0 / 3368
  32072. }
  32073. },
  32074. side: {
  32075. height: math.unit(4, "feet"),
  32076. name: "Side",
  32077. image: {
  32078. source: "./media/characters/arhan/side.svg",
  32079. extra: 3347 / 3105,
  32080. bottom: 0 / 3347
  32081. }
  32082. },
  32083. tongue: {
  32084. height: math.unit(1.42, "feet"),
  32085. name: "Tongue",
  32086. image: {
  32087. source: "./media/characters/arhan/tongue.svg"
  32088. }
  32089. },
  32090. head: {
  32091. height: math.unit(0.85, "feet"),
  32092. name: "Head",
  32093. image: {
  32094. source: "./media/characters/arhan/head.svg"
  32095. }
  32096. },
  32097. },
  32098. [
  32099. {
  32100. name: "Normal",
  32101. height: math.unit(4, "feet"),
  32102. default: true
  32103. },
  32104. ]
  32105. ))
  32106. characterMakers.push(() => makeCharacter(
  32107. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32108. {
  32109. front: {
  32110. height: math.unit(5 + 7.5 / 12, "feet"),
  32111. weight: math.unit(120, "lb"),
  32112. name: "Front",
  32113. image: {
  32114. source: "./media/characters/digi-duncan/front.svg",
  32115. extra: 330 / 326,
  32116. bottom: 16 / 346
  32117. }
  32118. },
  32119. side: {
  32120. height: math.unit(5 + 7.5 / 12, "feet"),
  32121. weight: math.unit(120, "lb"),
  32122. name: "Side",
  32123. image: {
  32124. source: "./media/characters/digi-duncan/side.svg",
  32125. extra: 341 / 337,
  32126. bottom: 1 / 342
  32127. }
  32128. },
  32129. back: {
  32130. height: math.unit(5 + 7.5 / 12, "feet"),
  32131. weight: math.unit(120, "lb"),
  32132. name: "Back",
  32133. image: {
  32134. source: "./media/characters/digi-duncan/back.svg",
  32135. extra: 330 / 326,
  32136. bottom: 12 / 342
  32137. }
  32138. },
  32139. },
  32140. [
  32141. {
  32142. name: "Speck",
  32143. height: math.unit(0.25, "mm")
  32144. },
  32145. {
  32146. name: "Micro",
  32147. height: math.unit(5, "mm")
  32148. },
  32149. {
  32150. name: "Tiny",
  32151. height: math.unit(0.5, "inches"),
  32152. default: true
  32153. },
  32154. {
  32155. name: "Human",
  32156. height: math.unit(5 + 7.5 / 12, "feet")
  32157. },
  32158. {
  32159. name: "Minigiant",
  32160. height: math.unit(8 + 5.25, "feet")
  32161. },
  32162. {
  32163. name: "Giant",
  32164. height: math.unit(2000, "feet")
  32165. },
  32166. {
  32167. name: "Mega",
  32168. height: math.unit(371.1, "miles")
  32169. },
  32170. ]
  32171. ))
  32172. characterMakers.push(() => makeCharacter(
  32173. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32174. {
  32175. front: {
  32176. height: math.unit(2, "meters"),
  32177. weight: math.unit(350, "kg"),
  32178. name: "Front",
  32179. image: {
  32180. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32181. extra: 898 / 838,
  32182. bottom: 9 / 907
  32183. }
  32184. },
  32185. },
  32186. [
  32187. {
  32188. name: "Micro",
  32189. height: math.unit(8, "meters")
  32190. },
  32191. {
  32192. name: "Normal",
  32193. height: math.unit(50, "meters"),
  32194. default: true
  32195. },
  32196. {
  32197. name: "Macro",
  32198. height: math.unit(500, "meters")
  32199. },
  32200. ]
  32201. ))
  32202. characterMakers.push(() => makeCharacter(
  32203. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32204. {
  32205. front: {
  32206. height: math.unit(6 + 6 / 12, "feet"),
  32207. name: "Front",
  32208. image: {
  32209. source: "./media/characters/khardesh/front.svg",
  32210. extra: 1788/1596,
  32211. bottom: 66/1854
  32212. }
  32213. },
  32214. back: {
  32215. height: math.unit(6 + 6 / 12, "feet"),
  32216. name: "Back",
  32217. image: {
  32218. source: "./media/characters/khardesh/back.svg",
  32219. extra: 1781/1584,
  32220. bottom: 68/1849
  32221. }
  32222. },
  32223. },
  32224. [
  32225. {
  32226. name: "Normal",
  32227. height: math.unit(6 + 6 / 12, "feet"),
  32228. default: true
  32229. },
  32230. {
  32231. name: "Normal+",
  32232. height: math.unit(4, "meters")
  32233. },
  32234. {
  32235. name: "Macro",
  32236. height: math.unit(50, "meters")
  32237. },
  32238. {
  32239. name: "Macro+",
  32240. height: math.unit(100, "meters")
  32241. },
  32242. {
  32243. name: "Megamacro",
  32244. height: math.unit(20, "km")
  32245. },
  32246. ]
  32247. ))
  32248. characterMakers.push(() => makeCharacter(
  32249. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32250. {
  32251. front: {
  32252. height: math.unit(6, "feet"),
  32253. weight: math.unit(150, "lb"),
  32254. name: "Front",
  32255. image: {
  32256. source: "./media/characters/kosho/front.svg",
  32257. extra: 1847 / 1847,
  32258. bottom: 86 / 1933
  32259. }
  32260. },
  32261. },
  32262. [
  32263. {
  32264. name: "Second-stage micro",
  32265. height: math.unit(0.5, "inches")
  32266. },
  32267. {
  32268. name: "First-stage micro",
  32269. height: math.unit(6, "inches")
  32270. },
  32271. {
  32272. name: "Normal",
  32273. height: math.unit(6, "feet"),
  32274. default: true
  32275. },
  32276. {
  32277. name: "First-stage macro",
  32278. height: math.unit(72, "feet")
  32279. },
  32280. {
  32281. name: "Second-stage macro",
  32282. height: math.unit(864, "feet")
  32283. },
  32284. ]
  32285. ))
  32286. characterMakers.push(() => makeCharacter(
  32287. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32288. {
  32289. normal: {
  32290. height: math.unit(4 + 6 / 12, "feet"),
  32291. name: "Normal",
  32292. image: {
  32293. source: "./media/characters/hydra/normal.svg",
  32294. extra: 2833 / 2634,
  32295. bottom: 68 / 2901
  32296. }
  32297. },
  32298. smol: {
  32299. height: math.unit(0.705, "inches"),
  32300. name: "Smol",
  32301. image: {
  32302. source: "./media/characters/hydra/smol.svg",
  32303. extra: 2715 / 2540,
  32304. bottom: 0 / 2715
  32305. }
  32306. },
  32307. },
  32308. [
  32309. {
  32310. name: "Normal",
  32311. height: math.unit(4 + 6 / 12, "feet"),
  32312. default: true
  32313. }
  32314. ]
  32315. ))
  32316. characterMakers.push(() => makeCharacter(
  32317. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32318. {
  32319. front: {
  32320. height: math.unit(0.6, "cm"),
  32321. name: "Front",
  32322. image: {
  32323. source: "./media/characters/daz/front.svg",
  32324. extra: 1682 / 1164,
  32325. bottom: 42 / 1724
  32326. }
  32327. },
  32328. },
  32329. [
  32330. {
  32331. name: "Normal",
  32332. height: math.unit(0.6, "cm"),
  32333. default: true
  32334. },
  32335. ]
  32336. ))
  32337. characterMakers.push(() => makeCharacter(
  32338. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32339. {
  32340. front: {
  32341. height: math.unit(6, "feet"),
  32342. weight: math.unit(235, "lb"),
  32343. name: "Front",
  32344. image: {
  32345. source: "./media/characters/theo-pangolin/front.svg",
  32346. extra: 1996 / 1969,
  32347. bottom: 115 / 2111
  32348. }
  32349. },
  32350. back: {
  32351. height: math.unit(6, "feet"),
  32352. weight: math.unit(235, "lb"),
  32353. name: "Back",
  32354. image: {
  32355. source: "./media/characters/theo-pangolin/back.svg",
  32356. extra: 1979 / 1979,
  32357. bottom: 40 / 2019
  32358. }
  32359. },
  32360. feral: {
  32361. height: math.unit(2, "feet"),
  32362. weight: math.unit(30, "lb"),
  32363. name: "Feral",
  32364. image: {
  32365. source: "./media/characters/theo-pangolin/feral.svg",
  32366. extra: 803 / 791,
  32367. bottom: 181 / 984
  32368. }
  32369. },
  32370. footFive: {
  32371. height: math.unit(1.43, "feet"),
  32372. name: "Foot (Five Toes)",
  32373. image: {
  32374. source: "./media/characters/theo-pangolin/foot-five.svg"
  32375. }
  32376. },
  32377. footFour: {
  32378. height: math.unit(1.43, "feet"),
  32379. name: "Foot (Four Toes)",
  32380. image: {
  32381. source: "./media/characters/theo-pangolin/foot-four.svg"
  32382. }
  32383. },
  32384. handFour: {
  32385. height: math.unit(0.81, "feet"),
  32386. name: "Hand (Four Fingers)",
  32387. image: {
  32388. source: "./media/characters/theo-pangolin/hand-four.svg"
  32389. }
  32390. },
  32391. handThree: {
  32392. height: math.unit(0.81, "feet"),
  32393. name: "Hand (Three Fingers)",
  32394. image: {
  32395. source: "./media/characters/theo-pangolin/hand-three.svg"
  32396. }
  32397. },
  32398. headFront: {
  32399. height: math.unit(1.37, "feet"),
  32400. name: "Head (Front)",
  32401. image: {
  32402. source: "./media/characters/theo-pangolin/head-front.svg"
  32403. }
  32404. },
  32405. headSide: {
  32406. height: math.unit(1.43, "feet"),
  32407. name: "Head (Side)",
  32408. image: {
  32409. source: "./media/characters/theo-pangolin/head-side.svg"
  32410. }
  32411. },
  32412. tongue: {
  32413. height: math.unit(2.29, "feet"),
  32414. name: "Tongue",
  32415. image: {
  32416. source: "./media/characters/theo-pangolin/tongue.svg"
  32417. }
  32418. },
  32419. },
  32420. [
  32421. {
  32422. name: "Normal",
  32423. height: math.unit(6, "feet")
  32424. },
  32425. {
  32426. name: "Macro",
  32427. height: math.unit(400, "feet"),
  32428. default: true
  32429. },
  32430. ]
  32431. ))
  32432. characterMakers.push(() => makeCharacter(
  32433. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32434. {
  32435. front: {
  32436. height: math.unit(6, "inches"),
  32437. weight: math.unit(0.036, "kg"),
  32438. name: "Front",
  32439. image: {
  32440. source: "./media/characters/renée/front.svg",
  32441. extra: 900 / 886,
  32442. bottom: 8 / 908
  32443. }
  32444. },
  32445. },
  32446. [
  32447. {
  32448. name: "Nano",
  32449. height: math.unit(1, "nm")
  32450. },
  32451. {
  32452. name: "Micro",
  32453. height: math.unit(1, "mm")
  32454. },
  32455. {
  32456. name: "Normal",
  32457. height: math.unit(6, "inches")
  32458. },
  32459. {
  32460. name: "Macro",
  32461. height: math.unit(2000, "feet"),
  32462. default: true
  32463. },
  32464. {
  32465. name: "Megamacro",
  32466. height: math.unit(2, "km")
  32467. },
  32468. {
  32469. name: "Gigamacro",
  32470. height: math.unit(2000, "km")
  32471. },
  32472. {
  32473. name: "Teramacro",
  32474. height: math.unit(250000, "km")
  32475. },
  32476. ]
  32477. ))
  32478. characterMakers.push(() => makeCharacter(
  32479. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32480. {
  32481. front: {
  32482. height: math.unit(4, "meters"),
  32483. weight: math.unit(150, "kg"),
  32484. name: "Front",
  32485. image: {
  32486. source: "./media/characters/caledvwlch/front.svg",
  32487. extra: 1757/1537,
  32488. bottom: 31/1788
  32489. }
  32490. },
  32491. side: {
  32492. height: math.unit(4, "meters"),
  32493. weight: math.unit(150, "kg"),
  32494. name: "Side",
  32495. image: {
  32496. source: "./media/characters/caledvwlch/side.svg",
  32497. extra: 1605 / 1536,
  32498. bottom: 31 / 1636
  32499. }
  32500. },
  32501. back: {
  32502. height: math.unit(4, "meters"),
  32503. weight: math.unit(150, "kg"),
  32504. name: "Back",
  32505. image: {
  32506. source: "./media/characters/caledvwlch/back.svg",
  32507. extra: 1635 / 1565,
  32508. bottom: 27 / 1662
  32509. }
  32510. },
  32511. },
  32512. [
  32513. {
  32514. name: "\"Incognito\"",
  32515. height: math.unit(4, "meters")
  32516. },
  32517. {
  32518. name: "Small rampage",
  32519. height: math.unit(600, "meters")
  32520. },
  32521. {
  32522. name: "Mega",
  32523. height: math.unit(30, "km")
  32524. },
  32525. {
  32526. name: "Home-size",
  32527. height: math.unit(50, "km"),
  32528. default: true
  32529. },
  32530. {
  32531. name: "Giga",
  32532. height: math.unit(300, "km")
  32533. },
  32534. {
  32535. name: "Lounging",
  32536. height: math.unit(11000, "km")
  32537. },
  32538. {
  32539. name: "Planet snacking",
  32540. height: math.unit(2000000, "km")
  32541. },
  32542. ]
  32543. ))
  32544. characterMakers.push(() => makeCharacter(
  32545. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32546. {
  32547. front: {
  32548. height: math.unit(6, "feet"),
  32549. weight: math.unit(215, "lb"),
  32550. name: "Front",
  32551. image: {
  32552. source: "./media/characters/sapphire-svell/front.svg",
  32553. extra: 495 / 455,
  32554. bottom: 20 / 515
  32555. }
  32556. },
  32557. back: {
  32558. height: math.unit(6, "feet"),
  32559. weight: math.unit(216, "lb"),
  32560. name: "Back",
  32561. image: {
  32562. source: "./media/characters/sapphire-svell/back.svg",
  32563. extra: 497 / 477,
  32564. bottom: 7 / 504
  32565. }
  32566. },
  32567. maw: {
  32568. height: math.unit(1.57, "feet"),
  32569. name: "Maw",
  32570. image: {
  32571. source: "./media/characters/sapphire-svell/maw.svg"
  32572. }
  32573. },
  32574. foot: {
  32575. height: math.unit(1.07, "feet"),
  32576. name: "Foot",
  32577. image: {
  32578. source: "./media/characters/sapphire-svell/foot.svg"
  32579. }
  32580. },
  32581. toering: {
  32582. height: math.unit(1.7, "inch"),
  32583. name: "Toering",
  32584. image: {
  32585. source: "./media/characters/sapphire-svell/toering.svg"
  32586. }
  32587. },
  32588. },
  32589. [
  32590. {
  32591. name: "Normal",
  32592. height: math.unit(300, "feet"),
  32593. default: true
  32594. },
  32595. {
  32596. name: "Augmented",
  32597. height: math.unit(1250, "feet")
  32598. },
  32599. {
  32600. name: "Unleashed",
  32601. height: math.unit(3000, "feet")
  32602. },
  32603. ]
  32604. ))
  32605. characterMakers.push(() => makeCharacter(
  32606. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32607. {
  32608. side: {
  32609. height: math.unit(2 + 3 / 12, "feet"),
  32610. weight: math.unit(110, "lb"),
  32611. name: "Side",
  32612. image: {
  32613. source: "./media/characters/glitch-flux/side.svg",
  32614. extra: 997 / 805,
  32615. bottom: 20 / 1017
  32616. }
  32617. },
  32618. },
  32619. [
  32620. {
  32621. name: "Normal",
  32622. height: math.unit(2 + 3 / 12, "feet"),
  32623. default: true
  32624. },
  32625. ]
  32626. ))
  32627. characterMakers.push(() => makeCharacter(
  32628. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32629. {
  32630. front: {
  32631. height: math.unit(4, "meters"),
  32632. name: "Front",
  32633. image: {
  32634. source: "./media/characters/mid/front.svg",
  32635. extra: 507 / 476,
  32636. bottom: 17 / 524
  32637. }
  32638. },
  32639. back: {
  32640. height: math.unit(4, "meters"),
  32641. name: "Back",
  32642. image: {
  32643. source: "./media/characters/mid/back.svg",
  32644. extra: 519 / 487,
  32645. bottom: 7 / 526
  32646. }
  32647. },
  32648. stuck: {
  32649. height: math.unit(2.2, "meters"),
  32650. name: "Stuck",
  32651. image: {
  32652. source: "./media/characters/mid/stuck.svg",
  32653. extra: 1951 / 1869,
  32654. bottom: 88 / 2039
  32655. }
  32656. }
  32657. },
  32658. [
  32659. {
  32660. name: "Normal",
  32661. height: math.unit(4, "meters"),
  32662. default: true
  32663. },
  32664. {
  32665. name: "Big",
  32666. height: math.unit(10, "meters")
  32667. },
  32668. {
  32669. name: "Macro",
  32670. height: math.unit(800, "meters")
  32671. },
  32672. {
  32673. name: "Megamacro",
  32674. height: math.unit(100, "km")
  32675. },
  32676. {
  32677. name: "Overgrown",
  32678. height: math.unit(1, "parsec")
  32679. },
  32680. ]
  32681. ))
  32682. characterMakers.push(() => makeCharacter(
  32683. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32684. {
  32685. front: {
  32686. height: math.unit(2.5, "meters"),
  32687. weight: math.unit(225, "kg"),
  32688. name: "Front",
  32689. image: {
  32690. source: "./media/characters/iris/front.svg",
  32691. extra: 3348 / 3251,
  32692. bottom: 205 / 3553
  32693. }
  32694. },
  32695. maw: {
  32696. height: math.unit(0.56, "meter"),
  32697. name: "Maw",
  32698. image: {
  32699. source: "./media/characters/iris/maw.svg"
  32700. }
  32701. },
  32702. },
  32703. [
  32704. {
  32705. name: "Mewter cat",
  32706. height: math.unit(1.2, "meters")
  32707. },
  32708. {
  32709. name: "Normal",
  32710. height: math.unit(2.5, "meters"),
  32711. default: true
  32712. },
  32713. {
  32714. name: "Minimacro",
  32715. height: math.unit(18, "feet")
  32716. },
  32717. {
  32718. name: "Macro",
  32719. height: math.unit(140, "feet")
  32720. },
  32721. {
  32722. name: "Macro+",
  32723. height: math.unit(180, "meters")
  32724. },
  32725. {
  32726. name: "Megamacro",
  32727. height: math.unit(2746, "meters")
  32728. },
  32729. ]
  32730. ))
  32731. characterMakers.push(() => makeCharacter(
  32732. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32733. {
  32734. front: {
  32735. height: math.unit(6, "feet"),
  32736. weight: math.unit(135, "lb"),
  32737. name: "Front",
  32738. image: {
  32739. source: "./media/characters/axel/front.svg",
  32740. extra: 908 / 908,
  32741. bottom: 58 / 966
  32742. }
  32743. },
  32744. side: {
  32745. height: math.unit(6, "feet"),
  32746. weight: math.unit(135, "lb"),
  32747. name: "Side",
  32748. image: {
  32749. source: "./media/characters/axel/side.svg",
  32750. extra: 958 / 958,
  32751. bottom: 11 / 969
  32752. }
  32753. },
  32754. back: {
  32755. height: math.unit(6, "feet"),
  32756. weight: math.unit(135, "lb"),
  32757. name: "Back",
  32758. image: {
  32759. source: "./media/characters/axel/back.svg",
  32760. extra: 887 / 887,
  32761. bottom: 34 / 921
  32762. }
  32763. },
  32764. head: {
  32765. height: math.unit(1.07, "feet"),
  32766. name: "Head",
  32767. image: {
  32768. source: "./media/characters/axel/head.svg"
  32769. }
  32770. },
  32771. beak: {
  32772. height: math.unit(1.4, "feet"),
  32773. name: "Beak",
  32774. image: {
  32775. source: "./media/characters/axel/beak.svg"
  32776. }
  32777. },
  32778. beakSide: {
  32779. height: math.unit(1.4, "feet"),
  32780. name: "Beak Side",
  32781. image: {
  32782. source: "./media/characters/axel/beak-side.svg"
  32783. }
  32784. },
  32785. sheath: {
  32786. height: math.unit(0.5, "feet"),
  32787. name: "Sheath",
  32788. image: {
  32789. source: "./media/characters/axel/sheath.svg"
  32790. }
  32791. },
  32792. dick: {
  32793. height: math.unit(0.98, "feet"),
  32794. name: "Dick",
  32795. image: {
  32796. source: "./media/characters/axel/dick.svg"
  32797. }
  32798. },
  32799. },
  32800. [
  32801. {
  32802. name: "Macro",
  32803. height: math.unit(68, "meters"),
  32804. default: true
  32805. },
  32806. ]
  32807. ))
  32808. characterMakers.push(() => makeCharacter(
  32809. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32810. {
  32811. front: {
  32812. height: math.unit(3.5, "meters"),
  32813. weight: math.unit(1200, "kg"),
  32814. name: "Front",
  32815. image: {
  32816. source: "./media/characters/joanna/front.svg",
  32817. extra: 1596 / 1488,
  32818. bottom: 29 / 1625
  32819. }
  32820. },
  32821. back: {
  32822. height: math.unit(3.5, "meters"),
  32823. weight: math.unit(1200, "kg"),
  32824. name: "Back",
  32825. image: {
  32826. source: "./media/characters/joanna/back.svg",
  32827. extra: 1594 / 1495,
  32828. bottom: 26 / 1620
  32829. }
  32830. },
  32831. frontShorts: {
  32832. height: math.unit(3.5, "meters"),
  32833. weight: math.unit(1200, "kg"),
  32834. name: "Front (Shorts)",
  32835. image: {
  32836. source: "./media/characters/joanna/front-shorts.svg",
  32837. extra: 1596 / 1488,
  32838. bottom: 29 / 1625
  32839. }
  32840. },
  32841. frontBiker: {
  32842. height: math.unit(3.5, "meters"),
  32843. weight: math.unit(1200, "kg"),
  32844. name: "Front (Biker)",
  32845. image: {
  32846. source: "./media/characters/joanna/front-biker.svg",
  32847. extra: 1596 / 1488,
  32848. bottom: 29 / 1625
  32849. }
  32850. },
  32851. backBiker: {
  32852. height: math.unit(3.5, "meters"),
  32853. weight: math.unit(1200, "kg"),
  32854. name: "Back (Biker)",
  32855. image: {
  32856. source: "./media/characters/joanna/back-biker.svg",
  32857. extra: 1594 / 1495,
  32858. bottom: 88 / 1682
  32859. }
  32860. },
  32861. bikeLeft: {
  32862. height: math.unit(2.4, "meters"),
  32863. weight: math.unit(1600, "kg"),
  32864. name: "Bike (Left)",
  32865. image: {
  32866. source: "./media/characters/joanna/bike-left.svg",
  32867. extra: 720 / 720,
  32868. bottom: 8 / 728
  32869. }
  32870. },
  32871. bikeRight: {
  32872. height: math.unit(2.4, "meters"),
  32873. weight: math.unit(1600, "kg"),
  32874. name: "Bike (Right)",
  32875. image: {
  32876. source: "./media/characters/joanna/bike-right.svg",
  32877. extra: 720 / 720,
  32878. bottom: 8 / 728
  32879. }
  32880. },
  32881. },
  32882. [
  32883. {
  32884. name: "Incognito",
  32885. height: math.unit(3.5, "meters")
  32886. },
  32887. {
  32888. name: "Casual Big",
  32889. height: math.unit(200, "meters")
  32890. },
  32891. {
  32892. name: "Macro",
  32893. height: math.unit(600, "meters")
  32894. },
  32895. {
  32896. name: "Original",
  32897. height: math.unit(20, "km"),
  32898. default: true
  32899. },
  32900. {
  32901. name: "Giga",
  32902. height: math.unit(400, "km")
  32903. },
  32904. {
  32905. name: "Lounging",
  32906. height: math.unit(1500, "km")
  32907. },
  32908. {
  32909. name: "Planetary",
  32910. height: math.unit(200000, "km")
  32911. },
  32912. ]
  32913. ))
  32914. characterMakers.push(() => makeCharacter(
  32915. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32916. {
  32917. front: {
  32918. height: math.unit(6, "feet"),
  32919. weight: math.unit(150, "lb"),
  32920. name: "Front",
  32921. image: {
  32922. source: "./media/characters/hugo-sigil/front.svg",
  32923. extra: 522 / 500,
  32924. bottom: 2 / 524
  32925. }
  32926. },
  32927. back: {
  32928. height: math.unit(6, "feet"),
  32929. weight: math.unit(150, "lb"),
  32930. name: "Back",
  32931. image: {
  32932. source: "./media/characters/hugo-sigil/back.svg",
  32933. extra: 519 / 495,
  32934. bottom: 5 / 524
  32935. }
  32936. },
  32937. maw: {
  32938. height: math.unit(1.4, "feet"),
  32939. weight: math.unit(150, "lb"),
  32940. name: "Maw",
  32941. image: {
  32942. source: "./media/characters/hugo-sigil/maw.svg"
  32943. }
  32944. },
  32945. feet: {
  32946. height: math.unit(1.56, "feet"),
  32947. weight: math.unit(150, "lb"),
  32948. name: "Feet",
  32949. image: {
  32950. source: "./media/characters/hugo-sigil/feet.svg",
  32951. extra: 177 / 177,
  32952. bottom: 12 / 189
  32953. }
  32954. },
  32955. },
  32956. [
  32957. {
  32958. name: "Normal",
  32959. height: math.unit(6, "feet")
  32960. },
  32961. {
  32962. name: "Macro",
  32963. height: math.unit(200, "feet"),
  32964. default: true
  32965. },
  32966. ]
  32967. ))
  32968. characterMakers.push(() => makeCharacter(
  32969. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32970. {
  32971. front: {
  32972. height: math.unit(6, "feet"),
  32973. weight: math.unit(150, "lb"),
  32974. name: "Front",
  32975. image: {
  32976. source: "./media/characters/peri/front.svg",
  32977. extra: 2354 / 2233,
  32978. bottom: 49 / 2403
  32979. }
  32980. },
  32981. },
  32982. [
  32983. {
  32984. name: "Really Small",
  32985. height: math.unit(1, "nm")
  32986. },
  32987. {
  32988. name: "Micro",
  32989. height: math.unit(4, "inches")
  32990. },
  32991. {
  32992. name: "Normal",
  32993. height: math.unit(7, "inches"),
  32994. default: true
  32995. },
  32996. {
  32997. name: "Macro",
  32998. height: math.unit(400, "feet")
  32999. },
  33000. {
  33001. name: "Megamacro",
  33002. height: math.unit(100, "miles")
  33003. },
  33004. ]
  33005. ))
  33006. characterMakers.push(() => makeCharacter(
  33007. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33008. {
  33009. frontSlim: {
  33010. height: math.unit(7, "feet"),
  33011. name: "Front (Slim)",
  33012. image: {
  33013. source: "./media/characters/issilora/front-slim.svg",
  33014. extra: 529 / 449,
  33015. bottom: 53 / 582
  33016. }
  33017. },
  33018. sideSlim: {
  33019. height: math.unit(7, "feet"),
  33020. name: "Side (Slim)",
  33021. image: {
  33022. source: "./media/characters/issilora/side-slim.svg",
  33023. extra: 570 / 480,
  33024. bottom: 30 / 600
  33025. }
  33026. },
  33027. backSlim: {
  33028. height: math.unit(7, "feet"),
  33029. name: "Back (Slim)",
  33030. image: {
  33031. source: "./media/characters/issilora/back-slim.svg",
  33032. extra: 537 / 455,
  33033. bottom: 46 / 583
  33034. }
  33035. },
  33036. frontBuff: {
  33037. height: math.unit(7, "feet"),
  33038. name: "Front (Buff)",
  33039. image: {
  33040. source: "./media/characters/issilora/front-buff.svg",
  33041. extra: 2310 / 2035,
  33042. bottom: 335 / 2645
  33043. }
  33044. },
  33045. head: {
  33046. height: math.unit(1.94, "feet"),
  33047. name: "Head",
  33048. image: {
  33049. source: "./media/characters/issilora/head.svg"
  33050. }
  33051. },
  33052. },
  33053. [
  33054. {
  33055. name: "Minimum",
  33056. height: math.unit(7, "feet")
  33057. },
  33058. {
  33059. name: "Comfortable",
  33060. height: math.unit(17, "feet")
  33061. },
  33062. {
  33063. name: "Fun Size",
  33064. height: math.unit(47, "feet")
  33065. },
  33066. {
  33067. name: "Natural Macro",
  33068. height: math.unit(137, "feet"),
  33069. default: true
  33070. },
  33071. {
  33072. name: "Maximum Kaiju",
  33073. height: math.unit(397, "feet")
  33074. },
  33075. ]
  33076. ))
  33077. characterMakers.push(() => makeCharacter(
  33078. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33079. {
  33080. front: {
  33081. height: math.unit(50 + 9/12, "feet"),
  33082. weight: math.unit(32.8, "tons"),
  33083. name: "Front",
  33084. image: {
  33085. source: "./media/characters/irb'iiritaahn/front.svg",
  33086. extra: 1878/1826,
  33087. bottom: 326/2204
  33088. }
  33089. },
  33090. back: {
  33091. height: math.unit(50 + 9/12, "feet"),
  33092. weight: math.unit(32.8, "tons"),
  33093. name: "Back",
  33094. image: {
  33095. source: "./media/characters/irb'iiritaahn/back.svg",
  33096. extra: 2052/2018,
  33097. bottom: 152/2204
  33098. }
  33099. },
  33100. head: {
  33101. height: math.unit(12.86, "feet"),
  33102. name: "Head",
  33103. image: {
  33104. source: "./media/characters/irb'iiritaahn/head.svg"
  33105. }
  33106. },
  33107. maw: {
  33108. height: math.unit(9.66, "feet"),
  33109. name: "Maw",
  33110. image: {
  33111. source: "./media/characters/irb'iiritaahn/maw.svg"
  33112. }
  33113. },
  33114. frontDick: {
  33115. height: math.unit(8.78461, "feet"),
  33116. name: "Front Dick",
  33117. image: {
  33118. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33119. }
  33120. },
  33121. rearDick: {
  33122. height: math.unit(8.78461, "feet"),
  33123. name: "Rear Dick",
  33124. image: {
  33125. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33126. }
  33127. },
  33128. rearDickUnfolded: {
  33129. height: math.unit(8.78, "feet"),
  33130. name: "Rear Dick (Unfolded)",
  33131. image: {
  33132. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33133. }
  33134. },
  33135. wings: {
  33136. height: math.unit(43, "feet"),
  33137. name: "Wings",
  33138. image: {
  33139. source: "./media/characters/irb'iiritaahn/wings.svg"
  33140. }
  33141. },
  33142. },
  33143. [
  33144. {
  33145. name: "Macro",
  33146. height: math.unit(50 + 9/12, "feet"),
  33147. default: true
  33148. },
  33149. ]
  33150. ))
  33151. characterMakers.push(() => makeCharacter(
  33152. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33153. {
  33154. front: {
  33155. height: math.unit(205, "cm"),
  33156. weight: math.unit(102, "kg"),
  33157. name: "Front",
  33158. image: {
  33159. source: "./media/characters/irbisgreif/front.svg",
  33160. extra: 785/706,
  33161. bottom: 13/798
  33162. }
  33163. },
  33164. back: {
  33165. height: math.unit(205, "cm"),
  33166. weight: math.unit(102, "kg"),
  33167. name: "Back",
  33168. image: {
  33169. source: "./media/characters/irbisgreif/back.svg",
  33170. extra: 713/701,
  33171. bottom: 26/739
  33172. }
  33173. },
  33174. frontDressed: {
  33175. height: math.unit(216, "cm"),
  33176. weight: math.unit(102, "kg"),
  33177. name: "Front-dressed",
  33178. image: {
  33179. source: "./media/characters/irbisgreif/front-dressed.svg",
  33180. extra: 902/776,
  33181. bottom: 14/916
  33182. }
  33183. },
  33184. sideDressed: {
  33185. height: math.unit(195, "cm"),
  33186. weight: math.unit(102, "kg"),
  33187. name: "Side-dressed",
  33188. image: {
  33189. source: "./media/characters/irbisgreif/side-dressed.svg",
  33190. extra: 788/688,
  33191. bottom: 21/809
  33192. }
  33193. },
  33194. backDressed: {
  33195. height: math.unit(216, "cm"),
  33196. weight: math.unit(102, "kg"),
  33197. name: "Back-dressed",
  33198. image: {
  33199. source: "./media/characters/irbisgreif/back-dressed.svg",
  33200. extra: 901/783,
  33201. bottom: 10/911
  33202. }
  33203. },
  33204. dick: {
  33205. height: math.unit(0.49, "feet"),
  33206. name: "Dick",
  33207. image: {
  33208. source: "./media/characters/irbisgreif/dick.svg"
  33209. }
  33210. },
  33211. wingTop: {
  33212. height: math.unit(1.93 , "feet"),
  33213. name: "Wing-top",
  33214. image: {
  33215. source: "./media/characters/irbisgreif/wing-top.svg"
  33216. }
  33217. },
  33218. wingBottom: {
  33219. height: math.unit(1.93 , "feet"),
  33220. name: "Wing-bottom",
  33221. image: {
  33222. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33223. }
  33224. },
  33225. },
  33226. [
  33227. {
  33228. name: "Normal",
  33229. height: math.unit(216, "cm"),
  33230. default: true
  33231. },
  33232. ]
  33233. ))
  33234. characterMakers.push(() => makeCharacter(
  33235. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33236. {
  33237. front: {
  33238. height: math.unit(6, "feet"),
  33239. weight: math.unit(150, "lb"),
  33240. name: "Front",
  33241. image: {
  33242. source: "./media/characters/pride/front.svg",
  33243. extra: 1299/1230,
  33244. bottom: 18/1317
  33245. }
  33246. },
  33247. },
  33248. [
  33249. {
  33250. name: "Normal",
  33251. height: math.unit(7, "feet")
  33252. },
  33253. {
  33254. name: "Mini-macro",
  33255. height: math.unit(11, "feet")
  33256. },
  33257. {
  33258. name: "Macro",
  33259. height: math.unit(15, "meters"),
  33260. default: true
  33261. },
  33262. {
  33263. name: "Macro+",
  33264. height: math.unit(40, "meters")
  33265. },
  33266. ]
  33267. ))
  33268. characterMakers.push(() => makeCharacter(
  33269. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33270. {
  33271. front: {
  33272. height: math.unit(4 + 2 / 12, "feet"),
  33273. weight: math.unit(95, "lb"),
  33274. name: "Front",
  33275. image: {
  33276. source: "./media/characters/vaelophis-nyx/front.svg",
  33277. extra: 2532/2330,
  33278. bottom: 0/2532
  33279. }
  33280. },
  33281. back: {
  33282. height: math.unit(4 + 2 / 12, "feet"),
  33283. weight: math.unit(95, "lb"),
  33284. name: "Back",
  33285. image: {
  33286. source: "./media/characters/vaelophis-nyx/back.svg",
  33287. extra: 2484/2361,
  33288. bottom: 0/2484
  33289. }
  33290. },
  33291. feralSide: {
  33292. height: math.unit(2 + 1/12, "feet"),
  33293. weight: math.unit(20, "lb"),
  33294. name: "Feral (Side)",
  33295. image: {
  33296. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33297. extra: 1721/1581,
  33298. bottom: 70/1791
  33299. }
  33300. },
  33301. feralLazing: {
  33302. height: math.unit(1.08, "feet"),
  33303. weight: math.unit(20, "lb"),
  33304. name: "Feral (Lazing)",
  33305. image: {
  33306. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33307. extra: 822/822,
  33308. bottom: 248/1070
  33309. }
  33310. },
  33311. ear: {
  33312. height: math.unit(0.416, "feet"),
  33313. name: "Ear",
  33314. image: {
  33315. source: "./media/characters/vaelophis-nyx/ear.svg"
  33316. }
  33317. },
  33318. eye: {
  33319. height: math.unit(0.0748, "feet"),
  33320. name: "Eye",
  33321. image: {
  33322. source: "./media/characters/vaelophis-nyx/eye.svg"
  33323. }
  33324. },
  33325. mouth: {
  33326. height: math.unit(0.378, "feet"),
  33327. name: "Mouth",
  33328. image: {
  33329. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33330. }
  33331. },
  33332. spade: {
  33333. height: math.unit(0.55, "feet"),
  33334. name: "Spade",
  33335. image: {
  33336. source: "./media/characters/vaelophis-nyx/spade.svg"
  33337. }
  33338. },
  33339. },
  33340. [
  33341. {
  33342. name: "Normal",
  33343. height: math.unit(4 + 2/12, "feet"),
  33344. default: true
  33345. },
  33346. ]
  33347. ))
  33348. characterMakers.push(() => makeCharacter(
  33349. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33350. {
  33351. front: {
  33352. height: math.unit(7, "feet"),
  33353. weight: math.unit(231, "lb"),
  33354. name: "Front",
  33355. image: {
  33356. source: "./media/characters/flux/front.svg",
  33357. extra: 919/871,
  33358. bottom: 0/919
  33359. }
  33360. },
  33361. back: {
  33362. height: math.unit(7, "feet"),
  33363. weight: math.unit(231, "lb"),
  33364. name: "Back",
  33365. image: {
  33366. source: "./media/characters/flux/back.svg",
  33367. extra: 1040/992,
  33368. bottom: 0/1040
  33369. }
  33370. },
  33371. frontDressed: {
  33372. height: math.unit(7, "feet"),
  33373. weight: math.unit(231, "lb"),
  33374. name: "Front (Dressed)",
  33375. image: {
  33376. source: "./media/characters/flux/front-dressed.svg",
  33377. extra: 919/871,
  33378. bottom: 0/919
  33379. }
  33380. },
  33381. feralSide: {
  33382. height: math.unit(5, "feet"),
  33383. weight: math.unit(150, "lb"),
  33384. name: "Feral (Side)",
  33385. image: {
  33386. source: "./media/characters/flux/feral-side.svg",
  33387. extra: 598/528,
  33388. bottom: 28/626
  33389. }
  33390. },
  33391. head: {
  33392. height: math.unit(1.585, "feet"),
  33393. name: "Head",
  33394. image: {
  33395. source: "./media/characters/flux/head.svg"
  33396. }
  33397. },
  33398. headSide: {
  33399. height: math.unit(1.74, "feet"),
  33400. name: "Head (Side)",
  33401. image: {
  33402. source: "./media/characters/flux/head-side.svg"
  33403. }
  33404. },
  33405. headSideFire: {
  33406. height: math.unit(1.76, "feet"),
  33407. name: "Head (Side, Fire)",
  33408. image: {
  33409. source: "./media/characters/flux/head-side-fire.svg"
  33410. }
  33411. },
  33412. },
  33413. [
  33414. {
  33415. name: "Normal",
  33416. height: math.unit(7, "feet"),
  33417. default: true
  33418. },
  33419. ]
  33420. ))
  33421. characterMakers.push(() => makeCharacter(
  33422. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33423. {
  33424. front: {
  33425. height: math.unit(9, "feet"),
  33426. weight: math.unit(1012, "lb"),
  33427. name: "Front",
  33428. image: {
  33429. source: "./media/characters/ulfra-lupae/front.svg",
  33430. extra: 1083/1011,
  33431. bottom: 67/1150
  33432. }
  33433. },
  33434. },
  33435. [
  33436. {
  33437. name: "Micro",
  33438. height: math.unit(6, "inches")
  33439. },
  33440. {
  33441. name: "Socializing",
  33442. height: math.unit(6 + 5/12, "feet")
  33443. },
  33444. {
  33445. name: "Normal",
  33446. height: math.unit(9, "feet"),
  33447. default: true
  33448. },
  33449. {
  33450. name: "Macro",
  33451. height: math.unit(150, "feet")
  33452. },
  33453. ]
  33454. ))
  33455. characterMakers.push(() => makeCharacter(
  33456. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33457. {
  33458. front: {
  33459. height: math.unit(5 + 2/12, "feet"),
  33460. weight: math.unit(120, "lb"),
  33461. name: "Front",
  33462. image: {
  33463. source: "./media/characters/timber/front.svg",
  33464. extra: 2814/2705,
  33465. bottom: 181/2995
  33466. }
  33467. },
  33468. },
  33469. [
  33470. {
  33471. name: "Normal",
  33472. height: math.unit(5 + 2/12, "feet"),
  33473. default: true
  33474. },
  33475. ]
  33476. ))
  33477. characterMakers.push(() => makeCharacter(
  33478. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33479. {
  33480. front: {
  33481. height: math.unit(9, "feet"),
  33482. name: "Front",
  33483. image: {
  33484. source: "./media/characters/nicki/front.svg",
  33485. extra: 1240/990,
  33486. bottom: 45/1285
  33487. },
  33488. form: "anthro",
  33489. default: true
  33490. },
  33491. side: {
  33492. height: math.unit(9, "feet"),
  33493. name: "Side",
  33494. image: {
  33495. source: "./media/characters/nicki/side.svg",
  33496. extra: 1047/973,
  33497. bottom: 61/1108
  33498. },
  33499. form: "anthro"
  33500. },
  33501. back: {
  33502. height: math.unit(9, "feet"),
  33503. name: "Back",
  33504. image: {
  33505. source: "./media/characters/nicki/back.svg",
  33506. extra: 1006/965,
  33507. bottom: 39/1045
  33508. },
  33509. form: "anthro"
  33510. },
  33511. taur: {
  33512. height: math.unit(15, "feet"),
  33513. name: "Taur",
  33514. image: {
  33515. source: "./media/characters/nicki/taur.svg",
  33516. extra: 1592/1347,
  33517. bottom: 0/1592
  33518. },
  33519. form: "taur",
  33520. default: true
  33521. },
  33522. },
  33523. [
  33524. {
  33525. name: "Normal",
  33526. height: math.unit(9, "feet"),
  33527. form: "anthro",
  33528. default: true
  33529. },
  33530. {
  33531. name: "Normal",
  33532. height: math.unit(15, "feet"),
  33533. form: "taur",
  33534. default: true
  33535. }
  33536. ],
  33537. {
  33538. "anthro": {
  33539. name: "Anthro",
  33540. default: true
  33541. },
  33542. "taur": {
  33543. name: "Taur"
  33544. }
  33545. }
  33546. ))
  33547. characterMakers.push(() => makeCharacter(
  33548. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33549. {
  33550. front: {
  33551. height: math.unit(7 + 10/12, "feet"),
  33552. weight: math.unit(3.5, "tons"),
  33553. name: "Front",
  33554. image: {
  33555. source: "./media/characters/lee/front.svg",
  33556. extra: 1773/1615,
  33557. bottom: 86/1859
  33558. }
  33559. },
  33560. hand: {
  33561. height: math.unit(1.78, "feet"),
  33562. name: "Hand",
  33563. image: {
  33564. source: "./media/characters/lee/hand.svg"
  33565. }
  33566. },
  33567. maw: {
  33568. height: math.unit(1.18, "feet"),
  33569. name: "Maw",
  33570. image: {
  33571. source: "./media/characters/lee/maw.svg"
  33572. }
  33573. },
  33574. },
  33575. [
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(7 + 10/12, "feet"),
  33579. default: true
  33580. },
  33581. ]
  33582. ))
  33583. characterMakers.push(() => makeCharacter(
  33584. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33585. {
  33586. front: {
  33587. height: math.unit(9, "feet"),
  33588. name: "Front",
  33589. image: {
  33590. source: "./media/characters/guti/front.svg",
  33591. extra: 4551/4355,
  33592. bottom: 123/4674
  33593. }
  33594. },
  33595. tongue: {
  33596. height: math.unit(1, "feet"),
  33597. name: "Tongue",
  33598. image: {
  33599. source: "./media/characters/guti/tongue.svg"
  33600. }
  33601. },
  33602. paw: {
  33603. height: math.unit(1.18, "feet"),
  33604. name: "Paw",
  33605. image: {
  33606. source: "./media/characters/guti/paw.svg"
  33607. }
  33608. },
  33609. },
  33610. [
  33611. {
  33612. name: "Normal",
  33613. height: math.unit(9, "feet"),
  33614. default: true
  33615. },
  33616. ]
  33617. ))
  33618. characterMakers.push(() => makeCharacter(
  33619. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33620. {
  33621. side: {
  33622. height: math.unit(5, "meters"),
  33623. name: "Side",
  33624. image: {
  33625. source: "./media/characters/vesper/side.svg",
  33626. extra: 1605/1518,
  33627. bottom: 0/1605
  33628. }
  33629. },
  33630. },
  33631. [
  33632. {
  33633. name: "Small",
  33634. height: math.unit(5, "meters")
  33635. },
  33636. {
  33637. name: "Sage",
  33638. height: math.unit(100, "meters"),
  33639. default: true
  33640. },
  33641. {
  33642. name: "Fun Size",
  33643. height: math.unit(600, "meters")
  33644. },
  33645. {
  33646. name: "Goddess",
  33647. height: math.unit(20000, "km")
  33648. },
  33649. {
  33650. name: "Maximum",
  33651. height: math.unit(5, "galaxies")
  33652. },
  33653. ]
  33654. ))
  33655. characterMakers.push(() => makeCharacter(
  33656. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33657. {
  33658. front: {
  33659. height: math.unit(6 + 3/12, "feet"),
  33660. weight: math.unit(190, "lb"),
  33661. name: "Front",
  33662. image: {
  33663. source: "./media/characters/gawain/front.svg",
  33664. extra: 2222/2139,
  33665. bottom: 90/2312
  33666. }
  33667. },
  33668. back: {
  33669. height: math.unit(6 + 3/12, "feet"),
  33670. weight: math.unit(190, "lb"),
  33671. name: "Back",
  33672. image: {
  33673. source: "./media/characters/gawain/back.svg",
  33674. extra: 2199/2111,
  33675. bottom: 73/2272
  33676. }
  33677. },
  33678. },
  33679. [
  33680. {
  33681. name: "Normal",
  33682. height: math.unit(6 + 3/12, "feet"),
  33683. default: true
  33684. },
  33685. ]
  33686. ))
  33687. characterMakers.push(() => makeCharacter(
  33688. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33689. {
  33690. side: {
  33691. height: math.unit(3.5, "meters"),
  33692. weight: math.unit(16000, "lb"),
  33693. name: "Side",
  33694. image: {
  33695. source: "./media/characters/dascalti/side.svg",
  33696. extra: 392/273,
  33697. bottom: 47/439
  33698. }
  33699. },
  33700. breath: {
  33701. height: math.unit(7.4, "feet"),
  33702. name: "Breath",
  33703. image: {
  33704. source: "./media/characters/dascalti/breath.svg"
  33705. }
  33706. },
  33707. fed: {
  33708. height: math.unit(3.6, "meters"),
  33709. weight: math.unit(16000, "lb"),
  33710. name: "Fed",
  33711. image: {
  33712. source: "./media/characters/dascalti/fed.svg",
  33713. extra: 1419/820,
  33714. bottom: 95/1514
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Normal",
  33721. height: math.unit(3.5, "meters"),
  33722. default: true
  33723. },
  33724. ]
  33725. ))
  33726. characterMakers.push(() => makeCharacter(
  33727. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33728. {
  33729. front: {
  33730. height: math.unit(3 + 5/12, "feet"),
  33731. name: "Front",
  33732. image: {
  33733. source: "./media/characters/mauve/front.svg",
  33734. extra: 1126/1033,
  33735. bottom: 65/1191
  33736. }
  33737. },
  33738. side: {
  33739. height: math.unit(3 + 5/12, "feet"),
  33740. name: "Side",
  33741. image: {
  33742. source: "./media/characters/mauve/side.svg",
  33743. extra: 1089/1001,
  33744. bottom: 29/1118
  33745. }
  33746. },
  33747. back: {
  33748. height: math.unit(3 + 5/12, "feet"),
  33749. name: "Back",
  33750. image: {
  33751. source: "./media/characters/mauve/back.svg",
  33752. extra: 1173/1053,
  33753. bottom: 109/1282
  33754. }
  33755. },
  33756. },
  33757. [
  33758. {
  33759. name: "Normal",
  33760. height: math.unit(3 + 5/12, "feet"),
  33761. default: true
  33762. },
  33763. ]
  33764. ))
  33765. characterMakers.push(() => makeCharacter(
  33766. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33767. {
  33768. front: {
  33769. height: math.unit(6 + 3/12, "feet"),
  33770. weight: math.unit(430, "lb"),
  33771. name: "Front",
  33772. image: {
  33773. source: "./media/characters/carlos/front.svg",
  33774. extra: 1964/1913,
  33775. bottom: 70/2034
  33776. }
  33777. },
  33778. },
  33779. [
  33780. {
  33781. name: "Normal",
  33782. height: math.unit(6 + 3/12, "feet"),
  33783. default: true
  33784. },
  33785. ]
  33786. ))
  33787. characterMakers.push(() => makeCharacter(
  33788. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33789. {
  33790. back: {
  33791. height: math.unit(5 + 10/12, "feet"),
  33792. weight: math.unit(200, "lb"),
  33793. name: "Back",
  33794. image: {
  33795. source: "./media/characters/jax/back.svg",
  33796. extra: 764/739,
  33797. bottom: 25/789
  33798. }
  33799. },
  33800. },
  33801. [
  33802. {
  33803. name: "Normal",
  33804. height: math.unit(5 + 10/12, "feet"),
  33805. default: true
  33806. },
  33807. ]
  33808. ))
  33809. characterMakers.push(() => makeCharacter(
  33810. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33811. {
  33812. front: {
  33813. height: math.unit(8, "feet"),
  33814. weight: math.unit(250, "lb"),
  33815. name: "Front",
  33816. image: {
  33817. source: "./media/characters/eikthynir/front.svg",
  33818. extra: 1332/1166,
  33819. bottom: 82/1414
  33820. }
  33821. },
  33822. back: {
  33823. height: math.unit(8, "feet"),
  33824. weight: math.unit(250, "lb"),
  33825. name: "Back",
  33826. image: {
  33827. source: "./media/characters/eikthynir/back.svg",
  33828. extra: 1342/1190,
  33829. bottom: 19/1361
  33830. }
  33831. },
  33832. dick: {
  33833. height: math.unit(2.35, "feet"),
  33834. name: "Dick",
  33835. image: {
  33836. source: "./media/characters/eikthynir/dick.svg"
  33837. }
  33838. },
  33839. },
  33840. [
  33841. {
  33842. name: "Normal",
  33843. height: math.unit(8, "feet"),
  33844. default: true
  33845. },
  33846. ]
  33847. ))
  33848. characterMakers.push(() => makeCharacter(
  33849. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33850. {
  33851. front: {
  33852. height: math.unit(99, "meters"),
  33853. weight: math.unit(13000, "tons"),
  33854. name: "Front",
  33855. image: {
  33856. source: "./media/characters/zlmos/front.svg",
  33857. extra: 2202/1992,
  33858. bottom: 315/2517
  33859. }
  33860. },
  33861. },
  33862. [
  33863. {
  33864. name: "Macro",
  33865. height: math.unit(99, "meters"),
  33866. default: true
  33867. },
  33868. ]
  33869. ))
  33870. characterMakers.push(() => makeCharacter(
  33871. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33872. {
  33873. front: {
  33874. height: math.unit(6 + 5/12, "feet"),
  33875. name: "Front",
  33876. image: {
  33877. source: "./media/characters/purri/front.svg",
  33878. extra: 1698/1610,
  33879. bottom: 32/1730
  33880. }
  33881. },
  33882. frontAlt: {
  33883. height: math.unit(6 + 5/12, "feet"),
  33884. name: "Front (Alt)",
  33885. image: {
  33886. source: "./media/characters/purri/front-alt.svg",
  33887. extra: 450/420,
  33888. bottom: 26/476
  33889. }
  33890. },
  33891. boots: {
  33892. height: math.unit(5.5, "feet"),
  33893. name: "Boots",
  33894. image: {
  33895. source: "./media/characters/purri/boots.svg",
  33896. extra: 905/853,
  33897. bottom: 18/923
  33898. }
  33899. },
  33900. lying: {
  33901. height: math.unit(2, "feet"),
  33902. name: "Lying",
  33903. image: {
  33904. source: "./media/characters/purri/lying.svg",
  33905. extra: 940/843,
  33906. bottom: 146/1086
  33907. }
  33908. },
  33909. devious: {
  33910. height: math.unit(1.77, "feet"),
  33911. name: "Devious",
  33912. image: {
  33913. source: "./media/characters/purri/devious.svg",
  33914. extra: 1440/1155,
  33915. bottom: 147/1587
  33916. }
  33917. },
  33918. bean: {
  33919. height: math.unit(1.94, "feet"),
  33920. name: "Bean",
  33921. image: {
  33922. source: "./media/characters/purri/bean.svg"
  33923. }
  33924. },
  33925. },
  33926. [
  33927. {
  33928. name: "Micro",
  33929. height: math.unit(1, "mm")
  33930. },
  33931. {
  33932. name: "Normal",
  33933. height: math.unit(6 + 5/12, "feet"),
  33934. default: true
  33935. },
  33936. {
  33937. name: "Macro :3c",
  33938. height: math.unit(2, "miles")
  33939. },
  33940. ]
  33941. ))
  33942. characterMakers.push(() => makeCharacter(
  33943. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33944. {
  33945. front: {
  33946. height: math.unit(6 + 2/12, "feet"),
  33947. weight: math.unit(250, "lb"),
  33948. name: "Front",
  33949. image: {
  33950. source: "./media/characters/moonlight/front.svg",
  33951. extra: 1044/908,
  33952. bottom: 56/1100
  33953. }
  33954. },
  33955. feral: {
  33956. height: math.unit(3 + 1/12, "feet"),
  33957. weight: math.unit(50, "kg"),
  33958. name: "Feral",
  33959. image: {
  33960. source: "./media/characters/moonlight/feral.svg",
  33961. extra: 3705/2791,
  33962. bottom: 145/3850
  33963. }
  33964. },
  33965. paw: {
  33966. height: math.unit(1, "feet"),
  33967. name: "Paw",
  33968. image: {
  33969. source: "./media/characters/moonlight/paw.svg"
  33970. }
  33971. },
  33972. paws: {
  33973. height: math.unit(0.98, "feet"),
  33974. name: "Paws",
  33975. image: {
  33976. source: "./media/characters/moonlight/paws.svg",
  33977. extra: 939/939,
  33978. bottom: 50/989
  33979. }
  33980. },
  33981. mouth: {
  33982. height: math.unit(0.48, "feet"),
  33983. name: "Mouth",
  33984. image: {
  33985. source: "./media/characters/moonlight/mouth.svg"
  33986. }
  33987. },
  33988. dick: {
  33989. height: math.unit(1.46, "feet"),
  33990. name: "Dick",
  33991. image: {
  33992. source: "./media/characters/moonlight/dick.svg"
  33993. }
  33994. },
  33995. },
  33996. [
  33997. {
  33998. name: "Normal",
  33999. height: math.unit(6 + 2/12, "feet"),
  34000. default: true
  34001. },
  34002. {
  34003. name: "Macro",
  34004. height: math.unit(300, "feet")
  34005. },
  34006. {
  34007. name: "Macro+",
  34008. height: math.unit(1, "mile")
  34009. },
  34010. {
  34011. name: "Mt. Moon",
  34012. height: math.unit(5, "miles")
  34013. },
  34014. {
  34015. name: "Megamacro",
  34016. height: math.unit(15, "miles")
  34017. },
  34018. ]
  34019. ))
  34020. characterMakers.push(() => makeCharacter(
  34021. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34022. {
  34023. back: {
  34024. height: math.unit(6, "feet"),
  34025. weight: math.unit(150, "lb"),
  34026. name: "Back",
  34027. image: {
  34028. source: "./media/characters/sylen/back.svg",
  34029. extra: 1335/1273,
  34030. bottom: 107/1442
  34031. }
  34032. },
  34033. },
  34034. [
  34035. {
  34036. name: "Normal",
  34037. height: math.unit(5 + 5/12, "feet")
  34038. },
  34039. {
  34040. name: "Megamacro",
  34041. height: math.unit(3, "miles"),
  34042. default: true
  34043. },
  34044. ]
  34045. ))
  34046. characterMakers.push(() => makeCharacter(
  34047. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34048. {
  34049. front: {
  34050. height: math.unit(6, "feet"),
  34051. weight: math.unit(190, "lb"),
  34052. name: "Front",
  34053. image: {
  34054. source: "./media/characters/huttser/front.svg",
  34055. extra: 1152/1058,
  34056. bottom: 23/1175
  34057. }
  34058. },
  34059. side: {
  34060. height: math.unit(6, "feet"),
  34061. weight: math.unit(190, "lb"),
  34062. name: "Side",
  34063. image: {
  34064. source: "./media/characters/huttser/side.svg",
  34065. extra: 1174/1065,
  34066. bottom: 18/1192
  34067. }
  34068. },
  34069. back: {
  34070. height: math.unit(6, "feet"),
  34071. weight: math.unit(190, "lb"),
  34072. name: "Back",
  34073. image: {
  34074. source: "./media/characters/huttser/back.svg",
  34075. extra: 1158/1056,
  34076. bottom: 12/1170
  34077. }
  34078. },
  34079. },
  34080. [
  34081. ]
  34082. ))
  34083. characterMakers.push(() => makeCharacter(
  34084. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34085. {
  34086. side: {
  34087. height: math.unit(12 + 9/12, "feet"),
  34088. weight: math.unit(15000, "lb"),
  34089. name: "Side",
  34090. image: {
  34091. source: "./media/characters/faan/side.svg",
  34092. extra: 2747/2697,
  34093. bottom: 0/2747
  34094. }
  34095. },
  34096. front: {
  34097. height: math.unit(12 + 9/12, "feet"),
  34098. weight: math.unit(15000, "lb"),
  34099. name: "Front",
  34100. image: {
  34101. source: "./media/characters/faan/front.svg",
  34102. extra: 607/571,
  34103. bottom: 24/631
  34104. }
  34105. },
  34106. head: {
  34107. height: math.unit(2.85, "feet"),
  34108. name: "Head",
  34109. image: {
  34110. source: "./media/characters/faan/head.svg"
  34111. }
  34112. },
  34113. headAlt: {
  34114. height: math.unit(3.13, "feet"),
  34115. name: "Head-alt",
  34116. image: {
  34117. source: "./media/characters/faan/head-alt.svg"
  34118. }
  34119. },
  34120. },
  34121. [
  34122. {
  34123. name: "Normal",
  34124. height: math.unit(12 + 9/12, "feet"),
  34125. default: true
  34126. },
  34127. ]
  34128. ))
  34129. characterMakers.push(() => makeCharacter(
  34130. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34131. {
  34132. front: {
  34133. height: math.unit(6, "feet"),
  34134. weight: math.unit(300, "lb"),
  34135. name: "Front",
  34136. image: {
  34137. source: "./media/characters/tanio/front.svg",
  34138. extra: 711/673,
  34139. bottom: 25/736
  34140. }
  34141. },
  34142. },
  34143. [
  34144. {
  34145. name: "Normal",
  34146. height: math.unit(6, "feet"),
  34147. default: true
  34148. },
  34149. ]
  34150. ))
  34151. characterMakers.push(() => makeCharacter(
  34152. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34153. {
  34154. front: {
  34155. height: math.unit(3, "inches"),
  34156. name: "Front",
  34157. image: {
  34158. source: "./media/characters/noboru/front.svg",
  34159. extra: 1039/932,
  34160. bottom: 18/1057
  34161. }
  34162. },
  34163. },
  34164. [
  34165. {
  34166. name: "Micro",
  34167. height: math.unit(3, "inches"),
  34168. default: true
  34169. },
  34170. ]
  34171. ))
  34172. characterMakers.push(() => makeCharacter(
  34173. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34174. {
  34175. front: {
  34176. height: math.unit(1.85, "meters"),
  34177. weight: math.unit(80, "kg"),
  34178. name: "Front",
  34179. image: {
  34180. source: "./media/characters/daniel-barrett/front.svg",
  34181. extra: 355/337,
  34182. bottom: 9/364
  34183. }
  34184. },
  34185. },
  34186. [
  34187. {
  34188. name: "Pico",
  34189. height: math.unit(0.0433, "mm")
  34190. },
  34191. {
  34192. name: "Nano",
  34193. height: math.unit(1.5, "mm")
  34194. },
  34195. {
  34196. name: "Micro",
  34197. height: math.unit(5.3, "cm"),
  34198. default: true
  34199. },
  34200. {
  34201. name: "Normal",
  34202. height: math.unit(1.85, "meters")
  34203. },
  34204. {
  34205. name: "Macro",
  34206. height: math.unit(64.7, "meters")
  34207. },
  34208. {
  34209. name: "Megamacro",
  34210. height: math.unit(2.26, "km")
  34211. },
  34212. {
  34213. name: "Gigamacro",
  34214. height: math.unit(79, "km")
  34215. },
  34216. {
  34217. name: "Teramacro",
  34218. height: math.unit(2765, "km")
  34219. },
  34220. {
  34221. name: "Petamacro",
  34222. height: math.unit(96678, "km")
  34223. },
  34224. ]
  34225. ))
  34226. characterMakers.push(() => makeCharacter(
  34227. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34228. {
  34229. front: {
  34230. height: math.unit(30, "meters"),
  34231. weight: math.unit(400, "tons"),
  34232. name: "Front",
  34233. image: {
  34234. source: "./media/characters/zeel/front.svg",
  34235. extra: 2599/2599,
  34236. bottom: 226/2825
  34237. }
  34238. },
  34239. },
  34240. [
  34241. {
  34242. name: "Macro",
  34243. height: math.unit(30, "meters"),
  34244. default: true
  34245. },
  34246. ]
  34247. ))
  34248. characterMakers.push(() => makeCharacter(
  34249. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34250. {
  34251. front: {
  34252. height: math.unit(6 + 7/12, "feet"),
  34253. weight: math.unit(210, "lb"),
  34254. name: "Front",
  34255. image: {
  34256. source: "./media/characters/tarn/front.svg",
  34257. extra: 3517/3220,
  34258. bottom: 91/3608
  34259. }
  34260. },
  34261. back: {
  34262. height: math.unit(6 + 7/12, "feet"),
  34263. weight: math.unit(210, "lb"),
  34264. name: "Back",
  34265. image: {
  34266. source: "./media/characters/tarn/back.svg",
  34267. extra: 3566/3241,
  34268. bottom: 34/3600
  34269. }
  34270. },
  34271. dick: {
  34272. height: math.unit(1.65, "feet"),
  34273. name: "Dick",
  34274. image: {
  34275. source: "./media/characters/tarn/dick.svg"
  34276. }
  34277. },
  34278. paw: {
  34279. height: math.unit(1.80, "feet"),
  34280. name: "Paw",
  34281. image: {
  34282. source: "./media/characters/tarn/paw.svg"
  34283. }
  34284. },
  34285. tongue: {
  34286. height: math.unit(0.97, "feet"),
  34287. name: "Tongue",
  34288. image: {
  34289. source: "./media/characters/tarn/tongue.svg"
  34290. }
  34291. },
  34292. },
  34293. [
  34294. {
  34295. name: "Micro",
  34296. height: math.unit(4, "inches")
  34297. },
  34298. {
  34299. name: "Normal",
  34300. height: math.unit(6 + 7/12, "feet"),
  34301. default: true
  34302. },
  34303. {
  34304. name: "Macro",
  34305. height: math.unit(300, "feet")
  34306. },
  34307. ]
  34308. ))
  34309. characterMakers.push(() => makeCharacter(
  34310. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34311. {
  34312. front: {
  34313. height: math.unit(5 + 7/12, "feet"),
  34314. weight: math.unit(80, "kg"),
  34315. name: "Front",
  34316. image: {
  34317. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34318. extra: 3023/2865,
  34319. bottom: 33/3056
  34320. }
  34321. },
  34322. back: {
  34323. height: math.unit(5 + 7/12, "feet"),
  34324. weight: math.unit(80, "kg"),
  34325. name: "Back",
  34326. image: {
  34327. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34328. extra: 3020/2886,
  34329. bottom: 30/3050
  34330. }
  34331. },
  34332. dick: {
  34333. height: math.unit(0.98, "feet"),
  34334. name: "Dick",
  34335. image: {
  34336. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34337. }
  34338. },
  34339. anatomy: {
  34340. height: math.unit(2.86, "feet"),
  34341. name: "Anatomy",
  34342. image: {
  34343. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34344. }
  34345. },
  34346. },
  34347. [
  34348. {
  34349. name: "Really Small",
  34350. height: math.unit(2, "inches")
  34351. },
  34352. {
  34353. name: "Micro",
  34354. height: math.unit(5.583, "inches")
  34355. },
  34356. {
  34357. name: "Normal",
  34358. height: math.unit(5 + 7/12, "feet"),
  34359. default: true
  34360. },
  34361. {
  34362. name: "Macro",
  34363. height: math.unit(67, "feet")
  34364. },
  34365. {
  34366. name: "Megamacro",
  34367. height: math.unit(134, "feet")
  34368. },
  34369. ]
  34370. ))
  34371. characterMakers.push(() => makeCharacter(
  34372. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34373. {
  34374. front: {
  34375. height: math.unit(9, "feet"),
  34376. weight: math.unit(120, "lb"),
  34377. name: "Front",
  34378. image: {
  34379. source: "./media/characters/sally/front.svg",
  34380. extra: 1506/1349,
  34381. bottom: 66/1572
  34382. }
  34383. },
  34384. },
  34385. [
  34386. {
  34387. name: "Normal",
  34388. height: math.unit(9, "feet"),
  34389. default: true
  34390. },
  34391. ]
  34392. ))
  34393. characterMakers.push(() => makeCharacter(
  34394. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34395. {
  34396. front: {
  34397. height: math.unit(8, "feet"),
  34398. weight: math.unit(900, "lb"),
  34399. name: "Front",
  34400. image: {
  34401. source: "./media/characters/owen/front.svg",
  34402. extra: 1761/1657,
  34403. bottom: 74/1835
  34404. }
  34405. },
  34406. side: {
  34407. height: math.unit(8, "feet"),
  34408. weight: math.unit(900, "lb"),
  34409. name: "Side",
  34410. image: {
  34411. source: "./media/characters/owen/side.svg",
  34412. extra: 1797/1734,
  34413. bottom: 30/1827
  34414. }
  34415. },
  34416. back: {
  34417. height: math.unit(8, "feet"),
  34418. weight: math.unit(900, "lb"),
  34419. name: "Back",
  34420. image: {
  34421. source: "./media/characters/owen/back.svg",
  34422. extra: 1796/1706,
  34423. bottom: 59/1855
  34424. }
  34425. },
  34426. maw: {
  34427. height: math.unit(1.76, "feet"),
  34428. name: "Maw",
  34429. image: {
  34430. source: "./media/characters/owen/maw.svg"
  34431. }
  34432. },
  34433. },
  34434. [
  34435. {
  34436. name: "Normal",
  34437. height: math.unit(8, "feet"),
  34438. default: true
  34439. },
  34440. ]
  34441. ))
  34442. characterMakers.push(() => makeCharacter(
  34443. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34444. {
  34445. front: {
  34446. height: math.unit(4, "feet"),
  34447. weight: math.unit(400, "lb"),
  34448. name: "Front",
  34449. image: {
  34450. source: "./media/characters/ryth/front.svg",
  34451. extra: 1920/1748,
  34452. bottom: 42/1962
  34453. }
  34454. },
  34455. back: {
  34456. height: math.unit(4, "feet"),
  34457. weight: math.unit(400, "lb"),
  34458. name: "Back",
  34459. image: {
  34460. source: "./media/characters/ryth/back.svg",
  34461. extra: 1897/1690,
  34462. bottom: 89/1986
  34463. }
  34464. },
  34465. mouth: {
  34466. height: math.unit(1.39, "feet"),
  34467. name: "Mouth",
  34468. image: {
  34469. source: "./media/characters/ryth/mouth.svg"
  34470. }
  34471. },
  34472. tailmaw: {
  34473. height: math.unit(1.23, "feet"),
  34474. name: "Tailmaw",
  34475. image: {
  34476. source: "./media/characters/ryth/tailmaw.svg"
  34477. }
  34478. },
  34479. goia: {
  34480. height: math.unit(4, "meters"),
  34481. weight: math.unit(10800, "lb"),
  34482. name: "Goia",
  34483. image: {
  34484. source: "./media/characters/ryth/goia.svg",
  34485. extra: 745/640,
  34486. bottom: 107/852
  34487. }
  34488. },
  34489. goiaFront: {
  34490. height: math.unit(4, "meters"),
  34491. weight: math.unit(10800, "lb"),
  34492. name: "Goia (Front)",
  34493. image: {
  34494. source: "./media/characters/ryth/goia-front.svg",
  34495. extra: 750/586,
  34496. bottom: 114/864
  34497. }
  34498. },
  34499. goiaMaw: {
  34500. height: math.unit(5.55, "feet"),
  34501. name: "Goia Maw",
  34502. image: {
  34503. source: "./media/characters/ryth/goia-maw.svg"
  34504. }
  34505. },
  34506. goiaForepaw: {
  34507. height: math.unit(3.5, "feet"),
  34508. name: "Goia Forepaw",
  34509. image: {
  34510. source: "./media/characters/ryth/goia-forepaw.svg"
  34511. }
  34512. },
  34513. goiaHindpaw: {
  34514. height: math.unit(5.55, "feet"),
  34515. name: "Goia Hindpaw",
  34516. image: {
  34517. source: "./media/characters/ryth/goia-hindpaw.svg"
  34518. }
  34519. },
  34520. },
  34521. [
  34522. {
  34523. name: "Normal",
  34524. height: math.unit(4, "feet"),
  34525. default: true
  34526. },
  34527. ]
  34528. ))
  34529. characterMakers.push(() => makeCharacter(
  34530. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34531. {
  34532. front: {
  34533. height: math.unit(7, "feet"),
  34534. weight: math.unit(180, "lb"),
  34535. name: "Front",
  34536. image: {
  34537. source: "./media/characters/necrolance/front.svg",
  34538. extra: 1062/947,
  34539. bottom: 41/1103
  34540. }
  34541. },
  34542. back: {
  34543. height: math.unit(7, "feet"),
  34544. weight: math.unit(180, "lb"),
  34545. name: "Back",
  34546. image: {
  34547. source: "./media/characters/necrolance/back.svg",
  34548. extra: 1045/984,
  34549. bottom: 14/1059
  34550. }
  34551. },
  34552. wing: {
  34553. height: math.unit(2.67, "feet"),
  34554. name: "Wing",
  34555. image: {
  34556. source: "./media/characters/necrolance/wing.svg"
  34557. }
  34558. },
  34559. },
  34560. [
  34561. {
  34562. name: "Normal",
  34563. height: math.unit(7, "feet"),
  34564. default: true
  34565. },
  34566. ]
  34567. ))
  34568. characterMakers.push(() => makeCharacter(
  34569. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34570. {
  34571. front: {
  34572. height: math.unit(76, "meters"),
  34573. weight: math.unit(30000, "tons"),
  34574. name: "Front",
  34575. image: {
  34576. source: "./media/characters/tyler/front.svg",
  34577. extra: 1640/1640,
  34578. bottom: 114/1754
  34579. }
  34580. },
  34581. },
  34582. [
  34583. {
  34584. name: "Macro",
  34585. height: math.unit(76, "meters"),
  34586. default: true
  34587. },
  34588. ]
  34589. ))
  34590. characterMakers.push(() => makeCharacter(
  34591. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34592. {
  34593. front: {
  34594. height: math.unit(4 + 11/12, "feet"),
  34595. weight: math.unit(132, "lb"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/icey/front.svg",
  34599. extra: 2750/2550,
  34600. bottom: 33/2783
  34601. }
  34602. },
  34603. back: {
  34604. height: math.unit(4 + 11/12, "feet"),
  34605. weight: math.unit(132, "lb"),
  34606. name: "Back",
  34607. image: {
  34608. source: "./media/characters/icey/back.svg",
  34609. extra: 2624/2481,
  34610. bottom: 35/2659
  34611. }
  34612. },
  34613. },
  34614. [
  34615. {
  34616. name: "Normal",
  34617. height: math.unit(4 + 11/12, "feet"),
  34618. default: true
  34619. },
  34620. ]
  34621. ))
  34622. characterMakers.push(() => makeCharacter(
  34623. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34624. {
  34625. front: {
  34626. height: math.unit(100, "feet"),
  34627. weight: math.unit(0, "lb"),
  34628. name: "Front",
  34629. image: {
  34630. source: "./media/characters/smile/front.svg",
  34631. extra: 2983/2912,
  34632. bottom: 162/3145
  34633. }
  34634. },
  34635. back: {
  34636. height: math.unit(100, "feet"),
  34637. weight: math.unit(0, "lb"),
  34638. name: "Back",
  34639. image: {
  34640. source: "./media/characters/smile/back.svg",
  34641. extra: 3143/3031,
  34642. bottom: 91/3234
  34643. }
  34644. },
  34645. head: {
  34646. height: math.unit(26.3, "feet"),
  34647. weight: math.unit(0, "lb"),
  34648. name: "Head",
  34649. image: {
  34650. source: "./media/characters/smile/head.svg"
  34651. }
  34652. },
  34653. collar: {
  34654. height: math.unit(5.3, "feet"),
  34655. weight: math.unit(0, "lb"),
  34656. name: "Collar",
  34657. image: {
  34658. source: "./media/characters/smile/collar.svg"
  34659. }
  34660. },
  34661. },
  34662. [
  34663. {
  34664. name: "Macro",
  34665. height: math.unit(100, "feet"),
  34666. default: true
  34667. },
  34668. ]
  34669. ))
  34670. characterMakers.push(() => makeCharacter(
  34671. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34672. {
  34673. dragon: {
  34674. height: math.unit(26, "feet"),
  34675. weight: math.unit(36, "tons"),
  34676. name: "Dragon",
  34677. image: {
  34678. source: "./media/characters/arimphae/dragon.svg",
  34679. extra: 1574/983,
  34680. bottom: 357/1931
  34681. }
  34682. },
  34683. drake: {
  34684. height: math.unit(9, "feet"),
  34685. weight: math.unit(1.5, "tons"),
  34686. name: "Drake",
  34687. image: {
  34688. source: "./media/characters/arimphae/drake.svg",
  34689. extra: 1120/925,
  34690. bottom: 435/1555
  34691. }
  34692. },
  34693. },
  34694. [
  34695. {
  34696. name: "Small",
  34697. height: math.unit(26*5/9, "feet")
  34698. },
  34699. {
  34700. name: "Normal",
  34701. height: math.unit(26, "feet"),
  34702. default: true
  34703. },
  34704. ]
  34705. ))
  34706. characterMakers.push(() => makeCharacter(
  34707. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34708. {
  34709. front: {
  34710. height: math.unit(8 + 9/12, "feet"),
  34711. name: "Front",
  34712. image: {
  34713. source: "./media/characters/xander/front.svg",
  34714. extra: 1237/974,
  34715. bottom: 94/1331
  34716. }
  34717. },
  34718. },
  34719. [
  34720. {
  34721. name: "Normal",
  34722. height: math.unit(8 + 9/12, "feet"),
  34723. default: true
  34724. },
  34725. {
  34726. name: "Gaze Grabber",
  34727. height: math.unit(13 + 8/12, "feet")
  34728. },
  34729. {
  34730. name: "Jaw Dropper",
  34731. height: math.unit(27, "feet")
  34732. },
  34733. {
  34734. name: "Show Stopper",
  34735. height: math.unit(136, "feet")
  34736. },
  34737. {
  34738. name: "Superstar",
  34739. height: math.unit(1.9e6, "miles")
  34740. },
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34745. {
  34746. side: {
  34747. height: math.unit(2100, "feet"),
  34748. name: "Side",
  34749. image: {
  34750. source: "./media/characters/osiris/side.svg",
  34751. extra: 1105/939,
  34752. bottom: 167/1272
  34753. }
  34754. },
  34755. },
  34756. [
  34757. {
  34758. name: "Macro",
  34759. height: math.unit(2100, "feet"),
  34760. default: true
  34761. },
  34762. ]
  34763. ))
  34764. characterMakers.push(() => makeCharacter(
  34765. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34766. {
  34767. front: {
  34768. height: math.unit(6 + 8/12, "feet"),
  34769. weight: math.unit(225, "lb"),
  34770. name: "Front",
  34771. image: {
  34772. source: "./media/characters/rhys-londe/front.svg",
  34773. extra: 2258/2141,
  34774. bottom: 188/2446
  34775. }
  34776. },
  34777. back: {
  34778. height: math.unit(6 + 8/12, "feet"),
  34779. weight: math.unit(225, "lb"),
  34780. name: "Back",
  34781. image: {
  34782. source: "./media/characters/rhys-londe/back.svg",
  34783. extra: 2237/2137,
  34784. bottom: 63/2300
  34785. }
  34786. },
  34787. frontNsfw: {
  34788. height: math.unit(6 + 8/12, "feet"),
  34789. weight: math.unit(225, "lb"),
  34790. name: "Front (NSFW)",
  34791. image: {
  34792. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34793. extra: 2258/2141,
  34794. bottom: 188/2446
  34795. }
  34796. },
  34797. backNsfw: {
  34798. height: math.unit(6 + 8/12, "feet"),
  34799. weight: math.unit(225, "lb"),
  34800. name: "Back (NSFW)",
  34801. image: {
  34802. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34803. extra: 2237/2137,
  34804. bottom: 63/2300
  34805. }
  34806. },
  34807. dick: {
  34808. height: math.unit(30, "inches"),
  34809. name: "Dick",
  34810. image: {
  34811. source: "./media/characters/rhys-londe/dick.svg"
  34812. }
  34813. },
  34814. maw: {
  34815. height: math.unit(1.6, "feet"),
  34816. name: "Maw",
  34817. image: {
  34818. source: "./media/characters/rhys-londe/maw.svg"
  34819. }
  34820. },
  34821. },
  34822. [
  34823. {
  34824. name: "Normal",
  34825. height: math.unit(6 + 8/12, "feet"),
  34826. default: true
  34827. },
  34828. ]
  34829. ))
  34830. characterMakers.push(() => makeCharacter(
  34831. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34832. {
  34833. front: {
  34834. height: math.unit(3 + 10/12, "feet"),
  34835. weight: math.unit(90, "lb"),
  34836. name: "Front",
  34837. image: {
  34838. source: "./media/characters/taivas-ensim/front.svg",
  34839. extra: 1327/1216,
  34840. bottom: 96/1423
  34841. }
  34842. },
  34843. back: {
  34844. height: math.unit(3 + 10/12, "feet"),
  34845. weight: math.unit(90, "lb"),
  34846. name: "Back",
  34847. image: {
  34848. source: "./media/characters/taivas-ensim/back.svg",
  34849. extra: 1355/1247,
  34850. bottom: 11/1366
  34851. }
  34852. },
  34853. frontNsfw: {
  34854. height: math.unit(3 + 10/12, "feet"),
  34855. weight: math.unit(90, "lb"),
  34856. name: "Front (NSFW)",
  34857. image: {
  34858. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34859. extra: 1327/1216,
  34860. bottom: 96/1423
  34861. }
  34862. },
  34863. backNsfw: {
  34864. height: math.unit(3 + 10/12, "feet"),
  34865. weight: math.unit(90, "lb"),
  34866. name: "Back (NSFW)",
  34867. image: {
  34868. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34869. extra: 1355/1247,
  34870. bottom: 11/1366
  34871. }
  34872. },
  34873. },
  34874. [
  34875. {
  34876. name: "Normal",
  34877. height: math.unit(3 + 10/12, "feet"),
  34878. default: true
  34879. },
  34880. ]
  34881. ))
  34882. characterMakers.push(() => makeCharacter(
  34883. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34884. {
  34885. front: {
  34886. height: math.unit(9 + 6/12, "feet"),
  34887. weight: math.unit(940, "lb"),
  34888. name: "Front",
  34889. image: {
  34890. source: "./media/characters/byliss/front.svg",
  34891. extra: 1327/1290,
  34892. bottom: 82/1409
  34893. }
  34894. },
  34895. back: {
  34896. height: math.unit(9 + 6/12, "feet"),
  34897. weight: math.unit(940, "lb"),
  34898. name: "Back",
  34899. image: {
  34900. source: "./media/characters/byliss/back.svg",
  34901. extra: 1376/1349,
  34902. bottom: 9/1385
  34903. }
  34904. },
  34905. frontNsfw: {
  34906. height: math.unit(9 + 6/12, "feet"),
  34907. weight: math.unit(940, "lb"),
  34908. name: "Front (NSFW)",
  34909. image: {
  34910. source: "./media/characters/byliss/front-nsfw.svg",
  34911. extra: 1327/1290,
  34912. bottom: 82/1409
  34913. }
  34914. },
  34915. backNsfw: {
  34916. height: math.unit(9 + 6/12, "feet"),
  34917. weight: math.unit(940, "lb"),
  34918. name: "Back (NSFW)",
  34919. image: {
  34920. source: "./media/characters/byliss/back-nsfw.svg",
  34921. extra: 1376/1349,
  34922. bottom: 9/1385
  34923. }
  34924. },
  34925. },
  34926. [
  34927. {
  34928. name: "Normal",
  34929. height: math.unit(9 + 6/12, "feet"),
  34930. default: true
  34931. },
  34932. ]
  34933. ))
  34934. characterMakers.push(() => makeCharacter(
  34935. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34936. {
  34937. front: {
  34938. height: math.unit(5 + 2/12, "feet"),
  34939. weight: math.unit(200, "lb"),
  34940. name: "Front",
  34941. image: {
  34942. source: "./media/characters/noraly/front.svg",
  34943. extra: 4985/4773,
  34944. bottom: 150/5135
  34945. }
  34946. },
  34947. full: {
  34948. height: math.unit(5 + 2/12, "feet"),
  34949. weight: math.unit(164, "lb"),
  34950. name: "Full",
  34951. image: {
  34952. source: "./media/characters/noraly/full.svg",
  34953. extra: 1114/1059,
  34954. bottom: 35/1149
  34955. }
  34956. },
  34957. fuller: {
  34958. height: math.unit(5 + 2/12, "feet"),
  34959. weight: math.unit(230, "lb"),
  34960. name: "Fuller",
  34961. image: {
  34962. source: "./media/characters/noraly/fuller.svg",
  34963. extra: 1114/1059,
  34964. bottom: 35/1149
  34965. }
  34966. },
  34967. fullest: {
  34968. height: math.unit(5 + 2/12, "feet"),
  34969. weight: math.unit(300, "lb"),
  34970. name: "Fullest",
  34971. image: {
  34972. source: "./media/characters/noraly/fullest.svg",
  34973. extra: 1114/1059,
  34974. bottom: 35/1149
  34975. }
  34976. },
  34977. },
  34978. [
  34979. {
  34980. name: "Normal",
  34981. height: math.unit(5 + 2/12, "feet"),
  34982. default: true
  34983. },
  34984. ]
  34985. ))
  34986. characterMakers.push(() => makeCharacter(
  34987. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34988. {
  34989. front: {
  34990. height: math.unit(5 + 2/12, "feet"),
  34991. weight: math.unit(210, "lb"),
  34992. name: "Front",
  34993. image: {
  34994. source: "./media/characters/pera/front.svg",
  34995. extra: 1560/1531,
  34996. bottom: 165/1725
  34997. }
  34998. },
  34999. back: {
  35000. height: math.unit(5 + 2/12, "feet"),
  35001. weight: math.unit(210, "lb"),
  35002. name: "Back",
  35003. image: {
  35004. source: "./media/characters/pera/back.svg",
  35005. extra: 1523/1493,
  35006. bottom: 152/1675
  35007. }
  35008. },
  35009. dick: {
  35010. height: math.unit(2.4, "feet"),
  35011. name: "Dick",
  35012. image: {
  35013. source: "./media/characters/pera/dick.svg"
  35014. }
  35015. },
  35016. },
  35017. [
  35018. {
  35019. name: "Normal",
  35020. height: math.unit(5 + 2/12, "feet"),
  35021. default: true
  35022. },
  35023. ]
  35024. ))
  35025. characterMakers.push(() => makeCharacter(
  35026. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35027. {
  35028. front: {
  35029. height: math.unit(12, "feet"),
  35030. weight: math.unit(3200, "lb"),
  35031. name: "Front",
  35032. image: {
  35033. source: "./media/characters/julian/front.svg",
  35034. extra: 2962/2701,
  35035. bottom: 184/3146
  35036. }
  35037. },
  35038. maw: {
  35039. height: math.unit(5.35, "feet"),
  35040. name: "Maw",
  35041. image: {
  35042. source: "./media/characters/julian/maw.svg"
  35043. }
  35044. },
  35045. paw: {
  35046. height: math.unit(3.07, "feet"),
  35047. name: "Paw",
  35048. image: {
  35049. source: "./media/characters/julian/paw.svg"
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Default",
  35056. height: math.unit(12, "feet"),
  35057. default: true
  35058. },
  35059. {
  35060. name: "Big",
  35061. height: math.unit(50, "feet")
  35062. },
  35063. {
  35064. name: "Really Big",
  35065. height: math.unit(1, "mile")
  35066. },
  35067. {
  35068. name: "Extremely Big",
  35069. height: math.unit(100, "miles")
  35070. },
  35071. {
  35072. name: "Planet Hugger",
  35073. height: math.unit(200, "megameters")
  35074. },
  35075. {
  35076. name: "Unreasonably Big",
  35077. height: math.unit(1e300, "meters")
  35078. },
  35079. ]
  35080. ))
  35081. characterMakers.push(() => makeCharacter(
  35082. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35083. {
  35084. solgooleo: {
  35085. height: math.unit(4, "meters"),
  35086. weight: math.unit(6000*1.5, "kg"),
  35087. volume: math.unit(6000, "liters"),
  35088. name: "Solgooleo",
  35089. image: {
  35090. source: "./media/characters/pi/solgooleo.svg",
  35091. extra: 388/331,
  35092. bottom: 29/417
  35093. }
  35094. },
  35095. },
  35096. [
  35097. {
  35098. name: "Normal",
  35099. height: math.unit(4, "meters"),
  35100. default: true
  35101. },
  35102. ]
  35103. ))
  35104. characterMakers.push(() => makeCharacter(
  35105. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35106. {
  35107. front: {
  35108. height: math.unit(8, "feet"),
  35109. weight: math.unit(4, "tons"),
  35110. name: "Front",
  35111. image: {
  35112. source: "./media/characters/shaun/front.svg",
  35113. extra: 503/495,
  35114. bottom: 20/523
  35115. }
  35116. },
  35117. back: {
  35118. height: math.unit(8, "feet"),
  35119. weight: math.unit(4, "tons"),
  35120. name: "Back",
  35121. image: {
  35122. source: "./media/characters/shaun/back.svg",
  35123. extra: 487/480,
  35124. bottom: 20/507
  35125. }
  35126. },
  35127. },
  35128. [
  35129. {
  35130. name: "Lorg",
  35131. height: math.unit(8, "feet"),
  35132. default: true
  35133. },
  35134. ]
  35135. ))
  35136. characterMakers.push(() => makeCharacter(
  35137. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35138. {
  35139. frontAnthro: {
  35140. height: math.unit(7, "feet"),
  35141. name: "Front",
  35142. image: {
  35143. source: "./media/characters/sini/front-anthro.svg",
  35144. extra: 726/678,
  35145. bottom: 35/761
  35146. },
  35147. form: "anthro",
  35148. default: true
  35149. },
  35150. backAnthro: {
  35151. height: math.unit(7, "feet"),
  35152. name: "Back",
  35153. image: {
  35154. source: "./media/characters/sini/back-anthro.svg",
  35155. extra: 743/701,
  35156. bottom: 12/755
  35157. },
  35158. form: "anthro",
  35159. },
  35160. frontAnthroNsfw: {
  35161. height: math.unit(7, "feet"),
  35162. name: "Front (NSFW)",
  35163. image: {
  35164. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35165. extra: 726/678,
  35166. bottom: 35/761
  35167. },
  35168. form: "anthro"
  35169. },
  35170. backAnthroNsfw: {
  35171. height: math.unit(7, "feet"),
  35172. name: "Back (NSFW)",
  35173. image: {
  35174. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35175. extra: 743/701,
  35176. bottom: 12/755
  35177. },
  35178. form: "anthro",
  35179. },
  35180. mawAnthro: {
  35181. height: math.unit(2.14, "feet"),
  35182. name: "Maw",
  35183. image: {
  35184. source: "./media/characters/sini/maw-anthro.svg"
  35185. },
  35186. form: "anthro"
  35187. },
  35188. dick: {
  35189. height: math.unit(1.45, "feet"),
  35190. name: "Dick",
  35191. image: {
  35192. source: "./media/characters/sini/dick-anthro.svg"
  35193. },
  35194. form: "anthro"
  35195. },
  35196. feral: {
  35197. height: math.unit(16, "feet"),
  35198. name: "Feral",
  35199. image: {
  35200. source: "./media/characters/sini/feral.svg",
  35201. extra: 814/605,
  35202. bottom: 11/825
  35203. },
  35204. form: "feral",
  35205. default: true
  35206. },
  35207. feralNsfw: {
  35208. height: math.unit(16, "feet"),
  35209. name: "Feral (NSFW)",
  35210. image: {
  35211. source: "./media/characters/sini/feral-nsfw.svg",
  35212. extra: 814/605,
  35213. bottom: 11/825
  35214. },
  35215. form: "feral"
  35216. },
  35217. mawFeral: {
  35218. height: math.unit(5.66, "feet"),
  35219. name: "Maw",
  35220. image: {
  35221. source: "./media/characters/sini/maw-feral.svg"
  35222. },
  35223. form: "feral",
  35224. },
  35225. pawFeral: {
  35226. height: math.unit(5.17, "feet"),
  35227. name: "Paw",
  35228. image: {
  35229. source: "./media/characters/sini/paw-feral.svg"
  35230. },
  35231. form: "feral",
  35232. },
  35233. rumpFeral: {
  35234. height: math.unit(13.11, "feet"),
  35235. name: "Rump",
  35236. image: {
  35237. source: "./media/characters/sini/rump-feral.svg"
  35238. },
  35239. form: "feral",
  35240. },
  35241. dickFeral: {
  35242. height: math.unit(1, "feet"),
  35243. name: "Dick",
  35244. image: {
  35245. source: "./media/characters/sini/dick-feral.svg"
  35246. },
  35247. form: "feral",
  35248. },
  35249. eyeFeral: {
  35250. height: math.unit(1.23, "feet"),
  35251. name: "Eye",
  35252. image: {
  35253. source: "./media/characters/sini/eye-feral.svg"
  35254. },
  35255. form: "feral",
  35256. },
  35257. },
  35258. [
  35259. {
  35260. name: "Normal",
  35261. height: math.unit(7, "feet"),
  35262. default: true,
  35263. form: "anthro"
  35264. },
  35265. {
  35266. name: "Normal",
  35267. height: math.unit(16, "feet"),
  35268. default: true,
  35269. form: "feral"
  35270. },
  35271. ],
  35272. {
  35273. "anthro": {
  35274. name: "Anthro",
  35275. default: true
  35276. },
  35277. "feral": {
  35278. name: "Feral",
  35279. }
  35280. }
  35281. ))
  35282. characterMakers.push(() => makeCharacter(
  35283. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35284. {
  35285. side: {
  35286. height: math.unit(47.2, "meters"),
  35287. weight: math.unit(10000, "tons"),
  35288. name: "Side",
  35289. image: {
  35290. source: "./media/characters/raylldo/side.svg",
  35291. extra: 2363/642,
  35292. bottom: 221/2584
  35293. }
  35294. },
  35295. top: {
  35296. height: math.unit(240, "meters"),
  35297. weight: math.unit(10000, "tons"),
  35298. name: "Top",
  35299. image: {
  35300. source: "./media/characters/raylldo/top.svg"
  35301. }
  35302. },
  35303. bottom: {
  35304. height: math.unit(240, "meters"),
  35305. weight: math.unit(10000, "tons"),
  35306. name: "Bottom",
  35307. image: {
  35308. source: "./media/characters/raylldo/bottom.svg"
  35309. }
  35310. },
  35311. head: {
  35312. height: math.unit(38.6, "meters"),
  35313. name: "Head",
  35314. image: {
  35315. source: "./media/characters/raylldo/head.svg",
  35316. extra: 1335/1112,
  35317. bottom: 0/1335
  35318. }
  35319. },
  35320. maw: {
  35321. height: math.unit(16.37, "meters"),
  35322. name: "Maw",
  35323. image: {
  35324. source: "./media/characters/raylldo/maw.svg",
  35325. extra: 883/660,
  35326. bottom: 0/883
  35327. },
  35328. extraAttributes: {
  35329. preyCapacity: {
  35330. name: "Capacity",
  35331. power: 3,
  35332. type: "volume",
  35333. base: math.unit(1000, "people")
  35334. },
  35335. tongueSize: {
  35336. name: "Tongue Size",
  35337. power: 2,
  35338. type: "area",
  35339. base: math.unit(21, "m^2")
  35340. }
  35341. }
  35342. },
  35343. forepaw: {
  35344. height: math.unit(18, "meters"),
  35345. name: "Forepaw",
  35346. image: {
  35347. source: "./media/characters/raylldo/forepaw.svg"
  35348. }
  35349. },
  35350. hindpaw: {
  35351. height: math.unit(23, "meters"),
  35352. name: "Hindpaw",
  35353. image: {
  35354. source: "./media/characters/raylldo/hindpaw.svg"
  35355. }
  35356. },
  35357. genitals: {
  35358. height: math.unit(42, "meters"),
  35359. name: "Genitals",
  35360. image: {
  35361. source: "./media/characters/raylldo/genitals.svg"
  35362. }
  35363. },
  35364. },
  35365. [
  35366. {
  35367. name: "Normal",
  35368. height: math.unit(47.2, "meters"),
  35369. default: true
  35370. },
  35371. ]
  35372. ))
  35373. characterMakers.push(() => makeCharacter(
  35374. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35375. {
  35376. anthroFront: {
  35377. height: math.unit(9, "feet"),
  35378. weight: math.unit(600, "lb"),
  35379. name: "Anthro (Front)",
  35380. image: {
  35381. source: "./media/characters/glint/anthro-front.svg",
  35382. extra: 1097/1018,
  35383. bottom: 28/1125
  35384. }
  35385. },
  35386. anthroBack: {
  35387. height: math.unit(9, "feet"),
  35388. weight: math.unit(600, "lb"),
  35389. name: "Anthro (Back)",
  35390. image: {
  35391. source: "./media/characters/glint/anthro-back.svg",
  35392. extra: 1154/997,
  35393. bottom: 36/1190
  35394. }
  35395. },
  35396. feral: {
  35397. height: math.unit(11, "feet"),
  35398. weight: math.unit(50000, "lb"),
  35399. name: "Feral",
  35400. image: {
  35401. source: "./media/characters/glint/feral.svg",
  35402. extra: 3035/1585,
  35403. bottom: 1169/4204
  35404. }
  35405. },
  35406. dickAnthro: {
  35407. height: math.unit(0.7, "meters"),
  35408. name: "Dick (Anthro)",
  35409. image: {
  35410. source: "./media/characters/glint/dick-anthro.svg"
  35411. }
  35412. },
  35413. dickFeral: {
  35414. height: math.unit(2.65, "meters"),
  35415. name: "Dick (Feral)",
  35416. image: {
  35417. source: "./media/characters/glint/dick-feral.svg"
  35418. }
  35419. },
  35420. slitHidden: {
  35421. height: math.unit(5.85, "meters"),
  35422. name: "Slit (Hidden)",
  35423. image: {
  35424. source: "./media/characters/glint/slit-hidden.svg"
  35425. }
  35426. },
  35427. slitErect: {
  35428. height: math.unit(5.85, "meters"),
  35429. name: "Slit (Erect)",
  35430. image: {
  35431. source: "./media/characters/glint/slit-erect.svg"
  35432. }
  35433. },
  35434. mawAnthro: {
  35435. height: math.unit(0.63, "meters"),
  35436. name: "Maw (Anthro)",
  35437. image: {
  35438. source: "./media/characters/glint/maw.svg"
  35439. }
  35440. },
  35441. mawFeral: {
  35442. height: math.unit(2.89, "meters"),
  35443. name: "Maw (Feral)",
  35444. image: {
  35445. source: "./media/characters/glint/maw.svg"
  35446. }
  35447. },
  35448. },
  35449. [
  35450. {
  35451. name: "Normal",
  35452. height: math.unit(9, "feet"),
  35453. default: true
  35454. },
  35455. ]
  35456. ))
  35457. characterMakers.push(() => makeCharacter(
  35458. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35459. {
  35460. side: {
  35461. height: math.unit(15, "feet"),
  35462. weight: math.unit(5000, "kg"),
  35463. name: "Side",
  35464. image: {
  35465. source: "./media/characters/kairne/side.svg",
  35466. extra: 979/811,
  35467. bottom: 13/992
  35468. }
  35469. },
  35470. front: {
  35471. height: math.unit(15, "feet"),
  35472. weight: math.unit(5000, "kg"),
  35473. name: "Front",
  35474. image: {
  35475. source: "./media/characters/kairne/front.svg",
  35476. extra: 908/814,
  35477. bottom: 26/934
  35478. }
  35479. },
  35480. sideNsfw: {
  35481. height: math.unit(15, "feet"),
  35482. weight: math.unit(5000, "kg"),
  35483. name: "Side (NSFW)",
  35484. image: {
  35485. source: "./media/characters/kairne/side-nsfw.svg",
  35486. extra: 979/811,
  35487. bottom: 13/992
  35488. }
  35489. },
  35490. frontNsfw: {
  35491. height: math.unit(15, "feet"),
  35492. weight: math.unit(5000, "kg"),
  35493. name: "Front (NSFW)",
  35494. image: {
  35495. source: "./media/characters/kairne/front-nsfw.svg",
  35496. extra: 908/814,
  35497. bottom: 26/934
  35498. }
  35499. },
  35500. dickCaged: {
  35501. height: math.unit(0.65, "meters"),
  35502. name: "Dick-caged",
  35503. image: {
  35504. source: "./media/characters/kairne/dick-caged.svg"
  35505. }
  35506. },
  35507. dick: {
  35508. height: math.unit(0.79, "meters"),
  35509. name: "Dick",
  35510. image: {
  35511. source: "./media/characters/kairne/dick.svg"
  35512. }
  35513. },
  35514. genitals: {
  35515. height: math.unit(1.29, "meters"),
  35516. name: "Genitals",
  35517. image: {
  35518. source: "./media/characters/kairne/genitals.svg"
  35519. }
  35520. },
  35521. maw: {
  35522. height: math.unit(1.73, "meters"),
  35523. name: "Maw",
  35524. image: {
  35525. source: "./media/characters/kairne/maw.svg"
  35526. }
  35527. },
  35528. },
  35529. [
  35530. {
  35531. name: "Normal",
  35532. height: math.unit(15, "feet"),
  35533. default: true
  35534. },
  35535. ]
  35536. ))
  35537. characterMakers.push(() => makeCharacter(
  35538. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35539. {
  35540. front: {
  35541. height: math.unit(5 + 8/12, "feet"),
  35542. weight: math.unit(139, "lb"),
  35543. name: "Front",
  35544. image: {
  35545. source: "./media/characters/biscuit-jackal/front.svg",
  35546. extra: 2106/1961,
  35547. bottom: 58/2164
  35548. }
  35549. },
  35550. back: {
  35551. height: math.unit(5 + 8/12, "feet"),
  35552. weight: math.unit(139, "lb"),
  35553. name: "Back",
  35554. image: {
  35555. source: "./media/characters/biscuit-jackal/back.svg",
  35556. extra: 2132/1976,
  35557. bottom: 57/2189
  35558. }
  35559. },
  35560. werejackal: {
  35561. height: math.unit(6 + 3/12, "feet"),
  35562. weight: math.unit(188, "lb"),
  35563. name: "Werejackal",
  35564. image: {
  35565. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35566. extra: 2373/2178,
  35567. bottom: 53/2426
  35568. }
  35569. },
  35570. },
  35571. [
  35572. {
  35573. name: "Normal",
  35574. height: math.unit(5 + 8/12, "feet"),
  35575. default: true
  35576. },
  35577. ]
  35578. ))
  35579. characterMakers.push(() => makeCharacter(
  35580. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35581. {
  35582. front: {
  35583. height: math.unit(140, "cm"),
  35584. weight: math.unit(45, "kg"),
  35585. name: "Front",
  35586. image: {
  35587. source: "./media/characters/tayra-white/front.svg",
  35588. extra: 2229/2192,
  35589. bottom: 75/2304
  35590. }
  35591. },
  35592. },
  35593. [
  35594. {
  35595. name: "Normal",
  35596. height: math.unit(140, "cm"),
  35597. default: true
  35598. },
  35599. ]
  35600. ))
  35601. characterMakers.push(() => makeCharacter(
  35602. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35603. {
  35604. front: {
  35605. height: math.unit(4 + 5/12, "feet"),
  35606. name: "Front",
  35607. image: {
  35608. source: "./media/characters/scoop/front.svg",
  35609. extra: 1257/1136,
  35610. bottom: 69/1326
  35611. }
  35612. },
  35613. back: {
  35614. height: math.unit(4 + 5/12, "feet"),
  35615. name: "Back",
  35616. image: {
  35617. source: "./media/characters/scoop/back.svg",
  35618. extra: 1321/1152,
  35619. bottom: 32/1353
  35620. }
  35621. },
  35622. maw: {
  35623. height: math.unit(0.68, "feet"),
  35624. name: "Maw",
  35625. image: {
  35626. source: "./media/characters/scoop/maw.svg"
  35627. }
  35628. },
  35629. },
  35630. [
  35631. {
  35632. name: "Really Small",
  35633. height: math.unit(1, "mm")
  35634. },
  35635. {
  35636. name: "Micro",
  35637. height: math.unit(1, "inch")
  35638. },
  35639. {
  35640. name: "Normal",
  35641. height: math.unit(4 + 5/12, "feet"),
  35642. default: true
  35643. },
  35644. {
  35645. name: "Macro",
  35646. height: math.unit(200, "feet")
  35647. },
  35648. {
  35649. name: "Megamacro",
  35650. height: math.unit(3240, "feet")
  35651. },
  35652. {
  35653. name: "Teramacro",
  35654. height: math.unit(2500, "miles")
  35655. },
  35656. ]
  35657. ))
  35658. characterMakers.push(() => makeCharacter(
  35659. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35660. {
  35661. front: {
  35662. height: math.unit(15 + 7/12, "feet"),
  35663. weight: math.unit(1150, "tons"),
  35664. name: "Front",
  35665. image: {
  35666. source: "./media/characters/saphinara/front.svg",
  35667. extra: 1837/1643,
  35668. bottom: 84/1921
  35669. },
  35670. form: "normal",
  35671. default: true
  35672. },
  35673. side: {
  35674. height: math.unit(15 + 7/12, "feet"),
  35675. weight: math.unit(1150, "tons"),
  35676. name: "Side",
  35677. image: {
  35678. source: "./media/characters/saphinara/side.svg",
  35679. extra: 605/547,
  35680. bottom: 6/611
  35681. },
  35682. form: "normal"
  35683. },
  35684. back: {
  35685. height: math.unit(15 + 7/12, "feet"),
  35686. weight: math.unit(1150, "tons"),
  35687. name: "Back",
  35688. image: {
  35689. source: "./media/characters/saphinara/back.svg",
  35690. extra: 591/531,
  35691. bottom: 13/604
  35692. },
  35693. form: "normal"
  35694. },
  35695. frontTail: {
  35696. height: math.unit(15 + 7/12, "feet"),
  35697. weight: math.unit(1150, "tons"),
  35698. name: "Front (Full Tail)",
  35699. image: {
  35700. source: "./media/characters/saphinara/front-tail.svg",
  35701. extra: 2256/1630,
  35702. bottom: 261/2517
  35703. },
  35704. form: "normal"
  35705. },
  35706. insides: {
  35707. height: math.unit(11.92, "feet"),
  35708. name: "Insides",
  35709. image: {
  35710. source: "./media/characters/saphinara/insides.svg"
  35711. },
  35712. form: "normal"
  35713. },
  35714. head: {
  35715. height: math.unit(4.17, "feet"),
  35716. name: "Head",
  35717. image: {
  35718. source: "./media/characters/saphinara/head.svg"
  35719. },
  35720. form: "normal"
  35721. },
  35722. tongue: {
  35723. height: math.unit(4.60, "feet"),
  35724. name: "Tongue",
  35725. image: {
  35726. source: "./media/characters/saphinara/tongue.svg"
  35727. },
  35728. form: "normal"
  35729. },
  35730. headEnraged: {
  35731. height: math.unit(5.55, "feet"),
  35732. name: "Head (Enraged)",
  35733. image: {
  35734. source: "./media/characters/saphinara/head-enraged.svg"
  35735. },
  35736. form: "normal"
  35737. },
  35738. wings: {
  35739. height: math.unit(11.95, "feet"),
  35740. name: "Wings",
  35741. image: {
  35742. source: "./media/characters/saphinara/wings.svg"
  35743. },
  35744. form: "normal"
  35745. },
  35746. feathers: {
  35747. height: math.unit(8.92, "feet"),
  35748. name: "Feathers",
  35749. image: {
  35750. source: "./media/characters/saphinara/feathers.svg"
  35751. },
  35752. form: "normal"
  35753. },
  35754. shackles: {
  35755. height: math.unit(2, "feet"),
  35756. name: "Shackles",
  35757. image: {
  35758. source: "./media/characters/saphinara/shackles.svg"
  35759. },
  35760. form: "normal"
  35761. },
  35762. eyes: {
  35763. height: math.unit(1.331, "feet"),
  35764. name: "Eyes",
  35765. image: {
  35766. source: "./media/characters/saphinara/eyes.svg"
  35767. },
  35768. form: "normal"
  35769. },
  35770. eyesEnraged: {
  35771. height: math.unit(1.331, "feet"),
  35772. name: "Eyes (Enraged)",
  35773. image: {
  35774. source: "./media/characters/saphinara/eyes-enraged.svg"
  35775. },
  35776. form: "normal"
  35777. },
  35778. trueFormSide: {
  35779. height: math.unit(200, "feet"),
  35780. weight: math.unit(1e7, "tons"),
  35781. name: "Side",
  35782. image: {
  35783. source: "./media/characters/saphinara/true-form-side.svg",
  35784. extra: 1399/770,
  35785. bottom: 97/1496
  35786. },
  35787. form: "true-form",
  35788. default: true
  35789. },
  35790. trueFormMaw: {
  35791. height: math.unit(71.5, "feet"),
  35792. name: "Maw",
  35793. image: {
  35794. source: "./media/characters/saphinara/true-form-maw.svg",
  35795. extra: 2302/1453,
  35796. bottom: 0/2302
  35797. },
  35798. form: "true-form"
  35799. },
  35800. meowberusSide: {
  35801. height: math.unit(75, "feet"),
  35802. weight: math.unit(180000, "kg"),
  35803. preyCapacity: math.unit(50000, "people"),
  35804. name: "Side",
  35805. image: {
  35806. source: "./media/characters/saphinara/meowberus-side.svg",
  35807. extra: 1400/711,
  35808. bottom: 126/1526
  35809. },
  35810. form: "meowberus",
  35811. extraAttributes: {
  35812. "pawArea": {
  35813. name: "Paw Size",
  35814. power: 2,
  35815. type: "area",
  35816. base: math.unit(35, "m^2")
  35817. }
  35818. }
  35819. },
  35820. },
  35821. [
  35822. {
  35823. name: "Normal",
  35824. height: math.unit(15 + 7/12, "feet"),
  35825. default: true,
  35826. form: "normal"
  35827. },
  35828. {
  35829. name: "Angry",
  35830. height: math.unit(30 + 6/12, "feet"),
  35831. form: "normal"
  35832. },
  35833. {
  35834. name: "Enraged",
  35835. height: math.unit(102 + 1/12, "feet"),
  35836. form: "normal"
  35837. },
  35838. {
  35839. name: "True",
  35840. height: math.unit(200, "feet"),
  35841. default: true,
  35842. form: "true-form"
  35843. },
  35844. {
  35845. name: "Normal",
  35846. height: math.unit(75, "feet"),
  35847. default: true,
  35848. form: "meowberus"
  35849. },
  35850. ],
  35851. {
  35852. "normal": {
  35853. name: "Normal",
  35854. default: true
  35855. },
  35856. "true-form": {
  35857. name: "True Form"
  35858. },
  35859. "meowberus": {
  35860. name: "Meowberus",
  35861. },
  35862. }
  35863. ))
  35864. characterMakers.push(() => makeCharacter(
  35865. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35866. {
  35867. front: {
  35868. height: math.unit(6 + 8/12, "feet"),
  35869. weight: math.unit(300, "lb"),
  35870. name: "Front",
  35871. image: {
  35872. source: "./media/characters/jrain/front.svg",
  35873. extra: 3039/2865,
  35874. bottom: 399/3438
  35875. }
  35876. },
  35877. back: {
  35878. height: math.unit(6 + 8/12, "feet"),
  35879. weight: math.unit(300, "lb"),
  35880. name: "Back",
  35881. image: {
  35882. source: "./media/characters/jrain/back.svg",
  35883. extra: 3089/2938,
  35884. bottom: 172/3261
  35885. }
  35886. },
  35887. head: {
  35888. height: math.unit(2.14, "feet"),
  35889. name: "Head",
  35890. image: {
  35891. source: "./media/characters/jrain/head.svg"
  35892. }
  35893. },
  35894. maw: {
  35895. height: math.unit(1.77, "feet"),
  35896. name: "Maw",
  35897. image: {
  35898. source: "./media/characters/jrain/maw.svg"
  35899. }
  35900. },
  35901. leftHand: {
  35902. height: math.unit(1.1, "feet"),
  35903. name: "Left Hand",
  35904. image: {
  35905. source: "./media/characters/jrain/left-hand.svg"
  35906. }
  35907. },
  35908. rightHand: {
  35909. height: math.unit(1.1, "feet"),
  35910. name: "Right Hand",
  35911. image: {
  35912. source: "./media/characters/jrain/right-hand.svg"
  35913. }
  35914. },
  35915. eye: {
  35916. height: math.unit(0.35, "feet"),
  35917. name: "Eye",
  35918. image: {
  35919. source: "./media/characters/jrain/eye.svg"
  35920. }
  35921. },
  35922. },
  35923. [
  35924. {
  35925. name: "Normal",
  35926. height: math.unit(6 + 8/12, "feet"),
  35927. default: true
  35928. },
  35929. {
  35930. name: "Casually Large",
  35931. height: math.unit(25, "feet")
  35932. },
  35933. {
  35934. name: "Giant",
  35935. height: math.unit(100, "feet")
  35936. },
  35937. {
  35938. name: "Kaiju",
  35939. height: math.unit(300, "feet")
  35940. },
  35941. ]
  35942. ))
  35943. characterMakers.push(() => makeCharacter(
  35944. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35945. {
  35946. dragon: {
  35947. height: math.unit(5, "meters"),
  35948. name: "Dragon",
  35949. image: {
  35950. source: "./media/characters/sabrina/dragon.svg",
  35951. extra: 3670 / 2365,
  35952. bottom: 333 / 4003
  35953. }
  35954. },
  35955. gryphon: {
  35956. height: math.unit(3, "meters"),
  35957. name: "Gryphon",
  35958. image: {
  35959. source: "./media/characters/sabrina/gryphon.svg",
  35960. extra: 1576 / 945,
  35961. bottom: 71 / 1647
  35962. }
  35963. },
  35964. snake: {
  35965. height: math.unit(12, "meters"),
  35966. name: "Snake",
  35967. image: {
  35968. source: "./media/characters/sabrina/snake.svg",
  35969. extra: 1758 / 1320,
  35970. bottom: 186 / 1944
  35971. }
  35972. },
  35973. collar: {
  35974. height: math.unit(1.86, "meters"),
  35975. name: "Collar",
  35976. image: {
  35977. source: "./media/characters/sabrina/collar.svg"
  35978. }
  35979. },
  35980. eye: {
  35981. height: math.unit(0.53, "meters"),
  35982. name: "Eye",
  35983. image: {
  35984. source: "./media/characters/sabrina/eye.svg"
  35985. }
  35986. },
  35987. foot: {
  35988. height: math.unit(1.86, "meters"),
  35989. name: "Foot",
  35990. image: {
  35991. source: "./media/characters/sabrina/foot.svg"
  35992. }
  35993. },
  35994. hand: {
  35995. height: math.unit(1.32, "meters"),
  35996. name: "Hand",
  35997. image: {
  35998. source: "./media/characters/sabrina/hand.svg"
  35999. }
  36000. },
  36001. head: {
  36002. height: math.unit(2.44, "meters"),
  36003. name: "Head",
  36004. image: {
  36005. source: "./media/characters/sabrina/head.svg"
  36006. }
  36007. },
  36008. headAngry: {
  36009. height: math.unit(2.44, "meters"),
  36010. name: "Head (Angry))",
  36011. image: {
  36012. source: "./media/characters/sabrina/head-angry.svg"
  36013. }
  36014. },
  36015. maw: {
  36016. height: math.unit(1.65, "meters"),
  36017. name: "Maw",
  36018. image: {
  36019. source: "./media/characters/sabrina/maw.svg"
  36020. }
  36021. },
  36022. spikes: {
  36023. height: math.unit(1.69, "meters"),
  36024. name: "Spikes",
  36025. image: {
  36026. source: "./media/characters/sabrina/spikes.svg"
  36027. }
  36028. },
  36029. stomach: {
  36030. height: math.unit(1.15, "meters"),
  36031. name: "Stomach",
  36032. image: {
  36033. source: "./media/characters/sabrina/stomach.svg"
  36034. }
  36035. },
  36036. tongue: {
  36037. height: math.unit(1.27, "meters"),
  36038. name: "Tongue",
  36039. image: {
  36040. source: "./media/characters/sabrina/tongue.svg"
  36041. }
  36042. },
  36043. wingDorsal: {
  36044. height: math.unit(4.85, "meters"),
  36045. name: "Wing (Dorsal)",
  36046. image: {
  36047. source: "./media/characters/sabrina/wing-dorsal.svg"
  36048. }
  36049. },
  36050. wingVentral: {
  36051. height: math.unit(4.85, "meters"),
  36052. name: "Wing (Ventral)",
  36053. image: {
  36054. source: "./media/characters/sabrina/wing-ventral.svg"
  36055. }
  36056. },
  36057. },
  36058. [
  36059. {
  36060. name: "Normal",
  36061. height: math.unit(5, "meters"),
  36062. default: true
  36063. },
  36064. ]
  36065. ))
  36066. characterMakers.push(() => makeCharacter(
  36067. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36068. {
  36069. frontMaid: {
  36070. height: math.unit(5 + 5/12, "feet"),
  36071. weight: math.unit(130, "lb"),
  36072. name: "Front (Maid)",
  36073. image: {
  36074. source: "./media/characters/midnight-tales/front-maid.svg",
  36075. extra: 489/454,
  36076. bottom: 61/550
  36077. }
  36078. },
  36079. frontFormal: {
  36080. height: math.unit(5 + 5/12, "feet"),
  36081. weight: math.unit(130, "lb"),
  36082. name: "Front (Formal)",
  36083. image: {
  36084. source: "./media/characters/midnight-tales/front-formal.svg",
  36085. extra: 489/454,
  36086. bottom: 61/550
  36087. }
  36088. },
  36089. back: {
  36090. height: math.unit(5 + 5/12, "feet"),
  36091. weight: math.unit(130, "lb"),
  36092. name: "Back",
  36093. image: {
  36094. source: "./media/characters/midnight-tales/back.svg",
  36095. extra: 498/456,
  36096. bottom: 33/531
  36097. }
  36098. },
  36099. frontBeast: {
  36100. height: math.unit(40, "feet"),
  36101. weight: math.unit(64000, "lb"),
  36102. name: "Front (Beast)",
  36103. image: {
  36104. source: "./media/characters/midnight-tales/front-beast.svg",
  36105. extra: 927/860,
  36106. bottom: 53/980
  36107. }
  36108. },
  36109. backBeast: {
  36110. height: math.unit(40, "feet"),
  36111. weight: math.unit(64000, "lb"),
  36112. name: "Back (Beast)",
  36113. image: {
  36114. source: "./media/characters/midnight-tales/back-beast.svg",
  36115. extra: 929/855,
  36116. bottom: 16/945
  36117. }
  36118. },
  36119. footBeast: {
  36120. height: math.unit(6.7, "feet"),
  36121. name: "Foot (Beast)",
  36122. image: {
  36123. source: "./media/characters/midnight-tales/foot-beast.svg"
  36124. }
  36125. },
  36126. headBeast: {
  36127. height: math.unit(8, "feet"),
  36128. name: "Head (Beast)",
  36129. image: {
  36130. source: "./media/characters/midnight-tales/head-beast.svg"
  36131. }
  36132. },
  36133. },
  36134. [
  36135. {
  36136. name: "Normal",
  36137. height: math.unit(5 + 5 / 12, "feet"),
  36138. default: true
  36139. },
  36140. {
  36141. name: "Macro",
  36142. height: math.unit(25, "feet")
  36143. },
  36144. ]
  36145. ))
  36146. characterMakers.push(() => makeCharacter(
  36147. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36148. {
  36149. front: {
  36150. height: math.unit(5 + 10/12, "feet"),
  36151. name: "Front",
  36152. image: {
  36153. source: "./media/characters/argon/front.svg",
  36154. extra: 2009/1935,
  36155. bottom: 118/2127
  36156. }
  36157. },
  36158. back: {
  36159. height: math.unit(5 + 10/12, "feet"),
  36160. name: "Back",
  36161. image: {
  36162. source: "./media/characters/argon/back.svg",
  36163. extra: 2047/1992,
  36164. bottom: 20/2067
  36165. }
  36166. },
  36167. frontDressed: {
  36168. height: math.unit(5 + 10/12, "feet"),
  36169. name: "Front (Dressed)",
  36170. image: {
  36171. source: "./media/characters/argon/front-dressed.svg",
  36172. extra: 2009/1935,
  36173. bottom: 118/2127
  36174. }
  36175. },
  36176. },
  36177. [
  36178. {
  36179. name: "Normal",
  36180. height: math.unit(5 + 10/12, "feet"),
  36181. default: true
  36182. },
  36183. ]
  36184. ))
  36185. characterMakers.push(() => makeCharacter(
  36186. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36187. {
  36188. front: {
  36189. height: math.unit(8 + 6/12, "feet"),
  36190. weight: math.unit(1150, "lb"),
  36191. name: "Front",
  36192. image: {
  36193. source: "./media/characters/kichi/front.svg",
  36194. extra: 1267/1164,
  36195. bottom: 61/1328
  36196. }
  36197. },
  36198. back: {
  36199. height: math.unit(8 + 6/12, "feet"),
  36200. weight: math.unit(1150, "lb"),
  36201. name: "Back",
  36202. image: {
  36203. source: "./media/characters/kichi/back.svg",
  36204. extra: 1273/1166,
  36205. bottom: 33/1306
  36206. }
  36207. },
  36208. },
  36209. [
  36210. {
  36211. name: "Normal",
  36212. height: math.unit(8 + 6/12, "feet"),
  36213. default: true
  36214. },
  36215. ]
  36216. ))
  36217. characterMakers.push(() => makeCharacter(
  36218. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36219. {
  36220. front: {
  36221. height: math.unit(6, "feet"),
  36222. weight: math.unit(210, "lb"),
  36223. name: "Front",
  36224. image: {
  36225. source: "./media/characters/manetel-greyscale/front.svg",
  36226. extra: 350/312,
  36227. bottom: 8/358
  36228. }
  36229. },
  36230. },
  36231. [
  36232. {
  36233. name: "Micro",
  36234. height: math.unit(2, "inches")
  36235. },
  36236. {
  36237. name: "Normal",
  36238. height: math.unit(6, "feet"),
  36239. default: true
  36240. },
  36241. {
  36242. name: "Minimacro",
  36243. height: math.unit(17, "feet")
  36244. },
  36245. {
  36246. name: "Macro",
  36247. height: math.unit(117, "feet")
  36248. },
  36249. ]
  36250. ))
  36251. characterMakers.push(() => makeCharacter(
  36252. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36253. {
  36254. side: {
  36255. height: math.unit(5 + 1/12, "feet"),
  36256. weight: math.unit(418, "lb"),
  36257. name: "Side",
  36258. image: {
  36259. source: "./media/characters/softpurr/side.svg",
  36260. extra: 1993/1945,
  36261. bottom: 134/2127
  36262. }
  36263. },
  36264. front: {
  36265. height: math.unit(5 + 1/12, "feet"),
  36266. weight: math.unit(418, "lb"),
  36267. name: "Front",
  36268. image: {
  36269. source: "./media/characters/softpurr/front.svg",
  36270. extra: 1950/1856,
  36271. bottom: 174/2124
  36272. }
  36273. },
  36274. paw: {
  36275. height: math.unit(1, "feet"),
  36276. name: "Paw",
  36277. image: {
  36278. source: "./media/characters/softpurr/paw.svg"
  36279. }
  36280. },
  36281. },
  36282. [
  36283. {
  36284. name: "Normal",
  36285. height: math.unit(5 + 1/12, "feet"),
  36286. default: true
  36287. },
  36288. ]
  36289. ))
  36290. characterMakers.push(() => makeCharacter(
  36291. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36292. {
  36293. front: {
  36294. height: math.unit(260, "meters"),
  36295. name: "Front",
  36296. image: {
  36297. source: "./media/characters/anahita/front.svg",
  36298. extra: 665/635,
  36299. bottom: 89/754
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Macro",
  36306. height: math.unit(260, "meters"),
  36307. default: true
  36308. },
  36309. ]
  36310. ))
  36311. characterMakers.push(() => makeCharacter(
  36312. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36313. {
  36314. front: {
  36315. height: math.unit(4 + 10/12, "feet"),
  36316. weight: math.unit(160, "lb"),
  36317. name: "Front",
  36318. image: {
  36319. source: "./media/characters/chip-mouse/front.svg",
  36320. extra: 3528/3408,
  36321. bottom: 0/3528
  36322. }
  36323. },
  36324. frontNsfw: {
  36325. height: math.unit(4 + 10/12, "feet"),
  36326. weight: math.unit(160, "lb"),
  36327. name: "Front (NSFW)",
  36328. image: {
  36329. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36330. extra: 3528/3408,
  36331. bottom: 0/3528
  36332. }
  36333. },
  36334. },
  36335. [
  36336. {
  36337. name: "Normal",
  36338. height: math.unit(4 + 10/12, "feet"),
  36339. default: true
  36340. },
  36341. ]
  36342. ))
  36343. characterMakers.push(() => makeCharacter(
  36344. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36345. {
  36346. side: {
  36347. height: math.unit(10, "feet"),
  36348. weight: math.unit(14000, "lb"),
  36349. name: "Side",
  36350. image: {
  36351. source: "./media/characters/kremm/side.svg",
  36352. extra: 1390/1053,
  36353. bottom: 90/1480
  36354. }
  36355. },
  36356. gut: {
  36357. height: math.unit(5.8, "feet"),
  36358. name: "Gut",
  36359. image: {
  36360. source: "./media/characters/kremm/gut.svg"
  36361. }
  36362. },
  36363. ass: {
  36364. height: math.unit(6.1, "feet"),
  36365. name: "Ass",
  36366. image: {
  36367. source: "./media/characters/kremm/ass.svg"
  36368. }
  36369. },
  36370. jaws: {
  36371. height: math.unit(2.2, "feet"),
  36372. name: "Jaws",
  36373. image: {
  36374. source: "./media/characters/kremm/jaws.svg"
  36375. }
  36376. },
  36377. dick: {
  36378. height: math.unit(4.26, "feet"),
  36379. name: "Dick",
  36380. image: {
  36381. source: "./media/characters/kremm/dick.svg"
  36382. }
  36383. },
  36384. },
  36385. [
  36386. {
  36387. name: "Normal",
  36388. height: math.unit(10, "feet"),
  36389. default: true
  36390. },
  36391. ]
  36392. ))
  36393. characterMakers.push(() => makeCharacter(
  36394. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36395. {
  36396. front: {
  36397. height: math.unit(30, "stories"),
  36398. name: "Front",
  36399. image: {
  36400. source: "./media/characters/kai/front.svg",
  36401. extra: 1892/1718,
  36402. bottom: 162/2054
  36403. }
  36404. },
  36405. },
  36406. [
  36407. {
  36408. name: "Macro",
  36409. height: math.unit(30, "stories"),
  36410. default: true
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36416. {
  36417. front: {
  36418. height: math.unit(6 + 4/12, "feet"),
  36419. weight: math.unit(145, "lb"),
  36420. name: "Front",
  36421. image: {
  36422. source: "./media/characters/sykes/front.svg",
  36423. extra: 1321 / 1187,
  36424. bottom: 66 / 1387
  36425. }
  36426. },
  36427. back: {
  36428. height: math.unit(6 + 4/12, "feet"),
  36429. weight: math.unit(145, "lb"),
  36430. name: "Back",
  36431. image: {
  36432. source: "./media/characters/sykes/back.svg",
  36433. extra: 1326/1181,
  36434. bottom: 31/1357
  36435. }
  36436. },
  36437. traditionalOutfit: {
  36438. height: math.unit(6 + 4/12, "feet"),
  36439. weight: math.unit(145, "lb"),
  36440. name: "Traditional Outfit",
  36441. image: {
  36442. source: "./media/characters/sykes/traditional-outfit.svg",
  36443. extra: 1321 / 1187,
  36444. bottom: 66 / 1387
  36445. }
  36446. },
  36447. adventureOutfit: {
  36448. height: math.unit(6 + 4/12, "feet"),
  36449. weight: math.unit(145, "lb"),
  36450. name: "Adventure Outfit",
  36451. image: {
  36452. source: "./media/characters/sykes/adventure-outfit.svg",
  36453. extra: 1321 / 1187,
  36454. bottom: 66 / 1387
  36455. }
  36456. },
  36457. handLeft: {
  36458. height: math.unit(0.9, "feet"),
  36459. name: "Hand (Left)",
  36460. image: {
  36461. source: "./media/characters/sykes/hand-left.svg"
  36462. }
  36463. },
  36464. handRight: {
  36465. height: math.unit(0.839, "feet"),
  36466. name: "Hand (Right)",
  36467. image: {
  36468. source: "./media/characters/sykes/hand-right.svg"
  36469. }
  36470. },
  36471. leftFoot: {
  36472. height: math.unit(1.2, "feet"),
  36473. name: "Foot (Left)",
  36474. image: {
  36475. source: "./media/characters/sykes/foot-left.svg"
  36476. }
  36477. },
  36478. rightFoot: {
  36479. height: math.unit(1.2, "feet"),
  36480. name: "Foot (Right)",
  36481. image: {
  36482. source: "./media/characters/sykes/foot-right.svg"
  36483. }
  36484. },
  36485. maw: {
  36486. height: math.unit(1.93, "feet"),
  36487. name: "Maw",
  36488. image: {
  36489. source: "./media/characters/sykes/maw.svg"
  36490. }
  36491. },
  36492. teeth: {
  36493. height: math.unit(0.51, "feet"),
  36494. name: "Teeth",
  36495. image: {
  36496. source: "./media/characters/sykes/teeth.svg"
  36497. }
  36498. },
  36499. tongue: {
  36500. height: math.unit(2.13, "feet"),
  36501. name: "Tongue",
  36502. image: {
  36503. source: "./media/characters/sykes/tongue.svg"
  36504. }
  36505. },
  36506. uvula: {
  36507. height: math.unit(0.16, "feet"),
  36508. name: "Uvula",
  36509. image: {
  36510. source: "./media/characters/sykes/uvula.svg"
  36511. }
  36512. },
  36513. collar: {
  36514. height: math.unit(0.287, "feet"),
  36515. name: "Collar",
  36516. image: {
  36517. source: "./media/characters/sykes/collar.svg"
  36518. }
  36519. },
  36520. tail: {
  36521. height: math.unit(3.8, "feet"),
  36522. name: "Tail",
  36523. image: {
  36524. source: "./media/characters/sykes/tail.svg"
  36525. }
  36526. },
  36527. },
  36528. [
  36529. {
  36530. name: "Shrunken",
  36531. height: math.unit(5, "inches")
  36532. },
  36533. {
  36534. name: "Normal",
  36535. height: math.unit(6 + 4 / 12, "feet"),
  36536. default: true
  36537. },
  36538. {
  36539. name: "Big",
  36540. height: math.unit(15, "feet")
  36541. },
  36542. ]
  36543. ))
  36544. characterMakers.push(() => makeCharacter(
  36545. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36546. {
  36547. front: {
  36548. height: math.unit(5 + 8/12, "feet"),
  36549. weight: math.unit(190, "lb"),
  36550. name: "Front",
  36551. image: {
  36552. source: "./media/characters/oven-otter/front.svg",
  36553. extra: 1809/1740,
  36554. bottom: 181/1990
  36555. }
  36556. },
  36557. back: {
  36558. height: math.unit(5 + 8/12, "feet"),
  36559. weight: math.unit(190, "lb"),
  36560. name: "Back",
  36561. image: {
  36562. source: "./media/characters/oven-otter/back.svg",
  36563. extra: 1709/1635,
  36564. bottom: 118/1827
  36565. }
  36566. },
  36567. hand: {
  36568. height: math.unit(1.07, "feet"),
  36569. name: "Hand",
  36570. image: {
  36571. source: "./media/characters/oven-otter/hand.svg"
  36572. }
  36573. },
  36574. beans: {
  36575. height: math.unit(1.74, "feet"),
  36576. name: "Beans",
  36577. image: {
  36578. source: "./media/characters/oven-otter/beans.svg"
  36579. }
  36580. },
  36581. },
  36582. [
  36583. {
  36584. name: "Micro",
  36585. height: math.unit(0.5, "inches")
  36586. },
  36587. {
  36588. name: "Normal",
  36589. height: math.unit(5 + 8/12, "feet"),
  36590. default: true
  36591. },
  36592. {
  36593. name: "Macro",
  36594. height: math.unit(250, "feet")
  36595. },
  36596. {
  36597. name: "Really High",
  36598. height: math.unit(420, "feet")
  36599. },
  36600. ]
  36601. ))
  36602. characterMakers.push(() => makeCharacter(
  36603. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36604. {
  36605. front: {
  36606. height: math.unit(5, "meters"),
  36607. weight: math.unit(292000000000000, "kg"),
  36608. name: "Front",
  36609. image: {
  36610. source: "./media/characters/devourer/front.svg",
  36611. extra: 1800/1733,
  36612. bottom: 211/2011
  36613. }
  36614. },
  36615. maw: {
  36616. height: math.unit(1.1, "meter"),
  36617. name: "Maw",
  36618. image: {
  36619. source: "./media/characters/devourer/maw.svg"
  36620. }
  36621. },
  36622. },
  36623. [
  36624. {
  36625. name: "Small",
  36626. height: math.unit(3, "meters")
  36627. },
  36628. {
  36629. name: "Large",
  36630. height: math.unit(5, "meters"),
  36631. default: true
  36632. },
  36633. ]
  36634. ))
  36635. characterMakers.push(() => makeCharacter(
  36636. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36637. {
  36638. front: {
  36639. height: math.unit(6, "feet"),
  36640. weight: math.unit(400, "lb"),
  36641. name: "Front",
  36642. image: {
  36643. source: "./media/characters/ellarby/front.svg",
  36644. extra: 1909/1763,
  36645. bottom: 80/1989
  36646. }
  36647. },
  36648. back: {
  36649. height: math.unit(6, "feet"),
  36650. weight: math.unit(400, "lb"),
  36651. name: "Back",
  36652. image: {
  36653. source: "./media/characters/ellarby/back.svg",
  36654. extra: 1914/1784,
  36655. bottom: 172/2086
  36656. }
  36657. },
  36658. },
  36659. [
  36660. {
  36661. name: "Mischief",
  36662. height: math.unit(18, "inches")
  36663. },
  36664. {
  36665. name: "Trouble",
  36666. height: math.unit(12, "feet")
  36667. },
  36668. {
  36669. name: "Havoc",
  36670. height: math.unit(200, "feet"),
  36671. default: true
  36672. },
  36673. {
  36674. name: "Pandemonium",
  36675. height: math.unit(1, "mile")
  36676. },
  36677. {
  36678. name: "Catastrophe",
  36679. height: math.unit(100, "miles")
  36680. },
  36681. ]
  36682. ))
  36683. characterMakers.push(() => makeCharacter(
  36684. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36685. {
  36686. front: {
  36687. height: math.unit(4.7, "meters"),
  36688. weight: math.unit(6500, "kg"),
  36689. name: "Front",
  36690. image: {
  36691. source: "./media/characters/vex/front.svg",
  36692. extra: 1288/1140,
  36693. bottom: 100/1388
  36694. }
  36695. },
  36696. },
  36697. [
  36698. {
  36699. name: "Normal",
  36700. height: math.unit(4.7, "meters"),
  36701. default: true
  36702. },
  36703. ]
  36704. ))
  36705. characterMakers.push(() => makeCharacter(
  36706. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36707. {
  36708. normal: {
  36709. height: math.unit(6, "feet"),
  36710. weight: math.unit(350, "lb"),
  36711. name: "Normal",
  36712. image: {
  36713. source: "./media/characters/teshy/normal.svg",
  36714. extra: 1795/1735,
  36715. bottom: 16/1811
  36716. }
  36717. },
  36718. monsterFront: {
  36719. height: math.unit(12, "feet"),
  36720. weight: math.unit(4700, "lb"),
  36721. name: "Monster (Front)",
  36722. image: {
  36723. source: "./media/characters/teshy/monster-front.svg",
  36724. extra: 2042/2034,
  36725. bottom: 128/2170
  36726. }
  36727. },
  36728. monsterSide: {
  36729. height: math.unit(12, "feet"),
  36730. weight: math.unit(4700, "lb"),
  36731. name: "Monster (Side)",
  36732. image: {
  36733. source: "./media/characters/teshy/monster-side.svg",
  36734. extra: 2067/2056,
  36735. bottom: 70/2137
  36736. }
  36737. },
  36738. monsterBack: {
  36739. height: math.unit(12, "feet"),
  36740. weight: math.unit(4700, "lb"),
  36741. name: "Monster (Back)",
  36742. image: {
  36743. source: "./media/characters/teshy/monster-back.svg",
  36744. extra: 1921/1914,
  36745. bottom: 171/2092
  36746. }
  36747. },
  36748. },
  36749. [
  36750. {
  36751. name: "Normal",
  36752. height: math.unit(6, "feet"),
  36753. default: true
  36754. },
  36755. ]
  36756. ))
  36757. characterMakers.push(() => makeCharacter(
  36758. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36759. {
  36760. front: {
  36761. height: math.unit(6, "feet"),
  36762. name: "Front",
  36763. image: {
  36764. source: "./media/characters/ramey/front.svg",
  36765. extra: 790/787,
  36766. bottom: 27/817
  36767. }
  36768. },
  36769. },
  36770. [
  36771. {
  36772. name: "Normal",
  36773. height: math.unit(6, "feet"),
  36774. default: true
  36775. },
  36776. ]
  36777. ))
  36778. characterMakers.push(() => makeCharacter(
  36779. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36780. {
  36781. front: {
  36782. height: math.unit(5 + 5/12, "feet"),
  36783. weight: math.unit(120, "lb"),
  36784. name: "Front",
  36785. image: {
  36786. source: "./media/characters/phirae/front.svg",
  36787. extra: 2491/2436,
  36788. bottom: 38/2529
  36789. }
  36790. },
  36791. },
  36792. [
  36793. {
  36794. name: "Normal",
  36795. height: math.unit(5 + 5/12, "feet"),
  36796. default: true
  36797. },
  36798. ]
  36799. ))
  36800. characterMakers.push(() => makeCharacter(
  36801. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36802. {
  36803. front: {
  36804. height: math.unit(5 + 3/12, "feet"),
  36805. name: "Front",
  36806. image: {
  36807. source: "./media/characters/stagglas/front.svg",
  36808. extra: 962/882,
  36809. bottom: 53/1015
  36810. }
  36811. },
  36812. feral: {
  36813. height: math.unit(335, "cm"),
  36814. name: "Feral",
  36815. image: {
  36816. source: "./media/characters/stagglas/feral.svg",
  36817. extra: 1732/1090,
  36818. bottom: 48/1780
  36819. }
  36820. },
  36821. },
  36822. [
  36823. {
  36824. name: "Normal",
  36825. height: math.unit(5 + 3/12, "feet"),
  36826. default: true
  36827. },
  36828. ]
  36829. ))
  36830. characterMakers.push(() => makeCharacter(
  36831. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36832. {
  36833. front: {
  36834. height: math.unit(5 + 4/12, "feet"),
  36835. weight: math.unit(145, "lb"),
  36836. name: "Front",
  36837. image: {
  36838. source: "./media/characters/starra/front.svg",
  36839. extra: 1790/1691,
  36840. bottom: 91/1881
  36841. }
  36842. },
  36843. },
  36844. [
  36845. {
  36846. name: "Normal",
  36847. height: math.unit(5 + 4/12, "feet"),
  36848. default: true
  36849. },
  36850. ]
  36851. ))
  36852. characterMakers.push(() => makeCharacter(
  36853. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36854. {
  36855. front: {
  36856. height: math.unit(3.5, "meters"),
  36857. name: "Front",
  36858. image: {
  36859. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36860. extra: 1248/972,
  36861. bottom: 38/1286
  36862. }
  36863. },
  36864. },
  36865. [
  36866. {
  36867. name: "Normal",
  36868. height: math.unit(3.5, "meters"),
  36869. default: true
  36870. },
  36871. ]
  36872. ))
  36873. characterMakers.push(() => makeCharacter(
  36874. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36875. {
  36876. side: {
  36877. height: math.unit(8 + 2/12, "feet"),
  36878. weight: math.unit(1240, "lb"),
  36879. name: "Side",
  36880. image: {
  36881. source: "./media/characters/mika-valentine/side.svg",
  36882. extra: 2670/2501,
  36883. bottom: 250/2920
  36884. }
  36885. },
  36886. },
  36887. [
  36888. {
  36889. name: "Normal",
  36890. height: math.unit(8 + 2/12, "feet"),
  36891. default: true
  36892. },
  36893. ]
  36894. ))
  36895. characterMakers.push(() => makeCharacter(
  36896. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36897. {
  36898. front: {
  36899. height: math.unit(7 + 2/12, "feet"),
  36900. name: "Front",
  36901. image: {
  36902. source: "./media/characters/xoltol/front.svg",
  36903. extra: 2212/2124,
  36904. bottom: 84/2296
  36905. }
  36906. },
  36907. side: {
  36908. height: math.unit(7 + 2/12, "feet"),
  36909. name: "Side",
  36910. image: {
  36911. source: "./media/characters/xoltol/side.svg",
  36912. extra: 2273/2197,
  36913. bottom: 26/2299
  36914. }
  36915. },
  36916. hand: {
  36917. height: math.unit(2.5, "feet"),
  36918. name: "Hand",
  36919. image: {
  36920. source: "./media/characters/xoltol/hand.svg"
  36921. }
  36922. },
  36923. },
  36924. [
  36925. {
  36926. name: "Small-ish",
  36927. height: math.unit(5 + 11/12, "feet")
  36928. },
  36929. {
  36930. name: "Normal",
  36931. height: math.unit(7 + 2/12, "feet")
  36932. },
  36933. {
  36934. name: "\"Macro\"",
  36935. height: math.unit(14 + 9/12, "feet"),
  36936. default: true
  36937. },
  36938. {
  36939. name: "Alternate Height",
  36940. height: math.unit(20, "feet")
  36941. },
  36942. {
  36943. name: "Actually Macro",
  36944. height: math.unit(100, "feet")
  36945. },
  36946. ]
  36947. ))
  36948. characterMakers.push(() => makeCharacter(
  36949. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36950. {
  36951. front: {
  36952. height: math.unit(5 + 2/12, "feet"),
  36953. weight: math.unit(75, "kg"),
  36954. name: "Front",
  36955. image: {
  36956. source: "./media/characters/kotetsu-redwood/front.svg",
  36957. extra: 1053/942,
  36958. bottom: 60/1113
  36959. }
  36960. },
  36961. },
  36962. [
  36963. {
  36964. name: "Normal",
  36965. height: math.unit(5 + 2/12, "feet"),
  36966. default: true
  36967. },
  36968. ]
  36969. ))
  36970. characterMakers.push(() => makeCharacter(
  36971. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36972. {
  36973. front: {
  36974. height: math.unit(2.4, "meters"),
  36975. weight: math.unit(125, "kg"),
  36976. name: "Front",
  36977. image: {
  36978. source: "./media/characters/lilith/front.svg",
  36979. extra: 1590/1513,
  36980. bottom: 203/1793
  36981. }
  36982. },
  36983. },
  36984. [
  36985. {
  36986. name: "Humanoid",
  36987. height: math.unit(2.4, "meters")
  36988. },
  36989. {
  36990. name: "Normal",
  36991. height: math.unit(6, "meters"),
  36992. default: true
  36993. },
  36994. {
  36995. name: "Largest",
  36996. height: math.unit(55, "meters")
  36997. },
  36998. ]
  36999. ))
  37000. characterMakers.push(() => makeCharacter(
  37001. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37002. {
  37003. front: {
  37004. height: math.unit(8 + 4/12, "feet"),
  37005. weight: math.unit(535, "lb"),
  37006. name: "Front",
  37007. image: {
  37008. source: "./media/characters/beh'kah-bolger/front.svg",
  37009. extra: 1660/1603,
  37010. bottom: 37/1697
  37011. }
  37012. },
  37013. },
  37014. [
  37015. {
  37016. name: "Normal",
  37017. height: math.unit(8 + 4/12, "feet"),
  37018. default: true
  37019. },
  37020. {
  37021. name: "Kaiju",
  37022. height: math.unit(250, "feet")
  37023. },
  37024. {
  37025. name: "Still Growing",
  37026. height: math.unit(10, "miles")
  37027. },
  37028. {
  37029. name: "Continental",
  37030. height: math.unit(5000, "miles")
  37031. },
  37032. {
  37033. name: "Final Form",
  37034. height: math.unit(2500000, "miles")
  37035. },
  37036. ]
  37037. ))
  37038. characterMakers.push(() => makeCharacter(
  37039. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37040. {
  37041. front: {
  37042. height: math.unit(7 + 2/12, "feet"),
  37043. weight: math.unit(230, "kg"),
  37044. name: "Front",
  37045. image: {
  37046. source: "./media/characters/tatyana-milewska/front.svg",
  37047. extra: 1199/1150,
  37048. bottom: 86/1285
  37049. }
  37050. },
  37051. },
  37052. [
  37053. {
  37054. name: "Normal",
  37055. height: math.unit(7 + 2/12, "feet"),
  37056. default: true
  37057. },
  37058. {
  37059. name: "Big",
  37060. height: math.unit(12, "feet")
  37061. },
  37062. {
  37063. name: "Minimacro",
  37064. height: math.unit(20, "feet")
  37065. },
  37066. {
  37067. name: "Macro",
  37068. height: math.unit(120, "feet")
  37069. },
  37070. ]
  37071. ))
  37072. characterMakers.push(() => makeCharacter(
  37073. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37074. {
  37075. front: {
  37076. height: math.unit(7 + 8/12, "feet"),
  37077. weight: math.unit(152, "kg"),
  37078. name: "Front",
  37079. image: {
  37080. source: "./media/characters/helen-arri/front.svg",
  37081. extra: 440/423,
  37082. bottom: 14/454
  37083. }
  37084. },
  37085. back: {
  37086. height: math.unit(7 + 8/12, "feet"),
  37087. weight: math.unit(152, "kg"),
  37088. name: "Back",
  37089. image: {
  37090. source: "./media/characters/helen-arri/back.svg",
  37091. extra: 443/426,
  37092. bottom: 8/451
  37093. }
  37094. },
  37095. },
  37096. [
  37097. {
  37098. name: "Normal",
  37099. height: math.unit(7 + 8/12, "feet"),
  37100. default: true
  37101. },
  37102. {
  37103. name: "Big",
  37104. height: math.unit(14, "feet")
  37105. },
  37106. {
  37107. name: "Minimacro",
  37108. height: math.unit(24, "feet")
  37109. },
  37110. {
  37111. name: "Macro",
  37112. height: math.unit(140, "feet")
  37113. },
  37114. ]
  37115. ))
  37116. characterMakers.push(() => makeCharacter(
  37117. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37118. {
  37119. front: {
  37120. height: math.unit(6, "meters"),
  37121. name: "Front",
  37122. image: {
  37123. source: "./media/characters/ehanu-rehu/front.svg",
  37124. extra: 1800/1800,
  37125. bottom: 59/1859
  37126. }
  37127. },
  37128. },
  37129. [
  37130. {
  37131. name: "Normal",
  37132. height: math.unit(6, "meters"),
  37133. default: true
  37134. },
  37135. ]
  37136. ))
  37137. characterMakers.push(() => makeCharacter(
  37138. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37139. {
  37140. front: {
  37141. height: math.unit(7 + 3/12, "feet"),
  37142. name: "Front",
  37143. image: {
  37144. source: "./media/characters/renholder/front.svg",
  37145. extra: 3096/2960,
  37146. bottom: 250/3346
  37147. }
  37148. },
  37149. },
  37150. [
  37151. {
  37152. name: "Normal Bat",
  37153. height: math.unit(7 + 3/12, "feet"),
  37154. default: true
  37155. },
  37156. {
  37157. name: "Slightly Tall Bat",
  37158. height: math.unit(100, "feet")
  37159. },
  37160. {
  37161. name: "Big Bat",
  37162. height: math.unit(1000, "feet")
  37163. },
  37164. {
  37165. name: "City-Sized Bat",
  37166. height: math.unit(200000, "feet")
  37167. },
  37168. {
  37169. name: "Bigger Bat",
  37170. height: math.unit(10000, "miles")
  37171. },
  37172. {
  37173. name: "Solar Sized Bat",
  37174. height: math.unit(100, "AU")
  37175. },
  37176. {
  37177. name: "Galactic Bat",
  37178. height: math.unit(200000, "lightyears")
  37179. },
  37180. {
  37181. name: "Universally Known Bat",
  37182. height: math.unit(1, "universe")
  37183. },
  37184. ]
  37185. ))
  37186. characterMakers.push(() => makeCharacter(
  37187. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37188. {
  37189. front: {
  37190. height: math.unit(6 + 11/12, "feet"),
  37191. weight: math.unit(250, "lb"),
  37192. name: "Front",
  37193. image: {
  37194. source: "./media/characters/cookiecat/front.svg",
  37195. extra: 893/827,
  37196. bottom: 14/907
  37197. }
  37198. },
  37199. },
  37200. [
  37201. {
  37202. name: "Micro",
  37203. height: math.unit(3, "inches")
  37204. },
  37205. {
  37206. name: "Normal",
  37207. height: math.unit(6 + 11/12, "feet"),
  37208. default: true
  37209. },
  37210. {
  37211. name: "Macro",
  37212. height: math.unit(100, "feet")
  37213. },
  37214. {
  37215. name: "Macro+",
  37216. height: math.unit(404, "feet")
  37217. },
  37218. {
  37219. name: "Megamacro",
  37220. height: math.unit(165, "miles")
  37221. },
  37222. {
  37223. name: "Planetary",
  37224. height: math.unit(4600, "miles")
  37225. },
  37226. ]
  37227. ))
  37228. characterMakers.push(() => makeCharacter(
  37229. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37230. {
  37231. front: {
  37232. height: math.unit(10 + 3/12, "feet"),
  37233. weight: math.unit(1500, "lb"),
  37234. name: "Front",
  37235. image: {
  37236. source: "./media/characters/tux-kusanagi/front.svg",
  37237. extra: 944/840,
  37238. bottom: 39/983
  37239. }
  37240. },
  37241. back: {
  37242. height: math.unit(10 + 3/12, "feet"),
  37243. weight: math.unit(1500, "lb"),
  37244. name: "Back",
  37245. image: {
  37246. source: "./media/characters/tux-kusanagi/back.svg",
  37247. extra: 941/842,
  37248. bottom: 28/969
  37249. }
  37250. },
  37251. rump: {
  37252. height: math.unit(5.25, "feet"),
  37253. name: "Rump",
  37254. image: {
  37255. source: "./media/characters/tux-kusanagi/rump.svg"
  37256. }
  37257. },
  37258. beak: {
  37259. height: math.unit(1.54, "feet"),
  37260. name: "Beak",
  37261. image: {
  37262. source: "./media/characters/tux-kusanagi/beak.svg"
  37263. }
  37264. },
  37265. },
  37266. [
  37267. {
  37268. name: "Normal",
  37269. height: math.unit(10 + 3/12, "feet"),
  37270. default: true
  37271. },
  37272. ]
  37273. ))
  37274. characterMakers.push(() => makeCharacter(
  37275. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37276. {
  37277. front: {
  37278. height: math.unit(58, "feet"),
  37279. weight: math.unit(200, "tons"),
  37280. name: "Front",
  37281. image: {
  37282. source: "./media/characters/uzarmazari/front.svg",
  37283. extra: 1575/1455,
  37284. bottom: 152/1727
  37285. }
  37286. },
  37287. back: {
  37288. height: math.unit(58, "feet"),
  37289. weight: math.unit(200, "tons"),
  37290. name: "Back",
  37291. image: {
  37292. source: "./media/characters/uzarmazari/back.svg",
  37293. extra: 1585/1510,
  37294. bottom: 157/1742
  37295. }
  37296. },
  37297. head: {
  37298. height: math.unit(26, "feet"),
  37299. name: "Head",
  37300. image: {
  37301. source: "./media/characters/uzarmazari/head.svg"
  37302. }
  37303. },
  37304. },
  37305. [
  37306. {
  37307. name: "Normal",
  37308. height: math.unit(58, "feet"),
  37309. default: true
  37310. },
  37311. ]
  37312. ))
  37313. characterMakers.push(() => makeCharacter(
  37314. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37315. {
  37316. side: {
  37317. height: math.unit(15, "feet"),
  37318. name: "Side",
  37319. image: {
  37320. source: "./media/characters/akitu/side.svg",
  37321. extra: 1421/1321,
  37322. bottom: 157/1578
  37323. }
  37324. },
  37325. front: {
  37326. height: math.unit(15, "feet"),
  37327. name: "Front",
  37328. image: {
  37329. source: "./media/characters/akitu/front.svg",
  37330. extra: 1435/1326,
  37331. bottom: 232/1667
  37332. }
  37333. },
  37334. },
  37335. [
  37336. {
  37337. name: "Normal",
  37338. height: math.unit(15, "feet"),
  37339. default: true
  37340. },
  37341. ]
  37342. ))
  37343. characterMakers.push(() => makeCharacter(
  37344. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37345. {
  37346. front: {
  37347. height: math.unit(10 + 8/12, "feet"),
  37348. name: "Front",
  37349. image: {
  37350. source: "./media/characters/azalie-croixland/front.svg",
  37351. extra: 1972/1856,
  37352. bottom: 31/2003
  37353. }
  37354. },
  37355. },
  37356. [
  37357. {
  37358. name: "Original Height",
  37359. height: math.unit(5 + 4/12, "feet")
  37360. },
  37361. {
  37362. name: "Normal Height",
  37363. height: math.unit(10 + 8/12, "feet"),
  37364. default: true
  37365. },
  37366. ]
  37367. ))
  37368. characterMakers.push(() => makeCharacter(
  37369. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37370. {
  37371. side: {
  37372. height: math.unit(7 + 1/12, "feet"),
  37373. weight: math.unit(245, "lb"),
  37374. name: "Side",
  37375. image: {
  37376. source: "./media/characters/kavus-kazian/side.svg",
  37377. extra: 349/342,
  37378. bottom: 15/364
  37379. }
  37380. },
  37381. },
  37382. [
  37383. {
  37384. name: "Normal",
  37385. height: math.unit(7 + 1/12, "feet"),
  37386. default: true
  37387. },
  37388. ]
  37389. ))
  37390. characterMakers.push(() => makeCharacter(
  37391. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37392. {
  37393. normalFront: {
  37394. height: math.unit(5 + 11/12, "feet"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/moonlight-rose/normal-front.svg",
  37398. extra: 1980/1825,
  37399. bottom: 18/1998
  37400. },
  37401. form: "normal",
  37402. default: true
  37403. },
  37404. normalBack: {
  37405. height: math.unit(5 + 11/12, "feet"),
  37406. name: "Back",
  37407. image: {
  37408. source: "./media/characters/moonlight-rose/normal-back.svg",
  37409. extra: 2010/1839,
  37410. bottom: 10/2020
  37411. },
  37412. form: "normal"
  37413. },
  37414. demonFront: {
  37415. height: math.unit(1.5, "earths"),
  37416. name: "Front",
  37417. image: {
  37418. source: "./media/characters/moonlight-rose/demon.svg",
  37419. extra: 1400/1294,
  37420. bottom: 45/1445
  37421. },
  37422. form: "demon",
  37423. default: true
  37424. },
  37425. terraFront: {
  37426. height: math.unit(1.5, "earths"),
  37427. name: "Front",
  37428. image: {
  37429. source: "./media/characters/moonlight-rose/terra.svg"
  37430. },
  37431. form: "terra",
  37432. default: true
  37433. },
  37434. jupiterFront: {
  37435. height: math.unit(69911*2, "km"),
  37436. name: "Front",
  37437. image: {
  37438. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37439. extra: 1367/1286,
  37440. bottom: 55/1422
  37441. },
  37442. form: "jupiter",
  37443. default: true
  37444. },
  37445. neptuneFront: {
  37446. height: math.unit(24622*2, "feet"),
  37447. name: "Front",
  37448. image: {
  37449. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37450. extra: 1851/1712,
  37451. bottom: 0/1851
  37452. },
  37453. form: "neptune",
  37454. default: true
  37455. },
  37456. },
  37457. [
  37458. {
  37459. name: "\"Natural\" Height",
  37460. height: math.unit(5 + 11/12, "feet"),
  37461. form: "normal"
  37462. },
  37463. {
  37464. name: "Smallest comfortable size",
  37465. height: math.unit(40, "meters"),
  37466. form: "normal"
  37467. },
  37468. {
  37469. name: "Common size",
  37470. height: math.unit(50, "km"),
  37471. form: "normal",
  37472. default: true
  37473. },
  37474. {
  37475. name: "Normal",
  37476. height: math.unit(1.5, "earths"),
  37477. form: "demon",
  37478. default: true
  37479. },
  37480. {
  37481. name: "Universal",
  37482. height: math.unit(15, "universes"),
  37483. form: "demon"
  37484. },
  37485. {
  37486. name: "Earth",
  37487. height: math.unit(1.5, "earths"),
  37488. form: "terra",
  37489. default: true
  37490. },
  37491. {
  37492. name: "Super Earth",
  37493. height: math.unit(67.5, "earths"),
  37494. form: "terra"
  37495. },
  37496. {
  37497. name: "Doesn't fit in a solar system...",
  37498. height: math.unit(1, "galaxy"),
  37499. form: "terra"
  37500. },
  37501. {
  37502. name: "Saturn",
  37503. height: math.unit(58232*2, "km"),
  37504. form: "jupiter"
  37505. },
  37506. {
  37507. name: "Jupiter",
  37508. height: math.unit(69911*2, "km"),
  37509. form: "jupiter",
  37510. default: true
  37511. },
  37512. {
  37513. name: "HD 100546 b",
  37514. height: math.unit(482938, "km"),
  37515. form: "jupiter"
  37516. },
  37517. {
  37518. name: "Enceladus",
  37519. height: math.unit(513*2, "km"),
  37520. form: "neptune"
  37521. },
  37522. {
  37523. name: "Europe",
  37524. height: math.unit(1560*2, "km"),
  37525. form: "neptune"
  37526. },
  37527. {
  37528. name: "Neptune",
  37529. height: math.unit(24622*2, "km"),
  37530. form: "neptune",
  37531. default: true
  37532. },
  37533. {
  37534. name: "CoRoT-9b",
  37535. height: math.unit(75067*2, "km"),
  37536. form: "neptune"
  37537. },
  37538. ],
  37539. {
  37540. "normal": {
  37541. name: "Normal",
  37542. default: true
  37543. },
  37544. "demon": {
  37545. name: "Demon"
  37546. },
  37547. "terra": {
  37548. name: "Terra"
  37549. },
  37550. "jupiter": {
  37551. name: "Jupiter"
  37552. },
  37553. "neptune": {
  37554. name: "Neptune"
  37555. }
  37556. }
  37557. ))
  37558. characterMakers.push(() => makeCharacter(
  37559. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37560. {
  37561. front: {
  37562. height: math.unit(16, "feet"),
  37563. weight: math.unit(610, "kg"),
  37564. name: "Front",
  37565. image: {
  37566. source: "./media/characters/huckle/front.svg",
  37567. extra: 1731/1625,
  37568. bottom: 33/1764
  37569. }
  37570. },
  37571. back: {
  37572. height: math.unit(16, "feet"),
  37573. weight: math.unit(610, "kg"),
  37574. name: "Back",
  37575. image: {
  37576. source: "./media/characters/huckle/back.svg",
  37577. extra: 1738/1651,
  37578. bottom: 37/1775
  37579. }
  37580. },
  37581. laughing: {
  37582. height: math.unit(3.75, "feet"),
  37583. name: "Laughing",
  37584. image: {
  37585. source: "./media/characters/huckle/laughing.svg"
  37586. }
  37587. },
  37588. angry: {
  37589. height: math.unit(4.15, "feet"),
  37590. name: "Angry",
  37591. image: {
  37592. source: "./media/characters/huckle/angry.svg"
  37593. }
  37594. },
  37595. },
  37596. [
  37597. {
  37598. name: "Normal",
  37599. height: math.unit(16, "feet"),
  37600. default: true
  37601. },
  37602. {
  37603. name: "Mini Macro",
  37604. height: math.unit(463, "feet")
  37605. },
  37606. {
  37607. name: "Macro",
  37608. height: math.unit(1680, "meters")
  37609. },
  37610. {
  37611. name: "Mega Macro",
  37612. height: math.unit(175, "km")
  37613. },
  37614. {
  37615. name: "Terra Macro",
  37616. height: math.unit(32, "gigameters")
  37617. },
  37618. {
  37619. name: "Multiverse+",
  37620. height: math.unit(2.56e23, "yottameters")
  37621. },
  37622. ]
  37623. ))
  37624. characterMakers.push(() => makeCharacter(
  37625. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37626. {
  37627. front: {
  37628. height: math.unit(6 + 9/12, "feet"),
  37629. weight: math.unit(280, "lb"),
  37630. name: "Front",
  37631. image: {
  37632. source: "./media/characters/candy/front.svg",
  37633. extra: 234/217,
  37634. bottom: 11/245
  37635. }
  37636. },
  37637. },
  37638. [
  37639. {
  37640. name: "Really Small",
  37641. height: math.unit(0.1, "nm")
  37642. },
  37643. {
  37644. name: "Micro",
  37645. height: math.unit(2, "inches")
  37646. },
  37647. {
  37648. name: "Normal",
  37649. height: math.unit(6 + 9/12, "feet"),
  37650. default: true
  37651. },
  37652. {
  37653. name: "Small Macro",
  37654. height: math.unit(69, "feet")
  37655. },
  37656. {
  37657. name: "Macro",
  37658. height: math.unit(160, "feet")
  37659. },
  37660. {
  37661. name: "Megamacro",
  37662. height: math.unit(22000, "miles")
  37663. },
  37664. {
  37665. name: "Gigamacro",
  37666. height: math.unit(50000, "miles")
  37667. },
  37668. ]
  37669. ))
  37670. characterMakers.push(() => makeCharacter(
  37671. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37672. {
  37673. front: {
  37674. height: math.unit(4, "feet"),
  37675. weight: math.unit(90, "lb"),
  37676. name: "Front",
  37677. image: {
  37678. source: "./media/characters/joey-mcdonald/front.svg",
  37679. extra: 1059/852,
  37680. bottom: 33/1092
  37681. }
  37682. },
  37683. back: {
  37684. height: math.unit(4, "feet"),
  37685. weight: math.unit(90, "lb"),
  37686. name: "Back",
  37687. image: {
  37688. source: "./media/characters/joey-mcdonald/back.svg",
  37689. extra: 1077/879,
  37690. bottom: 5/1082
  37691. }
  37692. },
  37693. frontKobold: {
  37694. height: math.unit(4, "feet"),
  37695. weight: math.unit(100, "lb"),
  37696. name: "Front-kobold",
  37697. image: {
  37698. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37699. extra: 1480/1367,
  37700. bottom: 0/1480
  37701. }
  37702. },
  37703. backKobold: {
  37704. height: math.unit(4, "feet"),
  37705. weight: math.unit(100, "lb"),
  37706. name: "Back-kobold",
  37707. image: {
  37708. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37709. extra: 1449/1361,
  37710. bottom: 0/1449
  37711. }
  37712. },
  37713. },
  37714. [
  37715. {
  37716. name: "Normal",
  37717. height: math.unit(4, "feet"),
  37718. default: true
  37719. },
  37720. ]
  37721. ))
  37722. characterMakers.push(() => makeCharacter(
  37723. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37724. {
  37725. front: {
  37726. height: math.unit(12 + 6/12, "feet"),
  37727. name: "Front",
  37728. image: {
  37729. source: "./media/characters/kass-lockheed/front.svg",
  37730. extra: 354/343,
  37731. bottom: 9/363
  37732. }
  37733. },
  37734. back: {
  37735. height: math.unit(12 + 6/12, "feet"),
  37736. name: "Back",
  37737. image: {
  37738. source: "./media/characters/kass-lockheed/back.svg",
  37739. extra: 364/352,
  37740. bottom: 3/367
  37741. }
  37742. },
  37743. dick: {
  37744. height: math.unit(3.12, "feet"),
  37745. name: "Dick",
  37746. image: {
  37747. source: "./media/characters/kass-lockheed/dick.svg"
  37748. }
  37749. },
  37750. head: {
  37751. height: math.unit(2.6, "feet"),
  37752. name: "Head",
  37753. image: {
  37754. source: "./media/characters/kass-lockheed/head.svg"
  37755. }
  37756. },
  37757. bleh: {
  37758. height: math.unit(2.85, "feet"),
  37759. name: "Bleh",
  37760. image: {
  37761. source: "./media/characters/kass-lockheed/bleh.svg"
  37762. }
  37763. },
  37764. smug: {
  37765. height: math.unit(2.85, "feet"),
  37766. name: "Smug",
  37767. image: {
  37768. source: "./media/characters/kass-lockheed/smug.svg"
  37769. }
  37770. },
  37771. },
  37772. [
  37773. {
  37774. name: "Normal",
  37775. height: math.unit(12 + 6/12, "feet"),
  37776. default: true
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37782. {
  37783. front: {
  37784. height: math.unit(6 + 2/12, "feet"),
  37785. name: "Front",
  37786. image: {
  37787. source: "./media/characters/taylor/front.svg",
  37788. extra: 639/495,
  37789. bottom: 12/651
  37790. }
  37791. },
  37792. },
  37793. [
  37794. {
  37795. name: "Normal",
  37796. height: math.unit(6 + 2/12, "feet"),
  37797. default: true
  37798. },
  37799. {
  37800. name: "Big",
  37801. height: math.unit(15, "feet")
  37802. },
  37803. {
  37804. name: "Lorg",
  37805. height: math.unit(80, "feet")
  37806. },
  37807. {
  37808. name: "Too Lorg",
  37809. height: math.unit(120, "feet")
  37810. },
  37811. ]
  37812. ))
  37813. characterMakers.push(() => makeCharacter(
  37814. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37815. {
  37816. front: {
  37817. height: math.unit(15, "feet"),
  37818. name: "Front",
  37819. image: {
  37820. source: "./media/characters/kaizer/front.svg",
  37821. extra: 1612/1436,
  37822. bottom: 43/1655
  37823. }
  37824. },
  37825. },
  37826. [
  37827. {
  37828. name: "Normal",
  37829. height: math.unit(15, "feet"),
  37830. default: true
  37831. },
  37832. ]
  37833. ))
  37834. characterMakers.push(() => makeCharacter(
  37835. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37836. {
  37837. front: {
  37838. height: math.unit(2, "feet"),
  37839. weight: math.unit(30, "lb"),
  37840. name: "Front",
  37841. image: {
  37842. source: "./media/characters/sandy/front.svg",
  37843. extra: 1439/1307,
  37844. bottom: 194/1633
  37845. }
  37846. },
  37847. },
  37848. [
  37849. {
  37850. name: "Normal",
  37851. height: math.unit(2, "feet"),
  37852. default: true
  37853. },
  37854. ]
  37855. ))
  37856. characterMakers.push(() => makeCharacter(
  37857. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37858. {
  37859. front: {
  37860. height: math.unit(3, "feet"),
  37861. name: "Front",
  37862. image: {
  37863. source: "./media/characters/mellvi/front.svg",
  37864. extra: 1831/1630,
  37865. bottom: 58/1889
  37866. }
  37867. },
  37868. },
  37869. [
  37870. {
  37871. name: "Normal",
  37872. height: math.unit(3, "feet"),
  37873. default: true
  37874. },
  37875. ]
  37876. ))
  37877. characterMakers.push(() => makeCharacter(
  37878. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37879. {
  37880. front: {
  37881. height: math.unit(5 + 11/12, "feet"),
  37882. weight: math.unit(200, "lb"),
  37883. name: "Front",
  37884. image: {
  37885. source: "./media/characters/shirou/front.svg",
  37886. extra: 2491/2383,
  37887. bottom: 189/2680
  37888. }
  37889. },
  37890. back: {
  37891. height: math.unit(5 + 11/12, "feet"),
  37892. weight: math.unit(200, "lb"),
  37893. name: "Back",
  37894. image: {
  37895. source: "./media/characters/shirou/back.svg",
  37896. extra: 2554/2450,
  37897. bottom: 76/2630
  37898. }
  37899. },
  37900. },
  37901. [
  37902. {
  37903. name: "Normal",
  37904. height: math.unit(5 + 11/12, "feet"),
  37905. default: true
  37906. },
  37907. ]
  37908. ))
  37909. characterMakers.push(() => makeCharacter(
  37910. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37911. {
  37912. front: {
  37913. height: math.unit(6 + 3/12, "feet"),
  37914. weight: math.unit(177, "lb"),
  37915. name: "Front",
  37916. image: {
  37917. source: "./media/characters/noryu/front.svg",
  37918. extra: 973/885,
  37919. bottom: 10/983
  37920. }
  37921. },
  37922. },
  37923. [
  37924. {
  37925. name: "Normal",
  37926. height: math.unit(6 + 3/12, "feet"),
  37927. default: true
  37928. },
  37929. ]
  37930. ))
  37931. characterMakers.push(() => makeCharacter(
  37932. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37933. {
  37934. front: {
  37935. height: math.unit(5 + 6/12, "feet"),
  37936. weight: math.unit(170, "lb"),
  37937. name: "Front",
  37938. image: {
  37939. source: "./media/characters/mevolas-rubenido/front.svg",
  37940. extra: 2109/1901,
  37941. bottom: 96/2205
  37942. }
  37943. },
  37944. },
  37945. [
  37946. {
  37947. name: "Normal",
  37948. height: math.unit(5 + 6/12, "feet"),
  37949. default: true
  37950. },
  37951. ]
  37952. ))
  37953. characterMakers.push(() => makeCharacter(
  37954. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37955. {
  37956. front: {
  37957. height: math.unit(100, "feet"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/dee/front.svg",
  37961. extra: 2153/2036,
  37962. bottom: 59/2212
  37963. }
  37964. },
  37965. back: {
  37966. height: math.unit(100, "feet"),
  37967. name: "Back",
  37968. image: {
  37969. source: "./media/characters/dee/back.svg",
  37970. extra: 2183/2058,
  37971. bottom: 75/2258
  37972. }
  37973. },
  37974. foot: {
  37975. height: math.unit(19.43, "feet"),
  37976. name: "Foot",
  37977. image: {
  37978. source: "./media/characters/dee/foot.svg"
  37979. }
  37980. },
  37981. hoof: {
  37982. height: math.unit(20.6, "feet"),
  37983. name: "Hoof",
  37984. image: {
  37985. source: "./media/characters/dee/hoof.svg"
  37986. }
  37987. },
  37988. },
  37989. [
  37990. {
  37991. name: "Macro",
  37992. height: math.unit(100, "feet"),
  37993. default: true
  37994. },
  37995. ]
  37996. ))
  37997. characterMakers.push(() => makeCharacter(
  37998. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37999. {
  38000. front: {
  38001. height: math.unit(5 + 6/12, "feet"),
  38002. name: "Front",
  38003. image: {
  38004. source: "./media/characters/teh/front.svg",
  38005. extra: 1002/847,
  38006. bottom: 62/1064
  38007. }
  38008. },
  38009. },
  38010. [
  38011. {
  38012. name: "Normal",
  38013. height: math.unit(5 + 6/12, "feet"),
  38014. default: true
  38015. },
  38016. ]
  38017. ))
  38018. characterMakers.push(() => makeCharacter(
  38019. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38020. {
  38021. side: {
  38022. height: math.unit(6 + 1/12, "feet"),
  38023. weight: math.unit(204, "lb"),
  38024. name: "Side",
  38025. image: {
  38026. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38027. extra: 974/775,
  38028. bottom: 169/1143
  38029. }
  38030. },
  38031. sitting: {
  38032. height: math.unit(6 + 2/12, "feet"),
  38033. weight: math.unit(204, "lb"),
  38034. name: "Sitting",
  38035. image: {
  38036. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38037. extra: 1175/964,
  38038. bottom: 378/1553
  38039. }
  38040. },
  38041. },
  38042. [
  38043. {
  38044. name: "Normal",
  38045. height: math.unit(6 + 1/12, "feet"),
  38046. default: true
  38047. },
  38048. ]
  38049. ))
  38050. characterMakers.push(() => makeCharacter(
  38051. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38052. {
  38053. front: {
  38054. height: math.unit(6, "inches"),
  38055. name: "Front",
  38056. image: {
  38057. source: "./media/characters/tululi/front.svg",
  38058. extra: 1997/1876,
  38059. bottom: 20/2017
  38060. }
  38061. },
  38062. },
  38063. [
  38064. {
  38065. name: "Normal",
  38066. height: math.unit(6, "inches"),
  38067. default: true
  38068. },
  38069. ]
  38070. ))
  38071. characterMakers.push(() => makeCharacter(
  38072. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38073. {
  38074. front: {
  38075. height: math.unit(4 + 1/12, "feet"),
  38076. name: "Front",
  38077. image: {
  38078. source: "./media/characters/star/front.svg",
  38079. extra: 1493/1189,
  38080. bottom: 48/1541
  38081. }
  38082. },
  38083. },
  38084. [
  38085. {
  38086. name: "Normal",
  38087. height: math.unit(4 + 1/12, "feet"),
  38088. default: true
  38089. },
  38090. ]
  38091. ))
  38092. characterMakers.push(() => makeCharacter(
  38093. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38094. {
  38095. front: {
  38096. height: math.unit(6 + 3/12, "feet"),
  38097. name: "Front",
  38098. image: {
  38099. source: "./media/characters/comet/front.svg",
  38100. extra: 1681/1462,
  38101. bottom: 26/1707
  38102. }
  38103. },
  38104. },
  38105. [
  38106. {
  38107. name: "Normal",
  38108. height: math.unit(6 + 3/12, "feet"),
  38109. default: true
  38110. },
  38111. ]
  38112. ))
  38113. characterMakers.push(() => makeCharacter(
  38114. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38115. {
  38116. front: {
  38117. height: math.unit(950, "feet"),
  38118. name: "Front",
  38119. image: {
  38120. source: "./media/characters/vortex/front.svg",
  38121. extra: 1497/1434,
  38122. bottom: 56/1553
  38123. }
  38124. },
  38125. maw: {
  38126. height: math.unit(285, "feet"),
  38127. name: "Maw",
  38128. image: {
  38129. source: "./media/characters/vortex/maw.svg"
  38130. }
  38131. },
  38132. },
  38133. [
  38134. {
  38135. name: "Macro",
  38136. height: math.unit(950, "feet"),
  38137. default: true
  38138. },
  38139. ]
  38140. ))
  38141. characterMakers.push(() => makeCharacter(
  38142. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38143. {
  38144. front: {
  38145. height: math.unit(600, "feet"),
  38146. weight: math.unit(0.02, "grams"),
  38147. name: "Front",
  38148. image: {
  38149. source: "./media/characters/doodle/front.svg",
  38150. extra: 1578/1413,
  38151. bottom: 37/1615
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Macro",
  38158. height: math.unit(600, "feet"),
  38159. default: true
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38165. {
  38166. front: {
  38167. height: math.unit(6 + 6/12, "feet"),
  38168. name: "Front",
  38169. image: {
  38170. source: "./media/characters/jai/front.svg",
  38171. extra: 1645/1534,
  38172. bottom: 115/1760
  38173. }
  38174. },
  38175. },
  38176. [
  38177. {
  38178. name: "Normal",
  38179. height: math.unit(6 + 6/12, "feet"),
  38180. default: true
  38181. },
  38182. ]
  38183. ))
  38184. characterMakers.push(() => makeCharacter(
  38185. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38186. {
  38187. front: {
  38188. height: math.unit(6 + 8/12, "feet"),
  38189. name: "Front",
  38190. image: {
  38191. source: "./media/characters/pixel/front.svg",
  38192. extra: 1900/1735,
  38193. bottom: 63/1963
  38194. }
  38195. },
  38196. },
  38197. [
  38198. {
  38199. name: "Normal",
  38200. height: math.unit(6 + 8/12, "feet"),
  38201. default: true
  38202. },
  38203. ]
  38204. ))
  38205. characterMakers.push(() => makeCharacter(
  38206. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38207. {
  38208. back: {
  38209. height: math.unit(4 + 1/12, "feet"),
  38210. weight: math.unit(75, "lb"),
  38211. name: "Back",
  38212. image: {
  38213. source: "./media/characters/rhett/back.svg",
  38214. extra: 930/878,
  38215. bottom: 25/955
  38216. }
  38217. },
  38218. front: {
  38219. height: math.unit(4 + 1/12, "feet"),
  38220. weight: math.unit(75, "lb"),
  38221. name: "Front",
  38222. image: {
  38223. source: "./media/characters/rhett/front.svg",
  38224. extra: 1682/1586,
  38225. bottom: 92/1774
  38226. }
  38227. },
  38228. },
  38229. [
  38230. {
  38231. name: "Micro",
  38232. height: math.unit(8, "inches")
  38233. },
  38234. {
  38235. name: "Tiny",
  38236. height: math.unit(2, "feet")
  38237. },
  38238. {
  38239. name: "Normal",
  38240. height: math.unit(4 + 1/12, "feet"),
  38241. default: true
  38242. },
  38243. ]
  38244. ))
  38245. characterMakers.push(() => makeCharacter(
  38246. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38247. {
  38248. front: {
  38249. height: math.unit(3 + 3/12, "feet"),
  38250. name: "Front",
  38251. image: {
  38252. source: "./media/characters/penny/front.svg",
  38253. extra: 1406/1311,
  38254. bottom: 26/1432
  38255. }
  38256. },
  38257. },
  38258. [
  38259. {
  38260. name: "Normal",
  38261. height: math.unit(3 + 3/12, "feet"),
  38262. default: true
  38263. },
  38264. ]
  38265. ))
  38266. characterMakers.push(() => makeCharacter(
  38267. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38268. {
  38269. front: {
  38270. height: math.unit(4 + 11/12, "feet"),
  38271. name: "Front",
  38272. image: {
  38273. source: "./media/characters/monty/front.svg",
  38274. extra: 1479/1209,
  38275. bottom: 0/1479
  38276. }
  38277. },
  38278. },
  38279. [
  38280. {
  38281. name: "Normal",
  38282. height: math.unit(4 + 11/12, "feet"),
  38283. default: true
  38284. },
  38285. ]
  38286. ))
  38287. characterMakers.push(() => makeCharacter(
  38288. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38289. {
  38290. front: {
  38291. height: math.unit(8 + 4/12, "feet"),
  38292. name: "Front",
  38293. image: {
  38294. source: "./media/characters/sterling/front.svg",
  38295. extra: 1420/1236,
  38296. bottom: 27/1447
  38297. }
  38298. },
  38299. },
  38300. [
  38301. {
  38302. name: "Normal",
  38303. height: math.unit(8 + 4/12, "feet"),
  38304. default: true
  38305. },
  38306. ]
  38307. ))
  38308. characterMakers.push(() => makeCharacter(
  38309. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38310. {
  38311. front: {
  38312. height: math.unit(15, "feet"),
  38313. name: "Front",
  38314. image: {
  38315. source: "./media/characters/marble/front.svg",
  38316. extra: 973/937,
  38317. bottom: 32/1005
  38318. }
  38319. },
  38320. },
  38321. [
  38322. {
  38323. name: "Normal",
  38324. height: math.unit(15, "feet"),
  38325. default: true
  38326. },
  38327. ]
  38328. ))
  38329. characterMakers.push(() => makeCharacter(
  38330. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38331. {
  38332. front: {
  38333. height: math.unit(3, "inches"),
  38334. name: "Front",
  38335. image: {
  38336. source: "./media/characters/powder/front.svg",
  38337. extra: 1504/1334,
  38338. bottom: 518/2022
  38339. }
  38340. },
  38341. },
  38342. [
  38343. {
  38344. name: "Normal",
  38345. height: math.unit(3, "inches"),
  38346. default: true
  38347. },
  38348. ]
  38349. ))
  38350. characterMakers.push(() => makeCharacter(
  38351. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38352. {
  38353. front: {
  38354. height: math.unit(4 + 5/12, "feet"),
  38355. name: "Front",
  38356. image: {
  38357. source: "./media/characters/joey-raccoon/front.svg",
  38358. extra: 1273/1197,
  38359. bottom: 0/1273
  38360. }
  38361. },
  38362. },
  38363. [
  38364. {
  38365. name: "Normal",
  38366. height: math.unit(4 + 5/12, "feet"),
  38367. default: true
  38368. },
  38369. ]
  38370. ))
  38371. characterMakers.push(() => makeCharacter(
  38372. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38373. {
  38374. front: {
  38375. height: math.unit(8 + 4/12, "feet"),
  38376. name: "Front",
  38377. image: {
  38378. source: "./media/characters/vick/front.svg",
  38379. extra: 2187/2118,
  38380. bottom: 47/2234
  38381. }
  38382. },
  38383. },
  38384. [
  38385. {
  38386. name: "Normal",
  38387. height: math.unit(8 + 4/12, "feet"),
  38388. default: true
  38389. },
  38390. ]
  38391. ))
  38392. characterMakers.push(() => makeCharacter(
  38393. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38394. {
  38395. front: {
  38396. height: math.unit(5 + 5/12, "feet"),
  38397. name: "Front",
  38398. image: {
  38399. source: "./media/characters/mitsy/front.svg",
  38400. extra: 1842/1695,
  38401. bottom: 0/1842
  38402. }
  38403. },
  38404. },
  38405. [
  38406. {
  38407. name: "Normal",
  38408. height: math.unit(5 + 5/12, "feet"),
  38409. default: true
  38410. },
  38411. ]
  38412. ))
  38413. characterMakers.push(() => makeCharacter(
  38414. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38415. {
  38416. front: {
  38417. height: math.unit(6 + 3/12, "feet"),
  38418. name: "Front",
  38419. image: {
  38420. source: "./media/characters/silvy/front.svg",
  38421. extra: 1995/1836,
  38422. bottom: 225/2220
  38423. }
  38424. },
  38425. },
  38426. [
  38427. {
  38428. name: "Normal",
  38429. height: math.unit(6 + 3/12, "feet"),
  38430. default: true
  38431. },
  38432. ]
  38433. ))
  38434. characterMakers.push(() => makeCharacter(
  38435. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38436. {
  38437. front: {
  38438. height: math.unit(3 + 8/12, "feet"),
  38439. name: "Front",
  38440. image: {
  38441. source: "./media/characters/rodney/front.svg",
  38442. extra: 1956/1747,
  38443. bottom: 31/1987
  38444. }
  38445. },
  38446. frontDressed: {
  38447. height: math.unit(2.9, "feet"),
  38448. name: "Front (Dressed)",
  38449. image: {
  38450. source: "./media/characters/rodney/front-dressed.svg",
  38451. extra: 1382/1241,
  38452. bottom: 385/1767
  38453. }
  38454. },
  38455. },
  38456. [
  38457. {
  38458. name: "Normal",
  38459. height: math.unit(3 + 8/12, "feet"),
  38460. default: true
  38461. },
  38462. ]
  38463. ))
  38464. characterMakers.push(() => makeCharacter(
  38465. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38466. {
  38467. front: {
  38468. height: math.unit(5 + 9/12, "feet"),
  38469. weight: math.unit(194, "lbs"),
  38470. name: "Front",
  38471. image: {
  38472. source: "./media/characters/zakail-sudekai/front.svg",
  38473. extra: 2696/2533,
  38474. bottom: 248/2944
  38475. }
  38476. },
  38477. maw: {
  38478. height: math.unit(1.35, "feet"),
  38479. name: "Maw",
  38480. image: {
  38481. source: "./media/characters/zakail-sudekai/maw.svg"
  38482. }
  38483. },
  38484. },
  38485. [
  38486. {
  38487. name: "Normal",
  38488. height: math.unit(5 + 9/12, "feet"),
  38489. default: true
  38490. },
  38491. ]
  38492. ))
  38493. characterMakers.push(() => makeCharacter(
  38494. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38495. {
  38496. front: {
  38497. height: math.unit(8 + 4/12, "feet"),
  38498. weight: math.unit(1200, "lb"),
  38499. name: "Front",
  38500. image: {
  38501. source: "./media/characters/eleanor/front.svg",
  38502. extra: 1226/1192,
  38503. bottom: 52/1278
  38504. }
  38505. },
  38506. back: {
  38507. height: math.unit(8 + 4/12, "feet"),
  38508. weight: math.unit(1200, "lb"),
  38509. name: "Back",
  38510. image: {
  38511. source: "./media/characters/eleanor/back.svg",
  38512. extra: 1242/1184,
  38513. bottom: 60/1302
  38514. }
  38515. },
  38516. head: {
  38517. height: math.unit(2.62, "feet"),
  38518. name: "Head",
  38519. image: {
  38520. source: "./media/characters/eleanor/head.svg"
  38521. }
  38522. },
  38523. },
  38524. [
  38525. {
  38526. name: "Normal",
  38527. height: math.unit(8 + 4/12, "feet"),
  38528. default: true
  38529. },
  38530. ]
  38531. ))
  38532. characterMakers.push(() => makeCharacter(
  38533. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38534. {
  38535. front: {
  38536. height: math.unit(8 + 4/12, "feet"),
  38537. weight: math.unit(750, "lb"),
  38538. name: "Front",
  38539. image: {
  38540. source: "./media/characters/tanya/front.svg",
  38541. extra: 1749/1615,
  38542. bottom: 33/1782
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Normal",
  38549. height: math.unit(8 + 4/12, "feet"),
  38550. default: true
  38551. },
  38552. ]
  38553. ))
  38554. characterMakers.push(() => makeCharacter(
  38555. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38556. {
  38557. front: {
  38558. height: math.unit(5, "feet"),
  38559. weight: math.unit(225, "lb"),
  38560. name: "Front",
  38561. image: {
  38562. source: "./media/characters/cindy/front.svg",
  38563. extra: 1320/1250,
  38564. bottom: 42/1362
  38565. }
  38566. },
  38567. frontDressed: {
  38568. height: math.unit(5, "feet"),
  38569. weight: math.unit(225, "lb"),
  38570. name: "Front (Dressed)",
  38571. image: {
  38572. source: "./media/characters/cindy/front-dressed.svg",
  38573. extra: 1320/1250,
  38574. bottom: 42/1362
  38575. }
  38576. },
  38577. back: {
  38578. height: math.unit(5, "feet"),
  38579. weight: math.unit(225, "lb"),
  38580. name: "Back",
  38581. image: {
  38582. source: "./media/characters/cindy/back.svg",
  38583. extra: 1384/1346,
  38584. bottom: 14/1398
  38585. }
  38586. },
  38587. },
  38588. [
  38589. {
  38590. name: "Normal",
  38591. height: math.unit(5, "feet"),
  38592. default: true
  38593. },
  38594. ]
  38595. ))
  38596. characterMakers.push(() => makeCharacter(
  38597. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38598. {
  38599. front: {
  38600. height: math.unit(6 + 9/12, "feet"),
  38601. weight: math.unit(440, "lb"),
  38602. name: "Front",
  38603. image: {
  38604. source: "./media/characters/wilbur-owen/front.svg",
  38605. extra: 1575/1448,
  38606. bottom: 72/1647
  38607. }
  38608. },
  38609. back: {
  38610. height: math.unit(6 + 9/12, "feet"),
  38611. weight: math.unit(440, "lb"),
  38612. name: "Back",
  38613. image: {
  38614. source: "./media/characters/wilbur-owen/back.svg",
  38615. extra: 1578/1445,
  38616. bottom: 36/1614
  38617. }
  38618. },
  38619. },
  38620. [
  38621. {
  38622. name: "Normal",
  38623. height: math.unit(6 + 9/12, "feet"),
  38624. default: true
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38630. {
  38631. front: {
  38632. height: math.unit(6 + 5/12, "feet"),
  38633. weight: math.unit(650, "lb"),
  38634. name: "Front",
  38635. image: {
  38636. source: "./media/characters/keegan/front.svg",
  38637. extra: 2387/2198,
  38638. bottom: 33/2420
  38639. }
  38640. },
  38641. side: {
  38642. height: math.unit(6 + 5/12, "feet"),
  38643. weight: math.unit(650, "lb"),
  38644. name: "Side",
  38645. image: {
  38646. source: "./media/characters/keegan/side.svg",
  38647. extra: 2390/2202,
  38648. bottom: 47/2437
  38649. }
  38650. },
  38651. back: {
  38652. height: math.unit(6 + 5/12, "feet"),
  38653. weight: math.unit(650, "lb"),
  38654. name: "Back",
  38655. image: {
  38656. source: "./media/characters/keegan/back.svg",
  38657. extra: 2418/2268,
  38658. bottom: 15/2433
  38659. }
  38660. },
  38661. frontSfw: {
  38662. height: math.unit(6 + 5/12, "feet"),
  38663. weight: math.unit(650, "lb"),
  38664. name: "Front (SFW)",
  38665. image: {
  38666. source: "./media/characters/keegan/front-sfw.svg",
  38667. extra: 2387/2198,
  38668. bottom: 33/2420
  38669. }
  38670. },
  38671. beans: {
  38672. height: math.unit(1.85, "feet"),
  38673. name: "Beans",
  38674. image: {
  38675. source: "./media/characters/keegan/beans.svg"
  38676. }
  38677. },
  38678. },
  38679. [
  38680. {
  38681. name: "Normal",
  38682. height: math.unit(6 + 5/12, "feet"),
  38683. default: true
  38684. },
  38685. ]
  38686. ))
  38687. characterMakers.push(() => makeCharacter(
  38688. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38689. {
  38690. front: {
  38691. height: math.unit(9, "feet"),
  38692. name: "Front",
  38693. image: {
  38694. source: "./media/characters/colton/front.svg",
  38695. extra: 1589/1326,
  38696. bottom: 139/1728
  38697. }
  38698. },
  38699. },
  38700. [
  38701. {
  38702. name: "Normal",
  38703. height: math.unit(9, "feet"),
  38704. default: true
  38705. },
  38706. ]
  38707. ))
  38708. characterMakers.push(() => makeCharacter(
  38709. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38710. {
  38711. front: {
  38712. height: math.unit(2 + 9/12, "feet"),
  38713. name: "Front",
  38714. image: {
  38715. source: "./media/characters/bora/front.svg",
  38716. extra: 1265/1250,
  38717. bottom: 24/1289
  38718. }
  38719. },
  38720. },
  38721. [
  38722. {
  38723. name: "Normal",
  38724. height: math.unit(2 + 9/12, "feet"),
  38725. default: true
  38726. },
  38727. ]
  38728. ))
  38729. characterMakers.push(() => makeCharacter(
  38730. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38731. {
  38732. front: {
  38733. height: math.unit(8, "feet"),
  38734. name: "Front",
  38735. image: {
  38736. source: "./media/characters/myu-myu/front.svg",
  38737. extra: 1949/1857,
  38738. bottom: 90/2039
  38739. }
  38740. },
  38741. },
  38742. [
  38743. {
  38744. name: "Normal",
  38745. height: math.unit(8, "feet"),
  38746. default: true
  38747. },
  38748. {
  38749. name: "Big",
  38750. height: math.unit(15, "feet")
  38751. },
  38752. {
  38753. name: "BIG",
  38754. height: math.unit(25, "feet")
  38755. },
  38756. ]
  38757. ))
  38758. characterMakers.push(() => makeCharacter(
  38759. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38760. {
  38761. side: {
  38762. height: math.unit(7 + 5/12, "feet"),
  38763. weight: math.unit(2800, "lb"),
  38764. name: "Side",
  38765. image: {
  38766. source: "./media/characters/haloren/side.svg",
  38767. extra: 1793/409,
  38768. bottom: 59/1852
  38769. }
  38770. },
  38771. frontPaw: {
  38772. height: math.unit(2.36, "feet"),
  38773. name: "Front paw",
  38774. image: {
  38775. source: "./media/characters/haloren/front-paw.svg"
  38776. }
  38777. },
  38778. hindPaw: {
  38779. height: math.unit(3.18, "feet"),
  38780. name: "Hind paw",
  38781. image: {
  38782. source: "./media/characters/haloren/hind-paw.svg"
  38783. }
  38784. },
  38785. maw: {
  38786. height: math.unit(5.05, "feet"),
  38787. name: "Maw",
  38788. image: {
  38789. source: "./media/characters/haloren/maw.svg"
  38790. }
  38791. },
  38792. dick: {
  38793. height: math.unit(2.90, "feet"),
  38794. name: "Dick",
  38795. image: {
  38796. source: "./media/characters/haloren/dick.svg"
  38797. }
  38798. },
  38799. },
  38800. [
  38801. {
  38802. name: "Normal",
  38803. height: math.unit(7 + 5/12, "feet"),
  38804. default: true
  38805. },
  38806. {
  38807. name: "Enhanced",
  38808. height: math.unit(14 + 3/12, "feet")
  38809. },
  38810. ]
  38811. ))
  38812. characterMakers.push(() => makeCharacter(
  38813. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38814. {
  38815. front: {
  38816. height: math.unit(171, "cm"),
  38817. name: "Front",
  38818. image: {
  38819. source: "./media/characters/kimmy/front.svg",
  38820. extra: 1491/1435,
  38821. bottom: 53/1544
  38822. }
  38823. },
  38824. },
  38825. [
  38826. {
  38827. name: "Small",
  38828. height: math.unit(9, "cm")
  38829. },
  38830. {
  38831. name: "Normal",
  38832. height: math.unit(171, "cm"),
  38833. default: true
  38834. },
  38835. ]
  38836. ))
  38837. characterMakers.push(() => makeCharacter(
  38838. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38839. {
  38840. front: {
  38841. height: math.unit(8, "feet"),
  38842. weight: math.unit(300, "lb"),
  38843. name: "Front",
  38844. image: {
  38845. source: "./media/characters/galeboomer/front.svg",
  38846. extra: 4651/4415,
  38847. bottom: 162/4813
  38848. }
  38849. },
  38850. back: {
  38851. height: math.unit(8, "feet"),
  38852. weight: math.unit(300, "lb"),
  38853. name: "Back",
  38854. image: {
  38855. source: "./media/characters/galeboomer/back.svg",
  38856. extra: 4544/4314,
  38857. bottom: 16/4560
  38858. }
  38859. },
  38860. frontAlt: {
  38861. height: math.unit(8, "feet"),
  38862. weight: math.unit(300, "lb"),
  38863. name: "Front (Alt)",
  38864. image: {
  38865. source: "./media/characters/galeboomer/front-alt.svg",
  38866. extra: 4458/4228,
  38867. bottom: 68/4526
  38868. }
  38869. },
  38870. maw: {
  38871. height: math.unit(1.2, "feet"),
  38872. name: "Maw",
  38873. image: {
  38874. source: "./media/characters/galeboomer/maw.svg"
  38875. }
  38876. },
  38877. },
  38878. [
  38879. {
  38880. name: "Normal",
  38881. height: math.unit(8, "feet"),
  38882. default: true
  38883. },
  38884. ]
  38885. ))
  38886. characterMakers.push(() => makeCharacter(
  38887. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38888. {
  38889. front: {
  38890. height: math.unit(5 + 9/12, "feet"),
  38891. weight: math.unit(120, "lb"),
  38892. name: "Front",
  38893. image: {
  38894. source: "./media/characters/chyr/front.svg",
  38895. extra: 1323/1254,
  38896. bottom: 63/1386
  38897. }
  38898. },
  38899. back: {
  38900. height: math.unit(5 + 9/12, "feet"),
  38901. weight: math.unit(120, "lb"),
  38902. name: "Back",
  38903. image: {
  38904. source: "./media/characters/chyr/back.svg",
  38905. extra: 1323/1252,
  38906. bottom: 48/1371
  38907. }
  38908. },
  38909. },
  38910. [
  38911. {
  38912. name: "Normal",
  38913. height: math.unit(5 + 9/12, "feet"),
  38914. default: true
  38915. },
  38916. ]
  38917. ))
  38918. characterMakers.push(() => makeCharacter(
  38919. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38920. {
  38921. front: {
  38922. height: math.unit(7, "feet"),
  38923. weight: math.unit(310, "lb"),
  38924. name: "Front",
  38925. image: {
  38926. source: "./media/characters/solarus/front.svg",
  38927. extra: 2415/2021,
  38928. bottom: 103/2518
  38929. }
  38930. },
  38931. back: {
  38932. height: math.unit(7, "feet"),
  38933. weight: math.unit(310, "lb"),
  38934. name: "Back",
  38935. image: {
  38936. source: "./media/characters/solarus/back.svg",
  38937. extra: 2463/2089,
  38938. bottom: 79/2542
  38939. }
  38940. },
  38941. },
  38942. [
  38943. {
  38944. name: "Normal",
  38945. height: math.unit(7, "feet"),
  38946. default: true
  38947. },
  38948. ]
  38949. ))
  38950. characterMakers.push(() => makeCharacter(
  38951. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38952. {
  38953. front: {
  38954. height: math.unit(16, "feet"),
  38955. name: "Front",
  38956. image: {
  38957. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38958. extra: 1844/1780,
  38959. bottom: 58/1902
  38960. }
  38961. },
  38962. winterCoat: {
  38963. height: math.unit(16, "feet"),
  38964. name: "Winter Coat",
  38965. image: {
  38966. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38967. extra: 1807/1775,
  38968. bottom: 69/1876
  38969. }
  38970. },
  38971. },
  38972. [
  38973. {
  38974. name: "Normal",
  38975. height: math.unit(16, "feet"),
  38976. default: true
  38977. },
  38978. {
  38979. name: "Chicago Size",
  38980. height: math.unit(560, "feet")
  38981. },
  38982. ]
  38983. ))
  38984. characterMakers.push(() => makeCharacter(
  38985. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38986. {
  38987. front: {
  38988. height: math.unit(11 + 6/12, "feet"),
  38989. weight: math.unit(1366, "lb"),
  38990. name: "Front",
  38991. image: {
  38992. source: "./media/characters/lexor/front.svg",
  38993. extra: 1560/1481,
  38994. bottom: 211/1771
  38995. }
  38996. },
  38997. back: {
  38998. height: math.unit(11 + 6/12, "feet"),
  38999. weight: math.unit(1366, "lb"),
  39000. name: "Back",
  39001. image: {
  39002. source: "./media/characters/lexor/back.svg",
  39003. extra: 1614/1533,
  39004. bottom: 76/1690
  39005. }
  39006. },
  39007. maw: {
  39008. height: math.unit(3, "feet"),
  39009. name: "Maw",
  39010. image: {
  39011. source: "./media/characters/lexor/maw.svg"
  39012. }
  39013. },
  39014. dick: {
  39015. height: math.unit(2.59, "feet"),
  39016. name: "Dick",
  39017. image: {
  39018. source: "./media/characters/lexor/dick.svg"
  39019. }
  39020. },
  39021. },
  39022. [
  39023. {
  39024. name: "Normal",
  39025. height: math.unit(11 + 6/12, "feet"),
  39026. default: true
  39027. },
  39028. ]
  39029. ))
  39030. characterMakers.push(() => makeCharacter(
  39031. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39032. {
  39033. front: {
  39034. height: math.unit(5 + 8/12, "feet"),
  39035. name: "Front",
  39036. image: {
  39037. source: "./media/characters/magnum/front.svg",
  39038. extra: 942/855,
  39039. bottom: 26/968
  39040. }
  39041. },
  39042. },
  39043. [
  39044. {
  39045. name: "Normal",
  39046. height: math.unit(5 + 8/12, "feet"),
  39047. default: true
  39048. },
  39049. ]
  39050. ))
  39051. characterMakers.push(() => makeCharacter(
  39052. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39053. {
  39054. front: {
  39055. height: math.unit(18 + 4/12, "feet"),
  39056. weight: math.unit(1500, "kg"),
  39057. name: "Front",
  39058. image: {
  39059. source: "./media/characters/solas-sharpsman/front.svg",
  39060. extra: 1698/1589,
  39061. bottom: 0/1698
  39062. }
  39063. },
  39064. },
  39065. [
  39066. {
  39067. name: "Normal",
  39068. height: math.unit(18 + 4/12, "feet"),
  39069. default: true
  39070. },
  39071. ]
  39072. ))
  39073. characterMakers.push(() => makeCharacter(
  39074. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39075. {
  39076. front: {
  39077. height: math.unit(5 + 5/12, "feet"),
  39078. weight: math.unit(180, "lb"),
  39079. name: "Front",
  39080. image: {
  39081. source: "./media/characters/october/front.svg",
  39082. extra: 1800/1650,
  39083. bottom: 0/1800
  39084. }
  39085. },
  39086. frontNsfw: {
  39087. height: math.unit(5 + 5/12, "feet"),
  39088. weight: math.unit(180, "lb"),
  39089. name: "Front (NSFW)",
  39090. image: {
  39091. source: "./media/characters/october/front-nsfw.svg",
  39092. extra: 1392/1307,
  39093. bottom: 42/1434
  39094. }
  39095. },
  39096. },
  39097. [
  39098. {
  39099. name: "Normal",
  39100. height: math.unit(5 + 5/12, "feet"),
  39101. default: true
  39102. },
  39103. ]
  39104. ))
  39105. characterMakers.push(() => makeCharacter(
  39106. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39107. {
  39108. front: {
  39109. height: math.unit(8 + 6/12, "feet"),
  39110. name: "Front",
  39111. image: {
  39112. source: "./media/characters/essynkardi/front.svg",
  39113. extra: 1541/1457,
  39114. bottom: 47/1588
  39115. }
  39116. },
  39117. },
  39118. [
  39119. {
  39120. name: "Normal",
  39121. height: math.unit(8 + 6/12, "feet"),
  39122. default: true
  39123. },
  39124. ]
  39125. ))
  39126. characterMakers.push(() => makeCharacter(
  39127. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39128. {
  39129. front: {
  39130. height: math.unit(6 + 6/12, "feet"),
  39131. weight: math.unit(7, "lb"),
  39132. name: "Front",
  39133. image: {
  39134. source: "./media/characters/icky/front.svg",
  39135. extra: 813/782,
  39136. bottom: 66/879
  39137. }
  39138. },
  39139. back: {
  39140. height: math.unit(6 + 6/12, "feet"),
  39141. weight: math.unit(7, "lb"),
  39142. name: "Back",
  39143. image: {
  39144. source: "./media/characters/icky/back.svg",
  39145. extra: 754/735,
  39146. bottom: 56/810
  39147. }
  39148. },
  39149. },
  39150. [
  39151. {
  39152. name: "Normal",
  39153. height: math.unit(6 + 6/12, "feet"),
  39154. default: true
  39155. },
  39156. ]
  39157. ))
  39158. characterMakers.push(() => makeCharacter(
  39159. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39160. {
  39161. front: {
  39162. height: math.unit(15, "feet"),
  39163. name: "Front",
  39164. image: {
  39165. source: "./media/characters/rojas/front.svg",
  39166. extra: 1462/1408,
  39167. bottom: 95/1557
  39168. }
  39169. },
  39170. back: {
  39171. height: math.unit(15, "feet"),
  39172. name: "Back",
  39173. image: {
  39174. source: "./media/characters/rojas/back.svg",
  39175. extra: 1023/954,
  39176. bottom: 28/1051
  39177. }
  39178. },
  39179. },
  39180. [
  39181. {
  39182. name: "Normal",
  39183. height: math.unit(15, "feet"),
  39184. default: true
  39185. },
  39186. ]
  39187. ))
  39188. characterMakers.push(() => makeCharacter(
  39189. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39190. {
  39191. frontHuman: {
  39192. height: math.unit(5 + 7/12, "feet"),
  39193. name: "Front (Human)",
  39194. image: {
  39195. source: "./media/characters/alek-dryagan/front-human.svg",
  39196. extra: 1687/1667,
  39197. bottom: 69/1756
  39198. }
  39199. },
  39200. backHuman: {
  39201. height: math.unit(5 + 7/12, "feet"),
  39202. name: "Back (Human)",
  39203. image: {
  39204. source: "./media/characters/alek-dryagan/back-human.svg",
  39205. extra: 1670/1649,
  39206. bottom: 65/1735
  39207. }
  39208. },
  39209. frontDemi: {
  39210. height: math.unit(65, "feet"),
  39211. name: "Front (Demi)",
  39212. image: {
  39213. source: "./media/characters/alek-dryagan/front-demi.svg",
  39214. extra: 1669/1642,
  39215. bottom: 49/1718
  39216. }
  39217. },
  39218. backDemi: {
  39219. height: math.unit(65, "feet"),
  39220. name: "Back (Demi)",
  39221. image: {
  39222. source: "./media/characters/alek-dryagan/back-demi.svg",
  39223. extra: 1658/1637,
  39224. bottom: 40/1698
  39225. }
  39226. },
  39227. mawHuman: {
  39228. height: math.unit(0.3, "feet"),
  39229. name: "Maw (Human)",
  39230. image: {
  39231. source: "./media/characters/alek-dryagan/maw-human.svg"
  39232. }
  39233. },
  39234. mawDemi: {
  39235. height: math.unit(3.8, "feet"),
  39236. name: "Maw (Demi)",
  39237. image: {
  39238. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39239. }
  39240. },
  39241. },
  39242. [
  39243. {
  39244. name: "Normal",
  39245. height: math.unit(5 + 7/12, "feet"),
  39246. default: true
  39247. },
  39248. ]
  39249. ))
  39250. characterMakers.push(() => makeCharacter(
  39251. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39252. {
  39253. frontHuman: {
  39254. height: math.unit(5 + 2/12, "feet"),
  39255. name: "Front (Human)",
  39256. image: {
  39257. source: "./media/characters/gen/front-human.svg",
  39258. extra: 1627/1538,
  39259. bottom: 71/1698
  39260. }
  39261. },
  39262. backHuman: {
  39263. height: math.unit(5 + 2/12, "feet"),
  39264. name: "Back (Human)",
  39265. image: {
  39266. source: "./media/characters/gen/back-human.svg",
  39267. extra: 1638/1548,
  39268. bottom: 69/1707
  39269. }
  39270. },
  39271. frontDemi: {
  39272. height: math.unit(5 + 2/12, "feet"),
  39273. name: "Front (Demi)",
  39274. image: {
  39275. source: "./media/characters/gen/front-demi.svg",
  39276. extra: 1627/1538,
  39277. bottom: 71/1698
  39278. }
  39279. },
  39280. backDemi: {
  39281. height: math.unit(5 + 2/12, "feet"),
  39282. name: "Back (Demi)",
  39283. image: {
  39284. source: "./media/characters/gen/back-demi.svg",
  39285. extra: 1638/1548,
  39286. bottom: 69/1707
  39287. }
  39288. },
  39289. },
  39290. [
  39291. {
  39292. name: "Normal",
  39293. height: math.unit(5 + 2/12, "feet"),
  39294. default: true
  39295. },
  39296. ]
  39297. ))
  39298. characterMakers.push(() => makeCharacter(
  39299. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39300. {
  39301. frontImp: {
  39302. height: math.unit(1 + 11/12, "feet"),
  39303. name: "Front (Imp)",
  39304. image: {
  39305. source: "./media/characters/max-kobold/front-imp.svg",
  39306. extra: 1238/1134,
  39307. bottom: 81/1319
  39308. }
  39309. },
  39310. backImp: {
  39311. height: math.unit(1 + 11/12, "feet"),
  39312. name: "Back (Imp)",
  39313. image: {
  39314. source: "./media/characters/max-kobold/back-imp.svg",
  39315. extra: 1334/1175,
  39316. bottom: 34/1368
  39317. }
  39318. },
  39319. frontDemi: {
  39320. height: math.unit(5 + 9/12, "feet"),
  39321. name: "Front (Demi)",
  39322. image: {
  39323. source: "./media/characters/max-kobold/front-demi.svg",
  39324. extra: 1715/1685,
  39325. bottom: 54/1769
  39326. }
  39327. },
  39328. backDemi: {
  39329. height: math.unit(5 + 9/12, "feet"),
  39330. name: "Back (Demi)",
  39331. image: {
  39332. source: "./media/characters/max-kobold/back-demi.svg",
  39333. extra: 1752/1729,
  39334. bottom: 41/1793
  39335. }
  39336. },
  39337. handImp: {
  39338. height: math.unit(0.45, "feet"),
  39339. name: "Hand (Imp)",
  39340. image: {
  39341. source: "./media/characters/max-kobold/hand.svg"
  39342. }
  39343. },
  39344. pawImp: {
  39345. height: math.unit(0.46, "feet"),
  39346. name: "Paw (Imp)",
  39347. image: {
  39348. source: "./media/characters/max-kobold/paw.svg"
  39349. }
  39350. },
  39351. handDemi: {
  39352. height: math.unit(0.80, "feet"),
  39353. name: "Hand (Demi)",
  39354. image: {
  39355. source: "./media/characters/max-kobold/hand.svg"
  39356. }
  39357. },
  39358. pawDemi: {
  39359. height: math.unit(1.1, "feet"),
  39360. name: "Paw (Demi)",
  39361. image: {
  39362. source: "./media/characters/max-kobold/paw.svg"
  39363. }
  39364. },
  39365. headImp: {
  39366. height: math.unit(1.33, "feet"),
  39367. name: "Head (Imp)",
  39368. image: {
  39369. source: "./media/characters/max-kobold/head-imp.svg"
  39370. }
  39371. },
  39372. mawImp: {
  39373. height: math.unit(0.75, "feet"),
  39374. name: "Maw (Imp)",
  39375. image: {
  39376. source: "./media/characters/max-kobold/maw-imp.svg"
  39377. }
  39378. },
  39379. mawDemi: {
  39380. height: math.unit(0.42, "feet"),
  39381. name: "Maw (Demi)",
  39382. image: {
  39383. source: "./media/characters/max-kobold/maw-demi.svg"
  39384. }
  39385. },
  39386. },
  39387. [
  39388. {
  39389. name: "Normal",
  39390. height: math.unit(1 + 11/12, "feet"),
  39391. default: true
  39392. },
  39393. ]
  39394. ))
  39395. characterMakers.push(() => makeCharacter(
  39396. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39397. {
  39398. front: {
  39399. height: math.unit(7 + 5/12, "feet"),
  39400. name: "Front",
  39401. image: {
  39402. source: "./media/characters/carbon/front.svg",
  39403. extra: 1754/1689,
  39404. bottom: 65/1819
  39405. }
  39406. },
  39407. back: {
  39408. height: math.unit(7 + 5/12, "feet"),
  39409. name: "Back",
  39410. image: {
  39411. source: "./media/characters/carbon/back.svg",
  39412. extra: 1762/1695,
  39413. bottom: 24/1786
  39414. }
  39415. },
  39416. frontGigantamax: {
  39417. height: math.unit(150, "feet"),
  39418. name: "Front (Gigantamax)",
  39419. image: {
  39420. source: "./media/characters/carbon/front-gigantamax.svg",
  39421. extra: 1826/1669,
  39422. bottom: 59/1885
  39423. }
  39424. },
  39425. backGigantamax: {
  39426. height: math.unit(150, "feet"),
  39427. name: "Back (Gigantamax)",
  39428. image: {
  39429. source: "./media/characters/carbon/back-gigantamax.svg",
  39430. extra: 1796/1653,
  39431. bottom: 53/1849
  39432. }
  39433. },
  39434. maw: {
  39435. height: math.unit(0.48, "feet"),
  39436. name: "Maw",
  39437. image: {
  39438. source: "./media/characters/carbon/maw.svg"
  39439. }
  39440. },
  39441. mawGigantamax: {
  39442. height: math.unit(7.5, "feet"),
  39443. name: "Maw (Gigantamax)",
  39444. image: {
  39445. source: "./media/characters/carbon/maw-gigantamax.svg"
  39446. }
  39447. },
  39448. },
  39449. [
  39450. {
  39451. name: "Normal",
  39452. height: math.unit(7 + 5/12, "feet"),
  39453. default: true
  39454. },
  39455. ]
  39456. ))
  39457. characterMakers.push(() => makeCharacter(
  39458. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39459. {
  39460. front: {
  39461. height: math.unit(6, "feet"),
  39462. name: "Front",
  39463. image: {
  39464. source: "./media/characters/maverick/front.svg",
  39465. extra: 1672/1661,
  39466. bottom: 85/1757
  39467. }
  39468. },
  39469. back: {
  39470. height: math.unit(6, "feet"),
  39471. name: "Back",
  39472. image: {
  39473. source: "./media/characters/maverick/back.svg",
  39474. extra: 1642/1631,
  39475. bottom: 38/1680
  39476. }
  39477. },
  39478. },
  39479. [
  39480. {
  39481. name: "Normal",
  39482. height: math.unit(6, "feet"),
  39483. default: true
  39484. },
  39485. ]
  39486. ))
  39487. characterMakers.push(() => makeCharacter(
  39488. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39489. {
  39490. front: {
  39491. height: math.unit(15, "feet"),
  39492. weight: math.unit(615, "lb"),
  39493. name: "Front",
  39494. image: {
  39495. source: "./media/characters/grockle/front.svg",
  39496. extra: 1535/1427,
  39497. bottom: 56/1591
  39498. }
  39499. },
  39500. },
  39501. [
  39502. {
  39503. name: "Normal",
  39504. height: math.unit(15, "feet"),
  39505. default: true
  39506. },
  39507. {
  39508. name: "Large",
  39509. height: math.unit(150, "feet")
  39510. },
  39511. {
  39512. name: "Macro",
  39513. height: math.unit(1876, "feet")
  39514. },
  39515. {
  39516. name: "Mega Macro",
  39517. height: math.unit(121940, "feet")
  39518. },
  39519. {
  39520. name: "Giga Macro",
  39521. height: math.unit(750, "km")
  39522. },
  39523. {
  39524. name: "Tera Macro",
  39525. height: math.unit(750000, "km")
  39526. },
  39527. {
  39528. name: "Galactic",
  39529. height: math.unit(1.4e5, "km")
  39530. },
  39531. {
  39532. name: "Godlike",
  39533. height: math.unit(9.8e280, "galaxies")
  39534. },
  39535. ]
  39536. ))
  39537. characterMakers.push(() => makeCharacter(
  39538. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39539. {
  39540. front: {
  39541. height: math.unit(11, "meters"),
  39542. weight: math.unit(20, "tonnes"),
  39543. name: "Front",
  39544. image: {
  39545. source: "./media/characters/alistair/front.svg",
  39546. extra: 1265/1009,
  39547. bottom: 93/1358
  39548. }
  39549. },
  39550. },
  39551. [
  39552. {
  39553. name: "Normal",
  39554. height: math.unit(11, "meters"),
  39555. default: true
  39556. },
  39557. ]
  39558. ))
  39559. characterMakers.push(() => makeCharacter(
  39560. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39561. {
  39562. front: {
  39563. height: math.unit(5 + 8/12, "feet"),
  39564. name: "Front",
  39565. image: {
  39566. source: "./media/characters/haruka/front.svg",
  39567. extra: 2012/1952,
  39568. bottom: 0/2012
  39569. }
  39570. },
  39571. },
  39572. [
  39573. {
  39574. name: "Normal",
  39575. height: math.unit(5 + 8/12, "feet"),
  39576. default: true
  39577. },
  39578. ]
  39579. ))
  39580. characterMakers.push(() => makeCharacter(
  39581. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39582. {
  39583. back: {
  39584. height: math.unit(9, "feet"),
  39585. name: "Back",
  39586. image: {
  39587. source: "./media/characters/vivian-sylveon/back.svg",
  39588. extra: 1853/1714,
  39589. bottom: 0/1853
  39590. }
  39591. },
  39592. },
  39593. [
  39594. {
  39595. name: "Normal",
  39596. height: math.unit(9, "feet"),
  39597. default: true
  39598. },
  39599. {
  39600. name: "Macro",
  39601. height: math.unit(500, "feet")
  39602. },
  39603. {
  39604. name: "Megamacro",
  39605. height: math.unit(600, "miles")
  39606. },
  39607. {
  39608. name: "Gigamacro",
  39609. height: math.unit(30000, "miles")
  39610. },
  39611. ]
  39612. ))
  39613. characterMakers.push(() => makeCharacter(
  39614. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39615. {
  39616. anthro: {
  39617. height: math.unit(5 + 10/12, "feet"),
  39618. weight: math.unit(100, "lb"),
  39619. name: "Anthro",
  39620. image: {
  39621. source: "./media/characters/daiki/anthro.svg",
  39622. extra: 1115/1027,
  39623. bottom: 69/1184
  39624. }
  39625. },
  39626. feral: {
  39627. height: math.unit(200, "feet"),
  39628. name: "Feral",
  39629. image: {
  39630. source: "./media/characters/daiki/feral.svg",
  39631. extra: 1256/313,
  39632. bottom: 39/1295
  39633. }
  39634. },
  39635. feralHead: {
  39636. height: math.unit(171, "feet"),
  39637. name: "Feral Head",
  39638. image: {
  39639. source: "./media/characters/daiki/feral-head.svg"
  39640. }
  39641. },
  39642. manaDragon: {
  39643. height: math.unit(170, "meters"),
  39644. name: "Mana-dragon",
  39645. image: {
  39646. source: "./media/characters/daiki/mana-dragon.svg",
  39647. extra: 763/420,
  39648. bottom: 97/860
  39649. }
  39650. },
  39651. },
  39652. [
  39653. {
  39654. name: "Normal",
  39655. height: math.unit(5 + 10/12, "feet"),
  39656. default: true
  39657. },
  39658. ]
  39659. ))
  39660. characterMakers.push(() => makeCharacter(
  39661. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39662. {
  39663. fullyEquippedFront: {
  39664. height: math.unit(3 + 1/12, "feet"),
  39665. weight: math.unit(24, "lb"),
  39666. name: "Fully Equipped (Front)",
  39667. image: {
  39668. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39669. extra: 687/605,
  39670. bottom: 18/705
  39671. }
  39672. },
  39673. fullyEquippedBack: {
  39674. height: math.unit(3 + 1/12, "feet"),
  39675. weight: math.unit(24, "lb"),
  39676. name: "Fully Equipped (Back)",
  39677. image: {
  39678. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39679. extra: 689/590,
  39680. bottom: 18/707
  39681. }
  39682. },
  39683. dailyWear: {
  39684. height: math.unit(3 + 1/12, "feet"),
  39685. weight: math.unit(24, "lb"),
  39686. name: "Daily Wear",
  39687. image: {
  39688. source: "./media/characters/tea-spot/daily-wear.svg",
  39689. extra: 701/620,
  39690. bottom: 21/722
  39691. }
  39692. },
  39693. maidWork: {
  39694. height: math.unit(3 + 1/12, "feet"),
  39695. weight: math.unit(24, "lb"),
  39696. name: "Maid Work",
  39697. image: {
  39698. source: "./media/characters/tea-spot/maid-work.svg",
  39699. extra: 693/609,
  39700. bottom: 15/708
  39701. }
  39702. },
  39703. },
  39704. [
  39705. {
  39706. name: "Normal",
  39707. height: math.unit(3 + 1/12, "feet"),
  39708. default: true
  39709. },
  39710. ]
  39711. ))
  39712. characterMakers.push(() => makeCharacter(
  39713. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39714. {
  39715. front: {
  39716. height: math.unit(175, "cm"),
  39717. weight: math.unit(75, "kg"),
  39718. name: "Front",
  39719. image: {
  39720. source: "./media/characters/chee/front.svg",
  39721. extra: 1796/1740,
  39722. bottom: 40/1836
  39723. }
  39724. },
  39725. },
  39726. [
  39727. {
  39728. name: "Micro-Micro",
  39729. height: math.unit(1, "nm")
  39730. },
  39731. {
  39732. name: "Micro-erst",
  39733. height: math.unit(1, "micrometer")
  39734. },
  39735. {
  39736. name: "Micro-er",
  39737. height: math.unit(1, "cm")
  39738. },
  39739. {
  39740. name: "Normal",
  39741. height: math.unit(175, "cm"),
  39742. default: true
  39743. },
  39744. {
  39745. name: "Macro",
  39746. height: math.unit(100, "m")
  39747. },
  39748. {
  39749. name: "Macro-er",
  39750. height: math.unit(1, "km")
  39751. },
  39752. {
  39753. name: "Macro-erst",
  39754. height: math.unit(10, "km")
  39755. },
  39756. {
  39757. name: "Macro-Macro",
  39758. height: math.unit(100, "km")
  39759. },
  39760. ]
  39761. ))
  39762. characterMakers.push(() => makeCharacter(
  39763. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39764. {
  39765. front: {
  39766. height: math.unit(11 + 9/12, "feet"),
  39767. weight: math.unit(935, "lb"),
  39768. name: "Front",
  39769. image: {
  39770. source: "./media/characters/kingsley/front.svg",
  39771. extra: 1803/1674,
  39772. bottom: 127/1930
  39773. }
  39774. },
  39775. frontNude: {
  39776. height: math.unit(11 + 9/12, "feet"),
  39777. weight: math.unit(935, "lb"),
  39778. name: "Front (Nude)",
  39779. image: {
  39780. source: "./media/characters/kingsley/front-nude.svg",
  39781. extra: 1803/1674,
  39782. bottom: 127/1930
  39783. }
  39784. },
  39785. },
  39786. [
  39787. {
  39788. name: "Normal",
  39789. height: math.unit(11 + 9/12, "feet"),
  39790. default: true
  39791. },
  39792. ]
  39793. ))
  39794. characterMakers.push(() => makeCharacter(
  39795. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39796. {
  39797. side: {
  39798. height: math.unit(9, "feet"),
  39799. name: "Side",
  39800. image: {
  39801. source: "./media/characters/rymel/side.svg",
  39802. extra: 792/469,
  39803. bottom: 121/913
  39804. }
  39805. },
  39806. maw: {
  39807. height: math.unit(2.4, "meters"),
  39808. name: "Maw",
  39809. image: {
  39810. source: "./media/characters/rymel/maw.svg"
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "House Drake",
  39817. height: math.unit(2, "feet")
  39818. },
  39819. {
  39820. name: "Reduced",
  39821. height: math.unit(4.5, "feet")
  39822. },
  39823. {
  39824. name: "Normal",
  39825. height: math.unit(9, "feet"),
  39826. default: true
  39827. },
  39828. ]
  39829. ))
  39830. characterMakers.push(() => makeCharacter(
  39831. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39832. {
  39833. front: {
  39834. height: math.unit(1.74, "meters"),
  39835. weight: math.unit(55, "kg"),
  39836. name: "Front",
  39837. image: {
  39838. source: "./media/characters/rubus/front.svg",
  39839. extra: 1894/1742,
  39840. bottom: 44/1938
  39841. }
  39842. },
  39843. },
  39844. [
  39845. {
  39846. name: "Normal",
  39847. height: math.unit(1.74, "meters"),
  39848. default: true
  39849. },
  39850. ]
  39851. ))
  39852. characterMakers.push(() => makeCharacter(
  39853. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39854. {
  39855. front: {
  39856. height: math.unit(5 + 2/12, "feet"),
  39857. weight: math.unit(112, "lb"),
  39858. name: "Front",
  39859. image: {
  39860. source: "./media/characters/cassie-kingston/front.svg",
  39861. extra: 1438/1390,
  39862. bottom: 47/1485
  39863. }
  39864. },
  39865. },
  39866. [
  39867. {
  39868. name: "Normal",
  39869. height: math.unit(5 + 2/12, "feet"),
  39870. default: true
  39871. },
  39872. {
  39873. name: "Macro",
  39874. height: math.unit(128, "feet")
  39875. },
  39876. {
  39877. name: "Megamacro",
  39878. height: math.unit(2.56, "miles")
  39879. },
  39880. ]
  39881. ))
  39882. characterMakers.push(() => makeCharacter(
  39883. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39884. {
  39885. front: {
  39886. height: math.unit(7, "feet"),
  39887. name: "Front",
  39888. image: {
  39889. source: "./media/characters/fox/front.svg",
  39890. extra: 1798/1703,
  39891. bottom: 55/1853
  39892. }
  39893. },
  39894. back: {
  39895. height: math.unit(7, "feet"),
  39896. name: "Back",
  39897. image: {
  39898. source: "./media/characters/fox/back.svg",
  39899. extra: 1748/1649,
  39900. bottom: 32/1780
  39901. }
  39902. },
  39903. head: {
  39904. height: math.unit(1.95, "feet"),
  39905. name: "Head",
  39906. image: {
  39907. source: "./media/characters/fox/head.svg"
  39908. }
  39909. },
  39910. dick: {
  39911. height: math.unit(1.33, "feet"),
  39912. name: "Dick",
  39913. image: {
  39914. source: "./media/characters/fox/dick.svg"
  39915. }
  39916. },
  39917. foot: {
  39918. height: math.unit(1, "feet"),
  39919. name: "Foot",
  39920. image: {
  39921. source: "./media/characters/fox/foot.svg"
  39922. }
  39923. },
  39924. paw: {
  39925. height: math.unit(0.92, "feet"),
  39926. name: "Paw",
  39927. image: {
  39928. source: "./media/characters/fox/paw.svg"
  39929. }
  39930. },
  39931. },
  39932. [
  39933. {
  39934. name: "Small",
  39935. height: math.unit(3, "inches")
  39936. },
  39937. {
  39938. name: "\"Realistic\"",
  39939. height: math.unit(7, "feet")
  39940. },
  39941. {
  39942. name: "Normal",
  39943. height: math.unit(150, "feet"),
  39944. default: true
  39945. },
  39946. {
  39947. name: "BIG",
  39948. height: math.unit(1200, "feet")
  39949. },
  39950. {
  39951. name: "👀",
  39952. height: math.unit(5, "miles")
  39953. },
  39954. {
  39955. name: "👀👀👀",
  39956. height: math.unit(64, "miles")
  39957. },
  39958. ]
  39959. ))
  39960. characterMakers.push(() => makeCharacter(
  39961. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39962. {
  39963. front: {
  39964. height: math.unit(625, "feet"),
  39965. name: "Front",
  39966. image: {
  39967. source: "./media/characters/asonja-rossa/front.svg",
  39968. extra: 1833/1686,
  39969. bottom: 24/1857
  39970. }
  39971. },
  39972. back: {
  39973. height: math.unit(625, "feet"),
  39974. name: "Back",
  39975. image: {
  39976. source: "./media/characters/asonja-rossa/back.svg",
  39977. extra: 1852/1753,
  39978. bottom: 26/1878
  39979. }
  39980. },
  39981. },
  39982. [
  39983. {
  39984. name: "Macro",
  39985. height: math.unit(625, "feet"),
  39986. default: true
  39987. },
  39988. ]
  39989. ))
  39990. characterMakers.push(() => makeCharacter(
  39991. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39992. {
  39993. side: {
  39994. height: math.unit(8, "feet"),
  39995. name: "Side",
  39996. image: {
  39997. source: "./media/characters/rezukii/side.svg",
  39998. extra: 979/542,
  39999. bottom: 87/1066
  40000. }
  40001. },
  40002. sitting: {
  40003. height: math.unit(14.6, "feet"),
  40004. name: "Sitting",
  40005. image: {
  40006. source: "./media/characters/rezukii/sitting.svg",
  40007. extra: 1023/813,
  40008. bottom: 45/1068
  40009. }
  40010. },
  40011. },
  40012. [
  40013. {
  40014. name: "Tiny",
  40015. height: math.unit(2, "feet")
  40016. },
  40017. {
  40018. name: "Smol",
  40019. height: math.unit(4, "feet")
  40020. },
  40021. {
  40022. name: "Normal",
  40023. height: math.unit(8, "feet"),
  40024. default: true
  40025. },
  40026. {
  40027. name: "Big",
  40028. height: math.unit(12, "feet")
  40029. },
  40030. {
  40031. name: "Macro",
  40032. height: math.unit(30, "feet")
  40033. },
  40034. ]
  40035. ))
  40036. characterMakers.push(() => makeCharacter(
  40037. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40038. {
  40039. front: {
  40040. height: math.unit(14, "feet"),
  40041. weight: math.unit(9.5, "tonnes"),
  40042. name: "Front",
  40043. image: {
  40044. source: "./media/characters/dawnheart/front.svg",
  40045. extra: 2792/2675,
  40046. bottom: 64/2856
  40047. }
  40048. },
  40049. },
  40050. [
  40051. {
  40052. name: "Normal",
  40053. height: math.unit(14, "feet"),
  40054. default: true
  40055. },
  40056. ]
  40057. ))
  40058. characterMakers.push(() => makeCharacter(
  40059. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40060. {
  40061. front: {
  40062. height: math.unit(1.7, "m"),
  40063. name: "Front",
  40064. image: {
  40065. source: "./media/characters/gladi/front.svg",
  40066. extra: 1460/1362,
  40067. bottom: 19/1479
  40068. }
  40069. },
  40070. back: {
  40071. height: math.unit(1.7, "m"),
  40072. name: "Back",
  40073. image: {
  40074. source: "./media/characters/gladi/back.svg",
  40075. extra: 1459/1357,
  40076. bottom: 12/1471
  40077. }
  40078. },
  40079. feral: {
  40080. height: math.unit(2.05, "m"),
  40081. name: "Feral",
  40082. image: {
  40083. source: "./media/characters/gladi/feral.svg",
  40084. extra: 821/557,
  40085. bottom: 91/912
  40086. }
  40087. },
  40088. },
  40089. [
  40090. {
  40091. name: "Shortest",
  40092. height: math.unit(70, "cm")
  40093. },
  40094. {
  40095. name: "Normal",
  40096. height: math.unit(1.7, "m")
  40097. },
  40098. {
  40099. name: "Macro",
  40100. height: math.unit(10, "m"),
  40101. default: true
  40102. },
  40103. {
  40104. name: "Tallest",
  40105. height: math.unit(200, "m")
  40106. },
  40107. ]
  40108. ))
  40109. characterMakers.push(() => makeCharacter(
  40110. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40111. {
  40112. front: {
  40113. height: math.unit(5 + 7/12, "feet"),
  40114. weight: math.unit(2, "tons"),
  40115. name: "Front",
  40116. image: {
  40117. source: "./media/characters/erdno/front.svg",
  40118. extra: 1234/1129,
  40119. bottom: 35/1269
  40120. }
  40121. },
  40122. angled: {
  40123. height: math.unit(5 + 7/12, "feet"),
  40124. weight: math.unit(2, "tons"),
  40125. name: "Angled",
  40126. image: {
  40127. source: "./media/characters/erdno/angled.svg",
  40128. extra: 1185/1139,
  40129. bottom: 36/1221
  40130. }
  40131. },
  40132. side: {
  40133. height: math.unit(5 + 7/12, "feet"),
  40134. weight: math.unit(2, "tons"),
  40135. name: "Side",
  40136. image: {
  40137. source: "./media/characters/erdno/side.svg",
  40138. extra: 1191/1144,
  40139. bottom: 40/1231
  40140. }
  40141. },
  40142. back: {
  40143. height: math.unit(5 + 7/12, "feet"),
  40144. weight: math.unit(2, "tons"),
  40145. name: "Back",
  40146. image: {
  40147. source: "./media/characters/erdno/back.svg",
  40148. extra: 1202/1146,
  40149. bottom: 17/1219
  40150. }
  40151. },
  40152. frontNsfw: {
  40153. height: math.unit(5 + 7/12, "feet"),
  40154. weight: math.unit(2, "tons"),
  40155. name: "Front (NSFW)",
  40156. image: {
  40157. source: "./media/characters/erdno/front-nsfw.svg",
  40158. extra: 1234/1129,
  40159. bottom: 35/1269
  40160. }
  40161. },
  40162. angledNsfw: {
  40163. height: math.unit(5 + 7/12, "feet"),
  40164. weight: math.unit(2, "tons"),
  40165. name: "Angled (NSFW)",
  40166. image: {
  40167. source: "./media/characters/erdno/angled-nsfw.svg",
  40168. extra: 1185/1139,
  40169. bottom: 36/1221
  40170. }
  40171. },
  40172. sideNsfw: {
  40173. height: math.unit(5 + 7/12, "feet"),
  40174. weight: math.unit(2, "tons"),
  40175. name: "Side (NSFW)",
  40176. image: {
  40177. source: "./media/characters/erdno/side-nsfw.svg",
  40178. extra: 1191/1144,
  40179. bottom: 40/1231
  40180. }
  40181. },
  40182. backNsfw: {
  40183. height: math.unit(5 + 7/12, "feet"),
  40184. weight: math.unit(2, "tons"),
  40185. name: "Back (NSFW)",
  40186. image: {
  40187. source: "./media/characters/erdno/back-nsfw.svg",
  40188. extra: 1202/1146,
  40189. bottom: 17/1219
  40190. }
  40191. },
  40192. frontHyper: {
  40193. height: math.unit(5 + 7/12, "feet"),
  40194. weight: math.unit(2, "tons"),
  40195. name: "Front (Hyper)",
  40196. image: {
  40197. source: "./media/characters/erdno/front-hyper.svg",
  40198. extra: 1298/1136,
  40199. bottom: 35/1333
  40200. }
  40201. },
  40202. },
  40203. [
  40204. {
  40205. name: "Normal",
  40206. height: math.unit(5 + 7/12, "feet"),
  40207. default: true
  40208. },
  40209. {
  40210. name: "Big",
  40211. height: math.unit(5.7, "meters")
  40212. },
  40213. {
  40214. name: "Macro",
  40215. height: math.unit(5.7, "kilometers")
  40216. },
  40217. {
  40218. name: "Megamacro",
  40219. height: math.unit(5.7, "earths")
  40220. },
  40221. ]
  40222. ))
  40223. characterMakers.push(() => makeCharacter(
  40224. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40225. {
  40226. front: {
  40227. height: math.unit(5 + 10/12, "feet"),
  40228. weight: math.unit(150, "lb"),
  40229. name: "Front",
  40230. image: {
  40231. source: "./media/characters/jamie/front.svg",
  40232. extra: 1908/1768,
  40233. bottom: 19/1927
  40234. }
  40235. },
  40236. },
  40237. [
  40238. {
  40239. name: "Minimum",
  40240. height: math.unit(2, "cm")
  40241. },
  40242. {
  40243. name: "Micro",
  40244. height: math.unit(3, "inches")
  40245. },
  40246. {
  40247. name: "Normal",
  40248. height: math.unit(5 + 10/12, "feet"),
  40249. default: true
  40250. },
  40251. {
  40252. name: "Macro",
  40253. height: math.unit(150, "feet")
  40254. },
  40255. {
  40256. name: "Megamacro",
  40257. height: math.unit(10000, "m")
  40258. },
  40259. ]
  40260. ))
  40261. characterMakers.push(() => makeCharacter(
  40262. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40263. {
  40264. front: {
  40265. height: math.unit(2, "meters"),
  40266. weight: math.unit(100, "kg"),
  40267. name: "Front",
  40268. image: {
  40269. source: "./media/characters/shiron/front.svg",
  40270. extra: 2103/1985,
  40271. bottom: 98/2201
  40272. }
  40273. },
  40274. back: {
  40275. height: math.unit(2, "meters"),
  40276. weight: math.unit(100, "kg"),
  40277. name: "Back",
  40278. image: {
  40279. source: "./media/characters/shiron/back.svg",
  40280. extra: 2110/2015,
  40281. bottom: 89/2199
  40282. }
  40283. },
  40284. hand: {
  40285. height: math.unit(0.96, "feet"),
  40286. name: "Hand",
  40287. image: {
  40288. source: "./media/characters/shiron/hand.svg"
  40289. }
  40290. },
  40291. foot: {
  40292. height: math.unit(1.464, "feet"),
  40293. name: "Foot",
  40294. image: {
  40295. source: "./media/characters/shiron/foot.svg"
  40296. }
  40297. },
  40298. },
  40299. [
  40300. {
  40301. name: "Normal",
  40302. height: math.unit(2, "meters")
  40303. },
  40304. {
  40305. name: "Macro",
  40306. height: math.unit(500, "meters"),
  40307. default: true
  40308. },
  40309. {
  40310. name: "Megamacro",
  40311. height: math.unit(20, "km")
  40312. },
  40313. ]
  40314. ))
  40315. characterMakers.push(() => makeCharacter(
  40316. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40317. {
  40318. front: {
  40319. height: math.unit(6, "feet"),
  40320. name: "Front",
  40321. image: {
  40322. source: "./media/characters/sam/front.svg",
  40323. extra: 849/826,
  40324. bottom: 19/868
  40325. }
  40326. },
  40327. },
  40328. [
  40329. {
  40330. name: "Normal",
  40331. height: math.unit(6, "feet"),
  40332. default: true
  40333. },
  40334. ]
  40335. ))
  40336. characterMakers.push(() => makeCharacter(
  40337. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40338. {
  40339. front: {
  40340. height: math.unit(8 + 4/12, "feet"),
  40341. weight: math.unit(122, "kg"),
  40342. name: "Front",
  40343. image: {
  40344. source: "./media/characters/namori-kurogawa/front.svg",
  40345. extra: 1894/1576,
  40346. bottom: 34/1928
  40347. }
  40348. },
  40349. },
  40350. [
  40351. {
  40352. name: "Normal",
  40353. height: math.unit(8 + 4/12, "feet"),
  40354. default: true
  40355. },
  40356. ]
  40357. ))
  40358. characterMakers.push(() => makeCharacter(
  40359. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40360. {
  40361. front: {
  40362. height: math.unit(9, "feet"),
  40363. weight: math.unit(621, "lb"),
  40364. name: "Front",
  40365. image: {
  40366. source: "./media/characters/unmru/front.svg",
  40367. extra: 1853/1747,
  40368. bottom: 73/1926
  40369. }
  40370. },
  40371. side: {
  40372. height: math.unit(9, "feet"),
  40373. weight: math.unit(621, "lb"),
  40374. name: "Side",
  40375. image: {
  40376. source: "./media/characters/unmru/side.svg",
  40377. extra: 1781/1671,
  40378. bottom: 127/1908
  40379. }
  40380. },
  40381. back: {
  40382. height: math.unit(9, "feet"),
  40383. weight: math.unit(621, "lb"),
  40384. name: "Back",
  40385. image: {
  40386. source: "./media/characters/unmru/back.svg",
  40387. extra: 1894/1765,
  40388. bottom: 75/1969
  40389. }
  40390. },
  40391. dick: {
  40392. height: math.unit(3, "feet"),
  40393. weight: math.unit(35, "lb"),
  40394. name: "Dick",
  40395. image: {
  40396. source: "./media/characters/unmru/dick.svg"
  40397. }
  40398. },
  40399. },
  40400. [
  40401. {
  40402. name: "Normal",
  40403. height: math.unit(9, "feet")
  40404. },
  40405. {
  40406. name: "Natural",
  40407. height: math.unit(27, "feet"),
  40408. default: true
  40409. },
  40410. {
  40411. name: "Giant",
  40412. height: math.unit(90, "feet")
  40413. },
  40414. {
  40415. name: "Kaiju",
  40416. height: math.unit(270, "feet")
  40417. },
  40418. {
  40419. name: "Macro",
  40420. height: math.unit(900, "feet")
  40421. },
  40422. {
  40423. name: "Macro+",
  40424. height: math.unit(2700, "feet")
  40425. },
  40426. {
  40427. name: "Megamacro",
  40428. height: math.unit(9000, "feet")
  40429. },
  40430. {
  40431. name: "City-Crushing",
  40432. height: math.unit(27000, "feet")
  40433. },
  40434. {
  40435. name: "Mountain-Mashing",
  40436. height: math.unit(90000, "feet")
  40437. },
  40438. {
  40439. name: "Earth-Eclipsing",
  40440. height: math.unit(2.7e8, "feet")
  40441. },
  40442. {
  40443. name: "Sol-Swallowing",
  40444. height: math.unit(9e10, "feet")
  40445. },
  40446. {
  40447. name: "Majoris-Munching",
  40448. height: math.unit(2.7e13, "feet")
  40449. },
  40450. ]
  40451. ))
  40452. characterMakers.push(() => makeCharacter(
  40453. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40454. {
  40455. front: {
  40456. height: math.unit(1, "inch"),
  40457. name: "Front",
  40458. image: {
  40459. source: "./media/characters/squeaks-mouse/front.svg",
  40460. extra: 352/308,
  40461. bottom: 25/377
  40462. }
  40463. },
  40464. },
  40465. [
  40466. {
  40467. name: "Micro",
  40468. height: math.unit(1, "inch"),
  40469. default: true
  40470. },
  40471. ]
  40472. ))
  40473. characterMakers.push(() => makeCharacter(
  40474. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40475. {
  40476. side: {
  40477. height: math.unit(35, "feet"),
  40478. name: "Side",
  40479. image: {
  40480. source: "./media/characters/sayko/side.svg",
  40481. extra: 1697/1021,
  40482. bottom: 82/1779
  40483. }
  40484. },
  40485. head: {
  40486. height: math.unit(16, "feet"),
  40487. name: "Head",
  40488. image: {
  40489. source: "./media/characters/sayko/head.svg"
  40490. }
  40491. },
  40492. forepaw: {
  40493. height: math.unit(7.85, "feet"),
  40494. name: "Forepaw",
  40495. image: {
  40496. source: "./media/characters/sayko/forepaw.svg"
  40497. }
  40498. },
  40499. hindpaw: {
  40500. height: math.unit(8.8, "feet"),
  40501. name: "Hindpaw",
  40502. image: {
  40503. source: "./media/characters/sayko/hindpaw.svg"
  40504. }
  40505. },
  40506. },
  40507. [
  40508. {
  40509. name: "Normal",
  40510. height: math.unit(35, "feet"),
  40511. default: true
  40512. },
  40513. {
  40514. name: "Colossus",
  40515. height: math.unit(100, "meters")
  40516. },
  40517. {
  40518. name: "\"Small\" Deity",
  40519. height: math.unit(1, "km")
  40520. },
  40521. {
  40522. name: "\"Large\" Deity",
  40523. height: math.unit(15, "km")
  40524. },
  40525. ]
  40526. ))
  40527. characterMakers.push(() => makeCharacter(
  40528. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40529. {
  40530. front: {
  40531. height: math.unit(6, "feet"),
  40532. weight: math.unit(250, "lb"),
  40533. name: "Front",
  40534. image: {
  40535. source: "./media/characters/mukiro/front.svg",
  40536. extra: 1368/1310,
  40537. bottom: 34/1402
  40538. }
  40539. },
  40540. },
  40541. [
  40542. {
  40543. name: "Normal",
  40544. height: math.unit(6, "feet"),
  40545. default: true
  40546. },
  40547. ]
  40548. ))
  40549. characterMakers.push(() => makeCharacter(
  40550. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40551. {
  40552. front: {
  40553. height: math.unit(12 + 4/12, "feet"),
  40554. name: "Front",
  40555. image: {
  40556. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40557. extra: 1346/1311,
  40558. bottom: 65/1411
  40559. }
  40560. },
  40561. },
  40562. [
  40563. {
  40564. name: "Base",
  40565. height: math.unit(12 + 4/12, "feet"),
  40566. default: true
  40567. },
  40568. {
  40569. name: "Macro",
  40570. height: math.unit(150, "feet")
  40571. },
  40572. {
  40573. name: "Mega",
  40574. height: math.unit(2, "miles")
  40575. },
  40576. {
  40577. name: "Demi God",
  40578. height: math.unit(4, "AU")
  40579. },
  40580. {
  40581. name: "God Size",
  40582. height: math.unit(1, "universe")
  40583. },
  40584. ]
  40585. ))
  40586. characterMakers.push(() => makeCharacter(
  40587. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40588. {
  40589. front: {
  40590. height: math.unit(3 + 3/12, "feet"),
  40591. weight: math.unit(88, "lb"),
  40592. name: "Front",
  40593. image: {
  40594. source: "./media/characters/trey/front.svg",
  40595. extra: 1815/1509,
  40596. bottom: 60/1875
  40597. }
  40598. },
  40599. },
  40600. [
  40601. {
  40602. name: "Normal",
  40603. height: math.unit(3 + 3/12, "feet"),
  40604. default: true
  40605. },
  40606. ]
  40607. ))
  40608. characterMakers.push(() => makeCharacter(
  40609. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40610. {
  40611. front: {
  40612. height: math.unit(4, "meters"),
  40613. name: "Front",
  40614. image: {
  40615. source: "./media/characters/adelonda/front.svg",
  40616. extra: 1077/982,
  40617. bottom: 39/1116
  40618. }
  40619. },
  40620. back: {
  40621. height: math.unit(4, "meters"),
  40622. name: "Back",
  40623. image: {
  40624. source: "./media/characters/adelonda/back.svg",
  40625. extra: 1105/1003,
  40626. bottom: 25/1130
  40627. }
  40628. },
  40629. feral: {
  40630. height: math.unit(40/1.5, "meters"),
  40631. name: "Feral",
  40632. image: {
  40633. source: "./media/characters/adelonda/feral.svg",
  40634. extra: 597/271,
  40635. bottom: 387/984
  40636. }
  40637. },
  40638. },
  40639. [
  40640. {
  40641. name: "Normal",
  40642. height: math.unit(4, "meters"),
  40643. default: true
  40644. },
  40645. ]
  40646. ))
  40647. characterMakers.push(() => makeCharacter(
  40648. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40649. {
  40650. front: {
  40651. height: math.unit(8 + 4/12, "feet"),
  40652. weight: math.unit(670, "lb"),
  40653. name: "Front",
  40654. image: {
  40655. source: "./media/characters/acadiel/front.svg",
  40656. extra: 1901/1595,
  40657. bottom: 142/2043
  40658. }
  40659. },
  40660. },
  40661. [
  40662. {
  40663. name: "Normal",
  40664. height: math.unit(8 + 4/12, "feet"),
  40665. default: true
  40666. },
  40667. {
  40668. name: "Macro",
  40669. height: math.unit(200, "feet")
  40670. },
  40671. ]
  40672. ))
  40673. characterMakers.push(() => makeCharacter(
  40674. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40675. {
  40676. front: {
  40677. height: math.unit(6 + 2/12, "feet"),
  40678. weight: math.unit(185, "lb"),
  40679. name: "Front",
  40680. image: {
  40681. source: "./media/characters/kayne-ein/front.svg",
  40682. extra: 1780/1560,
  40683. bottom: 81/1861
  40684. }
  40685. },
  40686. },
  40687. [
  40688. {
  40689. name: "Normal",
  40690. height: math.unit(6 + 2/12, "feet"),
  40691. default: true
  40692. },
  40693. {
  40694. name: "Transformation Stage",
  40695. height: math.unit(15, "feet")
  40696. },
  40697. {
  40698. name: "Macro",
  40699. height: math.unit(150, "feet")
  40700. },
  40701. {
  40702. name: "Earth's Shadow",
  40703. height: math.unit(6200, "miles")
  40704. },
  40705. {
  40706. name: "Universal Demon",
  40707. height: math.unit(28e9, "parsecs")
  40708. },
  40709. {
  40710. name: "Multiverse God",
  40711. height: math.unit(3, "multiverses")
  40712. },
  40713. ]
  40714. ))
  40715. characterMakers.push(() => makeCharacter(
  40716. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40717. {
  40718. front: {
  40719. height: math.unit(5 + 5/12, "feet"),
  40720. name: "Front",
  40721. image: {
  40722. source: "./media/characters/fawn/front.svg",
  40723. extra: 1873/1731,
  40724. bottom: 95/1968
  40725. }
  40726. },
  40727. back: {
  40728. height: math.unit(5 + 5/12, "feet"),
  40729. name: "Back",
  40730. image: {
  40731. source: "./media/characters/fawn/back.svg",
  40732. extra: 1813/1700,
  40733. bottom: 14/1827
  40734. }
  40735. },
  40736. hoof: {
  40737. height: math.unit(1.45, "feet"),
  40738. name: "Hoof",
  40739. image: {
  40740. source: "./media/characters/fawn/hoof.svg"
  40741. }
  40742. },
  40743. },
  40744. [
  40745. {
  40746. name: "Normal",
  40747. height: math.unit(5 + 5/12, "feet"),
  40748. default: true
  40749. },
  40750. ]
  40751. ))
  40752. characterMakers.push(() => makeCharacter(
  40753. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40754. {
  40755. front: {
  40756. height: math.unit(2 + 5/12, "feet"),
  40757. name: "Front",
  40758. image: {
  40759. source: "./media/characters/orion/front.svg",
  40760. extra: 1366/1304,
  40761. bottom: 43/1409
  40762. }
  40763. },
  40764. paw: {
  40765. height: math.unit(0.52, "feet"),
  40766. name: "Paw",
  40767. image: {
  40768. source: "./media/characters/orion/paw.svg"
  40769. }
  40770. },
  40771. },
  40772. [
  40773. {
  40774. name: "Normal",
  40775. height: math.unit(2 + 5/12, "feet"),
  40776. default: true
  40777. },
  40778. ]
  40779. ))
  40780. characterMakers.push(() => makeCharacter(
  40781. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40782. {
  40783. front: {
  40784. height: math.unit(5 + 10/12, "feet"),
  40785. name: "Front",
  40786. image: {
  40787. source: "./media/characters/vera/front.svg",
  40788. extra: 1680/1575,
  40789. bottom: 49/1729
  40790. }
  40791. },
  40792. back: {
  40793. height: math.unit(5 + 10/12, "feet"),
  40794. name: "Back",
  40795. image: {
  40796. source: "./media/characters/vera/back.svg",
  40797. extra: 1700/1588,
  40798. bottom: 18/1718
  40799. }
  40800. },
  40801. arcanine: {
  40802. height: math.unit(6 + 8/12, "feet"),
  40803. name: "Arcanine",
  40804. image: {
  40805. source: "./media/characters/vera/arcanine.svg",
  40806. extra: 1590/1511,
  40807. bottom: 71/1661
  40808. }
  40809. },
  40810. maw: {
  40811. height: math.unit(0.82, "feet"),
  40812. name: "Maw",
  40813. image: {
  40814. source: "./media/characters/vera/maw.svg"
  40815. }
  40816. },
  40817. mawArcanine: {
  40818. height: math.unit(0.97, "feet"),
  40819. name: "Maw (Arcanine)",
  40820. image: {
  40821. source: "./media/characters/vera/maw-arcanine.svg"
  40822. }
  40823. },
  40824. paw: {
  40825. height: math.unit(0.75, "feet"),
  40826. name: "Paw",
  40827. image: {
  40828. source: "./media/characters/vera/paw.svg"
  40829. }
  40830. },
  40831. pawprint: {
  40832. height: math.unit(0.52, "feet"),
  40833. name: "Pawprint",
  40834. image: {
  40835. source: "./media/characters/vera/pawprint.svg"
  40836. }
  40837. },
  40838. },
  40839. [
  40840. {
  40841. name: "Normal",
  40842. height: math.unit(5 + 10/12, "feet"),
  40843. default: true
  40844. },
  40845. {
  40846. name: "Macro",
  40847. height: math.unit(75, "feet")
  40848. },
  40849. ]
  40850. ))
  40851. characterMakers.push(() => makeCharacter(
  40852. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40853. {
  40854. front: {
  40855. height: math.unit(4, "feet"),
  40856. weight: math.unit(40, "lb"),
  40857. name: "Front",
  40858. image: {
  40859. source: "./media/characters/orvan-rabbit/front.svg",
  40860. extra: 1896/1642,
  40861. bottom: 29/1925
  40862. }
  40863. },
  40864. },
  40865. [
  40866. {
  40867. name: "Normal",
  40868. height: math.unit(4, "feet"),
  40869. default: true
  40870. },
  40871. ]
  40872. ))
  40873. characterMakers.push(() => makeCharacter(
  40874. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40875. {
  40876. front: {
  40877. height: math.unit(6, "feet"),
  40878. weight: math.unit(168, "lb"),
  40879. name: "Front",
  40880. image: {
  40881. source: "./media/characters/lisa/front.svg",
  40882. extra: 2065/1867,
  40883. bottom: 46/2111
  40884. }
  40885. },
  40886. back: {
  40887. height: math.unit(6, "feet"),
  40888. weight: math.unit(168, "lb"),
  40889. name: "Back",
  40890. image: {
  40891. source: "./media/characters/lisa/back.svg",
  40892. extra: 1982/1838,
  40893. bottom: 29/2011
  40894. }
  40895. },
  40896. maw: {
  40897. height: math.unit(0.81, "feet"),
  40898. name: "Maw",
  40899. image: {
  40900. source: "./media/characters/lisa/maw.svg"
  40901. }
  40902. },
  40903. paw: {
  40904. height: math.unit(0.9, "feet"),
  40905. name: "Paw",
  40906. image: {
  40907. source: "./media/characters/lisa/paw.svg"
  40908. }
  40909. },
  40910. caribousune: {
  40911. height: math.unit(7 + 2/12, "feet"),
  40912. weight: math.unit(268, "lb"),
  40913. name: "Caribousune",
  40914. image: {
  40915. source: "./media/characters/lisa/caribousune.svg",
  40916. extra: 1843/1633,
  40917. bottom: 29/1872
  40918. }
  40919. },
  40920. frontCaribousune: {
  40921. height: math.unit(7 + 2/12, "feet"),
  40922. weight: math.unit(268, "lb"),
  40923. name: "Front (Caribousune)",
  40924. image: {
  40925. source: "./media/characters/lisa/front-caribousune.svg",
  40926. extra: 1818/1638,
  40927. bottom: 52/1870
  40928. }
  40929. },
  40930. sideCaribousune: {
  40931. height: math.unit(7 + 2/12, "feet"),
  40932. weight: math.unit(268, "lb"),
  40933. name: "Side (Caribousune)",
  40934. image: {
  40935. source: "./media/characters/lisa/side-caribousune.svg",
  40936. extra: 1851/1635,
  40937. bottom: 16/1867
  40938. }
  40939. },
  40940. backCaribousune: {
  40941. height: math.unit(7 + 2/12, "feet"),
  40942. weight: math.unit(268, "lb"),
  40943. name: "Back (Caribousune)",
  40944. image: {
  40945. source: "./media/characters/lisa/back-caribousune.svg",
  40946. extra: 1801/1604,
  40947. bottom: 44/1845
  40948. }
  40949. },
  40950. caribou: {
  40951. height: math.unit(7 + 2/12, "feet"),
  40952. weight: math.unit(268, "lb"),
  40953. name: "Caribou",
  40954. image: {
  40955. source: "./media/characters/lisa/caribou.svg",
  40956. extra: 1843/1633,
  40957. bottom: 29/1872
  40958. }
  40959. },
  40960. frontCaribou: {
  40961. height: math.unit(7 + 2/12, "feet"),
  40962. weight: math.unit(268, "lb"),
  40963. name: "Front (Caribou)",
  40964. image: {
  40965. source: "./media/characters/lisa/front-caribou.svg",
  40966. extra: 1818/1638,
  40967. bottom: 52/1870
  40968. }
  40969. },
  40970. sideCaribou: {
  40971. height: math.unit(7 + 2/12, "feet"),
  40972. weight: math.unit(268, "lb"),
  40973. name: "Side (Caribou)",
  40974. image: {
  40975. source: "./media/characters/lisa/side-caribou.svg",
  40976. extra: 1851/1635,
  40977. bottom: 16/1867
  40978. }
  40979. },
  40980. backCaribou: {
  40981. height: math.unit(7 + 2/12, "feet"),
  40982. weight: math.unit(268, "lb"),
  40983. name: "Back (Caribou)",
  40984. image: {
  40985. source: "./media/characters/lisa/back-caribou.svg",
  40986. extra: 1801/1604,
  40987. bottom: 44/1845
  40988. }
  40989. },
  40990. mawCaribou: {
  40991. height: math.unit(1.45, "feet"),
  40992. name: "Maw (Caribou)",
  40993. image: {
  40994. source: "./media/characters/lisa/maw-caribou.svg"
  40995. }
  40996. },
  40997. mawCaribousune: {
  40998. height: math.unit(1.45, "feet"),
  40999. name: "Maw (Caribousune)",
  41000. image: {
  41001. source: "./media/characters/lisa/maw-caribousune.svg"
  41002. }
  41003. },
  41004. pawCaribousune: {
  41005. height: math.unit(1.61, "feet"),
  41006. name: "Paw (Caribou)",
  41007. image: {
  41008. source: "./media/characters/lisa/paw-caribousune.svg"
  41009. }
  41010. },
  41011. },
  41012. [
  41013. {
  41014. name: "Normal",
  41015. height: math.unit(6, "feet")
  41016. },
  41017. {
  41018. name: "God Size",
  41019. height: math.unit(72, "feet"),
  41020. default: true
  41021. },
  41022. {
  41023. name: "Towering",
  41024. height: math.unit(288, "feet")
  41025. },
  41026. {
  41027. name: "City Size",
  41028. height: math.unit(48384, "feet")
  41029. },
  41030. {
  41031. name: "Continental",
  41032. height: math.unit(4200, "miles")
  41033. },
  41034. {
  41035. name: "Planet Eater",
  41036. height: math.unit(42, "earths")
  41037. },
  41038. {
  41039. name: "Star Swallower",
  41040. height: math.unit(42, "solarradii")
  41041. },
  41042. {
  41043. name: "System Swallower",
  41044. height: math.unit(84000, "AU")
  41045. },
  41046. {
  41047. name: "Galaxy Gobbler",
  41048. height: math.unit(42, "galaxies")
  41049. },
  41050. {
  41051. name: "Universe Devourer",
  41052. height: math.unit(42, "universes")
  41053. },
  41054. {
  41055. name: "Multiverse Muncher",
  41056. height: math.unit(42, "multiverses")
  41057. },
  41058. ]
  41059. ))
  41060. characterMakers.push(() => makeCharacter(
  41061. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41062. {
  41063. front: {
  41064. height: math.unit(36, "feet"),
  41065. name: "Front",
  41066. image: {
  41067. source: "./media/characters/shadow-rat/front.svg",
  41068. extra: 1845/1758,
  41069. bottom: 83/1928
  41070. }
  41071. },
  41072. },
  41073. [
  41074. {
  41075. name: "Macro",
  41076. height: math.unit(36, "feet"),
  41077. default: true
  41078. },
  41079. ]
  41080. ))
  41081. characterMakers.push(() => makeCharacter(
  41082. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41083. {
  41084. side: {
  41085. height: math.unit(8, "feet"),
  41086. weight: math.unit(2630, "lb"),
  41087. name: "Side",
  41088. image: {
  41089. source: "./media/characters/torallia/side.svg",
  41090. extra: 2164/2021,
  41091. bottom: 371/2535
  41092. }
  41093. },
  41094. },
  41095. [
  41096. {
  41097. name: "Mortal Interaction",
  41098. height: math.unit(8, "feet")
  41099. },
  41100. {
  41101. name: "Natural",
  41102. height: math.unit(24, "feet"),
  41103. default: true
  41104. },
  41105. {
  41106. name: "Giant",
  41107. height: math.unit(80, "feet")
  41108. },
  41109. {
  41110. name: "Kaiju",
  41111. height: math.unit(240, "feet")
  41112. },
  41113. {
  41114. name: "Macro",
  41115. height: math.unit(800, "feet")
  41116. },
  41117. {
  41118. name: "Macro+",
  41119. height: math.unit(2400, "feet")
  41120. },
  41121. {
  41122. name: "Macro++",
  41123. height: math.unit(8000, "feet")
  41124. },
  41125. {
  41126. name: "City-Crushing",
  41127. height: math.unit(24000, "feet")
  41128. },
  41129. {
  41130. name: "Mountain-Mashing",
  41131. height: math.unit(80000, "feet")
  41132. },
  41133. {
  41134. name: "District Demolisher",
  41135. height: math.unit(240000, "feet")
  41136. },
  41137. {
  41138. name: "Tri-County Terror",
  41139. height: math.unit(800000, "feet")
  41140. },
  41141. {
  41142. name: "State Smasher",
  41143. height: math.unit(2.4e6, "feet")
  41144. },
  41145. {
  41146. name: "Nation Nemesis",
  41147. height: math.unit(8e6, "feet")
  41148. },
  41149. {
  41150. name: "Continent Cracker",
  41151. height: math.unit(2.4e7, "feet")
  41152. },
  41153. {
  41154. name: "Planet-Pillaging",
  41155. height: math.unit(8e7, "feet")
  41156. },
  41157. {
  41158. name: "Earth-Eclipsing",
  41159. height: math.unit(2.4e8, "feet")
  41160. },
  41161. {
  41162. name: "Jovian-Jostling",
  41163. height: math.unit(8e8, "feet")
  41164. },
  41165. {
  41166. name: "Gas Giant Gulper",
  41167. height: math.unit(2.4e9, "feet")
  41168. },
  41169. {
  41170. name: "Astral Annihilator",
  41171. height: math.unit(8e9, "feet")
  41172. },
  41173. {
  41174. name: "Celestial Conqueror",
  41175. height: math.unit(2.4e10, "feet")
  41176. },
  41177. {
  41178. name: "Sol-Swallowing",
  41179. height: math.unit(8e10, "feet")
  41180. },
  41181. {
  41182. name: "Hunter of the Heavens",
  41183. height: math.unit(2.4e13, "feet")
  41184. },
  41185. ]
  41186. ))
  41187. characterMakers.push(() => makeCharacter(
  41188. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41189. {
  41190. front: {
  41191. height: math.unit(6 + 8/12, "feet"),
  41192. weight: math.unit(250, "kilograms"),
  41193. volume: math.unit(28, "liters"),
  41194. name: "Front",
  41195. image: {
  41196. source: "./media/characters/rebecca-pawlson/front.svg",
  41197. extra: 1737/1596,
  41198. bottom: 107/1844
  41199. }
  41200. },
  41201. back: {
  41202. height: math.unit(6 + 8/12, "feet"),
  41203. weight: math.unit(250, "kilograms"),
  41204. volume: math.unit(28, "liters"),
  41205. name: "Back",
  41206. image: {
  41207. source: "./media/characters/rebecca-pawlson/back.svg",
  41208. extra: 1702/1523,
  41209. bottom: 86/1788
  41210. }
  41211. },
  41212. },
  41213. [
  41214. {
  41215. name: "Normal",
  41216. height: math.unit(6 + 8/12, "feet")
  41217. },
  41218. {
  41219. name: "Mini Macro",
  41220. height: math.unit(10, "feet"),
  41221. default: true
  41222. },
  41223. {
  41224. name: "Macro",
  41225. height: math.unit(100, "feet")
  41226. },
  41227. {
  41228. name: "Mega Macro",
  41229. height: math.unit(2500, "feet")
  41230. },
  41231. {
  41232. name: "Giga Macro",
  41233. height: math.unit(50, "miles")
  41234. },
  41235. ]
  41236. ))
  41237. characterMakers.push(() => makeCharacter(
  41238. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41239. {
  41240. front: {
  41241. height: math.unit(7 + 6/12, "feet"),
  41242. weight: math.unit(600, "lb"),
  41243. name: "Front",
  41244. image: {
  41245. source: "./media/characters/moxie-nova/front.svg",
  41246. extra: 1734/1652,
  41247. bottom: 41/1775
  41248. }
  41249. },
  41250. },
  41251. [
  41252. {
  41253. name: "Normal",
  41254. height: math.unit(7 + 6/12, "feet"),
  41255. default: true
  41256. },
  41257. ]
  41258. ))
  41259. characterMakers.push(() => makeCharacter(
  41260. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41261. {
  41262. goat: {
  41263. height: math.unit(4, "feet"),
  41264. weight: math.unit(180, "lb"),
  41265. name: "Goat",
  41266. image: {
  41267. source: "./media/characters/tiffany/goat.svg",
  41268. extra: 1845/1595,
  41269. bottom: 106/1951
  41270. }
  41271. },
  41272. front: {
  41273. height: math.unit(5, "feet"),
  41274. weight: math.unit(150, "lb"),
  41275. name: "Foxcoon",
  41276. image: {
  41277. source: "./media/characters/tiffany/foxcoon.svg",
  41278. extra: 1941/1845,
  41279. bottom: 58/1999
  41280. }
  41281. },
  41282. },
  41283. [
  41284. {
  41285. name: "Normal",
  41286. height: math.unit(5, "feet"),
  41287. default: true
  41288. },
  41289. ]
  41290. ))
  41291. characterMakers.push(() => makeCharacter(
  41292. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41293. {
  41294. front: {
  41295. height: math.unit(8, "feet"),
  41296. weight: math.unit(300, "lb"),
  41297. name: "Front",
  41298. image: {
  41299. source: "./media/characters/raxinath/front.svg",
  41300. extra: 1407/1309,
  41301. bottom: 39/1446
  41302. }
  41303. },
  41304. back: {
  41305. height: math.unit(8, "feet"),
  41306. weight: math.unit(300, "lb"),
  41307. name: "Back",
  41308. image: {
  41309. source: "./media/characters/raxinath/back.svg",
  41310. extra: 1405/1315,
  41311. bottom: 9/1414
  41312. }
  41313. },
  41314. },
  41315. [
  41316. {
  41317. name: "Speck",
  41318. height: math.unit(0.5, "nm")
  41319. },
  41320. {
  41321. name: "Micro",
  41322. height: math.unit(3, "inches")
  41323. },
  41324. {
  41325. name: "Kobold",
  41326. height: math.unit(3, "feet")
  41327. },
  41328. {
  41329. name: "Normal",
  41330. height: math.unit(8, "feet"),
  41331. default: true
  41332. },
  41333. {
  41334. name: "Giant",
  41335. height: math.unit(50, "feet")
  41336. },
  41337. {
  41338. name: "Macro",
  41339. height: math.unit(1000, "feet")
  41340. },
  41341. {
  41342. name: "Megamacro",
  41343. height: math.unit(1, "mile")
  41344. },
  41345. ]
  41346. ))
  41347. characterMakers.push(() => makeCharacter(
  41348. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41349. {
  41350. front: {
  41351. height: math.unit(10, "feet"),
  41352. weight: math.unit(1442, "lb"),
  41353. name: "Front",
  41354. image: {
  41355. source: "./media/characters/mal-dragon/front.svg",
  41356. extra: 1515/1444,
  41357. bottom: 113/1628
  41358. }
  41359. },
  41360. back: {
  41361. height: math.unit(10, "feet"),
  41362. weight: math.unit(1442, "lb"),
  41363. name: "Back",
  41364. image: {
  41365. source: "./media/characters/mal-dragon/back.svg",
  41366. extra: 1527/1434,
  41367. bottom: 25/1552
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Mortal Interaction",
  41374. height: math.unit(10, "feet"),
  41375. default: true
  41376. },
  41377. {
  41378. name: "Large",
  41379. height: math.unit(30, "feet")
  41380. },
  41381. {
  41382. name: "Kaiju",
  41383. height: math.unit(300, "feet")
  41384. },
  41385. {
  41386. name: "Megamacro",
  41387. height: math.unit(10000, "feet")
  41388. },
  41389. {
  41390. name: "Continent Cracker",
  41391. height: math.unit(30000000, "feet")
  41392. },
  41393. {
  41394. name: "Sol-Swallowing",
  41395. height: math.unit(1e11, "feet")
  41396. },
  41397. {
  41398. name: "Light Universal",
  41399. height: math.unit(5, "universes")
  41400. },
  41401. {
  41402. name: "Universe Atoms",
  41403. height: math.unit(1.829e9, "universes")
  41404. },
  41405. {
  41406. name: "Light Multiversal",
  41407. height: math.unit(5, "multiverses")
  41408. },
  41409. {
  41410. name: "Multiverse Atoms",
  41411. height: math.unit(1.829e9, "multiverses")
  41412. },
  41413. {
  41414. name: "Fabric of Time",
  41415. height: math.unit(1e262, "multiverses")
  41416. },
  41417. ]
  41418. ))
  41419. characterMakers.push(() => makeCharacter(
  41420. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41421. {
  41422. front: {
  41423. height: math.unit(9, "feet"),
  41424. weight: math.unit(1050, "lb"),
  41425. name: "Front",
  41426. image: {
  41427. source: "./media/characters/tabitha/front.svg",
  41428. extra: 2083/1994,
  41429. bottom: 68/2151
  41430. }
  41431. },
  41432. },
  41433. [
  41434. {
  41435. name: "Baseline",
  41436. height: math.unit(9, "feet"),
  41437. default: true
  41438. },
  41439. {
  41440. name: "Giant",
  41441. height: math.unit(90, "feet")
  41442. },
  41443. {
  41444. name: "Macro",
  41445. height: math.unit(900, "feet")
  41446. },
  41447. {
  41448. name: "Megamacro",
  41449. height: math.unit(9000, "feet")
  41450. },
  41451. {
  41452. name: "City-Crushing",
  41453. height: math.unit(27000, "feet")
  41454. },
  41455. {
  41456. name: "Mountain-Mashing",
  41457. height: math.unit(90000, "feet")
  41458. },
  41459. {
  41460. name: "Nation Nemesis",
  41461. height: math.unit(9e6, "feet")
  41462. },
  41463. {
  41464. name: "Continent Cracker",
  41465. height: math.unit(27e6, "feet")
  41466. },
  41467. {
  41468. name: "Earth-Eclipsing",
  41469. height: math.unit(2.7e8, "feet")
  41470. },
  41471. {
  41472. name: "Gas Giant Gulper",
  41473. height: math.unit(2.7e9, "feet")
  41474. },
  41475. {
  41476. name: "Sol-Swallowing",
  41477. height: math.unit(9e10, "feet")
  41478. },
  41479. {
  41480. name: "Galaxy Gulper",
  41481. height: math.unit(9, "galaxies")
  41482. },
  41483. {
  41484. name: "Cosmos Churner",
  41485. height: math.unit(9, "universes")
  41486. },
  41487. ]
  41488. ))
  41489. characterMakers.push(() => makeCharacter(
  41490. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41491. {
  41492. front: {
  41493. height: math.unit(160, "cm"),
  41494. weight: math.unit(55, "kg"),
  41495. name: "Front",
  41496. image: {
  41497. source: "./media/characters/tow/front.svg",
  41498. extra: 1751/1722,
  41499. bottom: 74/1825
  41500. }
  41501. },
  41502. },
  41503. [
  41504. {
  41505. name: "Norm",
  41506. height: math.unit(160, "cm")
  41507. },
  41508. {
  41509. name: "Casual",
  41510. height: math.unit(3200, "m"),
  41511. default: true
  41512. },
  41513. {
  41514. name: "Show-Off",
  41515. height: math.unit(160, "km")
  41516. },
  41517. ]
  41518. ))
  41519. characterMakers.push(() => makeCharacter(
  41520. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41521. {
  41522. front: {
  41523. height: math.unit(7 + 11/12, "feet"),
  41524. weight: math.unit(342.8, "lb"),
  41525. name: "Front",
  41526. image: {
  41527. source: "./media/characters/vivian-orca-dragon/front.svg",
  41528. extra: 1890/1865,
  41529. bottom: 28/1918
  41530. }
  41531. },
  41532. },
  41533. [
  41534. {
  41535. name: "Micro",
  41536. height: math.unit(5, "inches")
  41537. },
  41538. {
  41539. name: "Normal",
  41540. height: math.unit(7 + 11/12, "feet"),
  41541. default: true
  41542. },
  41543. {
  41544. name: "Macro",
  41545. height: math.unit(395 + 7/12, "feet")
  41546. },
  41547. ]
  41548. ))
  41549. characterMakers.push(() => makeCharacter(
  41550. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41551. {
  41552. side: {
  41553. height: math.unit(10, "feet"),
  41554. weight: math.unit(1442, "lb"),
  41555. name: "Side",
  41556. image: {
  41557. source: "./media/characters/lotherakon/side.svg",
  41558. extra: 1604/1497,
  41559. bottom: 89/1693
  41560. }
  41561. },
  41562. },
  41563. [
  41564. {
  41565. name: "Mortal Interaction",
  41566. height: math.unit(10, "feet")
  41567. },
  41568. {
  41569. name: "Large",
  41570. height: math.unit(30, "feet"),
  41571. default: true
  41572. },
  41573. {
  41574. name: "Giant",
  41575. height: math.unit(100, "feet")
  41576. },
  41577. {
  41578. name: "Kaiju",
  41579. height: math.unit(300, "feet")
  41580. },
  41581. {
  41582. name: "Macro",
  41583. height: math.unit(1000, "feet")
  41584. },
  41585. {
  41586. name: "Macro+",
  41587. height: math.unit(3000, "feet")
  41588. },
  41589. {
  41590. name: "Megamacro",
  41591. height: math.unit(10000, "feet")
  41592. },
  41593. {
  41594. name: "City-Crushing",
  41595. height: math.unit(30000, "feet")
  41596. },
  41597. {
  41598. name: "Continent Cracker",
  41599. height: math.unit(30e6, "feet")
  41600. },
  41601. {
  41602. name: "Earth Eclipsing",
  41603. height: math.unit(3e8, "feet")
  41604. },
  41605. {
  41606. name: "Gas Giant Gulper",
  41607. height: math.unit(3e9, "feet")
  41608. },
  41609. {
  41610. name: "Sol-Swallowing",
  41611. height: math.unit(1e11, "feet")
  41612. },
  41613. {
  41614. name: "System Swallower",
  41615. height: math.unit(3e14, "feet")
  41616. },
  41617. {
  41618. name: "Galaxy Gulper",
  41619. height: math.unit(10, "galaxies")
  41620. },
  41621. {
  41622. name: "Light Universal",
  41623. height: math.unit(5, "universes")
  41624. },
  41625. {
  41626. name: "Universe Palm",
  41627. height: math.unit(20, "universes")
  41628. },
  41629. {
  41630. name: "Light Multiversal",
  41631. height: math.unit(5, "multiverses")
  41632. },
  41633. {
  41634. name: "Multiverse Palm",
  41635. height: math.unit(20, "multiverses")
  41636. },
  41637. {
  41638. name: "Inferno Incarnate",
  41639. height: math.unit(1e7, "multiverses")
  41640. },
  41641. ]
  41642. ))
  41643. characterMakers.push(() => makeCharacter(
  41644. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41645. {
  41646. front: {
  41647. height: math.unit(8, "feet"),
  41648. weight: math.unit(1200, "lb"),
  41649. name: "Front",
  41650. image: {
  41651. source: "./media/characters/malithee/front.svg",
  41652. extra: 1675/1640,
  41653. bottom: 162/1837
  41654. }
  41655. },
  41656. },
  41657. [
  41658. {
  41659. name: "Mortal Interaction",
  41660. height: math.unit(8, "feet"),
  41661. default: true
  41662. },
  41663. {
  41664. name: "Large",
  41665. height: math.unit(24, "feet")
  41666. },
  41667. {
  41668. name: "Kaiju",
  41669. height: math.unit(240, "feet")
  41670. },
  41671. {
  41672. name: "Megamacro",
  41673. height: math.unit(8000, "feet")
  41674. },
  41675. {
  41676. name: "Continent Cracker",
  41677. height: math.unit(24e6, "feet")
  41678. },
  41679. {
  41680. name: "Earth-Eclipsing",
  41681. height: math.unit(2.4e8, "feet")
  41682. },
  41683. {
  41684. name: "Sol-Swallowing",
  41685. height: math.unit(8e10, "feet")
  41686. },
  41687. {
  41688. name: "Galaxy Gulper",
  41689. height: math.unit(8, "galaxies")
  41690. },
  41691. {
  41692. name: "Light Universal",
  41693. height: math.unit(4, "universes")
  41694. },
  41695. {
  41696. name: "Universe Atoms",
  41697. height: math.unit(1.829e9, "universes")
  41698. },
  41699. {
  41700. name: "Light Multiversal",
  41701. height: math.unit(4, "multiverses")
  41702. },
  41703. {
  41704. name: "Multiverse Atoms",
  41705. height: math.unit(1.829e9, "multiverses")
  41706. },
  41707. {
  41708. name: "Nigh-Omnipresence",
  41709. height: math.unit(8e261, "multiverses")
  41710. },
  41711. ]
  41712. ))
  41713. characterMakers.push(() => makeCharacter(
  41714. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41715. {
  41716. front: {
  41717. height: math.unit(10, "feet"),
  41718. weight: math.unit(1500, "lb"),
  41719. name: "Front",
  41720. image: {
  41721. source: "./media/characters/miles-thestia/front.svg",
  41722. extra: 1812/1727,
  41723. bottom: 86/1898
  41724. }
  41725. },
  41726. back: {
  41727. height: math.unit(10, "feet"),
  41728. weight: math.unit(1500, "lb"),
  41729. name: "Back",
  41730. image: {
  41731. source: "./media/characters/miles-thestia/back.svg",
  41732. extra: 1799/1690,
  41733. bottom: 47/1846
  41734. }
  41735. },
  41736. frontNsfw: {
  41737. height: math.unit(10, "feet"),
  41738. weight: math.unit(1500, "lb"),
  41739. name: "Front (NSFW)",
  41740. image: {
  41741. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41742. extra: 1812/1727,
  41743. bottom: 86/1898
  41744. }
  41745. },
  41746. },
  41747. [
  41748. {
  41749. name: "Mini-Macro",
  41750. height: math.unit(10, "feet"),
  41751. default: true
  41752. },
  41753. ]
  41754. ))
  41755. characterMakers.push(() => makeCharacter(
  41756. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41757. {
  41758. front: {
  41759. height: math.unit(25, "feet"),
  41760. name: "Front",
  41761. image: {
  41762. source: "./media/characters/titan-s-wulf/front.svg",
  41763. extra: 1560/1484,
  41764. bottom: 76/1636
  41765. }
  41766. },
  41767. },
  41768. [
  41769. {
  41770. name: "Smallest",
  41771. height: math.unit(25, "feet"),
  41772. default: true
  41773. },
  41774. {
  41775. name: "Normal",
  41776. height: math.unit(200, "feet")
  41777. },
  41778. {
  41779. name: "Macro",
  41780. height: math.unit(200000, "feet")
  41781. },
  41782. {
  41783. name: "Multiversal Original",
  41784. height: math.unit(10000, "multiverses")
  41785. },
  41786. ]
  41787. ))
  41788. characterMakers.push(() => makeCharacter(
  41789. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41790. {
  41791. front: {
  41792. height: math.unit(8, "feet"),
  41793. weight: math.unit(553, "lb"),
  41794. name: "Front",
  41795. image: {
  41796. source: "./media/characters/tawendeh/front.svg",
  41797. extra: 2365/2268,
  41798. bottom: 83/2448
  41799. }
  41800. },
  41801. frontClothed: {
  41802. height: math.unit(8, "feet"),
  41803. weight: math.unit(553, "lb"),
  41804. name: "Front (Clothed)",
  41805. image: {
  41806. source: "./media/characters/tawendeh/front-clothed.svg",
  41807. extra: 2365/2268,
  41808. bottom: 83/2448
  41809. }
  41810. },
  41811. back: {
  41812. height: math.unit(8, "feet"),
  41813. weight: math.unit(553, "lb"),
  41814. name: "Back",
  41815. image: {
  41816. source: "./media/characters/tawendeh/back.svg",
  41817. extra: 2397/2294,
  41818. bottom: 42/2439
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Mortal Interaction",
  41825. height: math.unit(8, "feet"),
  41826. default: true
  41827. },
  41828. {
  41829. name: "Giant",
  41830. height: math.unit(80, "feet")
  41831. },
  41832. {
  41833. name: "Macro",
  41834. height: math.unit(800, "feet")
  41835. },
  41836. {
  41837. name: "Megamacro",
  41838. height: math.unit(8000, "feet")
  41839. },
  41840. {
  41841. name: "City-Crushing",
  41842. height: math.unit(24000, "feet")
  41843. },
  41844. {
  41845. name: "Mountain-Mashing",
  41846. height: math.unit(80000, "feet")
  41847. },
  41848. {
  41849. name: "Nation Nemesis",
  41850. height: math.unit(8e6, "feet")
  41851. },
  41852. {
  41853. name: "Continent Cracker",
  41854. height: math.unit(24e6, "feet")
  41855. },
  41856. {
  41857. name: "Earth-Eclipsing",
  41858. height: math.unit(2.4e8, "feet")
  41859. },
  41860. {
  41861. name: "Gas Giant Gulper",
  41862. height: math.unit(2.4e9, "feet")
  41863. },
  41864. {
  41865. name: "Sol-Swallowing",
  41866. height: math.unit(8e10, "feet")
  41867. },
  41868. {
  41869. name: "Galaxy Gulper",
  41870. height: math.unit(8, "galaxies")
  41871. },
  41872. {
  41873. name: "Cosmos Churner",
  41874. height: math.unit(8, "universes")
  41875. },
  41876. {
  41877. name: "Omnipotent Otter",
  41878. height: math.unit(80, "universes")
  41879. },
  41880. ]
  41881. ))
  41882. characterMakers.push(() => makeCharacter(
  41883. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41884. {
  41885. front: {
  41886. height: math.unit(2.6, "meters"),
  41887. weight: math.unit(900, "kg"),
  41888. name: "Front",
  41889. image: {
  41890. source: "./media/characters/neesha/front.svg",
  41891. extra: 1803/1653,
  41892. bottom: 128/1931
  41893. }
  41894. },
  41895. },
  41896. [
  41897. {
  41898. name: "Normal",
  41899. height: math.unit(2.6, "meters"),
  41900. default: true
  41901. },
  41902. {
  41903. name: "Macro",
  41904. height: math.unit(50, "meters")
  41905. },
  41906. ]
  41907. ))
  41908. characterMakers.push(() => makeCharacter(
  41909. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41910. {
  41911. front: {
  41912. height: math.unit(5, "feet"),
  41913. weight: math.unit(185, "lb"),
  41914. name: "Front",
  41915. image: {
  41916. source: "./media/characters/kyera/front.svg",
  41917. extra: 1875/1790,
  41918. bottom: 96/1971
  41919. }
  41920. },
  41921. },
  41922. [
  41923. {
  41924. name: "Normal",
  41925. height: math.unit(5, "feet"),
  41926. default: true
  41927. },
  41928. ]
  41929. ))
  41930. characterMakers.push(() => makeCharacter(
  41931. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41932. {
  41933. front: {
  41934. height: math.unit(7 + 6/12, "feet"),
  41935. weight: math.unit(540, "lb"),
  41936. name: "Front",
  41937. image: {
  41938. source: "./media/characters/yuko/front.svg",
  41939. extra: 1282/1222,
  41940. bottom: 101/1383
  41941. }
  41942. },
  41943. frontClothed: {
  41944. height: math.unit(7 + 6/12, "feet"),
  41945. weight: math.unit(540, "lb"),
  41946. name: "Front (Clothed)",
  41947. image: {
  41948. source: "./media/characters/yuko/front-clothed.svg",
  41949. extra: 1282/1222,
  41950. bottom: 101/1383
  41951. }
  41952. },
  41953. },
  41954. [
  41955. {
  41956. name: "Normal",
  41957. height: math.unit(7 + 6/12, "feet"),
  41958. default: true
  41959. },
  41960. {
  41961. name: "Macro",
  41962. height: math.unit(26 + 9/12, "feet")
  41963. },
  41964. {
  41965. name: "Megamacro",
  41966. height: math.unit(300, "feet")
  41967. },
  41968. {
  41969. name: "Gigamacro",
  41970. height: math.unit(5000, "feet")
  41971. },
  41972. {
  41973. name: "Planetary",
  41974. height: math.unit(10000, "miles")
  41975. },
  41976. ]
  41977. ))
  41978. characterMakers.push(() => makeCharacter(
  41979. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41980. {
  41981. front: {
  41982. height: math.unit(8 + 2/12, "feet"),
  41983. weight: math.unit(600, "lb"),
  41984. name: "Front",
  41985. image: {
  41986. source: "./media/characters/deam-nitrel/front.svg",
  41987. extra: 1308/1234,
  41988. bottom: 125/1433
  41989. }
  41990. },
  41991. },
  41992. [
  41993. {
  41994. name: "Normal",
  41995. height: math.unit(8 + 2/12, "feet"),
  41996. default: true
  41997. },
  41998. ]
  41999. ))
  42000. characterMakers.push(() => makeCharacter(
  42001. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42002. {
  42003. front: {
  42004. height: math.unit(6.1, "feet"),
  42005. weight: math.unit(180, "lb"),
  42006. name: "Front",
  42007. image: {
  42008. source: "./media/characters/skyress/front.svg",
  42009. extra: 1045/915,
  42010. bottom: 28/1073
  42011. }
  42012. },
  42013. maw: {
  42014. height: math.unit(1, "feet"),
  42015. name: "Maw",
  42016. image: {
  42017. source: "./media/characters/skyress/maw.svg"
  42018. }
  42019. },
  42020. },
  42021. [
  42022. {
  42023. name: "Normal",
  42024. height: math.unit(6.1, "feet"),
  42025. default: true
  42026. },
  42027. {
  42028. name: "Macro",
  42029. height: math.unit(200, "feet")
  42030. },
  42031. ]
  42032. ))
  42033. characterMakers.push(() => makeCharacter(
  42034. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42035. {
  42036. front: {
  42037. height: math.unit(4 + 2/12, "feet"),
  42038. weight: math.unit(40, "kg"),
  42039. name: "Front",
  42040. image: {
  42041. source: "./media/characters/amethyst-jones/front.svg",
  42042. extra: 1220/1150,
  42043. bottom: 101/1321
  42044. }
  42045. },
  42046. },
  42047. [
  42048. {
  42049. name: "Normal",
  42050. height: math.unit(4 + 2/12, "feet"),
  42051. default: true
  42052. },
  42053. ]
  42054. ))
  42055. characterMakers.push(() => makeCharacter(
  42056. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42057. {
  42058. front: {
  42059. height: math.unit(1.7, "m"),
  42060. weight: math.unit(135, "lb"),
  42061. name: "Front",
  42062. image: {
  42063. source: "./media/characters/jade/front.svg",
  42064. extra: 1818/1767,
  42065. bottom: 32/1850
  42066. }
  42067. },
  42068. back: {
  42069. height: math.unit(1.7, "m"),
  42070. weight: math.unit(135, "lb"),
  42071. name: "Back",
  42072. image: {
  42073. source: "./media/characters/jade/back.svg",
  42074. extra: 1869/1809,
  42075. bottom: 35/1904
  42076. }
  42077. },
  42078. hand: {
  42079. height: math.unit(0.24, "m"),
  42080. name: "Hand",
  42081. image: {
  42082. source: "./media/characters/jade/hand.svg"
  42083. }
  42084. },
  42085. foot: {
  42086. height: math.unit(0.263, "m"),
  42087. name: "Foot",
  42088. image: {
  42089. source: "./media/characters/jade/foot.svg"
  42090. }
  42091. },
  42092. dick: {
  42093. height: math.unit(0.47, "m"),
  42094. name: "Dick",
  42095. image: {
  42096. source: "./media/characters/jade/dick.svg"
  42097. }
  42098. },
  42099. },
  42100. [
  42101. {
  42102. name: "Micro",
  42103. height: math.unit(22, "cm")
  42104. },
  42105. {
  42106. name: "Normal",
  42107. height: math.unit(1.7, "m"),
  42108. default: true
  42109. },
  42110. {
  42111. name: "Macro",
  42112. height: math.unit(152, "m")
  42113. },
  42114. ]
  42115. ))
  42116. characterMakers.push(() => makeCharacter(
  42117. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42118. {
  42119. front: {
  42120. height: math.unit(100, "miles"),
  42121. weight: math.unit(20000, "tons"),
  42122. name: "Front",
  42123. image: {
  42124. source: "./media/characters/cookie/front.svg",
  42125. extra: 1125/1070,
  42126. bottom: 30/1155
  42127. }
  42128. },
  42129. },
  42130. [
  42131. {
  42132. name: "Big",
  42133. height: math.unit(50, "feet")
  42134. },
  42135. {
  42136. name: "Macro",
  42137. height: math.unit(100, "miles"),
  42138. default: true
  42139. },
  42140. {
  42141. name: "Megamacro",
  42142. height: math.unit(90000, "miles")
  42143. },
  42144. ]
  42145. ))
  42146. characterMakers.push(() => makeCharacter(
  42147. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42148. {
  42149. front: {
  42150. height: math.unit(6, "feet"),
  42151. weight: math.unit(145, "lb"),
  42152. name: "Front",
  42153. image: {
  42154. source: "./media/characters/farzian/front.svg",
  42155. extra: 1902/1693,
  42156. bottom: 108/2010
  42157. }
  42158. },
  42159. },
  42160. [
  42161. {
  42162. name: "Macro",
  42163. height: math.unit(500, "feet"),
  42164. default: true
  42165. },
  42166. ]
  42167. ))
  42168. characterMakers.push(() => makeCharacter(
  42169. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42170. {
  42171. front: {
  42172. height: math.unit(3 + 6/12, "feet"),
  42173. weight: math.unit(50, "lb"),
  42174. name: "Front",
  42175. image: {
  42176. source: "./media/characters/kimberly-tilson/front.svg",
  42177. extra: 1400/1322,
  42178. bottom: 36/1436
  42179. }
  42180. },
  42181. back: {
  42182. height: math.unit(3 + 6/12, "feet"),
  42183. weight: math.unit(50, "lb"),
  42184. name: "Back",
  42185. image: {
  42186. source: "./media/characters/kimberly-tilson/back.svg",
  42187. extra: 1370/1307,
  42188. bottom: 20/1390
  42189. }
  42190. },
  42191. },
  42192. [
  42193. {
  42194. name: "Normal",
  42195. height: math.unit(3 + 6/12, "feet"),
  42196. default: true
  42197. },
  42198. ]
  42199. ))
  42200. characterMakers.push(() => makeCharacter(
  42201. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42202. {
  42203. front: {
  42204. height: math.unit(1148, "feet"),
  42205. weight: math.unit(34057, "lb"),
  42206. name: "Front",
  42207. image: {
  42208. source: "./media/characters/harthos/front.svg",
  42209. extra: 1391/1339,
  42210. bottom: 13/1404
  42211. }
  42212. },
  42213. },
  42214. [
  42215. {
  42216. name: "Macro",
  42217. height: math.unit(1148, "feet"),
  42218. default: true
  42219. },
  42220. ]
  42221. ))
  42222. characterMakers.push(() => makeCharacter(
  42223. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42224. {
  42225. front: {
  42226. height: math.unit(15, "feet"),
  42227. name: "Front",
  42228. image: {
  42229. source: "./media/characters/hypatia/front.svg",
  42230. extra: 1653/1591,
  42231. bottom: 79/1732
  42232. }
  42233. },
  42234. },
  42235. [
  42236. {
  42237. name: "Normal",
  42238. height: math.unit(15, "feet")
  42239. },
  42240. {
  42241. name: "Small",
  42242. height: math.unit(300, "feet")
  42243. },
  42244. {
  42245. name: "Macro",
  42246. height: math.unit(2500, "feet"),
  42247. default: true
  42248. },
  42249. {
  42250. name: "Mega Macro",
  42251. height: math.unit(1500, "miles")
  42252. },
  42253. {
  42254. name: "Giga Macro",
  42255. height: math.unit(1.5e6, "miles")
  42256. },
  42257. ]
  42258. ))
  42259. characterMakers.push(() => makeCharacter(
  42260. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42261. {
  42262. front: {
  42263. height: math.unit(6, "feet"),
  42264. weight: math.unit(200, "lb"),
  42265. name: "Front",
  42266. image: {
  42267. source: "./media/characters/wulver/front.svg",
  42268. extra: 1724/1632,
  42269. bottom: 130/1854
  42270. }
  42271. },
  42272. frontNsfw: {
  42273. height: math.unit(6, "feet"),
  42274. weight: math.unit(200, "lb"),
  42275. name: "Front (NSFW)",
  42276. image: {
  42277. source: "./media/characters/wulver/front-nsfw.svg",
  42278. extra: 1724/1632,
  42279. bottom: 130/1854
  42280. }
  42281. },
  42282. },
  42283. [
  42284. {
  42285. name: "Human-Sized",
  42286. height: math.unit(6, "feet")
  42287. },
  42288. {
  42289. name: "Normal",
  42290. height: math.unit(4, "meters"),
  42291. default: true
  42292. },
  42293. {
  42294. name: "Large",
  42295. height: math.unit(6, "m")
  42296. },
  42297. ]
  42298. ))
  42299. characterMakers.push(() => makeCharacter(
  42300. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42301. {
  42302. front: {
  42303. height: math.unit(7, "feet"),
  42304. name: "Front",
  42305. image: {
  42306. source: "./media/characters/maru/front.svg",
  42307. extra: 1595/1570,
  42308. bottom: 0/1595
  42309. }
  42310. },
  42311. },
  42312. [
  42313. {
  42314. name: "Normal",
  42315. height: math.unit(7, "feet"),
  42316. default: true
  42317. },
  42318. {
  42319. name: "Macro",
  42320. height: math.unit(700, "feet")
  42321. },
  42322. {
  42323. name: "Mega Macro",
  42324. height: math.unit(25, "miles")
  42325. },
  42326. ]
  42327. ))
  42328. characterMakers.push(() => makeCharacter(
  42329. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42330. {
  42331. front: {
  42332. height: math.unit(6, "feet"),
  42333. weight: math.unit(170, "lb"),
  42334. name: "Front",
  42335. image: {
  42336. source: "./media/characters/xenon/front.svg",
  42337. extra: 1376/1305,
  42338. bottom: 56/1432
  42339. }
  42340. },
  42341. back: {
  42342. height: math.unit(6, "feet"),
  42343. weight: math.unit(170, "lb"),
  42344. name: "Back",
  42345. image: {
  42346. source: "./media/characters/xenon/back.svg",
  42347. extra: 1328/1259,
  42348. bottom: 95/1423
  42349. }
  42350. },
  42351. maw: {
  42352. height: math.unit(0.52, "feet"),
  42353. name: "Maw",
  42354. image: {
  42355. source: "./media/characters/xenon/maw.svg"
  42356. }
  42357. },
  42358. handLeft: {
  42359. height: math.unit(0.82 * 169 / 153, "feet"),
  42360. name: "Hand (Left)",
  42361. image: {
  42362. source: "./media/characters/xenon/hand-left.svg"
  42363. }
  42364. },
  42365. handRight: {
  42366. height: math.unit(0.82, "feet"),
  42367. name: "Hand (Right)",
  42368. image: {
  42369. source: "./media/characters/xenon/hand-right.svg"
  42370. }
  42371. },
  42372. footLeft: {
  42373. height: math.unit(1.13, "feet"),
  42374. name: "Foot (Left)",
  42375. image: {
  42376. source: "./media/characters/xenon/foot-left.svg"
  42377. }
  42378. },
  42379. footRight: {
  42380. height: math.unit(1.13 * 194 / 196, "feet"),
  42381. name: "Foot (Right)",
  42382. image: {
  42383. source: "./media/characters/xenon/foot-right.svg"
  42384. }
  42385. },
  42386. },
  42387. [
  42388. {
  42389. name: "Micro",
  42390. height: math.unit(0.8, "inches")
  42391. },
  42392. {
  42393. name: "Normal",
  42394. height: math.unit(6, "feet")
  42395. },
  42396. {
  42397. name: "Macro",
  42398. height: math.unit(50, "feet"),
  42399. default: true
  42400. },
  42401. {
  42402. name: "Macro+",
  42403. height: math.unit(250, "feet")
  42404. },
  42405. {
  42406. name: "Megamacro",
  42407. height: math.unit(1500, "feet")
  42408. },
  42409. ]
  42410. ))
  42411. characterMakers.push(() => makeCharacter(
  42412. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42413. {
  42414. front: {
  42415. height: math.unit(7 + 5/12, "feet"),
  42416. name: "Front",
  42417. image: {
  42418. source: "./media/characters/zane/front.svg",
  42419. extra: 1260/1203,
  42420. bottom: 94/1354
  42421. }
  42422. },
  42423. back: {
  42424. height: math.unit(5.05, "feet"),
  42425. name: "Back",
  42426. image: {
  42427. source: "./media/characters/zane/back.svg",
  42428. extra: 893/829,
  42429. bottom: 30/923
  42430. }
  42431. },
  42432. werewolf: {
  42433. height: math.unit(11, "feet"),
  42434. name: "Werewolf",
  42435. image: {
  42436. source: "./media/characters/zane/werewolf.svg",
  42437. extra: 1383/1323,
  42438. bottom: 89/1472
  42439. }
  42440. },
  42441. foot: {
  42442. height: math.unit(1.46, "feet"),
  42443. name: "Foot",
  42444. image: {
  42445. source: "./media/characters/zane/foot.svg"
  42446. }
  42447. },
  42448. footFront: {
  42449. height: math.unit(0.784, "feet"),
  42450. name: "Foot (Front)",
  42451. image: {
  42452. source: "./media/characters/zane/foot-front.svg"
  42453. }
  42454. },
  42455. dick: {
  42456. height: math.unit(1.95, "feet"),
  42457. name: "Dick",
  42458. image: {
  42459. source: "./media/characters/zane/dick.svg"
  42460. }
  42461. },
  42462. dickWerewolf: {
  42463. height: math.unit(3.77, "feet"),
  42464. name: "Dick (Werewolf)",
  42465. image: {
  42466. source: "./media/characters/zane/dick.svg"
  42467. }
  42468. },
  42469. },
  42470. [
  42471. {
  42472. name: "Normal",
  42473. height: math.unit(7 + 5/12, "feet"),
  42474. default: true
  42475. },
  42476. ]
  42477. ))
  42478. characterMakers.push(() => makeCharacter(
  42479. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42480. {
  42481. front: {
  42482. height: math.unit(6 + 2/12, "feet"),
  42483. weight: math.unit(284, "lb"),
  42484. name: "Front",
  42485. image: {
  42486. source: "./media/characters/benni-desparque/front.svg",
  42487. extra: 1353/1126,
  42488. bottom: 69/1422
  42489. }
  42490. },
  42491. },
  42492. [
  42493. {
  42494. name: "Civilian",
  42495. height: math.unit(6 + 2/12, "feet")
  42496. },
  42497. {
  42498. name: "Normal",
  42499. height: math.unit(98, "feet"),
  42500. default: true
  42501. },
  42502. {
  42503. name: "Kaiju Fighter",
  42504. height: math.unit(268, "feet")
  42505. },
  42506. ]
  42507. ))
  42508. characterMakers.push(() => makeCharacter(
  42509. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42510. {
  42511. front: {
  42512. height: math.unit(5, "feet"),
  42513. weight: math.unit(105, "lb"),
  42514. name: "Front",
  42515. image: {
  42516. source: "./media/characters/maxine/front.svg",
  42517. extra: 1386/1250,
  42518. bottom: 71/1457
  42519. }
  42520. },
  42521. },
  42522. [
  42523. {
  42524. name: "Normal",
  42525. height: math.unit(5, "feet"),
  42526. default: true
  42527. },
  42528. ]
  42529. ))
  42530. characterMakers.push(() => makeCharacter(
  42531. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42532. {
  42533. front: {
  42534. height: math.unit(11 + 7/12, "feet"),
  42535. weight: math.unit(9576, "lb"),
  42536. name: "Front",
  42537. image: {
  42538. source: "./media/characters/scaly/front.svg",
  42539. extra: 888/867,
  42540. bottom: 36/924
  42541. }
  42542. },
  42543. },
  42544. [
  42545. {
  42546. name: "Normal",
  42547. height: math.unit(11 + 7/12, "feet"),
  42548. default: true
  42549. },
  42550. ]
  42551. ))
  42552. characterMakers.push(() => makeCharacter(
  42553. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42554. {
  42555. front: {
  42556. height: math.unit(6 + 3/12, "feet"),
  42557. name: "Front",
  42558. image: {
  42559. source: "./media/characters/saelria/front.svg",
  42560. extra: 1243/1138,
  42561. bottom: 46/1289
  42562. }
  42563. },
  42564. },
  42565. [
  42566. {
  42567. name: "Micro",
  42568. height: math.unit(6, "inches"),
  42569. },
  42570. {
  42571. name: "Normal",
  42572. height: math.unit(6 + 3/12, "feet"),
  42573. default: true
  42574. },
  42575. {
  42576. name: "Macro",
  42577. height: math.unit(25, "feet")
  42578. },
  42579. ]
  42580. ))
  42581. characterMakers.push(() => makeCharacter(
  42582. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42583. {
  42584. front: {
  42585. height: math.unit(80, "meters"),
  42586. weight: math.unit(7000, "tonnes"),
  42587. name: "Front",
  42588. image: {
  42589. source: "./media/characters/tef/front.svg",
  42590. extra: 2036/1991,
  42591. bottom: 54/2090
  42592. }
  42593. },
  42594. back: {
  42595. height: math.unit(80, "meters"),
  42596. weight: math.unit(7000, "tonnes"),
  42597. name: "Back",
  42598. image: {
  42599. source: "./media/characters/tef/back.svg",
  42600. extra: 2036/1991,
  42601. bottom: 54/2090
  42602. }
  42603. },
  42604. },
  42605. [
  42606. {
  42607. name: "Macro",
  42608. height: math.unit(80, "meters"),
  42609. default: true
  42610. },
  42611. ]
  42612. ))
  42613. characterMakers.push(() => makeCharacter(
  42614. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42615. {
  42616. front: {
  42617. height: math.unit(13, "feet"),
  42618. weight: math.unit(6, "tons"),
  42619. name: "Front",
  42620. image: {
  42621. source: "./media/characters/rover/front.svg",
  42622. extra: 1233/1156,
  42623. bottom: 50/1283
  42624. }
  42625. },
  42626. back: {
  42627. height: math.unit(13, "feet"),
  42628. weight: math.unit(6, "tons"),
  42629. name: "Back",
  42630. image: {
  42631. source: "./media/characters/rover/back.svg",
  42632. extra: 1327/1258,
  42633. bottom: 39/1366
  42634. }
  42635. },
  42636. },
  42637. [
  42638. {
  42639. name: "Normal",
  42640. height: math.unit(13, "feet"),
  42641. default: true
  42642. },
  42643. {
  42644. name: "Macro",
  42645. height: math.unit(1300, "feet")
  42646. },
  42647. {
  42648. name: "Megamacro",
  42649. height: math.unit(1300, "miles")
  42650. },
  42651. {
  42652. name: "Gigamacro",
  42653. height: math.unit(1300000, "miles")
  42654. },
  42655. ]
  42656. ))
  42657. characterMakers.push(() => makeCharacter(
  42658. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42659. {
  42660. front: {
  42661. height: math.unit(6, "feet"),
  42662. weight: math.unit(150, "lb"),
  42663. name: "Front",
  42664. image: {
  42665. source: "./media/characters/ariz/front.svg",
  42666. extra: 1401/1346,
  42667. bottom: 5/1406
  42668. }
  42669. },
  42670. },
  42671. [
  42672. {
  42673. name: "Normal",
  42674. height: math.unit(10, "feet"),
  42675. default: true
  42676. },
  42677. ]
  42678. ))
  42679. characterMakers.push(() => makeCharacter(
  42680. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42681. {
  42682. front: {
  42683. height: math.unit(6, "feet"),
  42684. weight: math.unit(140, "lb"),
  42685. name: "Front",
  42686. image: {
  42687. source: "./media/characters/sigrun/front.svg",
  42688. extra: 1418/1359,
  42689. bottom: 27/1445
  42690. }
  42691. },
  42692. },
  42693. [
  42694. {
  42695. name: "Macro",
  42696. height: math.unit(35, "feet"),
  42697. default: true
  42698. },
  42699. ]
  42700. ))
  42701. characterMakers.push(() => makeCharacter(
  42702. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42703. {
  42704. front: {
  42705. height: math.unit(6, "feet"),
  42706. weight: math.unit(150, "lb"),
  42707. name: "Front",
  42708. image: {
  42709. source: "./media/characters/numin/front.svg",
  42710. extra: 1433/1388,
  42711. bottom: 12/1445
  42712. }
  42713. },
  42714. },
  42715. [
  42716. {
  42717. name: "Macro",
  42718. height: math.unit(21.5, "km"),
  42719. default: true
  42720. },
  42721. ]
  42722. ))
  42723. characterMakers.push(() => makeCharacter(
  42724. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42725. {
  42726. front: {
  42727. height: math.unit(6, "feet"),
  42728. weight: math.unit(463, "lb"),
  42729. name: "Front",
  42730. image: {
  42731. source: "./media/characters/melwa/front.svg",
  42732. extra: 1307/1248,
  42733. bottom: 93/1400
  42734. }
  42735. },
  42736. },
  42737. [
  42738. {
  42739. name: "Macro",
  42740. height: math.unit(50, "meters"),
  42741. default: true
  42742. },
  42743. ]
  42744. ))
  42745. characterMakers.push(() => makeCharacter(
  42746. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42747. {
  42748. front: {
  42749. height: math.unit(325, "feet"),
  42750. name: "Front",
  42751. image: {
  42752. source: "./media/characters/zorkaiju/front.svg",
  42753. extra: 1955/1814,
  42754. bottom: 40/1995
  42755. }
  42756. },
  42757. frontExtended: {
  42758. height: math.unit(325, "feet"),
  42759. name: "Front (Extended)",
  42760. image: {
  42761. source: "./media/characters/zorkaiju/front-extended.svg",
  42762. extra: 1955/1814,
  42763. bottom: 40/1995
  42764. }
  42765. },
  42766. side: {
  42767. height: math.unit(325, "feet"),
  42768. name: "Side",
  42769. image: {
  42770. source: "./media/characters/zorkaiju/side.svg",
  42771. extra: 1495/1396,
  42772. bottom: 17/1512
  42773. }
  42774. },
  42775. sideExtended: {
  42776. height: math.unit(325, "feet"),
  42777. name: "Side (Extended)",
  42778. image: {
  42779. source: "./media/characters/zorkaiju/side-extended.svg",
  42780. extra: 1495/1396,
  42781. bottom: 17/1512
  42782. }
  42783. },
  42784. back: {
  42785. height: math.unit(325, "feet"),
  42786. name: "Back",
  42787. image: {
  42788. source: "./media/characters/zorkaiju/back.svg",
  42789. extra: 1959/1821,
  42790. bottom: 31/1990
  42791. }
  42792. },
  42793. backExtended: {
  42794. height: math.unit(325, "feet"),
  42795. name: "Back (Extended)",
  42796. image: {
  42797. source: "./media/characters/zorkaiju/back-extended.svg",
  42798. extra: 1959/1821,
  42799. bottom: 31/1990
  42800. }
  42801. },
  42802. hand: {
  42803. height: math.unit(58.4, "feet"),
  42804. name: "Hand",
  42805. image: {
  42806. source: "./media/characters/zorkaiju/hand.svg"
  42807. }
  42808. },
  42809. handExtended: {
  42810. height: math.unit(61.4, "feet"),
  42811. name: "Hand (Extended)",
  42812. image: {
  42813. source: "./media/characters/zorkaiju/hand-extended.svg"
  42814. }
  42815. },
  42816. foot: {
  42817. height: math.unit(95, "feet"),
  42818. name: "Foot",
  42819. image: {
  42820. source: "./media/characters/zorkaiju/foot.svg"
  42821. }
  42822. },
  42823. leftArm: {
  42824. height: math.unit(59, "feet"),
  42825. name: "Left Arm",
  42826. image: {
  42827. source: "./media/characters/zorkaiju/left-arm.svg"
  42828. }
  42829. },
  42830. rightArm: {
  42831. height: math.unit(59, "feet"),
  42832. name: "Right Arm",
  42833. image: {
  42834. source: "./media/characters/zorkaiju/right-arm.svg"
  42835. }
  42836. },
  42837. leftArmExtended: {
  42838. height: math.unit(59 * 1.033546, "feet"),
  42839. name: "Left Arm (Extended)",
  42840. image: {
  42841. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42842. }
  42843. },
  42844. rightArmExtended: {
  42845. height: math.unit(59 * 1.0496, "feet"),
  42846. name: "Right Arm (Extended)",
  42847. image: {
  42848. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42849. }
  42850. },
  42851. tail: {
  42852. height: math.unit(104, "feet"),
  42853. name: "Tail",
  42854. image: {
  42855. source: "./media/characters/zorkaiju/tail.svg"
  42856. }
  42857. },
  42858. tailExtended: {
  42859. height: math.unit(104, "feet"),
  42860. name: "Tail (Extended)",
  42861. image: {
  42862. source: "./media/characters/zorkaiju/tail-extended.svg"
  42863. }
  42864. },
  42865. tailBottom: {
  42866. height: math.unit(104, "feet"),
  42867. name: "Tail Bottom",
  42868. image: {
  42869. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42870. }
  42871. },
  42872. crystal: {
  42873. height: math.unit(27.54, "feet"),
  42874. name: "Crystal",
  42875. image: {
  42876. source: "./media/characters/zorkaiju/crystal.svg"
  42877. }
  42878. },
  42879. },
  42880. [
  42881. {
  42882. name: "Kaiju",
  42883. height: math.unit(325, "feet"),
  42884. default: true
  42885. },
  42886. ]
  42887. ))
  42888. characterMakers.push(() => makeCharacter(
  42889. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42890. {
  42891. front: {
  42892. height: math.unit(6 + 1/12, "feet"),
  42893. weight: math.unit(115, "lb"),
  42894. name: "Front",
  42895. image: {
  42896. source: "./media/characters/bailey-belfry/front.svg",
  42897. extra: 1240/1121,
  42898. bottom: 101/1341
  42899. }
  42900. },
  42901. },
  42902. [
  42903. {
  42904. name: "Normal",
  42905. height: math.unit(6 + 1/12, "feet"),
  42906. default: true
  42907. },
  42908. ]
  42909. ))
  42910. characterMakers.push(() => makeCharacter(
  42911. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42912. {
  42913. side: {
  42914. height: math.unit(4, "meters"),
  42915. weight: math.unit(250, "kg"),
  42916. name: "Side",
  42917. image: {
  42918. source: "./media/characters/blacky/side.svg",
  42919. extra: 1027/919,
  42920. bottom: 43/1070
  42921. }
  42922. },
  42923. maw: {
  42924. height: math.unit(1, "meters"),
  42925. name: "Maw",
  42926. image: {
  42927. source: "./media/characters/blacky/maw.svg"
  42928. }
  42929. },
  42930. paw: {
  42931. height: math.unit(1, "meters"),
  42932. name: "Paw",
  42933. image: {
  42934. source: "./media/characters/blacky/paw.svg"
  42935. }
  42936. },
  42937. },
  42938. [
  42939. {
  42940. name: "Normal",
  42941. height: math.unit(4, "meters"),
  42942. default: true
  42943. },
  42944. ]
  42945. ))
  42946. characterMakers.push(() => makeCharacter(
  42947. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42948. {
  42949. front: {
  42950. height: math.unit(170, "cm"),
  42951. weight: math.unit(66, "kg"),
  42952. name: "Front",
  42953. image: {
  42954. source: "./media/characters/thux-ei/front.svg",
  42955. extra: 1109/1011,
  42956. bottom: 8/1117
  42957. }
  42958. },
  42959. },
  42960. [
  42961. {
  42962. name: "Normal",
  42963. height: math.unit(170, "cm"),
  42964. default: true
  42965. },
  42966. ]
  42967. ))
  42968. characterMakers.push(() => makeCharacter(
  42969. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42970. {
  42971. front: {
  42972. height: math.unit(5, "feet"),
  42973. weight: math.unit(120, "lb"),
  42974. name: "Front",
  42975. image: {
  42976. source: "./media/characters/roxanne-voltaire/front.svg",
  42977. extra: 1901/1779,
  42978. bottom: 53/1954
  42979. }
  42980. },
  42981. },
  42982. [
  42983. {
  42984. name: "Normal",
  42985. height: math.unit(5, "feet"),
  42986. default: true
  42987. },
  42988. {
  42989. name: "Giant",
  42990. height: math.unit(50, "feet")
  42991. },
  42992. {
  42993. name: "Titan",
  42994. height: math.unit(500, "feet")
  42995. },
  42996. {
  42997. name: "Macro",
  42998. height: math.unit(5000, "feet")
  42999. },
  43000. {
  43001. name: "Megamacro",
  43002. height: math.unit(50000, "feet")
  43003. },
  43004. {
  43005. name: "Gigamacro",
  43006. height: math.unit(500000, "feet")
  43007. },
  43008. {
  43009. name: "Teramacro",
  43010. height: math.unit(5e6, "feet")
  43011. },
  43012. ]
  43013. ))
  43014. characterMakers.push(() => makeCharacter(
  43015. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43016. {
  43017. front: {
  43018. height: math.unit(6 + 2/12, "feet"),
  43019. name: "Front",
  43020. image: {
  43021. source: "./media/characters/squeaks/front.svg",
  43022. extra: 1823/1768,
  43023. bottom: 138/1961
  43024. }
  43025. },
  43026. },
  43027. [
  43028. {
  43029. name: "Micro",
  43030. height: math.unit(0.5, "inches")
  43031. },
  43032. {
  43033. name: "Normal",
  43034. height: math.unit(6 + 2/12, "feet"),
  43035. default: true
  43036. },
  43037. {
  43038. name: "Macro",
  43039. height: math.unit(600, "feet")
  43040. },
  43041. ]
  43042. ))
  43043. characterMakers.push(() => makeCharacter(
  43044. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43045. {
  43046. front: {
  43047. height: math.unit(1.72, "meters"),
  43048. name: "Front",
  43049. image: {
  43050. source: "./media/characters/archinger/front.svg",
  43051. extra: 1861/1675,
  43052. bottom: 125/1986
  43053. }
  43054. },
  43055. back: {
  43056. height: math.unit(1.72, "meters"),
  43057. name: "Back",
  43058. image: {
  43059. source: "./media/characters/archinger/back.svg",
  43060. extra: 1844/1701,
  43061. bottom: 104/1948
  43062. }
  43063. },
  43064. cock: {
  43065. height: math.unit(0.59, "feet"),
  43066. name: "Cock",
  43067. image: {
  43068. source: "./media/characters/archinger/cock.svg"
  43069. }
  43070. },
  43071. },
  43072. [
  43073. {
  43074. name: "Normal",
  43075. height: math.unit(1.72, "meters"),
  43076. default: true
  43077. },
  43078. {
  43079. name: "Macro",
  43080. height: math.unit(84, "meters")
  43081. },
  43082. {
  43083. name: "Macro+",
  43084. height: math.unit(112, "meters")
  43085. },
  43086. {
  43087. name: "Macro++",
  43088. height: math.unit(960, "meters")
  43089. },
  43090. {
  43091. name: "Macro+++",
  43092. height: math.unit(4, "km")
  43093. },
  43094. {
  43095. name: "Macro++++",
  43096. height: math.unit(48, "km")
  43097. },
  43098. {
  43099. name: "Macro+++++",
  43100. height: math.unit(4500, "km")
  43101. },
  43102. ]
  43103. ))
  43104. characterMakers.push(() => makeCharacter(
  43105. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43106. {
  43107. front: {
  43108. height: math.unit(5 + 5/12, "feet"),
  43109. name: "Front",
  43110. image: {
  43111. source: "./media/characters/alsnapz/front.svg",
  43112. extra: 1157/1065,
  43113. bottom: 42/1199
  43114. }
  43115. },
  43116. },
  43117. [
  43118. {
  43119. name: "Normal",
  43120. height: math.unit(5 + 5/12, "feet"),
  43121. default: true
  43122. },
  43123. ]
  43124. ))
  43125. characterMakers.push(() => makeCharacter(
  43126. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43127. {
  43128. side: {
  43129. height: math.unit(3.2, "earths"),
  43130. name: "Side",
  43131. image: {
  43132. source: "./media/characters/mag/side.svg",
  43133. extra: 1331/1008,
  43134. bottom: 52/1383
  43135. }
  43136. },
  43137. wing: {
  43138. height: math.unit(1.94, "earths"),
  43139. name: "Wing",
  43140. image: {
  43141. source: "./media/characters/mag/wing.svg"
  43142. }
  43143. },
  43144. dick: {
  43145. height: math.unit(1.8, "earths"),
  43146. name: "Dick",
  43147. image: {
  43148. source: "./media/characters/mag/dick.svg"
  43149. }
  43150. },
  43151. ass: {
  43152. height: math.unit(1.33, "earths"),
  43153. name: "Ass",
  43154. image: {
  43155. source: "./media/characters/mag/ass.svg"
  43156. }
  43157. },
  43158. head: {
  43159. height: math.unit(1.1, "earths"),
  43160. name: "Head",
  43161. image: {
  43162. source: "./media/characters/mag/head.svg"
  43163. }
  43164. },
  43165. maw: {
  43166. height: math.unit(1.62, "earths"),
  43167. name: "Maw",
  43168. image: {
  43169. source: "./media/characters/mag/maw.svg"
  43170. }
  43171. },
  43172. },
  43173. [
  43174. {
  43175. name: "Small",
  43176. height: math.unit(162, "feet")
  43177. },
  43178. {
  43179. name: "Normal",
  43180. height: math.unit(3.2, "earths"),
  43181. default: true
  43182. },
  43183. ]
  43184. ))
  43185. characterMakers.push(() => makeCharacter(
  43186. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43187. {
  43188. front: {
  43189. height: math.unit(512, "feet"),
  43190. weight: math.unit(63509, "tonnes"),
  43191. name: "Front",
  43192. image: {
  43193. source: "./media/characters/vorrel-harroc/front.svg",
  43194. extra: 1075/1063,
  43195. bottom: 62/1137
  43196. }
  43197. },
  43198. },
  43199. [
  43200. {
  43201. name: "Normal",
  43202. height: math.unit(10, "feet")
  43203. },
  43204. {
  43205. name: "Macro",
  43206. height: math.unit(512, "feet"),
  43207. default: true
  43208. },
  43209. {
  43210. name: "Megamacro",
  43211. height: math.unit(256, "miles")
  43212. },
  43213. {
  43214. name: "Gigamacro",
  43215. height: math.unit(4096, "miles")
  43216. },
  43217. ]
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43221. {
  43222. side: {
  43223. height: math.unit(50, "feet"),
  43224. name: "Side",
  43225. image: {
  43226. source: "./media/characters/froimar/side.svg",
  43227. extra: 855/638,
  43228. bottom: 99/954
  43229. }
  43230. },
  43231. },
  43232. [
  43233. {
  43234. name: "Macro",
  43235. height: math.unit(50, "feet"),
  43236. default: true
  43237. },
  43238. ]
  43239. ))
  43240. characterMakers.push(() => makeCharacter(
  43241. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43242. {
  43243. front: {
  43244. height: math.unit(210, "miles"),
  43245. name: "Front",
  43246. image: {
  43247. source: "./media/characters/timothy/front.svg",
  43248. extra: 1007/943,
  43249. bottom: 62/1069
  43250. }
  43251. },
  43252. frontSkirt: {
  43253. height: math.unit(210, "miles"),
  43254. name: "Front (Skirt)",
  43255. image: {
  43256. source: "./media/characters/timothy/front-skirt.svg",
  43257. extra: 1007/943,
  43258. bottom: 62/1069
  43259. }
  43260. },
  43261. frontCoat: {
  43262. height: math.unit(210, "miles"),
  43263. name: "Front (Coat)",
  43264. image: {
  43265. source: "./media/characters/timothy/front-coat.svg",
  43266. extra: 1007/943,
  43267. bottom: 62/1069
  43268. }
  43269. },
  43270. },
  43271. [
  43272. {
  43273. name: "Macro",
  43274. height: math.unit(210, "miles"),
  43275. default: true
  43276. },
  43277. {
  43278. name: "Megamacro",
  43279. height: math.unit(210000, "miles")
  43280. },
  43281. ]
  43282. ))
  43283. characterMakers.push(() => makeCharacter(
  43284. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43285. {
  43286. front: {
  43287. height: math.unit(188, "feet"),
  43288. name: "Front",
  43289. image: {
  43290. source: "./media/characters/pyotr/front.svg",
  43291. extra: 1912/1826,
  43292. bottom: 18/1930
  43293. }
  43294. },
  43295. },
  43296. [
  43297. {
  43298. name: "Macro",
  43299. height: math.unit(188, "feet"),
  43300. default: true
  43301. },
  43302. {
  43303. name: "Megamacro",
  43304. height: math.unit(8, "miles")
  43305. },
  43306. ]
  43307. ))
  43308. characterMakers.push(() => makeCharacter(
  43309. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43310. {
  43311. side: {
  43312. height: math.unit(10, "feet"),
  43313. weight: math.unit(4500, "lb"),
  43314. name: "Side",
  43315. image: {
  43316. source: "./media/characters/ackart/side.svg",
  43317. extra: 1776/1668,
  43318. bottom: 116/1892
  43319. }
  43320. },
  43321. },
  43322. [
  43323. {
  43324. name: "Normal",
  43325. height: math.unit(10, "feet"),
  43326. default: true
  43327. },
  43328. ]
  43329. ))
  43330. characterMakers.push(() => makeCharacter(
  43331. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43332. {
  43333. side: {
  43334. height: math.unit(21, "feet"),
  43335. name: "Side",
  43336. image: {
  43337. source: "./media/characters/nolow/side.svg",
  43338. extra: 1484/1434,
  43339. bottom: 85/1569
  43340. }
  43341. },
  43342. sideErect: {
  43343. height: math.unit(21, "feet"),
  43344. name: "Side-erect",
  43345. image: {
  43346. source: "./media/characters/nolow/side-erect.svg",
  43347. extra: 1484/1434,
  43348. bottom: 85/1569
  43349. }
  43350. },
  43351. },
  43352. [
  43353. {
  43354. name: "Regular",
  43355. height: math.unit(12, "feet")
  43356. },
  43357. {
  43358. name: "Big Chee",
  43359. height: math.unit(21, "feet"),
  43360. default: true
  43361. },
  43362. ]
  43363. ))
  43364. characterMakers.push(() => makeCharacter(
  43365. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43366. {
  43367. front: {
  43368. height: math.unit(7, "feet"),
  43369. weight: math.unit(250, "lb"),
  43370. name: "Front",
  43371. image: {
  43372. source: "./media/characters/nines/front.svg",
  43373. extra: 1741/1607,
  43374. bottom: 41/1782
  43375. }
  43376. },
  43377. side: {
  43378. height: math.unit(7, "feet"),
  43379. weight: math.unit(250, "lb"),
  43380. name: "Side",
  43381. image: {
  43382. source: "./media/characters/nines/side.svg",
  43383. extra: 1854/1735,
  43384. bottom: 93/1947
  43385. }
  43386. },
  43387. back: {
  43388. height: math.unit(7, "feet"),
  43389. weight: math.unit(250, "lb"),
  43390. name: "Back",
  43391. image: {
  43392. source: "./media/characters/nines/back.svg",
  43393. extra: 1748/1615,
  43394. bottom: 20/1768
  43395. }
  43396. },
  43397. },
  43398. [
  43399. {
  43400. name: "Megamacro",
  43401. height: math.unit(99, "km"),
  43402. default: true
  43403. },
  43404. ]
  43405. ))
  43406. characterMakers.push(() => makeCharacter(
  43407. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43408. {
  43409. front: {
  43410. height: math.unit(5 + 10/12, "feet"),
  43411. weight: math.unit(210, "lb"),
  43412. name: "Front",
  43413. image: {
  43414. source: "./media/characters/zenith/front.svg",
  43415. extra: 1531/1452,
  43416. bottom: 198/1729
  43417. }
  43418. },
  43419. back: {
  43420. height: math.unit(5 + 10/12, "feet"),
  43421. weight: math.unit(210, "lb"),
  43422. name: "Back",
  43423. image: {
  43424. source: "./media/characters/zenith/back.svg",
  43425. extra: 1571/1487,
  43426. bottom: 75/1646
  43427. }
  43428. },
  43429. },
  43430. [
  43431. {
  43432. name: "Normal",
  43433. height: math.unit(5 + 10/12, "feet"),
  43434. default: true
  43435. }
  43436. ]
  43437. ))
  43438. characterMakers.push(() => makeCharacter(
  43439. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43440. {
  43441. front: {
  43442. height: math.unit(4, "feet"),
  43443. weight: math.unit(60, "lb"),
  43444. name: "Front",
  43445. image: {
  43446. source: "./media/characters/jasper/front.svg",
  43447. extra: 1450/1379,
  43448. bottom: 19/1469
  43449. }
  43450. },
  43451. },
  43452. [
  43453. {
  43454. name: "Normal",
  43455. height: math.unit(4, "feet"),
  43456. default: true
  43457. },
  43458. ]
  43459. ))
  43460. characterMakers.push(() => makeCharacter(
  43461. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43462. {
  43463. front: {
  43464. height: math.unit(6 + 5/12, "feet"),
  43465. weight: math.unit(290, "lb"),
  43466. name: "Front",
  43467. image: {
  43468. source: "./media/characters/tiberius-thyben/front.svg",
  43469. extra: 757/739,
  43470. bottom: 39/796
  43471. }
  43472. },
  43473. },
  43474. [
  43475. {
  43476. name: "Micro",
  43477. height: math.unit(1.5, "inches")
  43478. },
  43479. {
  43480. name: "Normal",
  43481. height: math.unit(6 + 5/12, "feet"),
  43482. default: true
  43483. },
  43484. {
  43485. name: "Macro",
  43486. height: math.unit(300, "feet")
  43487. },
  43488. ]
  43489. ))
  43490. characterMakers.push(() => makeCharacter(
  43491. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43492. {
  43493. front: {
  43494. height: math.unit(5 + 6/12, "feet"),
  43495. weight: math.unit(60, "kg"),
  43496. name: "Front",
  43497. image: {
  43498. source: "./media/characters/sabre/front.svg",
  43499. extra: 738/671,
  43500. bottom: 27/765
  43501. }
  43502. },
  43503. },
  43504. [
  43505. {
  43506. name: "Teeny",
  43507. height: math.unit(2, "inches")
  43508. },
  43509. {
  43510. name: "Smol",
  43511. height: math.unit(8, "inches")
  43512. },
  43513. {
  43514. name: "Normal",
  43515. height: math.unit(5 + 6/12, "feet"),
  43516. default: true
  43517. },
  43518. {
  43519. name: "Mini-Macro",
  43520. height: math.unit(15, "feet")
  43521. },
  43522. {
  43523. name: "Macro",
  43524. height: math.unit(50, "feet")
  43525. },
  43526. ]
  43527. ))
  43528. characterMakers.push(() => makeCharacter(
  43529. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43530. {
  43531. front: {
  43532. height: math.unit(6 + 4/12, "feet"),
  43533. weight: math.unit(170, "lb"),
  43534. name: "Front",
  43535. image: {
  43536. source: "./media/characters/charlie/front.svg",
  43537. extra: 1348/1228,
  43538. bottom: 15/1363
  43539. }
  43540. },
  43541. },
  43542. [
  43543. {
  43544. name: "Macro",
  43545. height: math.unit(1700, "meters"),
  43546. default: true
  43547. },
  43548. {
  43549. name: "MegaMacro",
  43550. height: math.unit(20400, "meters")
  43551. },
  43552. ]
  43553. ))
  43554. characterMakers.push(() => makeCharacter(
  43555. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43556. {
  43557. front: {
  43558. height: math.unit(6 + 3/12, "feet"),
  43559. weight: math.unit(185, "lb"),
  43560. name: "Front",
  43561. image: {
  43562. source: "./media/characters/susan-grant/front.svg",
  43563. extra: 1351/1327,
  43564. bottom: 26/1377
  43565. }
  43566. },
  43567. },
  43568. [
  43569. {
  43570. name: "Normal",
  43571. height: math.unit(6 + 3/12, "feet"),
  43572. default: true
  43573. },
  43574. {
  43575. name: "Macro",
  43576. height: math.unit(225, "feet")
  43577. },
  43578. {
  43579. name: "Macro+",
  43580. height: math.unit(900, "feet")
  43581. },
  43582. {
  43583. name: "MegaMacro",
  43584. height: math.unit(14400, "feet")
  43585. },
  43586. ]
  43587. ))
  43588. characterMakers.push(() => makeCharacter(
  43589. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43590. {
  43591. front: {
  43592. height: math.unit(5 + 4/12, "feet"),
  43593. weight: math.unit(110, "lb"),
  43594. name: "Front",
  43595. image: {
  43596. source: "./media/characters/axel-isanov/front.svg",
  43597. extra: 1096/1065,
  43598. bottom: 13/1109
  43599. }
  43600. },
  43601. },
  43602. [
  43603. {
  43604. name: "Normal",
  43605. height: math.unit(5 + 4/12, "feet"),
  43606. default: true
  43607. },
  43608. ]
  43609. ))
  43610. characterMakers.push(() => makeCharacter(
  43611. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43612. {
  43613. front: {
  43614. height: math.unit(9, "feet"),
  43615. weight: math.unit(467, "lb"),
  43616. name: "Front",
  43617. image: {
  43618. source: "./media/characters/necahual/front.svg",
  43619. extra: 920/873,
  43620. bottom: 26/946
  43621. }
  43622. },
  43623. back: {
  43624. height: math.unit(9, "feet"),
  43625. weight: math.unit(467, "lb"),
  43626. name: "Back",
  43627. image: {
  43628. source: "./media/characters/necahual/back.svg",
  43629. extra: 930/884,
  43630. bottom: 16/946
  43631. }
  43632. },
  43633. frontUnderwear: {
  43634. height: math.unit(9, "feet"),
  43635. weight: math.unit(467, "lb"),
  43636. name: "Front (Underwear)",
  43637. image: {
  43638. source: "./media/characters/necahual/front-underwear.svg",
  43639. extra: 920/873,
  43640. bottom: 26/946
  43641. }
  43642. },
  43643. frontDressed: {
  43644. height: math.unit(9, "feet"),
  43645. weight: math.unit(467, "lb"),
  43646. name: "Front (Dressed)",
  43647. image: {
  43648. source: "./media/characters/necahual/front-dressed.svg",
  43649. extra: 920/873,
  43650. bottom: 26/946
  43651. }
  43652. },
  43653. },
  43654. [
  43655. {
  43656. name: "Comprsesed",
  43657. height: math.unit(9, "feet")
  43658. },
  43659. {
  43660. name: "Natural",
  43661. height: math.unit(15, "feet"),
  43662. default: true
  43663. },
  43664. {
  43665. name: "Boosted",
  43666. height: math.unit(50, "feet")
  43667. },
  43668. {
  43669. name: "Boosted+",
  43670. height: math.unit(150, "feet")
  43671. },
  43672. {
  43673. name: "Max",
  43674. height: math.unit(500, "feet")
  43675. },
  43676. ]
  43677. ))
  43678. characterMakers.push(() => makeCharacter(
  43679. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43680. {
  43681. front: {
  43682. height: math.unit(22 + 1/12, "feet"),
  43683. weight: math.unit(3200, "lb"),
  43684. name: "Front",
  43685. image: {
  43686. source: "./media/characters/theo-acacia/front.svg",
  43687. extra: 1796/1741,
  43688. bottom: 83/1879
  43689. }
  43690. },
  43691. frontUnderwear: {
  43692. height: math.unit(22 + 1/12, "feet"),
  43693. weight: math.unit(3200, "lb"),
  43694. name: "Front (Underwear)",
  43695. image: {
  43696. source: "./media/characters/theo-acacia/front-underwear.svg",
  43697. extra: 1796/1741,
  43698. bottom: 83/1879
  43699. }
  43700. },
  43701. frontNude: {
  43702. height: math.unit(22 + 1/12, "feet"),
  43703. weight: math.unit(3200, "lb"),
  43704. name: "Front (Nude)",
  43705. image: {
  43706. source: "./media/characters/theo-acacia/front-nude.svg",
  43707. extra: 1796/1741,
  43708. bottom: 83/1879
  43709. }
  43710. },
  43711. },
  43712. [
  43713. {
  43714. name: "Normal",
  43715. height: math.unit(22 + 1/12, "feet"),
  43716. default: true
  43717. },
  43718. ]
  43719. ))
  43720. characterMakers.push(() => makeCharacter(
  43721. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43722. {
  43723. front: {
  43724. height: math.unit(20, "feet"),
  43725. name: "Front",
  43726. image: {
  43727. source: "./media/characters/astra/front.svg",
  43728. extra: 1850/1714,
  43729. bottom: 106/1956
  43730. }
  43731. },
  43732. frontUndressed: {
  43733. height: math.unit(20, "feet"),
  43734. name: "Front (Undressed)",
  43735. image: {
  43736. source: "./media/characters/astra/front-undressed.svg",
  43737. extra: 1926/1749,
  43738. bottom: 0/1926
  43739. }
  43740. },
  43741. hand: {
  43742. height: math.unit(1.53, "feet"),
  43743. name: "Hand",
  43744. image: {
  43745. source: "./media/characters/astra/hand.svg"
  43746. }
  43747. },
  43748. paw: {
  43749. height: math.unit(1.53, "feet"),
  43750. name: "Paw",
  43751. image: {
  43752. source: "./media/characters/astra/paw.svg"
  43753. }
  43754. },
  43755. },
  43756. [
  43757. {
  43758. name: "Smallest",
  43759. height: math.unit(20, "feet")
  43760. },
  43761. {
  43762. name: "Normal",
  43763. height: math.unit(1e9, "miles"),
  43764. default: true
  43765. },
  43766. {
  43767. name: "Larger",
  43768. height: math.unit(5, "multiverses")
  43769. },
  43770. {
  43771. name: "Largest",
  43772. height: math.unit(1e9, "multiverses")
  43773. },
  43774. ]
  43775. ))
  43776. characterMakers.push(() => makeCharacter(
  43777. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43778. {
  43779. front: {
  43780. height: math.unit(8, "feet"),
  43781. name: "Front",
  43782. image: {
  43783. source: "./media/characters/breanna/front.svg",
  43784. extra: 1912/1632,
  43785. bottom: 33/1945
  43786. }
  43787. },
  43788. },
  43789. [
  43790. {
  43791. name: "Smallest",
  43792. height: math.unit(8, "feet")
  43793. },
  43794. {
  43795. name: "Normal",
  43796. height: math.unit(1, "mile"),
  43797. default: true
  43798. },
  43799. {
  43800. name: "Maximum",
  43801. height: math.unit(1500000000000, "lightyears")
  43802. },
  43803. ]
  43804. ))
  43805. characterMakers.push(() => makeCharacter(
  43806. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43807. {
  43808. front: {
  43809. height: math.unit(5 + 11/12, "feet"),
  43810. weight: math.unit(155, "lb"),
  43811. name: "Front",
  43812. image: {
  43813. source: "./media/characters/cai/front.svg",
  43814. extra: 1823/1702,
  43815. bottom: 32/1855
  43816. }
  43817. },
  43818. back: {
  43819. height: math.unit(5 + 11/12, "feet"),
  43820. weight: math.unit(155, "lb"),
  43821. name: "Back",
  43822. image: {
  43823. source: "./media/characters/cai/back.svg",
  43824. extra: 1809/1708,
  43825. bottom: 31/1840
  43826. }
  43827. },
  43828. },
  43829. [
  43830. {
  43831. name: "Normal",
  43832. height: math.unit(5 + 11/12, "feet"),
  43833. default: true
  43834. },
  43835. {
  43836. name: "Big",
  43837. height: math.unit(15, "feet")
  43838. },
  43839. {
  43840. name: "Macro",
  43841. height: math.unit(200, "feet")
  43842. },
  43843. ]
  43844. ))
  43845. characterMakers.push(() => makeCharacter(
  43846. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43847. {
  43848. front: {
  43849. height: math.unit(5 + 6/12, "feet"),
  43850. weight: math.unit(160, "lb"),
  43851. name: "Front",
  43852. image: {
  43853. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43854. extra: 1227/1174,
  43855. bottom: 37/1264
  43856. }
  43857. },
  43858. },
  43859. [
  43860. {
  43861. name: "Macro",
  43862. height: math.unit(444, "meters"),
  43863. default: true
  43864. },
  43865. ]
  43866. ))
  43867. characterMakers.push(() => makeCharacter(
  43868. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43869. {
  43870. front: {
  43871. height: math.unit(18 + 7/12, "feet"),
  43872. name: "Front",
  43873. image: {
  43874. source: "./media/characters/rex/front.svg",
  43875. extra: 1941/1807,
  43876. bottom: 66/2007
  43877. }
  43878. },
  43879. back: {
  43880. height: math.unit(18 + 7/12, "feet"),
  43881. name: "Back",
  43882. image: {
  43883. source: "./media/characters/rex/back.svg",
  43884. extra: 1937/1822,
  43885. bottom: 42/1979
  43886. }
  43887. },
  43888. boot: {
  43889. height: math.unit(3.45, "feet"),
  43890. name: "Boot",
  43891. image: {
  43892. source: "./media/characters/rex/boot.svg"
  43893. }
  43894. },
  43895. paw: {
  43896. height: math.unit(4.17, "feet"),
  43897. name: "Paw",
  43898. image: {
  43899. source: "./media/characters/rex/paw.svg"
  43900. }
  43901. },
  43902. head: {
  43903. height: math.unit(6.728, "feet"),
  43904. name: "Head",
  43905. image: {
  43906. source: "./media/characters/rex/head.svg"
  43907. }
  43908. },
  43909. },
  43910. [
  43911. {
  43912. name: "Nano",
  43913. height: math.unit(18 + 7/12, "feet")
  43914. },
  43915. {
  43916. name: "Micro",
  43917. height: math.unit(1.5, "megameters")
  43918. },
  43919. {
  43920. name: "Normal",
  43921. height: math.unit(440, "megameters"),
  43922. default: true
  43923. },
  43924. {
  43925. name: "Macro",
  43926. height: math.unit(2.5, "gigameters")
  43927. },
  43928. {
  43929. name: "Gigamacro",
  43930. height: math.unit(2, "galaxies")
  43931. },
  43932. ]
  43933. ))
  43934. characterMakers.push(() => makeCharacter(
  43935. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43936. {
  43937. side: {
  43938. height: math.unit(32, "feet"),
  43939. weight: math.unit(250000, "lb"),
  43940. name: "Side",
  43941. image: {
  43942. source: "./media/characters/silverwing/side.svg",
  43943. extra: 1100/1019,
  43944. bottom: 204/1304
  43945. }
  43946. },
  43947. },
  43948. [
  43949. {
  43950. name: "Normal",
  43951. height: math.unit(32, "feet"),
  43952. default: true
  43953. },
  43954. ]
  43955. ))
  43956. characterMakers.push(() => makeCharacter(
  43957. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43958. {
  43959. front: {
  43960. height: math.unit(6 + 6/12, "feet"),
  43961. weight: math.unit(350, "lb"),
  43962. name: "Front",
  43963. image: {
  43964. source: "./media/characters/tristan-hawthorne/front.svg",
  43965. extra: 1159/1124,
  43966. bottom: 37/1196
  43967. },
  43968. form: "labrador",
  43969. default: true
  43970. },
  43971. skunkFront: {
  43972. height: math.unit(4 + 6/12, "feet"),
  43973. weight: math.unit(120, "lb"),
  43974. name: "Front",
  43975. image: {
  43976. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43977. extra: 1609/1551,
  43978. bottom: 169/1778
  43979. },
  43980. form: "skunk",
  43981. default: true
  43982. },
  43983. },
  43984. [
  43985. {
  43986. name: "Normal",
  43987. height: math.unit(6 + 6/12, "feet"),
  43988. form: "labrador",
  43989. default: true
  43990. },
  43991. {
  43992. name: "Normal",
  43993. height: math.unit(4 + 6/12, "feet"),
  43994. form: "skunk",
  43995. default: true
  43996. },
  43997. ],
  43998. {
  43999. "labrador": {
  44000. name: "Labrador",
  44001. default: true
  44002. },
  44003. "skunk": {
  44004. name: "Skunk"
  44005. }
  44006. }
  44007. ))
  44008. characterMakers.push(() => makeCharacter(
  44009. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44010. {
  44011. front: {
  44012. height: math.unit(5 + 11/12, "feet"),
  44013. weight: math.unit(190, "lb"),
  44014. name: "Front",
  44015. image: {
  44016. source: "./media/characters/mizu/front.svg",
  44017. extra: 1988/1788,
  44018. bottom: 14/2002
  44019. }
  44020. },
  44021. },
  44022. [
  44023. {
  44024. name: "Normal",
  44025. height: math.unit(5 + 11/12, "feet"),
  44026. default: true
  44027. },
  44028. ]
  44029. ))
  44030. characterMakers.push(() => makeCharacter(
  44031. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44032. {
  44033. front: {
  44034. height: math.unit(1.7, "feet"),
  44035. weight: math.unit(50, "lb"),
  44036. name: "Front",
  44037. image: {
  44038. source: "./media/characters/dechroma/front.svg",
  44039. extra: 1095/859,
  44040. bottom: 64/1159
  44041. }
  44042. },
  44043. },
  44044. [
  44045. {
  44046. name: "Normal",
  44047. height: math.unit(1.7, "feet"),
  44048. default: true
  44049. },
  44050. ]
  44051. ))
  44052. characterMakers.push(() => makeCharacter(
  44053. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44054. {
  44055. side: {
  44056. height: math.unit(30, "feet"),
  44057. name: "Side",
  44058. image: {
  44059. source: "./media/characters/veluren-thanazel/side.svg",
  44060. extra: 1611/633,
  44061. bottom: 118/1729
  44062. }
  44063. },
  44064. front: {
  44065. height: math.unit(30, "feet"),
  44066. name: "Front",
  44067. image: {
  44068. source: "./media/characters/veluren-thanazel/front.svg",
  44069. extra: 1486/636,
  44070. bottom: 238/1724
  44071. }
  44072. },
  44073. head: {
  44074. height: math.unit(21.4, "feet"),
  44075. name: "Head",
  44076. image: {
  44077. source: "./media/characters/veluren-thanazel/head.svg"
  44078. }
  44079. },
  44080. genitals: {
  44081. height: math.unit(19.4, "feet"),
  44082. name: "Genitals",
  44083. image: {
  44084. source: "./media/characters/veluren-thanazel/genitals.svg"
  44085. }
  44086. },
  44087. },
  44088. [
  44089. {
  44090. name: "Social",
  44091. height: math.unit(6, "feet")
  44092. },
  44093. {
  44094. name: "Play",
  44095. height: math.unit(12, "feet")
  44096. },
  44097. {
  44098. name: "True",
  44099. height: math.unit(30, "feet"),
  44100. default: true
  44101. },
  44102. ]
  44103. ))
  44104. characterMakers.push(() => makeCharacter(
  44105. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44106. {
  44107. front: {
  44108. height: math.unit(7 + 6/12, "feet"),
  44109. weight: math.unit(500, "kg"),
  44110. name: "Front",
  44111. image: {
  44112. source: "./media/characters/arcturas/front.svg",
  44113. extra: 1700/1500,
  44114. bottom: 145/1845
  44115. }
  44116. },
  44117. },
  44118. [
  44119. {
  44120. name: "Normal",
  44121. height: math.unit(7 + 6/12, "feet"),
  44122. default: true
  44123. },
  44124. ]
  44125. ))
  44126. characterMakers.push(() => makeCharacter(
  44127. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44128. {
  44129. side: {
  44130. height: math.unit(6, "feet"),
  44131. weight: math.unit(2, "tons"),
  44132. name: "Side",
  44133. image: {
  44134. source: "./media/characters/vitaen/side.svg",
  44135. extra: 1157/617,
  44136. bottom: 122/1279
  44137. }
  44138. },
  44139. },
  44140. [
  44141. {
  44142. name: "Normal",
  44143. height: math.unit(6, "feet"),
  44144. default: true
  44145. },
  44146. ]
  44147. ))
  44148. characterMakers.push(() => makeCharacter(
  44149. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44150. {
  44151. front: {
  44152. height: math.unit(19, "feet"),
  44153. name: "Front",
  44154. image: {
  44155. source: "./media/characters/fia-dreamweaver/front.svg",
  44156. extra: 1630/1504,
  44157. bottom: 25/1655
  44158. }
  44159. },
  44160. },
  44161. [
  44162. {
  44163. name: "Normal",
  44164. height: math.unit(19, "feet"),
  44165. default: true
  44166. },
  44167. ]
  44168. ))
  44169. characterMakers.push(() => makeCharacter(
  44170. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44171. {
  44172. front: {
  44173. height: math.unit(5 + 4/12, "feet"),
  44174. name: "Front",
  44175. image: {
  44176. source: "./media/characters/artan/front.svg",
  44177. extra: 1618/1535,
  44178. bottom: 46/1664
  44179. }
  44180. },
  44181. back: {
  44182. height: math.unit(5 + 4/12, "feet"),
  44183. name: "Back",
  44184. image: {
  44185. source: "./media/characters/artan/back.svg",
  44186. extra: 1618/1543,
  44187. bottom: 31/1649
  44188. }
  44189. },
  44190. },
  44191. [
  44192. {
  44193. name: "Normal",
  44194. height: math.unit(5 + 4/12, "feet"),
  44195. default: true
  44196. },
  44197. ]
  44198. ))
  44199. characterMakers.push(() => makeCharacter(
  44200. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44201. {
  44202. side: {
  44203. height: math.unit(182, "cm"),
  44204. weight: math.unit(1000, "lb"),
  44205. name: "Side",
  44206. image: {
  44207. source: "./media/characters/silver-dragon/side.svg",
  44208. extra: 710/287,
  44209. bottom: 88/798
  44210. }
  44211. },
  44212. },
  44213. [
  44214. {
  44215. name: "Normal",
  44216. height: math.unit(182, "cm"),
  44217. default: true
  44218. },
  44219. ]
  44220. ))
  44221. characterMakers.push(() => makeCharacter(
  44222. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44223. {
  44224. side: {
  44225. height: math.unit(6 + 6/12, "feet"),
  44226. weight: math.unit(1.5, "tons"),
  44227. name: "Side",
  44228. image: {
  44229. source: "./media/characters/zephyr/side.svg",
  44230. extra: 1433/586,
  44231. bottom: 109/1542
  44232. }
  44233. },
  44234. },
  44235. [
  44236. {
  44237. name: "Normal",
  44238. height: math.unit(6 + 6/12, "feet"),
  44239. default: true
  44240. },
  44241. ]
  44242. ))
  44243. characterMakers.push(() => makeCharacter(
  44244. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44245. {
  44246. side: {
  44247. height: math.unit(1, "feet"),
  44248. name: "Side",
  44249. image: {
  44250. source: "./media/characters/vixye/side.svg",
  44251. extra: 632/541,
  44252. bottom: 0/632
  44253. }
  44254. },
  44255. },
  44256. [
  44257. {
  44258. name: "Normal",
  44259. height: math.unit(1, "feet"),
  44260. default: true
  44261. },
  44262. {
  44263. name: "True",
  44264. height: math.unit(1e15, "multiverses")
  44265. },
  44266. ]
  44267. ))
  44268. characterMakers.push(() => makeCharacter(
  44269. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44270. {
  44271. front: {
  44272. height: math.unit(8 + 2/12, "feet"),
  44273. weight: math.unit(650, "lb"),
  44274. name: "Front",
  44275. image: {
  44276. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44277. extra: 1174/1137,
  44278. bottom: 82/1256
  44279. }
  44280. },
  44281. back: {
  44282. height: math.unit(8 + 2/12, "feet"),
  44283. weight: math.unit(650, "lb"),
  44284. name: "Back",
  44285. image: {
  44286. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44287. extra: 1204/1157,
  44288. bottom: 46/1250
  44289. }
  44290. },
  44291. },
  44292. [
  44293. {
  44294. name: "Wildform",
  44295. height: math.unit(8 + 2/12, "feet"),
  44296. default: true
  44297. },
  44298. ]
  44299. ))
  44300. characterMakers.push(() => makeCharacter(
  44301. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44302. {
  44303. front: {
  44304. height: math.unit(18, "feet"),
  44305. name: "Front",
  44306. image: {
  44307. source: "./media/characters/cyphin/front.svg",
  44308. extra: 970/886,
  44309. bottom: 42/1012
  44310. }
  44311. },
  44312. back: {
  44313. height: math.unit(18, "feet"),
  44314. name: "Back",
  44315. image: {
  44316. source: "./media/characters/cyphin/back.svg",
  44317. extra: 1009/894,
  44318. bottom: 24/1033
  44319. }
  44320. },
  44321. head: {
  44322. height: math.unit(5.05, "feet"),
  44323. name: "Head",
  44324. image: {
  44325. source: "./media/characters/cyphin/head.svg"
  44326. }
  44327. },
  44328. tailbud: {
  44329. height: math.unit(5, "feet"),
  44330. name: "Tailbud",
  44331. image: {
  44332. source: "./media/characters/cyphin/tailbud.svg"
  44333. }
  44334. },
  44335. },
  44336. [
  44337. ]
  44338. ))
  44339. characterMakers.push(() => makeCharacter(
  44340. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44341. {
  44342. side: {
  44343. height: math.unit(10, "feet"),
  44344. weight: math.unit(6, "tons"),
  44345. name: "Side",
  44346. image: {
  44347. source: "./media/characters/raijin/side.svg",
  44348. extra: 1529/613,
  44349. bottom: 337/1866
  44350. }
  44351. },
  44352. },
  44353. [
  44354. {
  44355. name: "Normal",
  44356. height: math.unit(10, "feet"),
  44357. default: true
  44358. },
  44359. ]
  44360. ))
  44361. characterMakers.push(() => makeCharacter(
  44362. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44363. {
  44364. side: {
  44365. height: math.unit(9, "feet"),
  44366. name: "Side",
  44367. image: {
  44368. source: "./media/characters/nilghais/side.svg",
  44369. extra: 1047/744,
  44370. bottom: 91/1138
  44371. }
  44372. },
  44373. head: {
  44374. height: math.unit(3.14, "feet"),
  44375. name: "Head",
  44376. image: {
  44377. source: "./media/characters/nilghais/head.svg"
  44378. }
  44379. },
  44380. mouth: {
  44381. height: math.unit(4.6, "feet"),
  44382. name: "Mouth",
  44383. image: {
  44384. source: "./media/characters/nilghais/mouth.svg"
  44385. }
  44386. },
  44387. wings: {
  44388. height: math.unit(24, "feet"),
  44389. name: "Wings",
  44390. image: {
  44391. source: "./media/characters/nilghais/wings.svg"
  44392. }
  44393. },
  44394. ass: {
  44395. height: math.unit(6.12, "feet"),
  44396. name: "Ass",
  44397. image: {
  44398. source: "./media/characters/nilghais/ass.svg"
  44399. }
  44400. },
  44401. },
  44402. [
  44403. {
  44404. name: "Normal",
  44405. height: math.unit(9, "feet"),
  44406. default: true
  44407. },
  44408. ]
  44409. ))
  44410. characterMakers.push(() => makeCharacter(
  44411. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44412. {
  44413. regular: {
  44414. height: math.unit(16 + 2/12, "feet"),
  44415. weight: math.unit(2300, "lb"),
  44416. name: "Regular",
  44417. image: {
  44418. source: "./media/characters/zolgar/regular.svg",
  44419. extra: 1246/1004,
  44420. bottom: 124/1370
  44421. }
  44422. },
  44423. boxers: {
  44424. height: math.unit(16 + 2/12, "feet"),
  44425. weight: math.unit(2300, "lb"),
  44426. name: "Boxers",
  44427. image: {
  44428. source: "./media/characters/zolgar/boxers.svg",
  44429. extra: 1246/1004,
  44430. bottom: 124/1370
  44431. }
  44432. },
  44433. armored: {
  44434. height: math.unit(16 + 2/12, "feet"),
  44435. weight: math.unit(2300, "lb"),
  44436. name: "Armored",
  44437. image: {
  44438. source: "./media/characters/zolgar/armored.svg",
  44439. extra: 1246/1004,
  44440. bottom: 124/1370
  44441. }
  44442. },
  44443. goth: {
  44444. height: math.unit(16 + 2/12, "feet"),
  44445. weight: math.unit(2300, "lb"),
  44446. name: "Goth",
  44447. image: {
  44448. source: "./media/characters/zolgar/goth.svg",
  44449. extra: 1246/1004,
  44450. bottom: 124/1370
  44451. }
  44452. },
  44453. },
  44454. [
  44455. {
  44456. name: "Shrunken Down",
  44457. height: math.unit(9 + 2/12, "feet")
  44458. },
  44459. {
  44460. name: "Normal",
  44461. height: math.unit(16 + 2/12, "feet"),
  44462. default: true
  44463. },
  44464. ]
  44465. ))
  44466. characterMakers.push(() => makeCharacter(
  44467. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44468. {
  44469. front: {
  44470. height: math.unit(6, "feet"),
  44471. weight: math.unit(168, "lb"),
  44472. name: "Front",
  44473. image: {
  44474. source: "./media/characters/luca/front.svg",
  44475. extra: 841/667,
  44476. bottom: 102/943
  44477. }
  44478. },
  44479. },
  44480. [
  44481. {
  44482. name: "Normal",
  44483. height: math.unit(6, "feet"),
  44484. default: true
  44485. },
  44486. ]
  44487. ))
  44488. characterMakers.push(() => makeCharacter(
  44489. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44490. {
  44491. side: {
  44492. height: math.unit(7 + 3/12, "feet"),
  44493. weight: math.unit(312, "lb"),
  44494. name: "Side",
  44495. image: {
  44496. source: "./media/characters/zezo/side.svg",
  44497. extra: 1192/1067,
  44498. bottom: 63/1255
  44499. }
  44500. },
  44501. },
  44502. [
  44503. {
  44504. name: "Normal",
  44505. height: math.unit(7 + 3/12, "feet"),
  44506. default: true
  44507. },
  44508. ]
  44509. ))
  44510. characterMakers.push(() => makeCharacter(
  44511. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44512. {
  44513. front: {
  44514. height: math.unit(5 + 5/12, "feet"),
  44515. weight: math.unit(170, "lb"),
  44516. name: "Front",
  44517. image: {
  44518. source: "./media/characters/mayso/front.svg",
  44519. extra: 1215/1108,
  44520. bottom: 16/1231
  44521. }
  44522. },
  44523. },
  44524. [
  44525. {
  44526. name: "Normal",
  44527. height: math.unit(5 + 5/12, "feet"),
  44528. default: true
  44529. },
  44530. ]
  44531. ))
  44532. characterMakers.push(() => makeCharacter(
  44533. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44534. {
  44535. front: {
  44536. height: math.unit(4 + 3/12, "feet"),
  44537. weight: math.unit(80, "lb"),
  44538. name: "Front",
  44539. image: {
  44540. source: "./media/characters/hess/front.svg",
  44541. extra: 1200/1123,
  44542. bottom: 16/1216
  44543. }
  44544. },
  44545. },
  44546. [
  44547. {
  44548. name: "Normal",
  44549. height: math.unit(4 + 3/12, "feet"),
  44550. default: true
  44551. },
  44552. ]
  44553. ))
  44554. characterMakers.push(() => makeCharacter(
  44555. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44556. {
  44557. front: {
  44558. height: math.unit(1.9, "meters"),
  44559. name: "Front",
  44560. image: {
  44561. source: "./media/characters/ashgar/front.svg",
  44562. extra: 1177/1146,
  44563. bottom: 99/1276
  44564. }
  44565. },
  44566. back: {
  44567. height: math.unit(1.9, "meters"),
  44568. name: "Back",
  44569. image: {
  44570. source: "./media/characters/ashgar/back.svg",
  44571. extra: 1201/1183,
  44572. bottom: 53/1254
  44573. }
  44574. },
  44575. feral: {
  44576. height: math.unit(1.4, "meters"),
  44577. name: "Feral",
  44578. image: {
  44579. source: "./media/characters/ashgar/feral.svg",
  44580. extra: 370/345,
  44581. bottom: 45/415
  44582. }
  44583. },
  44584. },
  44585. [
  44586. {
  44587. name: "Normal",
  44588. height: math.unit(1.9, "meters"),
  44589. default: true
  44590. },
  44591. ]
  44592. ))
  44593. characterMakers.push(() => makeCharacter(
  44594. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44595. {
  44596. regular: {
  44597. height: math.unit(6, "feet"),
  44598. weight: math.unit(220, "lb"),
  44599. name: "Regular",
  44600. image: {
  44601. source: "./media/characters/phillip/regular.svg",
  44602. extra: 1373/1277,
  44603. bottom: 75/1448
  44604. }
  44605. },
  44606. dressed: {
  44607. height: math.unit(6, "feet"),
  44608. weight: math.unit(220, "lb"),
  44609. name: "Dressed",
  44610. image: {
  44611. source: "./media/characters/phillip/dressed.svg",
  44612. extra: 1373/1277,
  44613. bottom: 75/1448
  44614. }
  44615. },
  44616. paw: {
  44617. height: math.unit(1.44, "feet"),
  44618. name: "Paw",
  44619. image: {
  44620. source: "./media/characters/phillip/paw.svg"
  44621. }
  44622. },
  44623. },
  44624. [
  44625. {
  44626. name: "Normal",
  44627. height: math.unit(6, "feet"),
  44628. default: true
  44629. },
  44630. ]
  44631. ))
  44632. characterMakers.push(() => makeCharacter(
  44633. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44634. {
  44635. side: {
  44636. height: math.unit(42, "feet"),
  44637. name: "Side",
  44638. image: {
  44639. source: "./media/characters/uvula/side.svg",
  44640. extra: 683/586,
  44641. bottom: 60/743
  44642. }
  44643. },
  44644. front: {
  44645. height: math.unit(42, "feet"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/uvula/front.svg",
  44649. extra: 705/613,
  44650. bottom: 54/759
  44651. }
  44652. },
  44653. maw: {
  44654. height: math.unit(23.5, "feet"),
  44655. name: "Maw",
  44656. image: {
  44657. source: "./media/characters/uvula/maw.svg"
  44658. }
  44659. },
  44660. },
  44661. [
  44662. {
  44663. name: "Original Size",
  44664. height: math.unit(14, "inches")
  44665. },
  44666. {
  44667. name: "Human Size",
  44668. height: math.unit(6, "feet")
  44669. },
  44670. {
  44671. name: "Big",
  44672. height: math.unit(42, "feet"),
  44673. default: true
  44674. },
  44675. {
  44676. name: "Bigger",
  44677. height: math.unit(100, "feet")
  44678. },
  44679. ]
  44680. ))
  44681. characterMakers.push(() => makeCharacter(
  44682. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44683. {
  44684. front: {
  44685. height: math.unit(5 + 11/12, "feet"),
  44686. name: "Front",
  44687. image: {
  44688. source: "./media/characters/lannah/front.svg",
  44689. extra: 1208/1113,
  44690. bottom: 97/1305
  44691. }
  44692. },
  44693. },
  44694. [
  44695. {
  44696. name: "Normal",
  44697. height: math.unit(5 + 11/12, "feet"),
  44698. default: true
  44699. },
  44700. ]
  44701. ))
  44702. characterMakers.push(() => makeCharacter(
  44703. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44704. {
  44705. front: {
  44706. height: math.unit(6 + 3/12, "feet"),
  44707. weight: math.unit(3.5, "tons"),
  44708. name: "Front",
  44709. image: {
  44710. source: "./media/characters/emberflame/front.svg",
  44711. extra: 1198/672,
  44712. bottom: 82/1280
  44713. }
  44714. },
  44715. side: {
  44716. height: math.unit(6 + 3/12, "feet"),
  44717. weight: math.unit(3.5, "tons"),
  44718. name: "Side",
  44719. image: {
  44720. source: "./media/characters/emberflame/side.svg",
  44721. extra: 938/527,
  44722. bottom: 56/994
  44723. }
  44724. },
  44725. },
  44726. [
  44727. {
  44728. name: "Normal",
  44729. height: math.unit(6 + 3/12, "feet"),
  44730. default: true
  44731. },
  44732. ]
  44733. ))
  44734. characterMakers.push(() => makeCharacter(
  44735. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44736. {
  44737. side: {
  44738. height: math.unit(17.5, "feet"),
  44739. weight: math.unit(35, "tons"),
  44740. name: "Side",
  44741. image: {
  44742. source: "./media/characters/sophie-ambrose/side.svg",
  44743. extra: 1573/1242,
  44744. bottom: 71/1644
  44745. }
  44746. },
  44747. maw: {
  44748. height: math.unit(7.4, "feet"),
  44749. name: "Maw",
  44750. image: {
  44751. source: "./media/characters/sophie-ambrose/maw.svg"
  44752. }
  44753. },
  44754. },
  44755. [
  44756. {
  44757. name: "Normal",
  44758. height: math.unit(17.5, "feet"),
  44759. default: true
  44760. },
  44761. ]
  44762. ))
  44763. characterMakers.push(() => makeCharacter(
  44764. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44765. {
  44766. front: {
  44767. height: math.unit(280, "feet"),
  44768. weight: math.unit(550, "tons"),
  44769. name: "Front",
  44770. image: {
  44771. source: "./media/characters/king-mugi/front.svg",
  44772. extra: 1102/947,
  44773. bottom: 104/1206
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "King Mugi",
  44780. height: math.unit(280, "feet"),
  44781. default: true
  44782. },
  44783. ]
  44784. ))
  44785. characterMakers.push(() => makeCharacter(
  44786. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44787. {
  44788. front: {
  44789. height: math.unit(64, "meters"),
  44790. name: "Front",
  44791. image: {
  44792. source: "./media/characters/nova-fox/front.svg",
  44793. extra: 1310/1246,
  44794. bottom: 65/1375
  44795. }
  44796. },
  44797. },
  44798. [
  44799. {
  44800. name: "Macro",
  44801. height: math.unit(64, "meters"),
  44802. default: true
  44803. },
  44804. ]
  44805. ))
  44806. characterMakers.push(() => makeCharacter(
  44807. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44808. {
  44809. front: {
  44810. height: math.unit(6 + 3/12, "feet"),
  44811. weight: math.unit(170, "lb"),
  44812. name: "Front",
  44813. image: {
  44814. source: "./media/characters/sam-bat/front.svg",
  44815. extra: 1601/1411,
  44816. bottom: 125/1726
  44817. }
  44818. },
  44819. back: {
  44820. height: math.unit(6 + 3/12, "feet"),
  44821. weight: math.unit(170, "lb"),
  44822. name: "Back",
  44823. image: {
  44824. source: "./media/characters/sam-bat/back.svg",
  44825. extra: 1577/1405,
  44826. bottom: 58/1635
  44827. }
  44828. },
  44829. },
  44830. [
  44831. {
  44832. name: "Normal",
  44833. height: math.unit(6 + 3/12, "feet"),
  44834. default: true
  44835. },
  44836. ]
  44837. ))
  44838. characterMakers.push(() => makeCharacter(
  44839. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44840. {
  44841. front: {
  44842. height: math.unit(59, "feet"),
  44843. weight: math.unit(40000, "lb"),
  44844. name: "Front",
  44845. image: {
  44846. source: "./media/characters/inari/front.svg",
  44847. extra: 1884/1350,
  44848. bottom: 95/1979
  44849. }
  44850. },
  44851. },
  44852. [
  44853. {
  44854. name: "Gigantamax",
  44855. height: math.unit(59, "feet"),
  44856. default: true
  44857. },
  44858. ]
  44859. ))
  44860. characterMakers.push(() => makeCharacter(
  44861. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44862. {
  44863. front: {
  44864. height: math.unit(5 + 8/12, "feet"),
  44865. name: "Front",
  44866. image: {
  44867. source: "./media/characters/elizabeth/front.svg",
  44868. extra: 1395/1298,
  44869. bottom: 54/1449
  44870. }
  44871. },
  44872. mouth: {
  44873. height: math.unit(1.97, "feet"),
  44874. name: "Mouth",
  44875. image: {
  44876. source: "./media/characters/elizabeth/mouth.svg"
  44877. }
  44878. },
  44879. foot: {
  44880. height: math.unit(1.17, "feet"),
  44881. name: "Foot",
  44882. image: {
  44883. source: "./media/characters/elizabeth/foot.svg"
  44884. }
  44885. },
  44886. },
  44887. [
  44888. {
  44889. name: "Normal",
  44890. height: math.unit(5 + 8/12, "feet"),
  44891. default: true
  44892. },
  44893. {
  44894. name: "Minimacro",
  44895. height: math.unit(18, "feet")
  44896. },
  44897. {
  44898. name: "Macro",
  44899. height: math.unit(180, "feet")
  44900. },
  44901. ]
  44902. ))
  44903. characterMakers.push(() => makeCharacter(
  44904. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44905. {
  44906. front: {
  44907. height: math.unit(5 + 2/12, "feet"),
  44908. name: "Front",
  44909. image: {
  44910. source: "./media/characters/october-gossamer/front.svg",
  44911. extra: 505/454,
  44912. bottom: 7/512
  44913. }
  44914. },
  44915. back: {
  44916. height: math.unit(5 + 2/12, "feet"),
  44917. name: "Back",
  44918. image: {
  44919. source: "./media/characters/october-gossamer/back.svg",
  44920. extra: 501/454,
  44921. bottom: 11/512
  44922. }
  44923. },
  44924. },
  44925. [
  44926. {
  44927. name: "Normal",
  44928. height: math.unit(5 + 2/12, "feet"),
  44929. default: true
  44930. },
  44931. ]
  44932. ))
  44933. characterMakers.push(() => makeCharacter(
  44934. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44935. {
  44936. front: {
  44937. height: math.unit(5, "feet"),
  44938. name: "Front",
  44939. image: {
  44940. source: "./media/characters/epiglottis/front.svg",
  44941. extra: 923/849,
  44942. bottom: 17/940
  44943. }
  44944. },
  44945. },
  44946. [
  44947. {
  44948. name: "Original Size",
  44949. height: math.unit(10, "inches")
  44950. },
  44951. {
  44952. name: "Human Size",
  44953. height: math.unit(5, "feet"),
  44954. default: true
  44955. },
  44956. {
  44957. name: "Big",
  44958. height: math.unit(25, "feet")
  44959. },
  44960. {
  44961. name: "Bigger",
  44962. height: math.unit(50, "feet")
  44963. },
  44964. {
  44965. name: "oh lawd",
  44966. height: math.unit(75, "feet")
  44967. },
  44968. ]
  44969. ))
  44970. characterMakers.push(() => makeCharacter(
  44971. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44972. {
  44973. front: {
  44974. height: math.unit(2 + 4/12, "feet"),
  44975. weight: math.unit(60, "lb"),
  44976. name: "Front",
  44977. image: {
  44978. source: "./media/characters/lerm/front.svg",
  44979. extra: 796/790,
  44980. bottom: 79/875
  44981. }
  44982. },
  44983. },
  44984. [
  44985. {
  44986. name: "Normal",
  44987. height: math.unit(2 + 4/12, "feet"),
  44988. default: true
  44989. },
  44990. ]
  44991. ))
  44992. characterMakers.push(() => makeCharacter(
  44993. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44994. {
  44995. front: {
  44996. height: math.unit(5.5, "feet"),
  44997. weight: math.unit(130, "lb"),
  44998. name: "Front",
  44999. image: {
  45000. source: "./media/characters/xena-nebadon/front.svg",
  45001. extra: 1828/1730,
  45002. bottom: 79/1907
  45003. }
  45004. },
  45005. },
  45006. [
  45007. {
  45008. name: "Tiny Puppy",
  45009. height: math.unit(3, "inches")
  45010. },
  45011. {
  45012. name: "Normal",
  45013. height: math.unit(5.5, "feet"),
  45014. default: true
  45015. },
  45016. {
  45017. name: "Lotta Lady",
  45018. height: math.unit(12, "feet")
  45019. },
  45020. {
  45021. name: "Pretty Big",
  45022. height: math.unit(100, "feet")
  45023. },
  45024. {
  45025. name: "Big",
  45026. height: math.unit(500, "feet")
  45027. },
  45028. {
  45029. name: "Skyscraper Toys",
  45030. height: math.unit(2500, "feet")
  45031. },
  45032. {
  45033. name: "Plane Catcher",
  45034. height: math.unit(8, "miles")
  45035. },
  45036. {
  45037. name: "Planet Toys",
  45038. height: math.unit(15, "earths")
  45039. },
  45040. {
  45041. name: "Stardust",
  45042. height: math.unit(0.25, "galaxies")
  45043. },
  45044. {
  45045. name: "Snacks",
  45046. height: math.unit(70, "universes")
  45047. },
  45048. ]
  45049. ))
  45050. characterMakers.push(() => makeCharacter(
  45051. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45052. {
  45053. front: {
  45054. height: math.unit(1.6, "meters"),
  45055. weight: math.unit(60, "kg"),
  45056. name: "Front",
  45057. image: {
  45058. source: "./media/characters/bounty/front.svg",
  45059. extra: 1426/1308,
  45060. bottom: 15/1441
  45061. }
  45062. },
  45063. back: {
  45064. height: math.unit(1.6, "meters"),
  45065. weight: math.unit(60, "kg"),
  45066. name: "Back",
  45067. image: {
  45068. source: "./media/characters/bounty/back.svg",
  45069. extra: 1417/1307,
  45070. bottom: 8/1425
  45071. }
  45072. },
  45073. },
  45074. [
  45075. {
  45076. name: "Normal",
  45077. height: math.unit(1.6, "meters"),
  45078. default: true
  45079. },
  45080. {
  45081. name: "Macro",
  45082. height: math.unit(300, "meters")
  45083. },
  45084. ]
  45085. ))
  45086. characterMakers.push(() => makeCharacter(
  45087. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45088. {
  45089. front: {
  45090. height: math.unit(2 + 8/12, "feet"),
  45091. weight: math.unit(15, "lb"),
  45092. name: "Front",
  45093. image: {
  45094. source: "./media/characters/mochi/front.svg",
  45095. extra: 1022/852,
  45096. bottom: 435/1457
  45097. }
  45098. },
  45099. back: {
  45100. height: math.unit(2 + 8/12, "feet"),
  45101. weight: math.unit(15, "lb"),
  45102. name: "Back",
  45103. image: {
  45104. source: "./media/characters/mochi/back.svg",
  45105. extra: 1335/1119,
  45106. bottom: 39/1374
  45107. }
  45108. },
  45109. bird: {
  45110. height: math.unit(2 + 8/12, "feet"),
  45111. weight: math.unit(15, "lb"),
  45112. name: "Bird",
  45113. image: {
  45114. source: "./media/characters/mochi/bird.svg",
  45115. extra: 1251/1113,
  45116. bottom: 178/1429
  45117. }
  45118. },
  45119. kaiju: {
  45120. height: math.unit(154, "feet"),
  45121. weight: math.unit(1e7, "lb"),
  45122. name: "Kaiju",
  45123. image: {
  45124. source: "./media/characters/mochi/kaiju.svg",
  45125. extra: 460/324,
  45126. bottom: 40/500
  45127. }
  45128. },
  45129. head: {
  45130. height: math.unit(1.21, "feet"),
  45131. name: "Head",
  45132. image: {
  45133. source: "./media/characters/mochi/head.svg"
  45134. }
  45135. },
  45136. alternateTail: {
  45137. height: math.unit(2 + 8/12, "feet"),
  45138. weight: math.unit(45, "lb"),
  45139. name: "Alternate Tail",
  45140. image: {
  45141. source: "./media/characters/mochi/alternate-tail.svg",
  45142. extra: 139/76,
  45143. bottom: 45/184
  45144. }
  45145. },
  45146. },
  45147. [
  45148. {
  45149. name: "Micro",
  45150. height: math.unit(2, "inches")
  45151. },
  45152. {
  45153. name: "Normal",
  45154. height: math.unit(2 + 8/12, "feet"),
  45155. default: true
  45156. },
  45157. {
  45158. name: "Macro",
  45159. height: math.unit(106, "feet")
  45160. },
  45161. ]
  45162. ))
  45163. characterMakers.push(() => makeCharacter(
  45164. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45165. {
  45166. front: {
  45167. height: math.unit(5.67, "feet"),
  45168. weight: math.unit(135, "lb"),
  45169. name: "Front",
  45170. image: {
  45171. source: "./media/characters/sarel/front.svg",
  45172. extra: 865/788,
  45173. bottom: 97/962
  45174. }
  45175. },
  45176. back: {
  45177. height: math.unit(5.67, "feet"),
  45178. weight: math.unit(135, "lb"),
  45179. name: "Back",
  45180. image: {
  45181. source: "./media/characters/sarel/back.svg",
  45182. extra: 857/777,
  45183. bottom: 32/889
  45184. }
  45185. },
  45186. chozoan: {
  45187. height: math.unit(5.67, "feet"),
  45188. weight: math.unit(135, "lb"),
  45189. name: "Chozoan",
  45190. image: {
  45191. source: "./media/characters/sarel/chozoan.svg",
  45192. extra: 865/788,
  45193. bottom: 97/962
  45194. }
  45195. },
  45196. current: {
  45197. height: math.unit(5.67, "feet"),
  45198. weight: math.unit(135, "lb"),
  45199. name: "Current",
  45200. image: {
  45201. source: "./media/characters/sarel/current.svg",
  45202. extra: 865/788,
  45203. bottom: 97/962
  45204. }
  45205. },
  45206. head: {
  45207. height: math.unit(1.77, "feet"),
  45208. name: "Head",
  45209. image: {
  45210. source: "./media/characters/sarel/head.svg"
  45211. }
  45212. },
  45213. claws: {
  45214. height: math.unit(1.8, "feet"),
  45215. name: "Claws",
  45216. image: {
  45217. source: "./media/characters/sarel/claws.svg"
  45218. }
  45219. },
  45220. clawsAlt: {
  45221. height: math.unit(1.8, "feet"),
  45222. name: "Claws-alt",
  45223. image: {
  45224. source: "./media/characters/sarel/claws-alt.svg"
  45225. }
  45226. },
  45227. },
  45228. [
  45229. {
  45230. name: "Normal",
  45231. height: math.unit(5.67, "feet"),
  45232. default: true
  45233. },
  45234. ]
  45235. ))
  45236. characterMakers.push(() => makeCharacter(
  45237. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45238. {
  45239. front: {
  45240. height: math.unit(5500, "feet"),
  45241. name: "Front",
  45242. image: {
  45243. source: "./media/characters/alyonia/front.svg",
  45244. extra: 1200/1135,
  45245. bottom: 29/1229
  45246. }
  45247. },
  45248. back: {
  45249. height: math.unit(5500, "feet"),
  45250. name: "Back",
  45251. image: {
  45252. source: "./media/characters/alyonia/back.svg",
  45253. extra: 1205/1138,
  45254. bottom: 10/1215
  45255. }
  45256. },
  45257. },
  45258. [
  45259. {
  45260. name: "Small",
  45261. height: math.unit(10, "feet")
  45262. },
  45263. {
  45264. name: "Macro",
  45265. height: math.unit(500, "feet")
  45266. },
  45267. {
  45268. name: "Mega Macro",
  45269. height: math.unit(5500, "feet"),
  45270. default: true
  45271. },
  45272. {
  45273. name: "Mega Macro+",
  45274. height: math.unit(500000, "feet")
  45275. },
  45276. {
  45277. name: "Giga Macro",
  45278. height: math.unit(3000, "miles")
  45279. },
  45280. {
  45281. name: "Tera Macro",
  45282. height: math.unit(2.8e6, "miles")
  45283. },
  45284. {
  45285. name: "Galactic",
  45286. height: math.unit(120000, "lightyears")
  45287. },
  45288. ]
  45289. ))
  45290. characterMakers.push(() => makeCharacter(
  45291. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45292. {
  45293. werewolf: {
  45294. height: math.unit(8, "feet"),
  45295. weight: math.unit(425, "lb"),
  45296. name: "Werewolf",
  45297. image: {
  45298. source: "./media/characters/autumn/werewolf.svg",
  45299. extra: 2154/2031,
  45300. bottom: 160/2314
  45301. }
  45302. },
  45303. human: {
  45304. height: math.unit(5 + 8/12, "feet"),
  45305. weight: math.unit(150, "lb"),
  45306. name: "Human",
  45307. image: {
  45308. source: "./media/characters/autumn/human.svg",
  45309. extra: 1200/1149,
  45310. bottom: 30/1230
  45311. }
  45312. },
  45313. },
  45314. [
  45315. {
  45316. name: "Normal",
  45317. height: math.unit(8, "feet"),
  45318. default: true
  45319. },
  45320. ]
  45321. ))
  45322. characterMakers.push(() => makeCharacter(
  45323. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45324. {
  45325. front: {
  45326. height: math.unit(8 + 5/12, "feet"),
  45327. weight: math.unit(825, "lb"),
  45328. name: "Front",
  45329. image: {
  45330. source: "./media/characters/cobalt-charizard/front.svg",
  45331. extra: 1268/1155,
  45332. bottom: 122/1390
  45333. }
  45334. },
  45335. side: {
  45336. height: math.unit(8 + 5/12, "feet"),
  45337. weight: math.unit(825, "lb"),
  45338. name: "Side",
  45339. image: {
  45340. source: "./media/characters/cobalt-charizard/side.svg",
  45341. extra: 1348/1257,
  45342. bottom: 58/1406
  45343. }
  45344. },
  45345. gMax: {
  45346. height: math.unit(134 + 11/12, "feet"),
  45347. name: "G-Max",
  45348. image: {
  45349. source: "./media/characters/cobalt-charizard/g-max.svg",
  45350. extra: 1835/1541,
  45351. bottom: 151/1986
  45352. }
  45353. },
  45354. },
  45355. [
  45356. {
  45357. name: "Normal",
  45358. height: math.unit(8 + 5/12, "feet"),
  45359. default: true
  45360. },
  45361. ]
  45362. ))
  45363. characterMakers.push(() => makeCharacter(
  45364. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45365. {
  45366. front: {
  45367. height: math.unit(6 + 3/12, "feet"),
  45368. weight: math.unit(210, "lb"),
  45369. name: "Front",
  45370. image: {
  45371. source: "./media/characters/stella/front.svg",
  45372. extra: 3549/3335,
  45373. bottom: 51/3600
  45374. }
  45375. },
  45376. },
  45377. [
  45378. {
  45379. name: "Normal",
  45380. height: math.unit(6 + 3/12, "feet"),
  45381. default: true
  45382. },
  45383. ]
  45384. ))
  45385. characterMakers.push(() => makeCharacter(
  45386. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45387. {
  45388. front: {
  45389. height: math.unit(5, "feet"),
  45390. weight: math.unit(90, "lb"),
  45391. name: "Front",
  45392. image: {
  45393. source: "./media/characters/riley-bishop/front.svg",
  45394. extra: 1450/1428,
  45395. bottom: 152/1602
  45396. }
  45397. },
  45398. },
  45399. [
  45400. {
  45401. name: "Normal",
  45402. height: math.unit(5, "feet"),
  45403. default: true
  45404. },
  45405. ]
  45406. ))
  45407. characterMakers.push(() => makeCharacter(
  45408. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45409. {
  45410. side: {
  45411. height: math.unit(8 + 2/12, "feet"),
  45412. weight: math.unit(500, "kg"),
  45413. name: "Side",
  45414. image: {
  45415. source: "./media/characters/theo-arcanine/side.svg",
  45416. extra: 1342/1074,
  45417. bottom: 111/1453
  45418. }
  45419. },
  45420. },
  45421. [
  45422. {
  45423. name: "Normal",
  45424. height: math.unit(8 + 2/12, "feet"),
  45425. default: true
  45426. },
  45427. ]
  45428. ))
  45429. characterMakers.push(() => makeCharacter(
  45430. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45431. {
  45432. front: {
  45433. height: math.unit(4, "feet"),
  45434. name: "Front",
  45435. image: {
  45436. source: "./media/characters/kali/front.svg",
  45437. extra: 1921/1357,
  45438. bottom: 70/1991
  45439. }
  45440. },
  45441. },
  45442. [
  45443. {
  45444. name: "Normal",
  45445. height: math.unit(4, "feet"),
  45446. default: true
  45447. },
  45448. {
  45449. name: "Macro",
  45450. height: math.unit(32, "meters")
  45451. },
  45452. {
  45453. name: "Macro+",
  45454. height: math.unit(150, "meters")
  45455. },
  45456. {
  45457. name: "Megamacro",
  45458. height: math.unit(7500, "meters")
  45459. },
  45460. {
  45461. name: "Megamacro+",
  45462. height: math.unit(80, "kilometers")
  45463. },
  45464. ]
  45465. ))
  45466. characterMakers.push(() => makeCharacter(
  45467. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45468. {
  45469. side: {
  45470. height: math.unit(5 + 11/12, "feet"),
  45471. weight: math.unit(236, "lb"),
  45472. name: "Side",
  45473. image: {
  45474. source: "./media/characters/gapp/side.svg",
  45475. extra: 775/340,
  45476. bottom: 58/833
  45477. }
  45478. },
  45479. mouth: {
  45480. height: math.unit(2.98, "feet"),
  45481. name: "Mouth",
  45482. image: {
  45483. source: "./media/characters/gapp/mouth.svg"
  45484. }
  45485. },
  45486. },
  45487. [
  45488. {
  45489. name: "Normal",
  45490. height: math.unit(5 + 1/12, "feet"),
  45491. default: true
  45492. },
  45493. ]
  45494. ))
  45495. characterMakers.push(() => makeCharacter(
  45496. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45497. {
  45498. front: {
  45499. height: math.unit(6, "feet"),
  45500. name: "Front",
  45501. image: {
  45502. source: "./media/characters/persephone/front.svg",
  45503. extra: 1895/1717,
  45504. bottom: 96/1991
  45505. }
  45506. },
  45507. back: {
  45508. height: math.unit(6, "feet"),
  45509. name: "Back",
  45510. image: {
  45511. source: "./media/characters/persephone/back.svg",
  45512. extra: 1868/1679,
  45513. bottom: 26/1894
  45514. }
  45515. },
  45516. casual: {
  45517. height: math.unit(6, "feet"),
  45518. name: "Casual",
  45519. image: {
  45520. source: "./media/characters/persephone/casual.svg",
  45521. extra: 1713/1541,
  45522. bottom: 76/1789
  45523. }
  45524. },
  45525. },
  45526. [
  45527. {
  45528. name: "Human Size",
  45529. height: math.unit(6, "feet")
  45530. },
  45531. {
  45532. name: "Big Steppy",
  45533. height: math.unit(600, "meters"),
  45534. default: true
  45535. },
  45536. {
  45537. name: "Galaxy Brain",
  45538. height: math.unit(1, "zettameter")
  45539. },
  45540. ]
  45541. ))
  45542. characterMakers.push(() => makeCharacter(
  45543. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45544. {
  45545. front: {
  45546. height: math.unit(1.85, "meters"),
  45547. name: "Front",
  45548. image: {
  45549. source: "./media/characters/riley-foxthing/front.svg",
  45550. extra: 1495/1354,
  45551. bottom: 122/1617
  45552. }
  45553. },
  45554. frontAlt: {
  45555. height: math.unit(1.85, "meters"),
  45556. name: "Front (Alt)",
  45557. image: {
  45558. source: "./media/characters/riley-foxthing/front-alt.svg",
  45559. extra: 1572/1389,
  45560. bottom: 116/1688
  45561. }
  45562. },
  45563. },
  45564. [
  45565. {
  45566. name: "Normal Sized",
  45567. height: math.unit(1.85, "meters"),
  45568. default: true
  45569. },
  45570. {
  45571. name: "Quite Sizable",
  45572. height: math.unit(5, "meters")
  45573. },
  45574. {
  45575. name: "Rather Large",
  45576. height: math.unit(20, "meters")
  45577. },
  45578. {
  45579. name: "Macro",
  45580. height: math.unit(450, "meters")
  45581. },
  45582. {
  45583. name: "Giga",
  45584. height: math.unit(5, "km")
  45585. },
  45586. ]
  45587. ))
  45588. characterMakers.push(() => makeCharacter(
  45589. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45590. {
  45591. front: {
  45592. height: math.unit(6, "feet"),
  45593. weight: math.unit(200, "lb"),
  45594. name: "Front",
  45595. image: {
  45596. source: "./media/characters/blizzard/front.svg",
  45597. extra: 1136/990,
  45598. bottom: 136/1272
  45599. }
  45600. },
  45601. back: {
  45602. height: math.unit(6, "feet"),
  45603. weight: math.unit(200, "lb"),
  45604. name: "Back",
  45605. image: {
  45606. source: "./media/characters/blizzard/back.svg",
  45607. extra: 1175/1034,
  45608. bottom: 97/1272
  45609. }
  45610. },
  45611. sitting: {
  45612. height: math.unit(3.725, "feet"),
  45613. weight: math.unit(200, "lb"),
  45614. name: "Sitting",
  45615. image: {
  45616. source: "./media/characters/blizzard/sitting.svg",
  45617. extra: 581/485,
  45618. bottom: 90/671
  45619. }
  45620. },
  45621. frontWizard: {
  45622. height: math.unit(7.9, "feet"),
  45623. weight: math.unit(200, "lb"),
  45624. name: "Front (Wizard)",
  45625. image: {
  45626. source: "./media/characters/blizzard/front-wizard.svg"
  45627. }
  45628. },
  45629. backWizard: {
  45630. height: math.unit(7.9, "feet"),
  45631. weight: math.unit(200, "lb"),
  45632. name: "Back (Wizard)",
  45633. image: {
  45634. source: "./media/characters/blizzard/back-wizard.svg"
  45635. }
  45636. },
  45637. frontNsfw: {
  45638. height: math.unit(6, "feet"),
  45639. weight: math.unit(200, "lb"),
  45640. name: "Front (NSFW)",
  45641. image: {
  45642. source: "./media/characters/blizzard/front-nsfw.svg",
  45643. extra: 1136/990,
  45644. bottom: 136/1272
  45645. }
  45646. },
  45647. backNsfw: {
  45648. height: math.unit(6, "feet"),
  45649. weight: math.unit(200, "lb"),
  45650. name: "Back (NSFW)",
  45651. image: {
  45652. source: "./media/characters/blizzard/back-nsfw.svg",
  45653. extra: 1175/1034,
  45654. bottom: 97/1272
  45655. }
  45656. },
  45657. sittingNsfw: {
  45658. height: math.unit(3.725, "feet"),
  45659. weight: math.unit(200, "lb"),
  45660. name: "Sitting (NSFW)",
  45661. image: {
  45662. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45663. extra: 581/485,
  45664. bottom: 90/671
  45665. }
  45666. },
  45667. wizardFrontNsfw: {
  45668. height: math.unit(7.9, "feet"),
  45669. weight: math.unit(200, "lb"),
  45670. name: "Wizard (Front, NSFW)",
  45671. image: {
  45672. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45673. }
  45674. },
  45675. },
  45676. [
  45677. {
  45678. name: "Normal",
  45679. height: math.unit(6, "feet"),
  45680. default: true
  45681. },
  45682. ]
  45683. ))
  45684. characterMakers.push(() => makeCharacter(
  45685. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45686. {
  45687. front: {
  45688. height: math.unit(5 + 2/12, "feet"),
  45689. name: "Front",
  45690. image: {
  45691. source: "./media/characters/lumi/front.svg",
  45692. extra: 1328/1268,
  45693. bottom: 103/1431
  45694. }
  45695. },
  45696. back: {
  45697. height: math.unit(5 + 2/12, "feet"),
  45698. name: "Back",
  45699. image: {
  45700. source: "./media/characters/lumi/back.svg",
  45701. extra: 1381/1327,
  45702. bottom: 43/1424
  45703. }
  45704. },
  45705. },
  45706. [
  45707. {
  45708. name: "Normal",
  45709. height: math.unit(5 + 2/12, "feet"),
  45710. default: true
  45711. },
  45712. ]
  45713. ))
  45714. characterMakers.push(() => makeCharacter(
  45715. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45716. {
  45717. front: {
  45718. height: math.unit(5 + 9/12, "feet"),
  45719. name: "Front",
  45720. image: {
  45721. source: "./media/characters/aliya-cotton/front.svg",
  45722. extra: 577/564,
  45723. bottom: 29/606
  45724. }
  45725. },
  45726. },
  45727. [
  45728. {
  45729. name: "Normal",
  45730. height: math.unit(5 + 9/12, "feet"),
  45731. default: true
  45732. },
  45733. ]
  45734. ))
  45735. characterMakers.push(() => makeCharacter(
  45736. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45737. {
  45738. front: {
  45739. height: math.unit(2.7, "meters"),
  45740. weight: math.unit(25000, "lb"),
  45741. name: "Front",
  45742. image: {
  45743. source: "./media/characters/noah-luxray/front.svg",
  45744. extra: 1644/825,
  45745. bottom: 339/1983
  45746. }
  45747. },
  45748. side: {
  45749. height: math.unit(2.97, "meters"),
  45750. weight: math.unit(25000, "lb"),
  45751. name: "Side",
  45752. image: {
  45753. source: "./media/characters/noah-luxray/side.svg",
  45754. extra: 1319/650,
  45755. bottom: 163/1482
  45756. }
  45757. },
  45758. dick: {
  45759. height: math.unit(7.4, "feet"),
  45760. weight: math.unit(2500, "lb"),
  45761. name: "Dick",
  45762. image: {
  45763. source: "./media/characters/noah-luxray/dick.svg"
  45764. }
  45765. },
  45766. dickAlt: {
  45767. height: math.unit(10.83, "feet"),
  45768. weight: math.unit(2500, "lb"),
  45769. name: "Dick-alt",
  45770. image: {
  45771. source: "./media/characters/noah-luxray/dick-alt.svg"
  45772. }
  45773. },
  45774. },
  45775. [
  45776. {
  45777. name: "BIG",
  45778. height: math.unit(2.7, "meters"),
  45779. default: true
  45780. },
  45781. ]
  45782. ))
  45783. characterMakers.push(() => makeCharacter(
  45784. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45785. {
  45786. standing: {
  45787. height: math.unit(183, "cm"),
  45788. weight: math.unit(68, "kg"),
  45789. name: "Standing",
  45790. image: {
  45791. source: "./media/characters/arion/standing.svg",
  45792. extra: 1869/1807,
  45793. bottom: 93/1962
  45794. }
  45795. },
  45796. reclining: {
  45797. height: math.unit(70.5, "cm"),
  45798. weight: math.unit(68, "lb"),
  45799. name: "Reclining",
  45800. image: {
  45801. source: "./media/characters/arion/reclining.svg",
  45802. extra: 937/870,
  45803. bottom: 63/1000
  45804. }
  45805. },
  45806. },
  45807. [
  45808. {
  45809. name: "Colossus Size, Low",
  45810. height: math.unit(33, "meters"),
  45811. default: true
  45812. },
  45813. {
  45814. name: "Colossus Size, Mid",
  45815. height: math.unit(52, "meters")
  45816. },
  45817. {
  45818. name: "Colossus Size, High",
  45819. height: math.unit(60, "meters")
  45820. },
  45821. {
  45822. name: "Titan Size, Low",
  45823. height: math.unit(91, "meters"),
  45824. },
  45825. {
  45826. name: "Titan Size, Mid",
  45827. height: math.unit(122, "meters")
  45828. },
  45829. {
  45830. name: "Titan Size, High",
  45831. height: math.unit(162, "meters")
  45832. },
  45833. ]
  45834. ))
  45835. characterMakers.push(() => makeCharacter(
  45836. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45837. {
  45838. front: {
  45839. height: math.unit(53, "meters"),
  45840. name: "Front",
  45841. image: {
  45842. source: "./media/characters/stellar-marbey/front.svg",
  45843. extra: 1913/1805,
  45844. bottom: 92/2005
  45845. }
  45846. },
  45847. back: {
  45848. height: math.unit(53, "meters"),
  45849. name: "Back",
  45850. image: {
  45851. source: "./media/characters/stellar-marbey/back.svg",
  45852. extra: 1960/1851,
  45853. bottom: 28/1988
  45854. }
  45855. },
  45856. mouth: {
  45857. height: math.unit(3.5, "meters"),
  45858. name: "Mouth",
  45859. image: {
  45860. source: "./media/characters/stellar-marbey/mouth.svg"
  45861. }
  45862. },
  45863. },
  45864. [
  45865. {
  45866. name: "Macro",
  45867. height: math.unit(53, "meters"),
  45868. default: true
  45869. },
  45870. ]
  45871. ))
  45872. characterMakers.push(() => makeCharacter(
  45873. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45874. {
  45875. front: {
  45876. height: math.unit(8 + 1/12, "feet"),
  45877. weight: math.unit(233, "lb"),
  45878. name: "Front",
  45879. image: {
  45880. source: "./media/characters/matsu/front.svg",
  45881. extra: 832/772,
  45882. bottom: 40/872
  45883. }
  45884. },
  45885. back: {
  45886. height: math.unit(8 + 1/12, "feet"),
  45887. weight: math.unit(233, "lb"),
  45888. name: "Back",
  45889. image: {
  45890. source: "./media/characters/matsu/back.svg",
  45891. extra: 839/780,
  45892. bottom: 47/886
  45893. }
  45894. },
  45895. },
  45896. [
  45897. {
  45898. name: "Normal",
  45899. height: math.unit(8 + 1/12, "feet"),
  45900. default: true
  45901. },
  45902. ]
  45903. ))
  45904. characterMakers.push(() => makeCharacter(
  45905. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45906. {
  45907. front: {
  45908. height: math.unit(4, "feet"),
  45909. weight: math.unit(148, "lb"),
  45910. name: "Front",
  45911. image: {
  45912. source: "./media/characters/thiz/front.svg",
  45913. extra: 1913/1748,
  45914. bottom: 62/1975
  45915. }
  45916. },
  45917. },
  45918. [
  45919. {
  45920. name: "Normal",
  45921. height: math.unit(4, "feet"),
  45922. default: true
  45923. },
  45924. ]
  45925. ))
  45926. characterMakers.push(() => makeCharacter(
  45927. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45928. {
  45929. front: {
  45930. height: math.unit(7 + 6/12, "feet"),
  45931. weight: math.unit(267, "lb"),
  45932. name: "Front",
  45933. image: {
  45934. source: "./media/characters/marcel/front.svg",
  45935. extra: 1221/1096,
  45936. bottom: 76/1297
  45937. }
  45938. },
  45939. },
  45940. [
  45941. {
  45942. name: "Normal",
  45943. height: math.unit(7 + 6/12, "feet"),
  45944. default: true
  45945. },
  45946. ]
  45947. ))
  45948. characterMakers.push(() => makeCharacter(
  45949. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45950. {
  45951. side: {
  45952. height: math.unit(42, "meters"),
  45953. name: "Side",
  45954. image: {
  45955. source: "./media/characters/flake/side.svg",
  45956. extra: 1525/1306,
  45957. bottom: 209/1734
  45958. }
  45959. },
  45960. },
  45961. [
  45962. {
  45963. name: "Normal",
  45964. height: math.unit(42, "meters"),
  45965. default: true
  45966. },
  45967. ]
  45968. ))
  45969. characterMakers.push(() => makeCharacter(
  45970. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45971. {
  45972. dressed: {
  45973. height: math.unit(6 + 4/12, "feet"),
  45974. weight: math.unit(520, "lb"),
  45975. name: "Dressed",
  45976. image: {
  45977. source: "./media/characters/someonne/dressed.svg",
  45978. extra: 1020/1010,
  45979. bottom: 178/1198
  45980. }
  45981. },
  45982. undressed: {
  45983. height: math.unit(6 + 4/12, "feet"),
  45984. weight: math.unit(520, "lb"),
  45985. name: "Undressed",
  45986. image: {
  45987. source: "./media/characters/someonne/undressed.svg",
  45988. extra: 1019/1014,
  45989. bottom: 169/1188
  45990. }
  45991. },
  45992. },
  45993. [
  45994. {
  45995. name: "Normal",
  45996. height: math.unit(6 + 4/12, "feet"),
  45997. default: true
  45998. },
  45999. ]
  46000. ))
  46001. characterMakers.push(() => makeCharacter(
  46002. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46003. {
  46004. front: {
  46005. height: math.unit(3, "feet"),
  46006. weight: math.unit(30, "lb"),
  46007. name: "Front",
  46008. image: {
  46009. source: "./media/characters/till/front.svg",
  46010. extra: 892/823,
  46011. bottom: 55/947
  46012. }
  46013. },
  46014. },
  46015. [
  46016. {
  46017. name: "Normal",
  46018. height: math.unit(3, "feet"),
  46019. default: true
  46020. },
  46021. ]
  46022. ))
  46023. characterMakers.push(() => makeCharacter(
  46024. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46025. {
  46026. front: {
  46027. height: math.unit(9 + 8/12, "feet"),
  46028. weight: math.unit(800, "lb"),
  46029. name: "Front",
  46030. image: {
  46031. source: "./media/characters/sydney-heki/front.svg",
  46032. extra: 1360/1300,
  46033. bottom: 22/1382
  46034. }
  46035. },
  46036. back: {
  46037. height: math.unit(9 + 8/12, "feet"),
  46038. weight: math.unit(800, "lb"),
  46039. name: "Back",
  46040. image: {
  46041. source: "./media/characters/sydney-heki/back.svg",
  46042. extra: 1356/1293,
  46043. bottom: 12/1368
  46044. }
  46045. },
  46046. frontDressed: {
  46047. height: math.unit(9 + 8/12, "feet"),
  46048. weight: math.unit(800, "lb"),
  46049. name: "Front-dressed",
  46050. image: {
  46051. source: "./media/characters/sydney-heki/front-dressed.svg",
  46052. extra: 1360/1300,
  46053. bottom: 22/1382
  46054. }
  46055. },
  46056. },
  46057. [
  46058. {
  46059. name: "Normal",
  46060. height: math.unit(9 + 8/12, "feet"),
  46061. default: true
  46062. },
  46063. {
  46064. name: "Macro",
  46065. height: math.unit(500, "feet")
  46066. },
  46067. {
  46068. name: "Megamacro",
  46069. height: math.unit(3.6, "miles")
  46070. },
  46071. ]
  46072. ))
  46073. characterMakers.push(() => makeCharacter(
  46074. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46075. {
  46076. front: {
  46077. height: math.unit(200, "cm"),
  46078. weight: math.unit(250, "lb"),
  46079. name: "Front",
  46080. image: {
  46081. source: "./media/characters/fowler-karlsson/front.svg",
  46082. extra: 897/845,
  46083. bottom: 123/1020
  46084. }
  46085. },
  46086. back: {
  46087. height: math.unit(200, "cm"),
  46088. weight: math.unit(250, "lb"),
  46089. name: "Back",
  46090. image: {
  46091. source: "./media/characters/fowler-karlsson/back.svg",
  46092. extra: 999/944,
  46093. bottom: 26/1025
  46094. }
  46095. },
  46096. dick: {
  46097. height: math.unit(1.92, "feet"),
  46098. weight: math.unit(150, "lb"),
  46099. name: "Dick",
  46100. image: {
  46101. source: "./media/characters/fowler-karlsson/dick.svg"
  46102. }
  46103. },
  46104. },
  46105. [
  46106. {
  46107. name: "Normal",
  46108. height: math.unit(200, "cm"),
  46109. default: true
  46110. },
  46111. {
  46112. name: "Smaller Macro",
  46113. height: math.unit(90, "m")
  46114. },
  46115. {
  46116. name: "Macro",
  46117. height: math.unit(150, "m")
  46118. },
  46119. {
  46120. name: "Bigger Macro",
  46121. height: math.unit(300, "m")
  46122. },
  46123. ]
  46124. ))
  46125. characterMakers.push(() => makeCharacter(
  46126. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46127. {
  46128. side: {
  46129. height: math.unit(8 + 2/12, "feet"),
  46130. weight: math.unit(1, "tonne"),
  46131. name: "Side",
  46132. image: {
  46133. source: "./media/characters/rylide/side.svg",
  46134. extra: 1318/1034,
  46135. bottom: 106/1424
  46136. }
  46137. },
  46138. sitting: {
  46139. height: math.unit(303, "cm"),
  46140. weight: math.unit(1, "tonne"),
  46141. name: "Sitting",
  46142. image: {
  46143. source: "./media/characters/rylide/sitting.svg",
  46144. extra: 1303/1103,
  46145. bottom: 36/1339
  46146. }
  46147. },
  46148. },
  46149. [
  46150. {
  46151. name: "Normal",
  46152. height: math.unit(8 + 2/12, "feet"),
  46153. default: true
  46154. },
  46155. ]
  46156. ))
  46157. characterMakers.push(() => makeCharacter(
  46158. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46159. {
  46160. front: {
  46161. height: math.unit(5 + 10/12, "feet"),
  46162. weight: math.unit(160, "lb"),
  46163. name: "Front",
  46164. image: {
  46165. source: "./media/characters/pudask/front.svg",
  46166. extra: 1616/1590,
  46167. bottom: 161/1777
  46168. }
  46169. },
  46170. },
  46171. [
  46172. {
  46173. name: "Ferret Height",
  46174. height: math.unit(2 + 5/12, "feet")
  46175. },
  46176. {
  46177. name: "Canon Height",
  46178. height: math.unit(5 + 10/12, "feet"),
  46179. default: true
  46180. },
  46181. ]
  46182. ))
  46183. characterMakers.push(() => makeCharacter(
  46184. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46185. {
  46186. front: {
  46187. height: math.unit(3 + 6/12, "feet"),
  46188. weight: math.unit(60, "lb"),
  46189. name: "Front",
  46190. image: {
  46191. source: "./media/characters/ramita/front.svg",
  46192. extra: 1402/1232,
  46193. bottom: 62/1464
  46194. }
  46195. },
  46196. dressed: {
  46197. height: math.unit(3 + 6/12, "feet"),
  46198. weight: math.unit(60, "lb"),
  46199. name: "Dressed",
  46200. image: {
  46201. source: "./media/characters/ramita/dressed.svg",
  46202. extra: 1534/1249,
  46203. bottom: 50/1584
  46204. }
  46205. },
  46206. },
  46207. [
  46208. {
  46209. name: "Normal",
  46210. height: math.unit(3 + 6/12, "feet"),
  46211. default: true
  46212. },
  46213. ]
  46214. ))
  46215. characterMakers.push(() => makeCharacter(
  46216. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46217. {
  46218. front: {
  46219. height: math.unit(8, "feet"),
  46220. name: "Front",
  46221. image: {
  46222. source: "./media/characters/ark/front.svg",
  46223. extra: 772/693,
  46224. bottom: 45/817
  46225. }
  46226. },
  46227. },
  46228. [
  46229. {
  46230. name: "Normal",
  46231. height: math.unit(8, "feet"),
  46232. default: true
  46233. },
  46234. ]
  46235. ))
  46236. characterMakers.push(() => makeCharacter(
  46237. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46238. {
  46239. front: {
  46240. height: math.unit(6, "feet"),
  46241. weight: math.unit(250, "lb"),
  46242. volume: math.unit(5/8, "gallons"),
  46243. name: "Front",
  46244. image: {
  46245. source: "./media/characters/ludwig-horn/front.svg",
  46246. extra: 1782/1635,
  46247. bottom: 96/1878
  46248. }
  46249. },
  46250. back: {
  46251. height: math.unit(6, "feet"),
  46252. weight: math.unit(250, "lb"),
  46253. volume: math.unit(5/8, "gallons"),
  46254. name: "Back",
  46255. image: {
  46256. source: "./media/characters/ludwig-horn/back.svg",
  46257. extra: 1874/1729,
  46258. bottom: 27/1901
  46259. }
  46260. },
  46261. dick: {
  46262. height: math.unit(1.05, "feet"),
  46263. weight: math.unit(15, "lb"),
  46264. volume: math.unit(5/8, "gallons"),
  46265. name: "Dick",
  46266. image: {
  46267. source: "./media/characters/ludwig-horn/dick.svg"
  46268. }
  46269. },
  46270. },
  46271. [
  46272. {
  46273. name: "Small",
  46274. height: math.unit(6, "feet")
  46275. },
  46276. {
  46277. name: "Typical",
  46278. height: math.unit(12, "feet"),
  46279. default: true
  46280. },
  46281. {
  46282. name: "Building",
  46283. height: math.unit(80, "feet")
  46284. },
  46285. {
  46286. name: "Town",
  46287. height: math.unit(800, "feet")
  46288. },
  46289. {
  46290. name: "Kingdom",
  46291. height: math.unit(80000, "feet")
  46292. },
  46293. {
  46294. name: "Planet",
  46295. height: math.unit(8000000, "feet")
  46296. },
  46297. {
  46298. name: "Universe",
  46299. height: math.unit(8000000000, "feet")
  46300. },
  46301. {
  46302. name: "Transcended",
  46303. height: math.unit(8e27, "feet")
  46304. },
  46305. ]
  46306. ))
  46307. characterMakers.push(() => makeCharacter(
  46308. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46309. {
  46310. front: {
  46311. height: math.unit(5, "feet"),
  46312. weight: math.unit(50, "kg"),
  46313. name: "Front",
  46314. image: {
  46315. source: "./media/characters/biot-avery/front.svg",
  46316. extra: 1295/1232,
  46317. bottom: 86/1381
  46318. }
  46319. },
  46320. },
  46321. [
  46322. {
  46323. name: "Normal",
  46324. height: math.unit(5, "feet"),
  46325. default: true
  46326. },
  46327. ]
  46328. ))
  46329. characterMakers.push(() => makeCharacter(
  46330. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46331. {
  46332. front: {
  46333. height: math.unit(6, "feet"),
  46334. name: "Front",
  46335. image: {
  46336. source: "./media/characters/kitsune-kiro/front.svg",
  46337. extra: 1270/1158,
  46338. bottom: 42/1312
  46339. }
  46340. },
  46341. frontAlt: {
  46342. height: math.unit(6, "feet"),
  46343. name: "Front-alt",
  46344. image: {
  46345. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46346. extra: 1130/1081,
  46347. bottom: 36/1166
  46348. }
  46349. },
  46350. },
  46351. [
  46352. {
  46353. name: "Smol",
  46354. height: math.unit(3, "feet")
  46355. },
  46356. {
  46357. name: "Normal",
  46358. height: math.unit(6, "feet"),
  46359. default: true
  46360. },
  46361. ]
  46362. ))
  46363. characterMakers.push(() => makeCharacter(
  46364. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46365. {
  46366. front: {
  46367. height: math.unit(6, "feet"),
  46368. weight: math.unit(125, "lb"),
  46369. name: "Front",
  46370. image: {
  46371. source: "./media/characters/jack-thatcher/front.svg",
  46372. extra: 1474/1370,
  46373. bottom: 26/1500
  46374. }
  46375. },
  46376. back: {
  46377. height: math.unit(6, "feet"),
  46378. weight: math.unit(125, "lb"),
  46379. name: "Back",
  46380. image: {
  46381. source: "./media/characters/jack-thatcher/back.svg",
  46382. extra: 1489/1384,
  46383. bottom: 18/1507
  46384. }
  46385. },
  46386. },
  46387. [
  46388. {
  46389. name: "Normal",
  46390. height: math.unit(6, "feet"),
  46391. default: true
  46392. },
  46393. {
  46394. name: "Macro",
  46395. height: math.unit(75, "feet")
  46396. },
  46397. {
  46398. name: "Macro-er",
  46399. height: math.unit(250, "feet")
  46400. },
  46401. ]
  46402. ))
  46403. characterMakers.push(() => makeCharacter(
  46404. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46405. {
  46406. front: {
  46407. height: math.unit(7, "feet"),
  46408. weight: math.unit(110, "kg"),
  46409. name: "Front",
  46410. image: {
  46411. source: "./media/characters/max-hyper/front.svg",
  46412. extra: 1969/1881,
  46413. bottom: 49/2018
  46414. }
  46415. },
  46416. },
  46417. [
  46418. {
  46419. name: "Normal",
  46420. height: math.unit(7, "feet"),
  46421. default: true
  46422. },
  46423. ]
  46424. ))
  46425. characterMakers.push(() => makeCharacter(
  46426. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46427. {
  46428. front: {
  46429. height: math.unit(5 + 5/12, "feet"),
  46430. weight: math.unit(160, "lb"),
  46431. name: "Front",
  46432. image: {
  46433. source: "./media/characters/spook/front.svg",
  46434. extra: 794/791,
  46435. bottom: 54/848
  46436. }
  46437. },
  46438. back: {
  46439. height: math.unit(5 + 5/12, "feet"),
  46440. weight: math.unit(160, "lb"),
  46441. name: "Back",
  46442. image: {
  46443. source: "./media/characters/spook/back.svg",
  46444. extra: 812/798,
  46445. bottom: 32/844
  46446. }
  46447. },
  46448. },
  46449. [
  46450. {
  46451. name: "Normal",
  46452. height: math.unit(5 + 5/12, "feet"),
  46453. default: true
  46454. },
  46455. ]
  46456. ))
  46457. characterMakers.push(() => makeCharacter(
  46458. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46459. {
  46460. front: {
  46461. height: math.unit(18, "feet"),
  46462. name: "Front",
  46463. image: {
  46464. source: "./media/characters/xeaduulix/front.svg",
  46465. extra: 1380/1166,
  46466. bottom: 110/1490
  46467. }
  46468. },
  46469. back: {
  46470. height: math.unit(18, "feet"),
  46471. name: "Back",
  46472. image: {
  46473. source: "./media/characters/xeaduulix/back.svg",
  46474. extra: 1592/1170,
  46475. bottom: 128/1720
  46476. }
  46477. },
  46478. frontNsfw: {
  46479. height: math.unit(18, "feet"),
  46480. name: "Front (NSFW)",
  46481. image: {
  46482. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46483. extra: 1380/1166,
  46484. bottom: 110/1490
  46485. }
  46486. },
  46487. backNsfw: {
  46488. height: math.unit(18, "feet"),
  46489. name: "Back (NSFW)",
  46490. image: {
  46491. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46492. extra: 1592/1170,
  46493. bottom: 128/1720
  46494. }
  46495. },
  46496. },
  46497. [
  46498. {
  46499. name: "Normal",
  46500. height: math.unit(18, "feet"),
  46501. default: true
  46502. },
  46503. ]
  46504. ))
  46505. characterMakers.push(() => makeCharacter(
  46506. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46507. {
  46508. spreadWings: {
  46509. height: math.unit(20, "feet"),
  46510. name: "Spread Wings",
  46511. image: {
  46512. source: "./media/characters/fledge/spread-wings.svg",
  46513. extra: 693/635,
  46514. bottom: 26/719
  46515. }
  46516. },
  46517. front: {
  46518. height: math.unit(20, "feet"),
  46519. name: "Front",
  46520. image: {
  46521. source: "./media/characters/fledge/front.svg",
  46522. extra: 684/637,
  46523. bottom: 18/702
  46524. }
  46525. },
  46526. frontAlt: {
  46527. height: math.unit(20, "feet"),
  46528. name: "Front (Alt)",
  46529. image: {
  46530. source: "./media/characters/fledge/front-alt.svg",
  46531. extra: 708/664,
  46532. bottom: 13/721
  46533. }
  46534. },
  46535. back: {
  46536. height: math.unit(20, "feet"),
  46537. name: "Back",
  46538. image: {
  46539. source: "./media/characters/fledge/back.svg",
  46540. extra: 718/634,
  46541. bottom: 22/740
  46542. }
  46543. },
  46544. head: {
  46545. height: math.unit(5.55, "feet"),
  46546. name: "Head",
  46547. image: {
  46548. source: "./media/characters/fledge/head.svg"
  46549. }
  46550. },
  46551. headAlt: {
  46552. height: math.unit(5.1, "feet"),
  46553. name: "Head (Alt)",
  46554. image: {
  46555. source: "./media/characters/fledge/head-alt.svg"
  46556. }
  46557. },
  46558. },
  46559. [
  46560. {
  46561. name: "Small",
  46562. height: math.unit(6 + 2/12, "feet")
  46563. },
  46564. {
  46565. name: "Big",
  46566. height: math.unit(20, "feet"),
  46567. default: true
  46568. },
  46569. {
  46570. name: "Giant",
  46571. height: math.unit(100, "feet")
  46572. },
  46573. {
  46574. name: "Macro",
  46575. height: math.unit(200, "feet")
  46576. },
  46577. ]
  46578. ))
  46579. characterMakers.push(() => makeCharacter(
  46580. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46581. {
  46582. front: {
  46583. height: math.unit(1, "meter"),
  46584. name: "Front",
  46585. image: {
  46586. source: "./media/characters/atlas-morenai/front.svg",
  46587. extra: 1275/1043,
  46588. bottom: 19/1294
  46589. }
  46590. },
  46591. back: {
  46592. height: math.unit(1, "meter"),
  46593. name: "Back",
  46594. image: {
  46595. source: "./media/characters/atlas-morenai/back.svg",
  46596. extra: 1141/1001,
  46597. bottom: 25/1166
  46598. }
  46599. },
  46600. },
  46601. [
  46602. {
  46603. name: "Normal",
  46604. height: math.unit(1, "meter"),
  46605. default: true
  46606. },
  46607. {
  46608. name: "Magic-Infused",
  46609. height: math.unit(5, "meters")
  46610. },
  46611. ]
  46612. ))
  46613. characterMakers.push(() => makeCharacter(
  46614. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46615. {
  46616. front: {
  46617. height: math.unit(5, "meters"),
  46618. name: "Front",
  46619. image: {
  46620. source: "./media/characters/cintia/front.svg",
  46621. extra: 1312/1228,
  46622. bottom: 38/1350
  46623. }
  46624. },
  46625. back: {
  46626. height: math.unit(5, "meters"),
  46627. name: "Back",
  46628. image: {
  46629. source: "./media/characters/cintia/back.svg",
  46630. extra: 1260/1166,
  46631. bottom: 98/1358
  46632. }
  46633. },
  46634. frontDick: {
  46635. height: math.unit(5, "meters"),
  46636. name: "Front (Dick)",
  46637. image: {
  46638. source: "./media/characters/cintia/front-dick.svg",
  46639. extra: 1312/1228,
  46640. bottom: 38/1350
  46641. }
  46642. },
  46643. backDick: {
  46644. height: math.unit(5, "meters"),
  46645. name: "Back (Dick)",
  46646. image: {
  46647. source: "./media/characters/cintia/back-dick.svg",
  46648. extra: 1260/1166,
  46649. bottom: 98/1358
  46650. }
  46651. },
  46652. bust: {
  46653. height: math.unit(1.97, "meters"),
  46654. name: "Bust",
  46655. image: {
  46656. source: "./media/characters/cintia/bust.svg",
  46657. extra: 617/565,
  46658. bottom: 0/617
  46659. }
  46660. },
  46661. },
  46662. [
  46663. {
  46664. name: "Normal",
  46665. height: math.unit(5, "meters"),
  46666. default: true
  46667. },
  46668. ]
  46669. ))
  46670. characterMakers.push(() => makeCharacter(
  46671. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46672. {
  46673. side: {
  46674. height: math.unit(100, "feet"),
  46675. name: "Side",
  46676. image: {
  46677. source: "./media/characters/denora/side.svg",
  46678. extra: 875/803,
  46679. bottom: 9/884
  46680. }
  46681. },
  46682. },
  46683. [
  46684. {
  46685. name: "Standard",
  46686. height: math.unit(100, "feet"),
  46687. default: true
  46688. },
  46689. {
  46690. name: "Grand",
  46691. height: math.unit(1000, "feet")
  46692. },
  46693. {
  46694. name: "Conquering",
  46695. height: math.unit(10000, "feet")
  46696. },
  46697. ]
  46698. ))
  46699. characterMakers.push(() => makeCharacter(
  46700. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46701. {
  46702. dressed: {
  46703. height: math.unit(8 + 5/12, "feet"),
  46704. weight: math.unit(700, "lb"),
  46705. name: "Dressed",
  46706. image: {
  46707. source: "./media/characters/kiva/dressed.svg",
  46708. extra: 1102/1055,
  46709. bottom: 60/1162
  46710. }
  46711. },
  46712. nude: {
  46713. height: math.unit(8 + 5/12, "feet"),
  46714. weight: math.unit(700, "lb"),
  46715. name: "Nude",
  46716. image: {
  46717. source: "./media/characters/kiva/nude.svg",
  46718. extra: 1102/1055,
  46719. bottom: 60/1162
  46720. }
  46721. },
  46722. },
  46723. [
  46724. {
  46725. name: "Base Height",
  46726. height: math.unit(8 + 5/12, "feet"),
  46727. default: true
  46728. },
  46729. {
  46730. name: "Macro",
  46731. height: math.unit(100, "feet")
  46732. },
  46733. {
  46734. name: "Max",
  46735. height: math.unit(3280, "feet")
  46736. },
  46737. ]
  46738. ))
  46739. characterMakers.push(() => makeCharacter(
  46740. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46741. {
  46742. front: {
  46743. height: math.unit(6 + 8/12, "feet"),
  46744. weight: math.unit(250, "lb"),
  46745. name: "Front",
  46746. image: {
  46747. source: "./media/characters/ztragon/front.svg",
  46748. extra: 1825/1684,
  46749. bottom: 98/1923
  46750. }
  46751. },
  46752. },
  46753. [
  46754. {
  46755. name: "Normal",
  46756. height: math.unit(6 + 8/12, "feet"),
  46757. default: true
  46758. },
  46759. {
  46760. name: "Macro",
  46761. height: math.unit(80, "feet")
  46762. },
  46763. ]
  46764. ))
  46765. characterMakers.push(() => makeCharacter(
  46766. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46767. {
  46768. front: {
  46769. height: math.unit(10.4, "feet"),
  46770. weight: math.unit(2, "tons"),
  46771. name: "Front",
  46772. image: {
  46773. source: "./media/characters/yesenia/front.svg",
  46774. extra: 1479/1474,
  46775. bottom: 233/1712
  46776. }
  46777. },
  46778. },
  46779. [
  46780. {
  46781. name: "Normal",
  46782. height: math.unit(10.4, "feet"),
  46783. default: true
  46784. },
  46785. ]
  46786. ))
  46787. characterMakers.push(() => makeCharacter(
  46788. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46789. {
  46790. normal: {
  46791. height: math.unit(6 + 1/12, "feet"),
  46792. weight: math.unit(180, "lb"),
  46793. name: "Normal",
  46794. image: {
  46795. source: "./media/characters/leanne-lycheborne/normal.svg",
  46796. extra: 1748/1660,
  46797. bottom: 98/1846
  46798. }
  46799. },
  46800. were: {
  46801. height: math.unit(12, "feet"),
  46802. weight: math.unit(1600, "lb"),
  46803. name: "Were",
  46804. image: {
  46805. source: "./media/characters/leanne-lycheborne/were.svg",
  46806. extra: 1485/1432,
  46807. bottom: 66/1551
  46808. }
  46809. },
  46810. },
  46811. [
  46812. {
  46813. name: "Normal",
  46814. height: math.unit(6 + 1/12, "feet"),
  46815. default: true
  46816. },
  46817. ]
  46818. ))
  46819. characterMakers.push(() => makeCharacter(
  46820. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46821. {
  46822. side: {
  46823. height: math.unit(13, "feet"),
  46824. name: "Side",
  46825. image: {
  46826. source: "./media/characters/kira-tyler/side.svg",
  46827. extra: 693/393,
  46828. bottom: 58/751
  46829. }
  46830. },
  46831. },
  46832. [
  46833. {
  46834. name: "Normal",
  46835. height: math.unit(13, "feet"),
  46836. default: true
  46837. },
  46838. ]
  46839. ))
  46840. characterMakers.push(() => makeCharacter(
  46841. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46842. {
  46843. front: {
  46844. height: math.unit(10.3, "feet"),
  46845. weight: math.unit(150, "lb"),
  46846. name: "Front",
  46847. image: {
  46848. source: "./media/characters/blaze/front.svg",
  46849. extra: 1378/1286,
  46850. bottom: 172/1550
  46851. }
  46852. },
  46853. },
  46854. [
  46855. {
  46856. name: "Normal",
  46857. height: math.unit(10.3, "feet"),
  46858. default: true
  46859. },
  46860. ]
  46861. ))
  46862. characterMakers.push(() => makeCharacter(
  46863. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46864. {
  46865. side: {
  46866. height: math.unit(2, "meters"),
  46867. weight: math.unit(400, "kg"),
  46868. name: "Side",
  46869. image: {
  46870. source: "./media/characters/anu/side.svg",
  46871. extra: 506/394,
  46872. bottom: 18/524
  46873. }
  46874. },
  46875. },
  46876. [
  46877. {
  46878. name: "Humanoid",
  46879. height: math.unit(2, "meters")
  46880. },
  46881. {
  46882. name: "Normal",
  46883. height: math.unit(5, "meters"),
  46884. default: true
  46885. },
  46886. ]
  46887. ))
  46888. characterMakers.push(() => makeCharacter(
  46889. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46890. {
  46891. front: {
  46892. height: math.unit(5 + 5/12, "feet"),
  46893. weight: math.unit(170, "lb"),
  46894. name: "Front",
  46895. image: {
  46896. source: "./media/characters/synx-the-lynx/front.svg",
  46897. extra: 1893/1745,
  46898. bottom: 17/1910
  46899. }
  46900. },
  46901. side: {
  46902. height: math.unit(5 + 5/12, "feet"),
  46903. weight: math.unit(170, "lb"),
  46904. name: "Side",
  46905. image: {
  46906. source: "./media/characters/synx-the-lynx/side.svg",
  46907. extra: 1884/1740,
  46908. bottom: 39/1923
  46909. }
  46910. },
  46911. back: {
  46912. height: math.unit(5 + 5/12, "feet"),
  46913. weight: math.unit(170, "lb"),
  46914. name: "Back",
  46915. image: {
  46916. source: "./media/characters/synx-the-lynx/back.svg",
  46917. extra: 1903/1755,
  46918. bottom: 14/1917
  46919. }
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Normal",
  46925. height: math.unit(5 + 5/12, "feet"),
  46926. default: true
  46927. },
  46928. ]
  46929. ))
  46930. characterMakers.push(() => makeCharacter(
  46931. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46932. {
  46933. back: {
  46934. height: math.unit(15, "feet"),
  46935. name: "Back",
  46936. image: {
  46937. source: "./media/characters/nadezda-fex/back.svg",
  46938. extra: 1695/1481,
  46939. bottom: 25/1720
  46940. }
  46941. },
  46942. },
  46943. [
  46944. {
  46945. name: "Normal",
  46946. height: math.unit(15, "feet"),
  46947. default: true
  46948. },
  46949. {
  46950. name: "Macro",
  46951. height: math.unit(2.5, "miles")
  46952. },
  46953. {
  46954. name: "Goddess",
  46955. height: math.unit(2, "multiverses")
  46956. },
  46957. ]
  46958. ))
  46959. characterMakers.push(() => makeCharacter(
  46960. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46961. {
  46962. front: {
  46963. height: math.unit(216, "cm"),
  46964. name: "Front",
  46965. image: {
  46966. source: "./media/characters/lev/front.svg",
  46967. extra: 1728/1670,
  46968. bottom: 82/1810
  46969. }
  46970. },
  46971. back: {
  46972. height: math.unit(216, "cm"),
  46973. name: "Back",
  46974. image: {
  46975. source: "./media/characters/lev/back.svg",
  46976. extra: 1738/1675,
  46977. bottom: 24/1762
  46978. }
  46979. },
  46980. dressed: {
  46981. height: math.unit(216, "cm"),
  46982. name: "Dressed",
  46983. image: {
  46984. source: "./media/characters/lev/dressed.svg",
  46985. extra: 1397/1351,
  46986. bottom: 73/1470
  46987. }
  46988. },
  46989. head: {
  46990. height: math.unit(0.51, "meter"),
  46991. name: "Head",
  46992. image: {
  46993. source: "./media/characters/lev/head.svg"
  46994. }
  46995. },
  46996. },
  46997. [
  46998. {
  46999. name: "Normal",
  47000. height: math.unit(216, "cm"),
  47001. default: true
  47002. },
  47003. {
  47004. name: "Relatively Macro",
  47005. height: math.unit(80, "meters")
  47006. },
  47007. {
  47008. name: "Megamacro",
  47009. height: math.unit(21600, "meters")
  47010. },
  47011. {
  47012. name: "Megamacro+",
  47013. height: math.unit(64800, "meters")
  47014. },
  47015. ]
  47016. ))
  47017. characterMakers.push(() => makeCharacter(
  47018. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47019. {
  47020. front: {
  47021. height: math.unit(2, "meters"),
  47022. weight: math.unit(80, "kg"),
  47023. name: "Front",
  47024. image: {
  47025. source: "./media/characters/moka/front.svg",
  47026. extra: 1337/1255,
  47027. bottom: 58/1395
  47028. }
  47029. },
  47030. },
  47031. [
  47032. {
  47033. name: "Micro",
  47034. height: math.unit(15, "cm")
  47035. },
  47036. {
  47037. name: "Normal",
  47038. height: math.unit(2, "meters"),
  47039. default: true
  47040. },
  47041. {
  47042. name: "Macro",
  47043. height: math.unit(20, "meters"),
  47044. },
  47045. ]
  47046. ))
  47047. characterMakers.push(() => makeCharacter(
  47048. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47049. {
  47050. front: {
  47051. height: math.unit(9, "feet"),
  47052. weight: math.unit(240, "lb"),
  47053. name: "Front",
  47054. image: {
  47055. source: "./media/characters/kuzco/front.svg",
  47056. extra: 1593/1487,
  47057. bottom: 32/1625
  47058. }
  47059. },
  47060. side: {
  47061. height: math.unit(9, "feet"),
  47062. weight: math.unit(240, "lb"),
  47063. name: "Side",
  47064. image: {
  47065. source: "./media/characters/kuzco/side.svg",
  47066. extra: 1575/1485,
  47067. bottom: 30/1605
  47068. }
  47069. },
  47070. back: {
  47071. height: math.unit(9, "feet"),
  47072. weight: math.unit(240, "lb"),
  47073. name: "Back",
  47074. image: {
  47075. source: "./media/characters/kuzco/back.svg",
  47076. extra: 1603/1514,
  47077. bottom: 14/1617
  47078. }
  47079. },
  47080. },
  47081. [
  47082. {
  47083. name: "Normal",
  47084. height: math.unit(9, "feet"),
  47085. default: true
  47086. },
  47087. ]
  47088. ))
  47089. characterMakers.push(() => makeCharacter(
  47090. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47091. {
  47092. side: {
  47093. height: math.unit(2, "meters"),
  47094. weight: math.unit(300, "kg"),
  47095. name: "Side",
  47096. image: {
  47097. source: "./media/characters/ceruleus/side.svg",
  47098. extra: 1068/974,
  47099. bottom: 126/1194
  47100. }
  47101. },
  47102. maw: {
  47103. height: math.unit(0.8125, "meter"),
  47104. name: "Maw",
  47105. image: {
  47106. source: "./media/characters/ceruleus/maw.svg"
  47107. }
  47108. },
  47109. },
  47110. [
  47111. {
  47112. name: "Normal",
  47113. height: math.unit(16, "meters"),
  47114. default: true
  47115. },
  47116. ]
  47117. ))
  47118. characterMakers.push(() => makeCharacter(
  47119. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47120. {
  47121. front: {
  47122. height: math.unit(9, "feet"),
  47123. weight: math.unit(500, "kg"),
  47124. name: "Front",
  47125. image: {
  47126. source: "./media/characters/acouya/front.svg",
  47127. extra: 1660/1473,
  47128. bottom: 28/1688
  47129. }
  47130. },
  47131. },
  47132. [
  47133. {
  47134. name: "Normal",
  47135. height: math.unit(9, "feet"),
  47136. default: true
  47137. },
  47138. ]
  47139. ))
  47140. characterMakers.push(() => makeCharacter(
  47141. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47142. {
  47143. front: {
  47144. height: math.unit(5 + 6/12, "feet"),
  47145. weight: math.unit(195, "lb"),
  47146. name: "Front",
  47147. image: {
  47148. source: "./media/characters/vant/front.svg",
  47149. extra: 1396/1320,
  47150. bottom: 20/1416
  47151. }
  47152. },
  47153. back: {
  47154. height: math.unit(5 + 6/12, "feet"),
  47155. weight: math.unit(195, "lb"),
  47156. name: "Back",
  47157. image: {
  47158. source: "./media/characters/vant/back.svg",
  47159. extra: 1396/1320,
  47160. bottom: 20/1416
  47161. }
  47162. },
  47163. maw: {
  47164. height: math.unit(0.75, "feet"),
  47165. name: "Maw",
  47166. image: {
  47167. source: "./media/characters/vant/maw.svg"
  47168. }
  47169. },
  47170. paw: {
  47171. height: math.unit(1.07, "feet"),
  47172. name: "Paw",
  47173. image: {
  47174. source: "./media/characters/vant/paw.svg"
  47175. }
  47176. },
  47177. },
  47178. [
  47179. {
  47180. name: "Micro",
  47181. height: math.unit(0.25, "inches")
  47182. },
  47183. {
  47184. name: "Normal",
  47185. height: math.unit(5 + 6/12, "feet"),
  47186. default: true
  47187. },
  47188. {
  47189. name: "Macro",
  47190. height: math.unit(75, "feet")
  47191. },
  47192. ]
  47193. ))
  47194. characterMakers.push(() => makeCharacter(
  47195. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47196. {
  47197. front: {
  47198. height: math.unit(30, "meters"),
  47199. weight: math.unit(363, "tons"),
  47200. name: "Front",
  47201. image: {
  47202. source: "./media/characters/ahra/front.svg",
  47203. extra: 1914/1814,
  47204. bottom: 46/1960
  47205. }
  47206. },
  47207. },
  47208. [
  47209. {
  47210. name: "Macro",
  47211. height: math.unit(30, "meters"),
  47212. default: true
  47213. },
  47214. ]
  47215. ))
  47216. characterMakers.push(() => makeCharacter(
  47217. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47218. {
  47219. undressed: {
  47220. height: math.unit(2, "m"),
  47221. weight: math.unit(250, "kg"),
  47222. name: "Undressed",
  47223. image: {
  47224. source: "./media/characters/coriander/undressed.svg",
  47225. extra: 1757/1606,
  47226. bottom: 107/1864
  47227. }
  47228. },
  47229. dressed: {
  47230. height: math.unit(2, "m"),
  47231. weight: math.unit(250, "kg"),
  47232. name: "Dressed",
  47233. image: {
  47234. source: "./media/characters/coriander/dressed.svg",
  47235. extra: 1757/1606,
  47236. bottom: 107/1864
  47237. }
  47238. },
  47239. },
  47240. [
  47241. {
  47242. name: "Normal",
  47243. height: math.unit(4, "meters"),
  47244. default: true
  47245. },
  47246. {
  47247. name: "XL",
  47248. height: math.unit(6, "meters")
  47249. },
  47250. {
  47251. name: "XXL",
  47252. height: math.unit(8, "meters")
  47253. },
  47254. ]
  47255. ))
  47256. characterMakers.push(() => makeCharacter(
  47257. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47258. {
  47259. front: {
  47260. height: math.unit(6, "feet"),
  47261. name: "Front",
  47262. image: {
  47263. source: "./media/characters/syrinx/front.svg",
  47264. extra: 1557/1259,
  47265. bottom: 171/1728
  47266. }
  47267. },
  47268. },
  47269. [
  47270. {
  47271. name: "Normal",
  47272. height: math.unit(6 + 3/12, "feet"),
  47273. default: true
  47274. },
  47275. ]
  47276. ))
  47277. characterMakers.push(() => makeCharacter(
  47278. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47279. {
  47280. front: {
  47281. height: math.unit(11 + 6/12, "feet"),
  47282. weight: math.unit(1.5, "tons"),
  47283. name: "Front",
  47284. image: {
  47285. source: "./media/characters/bor/front.svg",
  47286. extra: 1189/1109,
  47287. bottom: 170/1359
  47288. }
  47289. },
  47290. },
  47291. [
  47292. {
  47293. name: "Normal",
  47294. height: math.unit(11 + 6/12, "feet"),
  47295. default: true
  47296. },
  47297. {
  47298. name: "Macro",
  47299. height: math.unit(32 + 9/12, "feet")
  47300. },
  47301. ]
  47302. ))
  47303. characterMakers.push(() => makeCharacter(
  47304. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47305. {
  47306. anthro: {
  47307. height: math.unit(9, "feet"),
  47308. weight: math.unit(2076, "lb"),
  47309. name: "Anthro",
  47310. image: {
  47311. source: "./media/characters/abacus/anthro.svg",
  47312. extra: 1540/1494,
  47313. bottom: 233/1773
  47314. }
  47315. },
  47316. pigeon: {
  47317. height: math.unit(1, "feet"),
  47318. name: "Pigeon",
  47319. image: {
  47320. source: "./media/characters/abacus/pigeon.svg",
  47321. extra: 528/525,
  47322. bottom: 46/574
  47323. }
  47324. },
  47325. },
  47326. [
  47327. {
  47328. name: "Normal",
  47329. height: math.unit(9, "feet"),
  47330. default: true
  47331. },
  47332. ]
  47333. ))
  47334. characterMakers.push(() => makeCharacter(
  47335. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47336. {
  47337. side: {
  47338. height: math.unit(6, "feet"),
  47339. name: "Side",
  47340. image: {
  47341. source: "./media/characters/delkhan/side.svg",
  47342. extra: 1884/1786,
  47343. bottom: 308/2192
  47344. }
  47345. },
  47346. head: {
  47347. height: math.unit(3.38, "feet"),
  47348. name: "Head",
  47349. image: {
  47350. source: "./media/characters/delkhan/head.svg"
  47351. }
  47352. },
  47353. },
  47354. [
  47355. {
  47356. name: "Normal",
  47357. height: math.unit(72, "feet"),
  47358. default: true
  47359. },
  47360. {
  47361. name: "Giant",
  47362. height: math.unit(172, "feet")
  47363. },
  47364. ]
  47365. ))
  47366. characterMakers.push(() => makeCharacter(
  47367. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47368. {
  47369. standing: {
  47370. height: math.unit(6, "feet"),
  47371. name: "Standing",
  47372. image: {
  47373. source: "./media/characters/euchidat/standing.svg",
  47374. extra: 1612/1553,
  47375. bottom: 116/1728
  47376. }
  47377. },
  47378. leaning: {
  47379. height: math.unit(6, "feet"),
  47380. name: "Leaning",
  47381. image: {
  47382. source: "./media/characters/euchidat/leaning.svg",
  47383. extra: 1719/1674,
  47384. bottom: 27/1746
  47385. }
  47386. },
  47387. },
  47388. [
  47389. {
  47390. name: "Normal",
  47391. height: math.unit(175, "feet"),
  47392. default: true
  47393. },
  47394. {
  47395. name: "Megamacro",
  47396. height: math.unit(190, "miles")
  47397. },
  47398. {
  47399. name: "Gigamacro",
  47400. height: math.unit(190000, "miles")
  47401. },
  47402. ]
  47403. ))
  47404. characterMakers.push(() => makeCharacter(
  47405. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47406. {
  47407. front: {
  47408. height: math.unit(6, "feet"),
  47409. weight: math.unit(150, "lb"),
  47410. name: "Front",
  47411. image: {
  47412. source: "./media/characters/rebecca-stack/front.svg",
  47413. extra: 1256/1201,
  47414. bottom: 18/1274
  47415. }
  47416. },
  47417. },
  47418. [
  47419. {
  47420. name: "Normal",
  47421. height: math.unit(5 + 8/12, "feet"),
  47422. default: true
  47423. },
  47424. {
  47425. name: "Demolitionist",
  47426. height: math.unit(200, "feet")
  47427. },
  47428. {
  47429. name: "Out of Control",
  47430. height: math.unit(2, "miles")
  47431. },
  47432. {
  47433. name: "Giga",
  47434. height: math.unit(7200, "miles")
  47435. },
  47436. ]
  47437. ))
  47438. characterMakers.push(() => makeCharacter(
  47439. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47440. {
  47441. front: {
  47442. height: math.unit(6, "feet"),
  47443. weight: math.unit(150, "lb"),
  47444. name: "Front",
  47445. image: {
  47446. source: "./media/characters/jenny-cartwright/front.svg",
  47447. extra: 1384/1376,
  47448. bottom: 58/1442
  47449. }
  47450. },
  47451. },
  47452. [
  47453. {
  47454. name: "Normal",
  47455. height: math.unit(6 + 7/12, "feet"),
  47456. default: true
  47457. },
  47458. {
  47459. name: "Librarian",
  47460. height: math.unit(55, "feet")
  47461. },
  47462. {
  47463. name: "Sightseer",
  47464. height: math.unit(50, "miles")
  47465. },
  47466. {
  47467. name: "Giga",
  47468. height: math.unit(30000, "miles")
  47469. },
  47470. ]
  47471. ))
  47472. characterMakers.push(() => makeCharacter(
  47473. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47474. {
  47475. nude: {
  47476. height: math.unit(8, "feet"),
  47477. weight: math.unit(225, "lb"),
  47478. name: "Nude",
  47479. image: {
  47480. source: "./media/characters/marvy/nude.svg",
  47481. extra: 1900/1683,
  47482. bottom: 89/1989
  47483. }
  47484. },
  47485. dressed: {
  47486. height: math.unit(8, "feet"),
  47487. weight: math.unit(225, "lb"),
  47488. name: "Dressed",
  47489. image: {
  47490. source: "./media/characters/marvy/dressed.svg",
  47491. extra: 1900/1683,
  47492. bottom: 89/1989
  47493. }
  47494. },
  47495. head: {
  47496. height: math.unit(2.85, "feet"),
  47497. name: "Head",
  47498. image: {
  47499. source: "./media/characters/marvy/head.svg"
  47500. }
  47501. },
  47502. },
  47503. [
  47504. {
  47505. name: "Normal",
  47506. height: math.unit(8, "feet"),
  47507. default: true
  47508. },
  47509. ]
  47510. ))
  47511. characterMakers.push(() => makeCharacter(
  47512. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47513. {
  47514. front: {
  47515. height: math.unit(8, "feet"),
  47516. weight: math.unit(250, "lb"),
  47517. name: "Front",
  47518. image: {
  47519. source: "./media/characters/leah/front.svg",
  47520. extra: 1257/1149,
  47521. bottom: 109/1366
  47522. }
  47523. },
  47524. },
  47525. [
  47526. {
  47527. name: "Normal",
  47528. height: math.unit(8, "feet"),
  47529. default: true
  47530. },
  47531. {
  47532. name: "Minimacro",
  47533. height: math.unit(40, "feet")
  47534. },
  47535. {
  47536. name: "Macro",
  47537. height: math.unit(124, "feet")
  47538. },
  47539. {
  47540. name: "Megamacro",
  47541. height: math.unit(850, "feet")
  47542. },
  47543. ]
  47544. ))
  47545. characterMakers.push(() => makeCharacter(
  47546. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47547. {
  47548. side: {
  47549. height: math.unit(13 + 6/12, "feet"),
  47550. weight: math.unit(3200, "lb"),
  47551. name: "Side",
  47552. image: {
  47553. source: "./media/characters/alvir/side.svg",
  47554. extra: 896/589,
  47555. bottom: 26/922
  47556. }
  47557. },
  47558. },
  47559. [
  47560. {
  47561. name: "Normal",
  47562. height: math.unit(13 + 6/12, "feet"),
  47563. default: true
  47564. },
  47565. ]
  47566. ))
  47567. characterMakers.push(() => makeCharacter(
  47568. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47569. {
  47570. front: {
  47571. height: math.unit(5 + 4/12, "feet"),
  47572. weight: math.unit(236, "lb"),
  47573. name: "Front",
  47574. image: {
  47575. source: "./media/characters/zaina-khalil/front.svg",
  47576. extra: 1533/1485,
  47577. bottom: 94/1627
  47578. }
  47579. },
  47580. side: {
  47581. height: math.unit(5 + 4/12, "feet"),
  47582. weight: math.unit(236, "lb"),
  47583. name: "Side",
  47584. image: {
  47585. source: "./media/characters/zaina-khalil/side.svg",
  47586. extra: 1537/1498,
  47587. bottom: 66/1603
  47588. }
  47589. },
  47590. back: {
  47591. height: math.unit(5 + 4/12, "feet"),
  47592. weight: math.unit(236, "lb"),
  47593. name: "Back",
  47594. image: {
  47595. source: "./media/characters/zaina-khalil/back.svg",
  47596. extra: 1546/1494,
  47597. bottom: 89/1635
  47598. }
  47599. },
  47600. },
  47601. [
  47602. {
  47603. name: "Normal",
  47604. height: math.unit(5 + 4/12, "feet"),
  47605. default: true
  47606. },
  47607. ]
  47608. ))
  47609. characterMakers.push(() => makeCharacter(
  47610. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47611. {
  47612. side: {
  47613. height: math.unit(12, "feet"),
  47614. weight: math.unit(4000, "lb"),
  47615. name: "Side",
  47616. image: {
  47617. source: "./media/characters/terry/side.svg",
  47618. extra: 1518/1439,
  47619. bottom: 149/1667
  47620. }
  47621. },
  47622. },
  47623. [
  47624. {
  47625. name: "Normal",
  47626. height: math.unit(12, "feet"),
  47627. default: true
  47628. },
  47629. ]
  47630. ))
  47631. characterMakers.push(() => makeCharacter(
  47632. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47633. {
  47634. front: {
  47635. height: math.unit(12, "feet"),
  47636. weight: math.unit(1500, "lb"),
  47637. name: "Front",
  47638. image: {
  47639. source: "./media/characters/kahea/front.svg",
  47640. extra: 1722/1617,
  47641. bottom: 179/1901
  47642. }
  47643. },
  47644. },
  47645. [
  47646. {
  47647. name: "Normal",
  47648. height: math.unit(12, "feet"),
  47649. default: true
  47650. },
  47651. ]
  47652. ))
  47653. characterMakers.push(() => makeCharacter(
  47654. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47655. {
  47656. demonFront: {
  47657. height: math.unit(36, "feet"),
  47658. name: "Front",
  47659. image: {
  47660. source: "./media/characters/alex-xuria/demon-front.svg",
  47661. extra: 1705/1673,
  47662. bottom: 198/1903
  47663. },
  47664. form: "demon",
  47665. default: true
  47666. },
  47667. demonBack: {
  47668. height: math.unit(36, "feet"),
  47669. name: "Back",
  47670. image: {
  47671. source: "./media/characters/alex-xuria/demon-back.svg",
  47672. extra: 1725/1693,
  47673. bottom: 70/1795
  47674. },
  47675. form: "demon"
  47676. },
  47677. demonHead: {
  47678. height: math.unit(2.14, "meters"),
  47679. name: "Head",
  47680. image: {
  47681. source: "./media/characters/alex-xuria/demon-head.svg"
  47682. },
  47683. form: "demon"
  47684. },
  47685. demonHand: {
  47686. height: math.unit(1.61, "meters"),
  47687. name: "Hand",
  47688. image: {
  47689. source: "./media/characters/alex-xuria/demon-hand.svg"
  47690. },
  47691. form: "demon"
  47692. },
  47693. demonPaw: {
  47694. height: math.unit(1.35, "meters"),
  47695. name: "Paw",
  47696. image: {
  47697. source: "./media/characters/alex-xuria/demon-paw.svg"
  47698. },
  47699. form: "demon"
  47700. },
  47701. demonFoot: {
  47702. height: math.unit(2.2, "meters"),
  47703. name: "Foot",
  47704. image: {
  47705. source: "./media/characters/alex-xuria/demon-foot.svg"
  47706. },
  47707. form: "demon"
  47708. },
  47709. demonCock: {
  47710. height: math.unit(1.74, "meters"),
  47711. name: "Cock",
  47712. image: {
  47713. source: "./media/characters/alex-xuria/demon-cock.svg"
  47714. },
  47715. form: "demon"
  47716. },
  47717. demonTailClosed: {
  47718. height: math.unit(1.47, "meters"),
  47719. name: "Tail (Closed)",
  47720. image: {
  47721. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47722. },
  47723. form: "demon"
  47724. },
  47725. demonTailOpen: {
  47726. height: math.unit(2.85, "meters"),
  47727. name: "Tail (Open)",
  47728. image: {
  47729. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47730. },
  47731. form: "demon"
  47732. },
  47733. incubusFront: {
  47734. height: math.unit(12, "feet"),
  47735. name: "Front",
  47736. image: {
  47737. source: "./media/characters/alex-xuria/incubus-front.svg",
  47738. extra: 1754/1677,
  47739. bottom: 125/1879
  47740. },
  47741. form: "incubus",
  47742. default: true
  47743. },
  47744. incubusBack: {
  47745. height: math.unit(12, "feet"),
  47746. name: "Back",
  47747. image: {
  47748. source: "./media/characters/alex-xuria/incubus-back.svg",
  47749. extra: 1702/1647,
  47750. bottom: 30/1732
  47751. },
  47752. form: "incubus"
  47753. },
  47754. incubusHead: {
  47755. height: math.unit(3.45, "feet"),
  47756. name: "Head",
  47757. image: {
  47758. source: "./media/characters/alex-xuria/incubus-head.svg"
  47759. },
  47760. form: "incubus"
  47761. },
  47762. rabbitFront: {
  47763. height: math.unit(6, "feet"),
  47764. name: "Front",
  47765. image: {
  47766. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47767. extra: 1369/1349,
  47768. bottom: 45/1414
  47769. },
  47770. form: "rabbit",
  47771. default: true
  47772. },
  47773. rabbitSide: {
  47774. height: math.unit(6, "feet"),
  47775. name: "Side",
  47776. image: {
  47777. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47778. extra: 1370/1356,
  47779. bottom: 37/1407
  47780. },
  47781. form: "rabbit"
  47782. },
  47783. rabbitBack: {
  47784. height: math.unit(6, "feet"),
  47785. name: "Back",
  47786. image: {
  47787. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47788. extra: 1375/1358,
  47789. bottom: 43/1418
  47790. },
  47791. form: "rabbit"
  47792. },
  47793. },
  47794. [
  47795. {
  47796. name: "Normal",
  47797. height: math.unit(6, "feet"),
  47798. default: true,
  47799. form: "rabbit"
  47800. },
  47801. {
  47802. name: "Incubus",
  47803. height: math.unit(12, "feet"),
  47804. default: true,
  47805. form: "incubus"
  47806. },
  47807. {
  47808. name: "Demon",
  47809. height: math.unit(36, "feet"),
  47810. default: true,
  47811. form: "demon"
  47812. }
  47813. ],
  47814. {
  47815. "demon": {
  47816. name: "Demon",
  47817. default: true
  47818. },
  47819. "incubus": {
  47820. name: "Incubus",
  47821. },
  47822. "rabbit": {
  47823. name: "Rabbit"
  47824. }
  47825. }
  47826. ))
  47827. characterMakers.push(() => makeCharacter(
  47828. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47829. {
  47830. front: {
  47831. height: math.unit(7 + 5/12, "feet"),
  47832. weight: math.unit(510, "lb"),
  47833. name: "Front",
  47834. image: {
  47835. source: "./media/characters/syrup/front.svg",
  47836. extra: 932/916,
  47837. bottom: 26/958
  47838. }
  47839. },
  47840. },
  47841. [
  47842. {
  47843. name: "Normal",
  47844. height: math.unit(7 + 5/12, "feet"),
  47845. default: true
  47846. },
  47847. {
  47848. name: "Big",
  47849. height: math.unit(50, "feet")
  47850. },
  47851. {
  47852. name: "Macro",
  47853. height: math.unit(300, "feet")
  47854. },
  47855. {
  47856. name: "Megamacro",
  47857. height: math.unit(1, "mile")
  47858. },
  47859. ]
  47860. ))
  47861. characterMakers.push(() => makeCharacter(
  47862. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47863. {
  47864. front: {
  47865. height: math.unit(6 + 9/12, "feet"),
  47866. name: "Front",
  47867. image: {
  47868. source: "./media/characters/zeimne/front.svg",
  47869. extra: 1969/1806,
  47870. bottom: 53/2022
  47871. }
  47872. },
  47873. },
  47874. [
  47875. {
  47876. name: "Normal",
  47877. height: math.unit(6 + 9/12, "feet"),
  47878. default: true
  47879. },
  47880. {
  47881. name: "Giant",
  47882. height: math.unit(550, "feet")
  47883. },
  47884. {
  47885. name: "Mega",
  47886. height: math.unit(3, "miles")
  47887. },
  47888. {
  47889. name: "Giga",
  47890. height: math.unit(250, "miles")
  47891. },
  47892. {
  47893. name: "Tera",
  47894. height: math.unit(1, "AU")
  47895. },
  47896. ]
  47897. ))
  47898. characterMakers.push(() => makeCharacter(
  47899. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47900. {
  47901. front: {
  47902. height: math.unit(5 + 2/12, "feet"),
  47903. name: "Front",
  47904. image: {
  47905. source: "./media/characters/grar/front.svg",
  47906. extra: 1331/1119,
  47907. bottom: 60/1391
  47908. }
  47909. },
  47910. back: {
  47911. height: math.unit(5 + 2/12, "feet"),
  47912. name: "Back",
  47913. image: {
  47914. source: "./media/characters/grar/back.svg",
  47915. extra: 1385/1169,
  47916. bottom: 23/1408
  47917. }
  47918. },
  47919. },
  47920. [
  47921. {
  47922. name: "Normal",
  47923. height: math.unit(5 + 2/12, "feet"),
  47924. default: true
  47925. },
  47926. ]
  47927. ))
  47928. characterMakers.push(() => makeCharacter(
  47929. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47930. {
  47931. front: {
  47932. height: math.unit(13 + 7/12, "feet"),
  47933. weight: math.unit(2200, "lb"),
  47934. name: "Front",
  47935. image: {
  47936. source: "./media/characters/endraya/front.svg",
  47937. extra: 1289/1215,
  47938. bottom: 50/1339
  47939. }
  47940. },
  47941. nude: {
  47942. height: math.unit(13 + 7/12, "feet"),
  47943. weight: math.unit(2200, "lb"),
  47944. name: "Nude",
  47945. image: {
  47946. source: "./media/characters/endraya/nude.svg",
  47947. extra: 1247/1171,
  47948. bottom: 40/1287
  47949. }
  47950. },
  47951. head: {
  47952. height: math.unit(2.6, "feet"),
  47953. name: "Head",
  47954. image: {
  47955. source: "./media/characters/endraya/head.svg"
  47956. }
  47957. },
  47958. slit: {
  47959. height: math.unit(3.4, "feet"),
  47960. name: "Slit",
  47961. image: {
  47962. source: "./media/characters/endraya/slit.svg"
  47963. }
  47964. },
  47965. },
  47966. [
  47967. {
  47968. name: "Normal",
  47969. height: math.unit(13 + 7/12, "feet"),
  47970. default: true
  47971. },
  47972. {
  47973. name: "Macro",
  47974. height: math.unit(200, "feet")
  47975. },
  47976. ]
  47977. ))
  47978. characterMakers.push(() => makeCharacter(
  47979. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47980. {
  47981. front: {
  47982. height: math.unit(1.81, "meters"),
  47983. weight: math.unit(69, "kg"),
  47984. name: "Front",
  47985. image: {
  47986. source: "./media/characters/rodryana/front.svg",
  47987. extra: 2002/1921,
  47988. bottom: 53/2055
  47989. }
  47990. },
  47991. back: {
  47992. height: math.unit(1.81, "meters"),
  47993. weight: math.unit(69, "kg"),
  47994. name: "Back",
  47995. image: {
  47996. source: "./media/characters/rodryana/back.svg",
  47997. extra: 1993/1926,
  47998. bottom: 48/2041
  47999. }
  48000. },
  48001. maw: {
  48002. height: math.unit(0.19769417475, "meters"),
  48003. name: "Maw",
  48004. image: {
  48005. source: "./media/characters/rodryana/maw.svg"
  48006. }
  48007. },
  48008. slit: {
  48009. height: math.unit(0.31631067961, "meters"),
  48010. name: "Slit",
  48011. image: {
  48012. source: "./media/characters/rodryana/slit.svg"
  48013. }
  48014. },
  48015. },
  48016. [
  48017. {
  48018. name: "Normal",
  48019. height: math.unit(1.81, "meters")
  48020. },
  48021. {
  48022. name: "Mini Macro",
  48023. height: math.unit(181, "meters")
  48024. },
  48025. {
  48026. name: "Macro",
  48027. height: math.unit(452, "meters"),
  48028. default: true
  48029. },
  48030. {
  48031. name: "Mega Macro",
  48032. height: math.unit(1.375, "km")
  48033. },
  48034. {
  48035. name: "Giga Macro",
  48036. height: math.unit(13.575, "km")
  48037. },
  48038. ]
  48039. ))
  48040. characterMakers.push(() => makeCharacter(
  48041. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48042. {
  48043. front: {
  48044. height: math.unit(6, "feet"),
  48045. weight: math.unit(1000, "lb"),
  48046. name: "Front",
  48047. image: {
  48048. source: "./media/characters/asaya/front.svg",
  48049. extra: 1460/1200,
  48050. bottom: 71/1531
  48051. }
  48052. },
  48053. },
  48054. [
  48055. {
  48056. name: "Normal",
  48057. height: math.unit(8, "km"),
  48058. default: true
  48059. },
  48060. ]
  48061. ))
  48062. characterMakers.push(() => makeCharacter(
  48063. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48064. {
  48065. front: {
  48066. height: math.unit(3.5, "meters"),
  48067. name: "Front",
  48068. image: {
  48069. source: "./media/characters/sarzu-and-israz/front.svg",
  48070. extra: 1570/1558,
  48071. bottom: 150/1720
  48072. },
  48073. },
  48074. back: {
  48075. height: math.unit(3.5, "meters"),
  48076. name: "Back",
  48077. image: {
  48078. source: "./media/characters/sarzu-and-israz/back.svg",
  48079. extra: 1523/1509,
  48080. bottom: 132/1655
  48081. },
  48082. },
  48083. frontFemale: {
  48084. height: math.unit(3.5, "meters"),
  48085. name: "Front (Female)",
  48086. image: {
  48087. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48088. extra: 1570/1558,
  48089. bottom: 150/1720
  48090. },
  48091. },
  48092. frontHerm: {
  48093. height: math.unit(3.5, "meters"),
  48094. name: "Front (Herm)",
  48095. image: {
  48096. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48097. extra: 1570/1558,
  48098. bottom: 150/1720
  48099. },
  48100. },
  48101. },
  48102. [
  48103. {
  48104. name: "Normal",
  48105. height: math.unit(3.5, "meters"),
  48106. default: true,
  48107. },
  48108. {
  48109. name: "Macro",
  48110. height: math.unit(65.5, "meters"),
  48111. },
  48112. ],
  48113. ))
  48114. characterMakers.push(() => makeCharacter(
  48115. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48116. {
  48117. front: {
  48118. height: math.unit(6, "feet"),
  48119. weight: math.unit(250, "lb"),
  48120. name: "Front",
  48121. image: {
  48122. source: "./media/characters/zenimma/front.svg",
  48123. extra: 1346/1320,
  48124. bottom: 58/1404
  48125. }
  48126. },
  48127. back: {
  48128. height: math.unit(6, "feet"),
  48129. weight: math.unit(250, "lb"),
  48130. name: "Back",
  48131. image: {
  48132. source: "./media/characters/zenimma/back.svg",
  48133. extra: 1324/1308,
  48134. bottom: 44/1368
  48135. }
  48136. },
  48137. dick: {
  48138. height: math.unit(1.44, "feet"),
  48139. name: "Dick",
  48140. image: {
  48141. source: "./media/characters/zenimma/dick.svg"
  48142. }
  48143. },
  48144. },
  48145. [
  48146. {
  48147. name: "Canon Height",
  48148. height: math.unit(66, "miles"),
  48149. default: true
  48150. },
  48151. ]
  48152. ))
  48153. characterMakers.push(() => makeCharacter(
  48154. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48155. {
  48156. nude: {
  48157. height: math.unit(6, "feet"),
  48158. weight: math.unit(150, "lb"),
  48159. name: "Nude",
  48160. image: {
  48161. source: "./media/characters/shavon/nude.svg",
  48162. extra: 1242/1096,
  48163. bottom: 98/1340
  48164. }
  48165. },
  48166. dressed: {
  48167. height: math.unit(6, "feet"),
  48168. weight: math.unit(150, "lb"),
  48169. name: "Dressed",
  48170. image: {
  48171. source: "./media/characters/shavon/dressed.svg",
  48172. extra: 1242/1096,
  48173. bottom: 98/1340
  48174. }
  48175. },
  48176. },
  48177. [
  48178. {
  48179. name: "Macro",
  48180. height: math.unit(255, "feet"),
  48181. default: true
  48182. },
  48183. ]
  48184. ))
  48185. characterMakers.push(() => makeCharacter(
  48186. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48187. {
  48188. front: {
  48189. height: math.unit(6, "feet"),
  48190. name: "Front",
  48191. image: {
  48192. source: "./media/characters/steph/front.svg",
  48193. extra: 1430/1330,
  48194. bottom: 54/1484
  48195. }
  48196. },
  48197. },
  48198. [
  48199. {
  48200. name: "Normal",
  48201. height: math.unit(6, "feet"),
  48202. default: true
  48203. },
  48204. ]
  48205. ))
  48206. characterMakers.push(() => makeCharacter(
  48207. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48208. {
  48209. front: {
  48210. height: math.unit(9, "feet"),
  48211. weight: math.unit(400, "lb"),
  48212. name: "Front",
  48213. image: {
  48214. source: "./media/characters/kil'aman/front.svg",
  48215. extra: 1210/1159,
  48216. bottom: 109/1319
  48217. }
  48218. },
  48219. head: {
  48220. height: math.unit(2.14, "feet"),
  48221. name: "Head",
  48222. image: {
  48223. source: "./media/characters/kil'aman/head.svg"
  48224. }
  48225. },
  48226. maw: {
  48227. height: math.unit(1.21, "feet"),
  48228. name: "Maw",
  48229. image: {
  48230. source: "./media/characters/kil'aman/maw.svg"
  48231. }
  48232. },
  48233. foot: {
  48234. height: math.unit(1.7, "feet"),
  48235. name: "Foot",
  48236. image: {
  48237. source: "./media/characters/kil'aman/foot.svg"
  48238. }
  48239. },
  48240. dick: {
  48241. height: math.unit(2.1, "feet"),
  48242. name: "Dick",
  48243. image: {
  48244. source: "./media/characters/kil'aman/dick.svg"
  48245. }
  48246. },
  48247. },
  48248. [
  48249. {
  48250. name: "Normal",
  48251. height: math.unit(9, "feet")
  48252. },
  48253. {
  48254. name: "Canon Height",
  48255. height: math.unit(10, "miles"),
  48256. default: true
  48257. },
  48258. {
  48259. name: "Maximum",
  48260. height: math.unit(6e9, "miles")
  48261. },
  48262. ]
  48263. ))
  48264. characterMakers.push(() => makeCharacter(
  48265. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48266. {
  48267. front: {
  48268. height: math.unit(90, "feet"),
  48269. weight: math.unit(675000, "lb"),
  48270. name: "Front",
  48271. image: {
  48272. source: "./media/characters/qadan/front.svg",
  48273. extra: 1012/1004,
  48274. bottom: 78/1090
  48275. }
  48276. },
  48277. back: {
  48278. height: math.unit(90, "feet"),
  48279. weight: math.unit(675000, "lb"),
  48280. name: "Back",
  48281. image: {
  48282. source: "./media/characters/qadan/back.svg",
  48283. extra: 1042/1031,
  48284. bottom: 55/1097
  48285. }
  48286. },
  48287. armored: {
  48288. height: math.unit(90, "feet"),
  48289. weight: math.unit(675000, "lb"),
  48290. name: "Armored",
  48291. image: {
  48292. source: "./media/characters/qadan/armored.svg",
  48293. extra: 1047/1037,
  48294. bottom: 48/1095
  48295. }
  48296. },
  48297. },
  48298. [
  48299. {
  48300. name: "Normal",
  48301. height: math.unit(90, "feet"),
  48302. default: true
  48303. },
  48304. ]
  48305. ))
  48306. characterMakers.push(() => makeCharacter(
  48307. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48308. {
  48309. front: {
  48310. height: math.unit(6, "feet"),
  48311. weight: math.unit(225, "lb"),
  48312. name: "Front",
  48313. image: {
  48314. source: "./media/characters/brooke/front.svg",
  48315. extra: 1050/1010,
  48316. bottom: 66/1116
  48317. }
  48318. },
  48319. back: {
  48320. height: math.unit(6, "feet"),
  48321. weight: math.unit(225, "lb"),
  48322. name: "Back",
  48323. image: {
  48324. source: "./media/characters/brooke/back.svg",
  48325. extra: 1053/1013,
  48326. bottom: 41/1094
  48327. }
  48328. },
  48329. dressed: {
  48330. height: math.unit(6, "feet"),
  48331. weight: math.unit(225, "lb"),
  48332. name: "Dressed",
  48333. image: {
  48334. source: "./media/characters/brooke/dressed.svg",
  48335. extra: 1050/1010,
  48336. bottom: 66/1116
  48337. }
  48338. },
  48339. },
  48340. [
  48341. {
  48342. name: "Canon Height",
  48343. height: math.unit(500, "miles"),
  48344. default: true
  48345. },
  48346. ]
  48347. ))
  48348. characterMakers.push(() => makeCharacter(
  48349. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48350. {
  48351. front: {
  48352. height: math.unit(6 + 2/12, "feet"),
  48353. weight: math.unit(210, "lb"),
  48354. name: "Front",
  48355. image: {
  48356. source: "./media/characters/wubs/front.svg",
  48357. extra: 1345/1325,
  48358. bottom: 70/1415
  48359. }
  48360. },
  48361. back: {
  48362. height: math.unit(6 + 2/12, "feet"),
  48363. weight: math.unit(210, "lb"),
  48364. name: "Back",
  48365. image: {
  48366. source: "./media/characters/wubs/back.svg",
  48367. extra: 1296/1275,
  48368. bottom: 58/1354
  48369. }
  48370. },
  48371. },
  48372. [
  48373. {
  48374. name: "Normal",
  48375. height: math.unit(6 + 2/12, "feet"),
  48376. default: true
  48377. },
  48378. {
  48379. name: "Macro",
  48380. height: math.unit(1000, "feet")
  48381. },
  48382. {
  48383. name: "Megamacro",
  48384. height: math.unit(1, "mile")
  48385. },
  48386. ]
  48387. ))
  48388. characterMakers.push(() => makeCharacter(
  48389. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48390. {
  48391. front: {
  48392. height: math.unit(4, "feet"),
  48393. weight: math.unit(120, "lb"),
  48394. name: "Front",
  48395. image: {
  48396. source: "./media/characters/blue/front.svg",
  48397. extra: 1636/1525,
  48398. bottom: 43/1679
  48399. }
  48400. },
  48401. back: {
  48402. height: math.unit(4, "feet"),
  48403. weight: math.unit(120, "lb"),
  48404. name: "Back",
  48405. image: {
  48406. source: "./media/characters/blue/back.svg",
  48407. extra: 1660/1560,
  48408. bottom: 57/1717
  48409. }
  48410. },
  48411. paws: {
  48412. height: math.unit(0.826, "feet"),
  48413. name: "Paws",
  48414. image: {
  48415. source: "./media/characters/blue/paws.svg"
  48416. }
  48417. },
  48418. },
  48419. [
  48420. {
  48421. name: "Micro",
  48422. height: math.unit(3, "inches")
  48423. },
  48424. {
  48425. name: "Normal",
  48426. height: math.unit(4, "feet"),
  48427. default: true
  48428. },
  48429. {
  48430. name: "Femenine Form",
  48431. height: math.unit(14, "feet")
  48432. },
  48433. {
  48434. name: "Werebat Form",
  48435. height: math.unit(18, "feet")
  48436. },
  48437. ]
  48438. ))
  48439. characterMakers.push(() => makeCharacter(
  48440. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48441. {
  48442. female: {
  48443. height: math.unit(7 + 4/12, "feet"),
  48444. weight: math.unit(243, "lb"),
  48445. name: "Female",
  48446. image: {
  48447. source: "./media/characters/kaya/female.svg",
  48448. extra: 975/898,
  48449. bottom: 34/1009
  48450. }
  48451. },
  48452. herm: {
  48453. height: math.unit(7 + 4/12, "feet"),
  48454. weight: math.unit(243, "lb"),
  48455. name: "Herm",
  48456. image: {
  48457. source: "./media/characters/kaya/herm.svg",
  48458. extra: 975/898,
  48459. bottom: 34/1009
  48460. }
  48461. },
  48462. },
  48463. [
  48464. {
  48465. name: "Normal",
  48466. height: math.unit(7 + 4/12, "feet"),
  48467. default: true
  48468. },
  48469. ]
  48470. ))
  48471. characterMakers.push(() => makeCharacter(
  48472. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48473. {
  48474. female: {
  48475. height: math.unit(9 + 4/12, "feet"),
  48476. weight: math.unit(398, "lb"),
  48477. name: "Female",
  48478. image: {
  48479. source: "./media/characters/kassandra/female.svg",
  48480. extra: 908/839,
  48481. bottom: 61/969
  48482. }
  48483. },
  48484. intersex: {
  48485. height: math.unit(9 + 4/12, "feet"),
  48486. weight: math.unit(398, "lb"),
  48487. name: "Intersex",
  48488. image: {
  48489. source: "./media/characters/kassandra/intersex.svg",
  48490. extra: 908/839,
  48491. bottom: 61/969
  48492. }
  48493. },
  48494. },
  48495. [
  48496. {
  48497. name: "Normal",
  48498. height: math.unit(9 + 4/12, "feet"),
  48499. default: true
  48500. },
  48501. ]
  48502. ))
  48503. characterMakers.push(() => makeCharacter(
  48504. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48505. {
  48506. front: {
  48507. height: math.unit(3, "meters"),
  48508. name: "Front",
  48509. image: {
  48510. source: "./media/characters/amy/front.svg",
  48511. extra: 1380/1343,
  48512. bottom: 70/1450
  48513. }
  48514. },
  48515. back: {
  48516. height: math.unit(3, "meters"),
  48517. name: "Back",
  48518. image: {
  48519. source: "./media/characters/amy/back.svg",
  48520. extra: 1380/1347,
  48521. bottom: 66/1446
  48522. }
  48523. },
  48524. },
  48525. [
  48526. {
  48527. name: "Normal",
  48528. height: math.unit(3, "meters"),
  48529. default: true
  48530. },
  48531. ]
  48532. ))
  48533. characterMakers.push(() => makeCharacter(
  48534. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48535. {
  48536. side: {
  48537. height: math.unit(47, "cm"),
  48538. weight: math.unit(10.8, "kg"),
  48539. name: "Side",
  48540. image: {
  48541. source: "./media/characters/alphaschakal/side.svg",
  48542. extra: 1058/568,
  48543. bottom: 62/1120
  48544. }
  48545. },
  48546. back: {
  48547. height: math.unit(78, "cm"),
  48548. weight: math.unit(10.8, "kg"),
  48549. name: "Back",
  48550. image: {
  48551. source: "./media/characters/alphaschakal/back.svg",
  48552. extra: 1102/942,
  48553. bottom: 185/1287
  48554. }
  48555. },
  48556. head: {
  48557. height: math.unit(28, "cm"),
  48558. name: "Head",
  48559. image: {
  48560. source: "./media/characters/alphaschakal/head.svg",
  48561. extra: 696/508,
  48562. bottom: 0/696
  48563. }
  48564. },
  48565. paw: {
  48566. height: math.unit(16, "cm"),
  48567. name: "Paw",
  48568. image: {
  48569. source: "./media/characters/alphaschakal/paw.svg"
  48570. }
  48571. },
  48572. },
  48573. [
  48574. {
  48575. name: "Normal",
  48576. height: math.unit(47, "cm"),
  48577. default: true
  48578. },
  48579. {
  48580. name: "Macro",
  48581. height: math.unit(340, "cm")
  48582. },
  48583. ]
  48584. ))
  48585. characterMakers.push(() => makeCharacter(
  48586. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48587. {
  48588. front: {
  48589. height: math.unit(36, "earths"),
  48590. name: "Front",
  48591. image: {
  48592. source: "./media/characters/ecobyss/front.svg",
  48593. extra: 1282/1215,
  48594. bottom: 11/1293
  48595. }
  48596. },
  48597. back: {
  48598. height: math.unit(36, "earths"),
  48599. name: "Back",
  48600. image: {
  48601. source: "./media/characters/ecobyss/back.svg",
  48602. extra: 1291/1222,
  48603. bottom: 8/1299
  48604. }
  48605. },
  48606. },
  48607. [
  48608. {
  48609. name: "Normal",
  48610. height: math.unit(36, "earths"),
  48611. default: true
  48612. },
  48613. ]
  48614. ))
  48615. characterMakers.push(() => makeCharacter(
  48616. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48617. {
  48618. front: {
  48619. height: math.unit(12, "feet"),
  48620. name: "Front",
  48621. image: {
  48622. source: "./media/characters/vasuk/front.svg",
  48623. extra: 1326/1207,
  48624. bottom: 64/1390
  48625. }
  48626. },
  48627. },
  48628. [
  48629. {
  48630. name: "Normal",
  48631. height: math.unit(12, "feet"),
  48632. default: true
  48633. },
  48634. ]
  48635. ))
  48636. characterMakers.push(() => makeCharacter(
  48637. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48638. {
  48639. side: {
  48640. height: math.unit(100, "feet"),
  48641. name: "Side",
  48642. image: {
  48643. source: "./media/characters/linneaus/side.svg",
  48644. extra: 987/807,
  48645. bottom: 47/1034
  48646. }
  48647. },
  48648. },
  48649. [
  48650. {
  48651. name: "Macro",
  48652. height: math.unit(100, "feet"),
  48653. default: true
  48654. },
  48655. ]
  48656. ))
  48657. characterMakers.push(() => makeCharacter(
  48658. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48659. {
  48660. front: {
  48661. height: math.unit(8, "feet"),
  48662. weight: math.unit(1200, "lb"),
  48663. name: "Front",
  48664. image: {
  48665. source: "./media/characters/nyterious-daligdig/front.svg",
  48666. extra: 1284/1094,
  48667. bottom: 84/1368
  48668. }
  48669. },
  48670. back: {
  48671. height: math.unit(8, "feet"),
  48672. weight: math.unit(1200, "lb"),
  48673. name: "Back",
  48674. image: {
  48675. source: "./media/characters/nyterious-daligdig/back.svg",
  48676. extra: 1301/1121,
  48677. bottom: 129/1430
  48678. }
  48679. },
  48680. mouth: {
  48681. height: math.unit(1.464, "feet"),
  48682. name: "Mouth",
  48683. image: {
  48684. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48685. }
  48686. },
  48687. },
  48688. [
  48689. {
  48690. name: "Small",
  48691. height: math.unit(8, "feet"),
  48692. default: true
  48693. },
  48694. {
  48695. name: "Normal",
  48696. height: math.unit(15, "feet")
  48697. },
  48698. {
  48699. name: "Macro",
  48700. height: math.unit(90, "feet")
  48701. },
  48702. ]
  48703. ))
  48704. characterMakers.push(() => makeCharacter(
  48705. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48706. {
  48707. front: {
  48708. height: math.unit(7 + 4/12, "feet"),
  48709. weight: math.unit(252, "lb"),
  48710. name: "Front",
  48711. image: {
  48712. source: "./media/characters/bandel/front.svg",
  48713. extra: 1946/1775,
  48714. bottom: 26/1972
  48715. }
  48716. },
  48717. back: {
  48718. height: math.unit(7 + 4/12, "feet"),
  48719. weight: math.unit(252, "lb"),
  48720. name: "Back",
  48721. image: {
  48722. source: "./media/characters/bandel/back.svg",
  48723. extra: 1940/1770,
  48724. bottom: 25/1965
  48725. }
  48726. },
  48727. maw: {
  48728. height: math.unit(2.15, "feet"),
  48729. name: "Maw",
  48730. image: {
  48731. source: "./media/characters/bandel/maw.svg"
  48732. }
  48733. },
  48734. stomach: {
  48735. height: math.unit(1.95, "feet"),
  48736. name: "Stomach",
  48737. image: {
  48738. source: "./media/characters/bandel/stomach.svg"
  48739. }
  48740. },
  48741. },
  48742. [
  48743. {
  48744. name: "Normal",
  48745. height: math.unit(7 + 4/12, "feet"),
  48746. default: true
  48747. },
  48748. ]
  48749. ))
  48750. characterMakers.push(() => makeCharacter(
  48751. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48752. {
  48753. front: {
  48754. height: math.unit(10 + 5/12, "feet"),
  48755. weight: math.unit(773.5, "kg"),
  48756. name: "Front",
  48757. image: {
  48758. source: "./media/characters/zed/front.svg",
  48759. extra: 987/941,
  48760. bottom: 52/1039
  48761. }
  48762. },
  48763. },
  48764. [
  48765. {
  48766. name: "Short",
  48767. height: math.unit(5 + 4/12, "feet")
  48768. },
  48769. {
  48770. name: "Average",
  48771. height: math.unit(10 + 5/12, "feet"),
  48772. default: true
  48773. },
  48774. {
  48775. name: "Mini-Macro",
  48776. height: math.unit(24 + 9/12, "feet")
  48777. },
  48778. {
  48779. name: "Macro",
  48780. height: math.unit(249, "feet")
  48781. },
  48782. {
  48783. name: "Mega-Macro",
  48784. height: math.unit(12490, "feet")
  48785. },
  48786. {
  48787. name: "Giga-Macro",
  48788. height: math.unit(24.9, "miles")
  48789. },
  48790. {
  48791. name: "Tera-Macro",
  48792. height: math.unit(24900, "miles")
  48793. },
  48794. {
  48795. name: "Cosmic Scale",
  48796. height: math.unit(38.9, "lightyears")
  48797. },
  48798. {
  48799. name: "Universal Scale",
  48800. height: math.unit(138e12, "lightyears")
  48801. },
  48802. ]
  48803. ))
  48804. characterMakers.push(() => makeCharacter(
  48805. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48806. {
  48807. front: {
  48808. height: math.unit(1561, "inches"),
  48809. name: "Front",
  48810. image: {
  48811. source: "./media/characters/ivan/front.svg",
  48812. extra: 1126/1071,
  48813. bottom: 26/1152
  48814. }
  48815. },
  48816. back: {
  48817. height: math.unit(1561, "inches"),
  48818. name: "Back",
  48819. image: {
  48820. source: "./media/characters/ivan/back.svg",
  48821. extra: 1134/1079,
  48822. bottom: 30/1164
  48823. }
  48824. },
  48825. },
  48826. [
  48827. {
  48828. name: "Normal",
  48829. height: math.unit(1561, "inches"),
  48830. default: true
  48831. },
  48832. ]
  48833. ))
  48834. characterMakers.push(() => makeCharacter(
  48835. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48836. {
  48837. front: {
  48838. height: math.unit(5 + 7/12, "feet"),
  48839. weight: math.unit(150, "lb"),
  48840. name: "Front",
  48841. image: {
  48842. source: "./media/characters/robin-arctic-hare/front.svg",
  48843. extra: 1148/974,
  48844. bottom: 20/1168
  48845. }
  48846. },
  48847. },
  48848. [
  48849. {
  48850. name: "Normal",
  48851. height: math.unit(5 + 7/12, "feet"),
  48852. default: true
  48853. },
  48854. ]
  48855. ))
  48856. characterMakers.push(() => makeCharacter(
  48857. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48858. {
  48859. side: {
  48860. height: math.unit(5, "feet"),
  48861. name: "Side",
  48862. image: {
  48863. source: "./media/characters/birch/side.svg",
  48864. extra: 985/796,
  48865. bottom: 111/1096
  48866. }
  48867. },
  48868. },
  48869. [
  48870. {
  48871. name: "Normal",
  48872. height: math.unit(5, "feet"),
  48873. default: true
  48874. },
  48875. ]
  48876. ))
  48877. characterMakers.push(() => makeCharacter(
  48878. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48879. {
  48880. front: {
  48881. height: math.unit(4, "feet"),
  48882. name: "Front",
  48883. image: {
  48884. source: "./media/characters/rasp/front.svg",
  48885. extra: 561/478,
  48886. bottom: 74/635
  48887. }
  48888. },
  48889. },
  48890. [
  48891. {
  48892. name: "Normal",
  48893. height: math.unit(4, "feet"),
  48894. default: true
  48895. },
  48896. ]
  48897. ))
  48898. characterMakers.push(() => makeCharacter(
  48899. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48900. {
  48901. front: {
  48902. height: math.unit(4 + 6/12, "feet"),
  48903. name: "Front",
  48904. image: {
  48905. source: "./media/characters/agatha/front.svg",
  48906. extra: 947/933,
  48907. bottom: 42/989
  48908. }
  48909. },
  48910. back: {
  48911. height: math.unit(4 + 6/12, "feet"),
  48912. name: "Back",
  48913. image: {
  48914. source: "./media/characters/agatha/back.svg",
  48915. extra: 935/922,
  48916. bottom: 48/983
  48917. }
  48918. },
  48919. },
  48920. [
  48921. {
  48922. name: "Normal",
  48923. height: math.unit(4 + 6 /12, "feet"),
  48924. default: true
  48925. },
  48926. {
  48927. name: "Max Size",
  48928. height: math.unit(500, "feet")
  48929. },
  48930. ]
  48931. ))
  48932. characterMakers.push(() => makeCharacter(
  48933. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48934. {
  48935. side: {
  48936. height: math.unit(30, "feet"),
  48937. name: "Side",
  48938. image: {
  48939. source: "./media/characters/roggy/side.svg",
  48940. extra: 909/643,
  48941. bottom: 63/972
  48942. }
  48943. },
  48944. lounging: {
  48945. height: math.unit(20, "feet"),
  48946. name: "Lounging",
  48947. image: {
  48948. source: "./media/characters/roggy/lounging.svg",
  48949. extra: 643/479,
  48950. bottom: 145/788
  48951. }
  48952. },
  48953. handpaw: {
  48954. height: math.unit(13.1, "feet"),
  48955. name: "Handpaw",
  48956. image: {
  48957. source: "./media/characters/roggy/handpaw.svg"
  48958. }
  48959. },
  48960. footpaw: {
  48961. height: math.unit(15.8, "feet"),
  48962. name: "Footpaw",
  48963. image: {
  48964. source: "./media/characters/roggy/footpaw.svg"
  48965. }
  48966. },
  48967. },
  48968. [
  48969. {
  48970. name: "Menacing",
  48971. height: math.unit(30, "feet"),
  48972. default: true
  48973. },
  48974. ]
  48975. ))
  48976. characterMakers.push(() => makeCharacter(
  48977. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48978. {
  48979. front: {
  48980. height: math.unit(5 + 7/12, "feet"),
  48981. weight: math.unit(135, "lb"),
  48982. name: "Front",
  48983. image: {
  48984. source: "./media/characters/naomi/front.svg",
  48985. extra: 1209/1154,
  48986. bottom: 129/1338
  48987. }
  48988. },
  48989. back: {
  48990. height: math.unit(5 + 7/12, "feet"),
  48991. weight: math.unit(135, "lb"),
  48992. name: "Back",
  48993. image: {
  48994. source: "./media/characters/naomi/back.svg",
  48995. extra: 1252/1190,
  48996. bottom: 23/1275
  48997. }
  48998. },
  48999. },
  49000. [
  49001. {
  49002. name: "Normal",
  49003. height: math.unit(5 + 7 /12, "feet"),
  49004. default: true
  49005. },
  49006. ]
  49007. ))
  49008. characterMakers.push(() => makeCharacter(
  49009. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49010. {
  49011. side: {
  49012. height: math.unit(35, "meters"),
  49013. name: "Side",
  49014. image: {
  49015. source: "./media/characters/kimpi/side.svg",
  49016. extra: 419/382,
  49017. bottom: 63/482
  49018. }
  49019. },
  49020. hand: {
  49021. height: math.unit(8.96, "meters"),
  49022. name: "Hand",
  49023. image: {
  49024. source: "./media/characters/kimpi/hand.svg"
  49025. }
  49026. },
  49027. },
  49028. [
  49029. {
  49030. name: "Normal",
  49031. height: math.unit(35, "meters"),
  49032. default: true
  49033. },
  49034. ]
  49035. ))
  49036. characterMakers.push(() => makeCharacter(
  49037. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49038. {
  49039. front: {
  49040. height: math.unit(4 + 4/12, "feet"),
  49041. name: "Front",
  49042. image: {
  49043. source: "./media/characters/pepper-purrloin/front.svg",
  49044. extra: 1141/1024,
  49045. bottom: 21/1162
  49046. }
  49047. },
  49048. },
  49049. [
  49050. {
  49051. name: "Normal",
  49052. height: math.unit(4 + 4/12, "feet"),
  49053. default: true
  49054. },
  49055. ]
  49056. ))
  49057. characterMakers.push(() => makeCharacter(
  49058. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49059. {
  49060. front: {
  49061. height: math.unit(6 + 2/12, "feet"),
  49062. name: "Front",
  49063. image: {
  49064. source: "./media/characters/raphael/front.svg",
  49065. extra: 1101/962,
  49066. bottom: 59/1160
  49067. }
  49068. },
  49069. },
  49070. [
  49071. {
  49072. name: "Normal",
  49073. height: math.unit(6 + 2/12, "feet"),
  49074. default: true
  49075. },
  49076. ]
  49077. ))
  49078. characterMakers.push(() => makeCharacter(
  49079. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49080. {
  49081. front: {
  49082. height: math.unit(6, "feet"),
  49083. weight: math.unit(150, "lb"),
  49084. name: "Front",
  49085. image: {
  49086. source: "./media/characters/victor-williams/front.svg",
  49087. extra: 1894/1825,
  49088. bottom: 67/1961
  49089. }
  49090. },
  49091. },
  49092. [
  49093. {
  49094. name: "Normal",
  49095. height: math.unit(6, "feet"),
  49096. default: true
  49097. },
  49098. ]
  49099. ))
  49100. characterMakers.push(() => makeCharacter(
  49101. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49102. {
  49103. front: {
  49104. height: math.unit(5 + 8/12, "feet"),
  49105. weight: math.unit(150, "lb"),
  49106. name: "Front",
  49107. image: {
  49108. source: "./media/characters/rachel/front.svg",
  49109. extra: 1902/1787,
  49110. bottom: 46/1948
  49111. }
  49112. },
  49113. },
  49114. [
  49115. {
  49116. name: "Base Height",
  49117. height: math.unit(5 + 8/12, "feet"),
  49118. default: true
  49119. },
  49120. {
  49121. name: "Macro",
  49122. height: math.unit(200, "feet")
  49123. },
  49124. {
  49125. name: "Mega Macro",
  49126. height: math.unit(1, "mile")
  49127. },
  49128. {
  49129. name: "Giga Macro",
  49130. height: math.unit(1500, "miles")
  49131. },
  49132. {
  49133. name: "Tera Macro",
  49134. height: math.unit(8000, "miles")
  49135. },
  49136. {
  49137. name: "Tera Macro+",
  49138. height: math.unit(2e5, "miles")
  49139. },
  49140. ]
  49141. ))
  49142. characterMakers.push(() => makeCharacter(
  49143. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49144. {
  49145. front: {
  49146. height: math.unit(6.5, "feet"),
  49147. name: "Front",
  49148. image: {
  49149. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49150. extra: 860/819,
  49151. bottom: 307/1167
  49152. }
  49153. },
  49154. back: {
  49155. height: math.unit(6.5, "feet"),
  49156. name: "Back",
  49157. image: {
  49158. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49159. extra: 880/837,
  49160. bottom: 395/1275
  49161. }
  49162. },
  49163. sleeping: {
  49164. height: math.unit(2.79, "feet"),
  49165. name: "Sleeping",
  49166. image: {
  49167. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49168. extra: 465/383,
  49169. bottom: 263/728
  49170. }
  49171. },
  49172. maw: {
  49173. height: math.unit(2.52, "feet"),
  49174. name: "Maw",
  49175. image: {
  49176. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49177. }
  49178. },
  49179. },
  49180. [
  49181. {
  49182. name: "Normal",
  49183. height: math.unit(6.5, "feet"),
  49184. default: true
  49185. },
  49186. ]
  49187. ))
  49188. characterMakers.push(() => makeCharacter(
  49189. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49190. {
  49191. front: {
  49192. height: math.unit(5, "feet"),
  49193. name: "Front",
  49194. image: {
  49195. source: "./media/characters/nova-nerium/front.svg",
  49196. extra: 1548/1392,
  49197. bottom: 374/1922
  49198. }
  49199. },
  49200. back: {
  49201. height: math.unit(5, "feet"),
  49202. name: "Back",
  49203. image: {
  49204. source: "./media/characters/nova-nerium/back.svg",
  49205. extra: 1658/1468,
  49206. bottom: 257/1915
  49207. }
  49208. },
  49209. },
  49210. [
  49211. {
  49212. name: "Normal",
  49213. height: math.unit(5, "feet"),
  49214. default: true
  49215. },
  49216. ]
  49217. ))
  49218. characterMakers.push(() => makeCharacter(
  49219. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49220. {
  49221. front: {
  49222. height: math.unit(5 + 4/12, "feet"),
  49223. name: "Front",
  49224. image: {
  49225. source: "./media/characters/ashe-pyriph/front.svg",
  49226. extra: 1935/1747,
  49227. bottom: 60/1995
  49228. }
  49229. },
  49230. },
  49231. [
  49232. {
  49233. name: "Normal",
  49234. height: math.unit(5 + 4/12, "feet"),
  49235. default: true
  49236. },
  49237. ]
  49238. ))
  49239. characterMakers.push(() => makeCharacter(
  49240. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49241. {
  49242. front: {
  49243. height: math.unit(8.7, "feet"),
  49244. name: "Front",
  49245. image: {
  49246. source: "./media/characters/flicker-wisp/front.svg",
  49247. extra: 1835/1613,
  49248. bottom: 449/2284
  49249. }
  49250. },
  49251. side: {
  49252. height: math.unit(8.7, "feet"),
  49253. name: "Side",
  49254. image: {
  49255. source: "./media/characters/flicker-wisp/side.svg",
  49256. extra: 1841/1642,
  49257. bottom: 336/2177
  49258. },
  49259. default: true
  49260. },
  49261. maw: {
  49262. height: math.unit(3.35, "feet"),
  49263. name: "Maw",
  49264. image: {
  49265. source: "./media/characters/flicker-wisp/maw.svg",
  49266. extra: 2338/1506,
  49267. bottom: 0/2338
  49268. }
  49269. },
  49270. ovipositor: {
  49271. height: math.unit(4.95, "feet"),
  49272. name: "Ovipositor",
  49273. image: {
  49274. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49275. }
  49276. },
  49277. egg: {
  49278. height: math.unit(0.385, "feet"),
  49279. weight: math.unit(2, "lb"),
  49280. name: "Egg",
  49281. image: {
  49282. source: "./media/characters/flicker-wisp/egg.svg"
  49283. }
  49284. },
  49285. },
  49286. [
  49287. {
  49288. name: "Normal",
  49289. height: math.unit(8.7, "feet"),
  49290. default: true
  49291. },
  49292. ]
  49293. ))
  49294. characterMakers.push(() => makeCharacter(
  49295. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49296. {
  49297. side: {
  49298. height: math.unit(11, "feet"),
  49299. name: "Side",
  49300. image: {
  49301. source: "./media/characters/faefnul/side.svg",
  49302. extra: 1100/1007,
  49303. bottom: 0/1100
  49304. }
  49305. },
  49306. },
  49307. [
  49308. {
  49309. name: "Normal",
  49310. height: math.unit(11, "feet"),
  49311. default: true
  49312. },
  49313. ]
  49314. ))
  49315. characterMakers.push(() => makeCharacter(
  49316. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49317. {
  49318. front: {
  49319. height: math.unit(6 + 2/12, "feet"),
  49320. name: "Front",
  49321. image: {
  49322. source: "./media/characters/shady/front.svg",
  49323. extra: 502/461,
  49324. bottom: 9/511
  49325. }
  49326. },
  49327. kneeling: {
  49328. height: math.unit(4.6, "feet"),
  49329. name: "Kneeling",
  49330. image: {
  49331. source: "./media/characters/shady/kneeling.svg",
  49332. extra: 1328/1219,
  49333. bottom: 117/1445
  49334. }
  49335. },
  49336. maw: {
  49337. height: math.unit(2, "feet"),
  49338. name: "Maw",
  49339. image: {
  49340. source: "./media/characters/shady/maw.svg"
  49341. }
  49342. },
  49343. },
  49344. [
  49345. {
  49346. name: "Nano",
  49347. height: math.unit(1, "mm")
  49348. },
  49349. {
  49350. name: "Micro",
  49351. height: math.unit(12, "mm")
  49352. },
  49353. {
  49354. name: "Tiny",
  49355. height: math.unit(3, "inches")
  49356. },
  49357. {
  49358. name: "Normal",
  49359. height: math.unit(6 + 2/12, "feet"),
  49360. default: true
  49361. },
  49362. {
  49363. name: "Big",
  49364. height: math.unit(15, "feet")
  49365. },
  49366. {
  49367. name: "Macro",
  49368. height: math.unit(150, "feet")
  49369. },
  49370. {
  49371. name: "Titanic",
  49372. height: math.unit(500, "feet")
  49373. },
  49374. ]
  49375. ))
  49376. characterMakers.push(() => makeCharacter(
  49377. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49378. {
  49379. front: {
  49380. height: math.unit(12, "feet"),
  49381. name: "Front",
  49382. image: {
  49383. source: "./media/characters/fenrir/front.svg",
  49384. extra: 968/875,
  49385. bottom: 22/990
  49386. }
  49387. },
  49388. },
  49389. [
  49390. {
  49391. name: "Big",
  49392. height: math.unit(12, "feet"),
  49393. default: true
  49394. },
  49395. ]
  49396. ))
  49397. characterMakers.push(() => makeCharacter(
  49398. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49399. {
  49400. front: {
  49401. height: math.unit(5 + 4/12, "feet"),
  49402. name: "Front",
  49403. image: {
  49404. source: "./media/characters/makar/front.svg",
  49405. extra: 1181/1112,
  49406. bottom: 78/1259
  49407. }
  49408. },
  49409. },
  49410. [
  49411. {
  49412. name: "Normal",
  49413. height: math.unit(5 + 4/12, "feet"),
  49414. default: true
  49415. },
  49416. ]
  49417. ))
  49418. characterMakers.push(() => makeCharacter(
  49419. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49420. {
  49421. front: {
  49422. height: math.unit(5 + 7/12, "feet"),
  49423. name: "Front",
  49424. image: {
  49425. source: "./media/characters/callow/front.svg",
  49426. extra: 1482/1304,
  49427. bottom: 23/1505
  49428. }
  49429. },
  49430. back: {
  49431. height: math.unit(5 + 7/12, "feet"),
  49432. name: "Back",
  49433. image: {
  49434. source: "./media/characters/callow/back.svg",
  49435. extra: 1484/1296,
  49436. bottom: 25/1509
  49437. }
  49438. },
  49439. },
  49440. [
  49441. {
  49442. name: "Micro",
  49443. height: math.unit(3, "inches"),
  49444. default: true
  49445. },
  49446. {
  49447. name: "Normal",
  49448. height: math.unit(5 + 7/12, "feet")
  49449. },
  49450. ]
  49451. ))
  49452. characterMakers.push(() => makeCharacter(
  49453. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49454. {
  49455. front: {
  49456. height: math.unit(6 + 2/12, "feet"),
  49457. name: "Front",
  49458. image: {
  49459. source: "./media/characters/natel/front.svg",
  49460. extra: 1833/1692,
  49461. bottom: 166/1999
  49462. }
  49463. },
  49464. },
  49465. [
  49466. {
  49467. name: "Normal",
  49468. height: math.unit(6 + 2/12, "feet"),
  49469. default: true
  49470. },
  49471. ]
  49472. ))
  49473. characterMakers.push(() => makeCharacter(
  49474. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49475. {
  49476. front: {
  49477. height: math.unit(1.75, "meters"),
  49478. name: "Front",
  49479. image: {
  49480. source: "./media/characters/misu/front.svg",
  49481. extra: 1690/1558,
  49482. bottom: 234/1924
  49483. }
  49484. },
  49485. back: {
  49486. height: math.unit(1.75, "meters"),
  49487. name: "Back",
  49488. image: {
  49489. source: "./media/characters/misu/back.svg",
  49490. extra: 1762/1618,
  49491. bottom: 146/1908
  49492. }
  49493. },
  49494. frontNude: {
  49495. height: math.unit(1.75, "meters"),
  49496. name: "Front (Nude)",
  49497. image: {
  49498. source: "./media/characters/misu/front-nude.svg",
  49499. extra: 1690/1558,
  49500. bottom: 234/1924
  49501. }
  49502. },
  49503. backNude: {
  49504. height: math.unit(1.75, "meters"),
  49505. name: "Back (Nude)",
  49506. image: {
  49507. source: "./media/characters/misu/back-nude.svg",
  49508. extra: 1762/1618,
  49509. bottom: 146/1908
  49510. }
  49511. },
  49512. frontErect: {
  49513. height: math.unit(1.75, "meters"),
  49514. name: "Front (Erect)",
  49515. image: {
  49516. source: "./media/characters/misu/front-erect.svg",
  49517. extra: 1690/1558,
  49518. bottom: 234/1924
  49519. }
  49520. },
  49521. maw: {
  49522. height: math.unit(0.47, "meters"),
  49523. name: "Maw",
  49524. image: {
  49525. source: "./media/characters/misu/maw.svg"
  49526. }
  49527. },
  49528. head: {
  49529. height: math.unit(0.35, "meters"),
  49530. name: "Head",
  49531. image: {
  49532. source: "./media/characters/misu/head.svg"
  49533. }
  49534. },
  49535. rear: {
  49536. height: math.unit(0.47, "meters"),
  49537. name: "Rear",
  49538. image: {
  49539. source: "./media/characters/misu/rear.svg"
  49540. }
  49541. },
  49542. },
  49543. [
  49544. {
  49545. name: "Normal",
  49546. height: math.unit(1.75, "meters")
  49547. },
  49548. {
  49549. name: "Not good for the people",
  49550. height: math.unit(42, "meters")
  49551. },
  49552. {
  49553. name: "Not good for the neighborhood",
  49554. height: math.unit(135, "meters")
  49555. },
  49556. {
  49557. name: "Bit bigger problem",
  49558. height: math.unit(380, "meters"),
  49559. default: true
  49560. },
  49561. {
  49562. name: "Not good for the city",
  49563. height: math.unit(1.5, "km")
  49564. },
  49565. {
  49566. name: "Not good for the county",
  49567. height: math.unit(5.5, "km")
  49568. },
  49569. {
  49570. name: "Not good for the state",
  49571. height: math.unit(25, "km")
  49572. },
  49573. {
  49574. name: "Not good for the country",
  49575. height: math.unit(125, "km")
  49576. },
  49577. {
  49578. name: "Not good for the continent",
  49579. height: math.unit(2100, "km")
  49580. },
  49581. {
  49582. name: "Not good for the planet",
  49583. height: math.unit(35000, "km")
  49584. },
  49585. {
  49586. name: "Just no",
  49587. height: math.unit(8.5e18, "km")
  49588. },
  49589. ]
  49590. ))
  49591. characterMakers.push(() => makeCharacter(
  49592. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49593. {
  49594. front: {
  49595. height: math.unit(6.5, "feet"),
  49596. name: "Front",
  49597. image: {
  49598. source: "./media/characters/poppy/front.svg",
  49599. extra: 1878/1812,
  49600. bottom: 43/1921
  49601. }
  49602. },
  49603. feet: {
  49604. height: math.unit(1.06, "feet"),
  49605. name: "Feet",
  49606. image: {
  49607. source: "./media/characters/poppy/feet.svg",
  49608. extra: 1083/1083,
  49609. bottom: 87/1170
  49610. }
  49611. },
  49612. },
  49613. [
  49614. {
  49615. name: "Human",
  49616. height: math.unit(6.5, "feet")
  49617. },
  49618. {
  49619. name: "Default",
  49620. height: math.unit(300, "feet"),
  49621. default: true
  49622. },
  49623. {
  49624. name: "Huge",
  49625. height: math.unit(850, "feet")
  49626. },
  49627. {
  49628. name: "Mega",
  49629. height: math.unit(8000, "feet")
  49630. },
  49631. {
  49632. name: "Giga",
  49633. height: math.unit(300, "miles")
  49634. },
  49635. ]
  49636. ))
  49637. characterMakers.push(() => makeCharacter(
  49638. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49639. {
  49640. bipedal: {
  49641. height: math.unit(7, "feet"),
  49642. name: "Bipedal",
  49643. image: {
  49644. source: "./media/characters/zener/bipedal.svg",
  49645. extra: 874/805,
  49646. bottom: 109/983
  49647. }
  49648. },
  49649. quadrupedal: {
  49650. height: math.unit(4.64, "feet"),
  49651. name: "Quadrupedal",
  49652. image: {
  49653. source: "./media/characters/zener/quadrupedal.svg",
  49654. extra: 638/507,
  49655. bottom: 190/828
  49656. }
  49657. },
  49658. cock: {
  49659. height: math.unit(18, "inches"),
  49660. name: "Cock",
  49661. image: {
  49662. source: "./media/characters/zener/cock.svg"
  49663. }
  49664. },
  49665. },
  49666. [
  49667. {
  49668. name: "Normal",
  49669. height: math.unit(7, "feet"),
  49670. default: true
  49671. },
  49672. ]
  49673. ))
  49674. characterMakers.push(() => makeCharacter(
  49675. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49676. {
  49677. nude: {
  49678. height: math.unit(5 + 6/12, "feet"),
  49679. name: "Nude",
  49680. image: {
  49681. source: "./media/characters/charlie-dog/nude.svg",
  49682. extra: 768/734,
  49683. bottom: 26/794
  49684. }
  49685. },
  49686. dressed: {
  49687. height: math.unit(5 + 6/12, "feet"),
  49688. name: "Dressed",
  49689. image: {
  49690. source: "./media/characters/charlie-dog/dressed.svg",
  49691. extra: 768/734,
  49692. bottom: 26/794
  49693. }
  49694. },
  49695. },
  49696. [
  49697. {
  49698. name: "Normal",
  49699. height: math.unit(5 + 6/12, "feet"),
  49700. default: true
  49701. },
  49702. ]
  49703. ))
  49704. characterMakers.push(() => makeCharacter(
  49705. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49706. {
  49707. front: {
  49708. height: math.unit(6 + 4/12, "feet"),
  49709. name: "Front",
  49710. image: {
  49711. source: "./media/characters/ir'istrasz/front.svg",
  49712. extra: 1014/977,
  49713. bottom: 65/1079
  49714. }
  49715. },
  49716. back: {
  49717. height: math.unit(6 + 4/12, "feet"),
  49718. name: "Back",
  49719. image: {
  49720. source: "./media/characters/ir'istrasz/back.svg",
  49721. extra: 1024/992,
  49722. bottom: 34/1058
  49723. }
  49724. },
  49725. },
  49726. [
  49727. {
  49728. name: "Normal",
  49729. height: math.unit(6 + 4/12, "feet"),
  49730. default: true
  49731. },
  49732. ]
  49733. ))
  49734. characterMakers.push(() => makeCharacter(
  49735. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49736. {
  49737. front: {
  49738. height: math.unit(5 + 8/12, "feet"),
  49739. name: "Front",
  49740. image: {
  49741. source: "./media/characters/dee-ditto/front.svg",
  49742. extra: 1874/1785,
  49743. bottom: 68/1942
  49744. }
  49745. },
  49746. back: {
  49747. height: math.unit(5 + 8/12, "feet"),
  49748. name: "Back",
  49749. image: {
  49750. source: "./media/characters/dee-ditto/back.svg",
  49751. extra: 1870/1783,
  49752. bottom: 77/1947
  49753. }
  49754. },
  49755. },
  49756. [
  49757. {
  49758. name: "Normal",
  49759. height: math.unit(5 + 8/12, "feet"),
  49760. default: true
  49761. },
  49762. ]
  49763. ))
  49764. characterMakers.push(() => makeCharacter(
  49765. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49766. {
  49767. front: {
  49768. height: math.unit(7 + 6/12, "feet"),
  49769. name: "Front",
  49770. image: {
  49771. source: "./media/characters/fey/front.svg",
  49772. extra: 995/979,
  49773. bottom: 30/1025
  49774. }
  49775. },
  49776. back: {
  49777. height: math.unit(7 + 6/12, "feet"),
  49778. name: "Back",
  49779. image: {
  49780. source: "./media/characters/fey/back.svg",
  49781. extra: 1079/1008,
  49782. bottom: 5/1084
  49783. }
  49784. },
  49785. dressed: {
  49786. height: math.unit(7 + 6/12, "feet"),
  49787. name: "Dressed",
  49788. image: {
  49789. source: "./media/characters/fey/dressed.svg",
  49790. extra: 995/979,
  49791. bottom: 30/1025
  49792. }
  49793. },
  49794. },
  49795. [
  49796. {
  49797. name: "Normal",
  49798. height: math.unit(7 + 6/12, "feet"),
  49799. default: true
  49800. },
  49801. ]
  49802. ))
  49803. characterMakers.push(() => makeCharacter(
  49804. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49805. {
  49806. standing: {
  49807. height: math.unit(17, "feet"),
  49808. name: "Standing",
  49809. image: {
  49810. source: "./media/characters/aster/standing.svg",
  49811. extra: 1798/1598,
  49812. bottom: 117/1915
  49813. }
  49814. },
  49815. },
  49816. [
  49817. {
  49818. name: "Normal",
  49819. height: math.unit(17, "feet"),
  49820. default: true
  49821. },
  49822. {
  49823. name: "Homewrecker",
  49824. height: math.unit(95, "feet")
  49825. },
  49826. {
  49827. name: "Planet Devourer",
  49828. height: math.unit(1008000, "miles")
  49829. },
  49830. ]
  49831. ))
  49832. characterMakers.push(() => makeCharacter(
  49833. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49834. {
  49835. front: {
  49836. height: math.unit(6 + 5/12, "feet"),
  49837. weight: math.unit(265, "lb"),
  49838. name: "Front",
  49839. image: {
  49840. source: "./media/characters/devon-childs/front.svg",
  49841. extra: 1795/1721,
  49842. bottom: 41/1836
  49843. }
  49844. },
  49845. side: {
  49846. height: math.unit(6 + 5/12, "feet"),
  49847. weight: math.unit(265, "lb"),
  49848. name: "Side",
  49849. image: {
  49850. source: "./media/characters/devon-childs/side.svg",
  49851. extra: 1812/1738,
  49852. bottom: 30/1842
  49853. }
  49854. },
  49855. back: {
  49856. height: math.unit(6 + 5/12, "feet"),
  49857. weight: math.unit(265, "lb"),
  49858. name: "Back",
  49859. image: {
  49860. source: "./media/characters/devon-childs/back.svg",
  49861. extra: 1808/1735,
  49862. bottom: 23/1831
  49863. }
  49864. },
  49865. hand: {
  49866. height: math.unit(1.464, "feet"),
  49867. name: "Hand",
  49868. image: {
  49869. source: "./media/characters/devon-childs/hand.svg"
  49870. }
  49871. },
  49872. foot: {
  49873. height: math.unit(1.6, "feet"),
  49874. name: "Foot",
  49875. image: {
  49876. source: "./media/characters/devon-childs/foot.svg"
  49877. }
  49878. },
  49879. },
  49880. [
  49881. {
  49882. name: "Micro",
  49883. height: math.unit(7, "cm")
  49884. },
  49885. {
  49886. name: "Normal",
  49887. height: math.unit(6 + 5/12, "feet"),
  49888. default: true
  49889. },
  49890. {
  49891. name: "Macro",
  49892. height: math.unit(154, "feet")
  49893. },
  49894. ]
  49895. ))
  49896. characterMakers.push(() => makeCharacter(
  49897. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49898. {
  49899. front: {
  49900. height: math.unit(6, "feet"),
  49901. weight: math.unit(180, "lb"),
  49902. name: "Front",
  49903. image: {
  49904. source: "./media/characters/lydemox-vir/front.svg",
  49905. extra: 1632/1435,
  49906. bottom: 58/1690
  49907. }
  49908. },
  49909. frontSFW: {
  49910. height: math.unit(6, "feet"),
  49911. weight: math.unit(180, "lb"),
  49912. name: "Front (SFW)",
  49913. image: {
  49914. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49915. extra: 1632/1435,
  49916. bottom: 58/1690
  49917. }
  49918. },
  49919. back: {
  49920. height: math.unit(6, "feet"),
  49921. weight: math.unit(180, "lb"),
  49922. name: "Back",
  49923. image: {
  49924. source: "./media/characters/lydemox-vir/back.svg",
  49925. extra: 1593/1408,
  49926. bottom: 31/1624
  49927. }
  49928. },
  49929. paw: {
  49930. height: math.unit(1.85, "feet"),
  49931. name: "Paw",
  49932. image: {
  49933. source: "./media/characters/lydemox-vir/paw.svg"
  49934. }
  49935. },
  49936. dick: {
  49937. height: math.unit(1.8, "feet"),
  49938. name: "Dick",
  49939. image: {
  49940. source: "./media/characters/lydemox-vir/dick.svg"
  49941. }
  49942. },
  49943. },
  49944. [
  49945. {
  49946. name: "Macro",
  49947. height: math.unit(100, "feet"),
  49948. default: true
  49949. },
  49950. {
  49951. name: "Teramacro",
  49952. height: math.unit(1, "earth")
  49953. },
  49954. {
  49955. name: "Planetary",
  49956. height: math.unit(20, "earths")
  49957. },
  49958. ]
  49959. ))
  49960. characterMakers.push(() => makeCharacter(
  49961. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49962. {
  49963. front: {
  49964. height: math.unit(15 + 8/12, "feet"),
  49965. weight: math.unit(1237, "kg"),
  49966. name: "Front",
  49967. image: {
  49968. source: "./media/characters/mia/front.svg",
  49969. extra: 1573/1446,
  49970. bottom: 58/1631
  49971. }
  49972. },
  49973. },
  49974. [
  49975. {
  49976. name: "Small",
  49977. height: math.unit(9 + 5/12, "feet")
  49978. },
  49979. {
  49980. name: "Normal",
  49981. height: math.unit(15 + 8/12, "feet"),
  49982. default: true
  49983. },
  49984. ]
  49985. ))
  49986. characterMakers.push(() => makeCharacter(
  49987. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49988. {
  49989. front: {
  49990. height: math.unit(10 + 6/12, "feet"),
  49991. weight: math.unit(1.3, "tons"),
  49992. name: "Front",
  49993. image: {
  49994. source: "./media/characters/mr-graves/front.svg",
  49995. extra: 1779/1695,
  49996. bottom: 198/1977
  49997. }
  49998. },
  49999. },
  50000. [
  50001. {
  50002. name: "Normal",
  50003. height: math.unit(10 + 6 /12, "feet"),
  50004. default: true
  50005. },
  50006. ]
  50007. ))
  50008. characterMakers.push(() => makeCharacter(
  50009. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50010. {
  50011. dressedFront: {
  50012. height: math.unit(5 + 8/12, "feet"),
  50013. weight: math.unit(125, "lb"),
  50014. name: "Dressed (Front)",
  50015. image: {
  50016. source: "./media/characters/jess/dressed-front.svg",
  50017. extra: 1176/1152,
  50018. bottom: 42/1218
  50019. }
  50020. },
  50021. dressedSide: {
  50022. height: math.unit(5 + 8/12, "feet"),
  50023. weight: math.unit(125, "lb"),
  50024. name: "Dressed (Side)",
  50025. image: {
  50026. source: "./media/characters/jess/dressed-side.svg",
  50027. extra: 1204/1190,
  50028. bottom: 6/1210
  50029. }
  50030. },
  50031. nudeFront: {
  50032. height: math.unit(5 + 8/12, "feet"),
  50033. weight: math.unit(125, "lb"),
  50034. name: "Nude (Front)",
  50035. image: {
  50036. source: "./media/characters/jess/nude-front.svg",
  50037. extra: 1176/1152,
  50038. bottom: 42/1218
  50039. }
  50040. },
  50041. nudeSide: {
  50042. height: math.unit(5 + 8/12, "feet"),
  50043. weight: math.unit(125, "lb"),
  50044. name: "Nude (Side)",
  50045. image: {
  50046. source: "./media/characters/jess/nude-side.svg",
  50047. extra: 1204/1190,
  50048. bottom: 6/1210
  50049. }
  50050. },
  50051. organsFront: {
  50052. height: math.unit(2.83799342105, "feet"),
  50053. name: "Organs (Front)",
  50054. image: {
  50055. source: "./media/characters/jess/organs-front.svg"
  50056. }
  50057. },
  50058. organsSide: {
  50059. height: math.unit(2.64225290474, "feet"),
  50060. name: "Organs (Side)",
  50061. image: {
  50062. source: "./media/characters/jess/organs-side.svg"
  50063. }
  50064. },
  50065. digestiveTractFront: {
  50066. height: math.unit(2.8106580871, "feet"),
  50067. name: "Digestive Tract (Front)",
  50068. image: {
  50069. source: "./media/characters/jess/digestive-tract-front.svg"
  50070. }
  50071. },
  50072. digestiveTractSide: {
  50073. height: math.unit(2.54365045014, "feet"),
  50074. name: "Digestive Tract (Side)",
  50075. image: {
  50076. source: "./media/characters/jess/digestive-tract-side.svg"
  50077. }
  50078. },
  50079. respiratorySystemFront: {
  50080. height: math.unit(1.11196233456, "feet"),
  50081. name: "Respiratory System (Front)",
  50082. image: {
  50083. source: "./media/characters/jess/respiratory-system-front.svg"
  50084. }
  50085. },
  50086. respiratorySystemSide: {
  50087. height: math.unit(0.89327966297, "feet"),
  50088. name: "Respiratory System (Side)",
  50089. image: {
  50090. source: "./media/characters/jess/respiratory-system-side.svg"
  50091. }
  50092. },
  50093. urinaryTractFront: {
  50094. height: math.unit(1.16126356186, "feet"),
  50095. name: "Urinary Tract (Front)",
  50096. image: {
  50097. source: "./media/characters/jess/urinary-tract-front.svg"
  50098. }
  50099. },
  50100. urinaryTractSide: {
  50101. height: math.unit(1.20910039627, "feet"),
  50102. name: "Urinary Tract (Side)",
  50103. image: {
  50104. source: "./media/characters/jess/urinary-tract-side.svg"
  50105. }
  50106. },
  50107. reproductiveOrgansFront: {
  50108. height: math.unit(0.48422591566, "feet"),
  50109. name: "Reproductive Organs (Front)",
  50110. image: {
  50111. source: "./media/characters/jess/reproductive-organs-front.svg"
  50112. }
  50113. },
  50114. reproductiveOrgansSide: {
  50115. height: math.unit(0.61553314481, "feet"),
  50116. name: "Reproductive Organs (Side)",
  50117. image: {
  50118. source: "./media/characters/jess/reproductive-organs-side.svg"
  50119. }
  50120. },
  50121. breastsFront: {
  50122. height: math.unit(0.47690395121, "feet"),
  50123. name: "Breasts (Front)",
  50124. image: {
  50125. source: "./media/characters/jess/breasts-front.svg"
  50126. }
  50127. },
  50128. breastsSide: {
  50129. height: math.unit(0.30556998307, "feet"),
  50130. name: "Breasts (Side)",
  50131. image: {
  50132. source: "./media/characters/jess/breasts-side.svg"
  50133. }
  50134. },
  50135. heartFront: {
  50136. height: math.unit(0.53011022622, "feet"),
  50137. name: "Heart (Front)",
  50138. image: {
  50139. source: "./media/characters/jess/heart-front.svg"
  50140. }
  50141. },
  50142. heartSide: {
  50143. height: math.unit(0.51790695213, "feet"),
  50144. name: "Heart (Side)",
  50145. image: {
  50146. source: "./media/characters/jess/heart-side.svg"
  50147. }
  50148. },
  50149. earsAndNoseFront: {
  50150. height: math.unit(0.29385483995, "feet"),
  50151. name: "Ears and Nose (Front)",
  50152. image: {
  50153. source: "./media/characters/jess/ears-and-nose-front.svg"
  50154. }
  50155. },
  50156. earsAndNoseSide: {
  50157. height: math.unit(0.18109658741, "feet"),
  50158. name: "Ears and Nose (Side)",
  50159. image: {
  50160. source: "./media/characters/jess/ears-and-nose-side.svg"
  50161. }
  50162. },
  50163. },
  50164. [
  50165. {
  50166. name: "Normal",
  50167. height: math.unit(5 + 8/12, "feet"),
  50168. default: true
  50169. },
  50170. ]
  50171. ))
  50172. characterMakers.push(() => makeCharacter(
  50173. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50174. {
  50175. front: {
  50176. height: math.unit(6, "feet"),
  50177. weight: math.unit(6.64467e-7, "grams"),
  50178. name: "Front",
  50179. image: {
  50180. source: "./media/characters/wimpering/front.svg",
  50181. extra: 597/587,
  50182. bottom: 34/631
  50183. }
  50184. },
  50185. },
  50186. [
  50187. {
  50188. name: "Micro",
  50189. height: math.unit(0.4, "mm"),
  50190. default: true
  50191. },
  50192. ]
  50193. ))
  50194. characterMakers.push(() => makeCharacter(
  50195. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50196. {
  50197. front: {
  50198. height: math.unit(5 + 2/12, "feet"),
  50199. weight: math.unit(110, "lb"),
  50200. name: "Front",
  50201. image: {
  50202. source: "./media/characters/keltre/front.svg",
  50203. extra: 1099/1057,
  50204. bottom: 22/1121
  50205. }
  50206. },
  50207. back: {
  50208. height: math.unit(5 + 2/12, "feet"),
  50209. weight: math.unit(110, "lb"),
  50210. name: "Back",
  50211. image: {
  50212. source: "./media/characters/keltre/back.svg",
  50213. extra: 1095/1053,
  50214. bottom: 17/1112
  50215. }
  50216. },
  50217. dressed: {
  50218. height: math.unit(5 + 2/12, "feet"),
  50219. weight: math.unit(110, "lb"),
  50220. name: "Dressed",
  50221. image: {
  50222. source: "./media/characters/keltre/dressed.svg",
  50223. extra: 1099/1057,
  50224. bottom: 22/1121
  50225. }
  50226. },
  50227. winter: {
  50228. height: math.unit(5 + 2/12, "feet"),
  50229. weight: math.unit(110, "lb"),
  50230. name: "Winter",
  50231. image: {
  50232. source: "./media/characters/keltre/winter.svg",
  50233. extra: 1099/1057,
  50234. bottom: 22/1121
  50235. }
  50236. },
  50237. head: {
  50238. height: math.unit(1.61 * 0.86, "feet"),
  50239. name: "Head",
  50240. image: {
  50241. source: "./media/characters/keltre/head.svg",
  50242. extra: 534/421,
  50243. bottom: 0/534
  50244. }
  50245. },
  50246. hand: {
  50247. height: math.unit(1.3 * 0.86, "feet"),
  50248. name: "Hand",
  50249. image: {
  50250. source: "./media/characters/keltre/hand.svg"
  50251. }
  50252. },
  50253. foot: {
  50254. height: math.unit(1.8 * 0.86, "feet"),
  50255. name: "Foot",
  50256. image: {
  50257. source: "./media/characters/keltre/foot.svg"
  50258. }
  50259. },
  50260. },
  50261. [
  50262. {
  50263. name: "Fine",
  50264. height: math.unit(1, "inch")
  50265. },
  50266. {
  50267. name: "Dimnutive",
  50268. height: math.unit(4, "inches")
  50269. },
  50270. {
  50271. name: "Tiny",
  50272. height: math.unit(1, "foot")
  50273. },
  50274. {
  50275. name: "Small",
  50276. height: math.unit(3, "feet")
  50277. },
  50278. {
  50279. name: "Normal",
  50280. height: math.unit(5 + 2/12, "feet"),
  50281. default: true
  50282. },
  50283. ]
  50284. ))
  50285. characterMakers.push(() => makeCharacter(
  50286. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50287. {
  50288. front: {
  50289. height: math.unit(6 + 2/12, "feet"),
  50290. name: "Front",
  50291. image: {
  50292. source: "./media/characters/nox/front.svg",
  50293. extra: 1917/1830,
  50294. bottom: 74/1991
  50295. }
  50296. },
  50297. back: {
  50298. height: math.unit(6 + 2/12, "feet"),
  50299. name: "Back",
  50300. image: {
  50301. source: "./media/characters/nox/back.svg",
  50302. extra: 1896/1815,
  50303. bottom: 21/1917
  50304. }
  50305. },
  50306. head: {
  50307. height: math.unit(1.1, "feet"),
  50308. name: "Head",
  50309. image: {
  50310. source: "./media/characters/nox/head.svg",
  50311. extra: 874/704,
  50312. bottom: 0/874
  50313. }
  50314. },
  50315. tattoo: {
  50316. height: math.unit(0.729, "feet"),
  50317. name: "Tattoo",
  50318. image: {
  50319. source: "./media/characters/nox/tattoo.svg"
  50320. }
  50321. },
  50322. },
  50323. [
  50324. {
  50325. name: "Normal",
  50326. height: math.unit(6 + 2/12, "feet")
  50327. },
  50328. {
  50329. name: "Gigamacro",
  50330. height: math.unit(2, "earths"),
  50331. default: true
  50332. },
  50333. {
  50334. name: "Cosmic",
  50335. height: math.unit(867, "yottameters")
  50336. },
  50337. ]
  50338. ))
  50339. characterMakers.push(() => makeCharacter(
  50340. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50341. {
  50342. front: {
  50343. height: math.unit(6, "feet"),
  50344. weight: math.unit(150, "lb"),
  50345. name: "Front",
  50346. image: {
  50347. source: "./media/characters/caspian/front.svg",
  50348. extra: 1443/1359,
  50349. bottom: 0/1443
  50350. }
  50351. },
  50352. back: {
  50353. height: math.unit(6, "feet"),
  50354. weight: math.unit(150, "lb"),
  50355. name: "Back",
  50356. image: {
  50357. source: "./media/characters/caspian/back.svg",
  50358. extra: 1379/1309,
  50359. bottom: 0/1379
  50360. }
  50361. },
  50362. head: {
  50363. height: math.unit(0.9, "feet"),
  50364. name: "Head",
  50365. image: {
  50366. source: "./media/characters/caspian/head.svg",
  50367. extra: 692/492,
  50368. bottom: 0/692
  50369. }
  50370. },
  50371. headAlt: {
  50372. height: math.unit(0.95, "feet"),
  50373. name: "Head (Alt)",
  50374. image: {
  50375. source: "./media/characters/caspian/head-alt.svg",
  50376. extra: 668/508,
  50377. bottom: 0/668
  50378. }
  50379. },
  50380. hand: {
  50381. height: math.unit(0.8, "feet"),
  50382. name: "Hand",
  50383. image: {
  50384. source: "./media/characters/caspian/hand.svg"
  50385. }
  50386. },
  50387. paw: {
  50388. height: math.unit(0.95, "feet"),
  50389. name: "Paw",
  50390. image: {
  50391. source: "./media/characters/caspian/paw.svg"
  50392. }
  50393. },
  50394. },
  50395. [
  50396. {
  50397. name: "Normal",
  50398. height: math.unit(162, "feet"),
  50399. default: true
  50400. },
  50401. ]
  50402. ))
  50403. characterMakers.push(() => makeCharacter(
  50404. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50405. {
  50406. front: {
  50407. height: math.unit(6, "feet"),
  50408. name: "Front",
  50409. image: {
  50410. source: "./media/characters/myra-aisling/front.svg",
  50411. extra: 1268/1166,
  50412. bottom: 73/1341
  50413. }
  50414. },
  50415. back: {
  50416. height: math.unit(6, "feet"),
  50417. name: "Back",
  50418. image: {
  50419. source: "./media/characters/myra-aisling/back.svg",
  50420. extra: 1249/1149,
  50421. bottom: 79/1328
  50422. }
  50423. },
  50424. dressed: {
  50425. height: math.unit(6, "feet"),
  50426. name: "Dressed",
  50427. image: {
  50428. source: "./media/characters/myra-aisling/dressed.svg",
  50429. extra: 1290/1189,
  50430. bottom: 47/1337
  50431. }
  50432. },
  50433. hand: {
  50434. height: math.unit(1.1, "feet"),
  50435. name: "Hand",
  50436. image: {
  50437. source: "./media/characters/myra-aisling/hand.svg"
  50438. }
  50439. },
  50440. paw: {
  50441. height: math.unit(1.23, "feet"),
  50442. name: "Paw",
  50443. image: {
  50444. source: "./media/characters/myra-aisling/paw.svg"
  50445. }
  50446. },
  50447. },
  50448. [
  50449. {
  50450. name: "Normal",
  50451. height: math.unit(160, "feet"),
  50452. default: true
  50453. },
  50454. ]
  50455. ))
  50456. characterMakers.push(() => makeCharacter(
  50457. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50458. {
  50459. front: {
  50460. height: math.unit(6, "feet"),
  50461. name: "Front",
  50462. image: {
  50463. source: "./media/characters/tenley-sidero/front.svg",
  50464. extra: 1365/1276,
  50465. bottom: 47/1412
  50466. }
  50467. },
  50468. back: {
  50469. height: math.unit(6, "feet"),
  50470. name: "Back",
  50471. image: {
  50472. source: "./media/characters/tenley-sidero/back.svg",
  50473. extra: 1383/1283,
  50474. bottom: 35/1418
  50475. }
  50476. },
  50477. dressed: {
  50478. height: math.unit(6, "feet"),
  50479. name: "Dressed",
  50480. image: {
  50481. source: "./media/characters/tenley-sidero/dressed.svg",
  50482. extra: 1364/1275,
  50483. bottom: 42/1406
  50484. }
  50485. },
  50486. head: {
  50487. height: math.unit(1.47, "feet"),
  50488. name: "Head",
  50489. image: {
  50490. source: "./media/characters/tenley-sidero/head.svg",
  50491. extra: 610/490,
  50492. bottom: 0/610
  50493. }
  50494. },
  50495. },
  50496. [
  50497. {
  50498. name: "Normal",
  50499. height: math.unit(154, "feet"),
  50500. default: true
  50501. },
  50502. ]
  50503. ))
  50504. characterMakers.push(() => makeCharacter(
  50505. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50506. {
  50507. front: {
  50508. height: math.unit(5, "inches"),
  50509. name: "Front",
  50510. image: {
  50511. source: "./media/characters/mallory/front.svg",
  50512. extra: 1919/1678,
  50513. bottom: 29/1948
  50514. }
  50515. },
  50516. hand: {
  50517. height: math.unit(0.73, "inches"),
  50518. name: "Hand",
  50519. image: {
  50520. source: "./media/characters/mallory/hand.svg"
  50521. }
  50522. },
  50523. paw: {
  50524. height: math.unit(0.68, "inches"),
  50525. name: "Paw",
  50526. image: {
  50527. source: "./media/characters/mallory/paw.svg"
  50528. }
  50529. },
  50530. },
  50531. [
  50532. {
  50533. name: "Small",
  50534. height: math.unit(5, "inches"),
  50535. default: true
  50536. },
  50537. ]
  50538. ))
  50539. characterMakers.push(() => makeCharacter(
  50540. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50541. {
  50542. naked: {
  50543. height: math.unit(6, "feet"),
  50544. name: "Naked",
  50545. image: {
  50546. source: "./media/characters/mab/naked.svg",
  50547. extra: 1855/1757,
  50548. bottom: 208/2063
  50549. }
  50550. },
  50551. outside: {
  50552. height: math.unit(6, "feet"),
  50553. name: "Outside",
  50554. image: {
  50555. source: "./media/characters/mab/outside.svg",
  50556. extra: 1855/1757,
  50557. bottom: 208/2063
  50558. }
  50559. },
  50560. party: {
  50561. height: math.unit(6, "feet"),
  50562. name: "Party",
  50563. image: {
  50564. source: "./media/characters/mab/party.svg",
  50565. extra: 1855/1757,
  50566. bottom: 208/2063
  50567. }
  50568. },
  50569. },
  50570. [
  50571. {
  50572. name: "Normal",
  50573. height: math.unit(165, "feet"),
  50574. default: true
  50575. },
  50576. ]
  50577. ))
  50578. characterMakers.push(() => makeCharacter(
  50579. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50580. {
  50581. feral: {
  50582. height: math.unit(12, "feet"),
  50583. weight: math.unit(20000, "lb"),
  50584. name: "Side",
  50585. image: {
  50586. source: "./media/characters/winter/feral.svg",
  50587. extra: 1286/943,
  50588. bottom: 112/1398
  50589. },
  50590. form: "feral",
  50591. default: true
  50592. },
  50593. feralNsfw: {
  50594. height: math.unit(12, "feet"),
  50595. weight: math.unit(20000, "lb"),
  50596. name: "Side (NSFW)",
  50597. image: {
  50598. source: "./media/characters/winter/feral-nsfw.svg",
  50599. extra: 1286/943,
  50600. bottom: 112/1398
  50601. },
  50602. form: "feral"
  50603. },
  50604. dick: {
  50605. height: math.unit(3.79, "feet"),
  50606. name: "Dick",
  50607. image: {
  50608. source: "./media/characters/winter/dick.svg"
  50609. },
  50610. form: "feral"
  50611. },
  50612. anthro: {
  50613. height: math.unit(12, "feet"),
  50614. weight: math.unit(10, "tons"),
  50615. name: "Anthro",
  50616. image: {
  50617. source: "./media/characters/winter/anthro.svg",
  50618. extra: 1701/1553,
  50619. bottom: 64/1765
  50620. },
  50621. form: "anthro",
  50622. default: true
  50623. },
  50624. },
  50625. [
  50626. {
  50627. name: "Big",
  50628. height: math.unit(12, "feet"),
  50629. default: true,
  50630. form: "feral"
  50631. },
  50632. {
  50633. name: "Big",
  50634. height: math.unit(12, "feet"),
  50635. default: true,
  50636. form: "anthro"
  50637. },
  50638. ],
  50639. {
  50640. "feral": {
  50641. name: "Feral",
  50642. default: true
  50643. },
  50644. "anthro": {
  50645. name: "Anthro"
  50646. }
  50647. }
  50648. ))
  50649. characterMakers.push(() => makeCharacter(
  50650. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50651. {
  50652. front: {
  50653. height: math.unit(4.1, "inches"),
  50654. name: "Front",
  50655. image: {
  50656. source: "./media/characters/alto/front.svg",
  50657. extra: 736/627,
  50658. bottom: 90/826
  50659. }
  50660. },
  50661. },
  50662. [
  50663. {
  50664. name: "Normal",
  50665. height: math.unit(4.1, "inches"),
  50666. default: true
  50667. },
  50668. ]
  50669. ))
  50670. characterMakers.push(() => makeCharacter(
  50671. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50672. {
  50673. sitting: {
  50674. height: math.unit(3, "feet"),
  50675. name: "Sitting",
  50676. image: {
  50677. source: "./media/characters/ratstrid-v/sitting.svg",
  50678. extra: 355/310,
  50679. bottom: 136/491
  50680. }
  50681. },
  50682. },
  50683. [
  50684. {
  50685. name: "Normal",
  50686. height: math.unit(3, "feet"),
  50687. default: true
  50688. },
  50689. ]
  50690. ))
  50691. characterMakers.push(() => makeCharacter(
  50692. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50693. {
  50694. back: {
  50695. height: math.unit(6, "feet"),
  50696. weight: math.unit(450, "lb"),
  50697. name: "Back",
  50698. image: {
  50699. source: "./media/characters/siz/back.svg",
  50700. extra: 1449/1274,
  50701. bottom: 13/1462
  50702. }
  50703. },
  50704. },
  50705. [
  50706. {
  50707. name: "Smallest",
  50708. height: math.unit(18 + 3/12, "feet")
  50709. },
  50710. {
  50711. name: "Modest",
  50712. height: math.unit(56 + 8/12, "feet"),
  50713. default: true
  50714. },
  50715. {
  50716. name: "Largest",
  50717. height: math.unit(3590, "feet")
  50718. },
  50719. ]
  50720. ))
  50721. characterMakers.push(() => makeCharacter(
  50722. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50723. {
  50724. front: {
  50725. height: math.unit(5 + 9/12, "feet"),
  50726. weight: math.unit(150, "lb"),
  50727. name: "Front",
  50728. image: {
  50729. source: "./media/characters/ven/front.svg",
  50730. extra: 1372/1320,
  50731. bottom: 73/1445
  50732. }
  50733. },
  50734. side: {
  50735. height: math.unit(5 + 9/12, "feet"),
  50736. weight: math.unit(1150, "lb"),
  50737. name: "Side",
  50738. image: {
  50739. source: "./media/characters/ven/side.svg",
  50740. extra: 1119/1070,
  50741. bottom: 42/1161
  50742. },
  50743. default: true
  50744. },
  50745. },
  50746. [
  50747. {
  50748. name: "Normal",
  50749. height: math.unit(5 + 9/12, "feet"),
  50750. default: true
  50751. },
  50752. ]
  50753. ))
  50754. characterMakers.push(() => makeCharacter(
  50755. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50756. {
  50757. front: {
  50758. height: math.unit(12, "feet"),
  50759. weight: math.unit(1000, "kg"),
  50760. name: "Front",
  50761. image: {
  50762. source: "./media/characters/maple/front.svg",
  50763. extra: 1193/1081,
  50764. bottom: 22/1215
  50765. }
  50766. },
  50767. },
  50768. [
  50769. {
  50770. name: "Compressed",
  50771. height: math.unit(7, "feet")
  50772. },
  50773. {
  50774. name: "Normal",
  50775. height: math.unit(12, "feet"),
  50776. default: true
  50777. },
  50778. ]
  50779. ))
  50780. characterMakers.push(() => makeCharacter(
  50781. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50782. {
  50783. front: {
  50784. height: math.unit(9, "feet"),
  50785. weight: math.unit(1500, "lb"),
  50786. name: "Front",
  50787. image: {
  50788. source: "./media/characters/nora/front.svg",
  50789. extra: 1348/1286,
  50790. bottom: 218/1566
  50791. }
  50792. },
  50793. erect: {
  50794. height: math.unit(9, "feet"),
  50795. weight: math.unit(11500, "lb"),
  50796. name: "Erect",
  50797. image: {
  50798. source: "./media/characters/nora/erect.svg",
  50799. extra: 1488/1433,
  50800. bottom: 133/1621
  50801. }
  50802. },
  50803. },
  50804. [
  50805. {
  50806. name: "Normal",
  50807. height: math.unit(9, "feet"),
  50808. default: true
  50809. },
  50810. ]
  50811. ))
  50812. characterMakers.push(() => makeCharacter(
  50813. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50814. {
  50815. front: {
  50816. height: math.unit(25, "feet"),
  50817. weight: math.unit(27500, "lb"),
  50818. name: "Front",
  50819. image: {
  50820. source: "./media/characters/north-caudin/front.svg",
  50821. extra: 1184/1082,
  50822. bottom: 23/1207
  50823. }
  50824. },
  50825. },
  50826. [
  50827. {
  50828. name: "Compressed",
  50829. height: math.unit(10, "feet")
  50830. },
  50831. {
  50832. name: "Normal",
  50833. height: math.unit(25, "feet"),
  50834. default: true
  50835. },
  50836. ]
  50837. ))
  50838. characterMakers.push(() => makeCharacter(
  50839. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50840. {
  50841. front: {
  50842. height: math.unit(9, "feet"),
  50843. weight: math.unit(1250, "lb"),
  50844. name: "Front",
  50845. image: {
  50846. source: "./media/characters/merrian/front.svg",
  50847. extra: 2393/2304,
  50848. bottom: 40/2433
  50849. }
  50850. },
  50851. },
  50852. [
  50853. {
  50854. name: "Normal",
  50855. height: math.unit(9, "feet"),
  50856. default: true
  50857. },
  50858. ]
  50859. ))
  50860. characterMakers.push(() => makeCharacter(
  50861. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50862. {
  50863. front: {
  50864. height: math.unit(9, "feet"),
  50865. weight: math.unit(1000, "lb"),
  50866. name: "Front",
  50867. image: {
  50868. source: "./media/characters/hazel/front.svg",
  50869. extra: 2351/2298,
  50870. bottom: 38/2389
  50871. }
  50872. },
  50873. },
  50874. [
  50875. {
  50876. name: "Normal",
  50877. height: math.unit(9, "feet"),
  50878. default: true
  50879. },
  50880. ]
  50881. ))
  50882. characterMakers.push(() => makeCharacter(
  50883. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50884. {
  50885. front: {
  50886. height: math.unit(13, "feet"),
  50887. weight: math.unit(3200, "lb"),
  50888. name: "Front",
  50889. image: {
  50890. source: "./media/characters/emma/front.svg",
  50891. extra: 2263/2029,
  50892. bottom: 68/2331
  50893. }
  50894. },
  50895. },
  50896. [
  50897. {
  50898. name: "Normal",
  50899. height: math.unit(13, "feet"),
  50900. default: true
  50901. },
  50902. ]
  50903. ))
  50904. characterMakers.push(() => makeCharacter(
  50905. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50906. {
  50907. front: {
  50908. height: math.unit(11 + 9/12, "feet"),
  50909. weight: math.unit(2500, "lb"),
  50910. name: "Front",
  50911. image: {
  50912. source: "./media/characters/ilumina/front.svg",
  50913. extra: 2248/2209,
  50914. bottom: 164/2412
  50915. }
  50916. },
  50917. },
  50918. [
  50919. {
  50920. name: "Normal",
  50921. height: math.unit(11 + 9/12, "feet"),
  50922. default: true
  50923. },
  50924. ]
  50925. ))
  50926. characterMakers.push(() => makeCharacter(
  50927. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50928. {
  50929. front: {
  50930. height: math.unit(8 + 10/12, "feet"),
  50931. weight: math.unit(1350, "lb"),
  50932. name: "Front",
  50933. image: {
  50934. source: "./media/characters/moonshine/front.svg",
  50935. extra: 2395/2288,
  50936. bottom: 40/2435
  50937. }
  50938. },
  50939. },
  50940. [
  50941. {
  50942. name: "Normal",
  50943. height: math.unit(8 + 10/12, "feet"),
  50944. default: true
  50945. },
  50946. ]
  50947. ))
  50948. characterMakers.push(() => makeCharacter(
  50949. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50950. {
  50951. front: {
  50952. height: math.unit(14, "feet"),
  50953. weight: math.unit(3400, "lb"),
  50954. name: "Front",
  50955. image: {
  50956. source: "./media/characters/aletia/front.svg",
  50957. extra: 1185/1052,
  50958. bottom: 21/1206
  50959. }
  50960. },
  50961. },
  50962. [
  50963. {
  50964. name: "Compressed",
  50965. height: math.unit(8, "feet")
  50966. },
  50967. {
  50968. name: "Normal",
  50969. height: math.unit(14, "feet"),
  50970. default: true
  50971. },
  50972. ]
  50973. ))
  50974. characterMakers.push(() => makeCharacter(
  50975. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50976. {
  50977. front: {
  50978. height: math.unit(17, "feet"),
  50979. weight: math.unit(6500, "lb"),
  50980. name: "Front",
  50981. image: {
  50982. source: "./media/characters/deidra/front.svg",
  50983. extra: 1201/1081,
  50984. bottom: 16/1217
  50985. }
  50986. },
  50987. },
  50988. [
  50989. {
  50990. name: "Compressed",
  50991. height: math.unit(9 + 6/12, "feet")
  50992. },
  50993. {
  50994. name: "Normal",
  50995. height: math.unit(17, "feet"),
  50996. default: true
  50997. },
  50998. ]
  50999. ))
  51000. characterMakers.push(() => makeCharacter(
  51001. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51002. {
  51003. front: {
  51004. height: math.unit(7 + 4/12, "feet"),
  51005. weight: math.unit(280, "lb"),
  51006. name: "Front",
  51007. image: {
  51008. source: "./media/characters/freki-yrmori/front.svg",
  51009. extra: 1286/1182,
  51010. bottom: 29/1315
  51011. }
  51012. },
  51013. maw: {
  51014. height: math.unit(0.9, "feet"),
  51015. name: "Maw",
  51016. image: {
  51017. source: "./media/characters/freki-yrmori/maw.svg"
  51018. }
  51019. },
  51020. },
  51021. [
  51022. {
  51023. name: "Normal",
  51024. height: math.unit(7 + 4/12, "feet"),
  51025. default: true
  51026. },
  51027. {
  51028. name: "Macro",
  51029. height: math.unit(38.5, "meters")
  51030. },
  51031. ]
  51032. ))
  51033. characterMakers.push(() => makeCharacter(
  51034. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51035. {
  51036. side: {
  51037. height: math.unit(47.2, "meters"),
  51038. weight: math.unit(10000, "tons"),
  51039. name: "Side",
  51040. image: {
  51041. source: "./media/characters/aetherios/side.svg",
  51042. extra: 2363/642,
  51043. bottom: 221/2584
  51044. }
  51045. },
  51046. top: {
  51047. height: math.unit(240, "meters"),
  51048. weight: math.unit(10000, "tons"),
  51049. name: "Top",
  51050. image: {
  51051. source: "./media/characters/aetherios/top.svg"
  51052. }
  51053. },
  51054. bottom: {
  51055. height: math.unit(240, "meters"),
  51056. weight: math.unit(10000, "tons"),
  51057. name: "Bottom",
  51058. image: {
  51059. source: "./media/characters/aetherios/bottom.svg"
  51060. }
  51061. },
  51062. head: {
  51063. height: math.unit(38.6, "meters"),
  51064. name: "Head",
  51065. image: {
  51066. source: "./media/characters/aetherios/head.svg",
  51067. extra: 1335/1112,
  51068. bottom: 0/1335
  51069. }
  51070. },
  51071. front: {
  51072. height: math.unit(29, "meters"),
  51073. name: "Front",
  51074. image: {
  51075. source: "./media/characters/aetherios/front.svg",
  51076. extra: 1266/953,
  51077. bottom: 158/1424
  51078. }
  51079. },
  51080. maw: {
  51081. height: math.unit(16.37, "meters"),
  51082. name: "Maw",
  51083. image: {
  51084. source: "./media/characters/aetherios/maw.svg",
  51085. extra: 748/637,
  51086. bottom: 0/748
  51087. },
  51088. extraAttributes: {
  51089. preyCapacity: {
  51090. name: "Capacity",
  51091. power: 3,
  51092. type: "volume",
  51093. base: math.unit(1000, "people")
  51094. },
  51095. tongueSize: {
  51096. name: "Tongue Size",
  51097. power: 2,
  51098. type: "area",
  51099. base: math.unit(21, "m^2")
  51100. }
  51101. }
  51102. },
  51103. forepaw: {
  51104. height: math.unit(18, "meters"),
  51105. name: "Forepaw",
  51106. image: {
  51107. source: "./media/characters/aetherios/forepaw.svg"
  51108. }
  51109. },
  51110. hindpaw: {
  51111. height: math.unit(23, "meters"),
  51112. name: "Hindpaw",
  51113. image: {
  51114. source: "./media/characters/aetherios/hindpaw.svg"
  51115. }
  51116. },
  51117. genitals: {
  51118. height: math.unit(42, "meters"),
  51119. name: "Genitals",
  51120. image: {
  51121. source: "./media/characters/aetherios/genitals.svg"
  51122. }
  51123. },
  51124. },
  51125. [
  51126. {
  51127. name: "Normal",
  51128. height: math.unit(47.2, "meters"),
  51129. default: true
  51130. },
  51131. {
  51132. name: "Macro",
  51133. height: math.unit(160, "meters")
  51134. },
  51135. {
  51136. name: "Mega",
  51137. height: math.unit(1.87, "km")
  51138. },
  51139. {
  51140. name: "Giga",
  51141. height: math.unit(40000, "km")
  51142. },
  51143. {
  51144. name: "Stellar",
  51145. height: math.unit(158000000, "km")
  51146. },
  51147. {
  51148. name: "Cosmic",
  51149. height: math.unit(9.46e12, "km")
  51150. },
  51151. ]
  51152. ))
  51153. characterMakers.push(() => makeCharacter(
  51154. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51155. {
  51156. front: {
  51157. height: math.unit(5 + 4/12, "feet"),
  51158. weight: math.unit(80, "lb"),
  51159. name: "Front",
  51160. image: {
  51161. source: "./media/characters/mizu-gieeg/front.svg",
  51162. extra: 850/709,
  51163. bottom: 52/902
  51164. }
  51165. },
  51166. back: {
  51167. height: math.unit(5 + 4/12, "feet"),
  51168. weight: math.unit(80, "lb"),
  51169. name: "Back",
  51170. image: {
  51171. source: "./media/characters/mizu-gieeg/back.svg",
  51172. extra: 882/745,
  51173. bottom: 25/907
  51174. }
  51175. },
  51176. },
  51177. [
  51178. {
  51179. name: "Normal",
  51180. height: math.unit(5 + 4/12, "feet"),
  51181. default: true
  51182. },
  51183. ]
  51184. ))
  51185. characterMakers.push(() => makeCharacter(
  51186. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51187. {
  51188. front: {
  51189. height: math.unit(6, "feet"),
  51190. name: "Front",
  51191. image: {
  51192. source: "./media/characters/roselle-st-papier/front.svg",
  51193. extra: 1430/1280,
  51194. bottom: 37/1467
  51195. }
  51196. },
  51197. back: {
  51198. height: math.unit(6, "feet"),
  51199. name: "Back",
  51200. image: {
  51201. source: "./media/characters/roselle-st-papier/back.svg",
  51202. extra: 1491/1296,
  51203. bottom: 23/1514
  51204. }
  51205. },
  51206. ear: {
  51207. height: math.unit(1.26, "feet"),
  51208. name: "Ear",
  51209. image: {
  51210. source: "./media/characters/roselle-st-papier/ear.svg"
  51211. }
  51212. },
  51213. },
  51214. [
  51215. {
  51216. name: "Normal",
  51217. height: math.unit(150, "feet"),
  51218. default: true
  51219. },
  51220. ]
  51221. ))
  51222. characterMakers.push(() => makeCharacter(
  51223. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51224. {
  51225. front: {
  51226. height: math.unit(1, "inches"),
  51227. name: "Front",
  51228. image: {
  51229. source: "./media/characters/valargent/front.svg",
  51230. extra: 1825/1694,
  51231. bottom: 62/1887
  51232. }
  51233. },
  51234. back: {
  51235. height: math.unit(1, "inches"),
  51236. name: "Back",
  51237. image: {
  51238. source: "./media/characters/valargent/back.svg",
  51239. extra: 1775/1682,
  51240. bottom: 88/1863
  51241. }
  51242. },
  51243. },
  51244. [
  51245. {
  51246. name: "Micro",
  51247. height: math.unit(1, "inch"),
  51248. default: true
  51249. },
  51250. ]
  51251. ))
  51252. characterMakers.push(() => makeCharacter(
  51253. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51254. {
  51255. front: {
  51256. height: math.unit(3.4, "meters"),
  51257. name: "Front",
  51258. image: {
  51259. source: "./media/characters/zarina/front.svg",
  51260. extra: 1733/1425,
  51261. bottom: 93/1826
  51262. }
  51263. },
  51264. squatting: {
  51265. height: math.unit(2.14, "meters"),
  51266. name: "Squatting",
  51267. image: {
  51268. source: "./media/characters/zarina/squatting.svg",
  51269. extra: 1073/788,
  51270. bottom: 63/1136
  51271. }
  51272. },
  51273. back: {
  51274. height: math.unit(2.14, "meters"),
  51275. name: "Back",
  51276. image: {
  51277. source: "./media/characters/zarina/back.svg",
  51278. extra: 1128/885,
  51279. bottom: 0/1128
  51280. }
  51281. },
  51282. },
  51283. [
  51284. {
  51285. name: "Normal",
  51286. height: math.unit(3.4, "meters"),
  51287. default: true
  51288. },
  51289. {
  51290. name: "Big",
  51291. height: math.unit(5, "meters")
  51292. },
  51293. {
  51294. name: "Macro",
  51295. height: math.unit(110, "meters")
  51296. },
  51297. ]
  51298. ))
  51299. characterMakers.push(() => makeCharacter(
  51300. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51301. {
  51302. front: {
  51303. height: math.unit(7, "feet"),
  51304. name: "Front",
  51305. image: {
  51306. source: "./media/characters/ventus-astro-fox/front.svg",
  51307. extra: 1792/1623,
  51308. bottom: 28/1820
  51309. }
  51310. },
  51311. back: {
  51312. height: math.unit(7, "feet"),
  51313. name: "Back",
  51314. image: {
  51315. source: "./media/characters/ventus-astro-fox/back.svg",
  51316. extra: 1789/1620,
  51317. bottom: 31/1820
  51318. }
  51319. },
  51320. outfit: {
  51321. height: math.unit(7, "feet"),
  51322. name: "Outfit",
  51323. image: {
  51324. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51325. extra: 1054/925,
  51326. bottom: 15/1069
  51327. }
  51328. },
  51329. head: {
  51330. height: math.unit(1.12, "feet"),
  51331. name: "Head",
  51332. image: {
  51333. source: "./media/characters/ventus-astro-fox/head.svg",
  51334. extra: 866/504,
  51335. bottom: 0/866
  51336. }
  51337. },
  51338. hand: {
  51339. height: math.unit(1, "feet"),
  51340. name: "Hand",
  51341. image: {
  51342. source: "./media/characters/ventus-astro-fox/hand.svg"
  51343. }
  51344. },
  51345. paw: {
  51346. height: math.unit(1.5, "feet"),
  51347. name: "Paw",
  51348. image: {
  51349. source: "./media/characters/ventus-astro-fox/paw.svg"
  51350. }
  51351. },
  51352. },
  51353. [
  51354. {
  51355. name: "Normal",
  51356. height: math.unit(7, "feet"),
  51357. default: true
  51358. },
  51359. {
  51360. name: "Macro",
  51361. height: math.unit(200, "feet")
  51362. },
  51363. {
  51364. name: "Cosmic",
  51365. height: math.unit(3, "universes")
  51366. },
  51367. ]
  51368. ))
  51369. characterMakers.push(() => makeCharacter(
  51370. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51371. {
  51372. front: {
  51373. height: math.unit(3, "meters"),
  51374. weight: math.unit(7000, "lb"),
  51375. name: "Front",
  51376. image: {
  51377. source: "./media/characters/core-t/front.svg",
  51378. extra: 5729/4941,
  51379. bottom: 1129/6858
  51380. }
  51381. },
  51382. },
  51383. [
  51384. {
  51385. name: "Big",
  51386. height: math.unit(3, "meters"),
  51387. default: true
  51388. },
  51389. ]
  51390. ))
  51391. characterMakers.push(() => makeCharacter(
  51392. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51393. {
  51394. normal: {
  51395. height: math.unit(6 + 6/12, "feet"),
  51396. weight: math.unit(275, "lb"),
  51397. name: "Front",
  51398. image: {
  51399. source: "./media/characters/cadbunny/normal.svg",
  51400. extra: 1129/947,
  51401. bottom: 93/1222
  51402. },
  51403. default: true,
  51404. form: "normal"
  51405. },
  51406. gigantamax: {
  51407. height: math.unit(26, "feet"),
  51408. weight: math.unit(16000, "lb"),
  51409. name: "Front",
  51410. image: {
  51411. source: "./media/characters/cadbunny/gigantamax.svg",
  51412. extra: 1133/944,
  51413. bottom: 90/1223
  51414. },
  51415. default: true,
  51416. form: "gigantamax"
  51417. },
  51418. },
  51419. [
  51420. {
  51421. name: "Normal",
  51422. height: math.unit(6 + 6/12, "feet"),
  51423. default: true,
  51424. form: "normal"
  51425. },
  51426. {
  51427. name: "Small",
  51428. height: math.unit(26, "feet"),
  51429. default: true,
  51430. form: "gigantamax"
  51431. },
  51432. {
  51433. name: "Large",
  51434. height: math.unit(78, "feet"),
  51435. form: "gigantamax"
  51436. },
  51437. ],
  51438. {
  51439. "normal": {
  51440. name: "Normal",
  51441. default: true
  51442. },
  51443. "gigantamax": {
  51444. name: "Gigantamax"
  51445. }
  51446. }
  51447. ))
  51448. characterMakers.push(() => makeCharacter(
  51449. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51450. {
  51451. anthroFront: {
  51452. height: math.unit(8, "feet"),
  51453. weight: math.unit(300, "lb"),
  51454. name: "Front",
  51455. image: {
  51456. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51457. extra: 1272/1176,
  51458. bottom: 53/1325
  51459. },
  51460. form: "anthro",
  51461. default: true
  51462. },
  51463. feralSide: {
  51464. height: math.unit(4, "feet"),
  51465. weight: math.unit(250, "lb"),
  51466. name: "Side",
  51467. image: {
  51468. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51469. extra: 731/621,
  51470. bottom: 0/731
  51471. },
  51472. form: "feral",
  51473. default: true
  51474. },
  51475. },
  51476. [
  51477. {
  51478. name: "Regular",
  51479. height: math.unit(8, "feet"),
  51480. form: "anthro"
  51481. },
  51482. {
  51483. name: "Macro",
  51484. height: math.unit(250, "feet"),
  51485. form: "anthro",
  51486. default: true
  51487. },
  51488. {
  51489. name: "Regular",
  51490. height: math.unit(4, "feet"),
  51491. form: "feral"
  51492. },
  51493. {
  51494. name: "Macro",
  51495. height: math.unit(125, "feet"),
  51496. form: "feral",
  51497. default: true
  51498. },
  51499. ],
  51500. {
  51501. "anthro": {
  51502. name: "Anthro",
  51503. default: true
  51504. },
  51505. "feral": {
  51506. name: "Feral",
  51507. },
  51508. }
  51509. ))
  51510. characterMakers.push(() => makeCharacter(
  51511. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51512. {
  51513. front: {
  51514. height: math.unit(11 + 10/12, "feet"),
  51515. weight: math.unit(1587, "kg"),
  51516. name: "Front",
  51517. image: {
  51518. source: "./media/characters/maple-javira-dragon/front.svg",
  51519. extra: 1136/744,
  51520. bottom: 73/1209
  51521. }
  51522. },
  51523. side: {
  51524. height: math.unit(11 + 10/12, "feet"),
  51525. weight: math.unit(1587, "kg"),
  51526. name: "Side",
  51527. image: {
  51528. source: "./media/characters/maple-javira-dragon/side.svg",
  51529. extra: 712/505,
  51530. bottom: 17/729
  51531. }
  51532. },
  51533. head: {
  51534. height: math.unit(8.05, "feet"),
  51535. name: "Head",
  51536. image: {
  51537. source: "./media/characters/maple-javira-dragon/head.svg",
  51538. extra: 1420/1344,
  51539. bottom: 0/1420
  51540. }
  51541. },
  51542. },
  51543. [
  51544. {
  51545. name: "Normal",
  51546. height: math.unit(11 + 10/12, "feet"),
  51547. default: true
  51548. },
  51549. ]
  51550. ))
  51551. characterMakers.push(() => makeCharacter(
  51552. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51553. {
  51554. front: {
  51555. height: math.unit(117, "cm"),
  51556. weight: math.unit(50, "kg"),
  51557. name: "Front",
  51558. image: {
  51559. source: "./media/characters/sonia-wyverntail/front.svg",
  51560. extra: 708/592,
  51561. bottom: 25/733
  51562. }
  51563. },
  51564. },
  51565. [
  51566. {
  51567. name: "Normal",
  51568. height: math.unit(117, "cm"),
  51569. default: true
  51570. },
  51571. ]
  51572. ))
  51573. characterMakers.push(() => makeCharacter(
  51574. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51575. {
  51576. front: {
  51577. height: math.unit(6 + 5/12, "feet"),
  51578. name: "Front",
  51579. image: {
  51580. source: "./media/characters/micah/front.svg",
  51581. extra: 1758/1546,
  51582. bottom: 214/1972
  51583. }
  51584. },
  51585. },
  51586. [
  51587. {
  51588. name: "Normal",
  51589. height: math.unit(6 + 5/12, "feet"),
  51590. default: true
  51591. },
  51592. ]
  51593. ))
  51594. characterMakers.push(() => makeCharacter(
  51595. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51596. {
  51597. front: {
  51598. height: math.unit(1.75, "meters"),
  51599. weight: math.unit(100, "kg"),
  51600. name: "Front",
  51601. image: {
  51602. source: "./media/characters/zarya/front.svg",
  51603. extra: 741/735,
  51604. bottom: 44/785
  51605. },
  51606. extraAttributes: {
  51607. "tailLength": {
  51608. name: "Tail Length",
  51609. power: 1,
  51610. type: "length",
  51611. base: math.unit(180, "cm")
  51612. },
  51613. "pawLength": {
  51614. name: "Paw Length",
  51615. power: 1,
  51616. type: "length",
  51617. base: math.unit(31, "cm")
  51618. },
  51619. }
  51620. },
  51621. side: {
  51622. height: math.unit(1.75, "meters"),
  51623. weight: math.unit(100, "kg"),
  51624. name: "Side",
  51625. image: {
  51626. source: "./media/characters/zarya/side.svg",
  51627. extra: 776/770,
  51628. bottom: 17/793
  51629. },
  51630. extraAttributes: {
  51631. "tailLength": {
  51632. name: "Tail Length",
  51633. power: 1,
  51634. type: "length",
  51635. base: math.unit(180, "cm")
  51636. },
  51637. "pawLength": {
  51638. name: "Paw Length",
  51639. power: 1,
  51640. type: "length",
  51641. base: math.unit(31, "cm")
  51642. },
  51643. }
  51644. },
  51645. back: {
  51646. height: math.unit(1.75, "meters"),
  51647. weight: math.unit(100, "kg"),
  51648. name: "Back",
  51649. image: {
  51650. source: "./media/characters/zarya/back.svg",
  51651. extra: 741/735,
  51652. bottom: 44/785
  51653. },
  51654. extraAttributes: {
  51655. "tailLength": {
  51656. name: "Tail Length",
  51657. power: 1,
  51658. type: "length",
  51659. base: math.unit(180, "cm")
  51660. },
  51661. "pawLength": {
  51662. name: "Paw Length",
  51663. power: 1,
  51664. type: "length",
  51665. base: math.unit(31, "cm")
  51666. },
  51667. }
  51668. },
  51669. frontNoTail: {
  51670. height: math.unit(1.75, "meters"),
  51671. weight: math.unit(100, "kg"),
  51672. name: "Front (No Tail)",
  51673. image: {
  51674. source: "./media/characters/zarya/front-no-tail.svg",
  51675. extra: 741/735,
  51676. bottom: 44/785
  51677. },
  51678. extraAttributes: {
  51679. "tailLength": {
  51680. name: "Tail Length",
  51681. power: 1,
  51682. type: "length",
  51683. base: math.unit(180, "cm")
  51684. },
  51685. "pawLength": {
  51686. name: "Paw Length",
  51687. power: 1,
  51688. type: "length",
  51689. base: math.unit(31, "cm")
  51690. },
  51691. }
  51692. },
  51693. dressed: {
  51694. height: math.unit(1.75, "meters"),
  51695. weight: math.unit(100, "kg"),
  51696. name: "Dressed",
  51697. image: {
  51698. source: "./media/characters/zarya/dressed.svg",
  51699. extra: 683/672,
  51700. bottom: 79/762
  51701. },
  51702. extraAttributes: {
  51703. "tailLength": {
  51704. name: "Tail Length",
  51705. power: 1,
  51706. type: "length",
  51707. base: math.unit(180, "cm")
  51708. },
  51709. "pawLength": {
  51710. name: "Paw Length",
  51711. power: 1,
  51712. type: "length",
  51713. base: math.unit(31, "cm")
  51714. },
  51715. }
  51716. },
  51717. },
  51718. [
  51719. {
  51720. name: "Micro",
  51721. height: math.unit(5, "cm")
  51722. },
  51723. {
  51724. name: "Normal",
  51725. height: math.unit(1.75, "meters"),
  51726. default: true
  51727. },
  51728. {
  51729. name: "Macro",
  51730. height: math.unit(122, "meters")
  51731. },
  51732. ]
  51733. ))
  51734. characterMakers.push(() => makeCharacter(
  51735. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51736. {
  51737. front: {
  51738. height: math.unit(7.5, "feet"),
  51739. name: "Front",
  51740. image: {
  51741. source: "./media/characters/sven-hatisson/front.svg",
  51742. extra: 917/857,
  51743. bottom: 42/959
  51744. }
  51745. },
  51746. back: {
  51747. height: math.unit(7.5, "feet"),
  51748. name: "Back",
  51749. image: {
  51750. source: "./media/characters/sven-hatisson/back.svg",
  51751. extra: 903/856,
  51752. bottom: 15/918
  51753. }
  51754. },
  51755. },
  51756. [
  51757. {
  51758. name: "Base Height",
  51759. height: math.unit(7.5, "feet")
  51760. },
  51761. {
  51762. name: "Usual Height",
  51763. height: math.unit(13.5, "feet"),
  51764. default: true
  51765. },
  51766. {
  51767. name: "Smaller Macro",
  51768. height: math.unit(85, "feet")
  51769. },
  51770. {
  51771. name: "Moderate Macro",
  51772. height: math.unit(320, "feet")
  51773. },
  51774. {
  51775. name: "Large Macro",
  51776. height: math.unit(1000, "feet")
  51777. },
  51778. {
  51779. name: "Largest Size",
  51780. height: math.unit(2, "miles")
  51781. },
  51782. ]
  51783. ))
  51784. characterMakers.push(() => makeCharacter(
  51785. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51786. {
  51787. side: {
  51788. height: math.unit(1.8, "meters"),
  51789. weight: math.unit(275, "kg"),
  51790. name: "Side",
  51791. image: {
  51792. source: "./media/characters/terra/side.svg",
  51793. extra: 1273/1147,
  51794. bottom: 0/1273
  51795. }
  51796. },
  51797. },
  51798. [
  51799. {
  51800. name: "Normal",
  51801. height: math.unit(16.2, "meters"),
  51802. default: true
  51803. },
  51804. ]
  51805. ))
  51806. characterMakers.push(() => makeCharacter(
  51807. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51808. {
  51809. borzoiFront: {
  51810. height: math.unit(6 + 9/12, "feet"),
  51811. name: "Front",
  51812. image: {
  51813. source: "./media/characters/rae/borzoi-front.svg",
  51814. extra: 1161/1098,
  51815. bottom: 31/1192
  51816. },
  51817. form: "borzoi",
  51818. default: true
  51819. },
  51820. werewolfFront: {
  51821. height: math.unit(8 + 7/12, "feet"),
  51822. name: "Front",
  51823. image: {
  51824. source: "./media/characters/rae/werewolf-front.svg",
  51825. extra: 1411/1334,
  51826. bottom: 127/1538
  51827. },
  51828. form: "werewolf",
  51829. default: true
  51830. },
  51831. },
  51832. [
  51833. {
  51834. name: "Normal",
  51835. height: math.unit(6 + 9/12, "feet"),
  51836. default: true,
  51837. form: "borzoi"
  51838. },
  51839. {
  51840. name: "Normal",
  51841. height: math.unit(8 + 7/12, "feet"),
  51842. default: true,
  51843. form: "werewolf"
  51844. },
  51845. ],
  51846. {
  51847. "borzoi": {
  51848. name: "Borzoi",
  51849. default: true
  51850. },
  51851. "werewolf": {
  51852. name: "Werewolf",
  51853. },
  51854. }
  51855. ))
  51856. characterMakers.push(() => makeCharacter(
  51857. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51858. {
  51859. front: {
  51860. height: math.unit(8 + 7/12, "feet"),
  51861. weight: math.unit(482, "lb"),
  51862. name: "Front",
  51863. image: {
  51864. source: "./media/characters/kit/front.svg",
  51865. extra: 1247/1103,
  51866. bottom: 41/1288
  51867. }
  51868. },
  51869. back: {
  51870. height: math.unit(8 + 7/12, "feet"),
  51871. weight: math.unit(482, "lb"),
  51872. name: "Back",
  51873. image: {
  51874. source: "./media/characters/kit/back.svg",
  51875. extra: 1252/1123,
  51876. bottom: 21/1273
  51877. }
  51878. },
  51879. paw: {
  51880. height: math.unit(1.46, "feet"),
  51881. name: "Paw",
  51882. image: {
  51883. source: "./media/characters/kit/paw.svg"
  51884. }
  51885. },
  51886. },
  51887. [
  51888. {
  51889. name: "Normal",
  51890. height: math.unit(2.61, "meters"),
  51891. default: true
  51892. },
  51893. {
  51894. name: "\"Tall\"",
  51895. height: math.unit(8.21, "meters")
  51896. },
  51897. {
  51898. name: "Tall",
  51899. height: math.unit(19.6, "meters")
  51900. },
  51901. {
  51902. name: "Very Tall",
  51903. height: math.unit(57.91, "meters")
  51904. },
  51905. {
  51906. name: "Semi-Macro",
  51907. height: math.unit(138.64, "meters")
  51908. },
  51909. {
  51910. name: "Macro",
  51911. height: math.unit(831.99, "meters")
  51912. },
  51913. {
  51914. name: "EX-Macro",
  51915. height: math.unit(96451121, "meters")
  51916. },
  51917. {
  51918. name: "S1-Omnipotent",
  51919. height: math.unit(4.42074e+9, "meters")
  51920. },
  51921. {
  51922. name: "S2-Omnipotent",
  51923. height: math.unit(9.42074e+17, "meters")
  51924. },
  51925. {
  51926. name: "Omnipotent",
  51927. height: math.unit(4.23112e+24, "meters")
  51928. },
  51929. {
  51930. name: "Hypergod",
  51931. height: math.unit(5.05176e+27, "meters")
  51932. },
  51933. {
  51934. name: "Hypergod-EX",
  51935. height: math.unit(9.45532e+49, "meters")
  51936. },
  51937. {
  51938. name: "Hypergod-SP",
  51939. height: math.unit(9.45532e+195, "meters")
  51940. },
  51941. ]
  51942. ))
  51943. characterMakers.push(() => makeCharacter(
  51944. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51945. {
  51946. side: {
  51947. height: math.unit(0.6, "meters"),
  51948. weight: math.unit(24, "kg"),
  51949. name: "Side",
  51950. image: {
  51951. source: "./media/characters/celeste/side.svg",
  51952. extra: 810/517,
  51953. bottom: 53/863
  51954. }
  51955. },
  51956. },
  51957. [
  51958. {
  51959. name: "Velociraptor",
  51960. height: math.unit(0.6, "meters"),
  51961. default: true
  51962. },
  51963. {
  51964. name: "Utahraptor",
  51965. height: math.unit(1.8, "meters")
  51966. },
  51967. {
  51968. name: "Gallimimus",
  51969. height: math.unit(4.0, "meters")
  51970. },
  51971. {
  51972. name: "Large",
  51973. height: math.unit(20, "meters")
  51974. },
  51975. {
  51976. name: "Planetary",
  51977. height: math.unit(50, "megameters")
  51978. },
  51979. {
  51980. name: "Stellar",
  51981. height: math.unit(1.5, "gigameters")
  51982. },
  51983. {
  51984. name: "Galactic",
  51985. height: math.unit(100, "exameters")
  51986. },
  51987. ]
  51988. ))
  51989. characterMakers.push(() => makeCharacter(
  51990. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51991. {
  51992. front: {
  51993. height: math.unit(6, "feet"),
  51994. weight: math.unit(210, "lb"),
  51995. name: "Front",
  51996. image: {
  51997. source: "./media/characters/glacia/front.svg",
  51998. extra: 958/901,
  51999. bottom: 45/1003
  52000. }
  52001. },
  52002. },
  52003. [
  52004. {
  52005. name: "Macro",
  52006. height: math.unit(1000, "meters"),
  52007. default: true
  52008. },
  52009. ]
  52010. ))
  52011. characterMakers.push(() => makeCharacter(
  52012. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52013. {
  52014. front: {
  52015. height: math.unit(4, "meters"),
  52016. name: "Front",
  52017. image: {
  52018. source: "./media/characters/giri/front.svg",
  52019. extra: 966/894,
  52020. bottom: 21/987
  52021. }
  52022. },
  52023. },
  52024. [
  52025. {
  52026. name: "Normal",
  52027. height: math.unit(4, "meters"),
  52028. default: true
  52029. },
  52030. ]
  52031. ))
  52032. characterMakers.push(() => makeCharacter(
  52033. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52034. {
  52035. back: {
  52036. height: math.unit(4, "feet"),
  52037. weight: math.unit(37, "lb"),
  52038. name: "Back",
  52039. image: {
  52040. source: "./media/characters/tin/back.svg",
  52041. extra: 845/780,
  52042. bottom: 28/873
  52043. }
  52044. },
  52045. },
  52046. [
  52047. {
  52048. name: "Normal",
  52049. height: math.unit(4, "feet"),
  52050. default: true
  52051. },
  52052. ]
  52053. ))
  52054. characterMakers.push(() => makeCharacter(
  52055. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52056. {
  52057. front: {
  52058. height: math.unit(25, "feet"),
  52059. name: "Front",
  52060. image: {
  52061. source: "./media/characters/cadenza-vivace/front.svg",
  52062. extra: 1842/1578,
  52063. bottom: 30/1872
  52064. }
  52065. },
  52066. },
  52067. [
  52068. {
  52069. name: "Macro",
  52070. height: math.unit(25, "feet"),
  52071. default: true
  52072. },
  52073. ]
  52074. ))
  52075. characterMakers.push(() => makeCharacter(
  52076. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52077. {
  52078. front: {
  52079. height: math.unit(10, "feet"),
  52080. weight: math.unit(625, "kg"),
  52081. name: "Front",
  52082. image: {
  52083. source: "./media/characters/zain/front.svg",
  52084. extra: 1682/1498,
  52085. bottom: 223/1905
  52086. }
  52087. },
  52088. back: {
  52089. height: math.unit(10, "feet"),
  52090. weight: math.unit(625, "kg"),
  52091. name: "Back",
  52092. image: {
  52093. source: "./media/characters/zain/back.svg",
  52094. extra: 1814/1657,
  52095. bottom: 152/1966
  52096. }
  52097. },
  52098. head: {
  52099. height: math.unit(10, "feet"),
  52100. weight: math.unit(625, "kg"),
  52101. name: "Head",
  52102. image: {
  52103. source: "./media/characters/zain/head.svg",
  52104. extra: 1059/762,
  52105. bottom: 0/1059
  52106. }
  52107. },
  52108. },
  52109. [
  52110. {
  52111. name: "Normal",
  52112. height: math.unit(10, "feet"),
  52113. default: true
  52114. },
  52115. ]
  52116. ))
  52117. characterMakers.push(() => makeCharacter(
  52118. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52119. {
  52120. front: {
  52121. height: math.unit(6 + 5/12, "feet"),
  52122. weight: math.unit(750, "lb"),
  52123. name: "Front",
  52124. image: {
  52125. source: "./media/characters/ruchex/front.svg",
  52126. extra: 877/820,
  52127. bottom: 17/894
  52128. },
  52129. extraAttributes: {
  52130. "width": {
  52131. name: "Width",
  52132. power: 1,
  52133. type: "length",
  52134. base: math.unit(4.757, "feet")
  52135. },
  52136. }
  52137. },
  52138. },
  52139. [
  52140. {
  52141. name: "Normal",
  52142. height: math.unit(6 + 5/12, "feet"),
  52143. default: true
  52144. },
  52145. ]
  52146. ))
  52147. characterMakers.push(() => makeCharacter(
  52148. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52149. {
  52150. dressedFront: {
  52151. height: math.unit(191, "cm"),
  52152. weight: math.unit(80, "kg"),
  52153. name: "Front",
  52154. image: {
  52155. source: "./media/characters/buster/dressed-front.svg",
  52156. extra: 1022/973,
  52157. bottom: 69/1091
  52158. }
  52159. },
  52160. dressedBack: {
  52161. height: math.unit(191, "cm"),
  52162. weight: math.unit(80, "kg"),
  52163. name: "Back",
  52164. image: {
  52165. source: "./media/characters/buster/dressed-back.svg",
  52166. extra: 1018/970,
  52167. bottom: 55/1073
  52168. }
  52169. },
  52170. nudeFront: {
  52171. height: math.unit(191, "cm"),
  52172. weight: math.unit(80, "kg"),
  52173. name: "Front (Nude)",
  52174. image: {
  52175. source: "./media/characters/buster/nude-front.svg",
  52176. extra: 1022/973,
  52177. bottom: 69/1091
  52178. }
  52179. },
  52180. nudeBack: {
  52181. height: math.unit(191, "cm"),
  52182. weight: math.unit(80, "kg"),
  52183. name: "Back (Nude)",
  52184. image: {
  52185. source: "./media/characters/buster/nude-back.svg",
  52186. extra: 1018/970,
  52187. bottom: 55/1073
  52188. }
  52189. },
  52190. dick: {
  52191. height: math.unit(2.59, "feet"),
  52192. name: "Dick",
  52193. image: {
  52194. source: "./media/characters/buster/dick.svg"
  52195. }
  52196. },
  52197. ass: {
  52198. height: math.unit(1.2, "feet"),
  52199. name: "Ass",
  52200. image: {
  52201. source: "./media/characters/buster/ass.svg"
  52202. }
  52203. },
  52204. },
  52205. [
  52206. {
  52207. name: "Normal",
  52208. height: math.unit(191, "cm"),
  52209. default: true
  52210. },
  52211. ]
  52212. ))
  52213. characterMakers.push(() => makeCharacter(
  52214. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52215. {
  52216. side: {
  52217. height: math.unit(8.1, "feet"),
  52218. weight: math.unit(3500, "lb"),
  52219. name: "Side",
  52220. image: {
  52221. source: "./media/characters/sonya/side.svg",
  52222. extra: 1730/1317,
  52223. bottom: 86/1816
  52224. }
  52225. },
  52226. },
  52227. [
  52228. {
  52229. name: "Normal",
  52230. height: math.unit(8.1, "feet"),
  52231. default: true
  52232. },
  52233. ]
  52234. ))
  52235. characterMakers.push(() => makeCharacter(
  52236. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52237. {
  52238. front: {
  52239. height: math.unit(6, "feet"),
  52240. weight: math.unit(150, "lb"),
  52241. name: "Front",
  52242. image: {
  52243. source: "./media/characters/cadence-andrysiak/front.svg",
  52244. extra: 1164/1121,
  52245. bottom: 60/1224
  52246. }
  52247. },
  52248. back: {
  52249. height: math.unit(6, "feet"),
  52250. weight: math.unit(150, "lb"),
  52251. name: "Back",
  52252. image: {
  52253. source: "./media/characters/cadence-andrysiak/back.svg",
  52254. extra: 1200/1165,
  52255. bottom: 9/1209
  52256. }
  52257. },
  52258. dressed: {
  52259. height: math.unit(6, "feet"),
  52260. weight: math.unit(150, "lb"),
  52261. name: "Dressed",
  52262. image: {
  52263. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52264. extra: 1164/1121,
  52265. bottom: 60/1224
  52266. }
  52267. },
  52268. },
  52269. [
  52270. {
  52271. name: "Micro",
  52272. height: math.unit(1, "mm")
  52273. },
  52274. {
  52275. name: "Normal",
  52276. height: math.unit(6, "feet"),
  52277. default: true
  52278. },
  52279. ]
  52280. ))
  52281. characterMakers.push(() => makeCharacter(
  52282. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52283. {
  52284. front: {
  52285. height: math.unit(60, "inches"),
  52286. weight: math.unit(16, "lb"),
  52287. preyCapacity: math.unit(80, "liters"),
  52288. name: "Front",
  52289. image: {
  52290. source: "./media/characters/penny-lynx/front.svg",
  52291. extra: 1959/1769,
  52292. bottom: 49/2008
  52293. }
  52294. },
  52295. },
  52296. [
  52297. {
  52298. name: "Nokia",
  52299. height: math.unit(2, "inches")
  52300. },
  52301. {
  52302. name: "Desktop",
  52303. height: math.unit(24, "inches")
  52304. },
  52305. {
  52306. name: "TV",
  52307. height: math.unit(60, "inches")
  52308. },
  52309. {
  52310. name: "Jumbotron",
  52311. height: math.unit(12, "feet")
  52312. },
  52313. {
  52314. name: "Billboard",
  52315. height: math.unit(48, "feet"),
  52316. default: true
  52317. },
  52318. {
  52319. name: "IMAX",
  52320. height: math.unit(96, "feet")
  52321. },
  52322. {
  52323. name: "SINGULARITY",
  52324. height: math.unit(864938, "miles")
  52325. },
  52326. ]
  52327. ))
  52328. characterMakers.push(() => makeCharacter(
  52329. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52330. {
  52331. front: {
  52332. height: math.unit(5 + 4/12, "feet"),
  52333. weight: math.unit(230, "lb"),
  52334. name: "Front",
  52335. image: {
  52336. source: "./media/characters/sukebe/front.svg",
  52337. extra: 2130/2038,
  52338. bottom: 90/2220
  52339. }
  52340. },
  52341. back: {
  52342. height: math.unit(3.48, "feet"),
  52343. weight: math.unit(230, "lb"),
  52344. name: "Back",
  52345. image: {
  52346. source: "./media/characters/sukebe/back.svg",
  52347. extra: 1670/1604,
  52348. bottom: 0/1670
  52349. }
  52350. },
  52351. },
  52352. [
  52353. {
  52354. name: "Normal",
  52355. height: math.unit(5 + 4/12, "feet"),
  52356. default: true
  52357. },
  52358. ]
  52359. ))
  52360. characterMakers.push(() => makeCharacter(
  52361. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52362. {
  52363. front: {
  52364. height: math.unit(6, "feet"),
  52365. name: "Front",
  52366. image: {
  52367. source: "./media/characters/nylla/front.svg",
  52368. extra: 1868/1699,
  52369. bottom: 97/1965
  52370. }
  52371. },
  52372. back: {
  52373. height: math.unit(6, "feet"),
  52374. name: "Back",
  52375. image: {
  52376. source: "./media/characters/nylla/back.svg",
  52377. extra: 1889/1712,
  52378. bottom: 93/1982
  52379. }
  52380. },
  52381. frontNsfw: {
  52382. height: math.unit(6, "feet"),
  52383. name: "Front (NSFW)",
  52384. image: {
  52385. source: "./media/characters/nylla/front-nsfw.svg",
  52386. extra: 1868/1699,
  52387. bottom: 97/1965
  52388. },
  52389. extraAttributes: {
  52390. "dickLength": {
  52391. name: "Dick Length",
  52392. power: 1,
  52393. type: "length",
  52394. base: math.unit(1.4, "feet")
  52395. },
  52396. "cumVolume": {
  52397. name: "Cum Volume",
  52398. power: 3,
  52399. type: "volume",
  52400. base: math.unit(100, "mL")
  52401. },
  52402. }
  52403. },
  52404. backNsfw: {
  52405. height: math.unit(6, "feet"),
  52406. name: "Back (NSFW)",
  52407. image: {
  52408. source: "./media/characters/nylla/back-nsfw.svg",
  52409. extra: 1889/1712,
  52410. bottom: 93/1982
  52411. }
  52412. },
  52413. maw: {
  52414. height: math.unit(2.10, "feet"),
  52415. name: "Maw",
  52416. image: {
  52417. source: "./media/characters/nylla/maw.svg"
  52418. }
  52419. },
  52420. paws: {
  52421. height: math.unit(2.06, "feet"),
  52422. name: "Paws",
  52423. image: {
  52424. source: "./media/characters/nylla/paws.svg"
  52425. }
  52426. },
  52427. muzzle: {
  52428. height: math.unit(0.61, "feet"),
  52429. name: "Muzzle",
  52430. image: {
  52431. source: "./media/characters/nylla/muzzle.svg"
  52432. }
  52433. },
  52434. sheath: {
  52435. height: math.unit(1.305, "feet"),
  52436. name: "Sheath",
  52437. image: {
  52438. source: "./media/characters/nylla/sheath.svg"
  52439. }
  52440. },
  52441. },
  52442. [
  52443. {
  52444. name: "Micro",
  52445. height: math.unit(7.5, "inches")
  52446. },
  52447. {
  52448. name: "Normal",
  52449. height: math.unit(7, "feet"),
  52450. default: true
  52451. },
  52452. {
  52453. name: "Macro",
  52454. height: math.unit(60, "feet")
  52455. },
  52456. {
  52457. name: "Mega",
  52458. height: math.unit(200, "feet")
  52459. },
  52460. ]
  52461. ))
  52462. characterMakers.push(() => makeCharacter(
  52463. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52464. {
  52465. front: {
  52466. height: math.unit(10, "feet"),
  52467. weight: math.unit(2300, "lb"),
  52468. name: "Front",
  52469. image: {
  52470. source: "./media/characters/hunt3r/front.svg",
  52471. extra: 1909/1742,
  52472. bottom: 46/1955
  52473. }
  52474. },
  52475. },
  52476. [
  52477. {
  52478. name: "Normal",
  52479. height: math.unit(10, "feet"),
  52480. default: true
  52481. },
  52482. ]
  52483. ))
  52484. characterMakers.push(() => makeCharacter(
  52485. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52486. {
  52487. dressed: {
  52488. height: math.unit(11, "feet"),
  52489. weight: math.unit(18500, "lb"),
  52490. preyCapacity: math.unit(9, "people"),
  52491. name: "Dressed",
  52492. image: {
  52493. source: "./media/characters/cylphis/dressed.svg",
  52494. extra: 1028/1003,
  52495. bottom: 75/1103
  52496. },
  52497. },
  52498. undressed: {
  52499. height: math.unit(11, "feet"),
  52500. weight: math.unit(18500, "lb"),
  52501. preyCapacity: math.unit(9, "people"),
  52502. name: "Undressed",
  52503. image: {
  52504. source: "./media/characters/cylphis/undressed.svg",
  52505. extra: 1028/1003,
  52506. bottom: 75/1103
  52507. }
  52508. },
  52509. full: {
  52510. height: math.unit(11, "feet"),
  52511. weight: math.unit(18500 + 150*9, "lb"),
  52512. preyCapacity: math.unit(9, "people"),
  52513. name: "Full",
  52514. image: {
  52515. source: "./media/characters/cylphis/full.svg",
  52516. extra: 1028/1003,
  52517. bottom: 75/1103
  52518. }
  52519. },
  52520. },
  52521. [
  52522. {
  52523. name: "Small",
  52524. height: math.unit(8, "feet")
  52525. },
  52526. {
  52527. name: "Normal",
  52528. height: math.unit(11, "feet"),
  52529. default: true
  52530. },
  52531. ]
  52532. ))
  52533. characterMakers.push(() => makeCharacter(
  52534. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52535. {
  52536. front: {
  52537. height: math.unit(2 + 7/12, "feet"),
  52538. name: "Front",
  52539. image: {
  52540. source: "./media/characters/orishan/front.svg",
  52541. extra: 1058/1023,
  52542. bottom: 23/1081
  52543. }
  52544. },
  52545. back: {
  52546. height: math.unit(2 + 7/12, "feet"),
  52547. name: "Back",
  52548. image: {
  52549. source: "./media/characters/orishan/back.svg",
  52550. extra: 1058/1023,
  52551. bottom: 23/1081
  52552. }
  52553. },
  52554. },
  52555. [
  52556. {
  52557. name: "Micro",
  52558. height: math.unit(2, "cm")
  52559. },
  52560. {
  52561. name: "Normal",
  52562. height: math.unit(2 + 7/12, "feet"),
  52563. default: true
  52564. },
  52565. ]
  52566. ))
  52567. characterMakers.push(() => makeCharacter(
  52568. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52569. {
  52570. front: {
  52571. height: math.unit(3, "meters"),
  52572. weight: math.unit(508, "kg"),
  52573. name: "Front",
  52574. image: {
  52575. source: "./media/characters/seranis/front.svg",
  52576. extra: 1478/1454,
  52577. bottom: 41/1519
  52578. }
  52579. },
  52580. },
  52581. [
  52582. {
  52583. name: "Normal",
  52584. height: math.unit(3, "meters"),
  52585. default: true
  52586. },
  52587. {
  52588. name: "Macro",
  52589. height: math.unit(108, "meters")
  52590. },
  52591. {
  52592. name: "Megamacro",
  52593. height: math.unit(1250, "meters")
  52594. },
  52595. ]
  52596. ))
  52597. characterMakers.push(() => makeCharacter(
  52598. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52599. {
  52600. undressed: {
  52601. height: math.unit(5 + 3/12, "feet"),
  52602. name: "Undressed",
  52603. image: {
  52604. source: "./media/characters/ankou/undressed.svg",
  52605. extra: 1301/1213,
  52606. bottom: 87/1388
  52607. }
  52608. },
  52609. dressed: {
  52610. height: math.unit(5 + 3/12, "feet"),
  52611. name: "Dressed",
  52612. image: {
  52613. source: "./media/characters/ankou/dressed.svg",
  52614. extra: 1301/1213,
  52615. bottom: 87/1388
  52616. }
  52617. },
  52618. head: {
  52619. height: math.unit(1.61, "feet"),
  52620. name: "Head",
  52621. image: {
  52622. source: "./media/characters/ankou/head.svg"
  52623. }
  52624. },
  52625. },
  52626. [
  52627. {
  52628. name: "Normal",
  52629. height: math.unit(5 + 3/12, "feet"),
  52630. default: true
  52631. },
  52632. ]
  52633. ))
  52634. characterMakers.push(() => makeCharacter(
  52635. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52636. {
  52637. side: {
  52638. height: math.unit(6 + 3/12, "feet"),
  52639. weight: math.unit(200, "kg"),
  52640. name: "Side",
  52641. image: {
  52642. source: "./media/characters/juniper-skunktaur/side.svg",
  52643. extra: 1574/1229,
  52644. bottom: 38/1612
  52645. }
  52646. },
  52647. front: {
  52648. height: math.unit(6 + 3/12, "feet"),
  52649. weight: math.unit(200, "kg"),
  52650. name: "Front",
  52651. image: {
  52652. source: "./media/characters/juniper-skunktaur/front.svg",
  52653. extra: 1337/1278,
  52654. bottom: 22/1359
  52655. }
  52656. },
  52657. back: {
  52658. height: math.unit(6 + 3/12, "feet"),
  52659. weight: math.unit(200, "kg"),
  52660. name: "Back",
  52661. image: {
  52662. source: "./media/characters/juniper-skunktaur/back.svg",
  52663. extra: 1618/1273,
  52664. bottom: 13/1631
  52665. }
  52666. },
  52667. top: {
  52668. height: math.unit(2.62, "feet"),
  52669. weight: math.unit(200, "kg"),
  52670. name: "Top",
  52671. image: {
  52672. source: "./media/characters/juniper-skunktaur/top.svg"
  52673. }
  52674. },
  52675. },
  52676. [
  52677. {
  52678. name: "Normal",
  52679. height: math.unit(6 + 3/12, "feet"),
  52680. default: true
  52681. },
  52682. ]
  52683. ))
  52684. characterMakers.push(() => makeCharacter(
  52685. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52686. {
  52687. front: {
  52688. height: math.unit(20.5, "feet"),
  52689. name: "Front",
  52690. image: {
  52691. source: "./media/characters/rei/front.svg",
  52692. extra: 1349/1195,
  52693. bottom: 31/1380
  52694. }
  52695. },
  52696. back: {
  52697. height: math.unit(20.5, "feet"),
  52698. name: "Back",
  52699. image: {
  52700. source: "./media/characters/rei/back.svg",
  52701. extra: 1358/1204,
  52702. bottom: 22/1380
  52703. }
  52704. },
  52705. pawsDigi: {
  52706. height: math.unit(3.45, "feet"),
  52707. name: "Paws (Digi)",
  52708. image: {
  52709. source: "./media/characters/rei/paws-digi.svg"
  52710. }
  52711. },
  52712. pawsPlanti: {
  52713. height: math.unit(3.45, "feet"),
  52714. name: "Paws (Planti)",
  52715. image: {
  52716. source: "./media/characters/rei/paws-planti.svg"
  52717. }
  52718. },
  52719. },
  52720. [
  52721. {
  52722. name: "Normal",
  52723. height: math.unit(20.5, "feet"),
  52724. default: true
  52725. },
  52726. ]
  52727. ))
  52728. characterMakers.push(() => makeCharacter(
  52729. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52730. {
  52731. front: {
  52732. height: math.unit(5 + 11/12, "feet"),
  52733. name: "Front",
  52734. image: {
  52735. source: "./media/characters/carina/front.svg",
  52736. extra: 1720/1449,
  52737. bottom: 14/1734
  52738. }
  52739. },
  52740. back: {
  52741. height: math.unit(5 + 11/12, "feet"),
  52742. name: "Back",
  52743. image: {
  52744. source: "./media/characters/carina/back.svg",
  52745. extra: 1493/1445,
  52746. bottom: 17/1510
  52747. }
  52748. },
  52749. paw: {
  52750. height: math.unit(0.92, "feet"),
  52751. name: "Paw",
  52752. image: {
  52753. source: "./media/characters/carina/paw.svg"
  52754. }
  52755. },
  52756. },
  52757. [
  52758. {
  52759. name: "Normal",
  52760. height: math.unit(5 + 11/12, "feet"),
  52761. default: true
  52762. },
  52763. ]
  52764. ))
  52765. characterMakers.push(() => makeCharacter(
  52766. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52767. {
  52768. normal_front: {
  52769. height: math.unit(4.88, "meters"),
  52770. name: "Front",
  52771. image: {
  52772. source: "./media/characters/maya/normal-front.svg",
  52773. extra: 1222/1145,
  52774. bottom: 57/1279
  52775. },
  52776. form: "normal",
  52777. default: true
  52778. },
  52779. monstrous_front: {
  52780. height: math.unit(10, "meters"),
  52781. name: "Front",
  52782. image: {
  52783. source: "./media/characters/maya/monstrous-front.svg",
  52784. extra: 1523/1109,
  52785. bottom: 113/1636
  52786. },
  52787. form: "monstrous",
  52788. extraAttributes: {
  52789. "swallowSize": {
  52790. name: "Tailmaw Bite Size",
  52791. power: 3,
  52792. type: "volume",
  52793. base: math.unit(43000, "liters")
  52794. },
  52795. }
  52796. },
  52797. taur_front: {
  52798. height: math.unit(10, "meters"),
  52799. name: "Front",
  52800. image: {
  52801. source: "./media/characters/maya/taur-front.svg",
  52802. extra: 743/506,
  52803. bottom: 101/844
  52804. },
  52805. form: "taur",
  52806. },
  52807. },
  52808. [
  52809. {
  52810. name: "Normal",
  52811. height: math.unit(4.88, "meters"),
  52812. default: true,
  52813. form: "normal"
  52814. },
  52815. {
  52816. name: "Macro",
  52817. height: math.unit(38.1, "meters"),
  52818. form: "normal"
  52819. },
  52820. {
  52821. name: "Macro+",
  52822. height: math.unit(152.4, "meters"),
  52823. form: "normal"
  52824. },
  52825. {
  52826. name: "Macro++",
  52827. height: math.unit(16.09, "km"),
  52828. form: "normal"
  52829. },
  52830. {
  52831. name: "Mega-macro",
  52832. height: math.unit(700, "megameters"),
  52833. form: "normal"
  52834. },
  52835. {
  52836. name: "Satiated",
  52837. height: math.unit(10, "meters"),
  52838. default: true,
  52839. form: "monstrous"
  52840. },
  52841. {
  52842. name: "Hungry",
  52843. height: math.unit(75, "meters"),
  52844. form: "monstrous"
  52845. },
  52846. {
  52847. name: "Ravenous",
  52848. height: math.unit(500, "meters"),
  52849. form: "monstrous"
  52850. },
  52851. {
  52852. name: "\"Normal\"",
  52853. height: math.unit(10, "meters"),
  52854. form: "taur"
  52855. },
  52856. {
  52857. name: "Macro",
  52858. height: math.unit(50, "meters"),
  52859. form: "taur"
  52860. },
  52861. ],
  52862. {
  52863. "normal": {
  52864. name: "Normal",
  52865. default: true
  52866. },
  52867. "monstrous": {
  52868. name: "Monstrous",
  52869. },
  52870. "taur": {
  52871. name: "Taur",
  52872. },
  52873. }
  52874. ))
  52875. characterMakers.push(() => makeCharacter(
  52876. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52877. {
  52878. front: {
  52879. height: math.unit(6 + 2/12, "feet"),
  52880. weight: math.unit(500, "lb"),
  52881. preyCapacity: math.unit(4, "people"),
  52882. name: "Front",
  52883. image: {
  52884. source: "./media/characters/yepir/front.svg"
  52885. }
  52886. },
  52887. side: {
  52888. height: math.unit(6 + 2/12, "feet"),
  52889. weight: math.unit(500, "lb"),
  52890. preyCapacity: math.unit(4, "people"),
  52891. name: "Side",
  52892. image: {
  52893. source: "./media/characters/yepir/side.svg"
  52894. }
  52895. },
  52896. paw: {
  52897. height: math.unit(1.05, "feet"),
  52898. name: "Paw",
  52899. image: {
  52900. source: "./media/characters/yepir/paw.svg"
  52901. }
  52902. },
  52903. },
  52904. [
  52905. {
  52906. name: "Normal",
  52907. height: math.unit(6 + 2/12, "feet"),
  52908. default: true
  52909. },
  52910. ]
  52911. ))
  52912. characterMakers.push(() => makeCharacter(
  52913. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52914. {
  52915. front: {
  52916. height: math.unit(5 + 4/12, "feet"),
  52917. name: "Front",
  52918. image: {
  52919. source: "./media/characters/russec/front.svg",
  52920. extra: 1926/1626,
  52921. bottom: 72/1998
  52922. }
  52923. },
  52924. back: {
  52925. height: math.unit(5 + 4/12, "feet"),
  52926. name: "Back",
  52927. image: {
  52928. source: "./media/characters/russec/back.svg",
  52929. extra: 1910/1591,
  52930. bottom: 48/1958
  52931. }
  52932. },
  52933. },
  52934. [
  52935. {
  52936. name: "Small",
  52937. height: math.unit(5 + 4/12, "feet")
  52938. },
  52939. {
  52940. name: "Normal",
  52941. height: math.unit(72, "feet"),
  52942. default: true
  52943. },
  52944. ]
  52945. ))
  52946. characterMakers.push(() => makeCharacter(
  52947. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52948. {
  52949. side: {
  52950. height: math.unit(12, "feet"),
  52951. name: "Side",
  52952. image: {
  52953. source: "./media/characters/cianus/side.svg",
  52954. extra: 808/526,
  52955. bottom: 61/869
  52956. }
  52957. },
  52958. },
  52959. [
  52960. {
  52961. name: "Normal",
  52962. height: math.unit(12, "feet"),
  52963. default: true
  52964. },
  52965. ]
  52966. ))
  52967. characterMakers.push(() => makeCharacter(
  52968. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52969. {
  52970. front: {
  52971. height: math.unit(9 + 6/12, "feet"),
  52972. weight: math.unit(300, "lb"),
  52973. name: "Front",
  52974. image: {
  52975. source: "./media/characters/ahab/front.svg",
  52976. extra: 1897/1868,
  52977. bottom: 121/2018
  52978. }
  52979. },
  52980. frontNsfw: {
  52981. height: math.unit(9 + 6/12, "feet"),
  52982. weight: math.unit(300, "lb"),
  52983. name: "Front-nsfw",
  52984. image: {
  52985. source: "./media/characters/ahab/front-nsfw.svg",
  52986. extra: 1897/1868,
  52987. bottom: 121/2018
  52988. }
  52989. },
  52990. },
  52991. [
  52992. {
  52993. name: "Normal",
  52994. height: math.unit(9 + 6/12, "feet")
  52995. },
  52996. {
  52997. name: "Macro",
  52998. height: math.unit(657, "feet"),
  52999. default: true
  53000. },
  53001. ]
  53002. ))
  53003. characterMakers.push(() => makeCharacter(
  53004. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53005. {
  53006. front: {
  53007. height: math.unit(2.69, "meters"),
  53008. weight: math.unit(132, "kg"),
  53009. name: "Front",
  53010. image: {
  53011. source: "./media/characters/aarkus/front.svg",
  53012. extra: 1400/1231,
  53013. bottom: 34/1434
  53014. }
  53015. },
  53016. back: {
  53017. height: math.unit(2.69, "meters"),
  53018. weight: math.unit(132, "kg"),
  53019. name: "Back",
  53020. image: {
  53021. source: "./media/characters/aarkus/back.svg",
  53022. extra: 1381/1218,
  53023. bottom: 30/1411
  53024. }
  53025. },
  53026. frontNsfw: {
  53027. height: math.unit(2.69, "meters"),
  53028. weight: math.unit(132, "kg"),
  53029. name: "Front (NSFW)",
  53030. image: {
  53031. source: "./media/characters/aarkus/front-nsfw.svg",
  53032. extra: 1400/1231,
  53033. bottom: 34/1434
  53034. }
  53035. },
  53036. foot: {
  53037. height: math.unit(1.45, "feet"),
  53038. name: "Foot",
  53039. image: {
  53040. source: "./media/characters/aarkus/foot.svg"
  53041. }
  53042. },
  53043. head: {
  53044. height: math.unit(2.85, "feet"),
  53045. name: "Head",
  53046. image: {
  53047. source: "./media/characters/aarkus/head.svg"
  53048. }
  53049. },
  53050. headAlt: {
  53051. height: math.unit(3.07, "feet"),
  53052. name: "Head (Alt)",
  53053. image: {
  53054. source: "./media/characters/aarkus/head-alt.svg"
  53055. }
  53056. },
  53057. mouth: {
  53058. height: math.unit(1.25, "feet"),
  53059. name: "Mouth",
  53060. image: {
  53061. source: "./media/characters/aarkus/mouth.svg"
  53062. }
  53063. },
  53064. dick: {
  53065. height: math.unit(1.77, "feet"),
  53066. name: "Dick",
  53067. image: {
  53068. source: "./media/characters/aarkus/dick.svg"
  53069. }
  53070. },
  53071. },
  53072. [
  53073. {
  53074. name: "Normal",
  53075. height: math.unit(2.69, "meters"),
  53076. default: true
  53077. },
  53078. {
  53079. name: "Macro",
  53080. height: math.unit(269, "meters")
  53081. },
  53082. {
  53083. name: "Macro+",
  53084. height: math.unit(672.5, "meters")
  53085. },
  53086. {
  53087. name: "Megamacro",
  53088. height: math.unit(2.017, "km")
  53089. },
  53090. ]
  53091. ))
  53092. characterMakers.push(() => makeCharacter(
  53093. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53094. {
  53095. front: {
  53096. height: math.unit(23.47, "cm"),
  53097. weight: math.unit(600, "grams"),
  53098. name: "Front",
  53099. image: {
  53100. source: "./media/characters/diode/front.svg",
  53101. extra: 1778/1396,
  53102. bottom: 95/1873
  53103. }
  53104. },
  53105. side: {
  53106. height: math.unit(23.47, "cm"),
  53107. weight: math.unit(600, "grams"),
  53108. name: "Side",
  53109. image: {
  53110. source: "./media/characters/diode/side.svg",
  53111. extra: 1831/1404,
  53112. bottom: 86/1917
  53113. }
  53114. },
  53115. wings: {
  53116. height: math.unit(0.683, "feet"),
  53117. name: "Wings",
  53118. image: {
  53119. source: "./media/characters/diode/wings.svg"
  53120. }
  53121. },
  53122. },
  53123. [
  53124. {
  53125. name: "Normal",
  53126. height: math.unit(23.47, "cm"),
  53127. default: true
  53128. },
  53129. ]
  53130. ))
  53131. characterMakers.push(() => makeCharacter(
  53132. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53133. {
  53134. front: {
  53135. height: math.unit(6 + 3/12, "feet"),
  53136. weight: math.unit(250, "lb"),
  53137. name: "Front",
  53138. image: {
  53139. source: "./media/characters/reika/front.svg",
  53140. extra: 1120/1078,
  53141. bottom: 86/1206
  53142. }
  53143. },
  53144. },
  53145. [
  53146. {
  53147. name: "Normal",
  53148. height: math.unit(6 + 3/12, "feet"),
  53149. default: true
  53150. },
  53151. ]
  53152. ))
  53153. characterMakers.push(() => makeCharacter(
  53154. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53155. {
  53156. front: {
  53157. height: math.unit(16 + 8/12, "feet"),
  53158. weight: math.unit(9000, "lb"),
  53159. name: "Front",
  53160. image: {
  53161. source: "./media/characters/lokuto-takama/front.svg",
  53162. extra: 1774/1632,
  53163. bottom: 147/1921
  53164. },
  53165. extraAttributes: {
  53166. "bustWidth": {
  53167. name: "Bust Width",
  53168. power: 1,
  53169. type: "length",
  53170. base: math.unit(2.4, "meters")
  53171. },
  53172. "breastWeight": {
  53173. name: "Breast Weight",
  53174. power: 3,
  53175. type: "mass",
  53176. base: math.unit(1000, "kg")
  53177. },
  53178. }
  53179. },
  53180. },
  53181. [
  53182. {
  53183. name: "Normal",
  53184. height: math.unit(16 + 8/12, "feet"),
  53185. default: true
  53186. },
  53187. ]
  53188. ))
  53189. characterMakers.push(() => makeCharacter(
  53190. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53191. {
  53192. front: {
  53193. height: math.unit(10, "cm"),
  53194. weight: math.unit(850, "grams"),
  53195. name: "Front",
  53196. image: {
  53197. source: "./media/characters/owak-bone/front.svg",
  53198. extra: 1965/1801,
  53199. bottom: 31/1996
  53200. }
  53201. },
  53202. },
  53203. [
  53204. {
  53205. name: "Normal",
  53206. height: math.unit(10, "cm"),
  53207. default: true
  53208. },
  53209. ]
  53210. ))
  53211. characterMakers.push(() => makeCharacter(
  53212. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53213. {
  53214. front: {
  53215. height: math.unit(2 + 6/12, "feet"),
  53216. weight: math.unit(9, "lb"),
  53217. name: "Front",
  53218. image: {
  53219. source: "./media/characters/muffin/front.svg",
  53220. extra: 1220/1195,
  53221. bottom: 84/1304
  53222. }
  53223. },
  53224. },
  53225. [
  53226. {
  53227. name: "Normal",
  53228. height: math.unit(2 + 6/12, "feet"),
  53229. default: true
  53230. },
  53231. ]
  53232. ))
  53233. characterMakers.push(() => makeCharacter(
  53234. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53235. {
  53236. front: {
  53237. height: math.unit(7, "feet"),
  53238. name: "Front",
  53239. image: {
  53240. source: "./media/characters/chimera/front.svg",
  53241. extra: 1752/1614,
  53242. bottom: 68/1820
  53243. }
  53244. },
  53245. },
  53246. [
  53247. {
  53248. name: "Normal",
  53249. height: math.unit(7, "feet")
  53250. },
  53251. {
  53252. name: "Gigamacro",
  53253. height: math.unit(2.9, "gigameters"),
  53254. default: true
  53255. },
  53256. {
  53257. name: "Universal",
  53258. height: math.unit(1.56e26, "yottameters")
  53259. },
  53260. ]
  53261. ))
  53262. characterMakers.push(() => makeCharacter(
  53263. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53264. {
  53265. front: {
  53266. height: math.unit(3, "feet"),
  53267. weight: math.unit(20, "lb"),
  53268. name: "Front",
  53269. image: {
  53270. source: "./media/characters/kit-fennec-fox/front.svg",
  53271. extra: 1027/932,
  53272. bottom: 16/1043
  53273. }
  53274. },
  53275. back: {
  53276. height: math.unit(3, "feet"),
  53277. weight: math.unit(20, "lb"),
  53278. name: "Back",
  53279. image: {
  53280. source: "./media/characters/kit-fennec-fox/back.svg",
  53281. extra: 1027/932,
  53282. bottom: 16/1043
  53283. }
  53284. },
  53285. },
  53286. [
  53287. {
  53288. name: "Normal",
  53289. height: math.unit(3, "feet"),
  53290. default: true
  53291. },
  53292. ]
  53293. ))
  53294. characterMakers.push(() => makeCharacter(
  53295. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53296. {
  53297. front: {
  53298. height: math.unit(167, "cm"),
  53299. name: "Front",
  53300. image: {
  53301. source: "./media/characters/blue-otter/front.svg",
  53302. extra: 1951/1920,
  53303. bottom: 31/1982
  53304. }
  53305. },
  53306. },
  53307. [
  53308. {
  53309. name: "Otter-Sized",
  53310. height: math.unit(100, "cm")
  53311. },
  53312. {
  53313. name: "Normal",
  53314. height: math.unit(167, "cm"),
  53315. default: true
  53316. },
  53317. ]
  53318. ))
  53319. characterMakers.push(() => makeCharacter(
  53320. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53321. {
  53322. front: {
  53323. height: math.unit(4 + 4/12, "feet"),
  53324. name: "Front",
  53325. image: {
  53326. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53327. extra: 1072/1067,
  53328. bottom: 117/1189
  53329. }
  53330. },
  53331. back: {
  53332. height: math.unit(4 + 4/12, "feet"),
  53333. name: "Back",
  53334. image: {
  53335. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53336. extra: 1135/1129,
  53337. bottom: 57/1192
  53338. }
  53339. },
  53340. head: {
  53341. height: math.unit(1.77, "feet"),
  53342. name: "Head",
  53343. image: {
  53344. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53345. }
  53346. },
  53347. },
  53348. [
  53349. {
  53350. name: "Normal",
  53351. height: math.unit(4 + 4/12, "feet"),
  53352. default: true
  53353. },
  53354. ]
  53355. ))
  53356. characterMakers.push(() => makeCharacter(
  53357. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53358. {
  53359. front: {
  53360. height: math.unit(2, "inches"),
  53361. name: "Front",
  53362. image: {
  53363. source: "./media/characters/carley-hartford/front.svg",
  53364. extra: 1035/988,
  53365. bottom: 23/1058
  53366. }
  53367. },
  53368. back: {
  53369. height: math.unit(2, "inches"),
  53370. name: "Back",
  53371. image: {
  53372. source: "./media/characters/carley-hartford/back.svg",
  53373. extra: 1035/988,
  53374. bottom: 23/1058
  53375. }
  53376. },
  53377. dressed: {
  53378. height: math.unit(2, "inches"),
  53379. name: "Dressed",
  53380. image: {
  53381. source: "./media/characters/carley-hartford/dressed.svg",
  53382. extra: 651/620,
  53383. bottom: 0/651
  53384. }
  53385. },
  53386. },
  53387. [
  53388. {
  53389. name: "Micro",
  53390. height: math.unit(2, "inches"),
  53391. default: true
  53392. },
  53393. {
  53394. name: "Macro",
  53395. height: math.unit(6 + 3/12, "feet")
  53396. },
  53397. ]
  53398. ))
  53399. characterMakers.push(() => makeCharacter(
  53400. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53401. {
  53402. front: {
  53403. height: math.unit(2 + 3/12, "feet"),
  53404. weight: math.unit(15 + 7/16, "lb"),
  53405. name: "Front",
  53406. image: {
  53407. source: "./media/characters/duke/front.svg",
  53408. extra: 910/815,
  53409. bottom: 30/940
  53410. }
  53411. },
  53412. },
  53413. [
  53414. {
  53415. name: "Normal",
  53416. height: math.unit(2 + 3/12, "feet"),
  53417. default: true
  53418. },
  53419. ]
  53420. ))
  53421. characterMakers.push(() => makeCharacter(
  53422. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53423. {
  53424. front: {
  53425. height: math.unit(5 + 4/12, "feet"),
  53426. weight: math.unit(156, "lb"),
  53427. name: "Front",
  53428. image: {
  53429. source: "./media/characters/dein/front.svg",
  53430. extra: 855/815,
  53431. bottom: 48/903
  53432. }
  53433. },
  53434. side: {
  53435. height: math.unit(5 + 4/12, "feet"),
  53436. weight: math.unit(156, "lb"),
  53437. name: "side",
  53438. image: {
  53439. source: "./media/characters/dein/side.svg",
  53440. extra: 846/803,
  53441. bottom: 25/871
  53442. }
  53443. },
  53444. maw: {
  53445. height: math.unit(1.45, "feet"),
  53446. name: "Maw",
  53447. image: {
  53448. source: "./media/characters/dein/maw.svg"
  53449. }
  53450. },
  53451. },
  53452. [
  53453. {
  53454. name: "Ferret Sized",
  53455. height: math.unit(2 + 5/12, "feet")
  53456. },
  53457. {
  53458. name: "Normal",
  53459. height: math.unit(5 + 4/12, "feet"),
  53460. default: true
  53461. },
  53462. ]
  53463. ))
  53464. characterMakers.push(() => makeCharacter(
  53465. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53466. {
  53467. front: {
  53468. height: math.unit(84 + 8/12, "feet"),
  53469. weight: math.unit(942180, "lb"),
  53470. name: "Front",
  53471. image: {
  53472. source: "./media/characters/daurine-arima/front.svg",
  53473. extra: 1989/1782,
  53474. bottom: 37/2026
  53475. }
  53476. },
  53477. side: {
  53478. height: math.unit(84 + 8/12, "feet"),
  53479. weight: math.unit(942180, "lb"),
  53480. name: "Side",
  53481. image: {
  53482. source: "./media/characters/daurine-arima/side.svg",
  53483. extra: 1997/1790,
  53484. bottom: 21/2018
  53485. }
  53486. },
  53487. back: {
  53488. height: math.unit(84 + 8/12, "feet"),
  53489. weight: math.unit(942180, "lb"),
  53490. name: "Back",
  53491. image: {
  53492. source: "./media/characters/daurine-arima/back.svg",
  53493. extra: 1992/1800,
  53494. bottom: 12/2004
  53495. }
  53496. },
  53497. head: {
  53498. height: math.unit(15.5, "feet"),
  53499. name: "Head",
  53500. image: {
  53501. source: "./media/characters/daurine-arima/head.svg"
  53502. }
  53503. },
  53504. headAlt: {
  53505. height: math.unit(19.19, "feet"),
  53506. name: "Head (Alt)",
  53507. image: {
  53508. source: "./media/characters/daurine-arima/head-alt.svg"
  53509. }
  53510. },
  53511. },
  53512. [
  53513. {
  53514. name: "Minimum height",
  53515. height: math.unit(8 + 10/12, "feet")
  53516. },
  53517. {
  53518. name: "Comfort height",
  53519. height: math.unit(19 + 6 /12, "feet")
  53520. },
  53521. {
  53522. name: "\"Normal\" height",
  53523. height: math.unit(28 + 10/12, "feet")
  53524. },
  53525. {
  53526. name: "Base height",
  53527. height: math.unit(84 + 8/12, "feet"),
  53528. default: true
  53529. },
  53530. {
  53531. name: "Mini-macro",
  53532. height: math.unit(2360, "feet")
  53533. },
  53534. {
  53535. name: "Macro",
  53536. height: math.unit(10, "miles")
  53537. },
  53538. {
  53539. name: "Goddess",
  53540. height: math.unit(9.99e40, "yottameters")
  53541. },
  53542. ]
  53543. ))
  53544. characterMakers.push(() => makeCharacter(
  53545. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53546. {
  53547. front: {
  53548. height: math.unit(2.3, "meters"),
  53549. name: "Front",
  53550. image: {
  53551. source: "./media/characters/cilenomon/front.svg",
  53552. extra: 1963/1778,
  53553. bottom: 54/2017
  53554. }
  53555. },
  53556. },
  53557. [
  53558. {
  53559. name: "Normal",
  53560. height: math.unit(2.3, "meters"),
  53561. default: true
  53562. },
  53563. {
  53564. name: "Big",
  53565. height: math.unit(5, "meters")
  53566. },
  53567. {
  53568. name: "Macro",
  53569. height: math.unit(30, "meters")
  53570. },
  53571. {
  53572. name: "True",
  53573. height: math.unit(1, "universe")
  53574. },
  53575. ]
  53576. ))
  53577. characterMakers.push(() => makeCharacter(
  53578. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53579. {
  53580. front: {
  53581. height: math.unit(5, "feet"),
  53582. name: "Front",
  53583. image: {
  53584. source: "./media/characters/sen-mink/front.svg",
  53585. extra: 1727/1675,
  53586. bottom: 35/1762
  53587. }
  53588. },
  53589. },
  53590. [
  53591. {
  53592. name: "Normal",
  53593. height: math.unit(5, "feet"),
  53594. default: true
  53595. },
  53596. ]
  53597. ))
  53598. characterMakers.push(() => makeCharacter(
  53599. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53600. {
  53601. front: {
  53602. height: math.unit(5.42999, "feet"),
  53603. weight: math.unit(100, "lb"),
  53604. name: "Front",
  53605. image: {
  53606. source: "./media/characters/ophois/front.svg",
  53607. extra: 1429/1286,
  53608. bottom: 60/1489
  53609. }
  53610. },
  53611. },
  53612. [
  53613. {
  53614. name: "Normal",
  53615. height: math.unit(5.42999, "feet"),
  53616. default: true
  53617. },
  53618. ]
  53619. ))
  53620. characterMakers.push(() => makeCharacter(
  53621. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53622. {
  53623. front: {
  53624. height: math.unit(2, "meters"),
  53625. name: "Front",
  53626. image: {
  53627. source: "./media/characters/riley/front.svg",
  53628. extra: 1779/1754,
  53629. bottom: 139/1918
  53630. }
  53631. },
  53632. },
  53633. [
  53634. {
  53635. name: "Normal",
  53636. height: math.unit(2, "meters"),
  53637. default: true
  53638. },
  53639. ]
  53640. ))
  53641. characterMakers.push(() => makeCharacter(
  53642. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53643. {
  53644. front: {
  53645. height: math.unit(6 + 2/12, "feet"),
  53646. weight: math.unit(195, "lb"),
  53647. preyCapacity: math.unit(6, "people"),
  53648. name: "Front",
  53649. image: {
  53650. source: "./media/characters/shuken-flash/front.svg",
  53651. extra: 1905/1739,
  53652. bottom: 65/1970
  53653. }
  53654. },
  53655. back: {
  53656. height: math.unit(6 + 2/12, "feet"),
  53657. weight: math.unit(195, "lb"),
  53658. preyCapacity: math.unit(6, "people"),
  53659. name: "Back",
  53660. image: {
  53661. source: "./media/characters/shuken-flash/back.svg",
  53662. extra: 1912/1751,
  53663. bottom: 13/1925
  53664. }
  53665. },
  53666. },
  53667. [
  53668. {
  53669. name: "Normal",
  53670. height: math.unit(6 + 2/12, "feet"),
  53671. default: true
  53672. },
  53673. ]
  53674. ))
  53675. characterMakers.push(() => makeCharacter(
  53676. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53677. {
  53678. front: {
  53679. height: math.unit(5 + 9/12, "feet"),
  53680. weight: math.unit(150, "lb"),
  53681. name: "Front",
  53682. image: {
  53683. source: "./media/characters/plat/front.svg",
  53684. extra: 1816/1703,
  53685. bottom: 43/1859
  53686. }
  53687. },
  53688. side: {
  53689. height: math.unit(5 + 9/12, "feet"),
  53690. weight: math.unit(300, "lb"),
  53691. name: "Side",
  53692. image: {
  53693. source: "./media/characters/plat/side.svg",
  53694. extra: 1824/1699,
  53695. bottom: 18/1842
  53696. }
  53697. },
  53698. },
  53699. [
  53700. {
  53701. name: "Normal",
  53702. height: math.unit(5 + 9/12, "feet"),
  53703. default: true
  53704. },
  53705. ]
  53706. ))
  53707. characterMakers.push(() => makeCharacter(
  53708. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53709. {
  53710. front: {
  53711. height: math.unit(9, "feet"),
  53712. weight: math.unit(1800, "lb"),
  53713. name: "Front",
  53714. image: {
  53715. source: "./media/characters/elaine/front.svg",
  53716. extra: 1833/1354,
  53717. bottom: 25/1858
  53718. }
  53719. },
  53720. back: {
  53721. height: math.unit(8.8, "feet"),
  53722. weight: math.unit(1800, "lb"),
  53723. name: "Back",
  53724. image: {
  53725. source: "./media/characters/elaine/back.svg",
  53726. extra: 1641/1233,
  53727. bottom: 53/1694
  53728. }
  53729. },
  53730. },
  53731. [
  53732. {
  53733. name: "Normal",
  53734. height: math.unit(9, "feet"),
  53735. default: true
  53736. },
  53737. ]
  53738. ))
  53739. characterMakers.push(() => makeCharacter(
  53740. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53741. {
  53742. front: {
  53743. height: math.unit(17 + 9/12, "feet"),
  53744. weight: math.unit(8000, "lb"),
  53745. name: "Front",
  53746. image: {
  53747. source: "./media/characters/vera-raven/front.svg",
  53748. extra: 1457/1412,
  53749. bottom: 121/1578
  53750. }
  53751. },
  53752. side: {
  53753. height: math.unit(17 + 9/12, "feet"),
  53754. weight: math.unit(8000, "lb"),
  53755. name: "Side",
  53756. image: {
  53757. source: "./media/characters/vera-raven/side.svg",
  53758. extra: 1510/1464,
  53759. bottom: 54/1564
  53760. }
  53761. },
  53762. },
  53763. [
  53764. {
  53765. name: "Normal",
  53766. height: math.unit(17 + 9/12, "feet"),
  53767. default: true
  53768. },
  53769. ]
  53770. ))
  53771. characterMakers.push(() => makeCharacter(
  53772. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53773. {
  53774. dressed: {
  53775. height: math.unit(6 + 9/12, "feet"),
  53776. name: "Dressed",
  53777. image: {
  53778. source: "./media/characters/nakisha/dressed.svg",
  53779. extra: 1909/1757,
  53780. bottom: 48/1957
  53781. }
  53782. },
  53783. nude: {
  53784. height: math.unit(6 + 9/12, "feet"),
  53785. name: "Nude",
  53786. image: {
  53787. source: "./media/characters/nakisha/nude.svg",
  53788. extra: 1917/1765,
  53789. bottom: 34/1951
  53790. }
  53791. },
  53792. },
  53793. [
  53794. {
  53795. name: "Normal",
  53796. height: math.unit(6 + 9/12, "feet"),
  53797. default: true
  53798. },
  53799. ]
  53800. ))
  53801. characterMakers.push(() => makeCharacter(
  53802. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53803. {
  53804. front: {
  53805. height: math.unit(87, "meters"),
  53806. name: "Front",
  53807. image: {
  53808. source: "./media/characters/serafin/front.svg",
  53809. extra: 1919/1776,
  53810. bottom: 65/1984
  53811. }
  53812. },
  53813. },
  53814. [
  53815. {
  53816. name: "Normal",
  53817. height: math.unit(87, "meters"),
  53818. default: true
  53819. },
  53820. ]
  53821. ))
  53822. characterMakers.push(() => makeCharacter(
  53823. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53824. {
  53825. front: {
  53826. height: math.unit(6, "feet"),
  53827. weight: math.unit(200, "lb"),
  53828. name: "Front",
  53829. image: {
  53830. source: "./media/characters/poptart/front.svg",
  53831. extra: 615/583,
  53832. bottom: 23/638
  53833. }
  53834. },
  53835. back: {
  53836. height: math.unit(6, "feet"),
  53837. weight: math.unit(200, "lb"),
  53838. name: "Back",
  53839. image: {
  53840. source: "./media/characters/poptart/back.svg",
  53841. extra: 617/584,
  53842. bottom: 22/639
  53843. }
  53844. },
  53845. frontNsfw: {
  53846. height: math.unit(6, "feet"),
  53847. weight: math.unit(200, "lb"),
  53848. name: "Front (NSFW)",
  53849. image: {
  53850. source: "./media/characters/poptart/front-nsfw.svg",
  53851. extra: 615/583,
  53852. bottom: 23/638
  53853. }
  53854. },
  53855. backNsfw: {
  53856. height: math.unit(6, "feet"),
  53857. weight: math.unit(200, "lb"),
  53858. name: "Back (NSFW)",
  53859. image: {
  53860. source: "./media/characters/poptart/back-nsfw.svg",
  53861. extra: 617/584,
  53862. bottom: 22/639
  53863. }
  53864. },
  53865. hand: {
  53866. height: math.unit(1.14, "feet"),
  53867. name: "Hand",
  53868. image: {
  53869. source: "./media/characters/poptart/hand.svg"
  53870. }
  53871. },
  53872. foot: {
  53873. height: math.unit(1.5, "feet"),
  53874. name: "Foot",
  53875. image: {
  53876. source: "./media/characters/poptart/foot.svg"
  53877. }
  53878. },
  53879. },
  53880. [
  53881. {
  53882. name: "Normal",
  53883. height: math.unit(6, "feet"),
  53884. default: true
  53885. },
  53886. {
  53887. name: "Grande",
  53888. height: math.unit(350, "feet")
  53889. },
  53890. {
  53891. name: "Massif",
  53892. height: math.unit(967, "feet")
  53893. },
  53894. ]
  53895. ))
  53896. characterMakers.push(() => makeCharacter(
  53897. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53898. {
  53899. hyenaSide: {
  53900. height: math.unit(120, "cm"),
  53901. weight: math.unit(120, "lb"),
  53902. name: "Side",
  53903. image: {
  53904. source: "./media/characters/trance/hyena-side.svg",
  53905. extra: 998/904,
  53906. bottom: 76/1074
  53907. }
  53908. },
  53909. },
  53910. [
  53911. {
  53912. name: "Normal",
  53913. height: math.unit(120, "cm"),
  53914. default: true
  53915. },
  53916. {
  53917. name: "Dire",
  53918. height: math.unit(230, "cm")
  53919. },
  53920. {
  53921. name: "Macro",
  53922. height: math.unit(37, "feet")
  53923. },
  53924. ]
  53925. ))
  53926. characterMakers.push(() => makeCharacter(
  53927. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53928. {
  53929. front: {
  53930. height: math.unit(6 + 3/12, "feet"),
  53931. name: "Front",
  53932. image: {
  53933. source: "./media/characters/michael-berretta/front.svg",
  53934. extra: 515/494,
  53935. bottom: 20/535
  53936. }
  53937. },
  53938. back: {
  53939. height: math.unit(6 + 3/12, "feet"),
  53940. name: "Back",
  53941. image: {
  53942. source: "./media/characters/michael-berretta/back.svg",
  53943. extra: 520/497,
  53944. bottom: 21/541
  53945. }
  53946. },
  53947. frontNsfw: {
  53948. height: math.unit(6 + 3/12, "feet"),
  53949. name: "Front (NSFW)",
  53950. image: {
  53951. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53952. extra: 515/494,
  53953. bottom: 20/535
  53954. }
  53955. },
  53956. dick: {
  53957. height: math.unit(1, "feet"),
  53958. name: "Dick",
  53959. image: {
  53960. source: "./media/characters/michael-berretta/dick.svg"
  53961. }
  53962. },
  53963. },
  53964. [
  53965. {
  53966. name: "Normal",
  53967. height: math.unit(6 + 3/12, "feet"),
  53968. default: true
  53969. },
  53970. {
  53971. name: "Big",
  53972. height: math.unit(12, "feet")
  53973. },
  53974. {
  53975. name: "Macro",
  53976. height: math.unit(187.5, "feet")
  53977. },
  53978. ]
  53979. ))
  53980. characterMakers.push(() => makeCharacter(
  53981. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53982. {
  53983. front: {
  53984. height: math.unit(9 + 9/12, "feet"),
  53985. weight: math.unit(1244, "lb"),
  53986. name: "Front",
  53987. image: {
  53988. source: "./media/characters/stella-edgecomb/front.svg",
  53989. extra: 1835/1706,
  53990. bottom: 49/1884
  53991. }
  53992. },
  53993. pen: {
  53994. height: math.unit(0.95, "feet"),
  53995. name: "Pen",
  53996. image: {
  53997. source: "./media/characters/stella-edgecomb/pen.svg"
  53998. }
  53999. },
  54000. },
  54001. [
  54002. {
  54003. name: "Cozy Bear",
  54004. height: math.unit(0.5, "inches")
  54005. },
  54006. {
  54007. name: "Normal",
  54008. height: math.unit(9 + 9/12, "feet"),
  54009. default: true
  54010. },
  54011. {
  54012. name: "Giga Bear",
  54013. height: math.unit(1, "mile")
  54014. },
  54015. {
  54016. name: "Great Bear",
  54017. height: math.unit(53, "miles")
  54018. },
  54019. {
  54020. name: "Goddess Bear",
  54021. height: math.unit(40000, "miles")
  54022. },
  54023. {
  54024. name: "Sun Bear",
  54025. height: math.unit(900000, "miles")
  54026. },
  54027. ]
  54028. ))
  54029. characterMakers.push(() => makeCharacter(
  54030. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54031. {
  54032. anthroFront: {
  54033. height: math.unit(556, "cm"),
  54034. weight: math.unit(2650, "kg"),
  54035. preyCapacity: math.unit(3, "people"),
  54036. name: "Front",
  54037. image: {
  54038. source: "./media/characters/ash´iika/front.svg",
  54039. extra: 710/673,
  54040. bottom: 15/725
  54041. },
  54042. form: "anthro",
  54043. default: true
  54044. },
  54045. anthroSide: {
  54046. height: math.unit(556, "cm"),
  54047. weight: math.unit(2650, "kg"),
  54048. preyCapacity: math.unit(3, "people"),
  54049. name: "Side",
  54050. image: {
  54051. source: "./media/characters/ash´iika/side.svg",
  54052. extra: 696/676,
  54053. bottom: 13/709
  54054. },
  54055. form: "anthro"
  54056. },
  54057. anthroDressed: {
  54058. height: math.unit(556, "cm"),
  54059. weight: math.unit(2650, "kg"),
  54060. preyCapacity: math.unit(3, "people"),
  54061. name: "Dressed",
  54062. image: {
  54063. source: "./media/characters/ash´iika/dressed.svg",
  54064. extra: 710/673,
  54065. bottom: 15/725
  54066. },
  54067. form: "anthro"
  54068. },
  54069. anthroHead: {
  54070. height: math.unit(3.5, "feet"),
  54071. name: "Head",
  54072. image: {
  54073. source: "./media/characters/ash´iika/head.svg",
  54074. extra: 348/291,
  54075. bottom: 45/393
  54076. },
  54077. form: "anthro"
  54078. },
  54079. feralSide: {
  54080. height: math.unit(870, "cm"),
  54081. weight: math.unit(17500, "kg"),
  54082. preyCapacity: math.unit(15, "people"),
  54083. name: "Side",
  54084. image: {
  54085. source: "./media/characters/ash´iika/feral.svg",
  54086. extra: 595/199,
  54087. bottom: 7/602
  54088. },
  54089. form: "feral",
  54090. default: true,
  54091. },
  54092. },
  54093. [
  54094. {
  54095. name: "Normal",
  54096. height: math.unit(556, "cm"),
  54097. default: true,
  54098. form: "anthro"
  54099. },
  54100. {
  54101. name: "Macro",
  54102. height: math.unit(88, "meters"),
  54103. form: "anthro"
  54104. },
  54105. {
  54106. name: "Normal",
  54107. height: math.unit(870, "cm"),
  54108. default: true,
  54109. form: "feral"
  54110. },
  54111. {
  54112. name: "Large",
  54113. height: math.unit(25, "meters"),
  54114. form: "feral"
  54115. },
  54116. ],
  54117. {
  54118. "anthro": {
  54119. name: "Anthro",
  54120. default: true
  54121. },
  54122. "feral": {
  54123. name: "Feral",
  54124. },
  54125. }
  54126. ))
  54127. characterMakers.push(() => makeCharacter(
  54128. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54129. {
  54130. front: {
  54131. height: math.unit(10, "feet"),
  54132. weight: math.unit(800, "lb"),
  54133. name: "Front",
  54134. image: {
  54135. source: "./media/characters/yen/front.svg",
  54136. extra: 443/411,
  54137. bottom: 6/449
  54138. }
  54139. },
  54140. sleeping: {
  54141. height: math.unit(10, "feet"),
  54142. weight: math.unit(800, "lb"),
  54143. name: "Sleeping",
  54144. image: {
  54145. source: "./media/characters/yen/sleeping.svg",
  54146. extra: 470/422,
  54147. bottom: 0/470
  54148. }
  54149. },
  54150. head: {
  54151. height: math.unit(2.2, "feet"),
  54152. name: "Head",
  54153. image: {
  54154. source: "./media/characters/yen/head.svg"
  54155. }
  54156. },
  54157. headAlt: {
  54158. height: math.unit(2.1, "feet"),
  54159. name: "Head (Alt)",
  54160. image: {
  54161. source: "./media/characters/yen/head-alt.svg"
  54162. }
  54163. },
  54164. },
  54165. [
  54166. {
  54167. name: "Normal",
  54168. height: math.unit(10, "feet"),
  54169. default: true
  54170. },
  54171. ]
  54172. ))
  54173. characterMakers.push(() => makeCharacter(
  54174. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54175. {
  54176. front: {
  54177. height: math.unit(12, "feet"),
  54178. name: "Front",
  54179. image: {
  54180. source: "./media/characters/citra/front.svg",
  54181. extra: 1950/1710,
  54182. bottom: 47/1997
  54183. }
  54184. },
  54185. },
  54186. [
  54187. {
  54188. name: "Normal",
  54189. height: math.unit(12, "feet"),
  54190. default: true
  54191. },
  54192. ]
  54193. ))
  54194. characterMakers.push(() => makeCharacter(
  54195. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54196. {
  54197. side: {
  54198. height: math.unit(7 + 10/12, "feet"),
  54199. name: "Side",
  54200. image: {
  54201. source: "./media/characters/sholstim/side.svg",
  54202. extra: 786/682,
  54203. bottom: 40/826
  54204. }
  54205. },
  54206. },
  54207. [
  54208. {
  54209. name: "Normal",
  54210. height: math.unit(7 + 10/12, "feet"),
  54211. default: true
  54212. },
  54213. ]
  54214. ))
  54215. characterMakers.push(() => makeCharacter(
  54216. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54217. {
  54218. front: {
  54219. height: math.unit(3.10, "meters"),
  54220. name: "Front",
  54221. image: {
  54222. source: "./media/characters/aggyn/front.svg",
  54223. extra: 1188/963,
  54224. bottom: 24/1212
  54225. }
  54226. },
  54227. },
  54228. [
  54229. {
  54230. name: "Normal",
  54231. height: math.unit(3.10, "meters"),
  54232. default: true
  54233. },
  54234. ]
  54235. ))
  54236. characterMakers.push(() => makeCharacter(
  54237. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54238. {
  54239. front: {
  54240. height: math.unit(7 + 5/12, "feet"),
  54241. weight: math.unit(687, "lb"),
  54242. name: "Front",
  54243. image: {
  54244. source: "./media/characters/alsandair-hergenroether/front.svg",
  54245. extra: 1251/1186,
  54246. bottom: 75/1326
  54247. }
  54248. },
  54249. back: {
  54250. height: math.unit(7 + 5/12, "feet"),
  54251. weight: math.unit(687, "lb"),
  54252. name: "Back",
  54253. image: {
  54254. source: "./media/characters/alsandair-hergenroether/back.svg",
  54255. extra: 1290/1229,
  54256. bottom: 17/1307
  54257. }
  54258. },
  54259. },
  54260. [
  54261. {
  54262. name: "Max Compression",
  54263. height: math.unit(7 + 5/12, "feet"),
  54264. default: true
  54265. },
  54266. {
  54267. name: "\"Normal\"",
  54268. height: math.unit(2, "universes")
  54269. },
  54270. ]
  54271. ))
  54272. characterMakers.push(() => makeCharacter(
  54273. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54274. {
  54275. front: {
  54276. height: math.unit(4 + 1/12, "feet"),
  54277. weight: math.unit(92, "lb"),
  54278. name: "Front",
  54279. image: {
  54280. source: "./media/characters/ie/front.svg",
  54281. extra: 1585/1352,
  54282. bottom: 91/1676
  54283. }
  54284. },
  54285. },
  54286. [
  54287. {
  54288. name: "Normal",
  54289. height: math.unit(4 + 1/12, "feet"),
  54290. default: true
  54291. },
  54292. ]
  54293. ))
  54294. characterMakers.push(() => makeCharacter(
  54295. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54296. {
  54297. anthro: {
  54298. height: math.unit(6, "feet"),
  54299. weight: math.unit(150, "lb"),
  54300. name: "Front",
  54301. image: {
  54302. source: "./media/characters/willow/anthro.svg",
  54303. extra: 1073/986,
  54304. bottom: 34/1107
  54305. },
  54306. form: "anthro",
  54307. default: true
  54308. },
  54309. taur: {
  54310. height: math.unit(6, "feet"),
  54311. weight: math.unit(150, "lb"),
  54312. name: "Side",
  54313. image: {
  54314. source: "./media/characters/willow/taur.svg",
  54315. extra: 647/512,
  54316. bottom: 136/783
  54317. },
  54318. form: "taur",
  54319. default: true
  54320. },
  54321. },
  54322. [
  54323. {
  54324. name: "Humanoid",
  54325. height: math.unit(2.7, "meters"),
  54326. form: "anthro"
  54327. },
  54328. {
  54329. name: "Normal",
  54330. height: math.unit(9, "meters"),
  54331. form: "anthro",
  54332. default: true
  54333. },
  54334. {
  54335. name: "Humanoid",
  54336. height: math.unit(2.1, "meters"),
  54337. form: "taur"
  54338. },
  54339. {
  54340. name: "Normal",
  54341. height: math.unit(7, "meters"),
  54342. form: "taur",
  54343. default: true
  54344. },
  54345. ],
  54346. {
  54347. "anthro": {
  54348. name: "Anthro",
  54349. default: true
  54350. },
  54351. "taur": {
  54352. name: "Taur",
  54353. },
  54354. }
  54355. ))
  54356. characterMakers.push(() => makeCharacter(
  54357. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54358. {
  54359. front: {
  54360. height: math.unit(2 + 5/12, "feet"),
  54361. name: "Front",
  54362. image: {
  54363. source: "./media/characters/kyan/front.svg",
  54364. extra: 460/334,
  54365. bottom: 23/483
  54366. },
  54367. extraAttributes: {
  54368. "toeLength": {
  54369. name: "Toe Length",
  54370. power: 1,
  54371. type: "length",
  54372. base: math.unit(7, "cm")
  54373. },
  54374. "toeclawLength": {
  54375. name: "Toeclaw Length",
  54376. power: 1,
  54377. type: "length",
  54378. base: math.unit(4.7, "cm")
  54379. },
  54380. "earHeight": {
  54381. name: "Ear Height",
  54382. power: 1,
  54383. type: "length",
  54384. base: math.unit(14.1, "cm")
  54385. },
  54386. }
  54387. },
  54388. paws: {
  54389. height: math.unit(0.45, "feet"),
  54390. name: "Paws",
  54391. image: {
  54392. source: "./media/characters/kyan/paws.svg",
  54393. extra: 581/581,
  54394. bottom: 114/695
  54395. }
  54396. },
  54397. },
  54398. [
  54399. {
  54400. name: "Normal",
  54401. height: math.unit(2 + 5/12, "feet"),
  54402. default: true
  54403. },
  54404. ]
  54405. ))
  54406. characterMakers.push(() => makeCharacter(
  54407. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54408. {
  54409. front: {
  54410. height: math.unit(2 + 2/3, "feet"),
  54411. name: "Front",
  54412. image: {
  54413. source: "./media/characters/xazzon/front.svg",
  54414. extra: 1109/984,
  54415. bottom: 42/1151
  54416. }
  54417. },
  54418. back: {
  54419. height: math.unit(2 + 2/3, "feet"),
  54420. name: "Back",
  54421. image: {
  54422. source: "./media/characters/xazzon/back.svg",
  54423. extra: 1095/971,
  54424. bottom: 23/1118
  54425. }
  54426. },
  54427. },
  54428. [
  54429. {
  54430. name: "Normal",
  54431. height: math.unit(2 + 2/3, "feet"),
  54432. default: true
  54433. },
  54434. ]
  54435. ))
  54436. characterMakers.push(() => makeCharacter(
  54437. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54438. {
  54439. dressed: {
  54440. height: math.unit(5 + 7/12, "feet"),
  54441. weight: math.unit(173, "lb"),
  54442. name: "Dressed",
  54443. image: {
  54444. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54445. extra: 3262/2862,
  54446. bottom: 188/3450
  54447. }
  54448. },
  54449. undressed: {
  54450. height: math.unit(5 + 7/12, "feet"),
  54451. weight: math.unit(173, "lb"),
  54452. name: "Undressed",
  54453. image: {
  54454. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54455. extra: 3262/2862,
  54456. bottom: 188/3450
  54457. }
  54458. },
  54459. },
  54460. [
  54461. {
  54462. name: "The void",
  54463. height: math.unit(7.29193e-34, "angstroms")
  54464. },
  54465. {
  54466. name: "Uh-Oh.",
  54467. height: math.unit(5.734e-7, "angstroms")
  54468. },
  54469. {
  54470. name: "Pico",
  54471. height: math.unit(0.876, "angstroms")
  54472. },
  54473. {
  54474. name: "Nano",
  54475. height: math.unit(0.000134200, "mm")
  54476. },
  54477. {
  54478. name: "Micro",
  54479. height: math.unit(0.0673020, "mm")
  54480. },
  54481. {
  54482. name: "Tiny",
  54483. height: math.unit(2.4, "mm")
  54484. },
  54485. {
  54486. name: "Actual Normal",
  54487. height: math.unit(3, "inches"),
  54488. default: true
  54489. },
  54490. {
  54491. name: "Normal",
  54492. height: math.unit(5 + 8/12, "feet")
  54493. },
  54494. {
  54495. name: "Giant",
  54496. height: math.unit(12, "feet")
  54497. },
  54498. {
  54499. name: "City Ruler",
  54500. height: math.unit(270, "meters")
  54501. },
  54502. {
  54503. name: "Giga",
  54504. height: math.unit(1117.6, "km")
  54505. },
  54506. {
  54507. name: "All-Powerful Queen",
  54508. height: math.unit(70.8, "gigameters")
  54509. },
  54510. {
  54511. name: "'Goddess'",
  54512. height: math.unit(600, "yottameters")
  54513. },
  54514. {
  54515. name: "Biggest!",
  54516. height: math.unit(4.23e5, "yottameters")
  54517. },
  54518. ]
  54519. ))
  54520. characterMakers.push(() => makeCharacter(
  54521. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54522. {
  54523. front: {
  54524. height: math.unit(8, "feet"),
  54525. weight: math.unit(300, "lb"),
  54526. name: "Front",
  54527. image: {
  54528. source: "./media/characters/khyla-shadowsong/front.svg",
  54529. extra: 861/798,
  54530. bottom: 32/893
  54531. }
  54532. },
  54533. side: {
  54534. height: math.unit(8, "feet"),
  54535. weight: math.unit(300, "lb"),
  54536. name: "Side",
  54537. image: {
  54538. source: "./media/characters/khyla-shadowsong/side.svg",
  54539. extra: 790/750,
  54540. bottom: 87/877
  54541. }
  54542. },
  54543. back: {
  54544. height: math.unit(8, "feet"),
  54545. weight: math.unit(300, "lb"),
  54546. name: "Back",
  54547. image: {
  54548. source: "./media/characters/khyla-shadowsong/back.svg",
  54549. extra: 855/808,
  54550. bottom: 14/869
  54551. }
  54552. },
  54553. head: {
  54554. height: math.unit(2.7, "feet"),
  54555. name: "Head",
  54556. image: {
  54557. source: "./media/characters/khyla-shadowsong/head.svg"
  54558. }
  54559. },
  54560. },
  54561. [
  54562. {
  54563. name: "Micro",
  54564. height: math.unit(6, "inches")
  54565. },
  54566. {
  54567. name: "Normal",
  54568. height: math.unit(8, "feet"),
  54569. default: true
  54570. },
  54571. ]
  54572. ))
  54573. characterMakers.push(() => makeCharacter(
  54574. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54575. {
  54576. hyperFront: {
  54577. height: math.unit(9 + 4/12, "feet"),
  54578. weight: math.unit(2000, "lb"),
  54579. name: "Front",
  54580. image: {
  54581. source: "./media/characters/tiden/hyper-front.svg",
  54582. extra: 400/382,
  54583. bottom: 6/406
  54584. },
  54585. form: "hyper",
  54586. },
  54587. regularFront: {
  54588. height: math.unit(7 + 10/12, "feet"),
  54589. weight: math.unit(470, "lb"),
  54590. name: "Front",
  54591. image: {
  54592. source: "./media/characters/tiden/regular-front.svg",
  54593. extra: 468/442,
  54594. bottom: 6/474
  54595. },
  54596. form: "regular",
  54597. },
  54598. },
  54599. [
  54600. {
  54601. name: "Normal",
  54602. height: math.unit(9 + 4/12, "feet"),
  54603. default: true,
  54604. form: "hyper"
  54605. },
  54606. {
  54607. name: "Normal",
  54608. height: math.unit(7 + 10/12, "feet"),
  54609. default: true,
  54610. form: "regular"
  54611. },
  54612. ],
  54613. {
  54614. "hyper": {
  54615. name: "Hyper",
  54616. default: true
  54617. },
  54618. "regular": {
  54619. name: "Regular",
  54620. },
  54621. }
  54622. ))
  54623. characterMakers.push(() => makeCharacter(
  54624. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54625. {
  54626. side: {
  54627. height: math.unit(6, "feet"),
  54628. weight: math.unit(150, "lb"),
  54629. name: "Side",
  54630. image: {
  54631. source: "./media/characters/jason-crowe/side.svg",
  54632. extra: 1771/766,
  54633. bottom: 219/1990
  54634. }
  54635. },
  54636. },
  54637. [
  54638. {
  54639. name: "Pocket Gryphon",
  54640. height: math.unit(6, "cm")
  54641. },
  54642. {
  54643. name: "Raven",
  54644. height: math.unit(60, "cm")
  54645. },
  54646. {
  54647. name: "Normal",
  54648. height: math.unit(1, "meter"),
  54649. default: true
  54650. },
  54651. ]
  54652. ))
  54653. characterMakers.push(() => makeCharacter(
  54654. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54655. {
  54656. front: {
  54657. height: math.unit(9 + 6/12, "feet"),
  54658. weight: math.unit(1100, "lb"),
  54659. name: "Front",
  54660. image: {
  54661. source: "./media/characters/django/front.svg",
  54662. extra: 1231/1136,
  54663. bottom: 34/1265
  54664. }
  54665. },
  54666. side: {
  54667. height: math.unit(9 + 6/12, "feet"),
  54668. weight: math.unit(1100, "lb"),
  54669. name: "Side",
  54670. image: {
  54671. source: "./media/characters/django/side.svg",
  54672. extra: 1267/1174,
  54673. bottom: 9/1276
  54674. }
  54675. },
  54676. },
  54677. [
  54678. {
  54679. name: "Normal",
  54680. height: math.unit(9 + 6/12, "feet"),
  54681. default: true
  54682. },
  54683. {
  54684. name: "Macro 1",
  54685. height: math.unit(50, "feet")
  54686. },
  54687. {
  54688. name: "Macro 2",
  54689. height: math.unit(500, "feet")
  54690. },
  54691. {
  54692. name: "Mega Macro",
  54693. height: math.unit(5300, "feet")
  54694. },
  54695. ]
  54696. ))
  54697. characterMakers.push(() => makeCharacter(
  54698. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54699. {
  54700. frontSfw: {
  54701. height: math.unit(120, "cm"),
  54702. weight: math.unit(15, "kg"),
  54703. name: "Front (SFW)",
  54704. image: {
  54705. source: "./media/characters/eri/front-sfw.svg",
  54706. extra: 1014/939,
  54707. bottom: 37/1051
  54708. },
  54709. form: "moth",
  54710. },
  54711. frontNsfw: {
  54712. height: math.unit(120, "cm"),
  54713. weight: math.unit(15, "kg"),
  54714. name: "Front (NSFW)",
  54715. image: {
  54716. source: "./media/characters/eri/front-nsfw.svg",
  54717. extra: 1014/939,
  54718. bottom: 37/1051
  54719. },
  54720. form: "moth",
  54721. default: true
  54722. },
  54723. egg: {
  54724. height: math.unit(10, "cm"),
  54725. name: "Egg",
  54726. image: {
  54727. source: "./media/characters/eri/egg.svg"
  54728. },
  54729. form: "egg",
  54730. default: true
  54731. },
  54732. },
  54733. [
  54734. {
  54735. name: "Normal",
  54736. height: math.unit(120, "cm"),
  54737. default: true,
  54738. form: "moth"
  54739. },
  54740. {
  54741. name: "Normal",
  54742. height: math.unit(10, "cm"),
  54743. default: true,
  54744. form: "egg"
  54745. },
  54746. ],
  54747. {
  54748. "moth": {
  54749. name: "Moth",
  54750. default: true
  54751. },
  54752. "egg": {
  54753. name: "Egg",
  54754. },
  54755. }
  54756. ))
  54757. characterMakers.push(() => makeCharacter(
  54758. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54759. {
  54760. front: {
  54761. height: math.unit(200, "feet"),
  54762. name: "Front",
  54763. image: {
  54764. source: "./media/characters/bishop-dowser/front.svg",
  54765. extra: 933/868,
  54766. bottom: 106/1039
  54767. }
  54768. },
  54769. },
  54770. [
  54771. {
  54772. name: "Giant",
  54773. height: math.unit(200, "feet"),
  54774. default: true
  54775. },
  54776. ]
  54777. ))
  54778. characterMakers.push(() => makeCharacter(
  54779. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54780. {
  54781. front: {
  54782. height: math.unit(2, "meters"),
  54783. preyCapacity: math.unit(3, "people"),
  54784. name: "Front",
  54785. image: {
  54786. source: "./media/characters/fryra/front.svg",
  54787. extra: 1025/948,
  54788. bottom: 30/1055
  54789. },
  54790. extraAttributes: {
  54791. "breastVolume": {
  54792. name: "Breast Volume",
  54793. power: 3,
  54794. type: "volume",
  54795. base: math.unit(8, "liters")
  54796. },
  54797. }
  54798. },
  54799. back: {
  54800. height: math.unit(2, "meters"),
  54801. preyCapacity: math.unit(3, "people"),
  54802. name: "Back",
  54803. image: {
  54804. source: "./media/characters/fryra/back.svg",
  54805. extra: 993/938,
  54806. bottom: 38/1031
  54807. },
  54808. extraAttributes: {
  54809. "breastVolume": {
  54810. name: "Breast Volume",
  54811. power: 3,
  54812. type: "volume",
  54813. base: math.unit(8, "liters")
  54814. },
  54815. }
  54816. },
  54817. head: {
  54818. height: math.unit(1.33, "feet"),
  54819. name: "Head",
  54820. image: {
  54821. source: "./media/characters/fryra/head.svg"
  54822. }
  54823. },
  54824. maw: {
  54825. height: math.unit(0.56, "feet"),
  54826. name: "Maw",
  54827. image: {
  54828. source: "./media/characters/fryra/maw.svg"
  54829. }
  54830. },
  54831. },
  54832. [
  54833. {
  54834. name: "Micro",
  54835. height: math.unit(5, "cm")
  54836. },
  54837. {
  54838. name: "Normal",
  54839. height: math.unit(2, "meters"),
  54840. default: true
  54841. },
  54842. {
  54843. name: "Small Macro",
  54844. height: math.unit(8, "meters")
  54845. },
  54846. {
  54847. name: "Macro",
  54848. height: math.unit(50, "meters")
  54849. },
  54850. {
  54851. name: "Megamacro",
  54852. height: math.unit(1, "km")
  54853. },
  54854. {
  54855. name: "Planetary",
  54856. height: math.unit(300000, "km")
  54857. },
  54858. {
  54859. name: "Universal",
  54860. height: math.unit(250, "lightyears")
  54861. },
  54862. {
  54863. name: "Fabric of Reality",
  54864. height: math.unit(1000, "multiverses")
  54865. },
  54866. ]
  54867. ))
  54868. characterMakers.push(() => makeCharacter(
  54869. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54870. {
  54871. frontDressed: {
  54872. height: math.unit(6 + 2/12, "feet"),
  54873. name: "Front (Dressed)",
  54874. image: {
  54875. source: "./media/characters/fiera/front-dressed.svg",
  54876. extra: 1883/1793,
  54877. bottom: 70/1953
  54878. }
  54879. },
  54880. backDressed: {
  54881. height: math.unit(6 + 2/12, "feet"),
  54882. name: "Back (Dressed)",
  54883. image: {
  54884. source: "./media/characters/fiera/back-dressed.svg",
  54885. extra: 1847/1780,
  54886. bottom: 70/1917
  54887. }
  54888. },
  54889. frontNude: {
  54890. height: math.unit(6 + 2/12, "feet"),
  54891. name: "Front (Nude)",
  54892. image: {
  54893. source: "./media/characters/fiera/front-nude.svg",
  54894. extra: 1875/1785,
  54895. bottom: 66/1941
  54896. }
  54897. },
  54898. backNude: {
  54899. height: math.unit(6 + 2/12, "feet"),
  54900. name: "Back (Nude)",
  54901. image: {
  54902. source: "./media/characters/fiera/back-nude.svg",
  54903. extra: 1855/1788,
  54904. bottom: 44/1899
  54905. }
  54906. },
  54907. maw: {
  54908. height: math.unit(1.3, "feet"),
  54909. name: "Maw",
  54910. image: {
  54911. source: "./media/characters/fiera/maw.svg"
  54912. }
  54913. },
  54914. paw: {
  54915. height: math.unit(1, "feet"),
  54916. name: "Paw",
  54917. image: {
  54918. source: "./media/characters/fiera/paw.svg"
  54919. }
  54920. },
  54921. shoe: {
  54922. height: math.unit(1.05, "feet"),
  54923. name: "Shoe",
  54924. image: {
  54925. source: "./media/characters/fiera/shoe.svg"
  54926. }
  54927. },
  54928. },
  54929. [
  54930. {
  54931. name: "Normal",
  54932. height: math.unit(6 + 2/12, "feet"),
  54933. default: true
  54934. },
  54935. {
  54936. name: "Size Difference",
  54937. height: math.unit(13, "feet")
  54938. },
  54939. {
  54940. name: "Macro",
  54941. height: math.unit(60, "feet")
  54942. },
  54943. {
  54944. name: "Mega Macro",
  54945. height: math.unit(200, "feet")
  54946. },
  54947. ]
  54948. ))
  54949. characterMakers.push(() => makeCharacter(
  54950. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54951. {
  54952. back: {
  54953. height: math.unit(6, "feet"),
  54954. name: "Back",
  54955. image: {
  54956. source: "./media/characters/flare/back.svg",
  54957. extra: 1883/1765,
  54958. bottom: 32/1915
  54959. }
  54960. },
  54961. },
  54962. [
  54963. {
  54964. name: "Normal",
  54965. height: math.unit(6 + 2/12, "feet"),
  54966. default: true
  54967. },
  54968. {
  54969. name: "Size Difference",
  54970. height: math.unit(13, "feet")
  54971. },
  54972. {
  54973. name: "Macro",
  54974. height: math.unit(60, "feet")
  54975. },
  54976. {
  54977. name: "Macro 2",
  54978. height: math.unit(100, "feet")
  54979. },
  54980. {
  54981. name: "Mega Macro",
  54982. height: math.unit(200, "feet")
  54983. },
  54984. ]
  54985. ))
  54986. characterMakers.push(() => makeCharacter(
  54987. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54988. {
  54989. front: {
  54990. height: math.unit(2.2, "m"),
  54991. weight: math.unit(300, "kg"),
  54992. name: "Front",
  54993. image: {
  54994. source: "./media/characters/hanna/front.svg",
  54995. extra: 1696/1502,
  54996. bottom: 206/1902
  54997. }
  54998. },
  54999. },
  55000. [
  55001. {
  55002. name: "Humanoid",
  55003. height: math.unit(2.2, "meters")
  55004. },
  55005. {
  55006. name: "Normal",
  55007. height: math.unit(4.8, "meters"),
  55008. default: true
  55009. },
  55010. ]
  55011. ))
  55012. characterMakers.push(() => makeCharacter(
  55013. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55014. {
  55015. front: {
  55016. height: math.unit(2.8, "meters"),
  55017. name: "Front",
  55018. image: {
  55019. source: "./media/characters/argo/front.svg",
  55020. extra: 731/518,
  55021. bottom: 84/815
  55022. }
  55023. },
  55024. },
  55025. [
  55026. {
  55027. name: "Normal",
  55028. height: math.unit(3, "meters"),
  55029. default: true
  55030. },
  55031. ]
  55032. ))
  55033. characterMakers.push(() => makeCharacter(
  55034. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55035. {
  55036. side: {
  55037. height: math.unit(3.8, "meters"),
  55038. name: "Side",
  55039. image: {
  55040. source: "./media/characters/sybil/side.svg",
  55041. extra: 382/361,
  55042. bottom: 25/407
  55043. }
  55044. },
  55045. },
  55046. [
  55047. {
  55048. name: "Normal",
  55049. height: math.unit(3.8, "meters"),
  55050. default: true
  55051. },
  55052. ]
  55053. ))
  55054. characterMakers.push(() => makeCharacter(
  55055. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55056. {
  55057. side: {
  55058. height: math.unit(6, "meters"),
  55059. name: "Side",
  55060. image: {
  55061. source: "./media/characters/plum/side.svg",
  55062. extra: 858/755,
  55063. bottom: 45/903
  55064. },
  55065. form: "taur",
  55066. default: true
  55067. },
  55068. back: {
  55069. height: math.unit(6.3, "meters"),
  55070. name: "Back",
  55071. image: {
  55072. source: "./media/characters/plum/back.svg",
  55073. extra: 887/813,
  55074. bottom: 32/919
  55075. },
  55076. form: "taur",
  55077. },
  55078. feral: {
  55079. height: math.unit(5.5, "meter"),
  55080. name: "Front",
  55081. image: {
  55082. source: "./media/characters/plum/feral.svg",
  55083. extra: 568/403,
  55084. bottom: 51/619
  55085. },
  55086. form: "feral",
  55087. default: true
  55088. },
  55089. head: {
  55090. height: math.unit(1.46, "meter"),
  55091. name: "Head",
  55092. image: {
  55093. source: "./media/characters/plum/head.svg"
  55094. },
  55095. form: "taur"
  55096. },
  55097. tailTop: {
  55098. height: math.unit(5.6, "meter"),
  55099. name: "Tail (Top)",
  55100. image: {
  55101. source: "./media/characters/plum/tail-top.svg"
  55102. },
  55103. form: "taur",
  55104. },
  55105. tailBottom: {
  55106. height: math.unit(5.6, "meter"),
  55107. name: "Tail (Bottom)",
  55108. image: {
  55109. source: "./media/characters/plum/tail-bottom.svg"
  55110. },
  55111. form: "taur",
  55112. },
  55113. feralHead: {
  55114. height: math.unit(2.56549521, "meter"),
  55115. name: "Head",
  55116. image: {
  55117. source: "./media/characters/plum/head.svg"
  55118. },
  55119. form: "feral"
  55120. },
  55121. feralTailTop: {
  55122. height: math.unit(5.44728435, "meter"),
  55123. name: "Tail (Top)",
  55124. image: {
  55125. source: "./media/characters/plum/tail-top.svg"
  55126. },
  55127. form: "feral",
  55128. },
  55129. feralTailBottom: {
  55130. height: math.unit(5.44728435, "meter"),
  55131. name: "Tail (Bottom)",
  55132. image: {
  55133. source: "./media/characters/plum/tail-bottom.svg"
  55134. },
  55135. form: "feral",
  55136. },
  55137. },
  55138. [
  55139. {
  55140. name: "Normal",
  55141. height: math.unit(6, "meters"),
  55142. default: true,
  55143. form: "taur"
  55144. },
  55145. {
  55146. name: "Normal",
  55147. height: math.unit(5.5, "meters"),
  55148. default: true,
  55149. form: "feral"
  55150. },
  55151. ],
  55152. {
  55153. "taur": {
  55154. name: "Taur",
  55155. default: true
  55156. },
  55157. "feral": {
  55158. name: "Feral",
  55159. },
  55160. }
  55161. ))
  55162. characterMakers.push(() => makeCharacter(
  55163. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55164. {
  55165. front: {
  55166. height: math.unit(6, "feet"),
  55167. weight: math.unit(115, "lb"),
  55168. name: "Front",
  55169. image: {
  55170. source: "./media/characters/celeste-kitsune/front.svg",
  55171. extra: 393/366,
  55172. bottom: 7/400
  55173. }
  55174. },
  55175. side: {
  55176. height: math.unit(6, "feet"),
  55177. weight: math.unit(115, "lb"),
  55178. name: "Side",
  55179. image: {
  55180. source: "./media/characters/celeste-kitsune/side.svg",
  55181. extra: 818/765,
  55182. bottom: 40/858
  55183. }
  55184. },
  55185. },
  55186. [
  55187. {
  55188. name: "Megamacro",
  55189. height: math.unit(1500, "miles"),
  55190. default: true
  55191. },
  55192. ]
  55193. ))
  55194. characterMakers.push(() => makeCharacter(
  55195. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55196. {
  55197. front: {
  55198. height: math.unit(8, "meters"),
  55199. name: "Front",
  55200. image: {
  55201. source: "./media/characters/io/front.svg",
  55202. extra: 865/722,
  55203. bottom: 58/923
  55204. }
  55205. },
  55206. back: {
  55207. height: math.unit(8, "meters"),
  55208. name: "Back",
  55209. image: {
  55210. source: "./media/characters/io/back.svg",
  55211. extra: 920/776,
  55212. bottom: 42/962
  55213. }
  55214. },
  55215. head: {
  55216. height: math.unit(5.09, "meters"),
  55217. name: "Head",
  55218. image: {
  55219. source: "./media/characters/io/head.svg"
  55220. }
  55221. },
  55222. hand: {
  55223. height: math.unit(1.6, "meters"),
  55224. name: "Hand",
  55225. image: {
  55226. source: "./media/characters/io/hand.svg"
  55227. }
  55228. },
  55229. foot: {
  55230. height: math.unit(2.4, "meters"),
  55231. name: "Foot",
  55232. image: {
  55233. source: "./media/characters/io/foot.svg"
  55234. }
  55235. },
  55236. },
  55237. [
  55238. {
  55239. name: "Normal",
  55240. height: math.unit(8, "meters"),
  55241. default: true
  55242. },
  55243. ]
  55244. ))
  55245. characterMakers.push(() => makeCharacter(
  55246. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55247. {
  55248. side: {
  55249. height: math.unit(6 + 3/12, "feet"),
  55250. weight: math.unit(225, "lb"),
  55251. name: "Side",
  55252. image: {
  55253. source: "./media/characters/silas/side.svg",
  55254. extra: 703/653,
  55255. bottom: 23/726
  55256. },
  55257. extraAttributes: {
  55258. "pawLength": {
  55259. name: "Paw Length",
  55260. power: 1,
  55261. type: "length",
  55262. base: math.unit(12, "inches")
  55263. },
  55264. "pawWidth": {
  55265. name: "Paw Width",
  55266. power: 1,
  55267. type: "length",
  55268. base: math.unit(4.5, "inches")
  55269. },
  55270. "pawArea": {
  55271. name: "Paw Area",
  55272. power: 2,
  55273. type: "area",
  55274. base: math.unit(12 * 4.5, "inches^2")
  55275. },
  55276. }
  55277. },
  55278. },
  55279. [
  55280. {
  55281. name: "Normal",
  55282. height: math.unit(6 + 3/12, "feet"),
  55283. default: true
  55284. },
  55285. ]
  55286. ))
  55287. characterMakers.push(() => makeCharacter(
  55288. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55289. {
  55290. back: {
  55291. height: math.unit(1.6, "meters"),
  55292. weight: math.unit(150, "lb"),
  55293. name: "Back",
  55294. image: {
  55295. source: "./media/characters/zari/back.svg",
  55296. extra: 424/411,
  55297. bottom: 32/456
  55298. },
  55299. extraAttributes: {
  55300. "bladderCapacity": {
  55301. name: "Bladder Size",
  55302. power: 3,
  55303. type: "volume",
  55304. base: math.unit(500, "mL")
  55305. },
  55306. "bladderFlow": {
  55307. name: "Flow Rate",
  55308. power: 3,
  55309. type: "volume",
  55310. base: math.unit(25, "mL")
  55311. },
  55312. }
  55313. },
  55314. },
  55315. [
  55316. {
  55317. name: "Normal",
  55318. height: math.unit(1.6, "meters"),
  55319. default: true
  55320. },
  55321. ]
  55322. ))
  55323. characterMakers.push(() => makeCharacter(
  55324. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55325. {
  55326. front: {
  55327. height: math.unit(25, "feet"),
  55328. weight: math.unit(5, "tons"),
  55329. name: "Front",
  55330. image: {
  55331. source: "./media/characters/charlie-human/front.svg",
  55332. extra: 1870/1740,
  55333. bottom: 102/1972
  55334. },
  55335. extraAttributes: {
  55336. "dickLength": {
  55337. name: "Dick Length",
  55338. power: 1,
  55339. type: "length",
  55340. base: math.unit(9, "feet")
  55341. },
  55342. }
  55343. },
  55344. back: {
  55345. height: math.unit(25, "feet"),
  55346. weight: math.unit(5, "tons"),
  55347. name: "Back",
  55348. image: {
  55349. source: "./media/characters/charlie-human/back.svg",
  55350. extra: 1858/1733,
  55351. bottom: 105/1963
  55352. },
  55353. extraAttributes: {
  55354. "dickLength": {
  55355. name: "Dick Length",
  55356. power: 1,
  55357. type: "length",
  55358. base: math.unit(9, "feet")
  55359. },
  55360. }
  55361. },
  55362. },
  55363. [
  55364. {
  55365. name: "\"Normal\"",
  55366. height: math.unit(6 + 4/12, "feet")
  55367. },
  55368. {
  55369. name: "Big",
  55370. height: math.unit(25, "feet"),
  55371. default: true
  55372. },
  55373. ]
  55374. ))
  55375. characterMakers.push(() => makeCharacter(
  55376. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55377. {
  55378. front: {
  55379. height: math.unit(6 + 4/12, "feet"),
  55380. weight: math.unit(320, "lb"),
  55381. name: "Front",
  55382. image: {
  55383. source: "./media/characters/ookitsu/front.svg",
  55384. extra: 1160/976,
  55385. bottom: 38/1198
  55386. }
  55387. },
  55388. frontNsfw: {
  55389. height: math.unit(6 + 4/12, "feet"),
  55390. weight: math.unit(320, "lb"),
  55391. name: "Front (NSFW)",
  55392. image: {
  55393. source: "./media/characters/ookitsu/front-nsfw.svg",
  55394. extra: 1160/976,
  55395. bottom: 38/1198
  55396. }
  55397. },
  55398. back: {
  55399. height: math.unit(6 + 4/12, "feet"),
  55400. weight: math.unit(320, "lb"),
  55401. name: "Back",
  55402. image: {
  55403. source: "./media/characters/ookitsu/back.svg",
  55404. extra: 1030/975,
  55405. bottom: 70/1100
  55406. }
  55407. },
  55408. head: {
  55409. height: math.unit(1.79, "feet"),
  55410. name: "Head",
  55411. image: {
  55412. source: "./media/characters/ookitsu/head.svg"
  55413. }
  55414. },
  55415. hand: {
  55416. height: math.unit(0.92, "feet"),
  55417. name: "Hand",
  55418. image: {
  55419. source: "./media/characters/ookitsu/hand.svg"
  55420. }
  55421. },
  55422. tails: {
  55423. height: math.unit(3.3, "feet"),
  55424. name: "Tails",
  55425. image: {
  55426. source: "./media/characters/ookitsu/tails.svg"
  55427. }
  55428. },
  55429. dick: {
  55430. height: math.unit(1.10833, "feet"),
  55431. name: "Dick",
  55432. image: {
  55433. source: "./media/characters/ookitsu/dick.svg"
  55434. }
  55435. },
  55436. },
  55437. [
  55438. {
  55439. name: "Normal",
  55440. height: math.unit(6 + 4/12, "feet"),
  55441. default: true
  55442. },
  55443. {
  55444. name: "Macro",
  55445. height: math.unit(30, "feet")
  55446. },
  55447. ]
  55448. ))
  55449. characterMakers.push(() => makeCharacter(
  55450. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55451. {
  55452. anthroFront: {
  55453. height: math.unit(6, "feet"),
  55454. weight: math.unit(250, "lb"),
  55455. name: "Front",
  55456. image: {
  55457. source: "./media/characters/jhusky/anthro-front.svg",
  55458. extra: 474/439,
  55459. bottom: 7/481
  55460. },
  55461. form: "anthro",
  55462. default: true
  55463. },
  55464. taurSideSfw: {
  55465. height: math.unit(6 + 4/12, "feet"),
  55466. weight: math.unit(500, "lb"),
  55467. name: "Side (SFW)",
  55468. image: {
  55469. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55470. extra: 1741/1629,
  55471. bottom: 196/1937
  55472. },
  55473. form: "taur",
  55474. default: true
  55475. },
  55476. taurSideNsfw: {
  55477. height: math.unit(6 + 4/12, "feet"),
  55478. weight: math.unit(500, "lb"),
  55479. name: "Taur (NSFW)",
  55480. image: {
  55481. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55482. extra: 1741/1629,
  55483. bottom: 196/1937
  55484. },
  55485. form: "taur",
  55486. },
  55487. },
  55488. [
  55489. {
  55490. name: "Huge",
  55491. height: math.unit(500, "feet"),
  55492. form: "anthro"
  55493. },
  55494. {
  55495. name: "Macro",
  55496. height: math.unit(1000, "feet"),
  55497. default: true,
  55498. form: "anthro"
  55499. },
  55500. {
  55501. name: "Megamacro",
  55502. height: math.unit(10000, "feet"),
  55503. form: "anthro"
  55504. },
  55505. {
  55506. name: "Huge",
  55507. height: math.unit(528, "feet"),
  55508. form: "taur"
  55509. },
  55510. {
  55511. name: "Macro",
  55512. height: math.unit(1056, "feet"),
  55513. default: true,
  55514. form: "taur"
  55515. },
  55516. {
  55517. name: "Megamacro",
  55518. height: math.unit(10556, "feet"),
  55519. form: "taur"
  55520. },
  55521. ],
  55522. {
  55523. "anthro": {
  55524. name: "Anthro",
  55525. default: true
  55526. },
  55527. "taur": {
  55528. name: "Taur",
  55529. },
  55530. }
  55531. ))
  55532. characterMakers.push(() => makeCharacter(
  55533. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55534. {
  55535. front: {
  55536. height: math.unit(8, "feet"),
  55537. weight: math.unit(500, "lb"),
  55538. name: "Front",
  55539. image: {
  55540. source: "./media/characters/armail/front.svg",
  55541. extra: 1753/1669,
  55542. bottom: 155/1908
  55543. }
  55544. },
  55545. back: {
  55546. height: math.unit(8, "feet"),
  55547. weight: math.unit(500, "lb"),
  55548. name: "Back",
  55549. image: {
  55550. source: "./media/characters/armail/back.svg",
  55551. extra: 1872/1803,
  55552. bottom: 63/1935
  55553. }
  55554. },
  55555. },
  55556. [
  55557. {
  55558. name: "Micro",
  55559. height: math.unit(0.25, "feet")
  55560. },
  55561. {
  55562. name: "Normal",
  55563. height: math.unit(8, "feet"),
  55564. default: true
  55565. },
  55566. {
  55567. name: "Mini-macro",
  55568. height: math.unit(30, "feet")
  55569. },
  55570. {
  55571. name: "Macro",
  55572. height: math.unit(400, "feet")
  55573. },
  55574. {
  55575. name: "Mega-macro",
  55576. height: math.unit(6000, "feet")
  55577. },
  55578. ]
  55579. ))
  55580. characterMakers.push(() => makeCharacter(
  55581. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55582. {
  55583. front: {
  55584. height: math.unit(6 + 7/12, "feet"),
  55585. weight: math.unit(210, "lb"),
  55586. name: "Front",
  55587. image: {
  55588. source: "./media/characters/wilfred-t-buxton/front.svg",
  55589. extra: 1068/882,
  55590. bottom: 28/1096
  55591. }
  55592. },
  55593. },
  55594. [
  55595. {
  55596. name: "Normal",
  55597. height: math.unit(6 + 7/12, "feet"),
  55598. default: true
  55599. },
  55600. ]
  55601. ))
  55602. characterMakers.push(() => makeCharacter(
  55603. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55604. {
  55605. front: {
  55606. height: math.unit(5 + 2/12, "feet"),
  55607. weight: math.unit(120, "lb"),
  55608. name: "Front",
  55609. image: {
  55610. source: "./media/characters/leighton-marrow/front.svg",
  55611. extra: 441/409,
  55612. bottom: 37/478
  55613. }
  55614. },
  55615. },
  55616. [
  55617. {
  55618. name: "Normal",
  55619. height: math.unit(5 + 2/12, "feet"),
  55620. default: true
  55621. },
  55622. ]
  55623. ))
  55624. characterMakers.push(() => makeCharacter(
  55625. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55626. {
  55627. front: {
  55628. height: math.unit(4, "meters"),
  55629. weight: math.unit(1200, "kg"),
  55630. name: "Front",
  55631. image: {
  55632. source: "./media/characters/licos/front.svg",
  55633. extra: 1727/1604,
  55634. bottom: 101/1828
  55635. },
  55636. form: "anthro",
  55637. default: true
  55638. },
  55639. taur_side: {
  55640. height: math.unit(20, "meters"),
  55641. weight: math.unit(1100000, "kg"),
  55642. name: "Side",
  55643. image: {
  55644. source: "./media/characters/licos/taur.svg",
  55645. extra: 1158/1091,
  55646. bottom: 80/1238
  55647. },
  55648. form: "taur",
  55649. default: true
  55650. },
  55651. },
  55652. [
  55653. {
  55654. name: "Normal",
  55655. height: math.unit(4, "meters"),
  55656. default: true,
  55657. form: "anthro"
  55658. },
  55659. {
  55660. name: "Normal",
  55661. height: math.unit(20, "meters"),
  55662. default: true,
  55663. form: "taur"
  55664. },
  55665. ],
  55666. {
  55667. "anthro": {
  55668. name: "Anthro",
  55669. default: true
  55670. },
  55671. "taur": {
  55672. name: "Taur",
  55673. },
  55674. }
  55675. ))
  55676. characterMakers.push(() => makeCharacter(
  55677. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55678. {
  55679. front: {
  55680. height: math.unit(10 + 3/12, "feet"),
  55681. name: "Front",
  55682. image: {
  55683. source: "./media/characters/theo-monkey/front.svg",
  55684. extra: 1735/1658,
  55685. bottom: 73/1808
  55686. }
  55687. },
  55688. back: {
  55689. height: math.unit(10 + 3/12, "feet"),
  55690. name: "Back",
  55691. image: {
  55692. source: "./media/characters/theo-monkey/back.svg",
  55693. extra: 1742/1664,
  55694. bottom: 33/1775
  55695. }
  55696. },
  55697. head: {
  55698. height: math.unit(2.29, "feet"),
  55699. name: "Head",
  55700. image: {
  55701. source: "./media/characters/theo-monkey/head.svg"
  55702. }
  55703. },
  55704. handPalm: {
  55705. height: math.unit(1.73, "feet"),
  55706. name: "Hand (Palm)",
  55707. image: {
  55708. source: "./media/characters/theo-monkey/hand-palm.svg"
  55709. }
  55710. },
  55711. handBack: {
  55712. height: math.unit(1.63, "feet"),
  55713. name: "Hand (Back)",
  55714. image: {
  55715. source: "./media/characters/theo-monkey/hand-back.svg"
  55716. }
  55717. },
  55718. footSole: {
  55719. height: math.unit(2.15, "feet"),
  55720. name: "Foot (Sole)",
  55721. image: {
  55722. source: "./media/characters/theo-monkey/foot-sole.svg"
  55723. }
  55724. },
  55725. footSide: {
  55726. height: math.unit(1.6, "feet"),
  55727. name: "Foot (Side)",
  55728. image: {
  55729. source: "./media/characters/theo-monkey/foot-side.svg"
  55730. }
  55731. },
  55732. },
  55733. [
  55734. {
  55735. name: "Normal",
  55736. height: math.unit(10 + 3/12, "feet"),
  55737. default: true
  55738. },
  55739. ]
  55740. ))
  55741. characterMakers.push(() => makeCharacter(
  55742. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55743. {
  55744. front: {
  55745. height: math.unit(11, "feet"),
  55746. weight: math.unit(3000, "lb"),
  55747. preyCapacity: math.unit(10, "people"),
  55748. name: "Front",
  55749. image: {
  55750. source: "./media/characters/brook/front.svg",
  55751. extra: 909/835,
  55752. bottom: 108/1017
  55753. }
  55754. },
  55755. back: {
  55756. height: math.unit(11, "feet"),
  55757. weight: math.unit(3000, "lb"),
  55758. preyCapacity: math.unit(10, "people"),
  55759. name: "Back",
  55760. image: {
  55761. source: "./media/characters/brook/back.svg",
  55762. extra: 976/916,
  55763. bottom: 34/1010
  55764. }
  55765. },
  55766. backAlt: {
  55767. height: math.unit(11, "feet"),
  55768. weight: math.unit(3000, "lb"),
  55769. preyCapacity: math.unit(10, "people"),
  55770. name: "Back (Alt)",
  55771. image: {
  55772. source: "./media/characters/brook/back-alt.svg",
  55773. extra: 1283/1213,
  55774. bottom: 35/1318
  55775. }
  55776. },
  55777. bust: {
  55778. height: math.unit(9.0859030837, "feet"),
  55779. weight: math.unit(3000, "lb"),
  55780. preyCapacity: math.unit(10, "people"),
  55781. name: "Bust",
  55782. image: {
  55783. source: "./media/characters/brook/bust.svg",
  55784. extra: 2043/1923,
  55785. bottom: 0/2043
  55786. }
  55787. },
  55788. },
  55789. [
  55790. {
  55791. name: "Small",
  55792. height: math.unit(11, "feet"),
  55793. default: true
  55794. },
  55795. {
  55796. name: "Towering",
  55797. height: math.unit(5, "km")
  55798. },
  55799. {
  55800. name: "Enormous",
  55801. height: math.unit(25, "earths")
  55802. },
  55803. ]
  55804. ))
  55805. characterMakers.push(() => makeCharacter(
  55806. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55807. {
  55808. front: {
  55809. height: math.unit(4, "feet"),
  55810. weight: math.unit(150, "lb"),
  55811. name: "Front",
  55812. image: {
  55813. source: "./media/characters/squishi/front.svg",
  55814. extra: 1428/1271,
  55815. bottom: 30/1458
  55816. },
  55817. extraAttributes: {
  55818. "pawSize": {
  55819. name: "Paw Size",
  55820. power: 1,
  55821. type: "length",
  55822. base: math.unit(14, "ShoeSizeMensUS"),
  55823. defaultUnit: "ShoeSizeMensUS"
  55824. },
  55825. }
  55826. },
  55827. side: {
  55828. height: math.unit(4, "feet"),
  55829. weight: math.unit(150, "lb"),
  55830. name: "Side",
  55831. image: {
  55832. source: "./media/characters/squishi/side.svg",
  55833. extra: 1428/1271,
  55834. bottom: 30/1458
  55835. },
  55836. extraAttributes: {
  55837. "pawSize": {
  55838. name: "Paw Size",
  55839. power: 1,
  55840. type: "length",
  55841. base: math.unit(14, "ShoeSizeMensUS"),
  55842. defaultUnit: "ShoeSizeMensUS"
  55843. },
  55844. }
  55845. },
  55846. back: {
  55847. height: math.unit(4, "feet"),
  55848. weight: math.unit(150, "lb"),
  55849. name: "Back",
  55850. image: {
  55851. source: "./media/characters/squishi/back.svg",
  55852. extra: 1428/1271,
  55853. bottom: 30/1458
  55854. },
  55855. extraAttributes: {
  55856. "pawSize": {
  55857. name: "Paw Size",
  55858. power: 1,
  55859. type: "length",
  55860. base: math.unit(14, "ShoeSizeMensUS"),
  55861. defaultUnit: "ShoeSizeMensUS"
  55862. },
  55863. }
  55864. },
  55865. },
  55866. [
  55867. {
  55868. name: "Normal",
  55869. height: math.unit(4, "feet"),
  55870. default: true
  55871. },
  55872. ]
  55873. ))
  55874. characterMakers.push(() => makeCharacter(
  55875. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55876. {
  55877. front: {
  55878. height: math.unit(7 + 8/12, "feet"),
  55879. weight: math.unit(333, "lb"),
  55880. name: "Front",
  55881. image: {
  55882. source: "./media/characters/vincent-vasroc/front.svg",
  55883. extra: 1962/1860,
  55884. bottom: 41/2003
  55885. }
  55886. },
  55887. back: {
  55888. height: math.unit(7 + 8/12, "feet"),
  55889. weight: math.unit(333, "lb"),
  55890. name: "Back",
  55891. image: {
  55892. source: "./media/characters/vincent-vasroc/back.svg",
  55893. extra: 1952/1815,
  55894. bottom: 33/1985
  55895. }
  55896. },
  55897. paw: {
  55898. height: math.unit(1.24, "feet"),
  55899. name: "Paw",
  55900. image: {
  55901. source: "./media/characters/vincent-vasroc/paw.svg"
  55902. }
  55903. },
  55904. ear: {
  55905. height: math.unit(0.75, "feet"),
  55906. name: "Ear",
  55907. image: {
  55908. source: "./media/characters/vincent-vasroc/ear.svg"
  55909. }
  55910. },
  55911. },
  55912. [
  55913. {
  55914. name: "Nano",
  55915. height: math.unit(92, "micrometers")
  55916. },
  55917. {
  55918. name: "Normal",
  55919. height: math.unit(7 + 8/12, "feet"),
  55920. default: true
  55921. },
  55922. ]
  55923. ))
  55924. characterMakers.push(() => makeCharacter(
  55925. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55926. {
  55927. frontNsfw: {
  55928. height: math.unit(40, "feet"),
  55929. weight: math.unit(58, "tons"),
  55930. name: "Front (NSFW)",
  55931. image: {
  55932. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55933. extra: 1265/965,
  55934. bottom: 155/1420
  55935. }
  55936. },
  55937. frontSfw: {
  55938. height: math.unit(40, "feet"),
  55939. weight: math.unit(58, "tons"),
  55940. name: "Front (SFW)",
  55941. image: {
  55942. source: "./media/characters/ru-kahn/front-sfw.svg",
  55943. extra: 1265/965,
  55944. bottom: 80/1345
  55945. }
  55946. },
  55947. },
  55948. [
  55949. {
  55950. name: "Small",
  55951. height: math.unit(4, "feet")
  55952. },
  55953. {
  55954. name: "Normal",
  55955. height: math.unit(40, "feet"),
  55956. default: true
  55957. },
  55958. {
  55959. name: "Macro",
  55960. height: math.unit(400, "feet")
  55961. },
  55962. ]
  55963. ))
  55964. characterMakers.push(() => makeCharacter(
  55965. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55966. {
  55967. frontNude: {
  55968. height: math.unit(6 + 5/12, "feet"),
  55969. name: "Front (Nude)",
  55970. image: {
  55971. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55972. extra: 1369/1366,
  55973. bottom: 68/1437
  55974. }
  55975. },
  55976. frontDressed: {
  55977. height: math.unit(6 + 5/12, "feet"),
  55978. name: "Front (Dressed)",
  55979. image: {
  55980. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55981. extra: 1369/1366,
  55982. bottom: 68/1437
  55983. }
  55984. },
  55985. },
  55986. [
  55987. {
  55988. name: "Normal",
  55989. height: math.unit(6 + 5/12, "feet"),
  55990. default: true
  55991. },
  55992. {
  55993. name: "Maximum",
  55994. height: math.unit(1930, "feet")
  55995. },
  55996. ]
  55997. ))
  55998. characterMakers.push(() => makeCharacter(
  55999. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56000. {
  56001. front: {
  56002. height: math.unit(5 + 6/12, "feet"),
  56003. name: "Front",
  56004. image: {
  56005. source: "./media/characters/kaja/front.svg",
  56006. extra: 1874/1514,
  56007. bottom: 117/1991
  56008. }
  56009. },
  56010. },
  56011. [
  56012. {
  56013. name: "Normal",
  56014. height: math.unit(5 + 6/12, "feet"),
  56015. default: true
  56016. },
  56017. ]
  56018. ))
  56019. characterMakers.push(() => makeCharacter(
  56020. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56021. {
  56022. front: {
  56023. height: math.unit(5 + 9/12, "feet"),
  56024. weight: math.unit(200, "lb"),
  56025. name: "Front",
  56026. image: {
  56027. source: "./media/characters/mark-smith/front.svg",
  56028. extra: 1004/943,
  56029. bottom: 58/1062
  56030. }
  56031. },
  56032. back: {
  56033. height: math.unit(5 + 9/12, "feet"),
  56034. weight: math.unit(200, "lb"),
  56035. name: "Back",
  56036. image: {
  56037. source: "./media/characters/mark-smith/back.svg",
  56038. extra: 1023/953,
  56039. bottom: 24/1047
  56040. }
  56041. },
  56042. head: {
  56043. height: math.unit(1.82, "feet"),
  56044. name: "Head",
  56045. image: {
  56046. source: "./media/characters/mark-smith/head.svg"
  56047. }
  56048. },
  56049. hand: {
  56050. height: math.unit(1.4, "feet"),
  56051. name: "Hand",
  56052. image: {
  56053. source: "./media/characters/mark-smith/hand.svg"
  56054. }
  56055. },
  56056. paw: {
  56057. height: math.unit(1.69, "feet"),
  56058. name: "Paw",
  56059. image: {
  56060. source: "./media/characters/mark-smith/paw.svg"
  56061. }
  56062. },
  56063. },
  56064. [
  56065. {
  56066. name: "Micro",
  56067. height: math.unit(0.25, "inches")
  56068. },
  56069. {
  56070. name: "Normal",
  56071. height: math.unit(5 + 9/12, "feet"),
  56072. default: true
  56073. },
  56074. {
  56075. name: "Macro",
  56076. height: math.unit(500, "feet")
  56077. },
  56078. ]
  56079. ))
  56080. characterMakers.push(() => makeCharacter(
  56081. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56082. {
  56083. frontNude: {
  56084. height: math.unit(6, "feet"),
  56085. name: "Front (Nude)",
  56086. image: {
  56087. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56088. extra: 1384/1321,
  56089. bottom: 57/1441
  56090. }
  56091. },
  56092. frontDressed: {
  56093. height: math.unit(6, "feet"),
  56094. name: "Front (Dressed)",
  56095. image: {
  56096. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56097. extra: 1384/1321,
  56098. bottom: 57/1441
  56099. }
  56100. },
  56101. },
  56102. [
  56103. {
  56104. name: "Normal",
  56105. height: math.unit(6, "feet"),
  56106. default: true
  56107. },
  56108. {
  56109. name: "Maximum",
  56110. height: math.unit(1776, "feet")
  56111. },
  56112. ]
  56113. ))
  56114. characterMakers.push(() => makeCharacter(
  56115. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56116. {
  56117. front: {
  56118. height: math.unit(2 + 4/12, "feet"),
  56119. weight: math.unit(350, "lb"),
  56120. name: "Front",
  56121. image: {
  56122. source: "./media/characters/devos/front.svg",
  56123. extra: 958/852,
  56124. bottom: 143/1101
  56125. }
  56126. },
  56127. },
  56128. [
  56129. {
  56130. name: "Base",
  56131. height: math.unit(2 + 4/12, "feet"),
  56132. default: true
  56133. },
  56134. ]
  56135. ))
  56136. characterMakers.push(() => makeCharacter(
  56137. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56138. {
  56139. front: {
  56140. height: math.unit(9 + 2/12, "feet"),
  56141. name: "Front",
  56142. image: {
  56143. source: "./media/characters/hiveheart/front.svg",
  56144. extra: 394/364,
  56145. bottom: 65/459
  56146. }
  56147. },
  56148. back: {
  56149. height: math.unit(9 + 2/12, "feet"),
  56150. name: "Back",
  56151. image: {
  56152. source: "./media/characters/hiveheart/back.svg",
  56153. extra: 374/357,
  56154. bottom: 63/437
  56155. }
  56156. },
  56157. },
  56158. [
  56159. {
  56160. name: "Base",
  56161. height: math.unit(9 + 2/12, "feet"),
  56162. default: true
  56163. },
  56164. ]
  56165. ))
  56166. characterMakers.push(() => makeCharacter(
  56167. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56168. {
  56169. front: {
  56170. height: math.unit(2.5, "inches"),
  56171. weight: math.unit(0.6, "oz"),
  56172. name: "Front",
  56173. image: {
  56174. source: "./media/characters/bryn/front.svg",
  56175. extra: 1480/1205,
  56176. bottom: 27/1507
  56177. }
  56178. },
  56179. back: {
  56180. height: math.unit(2.5, "inches"),
  56181. weight: math.unit(0.6, "oz"),
  56182. name: "Back",
  56183. image: {
  56184. source: "./media/characters/bryn/back.svg",
  56185. extra: 1475/1201,
  56186. bottom: 39/1514
  56187. }
  56188. },
  56189. foot: {
  56190. height: math.unit(0.4, "inches"),
  56191. name: "Foot",
  56192. image: {
  56193. source: "./media/characters/bryn/foot.svg"
  56194. }
  56195. },
  56196. },
  56197. [
  56198. {
  56199. name: "Normal",
  56200. height: math.unit(2.5, "inches"),
  56201. default: true
  56202. },
  56203. ]
  56204. ))
  56205. characterMakers.push(() => makeCharacter(
  56206. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56207. {
  56208. side: {
  56209. height: math.unit(7, "feet"),
  56210. weight: math.unit(657, "kg"),
  56211. name: "Side",
  56212. image: {
  56213. source: "./media/characters/delta/side.svg",
  56214. extra: 781/212,
  56215. bottom: 7/788
  56216. },
  56217. extraAttributes: {
  56218. "wingspan": {
  56219. name: "Wingspan",
  56220. power: 1,
  56221. type: "length",
  56222. base: math.unit(48, "feet")
  56223. },
  56224. "length": {
  56225. name: "Length",
  56226. power: 1,
  56227. type: "length",
  56228. base: math.unit(21, "feet")
  56229. },
  56230. "pawSize": {
  56231. name: "Paw Size",
  56232. power: 2,
  56233. type: "area",
  56234. base: math.unit(1.5*1.4, "feet^2")
  56235. },
  56236. }
  56237. },
  56238. },
  56239. [
  56240. {
  56241. name: "Normal",
  56242. height: math.unit(6, "feet"),
  56243. default: true
  56244. },
  56245. ]
  56246. ))
  56247. characterMakers.push(() => makeCharacter(
  56248. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56249. {
  56250. front: {
  56251. height: math.unit(6, "feet"),
  56252. name: "Front",
  56253. image: {
  56254. source: "./media/characters/pyrow/front.svg",
  56255. extra: 513/486,
  56256. bottom: 14/527
  56257. }
  56258. },
  56259. frontWing: {
  56260. height: math.unit(6, "feet"),
  56261. name: "Front (Wing)",
  56262. image: {
  56263. source: "./media/characters/pyrow/front-wing.svg",
  56264. extra: 539/383,
  56265. bottom: 20/559
  56266. }
  56267. },
  56268. back: {
  56269. height: math.unit(6, "feet"),
  56270. name: "Back",
  56271. image: {
  56272. source: "./media/characters/pyrow/back.svg",
  56273. extra: 500/473,
  56274. bottom: 9/509
  56275. }
  56276. },
  56277. },
  56278. [
  56279. {
  56280. name: "Normal",
  56281. height: math.unit(6, "feet"),
  56282. default: true
  56283. },
  56284. ]
  56285. ))
  56286. characterMakers.push(() => makeCharacter(
  56287. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56288. {
  56289. front: {
  56290. height: math.unit(5, "meters"),
  56291. weight: math.unit(3, "tonnes"),
  56292. name: "Front",
  56293. image: {
  56294. source: "./media/characters/velikan/front.svg",
  56295. extra: 867/744,
  56296. bottom: 71/938
  56297. },
  56298. extraAttributes: {
  56299. "shoeSize": {
  56300. name: "Shoe Size",
  56301. power: 1,
  56302. type: "length",
  56303. base: math.unit(135, "ShoeSizeUK"),
  56304. defaultUnit: "ShoeSizeUK"
  56305. },
  56306. }
  56307. },
  56308. },
  56309. [
  56310. {
  56311. name: "Normal",
  56312. height: math.unit(5, "meters"),
  56313. default: true
  56314. },
  56315. {
  56316. name: "Macro",
  56317. height: math.unit(1, "km")
  56318. },
  56319. {
  56320. name: "Mega Macro",
  56321. height: math.unit(100, "km")
  56322. },
  56323. {
  56324. name: "Giga Macro",
  56325. height: math.unit(2, "megameters")
  56326. },
  56327. {
  56328. name: "Planetary",
  56329. height: math.unit(22, "megameters")
  56330. },
  56331. {
  56332. name: "Solar",
  56333. height: math.unit(8, "gigameters")
  56334. },
  56335. {
  56336. name: "Cosmic",
  56337. height: math.unit(10, "zettameters")
  56338. },
  56339. {
  56340. name: "Omni",
  56341. height: math.unit(9e260, "multiverses")
  56342. },
  56343. ]
  56344. ))
  56345. characterMakers.push(() => makeCharacter(
  56346. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56347. {
  56348. front: {
  56349. height: math.unit(4 + 3/12, "feet"),
  56350. weight: math.unit(90, "lb"),
  56351. name: "Front",
  56352. image: {
  56353. source: "./media/characters/sabiki/front.svg",
  56354. extra: 1662/1423,
  56355. bottom: 65/1727
  56356. }
  56357. },
  56358. },
  56359. [
  56360. {
  56361. name: "Normal",
  56362. height: math.unit(4 + 3/12, "feet"),
  56363. default: true
  56364. },
  56365. ]
  56366. ))
  56367. characterMakers.push(() => makeCharacter(
  56368. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56369. {
  56370. frontSfw: {
  56371. height: math.unit(2, "mm"),
  56372. name: "Front (SFW)",
  56373. image: {
  56374. source: "./media/characters/carmel/front-sfw.svg",
  56375. extra: 1131/1006,
  56376. bottom: 66/1197
  56377. }
  56378. },
  56379. frontNsfw: {
  56380. height: math.unit(2, "mm"),
  56381. name: "Front (NSFW)",
  56382. image: {
  56383. source: "./media/characters/carmel/front-nsfw.svg",
  56384. extra: 1131/1006,
  56385. bottom: 66/1197
  56386. }
  56387. },
  56388. foot: {
  56389. height: math.unit(0.3, "mm"),
  56390. name: "Foot",
  56391. image: {
  56392. source: "./media/characters/carmel/foot.svg"
  56393. }
  56394. },
  56395. tongue: {
  56396. height: math.unit(0.71, "mm"),
  56397. name: "Tongue",
  56398. image: {
  56399. source: "./media/characters/carmel/tongue.svg"
  56400. }
  56401. },
  56402. dick: {
  56403. height: math.unit(0.085, "mm"),
  56404. name: "Dick",
  56405. image: {
  56406. source: "./media/characters/carmel/dick.svg"
  56407. }
  56408. },
  56409. },
  56410. [
  56411. {
  56412. name: "Micro",
  56413. height: math.unit(2, "mm"),
  56414. default: true
  56415. },
  56416. {
  56417. name: "Normal",
  56418. height: math.unit(4 + 8/12, "feet")
  56419. },
  56420. {
  56421. name: "Mega Macro",
  56422. height: math.unit(250, "feet")
  56423. },
  56424. {
  56425. name: "BIGGER",
  56426. height: math.unit(1000, "feet")
  56427. },
  56428. {
  56429. name: "BIGGEST",
  56430. height: math.unit(2, "miles")
  56431. },
  56432. ]
  56433. ))
  56434. characterMakers.push(() => makeCharacter(
  56435. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56436. {
  56437. front: {
  56438. height: math.unit(6.5, "feet"),
  56439. weight: math.unit(198, "lb"),
  56440. name: "Front",
  56441. image: {
  56442. source: "./media/characters/tamani/anthro.svg",
  56443. extra: 930/890,
  56444. bottom: 34/964
  56445. },
  56446. form: "anthro",
  56447. default: true
  56448. },
  56449. side: {
  56450. height: math.unit(6, "feet"),
  56451. weight: math.unit(198*2, "lb"),
  56452. name: "Side",
  56453. image: {
  56454. source: "./media/characters/tamani/feral.svg",
  56455. extra: 559/519,
  56456. bottom: 43/602
  56457. },
  56458. form: "feral"
  56459. },
  56460. },
  56461. [
  56462. {
  56463. name: "Normal",
  56464. height: math.unit(6.5, "feet"),
  56465. default: true,
  56466. form: "anthro"
  56467. },
  56468. {
  56469. name: "Normal",
  56470. height: math.unit(6, "feet"),
  56471. default: true,
  56472. form: "feral"
  56473. },
  56474. ],
  56475. {
  56476. "anthro": {
  56477. name: "Anthro",
  56478. default: true
  56479. },
  56480. "feral": {
  56481. name: "Feral",
  56482. },
  56483. }
  56484. ))
  56485. characterMakers.push(() => makeCharacter(
  56486. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56487. {
  56488. front: {
  56489. height: math.unit(4 + 1/12, "feet"),
  56490. weight: math.unit(114, "lb"),
  56491. name: "Front",
  56492. image: {
  56493. source: "./media/characters/dex/front.svg",
  56494. extra: 787/680,
  56495. bottom: 18/805
  56496. }
  56497. },
  56498. side: {
  56499. height: math.unit(4 + 1/12, "feet"),
  56500. weight: math.unit(114, "lb"),
  56501. name: "Side",
  56502. image: {
  56503. source: "./media/characters/dex/side.svg",
  56504. extra: 785/680,
  56505. bottom: 12/797
  56506. }
  56507. },
  56508. back: {
  56509. height: math.unit(4 + 1/12, "feet"),
  56510. weight: math.unit(114, "lb"),
  56511. name: "Back",
  56512. image: {
  56513. source: "./media/characters/dex/back.svg",
  56514. extra: 785/681,
  56515. bottom: 17/802
  56516. }
  56517. },
  56518. loungewear: {
  56519. height: math.unit(4 + 1/12, "feet"),
  56520. weight: math.unit(114, "lb"),
  56521. name: "Loungewear",
  56522. image: {
  56523. source: "./media/characters/dex/loungewear.svg",
  56524. extra: 787/680,
  56525. bottom: 18/805
  56526. }
  56527. },
  56528. workout: {
  56529. height: math.unit(4 + 1/12, "feet"),
  56530. weight: math.unit(114, "lb"),
  56531. name: "Workout",
  56532. image: {
  56533. source: "./media/characters/dex/workout.svg",
  56534. extra: 787/680,
  56535. bottom: 18/805
  56536. }
  56537. },
  56538. schoolUniform: {
  56539. height: math.unit(4 + 1/12, "feet"),
  56540. weight: math.unit(114, "lb"),
  56541. name: "School-uniform",
  56542. image: {
  56543. source: "./media/characters/dex/school-uniform.svg",
  56544. extra: 787/680,
  56545. bottom: 18/805
  56546. }
  56547. },
  56548. maw: {
  56549. height: math.unit(0.55, "feet"),
  56550. name: "Maw",
  56551. image: {
  56552. source: "./media/characters/dex/maw.svg"
  56553. }
  56554. },
  56555. paw: {
  56556. height: math.unit(0.87, "feet"),
  56557. name: "Paw",
  56558. image: {
  56559. source: "./media/characters/dex/paw.svg"
  56560. }
  56561. },
  56562. bust: {
  56563. height: math.unit(1.67, "feet"),
  56564. name: "Bust",
  56565. image: {
  56566. source: "./media/characters/dex/bust.svg"
  56567. }
  56568. },
  56569. },
  56570. [
  56571. {
  56572. name: "Normal",
  56573. height: math.unit(4 + 1/12, "feet"),
  56574. default: true
  56575. },
  56576. ]
  56577. ))
  56578. characterMakers.push(() => makeCharacter(
  56579. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56580. {
  56581. front: {
  56582. height: math.unit(4 + 3/12, "feet"),
  56583. weight: math.unit(60, "lb"),
  56584. name: "Front",
  56585. image: {
  56586. source: "./media/characters/silke/front.svg",
  56587. extra: 1334/1122,
  56588. bottom: 21/1355
  56589. }
  56590. },
  56591. back: {
  56592. height: math.unit(4 + 3/12, "feet"),
  56593. weight: math.unit(60, "lb"),
  56594. name: "Back",
  56595. image: {
  56596. source: "./media/characters/silke/back.svg",
  56597. extra: 1328/1092,
  56598. bottom: 16/1344
  56599. }
  56600. },
  56601. dressed: {
  56602. height: math.unit(4 + 3/12, "feet"),
  56603. weight: math.unit(60, "lb"),
  56604. name: "Dressed",
  56605. image: {
  56606. source: "./media/characters/silke/dressed.svg",
  56607. extra: 1334/1122,
  56608. bottom: 43/1377
  56609. }
  56610. },
  56611. },
  56612. [
  56613. {
  56614. name: "Normal",
  56615. height: math.unit(4 + 3/12, "feet"),
  56616. default: true
  56617. },
  56618. ]
  56619. ))
  56620. characterMakers.push(() => makeCharacter(
  56621. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56622. {
  56623. front: {
  56624. height: math.unit(1.58, "meters"),
  56625. weight: math.unit(47, "kg"),
  56626. name: "Front",
  56627. image: {
  56628. source: "./media/characters/wireshark/front.svg",
  56629. extra: 883/838,
  56630. bottom: 66/949
  56631. }
  56632. },
  56633. },
  56634. [
  56635. {
  56636. name: "Normal",
  56637. height: math.unit(1.58, "meters"),
  56638. default: true
  56639. },
  56640. ]
  56641. ))
  56642. characterMakers.push(() => makeCharacter(
  56643. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56644. {
  56645. front: {
  56646. height: math.unit(6, "meters"),
  56647. weight: math.unit(15000, "kg"),
  56648. name: "Front",
  56649. image: {
  56650. source: "./media/characters/gallagher/front.svg",
  56651. extra: 532/493,
  56652. bottom: 0/532
  56653. }
  56654. },
  56655. },
  56656. [
  56657. {
  56658. name: "Normal",
  56659. height: math.unit(6, "meters"),
  56660. default: true
  56661. },
  56662. ]
  56663. ))
  56664. characterMakers.push(() => makeCharacter(
  56665. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56666. {
  56667. front: {
  56668. height: math.unit(2.4, "meters"),
  56669. weight: math.unit(270, "kg"),
  56670. name: "Front",
  56671. image: {
  56672. source: "./media/characters/alice/front.svg",
  56673. extra: 950/900,
  56674. bottom: 36/986
  56675. }
  56676. },
  56677. side: {
  56678. height: math.unit(2.4, "meters"),
  56679. weight: math.unit(270, "kg"),
  56680. name: "Side",
  56681. image: {
  56682. source: "./media/characters/alice/side.svg",
  56683. extra: 921/876,
  56684. bottom: 19/940
  56685. }
  56686. },
  56687. dressed: {
  56688. height: math.unit(2.4, "meters"),
  56689. weight: math.unit(270, "kg"),
  56690. name: "Dressed",
  56691. image: {
  56692. source: "./media/characters/alice/dressed.svg",
  56693. extra: 905/850,
  56694. bottom: 81/986
  56695. }
  56696. },
  56697. fishnet: {
  56698. height: math.unit(2.4, "meters"),
  56699. weight: math.unit(270, "kg"),
  56700. name: "Fishnet",
  56701. image: {
  56702. source: "./media/characters/alice/fishnet.svg",
  56703. extra: 905/850,
  56704. bottom: 81/986
  56705. }
  56706. },
  56707. },
  56708. [
  56709. {
  56710. name: "Normal",
  56711. height: math.unit(2.4, "meters"),
  56712. default: true
  56713. },
  56714. ]
  56715. ))
  56716. characterMakers.push(() => makeCharacter(
  56717. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56718. {
  56719. front: {
  56720. height: math.unit(175.25, "feet"),
  56721. name: "Front",
  56722. image: {
  56723. source: "./media/characters/fio/front.svg",
  56724. extra: 1883/1591,
  56725. bottom: 34/1917
  56726. }
  56727. },
  56728. },
  56729. [
  56730. {
  56731. name: "Normal",
  56732. height: math.unit(175.25, "cm"),
  56733. default: true
  56734. },
  56735. ]
  56736. ))
  56737. characterMakers.push(() => makeCharacter(
  56738. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56739. {
  56740. side: {
  56741. height: math.unit(6, "meters"),
  56742. weight: math.unit(3400, "kg"),
  56743. preyCapacity: math.unit(1700, "liters"),
  56744. name: "Side",
  56745. image: {
  56746. source: "./media/characters/hass/side.svg",
  56747. extra: 1058/997,
  56748. bottom: 177/1235
  56749. }
  56750. },
  56751. feeding: {
  56752. height: math.unit(6*0.63, "meters"),
  56753. weight: math.unit(3400, "kg"),
  56754. preyCapacity: math.unit(1700, "liters"),
  56755. name: "Feeding",
  56756. image: {
  56757. source: "./media/characters/hass/feeding.svg",
  56758. extra: 689/579,
  56759. bottom: 146/835
  56760. }
  56761. },
  56762. guts: {
  56763. height: math.unit(6, "meters"),
  56764. weight: math.unit(3400, "kg"),
  56765. name: "Guts",
  56766. image: {
  56767. source: "./media/characters/hass/guts.svg",
  56768. extra: 1223/1198,
  56769. bottom: 182/1405
  56770. }
  56771. },
  56772. dickFront: {
  56773. height: math.unit(1.4, "meters"),
  56774. name: "Dick (Front)",
  56775. image: {
  56776. source: "./media/characters/hass/dick-front.svg"
  56777. }
  56778. },
  56779. dickSide: {
  56780. height: math.unit(1.3, "meters"),
  56781. name: "Dick (Side)",
  56782. image: {
  56783. source: "./media/characters/hass/dick-side.svg"
  56784. }
  56785. },
  56786. dickBack: {
  56787. height: math.unit(1.4, "meters"),
  56788. name: "Dick (Back)",
  56789. image: {
  56790. source: "./media/characters/hass/dick-back.svg"
  56791. }
  56792. },
  56793. },
  56794. [
  56795. {
  56796. name: "Normal",
  56797. height: math.unit(6, "meters"),
  56798. default: true
  56799. },
  56800. ]
  56801. ))
  56802. characterMakers.push(() => makeCharacter(
  56803. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56804. {
  56805. front: {
  56806. height: math.unit(4, "feet"),
  56807. weight: math.unit(60, "lb"),
  56808. name: "Front",
  56809. image: {
  56810. source: "./media/characters/hickory-finnegan/front.svg",
  56811. extra: 444/411,
  56812. bottom: 10/454
  56813. }
  56814. },
  56815. side: {
  56816. height: math.unit(4, "feet"),
  56817. weight: math.unit(60, "lb"),
  56818. name: "Side",
  56819. image: {
  56820. source: "./media/characters/hickory-finnegan/side.svg",
  56821. extra: 444/411,
  56822. bottom: 10/454
  56823. }
  56824. },
  56825. back: {
  56826. height: math.unit(4, "feet"),
  56827. weight: math.unit(60, "lb"),
  56828. name: "Back",
  56829. image: {
  56830. source: "./media/characters/hickory-finnegan/back.svg",
  56831. extra: 444/411,
  56832. bottom: 10/454
  56833. }
  56834. },
  56835. },
  56836. [
  56837. {
  56838. name: "Normal",
  56839. height: math.unit(4, "feet"),
  56840. default: true
  56841. },
  56842. ]
  56843. ))
  56844. characterMakers.push(() => makeCharacter(
  56845. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56846. {
  56847. snivy_front: {
  56848. height: math.unit(2, "feet"),
  56849. weight: math.unit(17.9, "lb"),
  56850. name: "Front",
  56851. image: {
  56852. source: "./media/characters/robin-phox/snivy-front.svg",
  56853. extra: 569/504,
  56854. bottom: 33/602
  56855. },
  56856. form: "snivy",
  56857. default: true
  56858. },
  56859. snivy_frontNsfw: {
  56860. height: math.unit(2, "feet"),
  56861. weight: math.unit(17.9, "lb"),
  56862. name: "Front (NSFW)",
  56863. image: {
  56864. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56865. extra: 569/504,
  56866. bottom: 33/602
  56867. },
  56868. form: "snivy",
  56869. },
  56870. snivy_back: {
  56871. height: math.unit(2, "feet"),
  56872. weight: math.unit(17.9, "lb"),
  56873. name: "Back",
  56874. image: {
  56875. source: "./media/characters/robin-phox/snivy-back.svg",
  56876. extra: 577/508,
  56877. bottom: 21/598
  56878. },
  56879. form: "snivy",
  56880. },
  56881. snivy_foot: {
  56882. height: math.unit(0.68, "feet"),
  56883. name: "Foot",
  56884. image: {
  56885. source: "./media/characters/robin-phox/snivy-foot.svg"
  56886. },
  56887. form: "snivy",
  56888. },
  56889. snivy_sole: {
  56890. height: math.unit(0.68, "feet"),
  56891. name: "Sole",
  56892. image: {
  56893. source: "./media/characters/robin-phox/snivy-sole.svg"
  56894. },
  56895. form: "snivy",
  56896. },
  56897. yoshi_front: {
  56898. height: math.unit(6, "feet"),
  56899. weight: math.unit(150, "lb"),
  56900. name: "Front",
  56901. image: {
  56902. source: "./media/characters/robin-phox/yoshi-front.svg",
  56903. extra: 890/792,
  56904. bottom: 29/919
  56905. },
  56906. form: "yoshi",
  56907. default: true
  56908. },
  56909. yoshi_frontNsfw: {
  56910. height: math.unit(6, "feet"),
  56911. weight: math.unit(150, "lb"),
  56912. name: "Front (NSFW)",
  56913. image: {
  56914. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56915. extra: 890/792,
  56916. bottom: 29/919
  56917. },
  56918. form: "yoshi",
  56919. },
  56920. yoshi_back: {
  56921. height: math.unit(6, "feet"),
  56922. weight: math.unit(150, "lb"),
  56923. name: "Back",
  56924. image: {
  56925. source: "./media/characters/robin-phox/yoshi-back.svg",
  56926. extra: 890/792,
  56927. bottom: 29/919
  56928. },
  56929. form: "yoshi",
  56930. },
  56931. yoshi_foot: {
  56932. height: math.unit(1.5, "feet"),
  56933. name: "Foot",
  56934. image: {
  56935. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56936. },
  56937. form: "yoshi",
  56938. },
  56939. delphox_front: {
  56940. height: math.unit(4 + 11/12, "feet"),
  56941. weight: math.unit(86, "lb"),
  56942. name: "Front",
  56943. image: {
  56944. source: "./media/characters/robin-phox/delphox-front.svg",
  56945. extra: 1266/1069,
  56946. bottom: 32/1298
  56947. },
  56948. form: "delphox",
  56949. default: true
  56950. },
  56951. delphox_frontNsfw: {
  56952. height: math.unit(4 + 11/12, "feet"),
  56953. weight: math.unit(86, "lb"),
  56954. name: "Front (NSFW)",
  56955. image: {
  56956. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56957. extra: 1266/1069,
  56958. bottom: 32/1298
  56959. },
  56960. form: "delphox",
  56961. },
  56962. delphox_back: {
  56963. height: math.unit(4 + 11/12, "feet"),
  56964. weight: math.unit(86, "lb"),
  56965. name: "Back",
  56966. image: {
  56967. source: "./media/characters/robin-phox/delphox-back.svg",
  56968. extra: 1269/1083,
  56969. bottom: 15/1284
  56970. },
  56971. form: "delphox",
  56972. },
  56973. mienshao_front: {
  56974. height: math.unit(4 + 7/12, "feet"),
  56975. weight: math.unit(78.3, "lb"),
  56976. name: "Front",
  56977. image: {
  56978. source: "./media/characters/robin-phox/mienshao-front.svg",
  56979. extra: 1052/970,
  56980. bottom: 108/1160
  56981. },
  56982. form: "mienshao",
  56983. default: true
  56984. },
  56985. mienshao_frontNsfw: {
  56986. height: math.unit(4 + 7/12, "feet"),
  56987. weight: math.unit(78.3, "lb"),
  56988. name: "Front (NSFW)",
  56989. image: {
  56990. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56991. extra: 1052/970,
  56992. bottom: 108/1160
  56993. },
  56994. form: "mienshao",
  56995. },
  56996. mienshao_back: {
  56997. height: math.unit(4 + 7/12, "feet"),
  56998. weight: math.unit(78.3, "lb"),
  56999. name: "Back",
  57000. image: {
  57001. source: "./media/characters/robin-phox/mienshao-back.svg",
  57002. extra: 1102/982,
  57003. bottom: 32/1134
  57004. },
  57005. form: "mienshao",
  57006. },
  57007. inteleon_front: {
  57008. height: math.unit(6 + 3/12, "feet"),
  57009. weight: math.unit(99.6, "lb"),
  57010. name: "Front",
  57011. image: {
  57012. source: "./media/characters/robin-phox/inteleon-front.svg",
  57013. extra: 910/799,
  57014. bottom: 76/986
  57015. },
  57016. form: "inteleon",
  57017. default: true
  57018. },
  57019. inteleon_frontNsfw: {
  57020. height: math.unit(6 + 3/12, "feet"),
  57021. weight: math.unit(99.6, "lb"),
  57022. name: "Front (NSFW)",
  57023. image: {
  57024. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57025. extra: 910/799,
  57026. bottom: 76/986
  57027. },
  57028. form: "inteleon",
  57029. },
  57030. inteleon_back: {
  57031. height: math.unit(6 + 3/12, "feet"),
  57032. weight: math.unit(99.6, "lb"),
  57033. name: "Back",
  57034. image: {
  57035. source: "./media/characters/robin-phox/inteleon-back.svg",
  57036. extra: 907/796,
  57037. bottom: 25/932
  57038. },
  57039. form: "inteleon",
  57040. },
  57041. reshiram_front: {
  57042. height: math.unit(10 + 6/12, "feet"),
  57043. weight: math.unit(727.5, "lb"),
  57044. name: "Front",
  57045. image: {
  57046. source: "./media/characters/robin-phox/reshiram-front.svg",
  57047. extra: 1198/940,
  57048. bottom: 123/1321
  57049. },
  57050. form: "reshiram",
  57051. },
  57052. reshiram_frontNsfw: {
  57053. height: math.unit(10 + 6/12, "feet"),
  57054. weight: math.unit(727.5, "lb"),
  57055. name: "Front-nsfw",
  57056. image: {
  57057. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57058. extra: 1198/940,
  57059. bottom: 123/1321
  57060. },
  57061. form: "reshiram",
  57062. },
  57063. reshiram_back: {
  57064. height: math.unit(10 + 6/12, "feet"),
  57065. weight: math.unit(727.5, "lb"),
  57066. name: "Back",
  57067. image: {
  57068. source: "./media/characters/robin-phox/reshiram-back.svg",
  57069. extra: 1024/904,
  57070. bottom: 85/1109
  57071. },
  57072. form: "reshiram",
  57073. },
  57074. samurott_front: {
  57075. height: math.unit(8, "feet"),
  57076. weight: math.unit(208.6, "lb"),
  57077. name: "Front",
  57078. image: {
  57079. source: "./media/characters/robin-phox/samurott-front.svg",
  57080. extra: 1048/984,
  57081. bottom: 100/1148
  57082. },
  57083. form: "samurott",
  57084. },
  57085. samurott_frontNsfw: {
  57086. height: math.unit(8, "feet"),
  57087. weight: math.unit(208.6, "lb"),
  57088. name: "Front-nsfw",
  57089. image: {
  57090. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57091. extra: 1048/984,
  57092. bottom: 100/1148
  57093. },
  57094. form: "samurott",
  57095. },
  57096. samurott_back: {
  57097. height: math.unit(8, "feet"),
  57098. weight: math.unit(208.6, "lb"),
  57099. name: "Back",
  57100. image: {
  57101. source: "./media/characters/robin-phox/samurott-back.svg",
  57102. extra: 1110/1042,
  57103. bottom: 12/1122
  57104. },
  57105. form: "samurott",
  57106. },
  57107. samurott_feral: {
  57108. height: math.unit(4 + 11/12, "feet"),
  57109. weight: math.unit(208.6, "lb"),
  57110. name: "Feral",
  57111. image: {
  57112. source: "./media/characters/robin-phox/samurott-feral.svg",
  57113. extra: 766/681,
  57114. bottom: 108/874
  57115. },
  57116. form: "samurott",
  57117. },
  57118. },
  57119. [
  57120. {
  57121. name: "Normal",
  57122. height: math.unit(2, "feet"),
  57123. default: true,
  57124. form: "snivy"
  57125. },
  57126. {
  57127. name: "Normal",
  57128. height: math.unit(6, "feet"),
  57129. default: true,
  57130. form: "yoshi"
  57131. },
  57132. {
  57133. name: "Normal",
  57134. height: math.unit(4 + 11/12, "feet"),
  57135. default: true,
  57136. form: "delphox"
  57137. },
  57138. {
  57139. name: "Normal",
  57140. height: math.unit(4 + 7/12, "feet"),
  57141. default: true,
  57142. form: "mienshao"
  57143. },
  57144. {
  57145. name: "Normal",
  57146. height: math.unit(6 + 3/12, "feet"),
  57147. default: true,
  57148. form: "inteleon"
  57149. },
  57150. {
  57151. name: "Normal",
  57152. height: math.unit(10 + 6/12, "feet"),
  57153. default: true,
  57154. form: "reshiram"
  57155. },
  57156. {
  57157. name: "Normal",
  57158. height: math.unit(8, "feet"),
  57159. default: true,
  57160. form: "samurott"
  57161. },
  57162. {
  57163. name: "Macro",
  57164. height: math.unit(500, "feet"),
  57165. allForms: true
  57166. },
  57167. {
  57168. name: "Mega Macro",
  57169. height: math.unit(10, "earths"),
  57170. allForms: true
  57171. },
  57172. {
  57173. name: "Giga Macro",
  57174. height: math.unit(1, "galaxy"),
  57175. allForms: true
  57176. },
  57177. {
  57178. name: "Godly Macro",
  57179. height: math.unit(1e10, "multiverses"),
  57180. allForms: true
  57181. },
  57182. ],
  57183. {
  57184. "snivy": {
  57185. name: "Snivy",
  57186. default: true
  57187. },
  57188. "yoshi": {
  57189. name: "Yoshi",
  57190. },
  57191. "delphox": {
  57192. name: "Delphox",
  57193. },
  57194. "mienshao": {
  57195. name: "Mienshao",
  57196. },
  57197. "inteleon": {
  57198. name: "Inteleon",
  57199. },
  57200. "reshiram": {
  57201. name: "Reshiram",
  57202. },
  57203. "samurott": {
  57204. name: "Samurott",
  57205. },
  57206. }
  57207. ))
  57208. characterMakers.push(() => makeCharacter(
  57209. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57210. {
  57211. front: {
  57212. height: math.unit(4, "feet"),
  57213. name: "Front",
  57214. image: {
  57215. source: "./media/characters/ash-leung/front.svg",
  57216. extra: 1916/1792,
  57217. bottom: 50/1966
  57218. }
  57219. },
  57220. },
  57221. [
  57222. {
  57223. name: "Atomic",
  57224. height: math.unit(1, "angstrom")
  57225. },
  57226. {
  57227. name: "Microscopic",
  57228. height: math.unit(4000, "angstroms")
  57229. },
  57230. {
  57231. name: "Speck",
  57232. height: math.unit(1, "mm")
  57233. },
  57234. {
  57235. name: "Small",
  57236. height: math.unit(1, "inch")
  57237. },
  57238. {
  57239. name: "Normal",
  57240. height: math.unit(4, "feet"),
  57241. default: true
  57242. },
  57243. ]
  57244. ))
  57245. characterMakers.push(() => makeCharacter(
  57246. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57247. {
  57248. frontDressed: {
  57249. height: math.unit(2.08, "meters"),
  57250. weight: math.unit(175, "lb"),
  57251. name: "Front (Dressed)",
  57252. image: {
  57253. source: "./media/characters/carie/front-dressed.svg",
  57254. extra: 456/417,
  57255. bottom: 7/463
  57256. }
  57257. },
  57258. backDressed: {
  57259. height: math.unit(2.08, "meters"),
  57260. weight: math.unit(175, "lb"),
  57261. name: "Back (Dressed)",
  57262. image: {
  57263. source: "./media/characters/carie/back-dressed.svg",
  57264. extra: 455/414,
  57265. bottom: 11/466
  57266. }
  57267. },
  57268. front: {
  57269. height: math.unit(2, "meters"),
  57270. weight: math.unit(175, "lb"),
  57271. name: "Front",
  57272. image: {
  57273. source: "./media/characters/carie/front.svg",
  57274. extra: 438/399,
  57275. bottom: 12/450
  57276. }
  57277. },
  57278. back: {
  57279. height: math.unit(2, "meters"),
  57280. weight: math.unit(175, "lb"),
  57281. name: "Back",
  57282. image: {
  57283. source: "./media/characters/carie/back.svg",
  57284. extra: 438/397,
  57285. bottom: 7/445
  57286. }
  57287. },
  57288. },
  57289. [
  57290. {
  57291. name: "Normal",
  57292. height: math.unit(2.08, "meters"),
  57293. default: true
  57294. },
  57295. {
  57296. name: "Macro",
  57297. height: math.unit(2.08e3, "meters")
  57298. },
  57299. {
  57300. name: "Mega Macro",
  57301. height: math.unit(2.08e6, "meters")
  57302. },
  57303. {
  57304. name: "Giga Macro",
  57305. height: math.unit(2.08e9, "meters")
  57306. },
  57307. {
  57308. name: "Tera Macro",
  57309. height: math.unit(2.08e12, "meters")
  57310. },
  57311. {
  57312. name: "Peta Macro",
  57313. height: math.unit(2.08e15, "meters")
  57314. },
  57315. {
  57316. name: "Exa Macro",
  57317. height: math.unit(2.08e18, "meters")
  57318. },
  57319. {
  57320. name: "Zetta Macro",
  57321. height: math.unit(2.08e21, "meters")
  57322. },
  57323. {
  57324. name: "Yotta Macro",
  57325. height: math.unit(2.08e24, "meters")
  57326. },
  57327. ]
  57328. ))
  57329. characterMakers.push(() => makeCharacter(
  57330. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57331. {
  57332. front: {
  57333. height: math.unit(5 + 2/12, "feet"),
  57334. weight: math.unit(120, "lb"),
  57335. name: "Front",
  57336. image: {
  57337. source: "./media/characters/sai-bree/front.svg",
  57338. extra: 1843/1702,
  57339. bottom: 91/1934
  57340. }
  57341. },
  57342. back: {
  57343. height: math.unit(5 + 2/12, "feet"),
  57344. weight: math.unit(120, "lb"),
  57345. name: "Back",
  57346. image: {
  57347. source: "./media/characters/sai-bree/back.svg",
  57348. extra: 1809/1637,
  57349. bottom: 56/1865
  57350. }
  57351. },
  57352. },
  57353. [
  57354. {
  57355. name: "Normal",
  57356. height: math.unit(5 + 2/12, "feet"),
  57357. default: true
  57358. },
  57359. {
  57360. name: "Macro",
  57361. height: math.unit(500, "feet")
  57362. },
  57363. ]
  57364. ))
  57365. characterMakers.push(() => makeCharacter(
  57366. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57367. {
  57368. side: {
  57369. height: math.unit(0.77, "meters"),
  57370. weight: math.unit(120, "lb"),
  57371. name: "Side",
  57372. image: {
  57373. source: "./media/characters/davwyn/side.svg",
  57374. extra: 1557/1225,
  57375. bottom: 131/1688
  57376. }
  57377. },
  57378. front: {
  57379. height: math.unit(0.835410, "meters"),
  57380. weight: math.unit(120, "lb"),
  57381. name: "Front",
  57382. image: {
  57383. source: "./media/characters/davwyn/front.svg",
  57384. extra: 870/843,
  57385. bottom: 175/1045
  57386. }
  57387. },
  57388. },
  57389. [
  57390. {
  57391. name: "Minidrake",
  57392. height: math.unit(0.77/4, "meters")
  57393. },
  57394. {
  57395. name: "Normal",
  57396. height: math.unit(0.77, "meters"),
  57397. default: true
  57398. },
  57399. ]
  57400. ))
  57401. characterMakers.push(() => makeCharacter(
  57402. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57403. {
  57404. front: {
  57405. height: math.unit(10 + 3/12, "feet"),
  57406. weight: math.unit(2857, "lb"),
  57407. name: "Front",
  57408. image: {
  57409. source: "./media/characters/balans/front.svg",
  57410. extra: 427/402,
  57411. bottom: 26/453
  57412. }
  57413. },
  57414. side: {
  57415. height: math.unit(10 + 3/12, "feet"),
  57416. weight: math.unit(2857, "lb"),
  57417. name: "Side",
  57418. image: {
  57419. source: "./media/characters/balans/side.svg",
  57420. extra: 397/371,
  57421. bottom: 17/414
  57422. }
  57423. },
  57424. back: {
  57425. height: math.unit(10 + 3/12, "feet"),
  57426. weight: math.unit(2857, "lb"),
  57427. name: "Back",
  57428. image: {
  57429. source: "./media/characters/balans/back.svg",
  57430. extra: 408/381,
  57431. bottom: 14/422
  57432. }
  57433. },
  57434. hand: {
  57435. height: math.unit(1.15, "feet"),
  57436. name: "Hand",
  57437. image: {
  57438. source: "./media/characters/balans/hand.svg"
  57439. }
  57440. },
  57441. footRest: {
  57442. height: math.unit(3.1, "feet"),
  57443. name: "Foot (Rest)",
  57444. image: {
  57445. source: "./media/characters/balans/foot-rest.svg"
  57446. }
  57447. },
  57448. footActive: {
  57449. height: math.unit(3.5, "feet"),
  57450. name: "Foot (Active)",
  57451. image: {
  57452. source: "./media/characters/balans/foot-active.svg"
  57453. }
  57454. },
  57455. },
  57456. [
  57457. {
  57458. name: "Normal",
  57459. height: math.unit(10 + 3/12, "feet"),
  57460. default: true
  57461. },
  57462. ]
  57463. ))
  57464. characterMakers.push(() => makeCharacter(
  57465. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57466. {
  57467. side: {
  57468. height: math.unit(9, "meters"),
  57469. weight: math.unit(114, "tonnes"),
  57470. name: "Side",
  57471. image: {
  57472. source: "./media/characters/eldkveikir/side.svg",
  57473. extra: 1927/338,
  57474. bottom: 42/1969
  57475. }
  57476. },
  57477. sitting: {
  57478. height: math.unit(13.4, "meters"),
  57479. weight: math.unit(114, "tonnes"),
  57480. name: "Sitting",
  57481. image: {
  57482. source: "./media/characters/eldkveikir/sitting.svg",
  57483. extra: 1108/963,
  57484. bottom: 610/1718
  57485. }
  57486. },
  57487. maw: {
  57488. height: math.unit(8.36, "meters"),
  57489. name: "Maw",
  57490. image: {
  57491. source: "./media/characters/eldkveikir/maw.svg"
  57492. }
  57493. },
  57494. hand: {
  57495. height: math.unit(4.84, "meters"),
  57496. name: "Hand",
  57497. image: {
  57498. source: "./media/characters/eldkveikir/hand.svg"
  57499. }
  57500. },
  57501. foot: {
  57502. height: math.unit(6.9, "meters"),
  57503. name: "Foot",
  57504. image: {
  57505. source: "./media/characters/eldkveikir/foot.svg"
  57506. }
  57507. },
  57508. genitals: {
  57509. height: math.unit(9.6, "meters"),
  57510. name: "Genitals",
  57511. image: {
  57512. source: "./media/characters/eldkveikir/genitals.svg"
  57513. }
  57514. },
  57515. },
  57516. [
  57517. {
  57518. name: "Normal",
  57519. height: math.unit(9, "meters"),
  57520. default: true
  57521. },
  57522. ]
  57523. ))
  57524. characterMakers.push(() => makeCharacter(
  57525. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57526. {
  57527. front: {
  57528. height: math.unit(14, "feet"),
  57529. weight: math.unit(4100, "lb"),
  57530. name: "Front",
  57531. image: {
  57532. source: "./media/characters/arrow/front.svg",
  57533. extra: 330/318,
  57534. bottom: 56/386
  57535. }
  57536. },
  57537. },
  57538. [
  57539. {
  57540. name: "Normal",
  57541. height: math.unit(14, "feet"),
  57542. default: true
  57543. },
  57544. {
  57545. name: "Minimacro",
  57546. height: math.unit(63, "feet")
  57547. },
  57548. {
  57549. name: "Macro",
  57550. height: math.unit(630, "feet")
  57551. },
  57552. {
  57553. name: "Megamacro",
  57554. height: math.unit(12600, "feet")
  57555. },
  57556. {
  57557. name: "Gigamacro",
  57558. height: math.unit(18000, "miles")
  57559. },
  57560. ]
  57561. ))
  57562. characterMakers.push(() => makeCharacter(
  57563. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57564. {
  57565. front: {
  57566. height: math.unit(10, "feet"),
  57567. weight: math.unit(2.4, "tons"),
  57568. name: "Front",
  57569. image: {
  57570. source: "./media/characters/3yk-k0-unit/front.svg",
  57571. extra: 573/561,
  57572. bottom: 33/606
  57573. }
  57574. },
  57575. back: {
  57576. height: math.unit(10, "feet"),
  57577. weight: math.unit(2.4, "tons"),
  57578. name: "Back",
  57579. image: {
  57580. source: "./media/characters/3yk-k0-unit/back.svg",
  57581. extra: 614/573,
  57582. bottom: 32/646
  57583. }
  57584. },
  57585. maw: {
  57586. height: math.unit(2.15, "feet"),
  57587. name: "Maw",
  57588. image: {
  57589. source: "./media/characters/3yk-k0-unit/maw.svg"
  57590. }
  57591. },
  57592. },
  57593. [
  57594. {
  57595. name: "Normal",
  57596. height: math.unit(10, "feet"),
  57597. default: true
  57598. },
  57599. ]
  57600. ))
  57601. characterMakers.push(() => makeCharacter(
  57602. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57603. {
  57604. front: {
  57605. height: math.unit(8 + 8/12, "feet"),
  57606. name: "Front",
  57607. image: {
  57608. source: "./media/characters/nemo/front.svg",
  57609. extra: 1308/1217,
  57610. bottom: 57/1365
  57611. }
  57612. },
  57613. },
  57614. [
  57615. {
  57616. name: "Normal",
  57617. height: math.unit(8 + 8/12, "feet"),
  57618. default: true
  57619. },
  57620. ]
  57621. ))
  57622. characterMakers.push(() => makeCharacter(
  57623. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57624. {
  57625. front: {
  57626. height: math.unit(8, "feet"),
  57627. weight: math.unit(760, "lb"),
  57628. name: "Front",
  57629. image: {
  57630. source: "./media/characters/rexx/front.svg",
  57631. extra: 786/750,
  57632. bottom: 17/803
  57633. },
  57634. extraAttributes: {
  57635. "pawLength": {
  57636. name: "Paw Length",
  57637. power: 1,
  57638. type: "length",
  57639. base: math.unit(27, "inches")
  57640. },
  57641. }
  57642. },
  57643. },
  57644. [
  57645. {
  57646. name: "Micro",
  57647. height: math.unit(2, "inches")
  57648. },
  57649. {
  57650. name: "Normal",
  57651. height: math.unit(8, "feet"),
  57652. default: true
  57653. },
  57654. {
  57655. name: "Macro",
  57656. height: math.unit(150, "feet")
  57657. },
  57658. ]
  57659. ))
  57660. characterMakers.push(() => makeCharacter(
  57661. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57662. {
  57663. front: {
  57664. height: math.unit(18, "feet"),
  57665. weight: math.unit(1975, "lb"),
  57666. name: "Front",
  57667. image: {
  57668. source: "./media/characters/draco/front.svg",
  57669. extra: 1325/1241,
  57670. bottom: 83/1408
  57671. }
  57672. },
  57673. back: {
  57674. height: math.unit(18, "feet"),
  57675. weight: math.unit(1975, "lb"),
  57676. name: "Back",
  57677. image: {
  57678. source: "./media/characters/draco/back.svg",
  57679. extra: 1332/1250,
  57680. bottom: 43/1375
  57681. }
  57682. },
  57683. dick: {
  57684. height: math.unit(7.5, "feet"),
  57685. name: "Dick",
  57686. image: {
  57687. source: "./media/characters/draco/dick.svg"
  57688. }
  57689. },
  57690. },
  57691. [
  57692. {
  57693. name: "Normal",
  57694. height: math.unit(18, "feet"),
  57695. default: true
  57696. },
  57697. ]
  57698. ))
  57699. characterMakers.push(() => makeCharacter(
  57700. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57701. {
  57702. front: {
  57703. height: math.unit(3.2, "meters"),
  57704. name: "Front",
  57705. image: {
  57706. source: "./media/characters/harriett/front.svg",
  57707. extra: 1966/1915,
  57708. bottom: 9/1975
  57709. }
  57710. },
  57711. },
  57712. [
  57713. {
  57714. name: "Normal",
  57715. height: math.unit(3.2, "meters"),
  57716. default: true
  57717. },
  57718. ]
  57719. ))
  57720. characterMakers.push(() => makeCharacter(
  57721. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57722. {
  57723. sitting: {
  57724. height: math.unit(0.8, "meter"),
  57725. name: "Sitting",
  57726. image: {
  57727. source: "./media/characters/serpentus/sitting.svg",
  57728. extra: 293/290,
  57729. bottom: 140/433
  57730. }
  57731. },
  57732. },
  57733. [
  57734. {
  57735. name: "Normal",
  57736. height: math.unit(0.8, "meter"),
  57737. default: true
  57738. },
  57739. ]
  57740. ))
  57741. characterMakers.push(() => makeCharacter(
  57742. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57743. {
  57744. front: {
  57745. height: math.unit(5.7174385736, "feet"),
  57746. name: "Front",
  57747. image: {
  57748. source: "./media/characters/nova-polecat/front.svg",
  57749. extra: 1317/1216,
  57750. bottom: 92/1409
  57751. }
  57752. },
  57753. },
  57754. [
  57755. {
  57756. name: "Normal",
  57757. height: math.unit(5.7174385736, "feet"),
  57758. default: true
  57759. },
  57760. ]
  57761. ))
  57762. characterMakers.push(() => makeCharacter(
  57763. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57764. {
  57765. front: {
  57766. height: math.unit(5 + 4/12, "feet"),
  57767. weight: math.unit(250, "lb"),
  57768. name: "Front",
  57769. image: {
  57770. source: "./media/characters/mook/front.svg",
  57771. extra: 1088/1037,
  57772. bottom: 132/1220
  57773. }
  57774. },
  57775. back: {
  57776. height: math.unit(5 + 1/12, "feet"),
  57777. weight: math.unit(250, "lb"),
  57778. name: "Back",
  57779. image: {
  57780. source: "./media/characters/mook/back.svg",
  57781. extra: 1184/905,
  57782. bottom: 96/1280
  57783. }
  57784. },
  57785. head: {
  57786. height: math.unit(1.85, "feet"),
  57787. name: "Head",
  57788. image: {
  57789. source: "./media/characters/mook/head.svg"
  57790. }
  57791. },
  57792. hand: {
  57793. height: math.unit(1.9, "feet"),
  57794. name: "Hand",
  57795. image: {
  57796. source: "./media/characters/mook/hand.svg"
  57797. }
  57798. },
  57799. palm: {
  57800. height: math.unit(1.84, "feet"),
  57801. name: "Palm",
  57802. image: {
  57803. source: "./media/characters/mook/palm.svg"
  57804. }
  57805. },
  57806. foot: {
  57807. height: math.unit(1.44, "feet"),
  57808. name: "Foot",
  57809. image: {
  57810. source: "./media/characters/mook/foot.svg"
  57811. }
  57812. },
  57813. sole: {
  57814. height: math.unit(1.44, "feet"),
  57815. name: "Sole",
  57816. image: {
  57817. source: "./media/characters/mook/sole.svg"
  57818. }
  57819. },
  57820. },
  57821. [
  57822. {
  57823. name: "Normal",
  57824. height: math.unit(5 + 4/12, "feet"),
  57825. default: true
  57826. },
  57827. {
  57828. name: "Big",
  57829. height: math.unit(12, "feet")
  57830. },
  57831. ]
  57832. ))
  57833. characterMakers.push(() => makeCharacter(
  57834. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57835. {
  57836. front: {
  57837. height: math.unit(6 + 10/12, "feet"),
  57838. weight: math.unit(233, "lb"),
  57839. name: "Front",
  57840. image: {
  57841. source: "./media/characters/kayla/front.svg",
  57842. extra: 1850/1775,
  57843. bottom: 65/1915
  57844. }
  57845. },
  57846. },
  57847. [
  57848. {
  57849. name: "Normal",
  57850. height: math.unit(6 + 10/12, "feet"),
  57851. default: true
  57852. },
  57853. {
  57854. name: "Amazonian",
  57855. height: math.unit(12 + 5/12, "feet")
  57856. },
  57857. {
  57858. name: "Mini Giantess",
  57859. height: math.unit(26, "feet")
  57860. },
  57861. {
  57862. name: "Giantess",
  57863. height: math.unit(200, "feet")
  57864. },
  57865. {
  57866. name: "Mega Giantess",
  57867. height: math.unit(2500, "feet")
  57868. },
  57869. {
  57870. name: "City Sized",
  57871. height: math.unit(50, "miles")
  57872. },
  57873. {
  57874. name: "Country Sized",
  57875. height: math.unit(500, "miles")
  57876. },
  57877. {
  57878. name: "Continent Sized",
  57879. height: math.unit(2500, "miles")
  57880. },
  57881. {
  57882. name: "Planet Sized",
  57883. height: math.unit(10000, "miles")
  57884. },
  57885. {
  57886. name: "Star Sized",
  57887. height: math.unit(5e6, "miles")
  57888. },
  57889. {
  57890. name: "Solar System Sized",
  57891. height: math.unit(125, "AU")
  57892. },
  57893. {
  57894. name: "Galaxy Sized",
  57895. height: math.unit(300e3, "lightyears")
  57896. },
  57897. {
  57898. name: "Universe Sized",
  57899. height: math.unit(200e9, "lightyears")
  57900. },
  57901. {
  57902. name: "Multiverse Sized",
  57903. height: math.unit(20, "exauniverses")
  57904. },
  57905. {
  57906. name: "Mother of Existence",
  57907. height: math.unit(1e6, "yottauniverses")
  57908. },
  57909. ]
  57910. ))
  57911. characterMakers.push(() => makeCharacter(
  57912. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57913. {
  57914. side: {
  57915. height: math.unit(9.5, "meters"),
  57916. name: "Side",
  57917. image: {
  57918. source: "./media/characters/kulve-ragnarok/side.svg",
  57919. extra: 364/326,
  57920. bottom: 50/414
  57921. }
  57922. },
  57923. },
  57924. [
  57925. {
  57926. name: "Normal",
  57927. height: math.unit(9.5, "meters"),
  57928. default: true
  57929. },
  57930. ]
  57931. ))
  57932. characterMakers.push(() => makeCharacter(
  57933. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57934. {
  57935. front: {
  57936. height: math.unit(8 + 9/12, "feet"),
  57937. name: "Front",
  57938. image: {
  57939. source: "./media/characters/atlas-goat/front.svg",
  57940. extra: 1462/1323,
  57941. bottom: 12/1474
  57942. }
  57943. },
  57944. },
  57945. [
  57946. {
  57947. name: "Normal",
  57948. height: math.unit(8 + 9/12, "feet"),
  57949. default: true
  57950. },
  57951. {
  57952. name: "Skyline",
  57953. height: math.unit(845, "feet")
  57954. },
  57955. {
  57956. name: "Orbital",
  57957. height: math.unit(93000, "miles")
  57958. },
  57959. {
  57960. name: "Constellation",
  57961. height: math.unit(27000, "lightyears")
  57962. },
  57963. ]
  57964. ))
  57965. characterMakers.push(() => makeCharacter(
  57966. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57967. {
  57968. side: {
  57969. height: math.unit(1.8, "meters"),
  57970. weight: math.unit(120, "kg"),
  57971. name: "Side",
  57972. image: {
  57973. source: "./media/characters/xie-ling/side.svg",
  57974. extra: 646/574,
  57975. bottom: 44/690
  57976. }
  57977. },
  57978. },
  57979. [
  57980. {
  57981. name: "Tiny",
  57982. height: math.unit(1.80, "meters")
  57983. },
  57984. {
  57985. name: "Small",
  57986. height: math.unit(6, "meters")
  57987. },
  57988. {
  57989. name: "Medium",
  57990. height: math.unit(15, "meters")
  57991. },
  57992. {
  57993. name: "Normal",
  57994. height: math.unit(30, "meters"),
  57995. default: true
  57996. },
  57997. {
  57998. name: "Above Normal",
  57999. height: math.unit(60, "meters")
  58000. },
  58001. {
  58002. name: "Big",
  58003. height: math.unit(220, "meters")
  58004. },
  58005. {
  58006. name: "Giant",
  58007. height: math.unit(2.2, "km")
  58008. },
  58009. {
  58010. name: "Macro",
  58011. height: math.unit(25, "km")
  58012. },
  58013. {
  58014. name: "Mega Macro",
  58015. height: math.unit(350, "km")
  58016. },
  58017. {
  58018. name: "Mega Macro+",
  58019. height: math.unit(5000, "km")
  58020. },
  58021. {
  58022. name: "Goddess",
  58023. height: math.unit(3, "multiverses")
  58024. },
  58025. ]
  58026. ))
  58027. characterMakers.push(() => makeCharacter(
  58028. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58029. {
  58030. frontSfw: {
  58031. height: math.unit(5 + 11/12, "feet"),
  58032. weight: math.unit(210, "lb"),
  58033. name: "Front",
  58034. image: {
  58035. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58036. extra: 1928/1821,
  58037. bottom: 45/1973
  58038. }
  58039. },
  58040. backSfw: {
  58041. height: math.unit(5 + 11/12, "feet"),
  58042. weight: math.unit(210, "lb"),
  58043. name: "Back",
  58044. image: {
  58045. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58046. extra: 1920/1813,
  58047. bottom: 34/1954
  58048. }
  58049. },
  58050. frontNsfw: {
  58051. height: math.unit(5 + 11/12, "feet"),
  58052. weight: math.unit(210, "lb"),
  58053. name: "Front (NSFW)",
  58054. image: {
  58055. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58056. extra: 1928/1821,
  58057. bottom: 45/1973
  58058. }
  58059. },
  58060. backNsfw: {
  58061. height: math.unit(5 + 11/12, "feet"),
  58062. weight: math.unit(210, "lb"),
  58063. name: "Back (NSFW)",
  58064. image: {
  58065. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58066. extra: 1920/1813,
  58067. bottom: 34/1954
  58068. }
  58069. },
  58070. },
  58071. [
  58072. {
  58073. name: "Normal",
  58074. height: math.unit(5 + 11/12, "feet"),
  58075. default: true
  58076. },
  58077. {
  58078. name: "Goddess",
  58079. height: math.unit(20 + 3/12, "feet")
  58080. },
  58081. {
  58082. name: "Breaker of Man",
  58083. height: math.unit(329 + 9/12, "feet")
  58084. },
  58085. {
  58086. name: "Solar Justice",
  58087. height: math.unit(0.6, "solarradii")
  58088. },
  58089. {
  58090. name: "She Who Judges",
  58091. height: math.unit(1, "universe")
  58092. },
  58093. ]
  58094. ))
  58095. characterMakers.push(() => makeCharacter(
  58096. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58097. {
  58098. casual_front: {
  58099. height: math.unit(6 + 1/12, "feet"),
  58100. weight: math.unit(190, "lb"),
  58101. preyCapacity: math.unit(1, "people"),
  58102. name: "Front",
  58103. image: {
  58104. source: "./media/characters/managarmr/casual-front.svg",
  58105. extra: 411/381,
  58106. bottom: 15/426
  58107. },
  58108. extraAttributes: {
  58109. "pawSize": {
  58110. name: "Paw Size",
  58111. power: 1,
  58112. type: "length",
  58113. base: math.unit(0.2, "meters")
  58114. },
  58115. },
  58116. form: "casual",
  58117. },
  58118. casual_back: {
  58119. height: math.unit(6 + 1/12, "feet"),
  58120. weight: math.unit(190, "lb"),
  58121. preyCapacity: math.unit(1, "people"),
  58122. name: "Back",
  58123. image: {
  58124. source: "./media/characters/managarmr/casual-back.svg",
  58125. extra: 413/383,
  58126. bottom: 13/426
  58127. },
  58128. extraAttributes: {
  58129. "pawSize": {
  58130. name: "Paw Size",
  58131. power: 1,
  58132. type: "length",
  58133. base: math.unit(0.2, "meters")
  58134. },
  58135. },
  58136. form: "casual",
  58137. },
  58138. base_front: {
  58139. height: math.unit(7, "feet"),
  58140. weight: math.unit(210, "lb"),
  58141. preyCapacity: math.unit(2, "people"),
  58142. name: "Front",
  58143. image: {
  58144. source: "./media/characters/managarmr/base-front.svg",
  58145. extra: 580/485,
  58146. bottom: 32/612
  58147. },
  58148. extraAttributes: {
  58149. "wingspan": {
  58150. name: "Wingspan",
  58151. power: 1,
  58152. type: "length",
  58153. base: math.unit(4, "meters")
  58154. },
  58155. "pawSize": {
  58156. name: "Paw Size",
  58157. power: 1,
  58158. type: "length",
  58159. base: math.unit(0.2, "meters")
  58160. },
  58161. },
  58162. form: "base",
  58163. },
  58164. "true-divine_front": {
  58165. height: math.unit(40, "feet"),
  58166. weight: math.unit(39000, "lb"),
  58167. preyCapacity: math.unit(375, "people"),
  58168. name: "Front",
  58169. image: {
  58170. source: "./media/characters/managarmr/true-divine-front.svg",
  58171. extra: 725/573,
  58172. bottom: 120/845
  58173. },
  58174. extraAttributes: {
  58175. "wingspan": {
  58176. name: "Wingspan",
  58177. power: 1,
  58178. type: "length",
  58179. base: math.unit(20, "meters")
  58180. },
  58181. "pawSize": {
  58182. name: "Paw Size",
  58183. power: 1,
  58184. type: "length",
  58185. base: math.unit(1.5, "meters")
  58186. },
  58187. },
  58188. form: "true-divine",
  58189. },
  58190. },
  58191. [
  58192. {
  58193. name: "Normal",
  58194. height: math.unit(6 + 1/12, "feet"),
  58195. form: "casual",
  58196. default: true
  58197. },
  58198. {
  58199. name: "Normal",
  58200. height: math.unit(7, "feet"),
  58201. form: "base",
  58202. default: true
  58203. },
  58204. ],
  58205. {
  58206. "casual": {
  58207. name: "Casual",
  58208. default: true
  58209. },
  58210. "base": {
  58211. name: "Base",
  58212. },
  58213. "true-divine": {
  58214. name: "True Divine",
  58215. },
  58216. }
  58217. ))
  58218. characterMakers.push(() => makeCharacter(
  58219. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58220. {
  58221. front: {
  58222. height: math.unit(1.8, "meters"),
  58223. weight: math.unit(110, "kg"),
  58224. name: "Front",
  58225. image: {
  58226. source: "./media/characters/mystra/front.svg",
  58227. extra: 529/442,
  58228. bottom: 31/560
  58229. }
  58230. },
  58231. frontLewd: {
  58232. height: math.unit(1.8, "meters"),
  58233. weight: math.unit(110, "kg"),
  58234. name: "Front (Lewd)",
  58235. image: {
  58236. source: "./media/characters/mystra/front-lewd.svg",
  58237. extra: 529/442,
  58238. bottom: 31/560
  58239. }
  58240. },
  58241. head: {
  58242. height: math.unit(1.63, "feet"),
  58243. name: "Head",
  58244. image: {
  58245. source: "./media/characters/mystra/head.svg"
  58246. }
  58247. },
  58248. paw: {
  58249. height: math.unit(1.9, "feet"),
  58250. name: "Paw",
  58251. image: {
  58252. source: "./media/characters/mystra/paw.svg"
  58253. }
  58254. },
  58255. },
  58256. [
  58257. {
  58258. name: "Incognito",
  58259. height: math.unit(2.3, "meters")
  58260. },
  58261. {
  58262. name: "Small Macro",
  58263. height: math.unit(300, "meters")
  58264. },
  58265. {
  58266. name: "Small Mega",
  58267. height: math.unit(2, "km")
  58268. },
  58269. {
  58270. name: "Mega",
  58271. height: math.unit(30, "km")
  58272. },
  58273. {
  58274. name: "Small Giga",
  58275. height: math.unit(100, "km")
  58276. },
  58277. {
  58278. name: "Giga",
  58279. height: math.unit(1000, "km"),
  58280. default: true
  58281. },
  58282. {
  58283. name: "Continental",
  58284. height: math.unit(5000, "km")
  58285. },
  58286. {
  58287. name: "Terra",
  58288. height: math.unit(20000, "km")
  58289. },
  58290. {
  58291. name: "Solar",
  58292. height: math.unit(2e6, "km")
  58293. },
  58294. {
  58295. name: "Galactic",
  58296. height: math.unit(528502, "lightyears")
  58297. },
  58298. {
  58299. name: "Universal",
  58300. height: math.unit(20, "universes")
  58301. },
  58302. ]
  58303. ))
  58304. characterMakers.push(() => makeCharacter(
  58305. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58306. {
  58307. front: {
  58308. height: math.unit(2, "meters"),
  58309. weight: math.unit(140, "kg"),
  58310. name: "Front",
  58311. image: {
  58312. source: "./media/characters/caleb/front.svg",
  58313. extra: 873/817,
  58314. bottom: 47/920
  58315. }
  58316. },
  58317. back: {
  58318. height: math.unit(2, "meters"),
  58319. weight: math.unit(140, "kg"),
  58320. name: "Back",
  58321. image: {
  58322. source: "./media/characters/caleb/back.svg",
  58323. extra: 877/828,
  58324. bottom: 24/901
  58325. }
  58326. },
  58327. snakeTail: {
  58328. height: math.unit(1.44, "feet"),
  58329. name: "Snake Tail",
  58330. image: {
  58331. source: "./media/characters/caleb/snake-tail.svg"
  58332. }
  58333. },
  58334. dick: {
  58335. height: math.unit(2.6, "feet"),
  58336. name: "Dick",
  58337. image: {
  58338. source: "./media/characters/caleb/dick.svg"
  58339. }
  58340. },
  58341. },
  58342. [
  58343. {
  58344. name: "Incognito",
  58345. height: math.unit(3, "meters")
  58346. },
  58347. {
  58348. name: "Home Size",
  58349. height: math.unit(200, "meters"),
  58350. default: true
  58351. },
  58352. {
  58353. name: "Macro",
  58354. height: math.unit(500, "meters")
  58355. },
  58356. {
  58357. name: "Big Macro",
  58358. height: math.unit(5, "km")
  58359. },
  58360. {
  58361. name: "Giga",
  58362. height: math.unit(250, "km")
  58363. },
  58364. {
  58365. name: "Giga+",
  58366. height: math.unit(5000, "km")
  58367. },
  58368. {
  58369. name: "Small Terra",
  58370. height: math.unit(35e3, "km")
  58371. },
  58372. {
  58373. name: "Terra",
  58374. height: math.unit(2e6, "km")
  58375. },
  58376. {
  58377. name: "Terra+",
  58378. height: math.unit(1.5e6, "km")
  58379. },
  58380. ]
  58381. ))
  58382. characterMakers.push(() => makeCharacter(
  58383. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58384. {
  58385. front: {
  58386. height: math.unit(2, "meters"),
  58387. weight: math.unit(120, "kg"),
  58388. name: "Front",
  58389. image: {
  58390. source: "./media/characters/gilirian/front.svg",
  58391. extra: 805/737,
  58392. bottom: 13/818
  58393. }
  58394. },
  58395. side: {
  58396. height: math.unit(2, "meters"),
  58397. weight: math.unit(120, "kg"),
  58398. name: "Side",
  58399. image: {
  58400. source: "./media/characters/gilirian/side.svg",
  58401. extra: 810/746,
  58402. bottom: 6/816
  58403. }
  58404. },
  58405. back: {
  58406. height: math.unit(2, "meters"),
  58407. weight: math.unit(120, "kg"),
  58408. name: "Back",
  58409. image: {
  58410. source: "./media/characters/gilirian/back.svg",
  58411. extra: 815/745,
  58412. bottom: 15/830
  58413. }
  58414. },
  58415. frontNsfw: {
  58416. height: math.unit(2, "meters"),
  58417. weight: math.unit(120, "kg"),
  58418. name: "Front (NSFW)",
  58419. image: {
  58420. source: "./media/characters/gilirian/front-nsfw.svg",
  58421. extra: 805/737,
  58422. bottom: 13/818
  58423. }
  58424. },
  58425. sideNsfw: {
  58426. height: math.unit(2, "meters"),
  58427. weight: math.unit(120, "kg"),
  58428. name: "Side (NSFW)",
  58429. image: {
  58430. source: "./media/characters/gilirian/side-nsfw.svg",
  58431. extra: 810/746,
  58432. bottom: 6/816
  58433. }
  58434. },
  58435. },
  58436. [
  58437. {
  58438. name: "Incognito",
  58439. height: math.unit(2, "meters"),
  58440. default: true
  58441. },
  58442. {
  58443. name: "Macro",
  58444. height: math.unit(250, "meters")
  58445. },
  58446. {
  58447. name: "Big Macro",
  58448. height: math.unit(1500, "meters")
  58449. },
  58450. {
  58451. name: "Mega",
  58452. height: math.unit(40, "km")
  58453. },
  58454. {
  58455. name: "Giga",
  58456. height: math.unit(300, "km")
  58457. },
  58458. {
  58459. name: "Extra Giga",
  58460. height: math.unit(5000, "km")
  58461. },
  58462. {
  58463. name: "Small Terra",
  58464. height: math.unit(10e3, "km")
  58465. },
  58466. {
  58467. name: "Terra",
  58468. height: math.unit(3e5, "km")
  58469. },
  58470. {
  58471. name: "Galactic",
  58472. height: math.unit(369950, "lightyears")
  58473. },
  58474. ]
  58475. ))
  58476. characterMakers.push(() => makeCharacter(
  58477. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58478. {
  58479. front: {
  58480. height: math.unit(2.5, "meters"),
  58481. weight: math.unit(230, "lb"),
  58482. name: "Front",
  58483. image: {
  58484. source: "./media/characters/tarken/front.svg",
  58485. extra: 764/720,
  58486. bottom: 49/813
  58487. }
  58488. },
  58489. back: {
  58490. height: math.unit(2.5, "meters"),
  58491. weight: math.unit(230, "lb"),
  58492. name: "Back",
  58493. image: {
  58494. source: "./media/characters/tarken/back.svg",
  58495. extra: 756/720,
  58496. bottom: 35/791
  58497. }
  58498. },
  58499. frontNsfw: {
  58500. height: math.unit(2.5, "meters"),
  58501. weight: math.unit(230, "lb"),
  58502. name: "Front (NSFW)",
  58503. image: {
  58504. source: "./media/characters/tarken/front-nsfw.svg",
  58505. extra: 764/720,
  58506. bottom: 49/813
  58507. }
  58508. },
  58509. backNsfw: {
  58510. height: math.unit(2.5, "meters"),
  58511. weight: math.unit(230, "lb"),
  58512. name: "Back (NSFW)",
  58513. image: {
  58514. source: "./media/characters/tarken/back-nsfw.svg",
  58515. extra: 756/720,
  58516. bottom: 35/791
  58517. }
  58518. },
  58519. head: {
  58520. height: math.unit(2.22, "feet"),
  58521. name: "Head",
  58522. image: {
  58523. source: "./media/characters/tarken/head.svg"
  58524. }
  58525. },
  58526. tail: {
  58527. height: math.unit(5.25, "feet"),
  58528. name: "Tail",
  58529. image: {
  58530. source: "./media/characters/tarken/tail.svg"
  58531. }
  58532. },
  58533. dick: {
  58534. height: math.unit(1.95, "feet"),
  58535. name: "Dick",
  58536. image: {
  58537. source: "./media/characters/tarken/dick.svg"
  58538. }
  58539. },
  58540. hand: {
  58541. height: math.unit(1.78, "feet"),
  58542. name: "Hand",
  58543. image: {
  58544. source: "./media/characters/tarken/hand.svg"
  58545. }
  58546. },
  58547. beam: {
  58548. height: math.unit(1.5, "feet"),
  58549. name: "Beam",
  58550. image: {
  58551. source: "./media/characters/tarken/beam.svg"
  58552. }
  58553. },
  58554. },
  58555. [
  58556. {
  58557. name: "Original Size",
  58558. height: math.unit(2.5, "meters")
  58559. },
  58560. {
  58561. name: "Macro",
  58562. height: math.unit(150, "meters"),
  58563. default: true
  58564. },
  58565. {
  58566. name: "Macro+",
  58567. height: math.unit(300, "meters")
  58568. },
  58569. {
  58570. name: "Mega",
  58571. height: math.unit(2, "km")
  58572. },
  58573. {
  58574. name: "Mega+",
  58575. height: math.unit(35, "km")
  58576. },
  58577.  {
  58578. name: "Mega++",
  58579. height: math.unit(60, "km")
  58580. },
  58581. {
  58582. name: "Giga",
  58583. height: math.unit(200, "km")
  58584. },
  58585. {
  58586. name: "Giga+",
  58587. height: math.unit(2500, "km")
  58588. },
  58589. {
  58590. name: "Giga++",
  58591. height: math.unit(6600, "km")
  58592. },
  58593. {
  58594. name: "Terra",
  58595. height: math.unit(20000, "km")
  58596. },
  58597. {
  58598. name: "Terra+",
  58599. height: math.unit(300000, "km")
  58600. },
  58601. ]
  58602. ))
  58603. characterMakers.push(() => makeCharacter(
  58604. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58605. {
  58606. magpie_dressed: {
  58607. height: math.unit(1.7, "meters"),
  58608. weight: math.unit(70, "kg"),
  58609. name: "Dressed",
  58610. image: {
  58611. source: "./media/characters/otreus/magpie-dressed.svg",
  58612. extra: 691/672,
  58613. bottom: 116/807
  58614. },
  58615. form: "magpie",
  58616. default: true
  58617. },
  58618. magpie_nude: {
  58619. height: math.unit(1.7, "meters"),
  58620. weight: math.unit(70, "kg"),
  58621. name: "Nude",
  58622. image: {
  58623. source: "./media/characters/otreus/magpie-nude.svg",
  58624. extra: 691/672,
  58625. bottom: 116/807
  58626. },
  58627. form: "magpie",
  58628. },
  58629. magpie_dressedLewd: {
  58630. height: math.unit(1.7, "meters"),
  58631. weight: math.unit(70, "kg"),
  58632. name: "Dressed (Lewd)",
  58633. image: {
  58634. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58635. extra: 691/672,
  58636. bottom: 116/807
  58637. },
  58638. form: "magpie",
  58639. },
  58640. magpie_nudeLewd: {
  58641. height: math.unit(1.7, "meters"),
  58642. weight: math.unit(70, "kg"),
  58643. name: "Nude (Lewd)",
  58644. image: {
  58645. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58646. extra: 691/672,
  58647. bottom: 116/807
  58648. },
  58649. form: "magpie",
  58650. },
  58651. magpie_leftFoot: {
  58652. height: math.unit(1.58, "feet"),
  58653. name: "Left Foot",
  58654. image: {
  58655. source: "./media/characters/otreus/magpie-left-foot.svg"
  58656. },
  58657. form: "magpie",
  58658. },
  58659. magpie_rightFoot: {
  58660. height: math.unit(1.58, "feet"),
  58661. name: "Right Foot",
  58662. image: {
  58663. source: "./media/characters/otreus/magpie-right-foot.svg"
  58664. },
  58665. form: "magpie",
  58666. },
  58667. magpie_wingspan: {
  58668. height: math.unit(2, "meters"),
  58669. weight: math.unit(70, "kg"),
  58670. name: "Wingspan",
  58671. image: {
  58672. source: "./media/characters/otreus/magpie-wingspan.svg"
  58673. },
  58674. extraAttributes: {
  58675. "wingspan": {
  58676. name: "Wingspan",
  58677. power: 1,
  58678. type: "length",
  58679. base: math.unit(3.35, "meters")
  58680. },
  58681. },
  58682. form: "magpie",
  58683. },
  58684. hippogriff_dressed: {
  58685. height: math.unit(1.7, "meters"),
  58686. weight: math.unit(70, "kg"),
  58687. name: "Dressed",
  58688. image: {
  58689. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58690. extra: 710/689,
  58691. bottom: 67/777
  58692. },
  58693. form: "hippogriff",
  58694. default: true
  58695. },
  58696. hippogriff_nude: {
  58697. height: math.unit(1.7, "meters"),
  58698. weight: math.unit(70, "kg"),
  58699. name: "Nude",
  58700. image: {
  58701. source: "./media/characters/otreus/hippogriff-nude.svg",
  58702. extra: 710/689,
  58703. bottom: 67/777
  58704. },
  58705. form: "hippogriff",
  58706. },
  58707. hippogriff_dressedLewd: {
  58708. height: math.unit(1.7, "meters"),
  58709. weight: math.unit(70, "kg"),
  58710. name: "Dressed (Lewd)",
  58711. image: {
  58712. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58713. extra: 710/689,
  58714. bottom: 67/777
  58715. },
  58716. form: "hippogriff",
  58717. },
  58718. hippogriff_nudeLewd: {
  58719. height: math.unit(1.7, "meters"),
  58720. weight: math.unit(70, "kg"),
  58721. name: "Nude (Lewd)",
  58722. image: {
  58723. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58724. extra: 710/689,
  58725. bottom: 67/777
  58726. },
  58727. form: "hippogriff",
  58728. },
  58729. },
  58730. [
  58731. {
  58732. name: "Original Size",
  58733. height: math.unit(1.7, "meters"),
  58734. allForms: true
  58735. },
  58736. {
  58737. name: "Incognito Size",
  58738. height: math.unit(2, "meters"),
  58739. allForms: true
  58740. },
  58741. {
  58742. name: "Mega",
  58743. height: math.unit(2, "km"),
  58744. allForms: true
  58745. },
  58746. {
  58747. name: "Mega+",
  58748. height: math.unit(40, "km"),
  58749. allForms: true
  58750. },
  58751. {
  58752. name: "Giga",
  58753. height: math.unit(250, "km"),
  58754. allForms: true
  58755. },
  58756. {
  58757. name: "Giga+",
  58758. height: math.unit(3000, "km"),
  58759. allForms: true
  58760. },
  58761. {
  58762. name: "Terra",
  58763. height: math.unit(20000, "km"),
  58764. allForms: true
  58765. },
  58766. {
  58767. name: "Solar (Home Size)",
  58768. height: math.unit(3e6, "km"),
  58769. allForms: true,
  58770. default: true
  58771. },
  58772. ],
  58773. {
  58774. "magpie": {
  58775. name: "Magpie",
  58776. default: true
  58777. },
  58778. "hippogriff": {
  58779. name: "Hippogriff",
  58780. },
  58781. }
  58782. ))
  58783. characterMakers.push(() => makeCharacter(
  58784. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58785. {
  58786. frontDressed: {
  58787. height: math.unit(1.8, "meters"),
  58788. weight: math.unit(90, "kg"),
  58789. name: "Front (Dressed)",
  58790. image: {
  58791. source: "./media/characters/thalia/front-dressed.svg",
  58792. extra: 478/402,
  58793. bottom: 55/533
  58794. }
  58795. },
  58796. backDressed: {
  58797. height: math.unit(1.8, "meters"),
  58798. weight: math.unit(90, "kg"),
  58799. name: "Back (Dressed)",
  58800. image: {
  58801. source: "./media/characters/thalia/back-dressed.svg",
  58802. extra: 500/424,
  58803. bottom: 15/515
  58804. }
  58805. },
  58806. frontNude: {
  58807. height: math.unit(1.8, "meters"),
  58808. weight: math.unit(90, "kg"),
  58809. name: "Front (Nude)",
  58810. image: {
  58811. source: "./media/characters/thalia/front-nude.svg",
  58812. extra: 478/402,
  58813. bottom: 55/533
  58814. }
  58815. },
  58816. backNude: {
  58817. height: math.unit(1.8, "meters"),
  58818. weight: math.unit(90, "kg"),
  58819. name: "Back (Nude)",
  58820. image: {
  58821. source: "./media/characters/thalia/back-nude.svg",
  58822. extra: 500/424,
  58823. bottom: 15/515
  58824. }
  58825. },
  58826. },
  58827. [
  58828. {
  58829. name: "Incognito",
  58830. height: math.unit(3, "meters")
  58831. },
  58832. {
  58833. name: "Macro",
  58834. height: math.unit(500, "meters")
  58835. },
  58836. {
  58837. name: "Mega",
  58838. height: math.unit(5, "km")
  58839. },
  58840. {
  58841. name: "Mega+",
  58842. height: math.unit(30, "km")
  58843. },
  58844. {
  58845. name: "Giga",
  58846. height: math.unit(350, "km")
  58847. },
  58848. {
  58849. name: "Giga+",
  58850. height: math.unit(4000, "km")
  58851. },
  58852. {
  58853. name: "Terra",
  58854. height: math.unit(35000, "km")
  58855. },
  58856. {
  58857. name: "Original Size",
  58858. height: math.unit(130000, "km")
  58859. },
  58860. {
  58861. name: "Solar (Home Size)",
  58862. height: math.unit(4e6, "km"),
  58863. default: true
  58864. },
  58865. ]
  58866. ))
  58867. characterMakers.push(() => makeCharacter(
  58868. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58869. {
  58870. front: {
  58871. height: math.unit(1.8, "meters"),
  58872. weight: math.unit(95, "kg"),
  58873. name: "Front",
  58874. image: {
  58875. source: "./media/characters/shango/front.svg",
  58876. extra: 1925/1774,
  58877. bottom: 67/1992
  58878. }
  58879. },
  58880. back: {
  58881. height: math.unit(1.8, "meters"),
  58882. weight: math.unit(95, "kg"),
  58883. name: "Back",
  58884. image: {
  58885. source: "./media/characters/shango/back.svg",
  58886. extra: 1915/1766,
  58887. bottom: 52/1967
  58888. }
  58889. },
  58890. frontLewd: {
  58891. height: math.unit(1.8, "meters"),
  58892. weight: math.unit(95, "kg"),
  58893. name: "Front (Lewd)",
  58894. image: {
  58895. source: "./media/characters/shango/front-lewd.svg",
  58896. extra: 1925/1774,
  58897. bottom: 67/1992
  58898. }
  58899. },
  58900. backLewd: {
  58901. height: math.unit(1.8, "meters"),
  58902. weight: math.unit(95, "kg"),
  58903. name: "Back (Lewd)",
  58904. image: {
  58905. source: "./media/characters/shango/back-lewd.svg",
  58906. extra: 1915/1766,
  58907. bottom: 52/1967
  58908. }
  58909. },
  58910. maw: {
  58911. height: math.unit(1.64, "feet"),
  58912. name: "Maw",
  58913. image: {
  58914. source: "./media/characters/shango/maw.svg"
  58915. }
  58916. },
  58917. dick: {
  58918. height: math.unit(2.14, "feet"),
  58919. name: "Dick",
  58920. image: {
  58921. source: "./media/characters/shango/dick.svg"
  58922. }
  58923. },
  58924. },
  58925. [
  58926. {
  58927. name: "Incognito",
  58928. height: math.unit(1.8, "meters")
  58929. },
  58930. {
  58931. name: "Home Size",
  58932. height: math.unit(60, "meters"),
  58933. default: true
  58934. },
  58935. {
  58936. name: "Macro",
  58937. height: math.unit(450, "meters")
  58938. },
  58939. {
  58940. name: "Mega",
  58941. height: math.unit(6, "km")
  58942. },
  58943. {
  58944. name: "Mega+",
  58945. height: math.unit(35, "km")
  58946. },
  58947. {
  58948. name: "Giga",
  58949. height: math.unit(500, "km")
  58950. },
  58951. {
  58952. name: "Giga+",
  58953. height: math.unit(5000, "km")
  58954. },
  58955. {
  58956. name: "Terra",
  58957. height: math.unit(60000, "km")
  58958. },
  58959. {
  58960. name: "Terra+",
  58961. height: math.unit(400000, "km")
  58962. },
  58963. ]
  58964. ))
  58965. characterMakers.push(() => makeCharacter(
  58966. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58967. {
  58968. front: {
  58969. height: math.unit(2, "meters"),
  58970. weight: math.unit(95, "kg"),
  58971. name: "Front",
  58972. image: {
  58973. source: "./media/characters/osiris-gryphon/front.svg",
  58974. extra: 1508/1313,
  58975. bottom: 87/1595
  58976. }
  58977. },
  58978. back: {
  58979. height: math.unit(2, "meters"),
  58980. weight: math.unit(95, "kg"),
  58981. name: "Back",
  58982. image: {
  58983. source: "./media/characters/osiris-gryphon/back.svg",
  58984. extra: 1436/1309,
  58985. bottom: 64/1500
  58986. }
  58987. },
  58988. frontLewd: {
  58989. height: math.unit(2, "meters"),
  58990. weight: math.unit(95, "kg"),
  58991. name: "Front-lewd",
  58992. image: {
  58993. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58994. extra: 1508/1313,
  58995. bottom: 87/1595
  58996. }
  58997. },
  58998. wing: {
  58999. height: math.unit(6.3333, "feet"),
  59000. name: "Wing",
  59001. image: {
  59002. source: "./media/characters/osiris-gryphon/wing.svg"
  59003. }
  59004. },
  59005. },
  59006. [
  59007. {
  59008. name: "Incognito",
  59009. height: math.unit(2, "meters")
  59010. },
  59011. {
  59012. name: "Home Size",
  59013. height: math.unit(30, "meters"),
  59014. default: true
  59015. },
  59016. {
  59017. name: "Macro",
  59018. height: math.unit(100, "meters")
  59019. },
  59020. {
  59021. name: "Macro+",
  59022. height: math.unit(350, "meters")
  59023. },
  59024. {
  59025. name: "Mega",
  59026. height: math.unit(40, "km")
  59027. },
  59028. {
  59029. name: "Giga",
  59030. height: math.unit(300, "km")
  59031. },
  59032. {
  59033. name: "Giga+",
  59034. height: math.unit(2000, "km")
  59035. },
  59036. {
  59037. name: "Terra",
  59038. height: math.unit(30000, "km")
  59039. },
  59040. ]
  59041. ))
  59042. characterMakers.push(() => makeCharacter(
  59043. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59044. {
  59045. front: {
  59046. height: math.unit(2.5, "meters"),
  59047. weight: math.unit(200, "kg"),
  59048. name: "Front",
  59049. image: {
  59050. source: "./media/characters/atlas-dragon/front.svg",
  59051. extra: 745/462,
  59052. bottom: 36/781
  59053. }
  59054. },
  59055. back: {
  59056. height: math.unit(2.5, "meters"),
  59057. weight: math.unit(200, "kg"),
  59058. name: "Back",
  59059. image: {
  59060. source: "./media/characters/atlas-dragon/back.svg",
  59061. extra: 848/822,
  59062. bottom: 57/905
  59063. }
  59064. },
  59065. frontLewd: {
  59066. height: math.unit(2.5, "meters"),
  59067. weight: math.unit(200, "kg"),
  59068. name: "Front (Lewd)",
  59069. image: {
  59070. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59071. extra: 745/462,
  59072. bottom: 36/781
  59073. }
  59074. },
  59075. backLewd: {
  59076. height: math.unit(2.5, "meters"),
  59077. weight: math.unit(200, "kg"),
  59078. name: "Back (Lewd)",
  59079. image: {
  59080. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59081. extra: 848/822,
  59082. bottom: 57/905
  59083. }
  59084. },
  59085. },
  59086. [
  59087. {
  59088. name: "Incognito",
  59089. height: math.unit(2.5, "meters")
  59090. },
  59091. {
  59092. name: "Small Macro",
  59093. height: math.unit(50, "meters")
  59094. },
  59095. {
  59096. name: "Macro",
  59097. height: math.unit(350, "meters")
  59098. },
  59099. {
  59100. name: "Mega",
  59101. height: math.unit(5.5, "kilometers")
  59102. },
  59103. {
  59104. name: "Mega+",
  59105. height: math.unit(50, "km")
  59106. },
  59107. {
  59108. name: "Giga",
  59109. height: math.unit(350, "km")
  59110. },
  59111. {
  59112. name: "Giga+",
  59113. height: math.unit(2000, "km")
  59114. },
  59115. {
  59116. name: "Giga++",
  59117. height: math.unit(6500, "km")
  59118. },
  59119. {
  59120. name: "Terra",
  59121. height: math.unit(30000, "km")
  59122. },
  59123. {
  59124. name: "Terra+",
  59125. height: math.unit(250000, "km")
  59126. },
  59127. {
  59128. name: "True Size",
  59129. height: math.unit(100, "multiverses"),
  59130. default: true
  59131. },
  59132. ]
  59133. ))
  59134. characterMakers.push(() => makeCharacter(
  59135. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59136. {
  59137. front: {
  59138. height: math.unit(1.8, "m"),
  59139. weight: math.unit(120, "kg"),
  59140. name: "Front",
  59141. image: {
  59142. source: "./media/characters/chey/front.svg",
  59143. extra: 1359/1270,
  59144. bottom: 18/1377
  59145. }
  59146. },
  59147. arm: {
  59148. height: math.unit(2.05, "feet"),
  59149. name: "Arm",
  59150. image: {
  59151. source: "./media/characters/chey/arm.svg"
  59152. }
  59153. },
  59154. head: {
  59155. height: math.unit(1.89, "feet"),
  59156. name: "Head",
  59157. image: {
  59158. source: "./media/characters/chey/head.svg"
  59159. }
  59160. },
  59161. },
  59162. [
  59163. {
  59164. name: "Original Size",
  59165. height: math.unit(5, "cm")
  59166. },
  59167. {
  59168. name: "Incognito Size",
  59169. height: math.unit(2.4, "m")
  59170. },
  59171. {
  59172. name: "Home Size",
  59173. height: math.unit(200, "meters"),
  59174. default: true
  59175. },
  59176. {
  59177. name: "Mega",
  59178. height: math.unit(2, "km")
  59179. },
  59180. {
  59181. name: "Giga (Preferred Size)",
  59182. height: math.unit(2000, "km")
  59183. },
  59184. {
  59185. name: "Giga+",
  59186. height: math.unit(6000, "km")
  59187. },
  59188. {
  59189. name: "Terra",
  59190. height: math.unit(17000, "km")
  59191. },
  59192. {
  59193. name: "Terra+",
  59194. height: math.unit(75000, "km")
  59195. },
  59196. {
  59197. name: "Terra++",
  59198. height: math.unit(225000, "km")
  59199. },
  59200. ]
  59201. ))
  59202. characterMakers.push(() => makeCharacter(
  59203. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59204. {
  59205. side: {
  59206. height: math.unit(7.8, "meters"),
  59207. name: "Side",
  59208. image: {
  59209. source: "./media/characters/ragnarok/side.svg",
  59210. extra: 725/621,
  59211. bottom: 72/797
  59212. }
  59213. },
  59214. },
  59215. [
  59216. {
  59217. name: "Normal",
  59218. height: math.unit(7.8, "meters"),
  59219. default: true
  59220. },
  59221. ]
  59222. ))
  59223. characterMakers.push(() => makeCharacter(
  59224. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59225. {
  59226. hyena_front: {
  59227. height: math.unit(2.1, "meters"),
  59228. weight: math.unit(110, "kg"),
  59229. name: "Front",
  59230. image: {
  59231. source: "./media/characters/nima/hyena-front.svg",
  59232. extra: 1904/1796,
  59233. bottom: 67/1971
  59234. },
  59235. form: "hyena",
  59236. },
  59237. hyena_back: {
  59238. height: math.unit(2.1, "meters"),
  59239. weight: math.unit(110, "kg"),
  59240. name: "Back",
  59241. image: {
  59242. source: "./media/characters/nima/hyena-back.svg",
  59243. extra: 1964/1884,
  59244. bottom: 35/1999
  59245. },
  59246. form: "hyena",
  59247. },
  59248. shark_front: {
  59249. height: math.unit(1.95, "meters"),
  59250. weight: math.unit(110, "kg"),
  59251. name: "Front",
  59252. image: {
  59253. source: "./media/characters/nima/shark-front.svg",
  59254. extra: 2238/2013,
  59255. bottom: 0/223
  59256. },
  59257. form: "shark",
  59258. },
  59259. paw: {
  59260. height: math.unit(1, "feet"),
  59261. name: "Paw",
  59262. image: {
  59263. source: "./media/characters/nima/paw.svg"
  59264. }
  59265. },
  59266. circlet: {
  59267. height: math.unit(0.3, "feet"),
  59268. name: "Circlet",
  59269. image: {
  59270. source: "./media/characters/nima/circlet.svg"
  59271. }
  59272. },
  59273. necklace: {
  59274. height: math.unit(1.2, "feet"),
  59275. name: "Necklace",
  59276. image: {
  59277. source: "./media/characters/nima/necklace.svg"
  59278. }
  59279. },
  59280. bracelet: {
  59281. height: math.unit(0.51, "feet"),
  59282. name: "Bracelet",
  59283. image: {
  59284. source: "./media/characters/nima/bracelet.svg"
  59285. }
  59286. },
  59287. armband: {
  59288. height: math.unit(1.3, "feet"),
  59289. name: "Armband",
  59290. image: {
  59291. source: "./media/characters/nima/armband.svg"
  59292. }
  59293. },
  59294. },
  59295. [
  59296. {
  59297. name: "Incognito",
  59298. height: math.unit(2.1, "meters"),
  59299. allForms: true
  59300. },
  59301. {
  59302. name: "Small Macro",
  59303. height: math.unit(50, "meters"),
  59304. allForms: true
  59305. },
  59306. {
  59307. name: "Macro",
  59308. height: math.unit(200, "meters"),
  59309. allForms: true
  59310. },
  59311. {
  59312. name: "Mega",
  59313. height: math.unit(2.5, "km"),
  59314. allForms: true
  59315. },
  59316. {
  59317. name: "Mega+",
  59318. height: math.unit(30, "km"),
  59319. allForms: true
  59320. },
  59321. {
  59322. name: "Giga (Home Size)",
  59323. height: math.unit(400, "km"),
  59324. allForms: true,
  59325. default: true
  59326. },
  59327. {
  59328. name: "Giga+",
  59329. height: math.unit(2500, "km"),
  59330. allForms: true
  59331. },
  59332. {
  59333. name: "Giga++",
  59334. height: math.unit(8000, "km"),
  59335. allForms: true
  59336. },
  59337. {
  59338. name: "Terra",
  59339. height: math.unit(20000, "km"),
  59340. allForms: true
  59341. },
  59342. {
  59343. name: "Terra+",
  59344. height: math.unit(70000, "km"),
  59345. allForms: true
  59346. },
  59347. {
  59348. name: "Terra++",
  59349. height: math.unit(600000, "km"),
  59350. allForms: true
  59351. },
  59352. {
  59353. name: "Galactic",
  59354. height: math.unit(40, "galaxies"),
  59355. allForms: true
  59356. },
  59357. {
  59358. name: "Universal",
  59359. height: math.unit(40, "universes"),
  59360. allForms: true
  59361. },
  59362. ],
  59363. {
  59364. "hyena": {
  59365. name: "Hyena",
  59366. default: true
  59367. },
  59368. "shark": {
  59369. name: "Shark",
  59370. },
  59371. }
  59372. ))
  59373. characterMakers.push(() => makeCharacter(
  59374. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59375. {
  59376. anthro_front: {
  59377. height: math.unit(1.5, "meters"),
  59378. name: "Front",
  59379. image: {
  59380. source: "./media/characters/adelaide/anthro-front.svg",
  59381. extra: 860/783,
  59382. bottom: 60/920
  59383. },
  59384. form: "anthro",
  59385. default: true
  59386. },
  59387. hand: {
  59388. height: math.unit(0.65, "feet"),
  59389. name: "Hand",
  59390. image: {
  59391. source: "./media/characters/adelaide/hand.svg"
  59392. },
  59393. form: "anthro"
  59394. },
  59395. foot: {
  59396. height: math.unit(1.38 * 259 / 314, "feet"),
  59397. name: "Foot",
  59398. image: {
  59399. source: "./media/characters/adelaide/foot.svg",
  59400. extra: 259/259,
  59401. bottom: 55/314
  59402. },
  59403. form: "anthro"
  59404. },
  59405. feather: {
  59406. height: math.unit(0.85, "feet"),
  59407. name: "Feather",
  59408. image: {
  59409. source: "./media/characters/adelaide/feather.svg"
  59410. },
  59411. form: "anthro"
  59412. },
  59413. feral_side: {
  59414. height: math.unit(1, "meters"),
  59415. name: "Side",
  59416. image: {
  59417. source: "./media/characters/adelaide/feral-side.svg",
  59418. extra: 550/467,
  59419. bottom: 37/587
  59420. },
  59421. form: "feral",
  59422. default: true
  59423. },
  59424. feral_hand: {
  59425. height: math.unit(0.58, "feet"),
  59426. name: "Hand",
  59427. image: {
  59428. source: "./media/characters/adelaide/hand.svg"
  59429. },
  59430. form: "feral"
  59431. },
  59432. feral_foot: {
  59433. height: math.unit(1.2 * 259 / 314, "feet"),
  59434. name: "Foot",
  59435. image: {
  59436. source: "./media/characters/adelaide/foot.svg",
  59437. extra: 259/259,
  59438. bottom: 55/314
  59439. },
  59440. form: "feral"
  59441. },
  59442. feral_feather: {
  59443. height: math.unit(0.63, "feet"),
  59444. name: "Feather",
  59445. image: {
  59446. source: "./media/characters/adelaide/feather.svg"
  59447. },
  59448. form: "feral"
  59449. },
  59450. },
  59451. [
  59452. {
  59453. name: "Normal",
  59454. height: math.unit(1.5, "meters"),
  59455. form: "anthro",
  59456. default: true
  59457. },
  59458. {
  59459. name: "Normal",
  59460. height: math.unit(1, "meters"),
  59461. form: "feral",
  59462. default: true
  59463. },
  59464. ],
  59465. {
  59466. "anthro": {
  59467. name: "Anthro",
  59468. default: true
  59469. },
  59470. "feral": {
  59471. name: "Feral",
  59472. },
  59473. }
  59474. ))
  59475. characterMakers.push(() => makeCharacter(
  59476. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59477. {
  59478. front: {
  59479. height: math.unit(2.5, "meters"),
  59480. name: "Front",
  59481. image: {
  59482. source: "./media/characters/goa/front.svg",
  59483. extra: 1109/1013,
  59484. bottom: 150/1259
  59485. }
  59486. },
  59487. },
  59488. [
  59489. {
  59490. name: "Normal",
  59491. height: math.unit(2.5, "meters"),
  59492. default: true
  59493. },
  59494. ]
  59495. ))
  59496. characterMakers.push(() => makeCharacter(
  59497. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59498. {
  59499. front: {
  59500. height: math.unit(2, "meters"),
  59501. weight: math.unit(100, "kg"),
  59502. name: "Front",
  59503. image: {
  59504. source: "./media/characters/kiki-weavile/front.svg",
  59505. extra: 357/332,
  59506. bottom: 60/417
  59507. }
  59508. },
  59509. },
  59510. [
  59511. {
  59512. name: "Normal",
  59513. height: math.unit(2, "meters"),
  59514. default: true
  59515. },
  59516. ]
  59517. ))
  59518. characterMakers.push(() => makeCharacter(
  59519. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59520. {
  59521. side: {
  59522. height: math.unit(1.6, "meters"),
  59523. name: "Side",
  59524. image: {
  59525. source: "./media/characters/liza/side.svg",
  59526. extra: 943/915,
  59527. bottom: 72/1015
  59528. }
  59529. },
  59530. },
  59531. [
  59532. {
  59533. name: "Normal",
  59534. height: math.unit(1.6, "meters"),
  59535. default: true
  59536. },
  59537. ]
  59538. ))
  59539. characterMakers.push(() => makeCharacter(
  59540. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59541. {
  59542. side: {
  59543. height: math.unit(2.5, "meters"),
  59544. preyCapacity: math.unit(1, "people"),
  59545. name: "Side",
  59546. image: {
  59547. source: "./media/characters/persephone-sweetbreath/side.svg",
  59548. extra: 796/700,
  59549. bottom: 44/840
  59550. }
  59551. },
  59552. sideVore: {
  59553. height: math.unit(2.5, "meters"),
  59554. preyCapacity: math.unit(1, "people"),
  59555. name: "Side (Full)",
  59556. image: {
  59557. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59558. extra: 796/700,
  59559. bottom: 44/840
  59560. }
  59561. },
  59562. },
  59563. [
  59564. {
  59565. name: "Normal",
  59566. height: math.unit(2.5, "meters"),
  59567. default: true
  59568. },
  59569. ]
  59570. ))
  59571. characterMakers.push(() => makeCharacter(
  59572. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59573. {
  59574. front: {
  59575. height: math.unit(32, "meters"),
  59576. name: "Front",
  59577. image: {
  59578. source: "./media/characters/pierce/front.svg",
  59579. extra: 1695/1475,
  59580. bottom: 185/1880
  59581. }
  59582. },
  59583. side: {
  59584. height: math.unit(32, "meters"),
  59585. name: "Side",
  59586. image: {
  59587. source: "./media/characters/pierce/side.svg",
  59588. extra: 974/859,
  59589. bottom: 43/1017
  59590. }
  59591. },
  59592. frontWingless: {
  59593. height: math.unit(32, "meters"),
  59594. name: "Front (Wingless)",
  59595. image: {
  59596. source: "./media/characters/pierce/front-wingless.svg",
  59597. extra: 1695/1475,
  59598. bottom: 185/1880
  59599. }
  59600. },
  59601. sideWingless: {
  59602. height: math.unit(32, "meters"),
  59603. name: "Side (Wingless)",
  59604. image: {
  59605. source: "./media/characters/pierce/side-wingless.svg",
  59606. extra: 974/859,
  59607. bottom: 43/1017
  59608. }
  59609. },
  59610. maw: {
  59611. height: math.unit(19.3, "meters"),
  59612. name: "Maw",
  59613. image: {
  59614. source: "./media/characters/pierce/maw.svg"
  59615. }
  59616. },
  59617. },
  59618. [
  59619. {
  59620. name: "Small",
  59621. height: math.unit(8.5, "meters")
  59622. },
  59623. {
  59624. name: "Normal",
  59625. height: math.unit(32, "meters"),
  59626. default: true
  59627. },
  59628. ]
  59629. ))
  59630. characterMakers.push(() => makeCharacter(
  59631. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59632. {
  59633. front: {
  59634. height: math.unit(2.3, "meters"),
  59635. weight: math.unit(165, "kg"),
  59636. name: "Front",
  59637. image: {
  59638. source: "./media/characters/shira/front.svg",
  59639. extra: 924/919,
  59640. bottom: 17/941
  59641. },
  59642. form: "cobra",
  59643. default: true
  59644. },
  59645. back: {
  59646. height: math.unit(2.3, "meters"),
  59647. weight: math.unit(165, "kg"),
  59648. name: "Back",
  59649. image: {
  59650. source: "./media/characters/shira/back.svg",
  59651. extra: 928/922,
  59652. bottom: 18/946
  59653. },
  59654. form: "cobra"
  59655. },
  59656. frontLewd: {
  59657. height: math.unit(2.3, "meters"),
  59658. weight: math.unit(165, "kg"),
  59659. name: "Front (Lewd)",
  59660. image: {
  59661. source: "./media/characters/shira/front-lewd.svg",
  59662. extra: 924/919,
  59663. bottom: 17/941
  59664. },
  59665. form: "cobra"
  59666. },
  59667. backLewd: {
  59668. height: math.unit(2.3, "meters"),
  59669. weight: math.unit(165, "kg"),
  59670. name: "Back (Lewd)",
  59671. image: {
  59672. source: "./media/characters/shira/back-lewd.svg",
  59673. extra: 928/922,
  59674. bottom: 18/946
  59675. },
  59676. form: "cobra"
  59677. },
  59678. maw: {
  59679. height: math.unit(1.14, "feet"),
  59680. name: "Maw",
  59681. image: {
  59682. source: "./media/characters/shira/maw.svg"
  59683. },
  59684. form: "cobra"
  59685. },
  59686. magma_front: {
  59687. height: math.unit(2.3, "meters"),
  59688. weight: math.unit(165, "kg"),
  59689. name: "Front",
  59690. image: {
  59691. source: "./media/characters/shira/magma-front.svg",
  59692. extra: 1870/1693,
  59693. bottom: 24/1894
  59694. },
  59695. form: "magma",
  59696. },
  59697. magma_back: {
  59698. height: math.unit(2.3, "meters"),
  59699. weight: math.unit(165, "kg"),
  59700. name: "Back",
  59701. image: {
  59702. source: "./media/characters/shira/magma-back.svg",
  59703. extra: 1918/1756,
  59704. bottom: 46/1964
  59705. },
  59706. form: "magma",
  59707. },
  59708. },
  59709. [
  59710. {
  59711. name: "Incognito",
  59712. height: math.unit(2.3, "meters"),
  59713. allForms: true
  59714. },
  59715. {
  59716. name: "Home Size",
  59717. height: math.unit(150, "meters"),
  59718. default: true,
  59719. allForms: true
  59720. },
  59721. {
  59722. name: "Macro",
  59723. height: math.unit(2, "km"),
  59724. allForms: true
  59725. },
  59726. {
  59727. name: "Mega",
  59728. height: math.unit(30, "km"),
  59729. allForms: true
  59730. },
  59731. {
  59732. name: "Giga",
  59733. height: math.unit(450, "km"),
  59734. allForms: true
  59735. },
  59736. {
  59737. name: "Giga+",
  59738. height: math.unit(3000, "km"),
  59739. allForms: true
  59740. },
  59741. {
  59742. name: "Giga++",
  59743. height: math.unit(6000, "km"),
  59744. allForms: true
  59745. },
  59746. {
  59747. name: "Terra",
  59748. height: math.unit(80000, "km"),
  59749. allForms: true
  59750. },
  59751. {
  59752. name: "Terra+",
  59753. height: math.unit(350000, "km"),
  59754. allForms: true
  59755. },
  59756. {
  59757. name: "Solar",
  59758. height: math.unit(1e6, "km"),
  59759. allForms: true
  59760. },
  59761. ],
  59762. {
  59763. "cobra": {
  59764. name: "Cobra",
  59765. default: true
  59766. },
  59767. "magma": {
  59768. name: "Magma Dragon",
  59769. },
  59770. }
  59771. ))
  59772. characterMakers.push(() => makeCharacter(
  59773. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59774. {
  59775. front: {
  59776. height: math.unit(2, "meters"),
  59777. weight: math.unit(160, "kg"),
  59778. name: "Front",
  59779. image: {
  59780. source: "./media/characters/daxerios/front.svg",
  59781. extra: 1334/1277,
  59782. bottom: 45/1379
  59783. }
  59784. },
  59785. frontLewd: {
  59786. height: math.unit(2, "meters"),
  59787. weight: math.unit(160, "kg"),
  59788. name: "Front (Lewd)",
  59789. image: {
  59790. source: "./media/characters/daxerios/front-lewd.svg",
  59791. extra: 1334/1277,
  59792. bottom: 45/1379
  59793. }
  59794. },
  59795. dick: {
  59796. height: math.unit(2.35, "feet"),
  59797. name: "Dick",
  59798. image: {
  59799. source: "./media/characters/daxerios/dick.svg"
  59800. }
  59801. },
  59802. },
  59803. [
  59804. {
  59805. name: "\"Small\"",
  59806. height: math.unit(5, "meters")
  59807. },
  59808. {
  59809. name: "Original Size",
  59810. height: math.unit(500, "meters"),
  59811. default: true
  59812. },
  59813. {
  59814. name: "Mega",
  59815. height: math.unit(2, "km")
  59816. },
  59817. {
  59818. name: "Mega+",
  59819. height: math.unit(35, "km")
  59820. },
  59821. {
  59822. name: "Giga",
  59823. height: math.unit(250, "km")
  59824. },
  59825. {
  59826. name: "Giga+",
  59827. height: math.unit(3000, "km")
  59828. },
  59829. {
  59830. name: "Terra",
  59831. height: math.unit(25000, "km")
  59832. },
  59833. {
  59834. name: "Terra+",
  59835. height: math.unit(300000, "km")
  59836. },
  59837. {
  59838. name: "Solar",
  59839. height: math.unit(1e6, "km")
  59840. },
  59841. ]
  59842. ))
  59843. characterMakers.push(() => makeCharacter(
  59844. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59845. {
  59846. front: {
  59847. height: math.unit(8 + 4/12, "feet"),
  59848. weight: math.unit(464, "lb"),
  59849. name: "Front",
  59850. image: {
  59851. source: "./media/characters/caveat/front.svg",
  59852. extra: 1861/1678,
  59853. bottom: 40/1901
  59854. }
  59855. },
  59856. },
  59857. [
  59858. {
  59859. name: "Normal",
  59860. height: math.unit(8 + 4/12, "feet"),
  59861. default: true
  59862. },
  59863. ]
  59864. ))
  59865. characterMakers.push(() => makeCharacter(
  59866. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59867. {
  59868. front: {
  59869. height: math.unit(12, "feet"),
  59870. weight: math.unit(1800, "lb"),
  59871. name: "Front",
  59872. image: {
  59873. source: "./media/characters/centbair/front.svg",
  59874. extra: 781/663,
  59875. bottom: 25/806
  59876. }
  59877. },
  59878. frontNsfw: {
  59879. height: math.unit(12, "feet"),
  59880. weight: math.unit(1800, "lb"),
  59881. name: "Front (NSFW)",
  59882. image: {
  59883. source: "./media/characters/centbair/front-nsfw.svg",
  59884. extra: 781/663,
  59885. bottom: 25/806
  59886. }
  59887. },
  59888. back: {
  59889. height: math.unit(12, "feet"),
  59890. weight: math.unit(1800, "lb"),
  59891. name: "Back",
  59892. image: {
  59893. source: "./media/characters/centbair/back.svg",
  59894. extra: 808/761,
  59895. bottom: 19/827
  59896. }
  59897. },
  59898. dick: {
  59899. height: math.unit(6.5, "feet"),
  59900. name: "Dick",
  59901. image: {
  59902. source: "./media/characters/centbair/dick.svg"
  59903. }
  59904. },
  59905. slit: {
  59906. height: math.unit(3.25, "feet"),
  59907. name: "Slit",
  59908. image: {
  59909. source: "./media/characters/centbair/slit.svg"
  59910. }
  59911. },
  59912. },
  59913. [
  59914. {
  59915. name: "Normal",
  59916. height: math.unit(12, "feet"),
  59917. default: true
  59918. },
  59919. ]
  59920. ))
  59921. characterMakers.push(() => makeCharacter(
  59922. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59923. {
  59924. front: {
  59925. height: math.unit(5 + 7/12, "feet"),
  59926. name: "Front",
  59927. image: {
  59928. source: "./media/characters/andy/front.svg",
  59929. extra: 634/588,
  59930. bottom: 36/670
  59931. },
  59932. extraAttributes: {
  59933. "pawLength": {
  59934. name: "Paw Length",
  59935. power: 1,
  59936. type: "length",
  59937. base: math.unit(1, "feet")
  59938. },
  59939. }
  59940. },
  59941. side: {
  59942. height: math.unit(5 + 7/12, "feet"),
  59943. name: "Side",
  59944. image: {
  59945. source: "./media/characters/andy/side.svg",
  59946. extra: 641/596,
  59947. bottom: 34/675
  59948. },
  59949. extraAttributes: {
  59950. "pawLength": {
  59951. name: "Paw Length",
  59952. power: 1,
  59953. type: "length",
  59954. base: math.unit(1, "feet")
  59955. },
  59956. }
  59957. },
  59958. back: {
  59959. height: math.unit(5 + 7/12, "feet"),
  59960. name: "Back",
  59961. image: {
  59962. source: "./media/characters/andy/back.svg",
  59963. extra: 618/583,
  59964. bottom: 39/657
  59965. },
  59966. extraAttributes: {
  59967. "pawLength": {
  59968. name: "Paw Length",
  59969. power: 1,
  59970. type: "length",
  59971. base: math.unit(1, "feet")
  59972. },
  59973. }
  59974. },
  59975. paw: {
  59976. height: math.unit(1.13, "feet"),
  59977. name: "Paw",
  59978. image: {
  59979. source: "./media/characters/andy/paw.svg"
  59980. }
  59981. },
  59982. },
  59983. [
  59984. {
  59985. name: "Micro",
  59986. height: math.unit(4, "inches")
  59987. },
  59988. {
  59989. name: "Normal",
  59990. height: math.unit(5 + 7/12, "feet"),
  59991. default: true
  59992. },
  59993. {
  59994. name: "Macro",
  59995. height: math.unit(390.42, "feet")
  59996. },
  59997. ]
  59998. ))
  59999. characterMakers.push(() => makeCharacter(
  60000. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60001. {
  60002. front: {
  60003. height: math.unit(7, "feet"),
  60004. weight: math.unit(250, "lb"),
  60005. name: "Front",
  60006. image: {
  60007. source: "./media/characters/vix-titan/front.svg",
  60008. extra: 460/428,
  60009. bottom: 15/475
  60010. },
  60011. extraAttributes: {
  60012. "pawWidth": {
  60013. name: "Paw Width",
  60014. power: 1,
  60015. type: "length",
  60016. base: math.unit(0.75, "feet")
  60017. },
  60018. }
  60019. },
  60020. },
  60021. [
  60022. {
  60023. name: "Normal",
  60024. height: math.unit(7, "feet"),
  60025. default: true
  60026. },
  60027. {
  60028. name: "Giant",
  60029. height: math.unit(1500, "feet")
  60030. },
  60031. {
  60032. name: "Mega",
  60033. height: math.unit(10, "miles")
  60034. },
  60035. {
  60036. name: "Giga",
  60037. height: math.unit(150, "miles")
  60038. },
  60039. {
  60040. name: "Tera",
  60041. height: math.unit(144000, "miles")
  60042. },
  60043. ]
  60044. ))
  60045. characterMakers.push(() => makeCharacter(
  60046. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60047. {
  60048. front: {
  60049. height: math.unit(6 + 2/12, "feet"),
  60050. name: "Front",
  60051. image: {
  60052. source: "./media/characters/reiku/front.svg",
  60053. extra: 1910/1757,
  60054. bottom: 103/2013
  60055. },
  60056. extraAttributes: {
  60057. "thighThickness": {
  60058. name: "Thigh Thickness",
  60059. power: 1,
  60060. type: "length",
  60061. base: math.unit(1.12, "feet")
  60062. },
  60063. "assThickness": {
  60064. name: "Ass Thickness",
  60065. power: 1,
  60066. type: "length",
  60067. base: math.unit(1.12*2, "feet")
  60068. },
  60069. }
  60070. },
  60071. side: {
  60072. height: math.unit(6 + 2/12, "feet"),
  60073. name: "Side",
  60074. image: {
  60075. source: "./media/characters/reiku/side.svg",
  60076. extra: 1846/1748,
  60077. bottom: 99/1945
  60078. },
  60079. extraAttributes: {
  60080. "thighThickness": {
  60081. name: "Thigh Thickness",
  60082. power: 1,
  60083. type: "length",
  60084. base: math.unit(1.12, "feet")
  60085. },
  60086. "assThickness": {
  60087. name: "Ass Thickness",
  60088. power: 1,
  60089. type: "length",
  60090. base: math.unit(1.12*2, "feet")
  60091. },
  60092. }
  60093. },
  60094. back: {
  60095. height: math.unit(6 + 2/12, "feet"),
  60096. name: "Back",
  60097. image: {
  60098. source: "./media/characters/reiku/back.svg",
  60099. extra: 1941/1786,
  60100. bottom: 34/1975
  60101. },
  60102. extraAttributes: {
  60103. "thighThickness": {
  60104. name: "Thigh Thickness",
  60105. power: 1,
  60106. type: "length",
  60107. base: math.unit(1.12, "feet")
  60108. },
  60109. "assThickness": {
  60110. name: "Ass Thickness",
  60111. power: 1,
  60112. type: "length",
  60113. base: math.unit(1.12*2, "feet")
  60114. },
  60115. }
  60116. },
  60117. head: {
  60118. height: math.unit(1.8, "feet"),
  60119. name: "Head",
  60120. image: {
  60121. source: "./media/characters/reiku/head.svg"
  60122. }
  60123. },
  60124. tailTop: {
  60125. height: math.unit(8.4, "feet"),
  60126. name: "Tail (Top)",
  60127. image: {
  60128. source: "./media/characters/reiku/tail-top.svg"
  60129. }
  60130. },
  60131. tailBottom: {
  60132. height: math.unit(8.4, "feet"),
  60133. name: "Tail (Bottom)",
  60134. image: {
  60135. source: "./media/characters/reiku/tail-bottom.svg"
  60136. }
  60137. },
  60138. foot: {
  60139. height: math.unit(2.6, "feet"),
  60140. name: "Foot",
  60141. image: {
  60142. source: "./media/characters/reiku/foot.svg"
  60143. }
  60144. },
  60145. footCurled: {
  60146. height: math.unit(2.3, "feet"),
  60147. name: "Foot (Curled)",
  60148. image: {
  60149. source: "./media/characters/reiku/foot-curled.svg"
  60150. }
  60151. },
  60152. footSide: {
  60153. height: math.unit(1.26, "feet"),
  60154. name: "Foot (Side)",
  60155. image: {
  60156. source: "./media/characters/reiku/foot-side.svg"
  60157. }
  60158. },
  60159. },
  60160. [
  60161. {
  60162. name: "Normal",
  60163. height: math.unit(6 + 2/12, "feet"),
  60164. default: true
  60165. },
  60166. ]
  60167. ))
  60168. characterMakers.push(() => makeCharacter(
  60169. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60170. {
  60171. front: {
  60172. height: math.unit(7, "feet"),
  60173. weight: math.unit(500, "kg"),
  60174. name: "Front",
  60175. image: {
  60176. source: "./media/characters/cialda/front.svg",
  60177. extra: 912/745,
  60178. bottom: 55/967
  60179. }
  60180. },
  60181. },
  60182. [
  60183. {
  60184. name: "Normal",
  60185. height: math.unit(7, "feet"),
  60186. default: true
  60187. },
  60188. ]
  60189. ))
  60190. characterMakers.push(() => makeCharacter(
  60191. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60192. {
  60193. side: {
  60194. height: math.unit(6, "feet"),
  60195. weight: math.unit(600, "lb"),
  60196. preyCapacity: math.unit(25, "liters"),
  60197. name: "Side",
  60198. image: {
  60199. source: "./media/characters/darkkin/side.svg",
  60200. extra: 1597/1447,
  60201. bottom: 101/1698
  60202. }
  60203. },
  60204. },
  60205. [
  60206. {
  60207. name: "Canon Height",
  60208. height: math.unit(568, "feet"),
  60209. default: true
  60210. },
  60211. ]
  60212. ))
  60213. characterMakers.push(() => makeCharacter(
  60214. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60215. {
  60216. front: {
  60217. height: math.unit(6, "feet"),
  60218. weight: math.unit(1500, "lb"),
  60219. preyCapacity: math.unit(3, "people"),
  60220. name: "Front",
  60221. image: {
  60222. source: "./media/characters/livnia/front.svg",
  60223. extra: 934/932,
  60224. bottom: 83/1017
  60225. }
  60226. },
  60227. back: {
  60228. height: math.unit(6, "feet"),
  60229. weight: math.unit(1500, "lb"),
  60230. preyCapacity: math.unit(3, "people"),
  60231. name: "Back",
  60232. image: {
  60233. source: "./media/characters/livnia/back.svg",
  60234. extra: 916/915,
  60235. bottom: 58/974
  60236. }
  60237. },
  60238. head: {
  60239. height: math.unit(1.53, "feet"),
  60240. name: "Head",
  60241. image: {
  60242. source: "./media/characters/livnia/head.svg"
  60243. }
  60244. },
  60245. maw: {
  60246. height: math.unit(0.78, "feet"),
  60247. name: "Maw",
  60248. image: {
  60249. source: "./media/characters/livnia/maw.svg"
  60250. }
  60251. },
  60252. genitals: {
  60253. height: math.unit(0.35, "feet"),
  60254. name: "Genitals",
  60255. image: {
  60256. source: "./media/characters/livnia/genitals.svg"
  60257. }
  60258. },
  60259. },
  60260. [
  60261. {
  60262. name: "Normal",
  60263. height: math.unit(1000, "feet"),
  60264. default: true
  60265. },
  60266. ]
  60267. ))
  60268. characterMakers.push(() => makeCharacter(
  60269. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60270. {
  60271. front: {
  60272. height: math.unit(4, "feet"),
  60273. weight: math.unit(73, "lb"),
  60274. name: "Front",
  60275. image: {
  60276. source: "./media/characters/hayaku/front.svg",
  60277. extra: 1011/888,
  60278. bottom: 33/1044
  60279. }
  60280. },
  60281. back: {
  60282. height: math.unit(4, "feet"),
  60283. weight: math.unit(73, "lb"),
  60284. name: "Back",
  60285. image: {
  60286. source: "./media/characters/hayaku/back.svg",
  60287. extra: 1040/930,
  60288. bottom: 20/1060
  60289. }
  60290. },
  60291. },
  60292. [
  60293. {
  60294. name: "Normal",
  60295. height: math.unit(4, "feet"),
  60296. default: true
  60297. },
  60298. ]
  60299. ))
  60300. characterMakers.push(() => makeCharacter(
  60301. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60302. {
  60303. front: {
  60304. height: math.unit(6 + 7/12, "feet"),
  60305. weight: math.unit(300, "lb"),
  60306. name: "Front",
  60307. image: {
  60308. source: "./media/characters/athena-bryzant/front.svg",
  60309. extra: 870/835,
  60310. bottom: 33/903
  60311. }
  60312. },
  60313. back: {
  60314. height: math.unit(6 + 7/12, "feet"),
  60315. weight: math.unit(300, "lb"),
  60316. name: "Back",
  60317. image: {
  60318. source: "./media/characters/athena-bryzant/back.svg",
  60319. extra: 858/823,
  60320. bottom: 30/888
  60321. }
  60322. },
  60323. head: {
  60324. height: math.unit(2.38, "feet"),
  60325. name: "Head",
  60326. image: {
  60327. source: "./media/characters/athena-bryzant/head.svg"
  60328. }
  60329. },
  60330. wings: {
  60331. height: math.unit(2.85, "feet"),
  60332. name: "Wings",
  60333. image: {
  60334. source: "./media/characters/athena-bryzant/wings.svg"
  60335. }
  60336. },
  60337. },
  60338. [
  60339. {
  60340. name: "Normal",
  60341. height: math.unit(6 + 7/12, "feet"),
  60342. default: true
  60343. },
  60344. {
  60345. name: "Big",
  60346. height: math.unit(8, "feet")
  60347. },
  60348. {
  60349. name: "Very Big",
  60350. height: math.unit(11, "feet")
  60351. },
  60352. ]
  60353. ))
  60354. characterMakers.push(() => makeCharacter(
  60355. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60356. {
  60357. side: {
  60358. height: math.unit(3, "meters"),
  60359. weight: math.unit(7500, "kg"),
  60360. preyCapacity: math.unit(1e12, "people"),
  60361. name: "Side",
  60362. image: {
  60363. source: "./media/characters/zel-kesh/side.svg",
  60364. extra: 910/407,
  60365. bottom: 147/1057
  60366. }
  60367. },
  60368. },
  60369. [
  60370. {
  60371. name: "Normal",
  60372. height: math.unit(3, "meters"),
  60373. default: true
  60374. },
  60375. ]
  60376. ))
  60377. characterMakers.push(() => makeCharacter(
  60378. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60379. {
  60380. front: {
  60381. height: math.unit(2, "meters"),
  60382. weight: math.unit(95, "kg"),
  60383. name: "Front",
  60384. image: {
  60385. source: "./media/characters/kane-fox/front.svg",
  60386. extra: 945/888,
  60387. bottom: 27/972
  60388. }
  60389. },
  60390. back: {
  60391. height: math.unit(2, "meters"),
  60392. weight: math.unit(95, "kg"),
  60393. name: "Back",
  60394. image: {
  60395. source: "./media/characters/kane-fox/back.svg",
  60396. extra: 959/914,
  60397. bottom: 15/974
  60398. }
  60399. },
  60400. frontLewd: {
  60401. height: math.unit(2, "meters"),
  60402. weight: math.unit(95, "kg"),
  60403. name: "Front (Lewd)",
  60404. image: {
  60405. source: "./media/characters/kane-fox/front-lewd.svg",
  60406. extra: 945/888,
  60407. bottom: 27/972
  60408. }
  60409. },
  60410. },
  60411. [
  60412. {
  60413. name: "Home Size",
  60414. height: math.unit(2, "meters"),
  60415. default: true
  60416. },
  60417. {
  60418. name: "Macro",
  60419. height: math.unit(200, "meters")
  60420. },
  60421. {
  60422. name: "Small Mega",
  60423. height: math.unit(3, "km")
  60424. },
  60425. {
  60426. name: "Mega",
  60427. height: math.unit(50, "km")
  60428. },
  60429. {
  60430. name: "Giga",
  60431. height: math.unit(200, "km")
  60432. },
  60433. {
  60434. name: "Giga+",
  60435. height: math.unit(2500, "km")
  60436. },
  60437. {
  60438. name: "Terra",
  60439. height: math.unit(70000, "km")
  60440. },
  60441. {
  60442. name: "Terra+",
  60443. height: math.unit(150000, "km")
  60444. },
  60445. {
  60446. name: "Terra++",
  60447. height: math.unit(400000, "km")
  60448. },
  60449. ]
  60450. ))
  60451. characterMakers.push(() => makeCharacter(
  60452. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60453. {
  60454. otter_front: {
  60455. height: math.unit(1.8, "meters"),
  60456. weight: math.unit(90, "kg"),
  60457. name: "Front",
  60458. image: {
  60459. source: "./media/characters/ayranus/otter-front.svg",
  60460. extra: 468/452,
  60461. bottom: 43/511
  60462. },
  60463. form: "otter",
  60464. },
  60465. otter_frontLewd: {
  60466. height: math.unit(1.8, "meters"),
  60467. weight: math.unit(90, "kg"),
  60468. name: "Front (Lewd)",
  60469. image: {
  60470. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60471. extra: 468/452,
  60472. bottom: 43/511
  60473. },
  60474. form: "otter",
  60475. },
  60476. lionbat_front: {
  60477. height: math.unit(1.8, "meters"),
  60478. weight: math.unit(90, "kg"),
  60479. name: "Front (Lewd)",
  60480. image: {
  60481. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60482. extra: 797/740,
  60483. bottom: 78/875
  60484. },
  60485. form: "lionbat",
  60486. },
  60487. paw: {
  60488. height: math.unit(1.5, "feet"),
  60489. name: "Paw",
  60490. image: {
  60491. source: "./media/characters/ayranus/paw.svg"
  60492. },
  60493. },
  60494. },
  60495. [
  60496. {
  60497. name: "Incognito",
  60498. height: math.unit(1.8, "meters"),
  60499. allForms: true
  60500. },
  60501. {
  60502. name: "Macro",
  60503. height: math.unit(60, "meters"),
  60504. allForms: true
  60505. },
  60506. {
  60507. name: "Macro+",
  60508. height: math.unit(200, "meters"),
  60509. allForms: true
  60510. },
  60511. {
  60512. name: "Mega",
  60513. height: math.unit(35, "km"),
  60514. allForms: true
  60515. },
  60516. {
  60517. name: "Giga",
  60518. height: math.unit(220, "km"),
  60519. allForms: true
  60520. },
  60521. {
  60522. name: "Giga+",
  60523. height: math.unit(1500, "km"),
  60524. allForms: true
  60525. },
  60526. {
  60527. name: "Terra",
  60528. height: math.unit(13000, "km"),
  60529. allForms: true
  60530. },
  60531. {
  60532. name: "Terra+",
  60533. height: math.unit(500000, "km"),
  60534. allForms: true
  60535. },
  60536. {
  60537. name: "Galactic",
  60538. height: math.unit(486080, "parsecs"),
  60539. default: true,
  60540. allForms: true
  60541. },
  60542. ],
  60543. {
  60544. "otter": {
  60545. name: "Otter",
  60546. default: true
  60547. },
  60548. "lionbat": {
  60549. name: "Lionbat",
  60550. },
  60551. }
  60552. ))
  60553. characterMakers.push(() => makeCharacter(
  60554. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60555. {
  60556. front: {
  60557. height: math.unit(7 + 4/12, "feet"),
  60558. weight: math.unit(400, "lb"),
  60559. name: "Front",
  60560. image: {
  60561. source: "./media/characters/proxy/front.svg",
  60562. extra: 1605/1542,
  60563. bottom: 55/1660
  60564. }
  60565. },
  60566. side: {
  60567. height: math.unit(7 + 4/12, "feet"),
  60568. weight: math.unit(400, "lb"),
  60569. name: "Side",
  60570. image: {
  60571. source: "./media/characters/proxy/side.svg",
  60572. extra: 794/759,
  60573. bottom: 6/800
  60574. }
  60575. },
  60576. hand: {
  60577. height: math.unit(1.54, "feet"),
  60578. name: "Hand",
  60579. image: {
  60580. source: "./media/characters/proxy/hand.svg"
  60581. }
  60582. },
  60583. paw: {
  60584. height: math.unit(1.53, "feet"),
  60585. name: "Paw",
  60586. image: {
  60587. source: "./media/characters/proxy/paw.svg"
  60588. }
  60589. },
  60590. maw: {
  60591. height: math.unit(1.9, "feet"),
  60592. name: "Maw",
  60593. image: {
  60594. source: "./media/characters/proxy/maw.svg"
  60595. }
  60596. },
  60597. },
  60598. [
  60599. {
  60600. name: "Normal",
  60601. height: math.unit(7 + 4/12, "feet"),
  60602. default: true
  60603. },
  60604. ]
  60605. ))
  60606. characterMakers.push(() => makeCharacter(
  60607. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60608. {
  60609. front: {
  60610. height: math.unit(4, "meters"),
  60611. name: "Front",
  60612. image: {
  60613. source: "./media/characters/crocozilla/front.svg",
  60614. extra: 1790/1742,
  60615. bottom: 78/1868
  60616. }
  60617. },
  60618. },
  60619. [
  60620. {
  60621. name: "Normal",
  60622. height: math.unit(4, "meters"),
  60623. default: true
  60624. },
  60625. ]
  60626. ))
  60627. characterMakers.push(() => makeCharacter(
  60628. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60629. {
  60630. front: {
  60631. height: math.unit(1.8, "meters"),
  60632. weight: math.unit(120, "kg"),
  60633. name: "Front",
  60634. image: {
  60635. source: "./media/characters/kurz/front.svg",
  60636. extra: 1960/1824,
  60637. bottom: 41/2001
  60638. }
  60639. },
  60640. back: {
  60641. height: math.unit(1.8, "meters"),
  60642. weight: math.unit(120, "kg"),
  60643. name: "Back",
  60644. image: {
  60645. source: "./media/characters/kurz/back.svg",
  60646. extra: 1906/1787,
  60647. bottom: 60/1966
  60648. }
  60649. },
  60650. frontLewd: {
  60651. height: math.unit(1.8, "meters"),
  60652. weight: math.unit(120, "kg"),
  60653. name: "Front (Lewd)",
  60654. image: {
  60655. source: "./media/characters/kurz/front-lewd.svg",
  60656. extra: 1960/1824,
  60657. bottom: 41/2001
  60658. }
  60659. },
  60660. maw: {
  60661. height: math.unit(0.69, "meters"),
  60662. name: "Maw",
  60663. image: {
  60664. source: "./media/characters/kurz/maw.svg"
  60665. }
  60666. },
  60667. },
  60668. [
  60669. {
  60670. name: "Original Size",
  60671. height: math.unit(1.8, "meters")
  60672. },
  60673. {
  60674. name: "Incognito Size",
  60675. height: math.unit(2.4, "meters"),
  60676. default: true
  60677. },
  60678. {
  60679. name: "Macro",
  60680. height: math.unit(30, "meters")
  60681. },
  60682. {
  60683. name: "Macro+",
  60684. height: math.unit(250, "meters")
  60685. },
  60686. {
  60687. name: "Mega",
  60688. height: math.unit(2, "km")
  60689. },
  60690. {
  60691. name: "Mega+",
  60692. height: math.unit(35, "km")
  60693. },
  60694. {
  60695. name: "Mega++",
  60696. height: math.unit(75, "km")
  60697. },
  60698. {
  60699. name: "Giga",
  60700. height: math.unit(250, "km")
  60701. },
  60702. {
  60703. name: "Terra",
  60704. height: math.unit(15000, "km")
  60705. },
  60706. {
  60707. name: "Terra+",
  60708. height: math.unit(2250000, "km")
  60709. },
  60710. ]
  60711. ))
  60712. characterMakers.push(() => makeCharacter(
  60713. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60714. {
  60715. front: {
  60716. height: math.unit(16 + 3/12, "feet"),
  60717. weight: math.unit(3575, "lb"),
  60718. name: "Front",
  60719. image: {
  60720. source: "./media/characters/nikita/front.svg",
  60721. extra: 1064/955,
  60722. bottom: 47/1111
  60723. }
  60724. },
  60725. },
  60726. [
  60727. {
  60728. name: "Normal",
  60729. height: math.unit(16 + 3/12, "feet"),
  60730. default: true
  60731. },
  60732. {
  60733. name: "Big",
  60734. height: math.unit(21, "feet")
  60735. },
  60736. {
  60737. name: "Biggest",
  60738. height: math.unit(50, "feet")
  60739. },
  60740. ]
  60741. ))
  60742. characterMakers.push(() => makeCharacter(
  60743. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60744. {
  60745. front: {
  60746. height: math.unit(1.92, "m"),
  60747. weight: math.unit(76, "kg"),
  60748. name: "Front",
  60749. image: {
  60750. source: "./media/characters/kyara/front.svg",
  60751. extra: 1550/1438,
  60752. bottom: 139/1689
  60753. }
  60754. },
  60755. back: {
  60756. height: math.unit(1.92, "m"),
  60757. weight: math.unit(76, "kg"),
  60758. name: "Back",
  60759. image: {
  60760. source: "./media/characters/kyara/back.svg",
  60761. extra: 1523/1427,
  60762. bottom: 83/1606
  60763. }
  60764. },
  60765. head: {
  60766. height: math.unit(1.22, "feet"),
  60767. name: "Head",
  60768. image: {
  60769. source: "./media/characters/kyara/head.svg"
  60770. }
  60771. },
  60772. maw: {
  60773. height: math.unit(0.73, "feet"),
  60774. name: "Maw",
  60775. image: {
  60776. source: "./media/characters/kyara/maw.svg"
  60777. }
  60778. },
  60779. paws: {
  60780. height: math.unit(0.95, "feet"),
  60781. name: "Paws",
  60782. image: {
  60783. source: "./media/characters/kyara/paws.svg"
  60784. }
  60785. },
  60786. },
  60787. [
  60788. {
  60789. name: "Normal",
  60790. height: math.unit(1.92, "meters"),
  60791. default: true
  60792. },
  60793. {
  60794. name: "Mini Macro",
  60795. height: math.unit(192, "meters")
  60796. },
  60797. {
  60798. name: "Macro",
  60799. height: math.unit(480, "meters")
  60800. },
  60801. {
  60802. name: "Mega Macro",
  60803. height: math.unit(1440, "meters")
  60804. },
  60805. ]
  60806. ))
  60807. characterMakers.push(() => makeCharacter(
  60808. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60809. {
  60810. front: {
  60811. height: math.unit(6, "feet"),
  60812. weight: math.unit(160, "lbs"),
  60813. preyCapacity: math.unit(0.05, "people"),
  60814. name: "Front",
  60815. image: {
  60816. source: "./media/characters/layla-amari/front.svg",
  60817. extra: 1922/1723,
  60818. bottom: 90/2012
  60819. }
  60820. },
  60821. back: {
  60822. height: math.unit(6, "feet"),
  60823. weight: math.unit(160, "lbs"),
  60824. preyCapacity: math.unit(0.05, "people"),
  60825. name: "Back",
  60826. image: {
  60827. source: "./media/characters/layla-amari/back.svg",
  60828. extra: 1917/1718,
  60829. bottom: 50/1967
  60830. }
  60831. },
  60832. frontDressed: {
  60833. height: math.unit(6, "feet"),
  60834. weight: math.unit(160, "lbs"),
  60835. preyCapacity: math.unit(0.05, "people"),
  60836. name: "Front (Dressed)",
  60837. image: {
  60838. source: "./media/characters/layla-amari/front-dressed.svg",
  60839. extra: 1922/1723,
  60840. bottom: 90/2012
  60841. }
  60842. },
  60843. face: {
  60844. height: math.unit(0.93, "feet"),
  60845. name: "Face",
  60846. image: {
  60847. source: "./media/characters/layla-amari/face.svg"
  60848. }
  60849. },
  60850. hand: {
  60851. height: math.unit(0.66 , "feet"),
  60852. name: "Hand",
  60853. image: {
  60854. source: "./media/characters/layla-amari/hand.svg"
  60855. }
  60856. },
  60857. foot: {
  60858. height: math.unit(1, "feet"),
  60859. name: "Foot",
  60860. image: {
  60861. source: "./media/characters/layla-amari/foot.svg"
  60862. }
  60863. },
  60864. necklace: {
  60865. height: math.unit(0.32, "feet"),
  60866. name: "Necklace",
  60867. image: {
  60868. source: "./media/characters/layla-amari/necklace.svg"
  60869. }
  60870. },
  60871. nipple: {
  60872. height: math.unit(0.2, "feet"),
  60873. name: "Nipple",
  60874. image: {
  60875. source: "./media/characters/layla-amari/nipple.svg"
  60876. }
  60877. },
  60878. slit: {
  60879. height: math.unit(0.26, "feet"),
  60880. name: "Slit",
  60881. image: {
  60882. source: "./media/characters/layla-amari/slit.svg"
  60883. }
  60884. },
  60885. },
  60886. [
  60887. {
  60888. name: "Natural",
  60889. height: math.unit(825, "feet"),
  60890. default: true
  60891. },
  60892. {
  60893. name: "Enhanced",
  60894. height: math.unit(8250, "feet")
  60895. },
  60896. {
  60897. name: "Apparent Size",
  60898. height: math.unit(9.04363e+8, "meters")
  60899. },
  60900. ]
  60901. ))
  60902. characterMakers.push(() => makeCharacter(
  60903. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  60904. {
  60905. front: {
  60906. height: math.unit(1.3, "meters"),
  60907. name: "Front",
  60908. image: {
  60909. source: "./media/characters/percy/front.svg",
  60910. extra: 1444/1289,
  60911. bottom: 54/1498
  60912. }
  60913. },
  60914. },
  60915. [
  60916. {
  60917. name: "Normal",
  60918. height: math.unit(1.3, "meters"),
  60919. default: true
  60920. },
  60921. ]
  60922. ))
  60923. characterMakers.push(() => makeCharacter(
  60924. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  60925. {
  60926. side: {
  60927. height: math.unit(10, "meters"),
  60928. name: "Side",
  60929. image: {
  60930. source: "./media/characters/grev/side.svg",
  60931. extra: 653/266,
  60932. bottom: 77/730
  60933. }
  60934. },
  60935. head: {
  60936. height: math.unit(16.2, "m"),
  60937. name: "Head",
  60938. image: {
  60939. source: "./media/characters/grev/head.svg"
  60940. }
  60941. },
  60942. dick: {
  60943. height: math.unit(2.8135932034, "m"),
  60944. name: "Dick",
  60945. image: {
  60946. source: "./media/characters/grev/dick.svg"
  60947. }
  60948. },
  60949. },
  60950. [
  60951. {
  60952. name: "Friend-Sized",
  60953. height: math.unit(80, "cm")
  60954. },
  60955. {
  60956. name: "Normal",
  60957. height: math.unit(10, "meters"),
  60958. default: true
  60959. },
  60960. {
  60961. name: "Macro",
  60962. height: math.unit(200, "meters")
  60963. },
  60964. ]
  60965. ))
  60966. characterMakers.push(() => makeCharacter(
  60967. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  60968. {
  60969. front: {
  60970. height: math.unit(19.75, "feet"),
  60971. weight: math.unit(20000, "lb"),
  60972. name: "Front",
  60973. image: {
  60974. source: "./media/characters/azuuca/front.svg",
  60975. extra: 1593/1511,
  60976. bottom: 55/1648
  60977. }
  60978. },
  60979. },
  60980. [
  60981. {
  60982. name: "Normal",
  60983. height: math.unit(19.75, "feet"),
  60984. default: true
  60985. },
  60986. ]
  60987. ))
  60988. characterMakers.push(() => makeCharacter(
  60989. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  60990. {
  60991. front: {
  60992. height: math.unit(15, "feet"),
  60993. weight: math.unit(1500, "lb"),
  60994. name: "Front",
  60995. image: {
  60996. source: "./media/characters/valuria/front.svg",
  60997. extra: 1588/1486,
  60998. bottom: 31/1619
  60999. }
  61000. },
  61001. },
  61002. [
  61003. {
  61004. name: "Normal",
  61005. height: math.unit(15, "feet"),
  61006. default: true
  61007. },
  61008. {
  61009. name: "Small",
  61010. height: math.unit(500, "feet")
  61011. },
  61012. {
  61013. name: "Macro",
  61014. height: math.unit(4000, "feet")
  61015. },
  61016. {
  61017. name: "Mega Macro",
  61018. height: math.unit(2000, "miles")
  61019. },
  61020. {
  61021. name: "Giga Macro",
  61022. height: math.unit(3e6, "miles")
  61023. },
  61024. ]
  61025. ))
  61026. characterMakers.push(() => makeCharacter(
  61027. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61028. {
  61029. front: {
  61030. height: math.unit(3500, "solarradii"),
  61031. name: "Front",
  61032. image: {
  61033. source: "./media/characters/terigaia/front.svg",
  61034. extra: 1531/1451,
  61035. bottom: 98/1629
  61036. }
  61037. },
  61038. },
  61039. [
  61040. {
  61041. name: "Normal",
  61042. height: math.unit(3500, "solarradii"),
  61043. default: true
  61044. },
  61045. ]
  61046. ))
  61047. characterMakers.push(() => makeCharacter(
  61048. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61049. {
  61050. front: {
  61051. height: math.unit(9.34, "feet"),
  61052. weight: math.unit(600, "lb"),
  61053. name: "Front",
  61054. image: {
  61055. source: "./media/characters/blair-blaziken/front.svg",
  61056. extra: 1557/1462,
  61057. bottom: 55/1612
  61058. }
  61059. },
  61060. },
  61061. [
  61062. {
  61063. name: "Normal",
  61064. height: math.unit(9.34, "feet"),
  61065. default: true
  61066. },
  61067. ]
  61068. ))
  61069. characterMakers.push(() => makeCharacter(
  61070. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61071. {
  61072. pistrogre_front: {
  61073. height: math.unit(10, "feet"),
  61074. weight: math.unit(10, "tons"),
  61075. name: "Front",
  61076. image: {
  61077. source: "./media/characters/braxia/pistrogre-front.svg",
  61078. extra: 1531/1334,
  61079. bottom: 114/1645
  61080. },
  61081. form: "pistrogre",
  61082. default: true
  61083. },
  61084. human_front: {
  61085. height: math.unit(10, "feet"),
  61086. weight: math.unit(10, "tons"),
  61087. name: "Front",
  61088. image: {
  61089. source: "./media/characters/braxia/human-front.svg",
  61090. extra: 1574/1501,
  61091. bottom: 37/1611
  61092. },
  61093. form: "human",
  61094. default: true
  61095. },
  61096. },
  61097. [
  61098. {
  61099. name: "Normal",
  61100. height: math.unit(10, "feet"),
  61101. default: true,
  61102. allForms: true
  61103. },
  61104. {
  61105. name: "Macro",
  61106. height: math.unit(1000, "feet"),
  61107. allForms: true
  61108. },
  61109. {
  61110. name: "Mega Macro",
  61111. height: math.unit(100, "miles"),
  61112. allForms: true
  61113. },
  61114. {
  61115. name: "Cosmic",
  61116. height: math.unit(1000000, "lightyears"),
  61117. allForms: true
  61118. },
  61119. {
  61120. name: "ϐѮԆԬӁꭍϞԢ",
  61121. height: math.unit(1000, "multiverses"),
  61122. allForms: true
  61123. },
  61124. ],
  61125. {
  61126. "pistrogre": {
  61127. name: "Pistrogre",
  61128. default: true
  61129. },
  61130. "human": {
  61131. name: "Human",
  61132. },
  61133. }
  61134. ))
  61135. //characters
  61136. function makeCharacters() {
  61137. const results = [];
  61138. characterMakers.forEach(character => {
  61139. results.push(character());
  61140. });
  61141. return results;
  61142. }