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.
 
 
 

66580 lines
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. }
  2431. //species
  2432. function getSpeciesInfo(speciesList) {
  2433. let result = new Set();
  2434. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2435. result.add(entry)
  2436. });
  2437. return Array.from(result);
  2438. };
  2439. function getSpeciesInfoHelper(species) {
  2440. if (!speciesData[species]) {
  2441. console.warn(species + " doesn't exist");
  2442. return [];
  2443. }
  2444. if (speciesData[species].parents) {
  2445. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2446. } else {
  2447. return [species];
  2448. }
  2449. }
  2450. characterMakers.push(() => makeCharacter(
  2451. {
  2452. name: "Fen",
  2453. species: ["crux"],
  2454. description: {
  2455. title: "Bio",
  2456. text: "Very furry. Sheds on everything."
  2457. },
  2458. tags: [
  2459. "anthro",
  2460. "goo"
  2461. ]
  2462. },
  2463. {
  2464. front: {
  2465. height: math.unit(12, "feet"),
  2466. weight: math.unit(2400, "lb"),
  2467. preyCapacity: math.unit(1, "people"),
  2468. name: "Front",
  2469. image: {
  2470. source: "./media/characters/fen/front.svg",
  2471. extra: 1804/1562,
  2472. bottom: 205/2009
  2473. },
  2474. extraAttributes: {
  2475. pawSize: {
  2476. name: "Paw Size",
  2477. power: 2,
  2478. type: "area",
  2479. base: math.unit(0.35, "m^2")
  2480. }
  2481. }
  2482. },
  2483. diving: {
  2484. height: math.unit(4.9, "meters"),
  2485. weight: math.unit(2400, "lb"),
  2486. name: "Diving",
  2487. image: {
  2488. source: "./media/characters/fen/diving.svg"
  2489. }
  2490. },
  2491. sleeby: {
  2492. height: math.unit(3.45, "meters"),
  2493. weight: math.unit(2400, "lb"),
  2494. name: "Sleeby",
  2495. image: {
  2496. source: "./media/characters/fen/sleeby.svg"
  2497. }
  2498. },
  2499. goo: {
  2500. height: math.unit(12, "feet"),
  2501. weight: math.unit(3600, "lb"),
  2502. volume: math.unit(1000, "liters"),
  2503. preyCapacity: math.unit(6, "people"),
  2504. name: "Goo",
  2505. image: {
  2506. source: "./media/characters/fen/goo.svg",
  2507. extra: 1307/1071,
  2508. bottom: 134/1441
  2509. }
  2510. },
  2511. horror: {
  2512. height: math.unit(13.6, "feet"),
  2513. weight: math.unit(2400, "lb"),
  2514. preyCapacity: math.unit(1, "people"),
  2515. name: "Horror",
  2516. image: {
  2517. source: "./media/characters/fen/horror.svg",
  2518. extra: 893/797,
  2519. bottom: 0/893
  2520. }
  2521. },
  2522. gooNsfw: {
  2523. height: math.unit(12, "feet"),
  2524. weight: math.unit(3750, "lb"),
  2525. volume: math.unit(1000, "liters"),
  2526. preyCapacity: math.unit(6, "people"),
  2527. name: "Goo (NSFW)",
  2528. image: {
  2529. source: "./media/characters/fen/goo-nsfw.svg",
  2530. extra: 1875/1734,
  2531. bottom: 122/1997
  2532. }
  2533. },
  2534. maw: {
  2535. height: math.unit(5.03, "feet"),
  2536. name: "Maw",
  2537. image: {
  2538. source: "./media/characters/fen/maw.svg"
  2539. }
  2540. },
  2541. gooCeiling: {
  2542. height: math.unit(6.6, "feet"),
  2543. weight: math.unit(3000, "lb"),
  2544. volume: math.unit(1000, "liters"),
  2545. preyCapacity: math.unit(6, "people"),
  2546. name: "Maw (Goo)",
  2547. image: {
  2548. source: "./media/characters/fen/goo-maw.svg"
  2549. }
  2550. },
  2551. paw: {
  2552. height: math.unit(3.77, "feet"),
  2553. name: "Paw",
  2554. image: {
  2555. source: "./media/characters/fen/paw.svg"
  2556. },
  2557. extraAttributes: {
  2558. "toeSize": {
  2559. name: "Toe Size",
  2560. power: 2,
  2561. type: "area",
  2562. base: math.unit(0.02875, "m^2")
  2563. },
  2564. "pawSize": {
  2565. name: "Paw Size",
  2566. power: 2,
  2567. type: "area",
  2568. base: math.unit(0.378, "m^2")
  2569. },
  2570. }
  2571. },
  2572. tail: {
  2573. height: math.unit(12.1, "feet"),
  2574. name: "Tail",
  2575. image: {
  2576. source: "./media/characters/fen/tail.svg"
  2577. }
  2578. },
  2579. tailFull: {
  2580. height: math.unit(12.1, "feet"),
  2581. name: "Full Tail",
  2582. image: {
  2583. source: "./media/characters/fen/tail-full.svg"
  2584. }
  2585. },
  2586. back: {
  2587. height: math.unit(12, "feet"),
  2588. weight: math.unit(2400, "lb"),
  2589. name: "Back",
  2590. image: {
  2591. source: "./media/characters/fen/back.svg",
  2592. },
  2593. info: {
  2594. description: {
  2595. mode: "append",
  2596. text: "\n\nHe is not currently looking at you."
  2597. }
  2598. }
  2599. },
  2600. full: {
  2601. height: math.unit(1.85, "meter"),
  2602. weight: math.unit(3200, "lb"),
  2603. preyCapacity: math.unit(3, "people"),
  2604. name: "Full",
  2605. image: {
  2606. source: "./media/characters/fen/full.svg",
  2607. extra: 1133/859,
  2608. bottom: 145/1278
  2609. },
  2610. info: {
  2611. description: {
  2612. mode: "append",
  2613. text: "\n\nMunch."
  2614. }
  2615. }
  2616. },
  2617. gooLounging: {
  2618. height: math.unit(4.53, "feet"),
  2619. weight: math.unit(3000, "lb"),
  2620. preyCapacity: math.unit(6, "people"),
  2621. name: "Goo (Lounging)",
  2622. image: {
  2623. source: "./media/characters/fen/goo-lounging.svg",
  2624. bottom: 116 / 613
  2625. }
  2626. },
  2627. lounging: {
  2628. height: math.unit(10.52, "feet"),
  2629. weight: math.unit(2400, "lb"),
  2630. name: "Lounging",
  2631. image: {
  2632. source: "./media/characters/fen/lounging.svg"
  2633. }
  2634. },
  2635. },
  2636. [
  2637. {
  2638. name: "Small",
  2639. height: math.unit(2.2428, "meter")
  2640. },
  2641. {
  2642. name: "Normal",
  2643. height: math.unit(12, "feet"),
  2644. default: true,
  2645. },
  2646. {
  2647. name: "Big",
  2648. height: math.unit(20, "feet")
  2649. },
  2650. {
  2651. name: "Minimacro",
  2652. height: math.unit(40, "feet"),
  2653. info: {
  2654. description: {
  2655. mode: "append",
  2656. text: "\n\nTOO DAMN BIG"
  2657. }
  2658. }
  2659. },
  2660. {
  2661. name: "Macro",
  2662. height: math.unit(100, "feet"),
  2663. info: {
  2664. description: {
  2665. mode: "append",
  2666. text: "\n\nTOO DAMN BIG"
  2667. }
  2668. }
  2669. },
  2670. {
  2671. name: "Megamacro",
  2672. height: math.unit(2, "miles")
  2673. },
  2674. {
  2675. name: "Gigamacro",
  2676. height: math.unit(10, "earths")
  2677. },
  2678. ]
  2679. ))
  2680. characterMakers.push(() => makeCharacter(
  2681. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2682. {
  2683. front: {
  2684. height: math.unit(183, "cm"),
  2685. weight: math.unit(80, "kg"),
  2686. name: "Front",
  2687. image: {
  2688. source: "./media/characters/sofia-fluttertail/front.svg",
  2689. bottom: 0.01,
  2690. extra: 2154 / 2081
  2691. }
  2692. },
  2693. frontAlt: {
  2694. height: math.unit(183, "cm"),
  2695. weight: math.unit(80, "kg"),
  2696. name: "Front (alt)",
  2697. image: {
  2698. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2699. }
  2700. },
  2701. back: {
  2702. height: math.unit(183, "cm"),
  2703. weight: math.unit(80, "kg"),
  2704. name: "Back",
  2705. image: {
  2706. source: "./media/characters/sofia-fluttertail/back.svg"
  2707. }
  2708. },
  2709. kneeling: {
  2710. height: math.unit(125, "cm"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Kneeling",
  2713. image: {
  2714. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2715. extra: 1033 / 977,
  2716. bottom: 23.7 / 1057
  2717. }
  2718. },
  2719. maw: {
  2720. height: math.unit(183 / 5, "cm"),
  2721. name: "Maw",
  2722. image: {
  2723. source: "./media/characters/sofia-fluttertail/maw.svg"
  2724. }
  2725. },
  2726. mawcloseup: {
  2727. height: math.unit(183 / 5 * 0.41, "cm"),
  2728. name: "Maw (Closeup)",
  2729. image: {
  2730. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2731. }
  2732. },
  2733. paws: {
  2734. height: math.unit(1.17, "feet"),
  2735. name: "Paws",
  2736. image: {
  2737. source: "./media/characters/sofia-fluttertail/paws.svg",
  2738. extra: 851 / 851,
  2739. bottom: 17 / 868
  2740. }
  2741. },
  2742. },
  2743. [
  2744. {
  2745. name: "Normal",
  2746. height: math.unit(1.83, "meter")
  2747. },
  2748. {
  2749. name: "Size Thief",
  2750. height: math.unit(18, "feet")
  2751. },
  2752. {
  2753. name: "50 Foot Collie",
  2754. height: math.unit(50, "feet")
  2755. },
  2756. {
  2757. name: "Macro",
  2758. height: math.unit(96, "feet"),
  2759. default: true
  2760. },
  2761. {
  2762. name: "Megamerger",
  2763. height: math.unit(650, "feet")
  2764. },
  2765. ]
  2766. ))
  2767. characterMakers.push(() => makeCharacter(
  2768. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2769. {
  2770. front: {
  2771. height: math.unit(7, "feet"),
  2772. weight: math.unit(100, "kg"),
  2773. name: "Front",
  2774. image: {
  2775. source: "./media/characters/march/front.svg",
  2776. extra: 1992/1851,
  2777. bottom: 39/2031
  2778. }
  2779. },
  2780. foot: {
  2781. height: math.unit(0.9, "feet"),
  2782. name: "Foot",
  2783. image: {
  2784. source: "./media/characters/march/foot.svg"
  2785. }
  2786. },
  2787. },
  2788. [
  2789. {
  2790. name: "Normal",
  2791. height: math.unit(7.9, "feet")
  2792. },
  2793. {
  2794. name: "Macro",
  2795. height: math.unit(220, "meters")
  2796. },
  2797. {
  2798. name: "Megamacro",
  2799. height: math.unit(2.98, "km"),
  2800. default: true
  2801. },
  2802. {
  2803. name: "Gigamacro",
  2804. height: math.unit(15963, "km")
  2805. },
  2806. {
  2807. name: "Teramacro",
  2808. height: math.unit(2980000000, "km")
  2809. },
  2810. {
  2811. name: "Examacro",
  2812. height: math.unit(250, "parsecs")
  2813. },
  2814. ]
  2815. ))
  2816. characterMakers.push(() => makeCharacter(
  2817. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2818. {
  2819. front: {
  2820. height: math.unit(6, "feet"),
  2821. weight: math.unit(60, "kg"),
  2822. name: "Front",
  2823. image: {
  2824. source: "./media/characters/noir/front.svg",
  2825. extra: 1,
  2826. bottom: 0.032
  2827. }
  2828. },
  2829. },
  2830. [
  2831. {
  2832. name: "Normal",
  2833. height: math.unit(6.6, "feet")
  2834. },
  2835. {
  2836. name: "Macro",
  2837. height: math.unit(500, "feet")
  2838. },
  2839. {
  2840. name: "Megamacro",
  2841. height: math.unit(2.5, "km"),
  2842. default: true
  2843. },
  2844. {
  2845. name: "Gigamacro",
  2846. height: math.unit(22500, "km")
  2847. },
  2848. {
  2849. name: "Teramacro",
  2850. height: math.unit(2500000000, "km")
  2851. },
  2852. {
  2853. name: "Examacro",
  2854. height: math.unit(200, "parsecs")
  2855. },
  2856. ]
  2857. ))
  2858. characterMakers.push(() => makeCharacter(
  2859. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2860. {
  2861. front: {
  2862. height: math.unit(7, "feet"),
  2863. weight: math.unit(100, "kg"),
  2864. name: "Front",
  2865. image: {
  2866. source: "./media/characters/okuri/front.svg",
  2867. extra: 739/665,
  2868. bottom: 39/778
  2869. }
  2870. },
  2871. back: {
  2872. height: math.unit(7, "feet"),
  2873. weight: math.unit(100, "kg"),
  2874. name: "Back",
  2875. image: {
  2876. source: "./media/characters/okuri/back.svg",
  2877. extra: 734/653,
  2878. bottom: 13/747
  2879. }
  2880. },
  2881. sitting: {
  2882. height: math.unit(2.95, "feet"),
  2883. weight: math.unit(100, "kg"),
  2884. name: "Sitting",
  2885. image: {
  2886. source: "./media/characters/okuri/sitting.svg",
  2887. extra: 370/318,
  2888. bottom: 99/469
  2889. }
  2890. },
  2891. },
  2892. [
  2893. {
  2894. name: "Smallest",
  2895. height: math.unit(5 + 2/12, "feet")
  2896. },
  2897. {
  2898. name: "Smaller",
  2899. height: math.unit(300, "feet")
  2900. },
  2901. {
  2902. name: "Small",
  2903. height: math.unit(1000, "feet")
  2904. },
  2905. {
  2906. name: "Macro",
  2907. height: math.unit(1, "mile")
  2908. },
  2909. {
  2910. name: "Mega Macro (Small)",
  2911. height: math.unit(20, "km")
  2912. },
  2913. {
  2914. name: "Mega Macro (Large)",
  2915. height: math.unit(600, "km")
  2916. },
  2917. {
  2918. name: "Giga Macro",
  2919. height: math.unit(10000, "km")
  2920. },
  2921. {
  2922. name: "Normal",
  2923. height: math.unit(577560, "km"),
  2924. default: true
  2925. },
  2926. {
  2927. name: "Large",
  2928. height: math.unit(4, "galaxies")
  2929. },
  2930. {
  2931. name: "Largest",
  2932. height: math.unit(15, "multiverses")
  2933. },
  2934. ]
  2935. ))
  2936. characterMakers.push(() => makeCharacter(
  2937. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2938. {
  2939. front: {
  2940. height: math.unit(7, "feet"),
  2941. weight: math.unit(100, "kg"),
  2942. name: "Front",
  2943. image: {
  2944. source: "./media/characters/manny/front.svg",
  2945. extra: 1,
  2946. bottom: 0.06
  2947. }
  2948. },
  2949. back: {
  2950. height: math.unit(7, "feet"),
  2951. weight: math.unit(100, "kg"),
  2952. name: "Back",
  2953. image: {
  2954. source: "./media/characters/manny/back.svg",
  2955. extra: 1,
  2956. bottom: 0.014
  2957. }
  2958. },
  2959. },
  2960. [
  2961. {
  2962. name: "Normal",
  2963. height: math.unit(7, "feet"),
  2964. },
  2965. {
  2966. name: "Macro",
  2967. height: math.unit(78, "feet"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Macro+",
  2972. height: math.unit(300, "meters")
  2973. },
  2974. {
  2975. name: "Macro++",
  2976. height: math.unit(2400, "meters")
  2977. },
  2978. {
  2979. name: "Megamacro",
  2980. height: math.unit(5167, "meters")
  2981. },
  2982. {
  2983. name: "Gigamacro",
  2984. height: math.unit(41769, "miles")
  2985. },
  2986. ]
  2987. ))
  2988. characterMakers.push(() => makeCharacter(
  2989. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2990. {
  2991. front: {
  2992. height: math.unit(7, "feet"),
  2993. weight: math.unit(100, "kg"),
  2994. name: "Front",
  2995. image: {
  2996. source: "./media/characters/adake/front-1.svg"
  2997. }
  2998. },
  2999. frontAlt: {
  3000. height: math.unit(7, "feet"),
  3001. weight: math.unit(100, "kg"),
  3002. name: "Front (Alt)",
  3003. image: {
  3004. source: "./media/characters/adake/front-2.svg",
  3005. extra: 1,
  3006. bottom: 0.01
  3007. }
  3008. },
  3009. back: {
  3010. height: math.unit(7, "feet"),
  3011. weight: math.unit(100, "kg"),
  3012. name: "Back",
  3013. image: {
  3014. source: "./media/characters/adake/back.svg",
  3015. }
  3016. },
  3017. kneel: {
  3018. height: math.unit(5.385, "feet"),
  3019. weight: math.unit(100, "kg"),
  3020. name: "Kneeling",
  3021. image: {
  3022. source: "./media/characters/adake/kneel.svg",
  3023. bottom: 0.052
  3024. }
  3025. },
  3026. },
  3027. [
  3028. {
  3029. name: "Normal",
  3030. height: math.unit(7, "feet"),
  3031. },
  3032. {
  3033. name: "Macro",
  3034. height: math.unit(78, "feet"),
  3035. default: true
  3036. },
  3037. {
  3038. name: "Macro+",
  3039. height: math.unit(300, "meters")
  3040. },
  3041. {
  3042. name: "Macro++",
  3043. height: math.unit(2400, "meters")
  3044. },
  3045. {
  3046. name: "Megamacro",
  3047. height: math.unit(5167, "meters")
  3048. },
  3049. {
  3050. name: "Gigamacro",
  3051. height: math.unit(41769, "miles")
  3052. },
  3053. ]
  3054. ))
  3055. characterMakers.push(() => makeCharacter(
  3056. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3057. {
  3058. front: {
  3059. height: math.unit(1.65, "meters"),
  3060. weight: math.unit(50, "kg"),
  3061. name: "Front",
  3062. image: {
  3063. source: "./media/characters/elijah/front.svg",
  3064. extra: 858 / 830,
  3065. bottom: 95.5 / 953.8559
  3066. }
  3067. },
  3068. back: {
  3069. height: math.unit(1.65, "meters"),
  3070. weight: math.unit(50, "kg"),
  3071. name: "Back",
  3072. image: {
  3073. source: "./media/characters/elijah/back.svg",
  3074. extra: 895 / 850,
  3075. bottom: 5.3 / 897.956
  3076. }
  3077. },
  3078. frontNsfw: {
  3079. height: math.unit(1.65, "meters"),
  3080. weight: math.unit(50, "kg"),
  3081. name: "Front (NSFW)",
  3082. image: {
  3083. source: "./media/characters/elijah/front-nsfw.svg",
  3084. extra: 858 / 830,
  3085. bottom: 95.5 / 953.8559
  3086. }
  3087. },
  3088. backNsfw: {
  3089. height: math.unit(1.65, "meters"),
  3090. weight: math.unit(50, "kg"),
  3091. name: "Back (NSFW)",
  3092. image: {
  3093. source: "./media/characters/elijah/back-nsfw.svg",
  3094. extra: 895 / 850,
  3095. bottom: 5.3 / 897.956
  3096. }
  3097. },
  3098. dick: {
  3099. height: math.unit(1, "feet"),
  3100. name: "Dick",
  3101. image: {
  3102. source: "./media/characters/elijah/dick.svg"
  3103. }
  3104. },
  3105. beakOpen: {
  3106. height: math.unit(1.25, "feet"),
  3107. name: "Beak (Open)",
  3108. image: {
  3109. source: "./media/characters/elijah/beak-open.svg"
  3110. }
  3111. },
  3112. beakShut: {
  3113. height: math.unit(1.25, "feet"),
  3114. name: "Beak (Shut)",
  3115. image: {
  3116. source: "./media/characters/elijah/beak-shut.svg"
  3117. }
  3118. },
  3119. footFlexing: {
  3120. height: math.unit(1.61, "feet"),
  3121. name: "Foot (Flexing)",
  3122. image: {
  3123. source: "./media/characters/elijah/foot-flexing.svg"
  3124. }
  3125. },
  3126. footStepping: {
  3127. height: math.unit(1.44, "feet"),
  3128. name: "Foot (Stepping)",
  3129. image: {
  3130. source: "./media/characters/elijah/foot-stepping.svg"
  3131. }
  3132. },
  3133. plantigradeLeg: {
  3134. height: math.unit(2.34, "feet"),
  3135. name: "Plantigrade Leg",
  3136. image: {
  3137. source: "./media/characters/elijah/plantigrade-leg.svg"
  3138. }
  3139. },
  3140. plantigradeFootLeft: {
  3141. height: math.unit(0.9, "feet"),
  3142. name: "Plantigrade Foot (Left)",
  3143. image: {
  3144. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3145. }
  3146. },
  3147. plantigradeFootRight: {
  3148. height: math.unit(0.9, "feet"),
  3149. name: "Plantigrade Foot (Right)",
  3150. image: {
  3151. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3152. }
  3153. },
  3154. },
  3155. [
  3156. {
  3157. name: "Normal",
  3158. height: math.unit(1.65, "meters")
  3159. },
  3160. {
  3161. name: "Macro",
  3162. height: math.unit(55, "meters"),
  3163. default: true
  3164. },
  3165. {
  3166. name: "Macro+",
  3167. height: math.unit(105, "meters")
  3168. },
  3169. ]
  3170. ))
  3171. characterMakers.push(() => makeCharacter(
  3172. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3173. {
  3174. front: {
  3175. height: math.unit(7 + 2/12, "feet"),
  3176. weight: math.unit(320, "kg"),
  3177. preyCapacity: math.unit(0.276549935, "people"),
  3178. name: "Front",
  3179. image: {
  3180. source: "./media/characters/rai/front.svg",
  3181. extra: 1802/1696,
  3182. bottom: 68/1870
  3183. },
  3184. form: "anthro",
  3185. default: true
  3186. },
  3187. frontDressed: {
  3188. height: math.unit(7 + 2/12, "feet"),
  3189. weight: math.unit(320, "kg"),
  3190. preyCapacity: math.unit(0.276549935, "people"),
  3191. name: "Front (Dressed)",
  3192. image: {
  3193. source: "./media/characters/rai/front-dressed.svg",
  3194. extra: 1802/1696,
  3195. bottom: 68/1870
  3196. },
  3197. form: "anthro"
  3198. },
  3199. side: {
  3200. height: math.unit(7 + 2/12, "feet"),
  3201. weight: math.unit(320, "kg"),
  3202. preyCapacity: math.unit(0.276549935, "people"),
  3203. name: "Side",
  3204. image: {
  3205. source: "./media/characters/rai/side.svg",
  3206. extra: 1789/1710,
  3207. bottom: 115/1904
  3208. },
  3209. form: "anthro"
  3210. },
  3211. back: {
  3212. height: math.unit(7 + 2/12, "feet"),
  3213. weight: math.unit(320, "kg"),
  3214. preyCapacity: math.unit(0.276549935, "people"),
  3215. name: "Back",
  3216. image: {
  3217. source: "./media/characters/rai/back.svg",
  3218. extra: 1770/1707,
  3219. bottom: 28/1798
  3220. },
  3221. form: "anthro"
  3222. },
  3223. feral: {
  3224. height: math.unit(9.5, "feet"),
  3225. weight: math.unit(640, "kg"),
  3226. preyCapacity: math.unit(4, "people"),
  3227. name: "Feral",
  3228. image: {
  3229. source: "./media/characters/rai/feral.svg",
  3230. extra: 945/553,
  3231. bottom: 176/1121
  3232. },
  3233. form: "feral",
  3234. default: true
  3235. },
  3236. dragon: {
  3237. height: math.unit(23, "feet"),
  3238. weight: math.unit(50000, "lb"),
  3239. name: "Dragon",
  3240. image: {
  3241. source: "./media/characters/rai/dragon.svg",
  3242. extra: 2498 / 2030,
  3243. bottom: 85.2 / 2584
  3244. },
  3245. form: "dragon",
  3246. default: true
  3247. },
  3248. maw: {
  3249. height: math.unit(1.69, "feet"),
  3250. name: "Maw",
  3251. image: {
  3252. source: "./media/characters/rai/maw.svg"
  3253. },
  3254. form: "anthro"
  3255. },
  3256. },
  3257. [
  3258. {
  3259. name: "Normal",
  3260. height: math.unit(7 + 2/12, "feet"),
  3261. form: "anthro"
  3262. },
  3263. {
  3264. name: "Big",
  3265. height: math.unit(11, "feet"),
  3266. form: "anthro"
  3267. },
  3268. {
  3269. name: "Minimacro",
  3270. height: math.unit(77, "feet"),
  3271. form: "anthro"
  3272. },
  3273. {
  3274. name: "Macro",
  3275. height: math.unit(302, "feet"),
  3276. default: true,
  3277. form: "anthro"
  3278. },
  3279. {
  3280. name: "Normal",
  3281. height: math.unit(9.5, "feet"),
  3282. form: "feral",
  3283. default: true
  3284. },
  3285. {
  3286. name: "Normal",
  3287. height: math.unit(23, "feet"),
  3288. form: "dragon",
  3289. default: true
  3290. }
  3291. ],
  3292. {
  3293. "anthro": {
  3294. name: "Anthro",
  3295. default: true
  3296. },
  3297. "feral": {
  3298. name: "Feral",
  3299. },
  3300. "dragon": {
  3301. name: "Dragon",
  3302. },
  3303. }
  3304. ))
  3305. characterMakers.push(() => makeCharacter(
  3306. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3307. {
  3308. frontDressed: {
  3309. height: math.unit(216, "feet"),
  3310. weight: math.unit(7000000, "lb"),
  3311. preyCapacity: math.unit(1321, "people"),
  3312. name: "Front (Dressed)",
  3313. image: {
  3314. source: "./media/characters/jazzy/front-dressed.svg",
  3315. extra: 2738 / 2651,
  3316. bottom: 41.8 / 2786
  3317. }
  3318. },
  3319. backDressed: {
  3320. height: math.unit(216, "feet"),
  3321. weight: math.unit(7000000, "lb"),
  3322. preyCapacity: math.unit(1321, "people"),
  3323. name: "Back (Dressed)",
  3324. image: {
  3325. source: "./media/characters/jazzy/back-dressed.svg",
  3326. extra: 2775 / 2673,
  3327. bottom: 36.8 / 2817
  3328. }
  3329. },
  3330. front: {
  3331. height: math.unit(216, "feet"),
  3332. weight: math.unit(7000000, "lb"),
  3333. preyCapacity: math.unit(1321, "people"),
  3334. name: "Front",
  3335. image: {
  3336. source: "./media/characters/jazzy/front.svg",
  3337. extra: 2738 / 2651,
  3338. bottom: 41.8 / 2786
  3339. }
  3340. },
  3341. back: {
  3342. height: math.unit(216, "feet"),
  3343. weight: math.unit(7000000, "lb"),
  3344. preyCapacity: math.unit(1321, "people"),
  3345. name: "Back",
  3346. image: {
  3347. source: "./media/characters/jazzy/back.svg",
  3348. extra: 2775 / 2673,
  3349. bottom: 36.8 / 2817
  3350. }
  3351. },
  3352. maw: {
  3353. height: math.unit(20, "feet"),
  3354. name: "Maw",
  3355. image: {
  3356. source: "./media/characters/jazzy/maw.svg"
  3357. }
  3358. },
  3359. paws: {
  3360. height: math.unit(27.5, "feet"),
  3361. name: "Paws",
  3362. image: {
  3363. source: "./media/characters/jazzy/paws.svg"
  3364. }
  3365. },
  3366. eye: {
  3367. height: math.unit(4.4, "feet"),
  3368. name: "Eye",
  3369. image: {
  3370. source: "./media/characters/jazzy/eye.svg"
  3371. }
  3372. },
  3373. droneOffense: {
  3374. height: math.unit(9.5, "inches"),
  3375. name: "Drone (Offense)",
  3376. image: {
  3377. source: "./media/characters/jazzy/drone-offense.svg"
  3378. }
  3379. },
  3380. droneRecon: {
  3381. height: math.unit(9.5, "inches"),
  3382. name: "Drone (Recon)",
  3383. image: {
  3384. source: "./media/characters/jazzy/drone-recon.svg"
  3385. }
  3386. },
  3387. droneDefense: {
  3388. height: math.unit(9.5, "inches"),
  3389. name: "Drone (Defense)",
  3390. image: {
  3391. source: "./media/characters/jazzy/drone-defense.svg"
  3392. }
  3393. },
  3394. },
  3395. [
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(216, "feet"),
  3399. default: true
  3400. },
  3401. ]
  3402. ))
  3403. characterMakers.push(() => makeCharacter(
  3404. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3405. {
  3406. front: {
  3407. height: math.unit(9 + 6/12, "feet"),
  3408. weight: math.unit(700, "lb"),
  3409. name: "Front",
  3410. image: {
  3411. source: "./media/characters/flamm/front.svg",
  3412. extra: 1736/1596,
  3413. bottom: 93/1829
  3414. }
  3415. },
  3416. buff: {
  3417. height: math.unit(9 + 6/12, "feet"),
  3418. weight: math.unit(950, "lb"),
  3419. name: "Buff",
  3420. image: {
  3421. source: "./media/characters/flamm/buff.svg",
  3422. extra: 3018/2874,
  3423. bottom: 221/3239
  3424. }
  3425. },
  3426. },
  3427. [
  3428. {
  3429. name: "Normal",
  3430. height: math.unit(9.5, "feet")
  3431. },
  3432. {
  3433. name: "Macro",
  3434. height: math.unit(200, "feet"),
  3435. default: true
  3436. },
  3437. ]
  3438. ))
  3439. characterMakers.push(() => makeCharacter(
  3440. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3441. {
  3442. front: {
  3443. height: math.unit(5 + 3/12, "feet"),
  3444. weight: math.unit(60, "kg"),
  3445. name: "Front",
  3446. image: {
  3447. source: "./media/characters/zephiro/front.svg",
  3448. extra: 1873/1761,
  3449. bottom: 147/2020
  3450. }
  3451. },
  3452. side: {
  3453. height: math.unit(5 + 3/12, "feet"),
  3454. weight: math.unit(60, "kg"),
  3455. name: "Side",
  3456. image: {
  3457. source: "./media/characters/zephiro/side.svg",
  3458. extra: 1929/1827,
  3459. bottom: 65/1994
  3460. }
  3461. },
  3462. back: {
  3463. height: math.unit(5 + 3/12, "feet"),
  3464. weight: math.unit(60, "kg"),
  3465. name: "Back",
  3466. image: {
  3467. source: "./media/characters/zephiro/back.svg",
  3468. extra: 1926/1816,
  3469. bottom: 41/1967
  3470. }
  3471. },
  3472. hand: {
  3473. height: math.unit(0.68, "feet"),
  3474. name: "Hand",
  3475. image: {
  3476. source: "./media/characters/zephiro/hand.svg"
  3477. }
  3478. },
  3479. paw: {
  3480. height: math.unit(1, "feet"),
  3481. name: "Paw",
  3482. image: {
  3483. source: "./media/characters/zephiro/paw.svg"
  3484. }
  3485. },
  3486. beans: {
  3487. height: math.unit(0.93, "feet"),
  3488. name: "Beans",
  3489. image: {
  3490. source: "./media/characters/zephiro/beans.svg"
  3491. }
  3492. },
  3493. },
  3494. [
  3495. {
  3496. name: "Micro",
  3497. height: math.unit(3, "inches")
  3498. },
  3499. {
  3500. name: "Normal",
  3501. height: math.unit(5 + 3 / 12, "feet"),
  3502. default: true
  3503. },
  3504. {
  3505. name: "Macro",
  3506. height: math.unit(118, "feet")
  3507. },
  3508. ]
  3509. ))
  3510. characterMakers.push(() => makeCharacter(
  3511. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3512. {
  3513. front: {
  3514. height: math.unit(5, "feet"),
  3515. weight: math.unit(90, "kg"),
  3516. preyCapacity: math.unit(14, "people"),
  3517. name: "Front",
  3518. image: {
  3519. source: "./media/characters/fory/front.svg",
  3520. extra: 2862 / 2674,
  3521. bottom: 180 / 3043.8
  3522. },
  3523. form: "weaselbun",
  3524. default: true,
  3525. extraAttributes: {
  3526. "pawSize": {
  3527. name: "Paw Size",
  3528. power: 2,
  3529. type: "area",
  3530. base: math.unit(0.1596, "m^2")
  3531. },
  3532. "pawLength": {
  3533. name: "Paw Length",
  3534. power: 1,
  3535. type: "length",
  3536. base: math.unit(0.7, "m")
  3537. }
  3538. }
  3539. },
  3540. back: {
  3541. height: math.unit(5, "feet"),
  3542. weight: math.unit(90, "kg"),
  3543. preyCapacity: math.unit(14, "people"),
  3544. name: "Back",
  3545. image: {
  3546. source: "./media/characters/fory/back.svg",
  3547. extra: 1790/1672,
  3548. bottom: 84/1874
  3549. },
  3550. form: "weaselbun",
  3551. extraAttributes: {
  3552. "pawSize": {
  3553. name: "Paw Size",
  3554. power: 2,
  3555. type: "area",
  3556. base: math.unit(0.1596, "m^2")
  3557. },
  3558. "pawLength": {
  3559. name: "Paw Length",
  3560. power: 1,
  3561. type: "length",
  3562. base: math.unit(0.7, "m")
  3563. }
  3564. }
  3565. },
  3566. paw: {
  3567. height: math.unit(2.14, "feet"),
  3568. name: "Paw",
  3569. image: {
  3570. source: "./media/characters/fory/paw.svg"
  3571. },
  3572. form: "weaselbun",
  3573. extraAttributes: {
  3574. "pawSize": {
  3575. name: "Paw Size",
  3576. power: 2,
  3577. type: "area",
  3578. base: math.unit(0.1596, "m^2")
  3579. },
  3580. "pawLength": {
  3581. name: "Paw Length",
  3582. power: 1,
  3583. type: "length",
  3584. base: math.unit(0.48, "m")
  3585. }
  3586. }
  3587. },
  3588. bunBack: {
  3589. height: math.unit(3, "feet"),
  3590. weight: math.unit(20, "kg"),
  3591. preyCapacity: math.unit(3, "people"),
  3592. name: "Back",
  3593. image: {
  3594. source: "./media/characters/fory/bun-back.svg",
  3595. extra: 1749/1564,
  3596. bottom: 246/1995
  3597. },
  3598. form: "bun",
  3599. default: true,
  3600. extraAttributes: {
  3601. "pawSize": {
  3602. name: "Paw Size",
  3603. power: 2,
  3604. type: "area",
  3605. base: math.unit(0.072, "m^2")
  3606. },
  3607. "pawLength": {
  3608. name: "Paw Length",
  3609. power: 1,
  3610. type: "length",
  3611. base: math.unit(0.45, "m")
  3612. }
  3613. }
  3614. },
  3615. },
  3616. [
  3617. {
  3618. name: "Normal",
  3619. height: math.unit(5, "feet"),
  3620. form: "weaselbun"
  3621. },
  3622. {
  3623. name: "Macro",
  3624. height: math.unit(50, "feet"),
  3625. default: true,
  3626. form: "weaselbun"
  3627. },
  3628. {
  3629. name: "Megamacro",
  3630. height: math.unit(10, "miles"),
  3631. form: "weaselbun"
  3632. },
  3633. {
  3634. name: "Gigamacro",
  3635. height: math.unit(5, "earths"),
  3636. form: "weaselbun"
  3637. },
  3638. {
  3639. name: "Normal",
  3640. height: math.unit(3, "feet"),
  3641. default: true,
  3642. form: "bun"
  3643. },
  3644. {
  3645. name: "Fun-Size",
  3646. height: math.unit(12, "feet"),
  3647. form: "bun"
  3648. },
  3649. {
  3650. name: "Macro",
  3651. height: math.unit(100, "feet"),
  3652. form: "bun"
  3653. },
  3654. {
  3655. name: "Planetary",
  3656. height: math.unit(3, "earths"),
  3657. form: "bun"
  3658. },
  3659. ],
  3660. {
  3661. "weaselbun": {
  3662. name: "Weaselbun",
  3663. default: true
  3664. },
  3665. "bun": {
  3666. name: "Bun",
  3667. },
  3668. }
  3669. ))
  3670. characterMakers.push(() => makeCharacter(
  3671. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3672. {
  3673. front: {
  3674. height: math.unit(7, "feet"),
  3675. weight: math.unit(90, "kg"),
  3676. name: "Front",
  3677. image: {
  3678. source: "./media/characters/kurrikage/front.svg",
  3679. extra: 1845/1733,
  3680. bottom: 119/1964
  3681. }
  3682. },
  3683. back: {
  3684. height: math.unit(7, "feet"),
  3685. weight: math.unit(90, "kg"),
  3686. name: "Back",
  3687. image: {
  3688. source: "./media/characters/kurrikage/back.svg",
  3689. extra: 1790/1677,
  3690. bottom: 61/1851
  3691. }
  3692. },
  3693. dressed: {
  3694. height: math.unit(7, "feet"),
  3695. weight: math.unit(90, "kg"),
  3696. name: "Dressed",
  3697. image: {
  3698. source: "./media/characters/kurrikage/dressed.svg",
  3699. extra: 1845/1733,
  3700. bottom: 119/1964
  3701. }
  3702. },
  3703. foot: {
  3704. height: math.unit(1.5, "feet"),
  3705. name: "Foot",
  3706. image: {
  3707. source: "./media/characters/kurrikage/foot.svg"
  3708. }
  3709. },
  3710. staff: {
  3711. height: math.unit(6.7, "feet"),
  3712. name: "Staff",
  3713. image: {
  3714. source: "./media/characters/kurrikage/staff.svg"
  3715. }
  3716. },
  3717. peek: {
  3718. height: math.unit(1.05, "feet"),
  3719. name: "Peeking",
  3720. image: {
  3721. source: "./media/characters/kurrikage/peek.svg",
  3722. bottom: 0.08
  3723. }
  3724. },
  3725. },
  3726. [
  3727. {
  3728. name: "Normal",
  3729. height: math.unit(12, "feet"),
  3730. default: true
  3731. },
  3732. {
  3733. name: "Big",
  3734. height: math.unit(20, "feet")
  3735. },
  3736. {
  3737. name: "Macro",
  3738. height: math.unit(500, "feet")
  3739. },
  3740. {
  3741. name: "Megamacro",
  3742. height: math.unit(20, "miles")
  3743. },
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(6, "feet"),
  3751. weight: math.unit(75, "kg"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/shingo/front.svg",
  3755. extra: 1900/1825,
  3756. bottom: 82/1982
  3757. }
  3758. },
  3759. side: {
  3760. height: math.unit(6, "feet"),
  3761. weight: math.unit(75, "kg"),
  3762. name: "Side",
  3763. image: {
  3764. source: "./media/characters/shingo/side.svg",
  3765. extra: 1930/1865,
  3766. bottom: 16/1946
  3767. }
  3768. },
  3769. back: {
  3770. height: math.unit(6, "feet"),
  3771. weight: math.unit(75, "kg"),
  3772. name: "Back",
  3773. image: {
  3774. source: "./media/characters/shingo/back.svg",
  3775. extra: 1922/1852,
  3776. bottom: 16/1938
  3777. }
  3778. },
  3779. frontDressed: {
  3780. height: math.unit(6, "feet"),
  3781. weight: math.unit(150, "lb"),
  3782. name: "Front-dressed",
  3783. image: {
  3784. source: "./media/characters/shingo/front-dressed.svg",
  3785. extra: 1900/1825,
  3786. bottom: 82/1982
  3787. }
  3788. },
  3789. paw: {
  3790. height: math.unit(1.29, "feet"),
  3791. name: "Paw",
  3792. image: {
  3793. source: "./media/characters/shingo/paw.svg"
  3794. }
  3795. },
  3796. hand: {
  3797. height: math.unit(1.07, "feet"),
  3798. name: "Hand",
  3799. image: {
  3800. source: "./media/characters/shingo/hand.svg"
  3801. }
  3802. },
  3803. frontAlt: {
  3804. height: math.unit(6, "feet"),
  3805. weight: math.unit(75, "kg"),
  3806. name: "Front (Alt)",
  3807. image: {
  3808. source: "./media/characters/shingo/front-alt.svg",
  3809. extra: 3511 / 3338,
  3810. bottom: 0.005
  3811. }
  3812. },
  3813. frontAlt2: {
  3814. height: math.unit(6, "feet"),
  3815. weight: math.unit(75, "kg"),
  3816. name: "Front (Alt 2)",
  3817. image: {
  3818. source: "./media/characters/shingo/front-alt-2.svg",
  3819. extra: 706/681,
  3820. bottom: 11/717
  3821. }
  3822. },
  3823. pawAlt: {
  3824. height: math.unit(1, "feet"),
  3825. name: "Paw (Alt)",
  3826. image: {
  3827. source: "./media/characters/shingo/paw-alt.svg"
  3828. }
  3829. },
  3830. },
  3831. [
  3832. {
  3833. name: "Micro",
  3834. height: math.unit(4, "inches")
  3835. },
  3836. {
  3837. name: "Normal",
  3838. height: math.unit(6, "feet"),
  3839. default: true
  3840. },
  3841. {
  3842. name: "Macro",
  3843. height: math.unit(108, "feet")
  3844. },
  3845. {
  3846. name: "Macro+",
  3847. height: math.unit(1500, "feet")
  3848. },
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3853. {
  3854. side: {
  3855. height: math.unit(6, "feet"),
  3856. weight: math.unit(75, "kg"),
  3857. name: "Side",
  3858. image: {
  3859. source: "./media/characters/aigey/side.svg"
  3860. }
  3861. },
  3862. },
  3863. [
  3864. {
  3865. name: "Macro",
  3866. height: math.unit(200, "feet"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Megamacro",
  3871. height: math.unit(100, "miles")
  3872. },
  3873. ]
  3874. )
  3875. )
  3876. characterMakers.push(() => makeCharacter(
  3877. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3878. {
  3879. front: {
  3880. height: math.unit(13, "feet"),
  3881. weight: math.unit(1036.80, "kg"),
  3882. name: "Front",
  3883. image: {
  3884. source: "./media/characters/natasha/front.svg",
  3885. extra: 1301/1210,
  3886. bottom: 39/1340
  3887. }
  3888. },
  3889. back: {
  3890. height: math.unit(13, "feet"),
  3891. weight: math.unit(1036.80, "kg"),
  3892. name: "Back",
  3893. image: {
  3894. source: "./media/characters/natasha/back.svg",
  3895. extra: 1342/1252,
  3896. bottom: 20/1362
  3897. }
  3898. },
  3899. head: {
  3900. height: math.unit(3.48, "feet"),
  3901. name: "Head",
  3902. image: {
  3903. source: "./media/characters/natasha/head.svg"
  3904. }
  3905. },
  3906. jaws: {
  3907. height: math.unit(3.52, "feet"),
  3908. name: "Jaws",
  3909. image: {
  3910. source: "./media/characters/natasha/jaws.svg"
  3911. }
  3912. },
  3913. paws: {
  3914. height: math.unit(2.7, "feet"),
  3915. name: "Paws",
  3916. image: {
  3917. source: "./media/characters/natasha/paws.svg"
  3918. }
  3919. },
  3920. collar: {
  3921. height: math.unit(0.89, "feet"),
  3922. name: "Collar",
  3923. image: {
  3924. source: "./media/characters/natasha/collar.svg"
  3925. }
  3926. },
  3927. gauge: {
  3928. height: math.unit(0.36, "feet"),
  3929. name: "Gauge",
  3930. image: {
  3931. source: "./media/characters/natasha/gauge.svg"
  3932. }
  3933. },
  3934. },
  3935. [
  3936. {
  3937. name: "Shortstack",
  3938. height: math.unit(3, "feet")
  3939. },
  3940. {
  3941. name: "Normal",
  3942. height: math.unit(13, "feet"),
  3943. default: true
  3944. },
  3945. {
  3946. name: "Macro",
  3947. height: math.unit(100, "feet")
  3948. },
  3949. {
  3950. name: "Macro+",
  3951. height: math.unit(260, "feet")
  3952. },
  3953. {
  3954. name: "Macro++",
  3955. height: math.unit(1, "mile")
  3956. },
  3957. ]
  3958. ))
  3959. characterMakers.push(() => makeCharacter(
  3960. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3961. {
  3962. front: {
  3963. height: math.unit(6, "feet"),
  3964. weight: math.unit(75, "kg"),
  3965. name: "Front",
  3966. image: {
  3967. source: "./media/characters/malik/front.svg",
  3968. extra: 1750/1561,
  3969. bottom: 80/1830
  3970. },
  3971. extraAttributes: {
  3972. "toeSize": {
  3973. name: "Toe Size",
  3974. power: 2,
  3975. type: "area",
  3976. base: math.unit(0.0159, "m^2")
  3977. },
  3978. "pawSize": {
  3979. name: "Paw Size",
  3980. power: 2,
  3981. type: "area",
  3982. base: math.unit(0.09834, "m^2")
  3983. },
  3984. }
  3985. },
  3986. side: {
  3987. height: math.unit(6, "feet"),
  3988. weight: math.unit(75, "kg"),
  3989. name: "Side",
  3990. image: {
  3991. source: "./media/characters/malik/side.svg",
  3992. extra: 1802/1685,
  3993. bottom: 42/1844
  3994. },
  3995. extraAttributes: {
  3996. "toeSize": {
  3997. name: "Toe Size",
  3998. power: 2,
  3999. type: "area",
  4000. base: math.unit(0.0159, "m^2")
  4001. },
  4002. "pawSize": {
  4003. name: "Paw Size",
  4004. power: 2,
  4005. type: "area",
  4006. base: math.unit(0.09834, "m^2")
  4007. },
  4008. }
  4009. },
  4010. back: {
  4011. height: math.unit(6, "feet"),
  4012. weight: math.unit(75, "kg"),
  4013. name: "Back",
  4014. image: {
  4015. source: "./media/characters/malik/back.svg",
  4016. extra: 1803/1607,
  4017. bottom: 33/1836
  4018. },
  4019. extraAttributes: {
  4020. "toeSize": {
  4021. name: "Toe Size",
  4022. power: 2,
  4023. type: "area",
  4024. base: math.unit(0.0159, "m^2")
  4025. },
  4026. "pawSize": {
  4027. name: "Paw Size",
  4028. power: 2,
  4029. type: "area",
  4030. base: math.unit(0.09834, "m^2")
  4031. },
  4032. }
  4033. },
  4034. },
  4035. [
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(156, "feet"),
  4039. default: true
  4040. },
  4041. {
  4042. name: "Macro+",
  4043. height: math.unit(1188, "feet")
  4044. },
  4045. ]
  4046. ))
  4047. characterMakers.push(() => makeCharacter(
  4048. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4049. {
  4050. front: {
  4051. height: math.unit(6, "feet"),
  4052. weight: math.unit(75, "kg"),
  4053. name: "Front",
  4054. image: {
  4055. source: "./media/characters/sefer/front.svg",
  4056. extra: 848 / 659,
  4057. bottom: 28.3 / 876.442
  4058. }
  4059. },
  4060. back: {
  4061. height: math.unit(6, "feet"),
  4062. weight: math.unit(75, "kg"),
  4063. name: "Back",
  4064. image: {
  4065. source: "./media/characters/sefer/back.svg",
  4066. extra: 864 / 695,
  4067. bottom: 10 / 871
  4068. }
  4069. },
  4070. frontDressed: {
  4071. height: math.unit(6, "feet"),
  4072. weight: math.unit(75, "kg"),
  4073. name: "Dressed",
  4074. image: {
  4075. source: "./media/characters/sefer/dressed.svg",
  4076. extra: 839 / 653,
  4077. bottom: 37.6 / 878
  4078. }
  4079. },
  4080. },
  4081. [
  4082. {
  4083. name: "Normal",
  4084. height: math.unit(6, "feet"),
  4085. default: true
  4086. },
  4087. {
  4088. name: "Big",
  4089. height: math.unit(8, "meters")
  4090. },
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4095. {
  4096. body: {
  4097. height: math.unit(2.2428, "meter"),
  4098. weight: math.unit(124.738, "kg"),
  4099. name: "Body",
  4100. image: {
  4101. extra: 1225 / 1050,
  4102. source: "./media/characters/north/front.svg"
  4103. }
  4104. }
  4105. },
  4106. [
  4107. {
  4108. name: "Micro",
  4109. height: math.unit(4, "inches")
  4110. },
  4111. {
  4112. name: "Macro",
  4113. height: math.unit(63, "meters")
  4114. },
  4115. {
  4116. name: "Megamacro",
  4117. height: math.unit(101, "miles"),
  4118. default: true
  4119. }
  4120. ]
  4121. ))
  4122. characterMakers.push(() => makeCharacter(
  4123. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4124. {
  4125. angled: {
  4126. height: math.unit(4, "meter"),
  4127. weight: math.unit(150, "kg"),
  4128. name: "Angled",
  4129. image: {
  4130. source: "./media/characters/talan/angled-sfw.svg",
  4131. bottom: 29 / 3734
  4132. }
  4133. },
  4134. angledNsfw: {
  4135. height: math.unit(4, "meter"),
  4136. weight: math.unit(150, "kg"),
  4137. name: "Angled (NSFW)",
  4138. image: {
  4139. source: "./media/characters/talan/angled-nsfw.svg",
  4140. bottom: 29 / 3734
  4141. }
  4142. },
  4143. frontNsfw: {
  4144. height: math.unit(4, "meter"),
  4145. weight: math.unit(150, "kg"),
  4146. name: "Front (NSFW)",
  4147. image: {
  4148. source: "./media/characters/talan/front-nsfw.svg",
  4149. bottom: 29 / 3734
  4150. }
  4151. },
  4152. sideNsfw: {
  4153. height: math.unit(4, "meter"),
  4154. weight: math.unit(150, "kg"),
  4155. name: "Side (NSFW)",
  4156. image: {
  4157. source: "./media/characters/talan/side-nsfw.svg",
  4158. bottom: 29 / 3734
  4159. }
  4160. },
  4161. back: {
  4162. height: math.unit(4, "meter"),
  4163. weight: math.unit(150, "kg"),
  4164. name: "Back",
  4165. image: {
  4166. source: "./media/characters/talan/back.svg"
  4167. }
  4168. },
  4169. dickBottom: {
  4170. height: math.unit(0.621, "meter"),
  4171. name: "Dick (Bottom)",
  4172. image: {
  4173. source: "./media/characters/talan/dick-bottom.svg"
  4174. }
  4175. },
  4176. dickTop: {
  4177. height: math.unit(0.621, "meter"),
  4178. name: "Dick (Top)",
  4179. image: {
  4180. source: "./media/characters/talan/dick-top.svg"
  4181. }
  4182. },
  4183. dickSide: {
  4184. height: math.unit(0.305, "meter"),
  4185. name: "Dick (Side)",
  4186. image: {
  4187. source: "./media/characters/talan/dick-side.svg"
  4188. }
  4189. },
  4190. dickFront: {
  4191. height: math.unit(0.305, "meter"),
  4192. name: "Dick (Front)",
  4193. image: {
  4194. source: "./media/characters/talan/dick-front.svg"
  4195. }
  4196. },
  4197. },
  4198. [
  4199. {
  4200. name: "Normal",
  4201. height: math.unit(4, "meters")
  4202. },
  4203. {
  4204. name: "Macro",
  4205. height: math.unit(100, "meters")
  4206. },
  4207. {
  4208. name: "Megamacro",
  4209. height: math.unit(2, "miles"),
  4210. default: true
  4211. },
  4212. {
  4213. name: "Gigamacro",
  4214. height: math.unit(5000, "miles")
  4215. },
  4216. {
  4217. name: "Teramacro",
  4218. height: math.unit(100, "parsecs")
  4219. }
  4220. ]
  4221. ))
  4222. characterMakers.push(() => makeCharacter(
  4223. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4224. {
  4225. front: {
  4226. height: math.unit(2, "meter"),
  4227. weight: math.unit(90, "kg"),
  4228. name: "Front",
  4229. image: {
  4230. source: "./media/characters/gael'rathus/front.svg"
  4231. }
  4232. },
  4233. frontAlt: {
  4234. height: math.unit(2, "meter"),
  4235. weight: math.unit(90, "kg"),
  4236. name: "Front (alt)",
  4237. image: {
  4238. source: "./media/characters/gael'rathus/front-alt.svg"
  4239. }
  4240. },
  4241. frontAlt2: {
  4242. height: math.unit(2, "meter"),
  4243. weight: math.unit(90, "kg"),
  4244. name: "Front (alt 2)",
  4245. image: {
  4246. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4247. }
  4248. }
  4249. },
  4250. [
  4251. {
  4252. name: "Normal",
  4253. height: math.unit(9, "feet"),
  4254. default: true
  4255. },
  4256. {
  4257. name: "Large",
  4258. height: math.unit(25, "feet")
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(0.25, "miles")
  4263. },
  4264. {
  4265. name: "Megamacro",
  4266. height: math.unit(10, "miles")
  4267. }
  4268. ]
  4269. ))
  4270. characterMakers.push(() => makeCharacter(
  4271. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4272. {
  4273. side: {
  4274. height: math.unit(2, "meter"),
  4275. weight: math.unit(140, "kg"),
  4276. name: "Side",
  4277. image: {
  4278. source: "./media/characters/sosha/side.svg",
  4279. extra: 1170/1006,
  4280. bottom: 94/1264
  4281. }
  4282. },
  4283. maw: {
  4284. height: math.unit(2.87, "feet"),
  4285. name: "Maw",
  4286. image: {
  4287. source: "./media/characters/sosha/maw.svg",
  4288. extra: 966/865,
  4289. bottom: 0/966
  4290. }
  4291. },
  4292. cooch: {
  4293. height: math.unit(5.6, "feet"),
  4294. name: "Cooch",
  4295. image: {
  4296. source: "./media/characters/sosha/cooch.svg"
  4297. }
  4298. },
  4299. },
  4300. [
  4301. {
  4302. name: "Normal",
  4303. height: math.unit(12, "feet"),
  4304. default: true
  4305. }
  4306. ]
  4307. ))
  4308. characterMakers.push(() => makeCharacter(
  4309. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4310. {
  4311. side: {
  4312. height: math.unit(5 + 5 / 12, "feet"),
  4313. weight: math.unit(170, "kg"),
  4314. name: "Side",
  4315. image: {
  4316. source: "./media/characters/runnola/side.svg",
  4317. extra: 741 / 448,
  4318. bottom: 0.05
  4319. }
  4320. },
  4321. },
  4322. [
  4323. {
  4324. name: "Small",
  4325. height: math.unit(3, "feet")
  4326. },
  4327. {
  4328. name: "Normal",
  4329. height: math.unit(5 + 5 / 12, "feet"),
  4330. default: true
  4331. },
  4332. {
  4333. name: "Big",
  4334. height: math.unit(10, "feet")
  4335. },
  4336. ]
  4337. ))
  4338. characterMakers.push(() => makeCharacter(
  4339. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4340. {
  4341. front: {
  4342. height: math.unit(2, "meter"),
  4343. weight: math.unit(50, "kg"),
  4344. name: "Front",
  4345. image: {
  4346. source: "./media/characters/kurribird/front.svg",
  4347. bottom: 0.015
  4348. }
  4349. },
  4350. frontAlt: {
  4351. height: math.unit(1.5, "meter"),
  4352. weight: math.unit(50, "kg"),
  4353. name: "Front (Alt)",
  4354. image: {
  4355. source: "./media/characters/kurribird/front-alt.svg",
  4356. extra: 1.45
  4357. }
  4358. },
  4359. },
  4360. [
  4361. {
  4362. name: "Normal",
  4363. height: math.unit(7, "feet")
  4364. },
  4365. {
  4366. name: "Big",
  4367. height: math.unit(12, "feet"),
  4368. default: true
  4369. },
  4370. {
  4371. name: "Macro",
  4372. height: math.unit(1500, "feet")
  4373. },
  4374. {
  4375. name: "Megamacro",
  4376. height: math.unit(2, "miles")
  4377. }
  4378. ]
  4379. ))
  4380. characterMakers.push(() => makeCharacter(
  4381. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4382. {
  4383. front: {
  4384. height: math.unit(2, "meter"),
  4385. weight: math.unit(80, "kg"),
  4386. name: "Front",
  4387. image: {
  4388. source: "./media/characters/elbial/front.svg",
  4389. extra: 1643 / 1556,
  4390. bottom: 60.2 / 1696
  4391. }
  4392. },
  4393. side: {
  4394. height: math.unit(2, "meter"),
  4395. weight: math.unit(80, "kg"),
  4396. name: "Side",
  4397. image: {
  4398. source: "./media/characters/elbial/side.svg",
  4399. extra: 1601/1528,
  4400. bottom: 97/1698
  4401. }
  4402. },
  4403. back: {
  4404. height: math.unit(2, "meter"),
  4405. weight: math.unit(80, "kg"),
  4406. name: "Back",
  4407. image: {
  4408. source: "./media/characters/elbial/back.svg",
  4409. extra: 1653/1569,
  4410. bottom: 20/1673
  4411. }
  4412. },
  4413. frontDressed: {
  4414. height: math.unit(2, "meter"),
  4415. weight: math.unit(80, "kg"),
  4416. name: "Front (Dressed)",
  4417. image: {
  4418. source: "./media/characters/elbial/front-dressed.svg",
  4419. extra: 1638/1569,
  4420. bottom: 70/1708
  4421. }
  4422. },
  4423. genitals: {
  4424. height: math.unit(2 / 3.367, "meter"),
  4425. name: "Genitals",
  4426. image: {
  4427. source: "./media/characters/elbial/genitals.svg"
  4428. }
  4429. },
  4430. },
  4431. [
  4432. {
  4433. name: "Large",
  4434. height: math.unit(100, "feet")
  4435. },
  4436. {
  4437. name: "Macro",
  4438. height: math.unit(500, "feet"),
  4439. default: true
  4440. },
  4441. {
  4442. name: "Megamacro",
  4443. height: math.unit(10, "miles")
  4444. },
  4445. {
  4446. name: "Gigamacro",
  4447. height: math.unit(25000, "miles")
  4448. },
  4449. {
  4450. name: "Full-Size",
  4451. height: math.unit(8000000, "gigaparsecs")
  4452. }
  4453. ]
  4454. ))
  4455. characterMakers.push(() => makeCharacter(
  4456. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4457. {
  4458. front: {
  4459. height: math.unit(2, "meter"),
  4460. weight: math.unit(60, "kg"),
  4461. name: "Front",
  4462. image: {
  4463. source: "./media/characters/noah/front.svg",
  4464. extra: 1383/1313,
  4465. bottom: 104/1487
  4466. }
  4467. },
  4468. hand: {
  4469. height: math.unit(0.6, "feet"),
  4470. name: "Hand",
  4471. image: {
  4472. source: "./media/characters/noah/hand.svg"
  4473. }
  4474. },
  4475. talons: {
  4476. height: math.unit(1.385, "feet"),
  4477. name: "Talons",
  4478. image: {
  4479. source: "./media/characters/noah/talons.svg"
  4480. }
  4481. },
  4482. beak: {
  4483. height: math.unit(0.43, "feet"),
  4484. name: "Beak",
  4485. image: {
  4486. source: "./media/characters/noah/beak.svg"
  4487. }
  4488. },
  4489. collar: {
  4490. height: math.unit(0.88, "feet"),
  4491. name: "Collar",
  4492. image: {
  4493. source: "./media/characters/noah/collar.svg"
  4494. }
  4495. },
  4496. eyeNarrow: {
  4497. height: math.unit(0.18, "feet"),
  4498. name: "Eye (Narrow)",
  4499. image: {
  4500. source: "./media/characters/noah/eye-narrow.svg"
  4501. }
  4502. },
  4503. eyeNormal: {
  4504. height: math.unit(0.18, "feet"),
  4505. name: "Eye (Normal)",
  4506. image: {
  4507. source: "./media/characters/noah/eye-normal.svg"
  4508. }
  4509. },
  4510. eyeWide: {
  4511. height: math.unit(0.18, "feet"),
  4512. name: "Eye (Wide)",
  4513. image: {
  4514. source: "./media/characters/noah/eye-wide.svg"
  4515. }
  4516. },
  4517. ear: {
  4518. height: math.unit(0.64, "feet"),
  4519. name: "Ear",
  4520. image: {
  4521. source: "./media/characters/noah/ear.svg"
  4522. }
  4523. },
  4524. },
  4525. [
  4526. {
  4527. name: "Large",
  4528. height: math.unit(50, "feet")
  4529. },
  4530. {
  4531. name: "Macro",
  4532. height: math.unit(750, "feet"),
  4533. default: true
  4534. },
  4535. {
  4536. name: "Megamacro",
  4537. height: math.unit(50, "miles")
  4538. },
  4539. {
  4540. name: "Gigamacro",
  4541. height: math.unit(100000, "miles")
  4542. },
  4543. {
  4544. name: "Full-Size",
  4545. height: math.unit(3000000000, "miles")
  4546. }
  4547. ]
  4548. ))
  4549. characterMakers.push(() => makeCharacter(
  4550. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4551. {
  4552. front: {
  4553. height: math.unit(2, "meter"),
  4554. weight: math.unit(80, "kg"),
  4555. name: "Front",
  4556. image: {
  4557. source: "./media/characters/natalya/front.svg"
  4558. }
  4559. },
  4560. back: {
  4561. height: math.unit(2, "meter"),
  4562. weight: math.unit(80, "kg"),
  4563. name: "Back",
  4564. image: {
  4565. source: "./media/characters/natalya/back.svg"
  4566. }
  4567. }
  4568. },
  4569. [
  4570. {
  4571. name: "Normal",
  4572. height: math.unit(150, "feet"),
  4573. default: true
  4574. },
  4575. {
  4576. name: "Megamacro",
  4577. height: math.unit(5, "miles")
  4578. },
  4579. {
  4580. name: "Full-Size",
  4581. height: math.unit(600, "kiloparsecs")
  4582. }
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4587. {
  4588. front: {
  4589. height: math.unit(2, "meter"),
  4590. weight: math.unit(50, "kg"),
  4591. name: "Front",
  4592. image: {
  4593. source: "./media/characters/erestrebah/front.svg",
  4594. extra: 1262/1162,
  4595. bottom: 96/1358
  4596. }
  4597. },
  4598. back: {
  4599. height: math.unit(2, "meter"),
  4600. weight: math.unit(50, "kg"),
  4601. name: "Back",
  4602. image: {
  4603. source: "./media/characters/erestrebah/back.svg",
  4604. extra: 1257/1139,
  4605. bottom: 13/1270
  4606. }
  4607. },
  4608. wing: {
  4609. height: math.unit(2, "meter"),
  4610. weight: math.unit(50, "kg"),
  4611. name: "Wing",
  4612. image: {
  4613. source: "./media/characters/erestrebah/wing.svg",
  4614. extra: 1262/1162,
  4615. bottom: 96/1358
  4616. }
  4617. },
  4618. mouth: {
  4619. height: math.unit(0.39, "feet"),
  4620. name: "Mouth",
  4621. image: {
  4622. source: "./media/characters/erestrebah/mouth.svg"
  4623. }
  4624. }
  4625. },
  4626. [
  4627. {
  4628. name: "Normal",
  4629. height: math.unit(10, "feet")
  4630. },
  4631. {
  4632. name: "Large",
  4633. height: math.unit(50, "feet"),
  4634. default: true
  4635. },
  4636. {
  4637. name: "Macro",
  4638. height: math.unit(300, "feet")
  4639. },
  4640. {
  4641. name: "Macro+",
  4642. height: math.unit(750, "feet")
  4643. },
  4644. {
  4645. name: "Megamacro",
  4646. height: math.unit(3, "miles")
  4647. }
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4652. {
  4653. front: {
  4654. height: math.unit(2, "meter"),
  4655. weight: math.unit(80, "kg"),
  4656. name: "Front",
  4657. image: {
  4658. source: "./media/characters/jennifer/front.svg",
  4659. bottom: 0.11,
  4660. extra: 1.16
  4661. }
  4662. },
  4663. frontAlt: {
  4664. height: math.unit(2, "meter"),
  4665. weight: math.unit(80, "kg"),
  4666. name: "Front (Alt)",
  4667. image: {
  4668. source: "./media/characters/jennifer/front-alt.svg"
  4669. }
  4670. }
  4671. },
  4672. [
  4673. {
  4674. name: "Canon Height",
  4675. height: math.unit(120, "feet"),
  4676. default: true
  4677. },
  4678. {
  4679. name: "Macro+",
  4680. height: math.unit(300, "feet")
  4681. },
  4682. {
  4683. name: "Megamacro",
  4684. height: math.unit(20000, "feet")
  4685. }
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4690. {
  4691. front: {
  4692. height: math.unit(2, "meter"),
  4693. weight: math.unit(50, "kg"),
  4694. name: "Front",
  4695. image: {
  4696. source: "./media/characters/kalista/front.svg",
  4697. extra: 1314/1145,
  4698. bottom: 101/1415
  4699. }
  4700. },
  4701. back: {
  4702. height: math.unit(2, "meter"),
  4703. weight: math.unit(50, "kg"),
  4704. name: "Back",
  4705. image: {
  4706. source: "./media/characters/kalista/back.svg",
  4707. extra: 1366 / 1156,
  4708. bottom: 33.9 / 1362.78
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Uncomfortably Small",
  4715. height: math.unit(10, "feet")
  4716. },
  4717. {
  4718. name: "Small",
  4719. height: math.unit(30, "feet")
  4720. },
  4721. {
  4722. name: "Macro",
  4723. height: math.unit(100, "feet"),
  4724. default: true
  4725. },
  4726. {
  4727. name: "Macro+",
  4728. height: math.unit(2000, "feet")
  4729. },
  4730. {
  4731. name: "True Form",
  4732. height: math.unit(8924, "miles")
  4733. }
  4734. ]
  4735. ))
  4736. characterMakers.push(() => makeCharacter(
  4737. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4738. {
  4739. front: {
  4740. height: math.unit(2, "meter"),
  4741. weight: math.unit(120, "kg"),
  4742. name: "Front",
  4743. image: {
  4744. source: "./media/characters/ggv/front.svg"
  4745. }
  4746. },
  4747. side: {
  4748. height: math.unit(2, "meter"),
  4749. weight: math.unit(120, "kg"),
  4750. name: "Side",
  4751. image: {
  4752. source: "./media/characters/ggv/side.svg"
  4753. }
  4754. }
  4755. },
  4756. [
  4757. {
  4758. name: "Extremely Puny",
  4759. height: math.unit(9 + 5 / 12, "feet")
  4760. },
  4761. {
  4762. name: "Horribly Small",
  4763. height: math.unit(47.7, "miles"),
  4764. default: true
  4765. },
  4766. {
  4767. name: "Reasonably Sized",
  4768. height: math.unit(25000, "parsecs")
  4769. },
  4770. {
  4771. name: "Slightly Uncompressed",
  4772. height: math.unit(7.77e31, "parsecs")
  4773. },
  4774. {
  4775. name: "Omniversal",
  4776. height: math.unit(1e300, "meters")
  4777. },
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(2, "meter"),
  4785. weight: math.unit(75, "lb"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/napalm/front.svg"
  4789. }
  4790. },
  4791. back: {
  4792. height: math.unit(2, "meter"),
  4793. weight: math.unit(75, "lb"),
  4794. name: "Back",
  4795. image: {
  4796. source: "./media/characters/napalm/back.svg"
  4797. }
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Standard",
  4803. height: math.unit(55, "feet"),
  4804. default: true
  4805. }
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(7 + 5 / 6, "feet"),
  4813. weight: math.unit(325, "lb"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/asana/front.svg",
  4817. extra: 1133 / 1060,
  4818. bottom: 15.2 / 1148.6
  4819. }
  4820. },
  4821. back: {
  4822. height: math.unit(7 + 5 / 6, "feet"),
  4823. weight: math.unit(325, "lb"),
  4824. name: "Back",
  4825. image: {
  4826. source: "./media/characters/asana/back.svg",
  4827. extra: 1114 / 1043,
  4828. bottom: 5 / 1120
  4829. }
  4830. },
  4831. dressedDark: {
  4832. height: math.unit(7 + 5 / 6, "feet"),
  4833. weight: math.unit(325, "lb"),
  4834. name: "Dressed (Dark)",
  4835. image: {
  4836. source: "./media/characters/asana/dressed-dark.svg",
  4837. extra: 1133 / 1060,
  4838. bottom: 15.2 / 1148.6
  4839. }
  4840. },
  4841. dressedLight: {
  4842. height: math.unit(7 + 5 / 6, "feet"),
  4843. weight: math.unit(325, "lb"),
  4844. name: "Dressed (Light)",
  4845. image: {
  4846. source: "./media/characters/asana/dressed-light.svg",
  4847. extra: 1133 / 1060,
  4848. bottom: 15.2 / 1148.6
  4849. }
  4850. },
  4851. },
  4852. [
  4853. {
  4854. name: "Standard",
  4855. height: math.unit(7 + 5 / 6, "feet"),
  4856. default: true
  4857. },
  4858. {
  4859. name: "Large",
  4860. height: math.unit(10, "meters")
  4861. },
  4862. {
  4863. name: "Macro",
  4864. height: math.unit(2500, "meters")
  4865. },
  4866. {
  4867. name: "Megamacro",
  4868. height: math.unit(5e6, "meters")
  4869. },
  4870. {
  4871. name: "Examacro",
  4872. height: math.unit(5e12, "lightyears")
  4873. },
  4874. {
  4875. name: "Max Size",
  4876. height: math.unit(1e31, "lightyears")
  4877. }
  4878. ]
  4879. ))
  4880. characterMakers.push(() => makeCharacter(
  4881. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4882. {
  4883. front: {
  4884. height: math.unit(2, "meter"),
  4885. weight: math.unit(60, "kg"),
  4886. name: "Front",
  4887. image: {
  4888. source: "./media/characters/ebony/front.svg",
  4889. bottom: 0.03,
  4890. extra: 1045 / 810 + 0.03
  4891. }
  4892. },
  4893. side: {
  4894. height: math.unit(2, "meter"),
  4895. weight: math.unit(60, "kg"),
  4896. name: "Side",
  4897. image: {
  4898. source: "./media/characters/ebony/side.svg",
  4899. bottom: 0.03,
  4900. extra: 1045 / 810 + 0.03
  4901. }
  4902. },
  4903. back: {
  4904. height: math.unit(2, "meter"),
  4905. weight: math.unit(60, "kg"),
  4906. name: "Back",
  4907. image: {
  4908. source: "./media/characters/ebony/back.svg",
  4909. bottom: 0.01,
  4910. extra: 1045 / 810 + 0.01
  4911. }
  4912. },
  4913. },
  4914. [
  4915. // TODO check why I did this lol
  4916. {
  4917. name: "Standard",
  4918. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4919. default: true
  4920. },
  4921. {
  4922. name: "Macro",
  4923. height: math.unit(200, "feet")
  4924. },
  4925. {
  4926. name: "Gigamacro",
  4927. height: math.unit(13000, "km")
  4928. }
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4933. {
  4934. front: {
  4935. height: math.unit(6, "feet"),
  4936. weight: math.unit(175, "lb"),
  4937. name: "Front",
  4938. image: {
  4939. source: "./media/characters/mountain/front.svg",
  4940. extra: 972 / 955,
  4941. bottom: 64 / 1036.6
  4942. }
  4943. },
  4944. back: {
  4945. height: math.unit(6, "feet"),
  4946. weight: math.unit(175, "lb"),
  4947. name: "Back",
  4948. image: {
  4949. source: "./media/characters/mountain/back.svg",
  4950. extra: 970 / 950,
  4951. bottom: 28.25 / 999
  4952. }
  4953. },
  4954. },
  4955. [
  4956. {
  4957. name: "Large",
  4958. height: math.unit(20, "meters")
  4959. },
  4960. {
  4961. name: "Macro",
  4962. height: math.unit(300, "meters")
  4963. },
  4964. {
  4965. name: "Gigamacro",
  4966. height: math.unit(10000, "km"),
  4967. default: true
  4968. },
  4969. {
  4970. name: "Examacro",
  4971. height: math.unit(10e9, "lightyears")
  4972. }
  4973. ]
  4974. ))
  4975. characterMakers.push(() => makeCharacter(
  4976. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4977. {
  4978. front: {
  4979. height: math.unit(8, "feet"),
  4980. weight: math.unit(500, "lb"),
  4981. name: "Front",
  4982. image: {
  4983. source: "./media/characters/rick/front.svg"
  4984. }
  4985. }
  4986. },
  4987. [
  4988. {
  4989. name: "Normal",
  4990. height: math.unit(8, "feet"),
  4991. default: true
  4992. },
  4993. {
  4994. name: "Macro",
  4995. height: math.unit(5, "km")
  4996. }
  4997. ]
  4998. ))
  4999. characterMakers.push(() => makeCharacter(
  5000. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5001. {
  5002. front: {
  5003. height: math.unit(8, "feet"),
  5004. weight: math.unit(120, "lb"),
  5005. name: "Front",
  5006. image: {
  5007. source: "./media/characters/ona/front.svg"
  5008. }
  5009. },
  5010. frontAlt: {
  5011. height: math.unit(8, "feet"),
  5012. weight: math.unit(120, "lb"),
  5013. name: "Front (Alt)",
  5014. image: {
  5015. source: "./media/characters/ona/front-alt.svg"
  5016. }
  5017. },
  5018. back: {
  5019. height: math.unit(8, "feet"),
  5020. weight: math.unit(120, "lb"),
  5021. name: "Back",
  5022. image: {
  5023. source: "./media/characters/ona/back.svg"
  5024. }
  5025. },
  5026. foot: {
  5027. height: math.unit(1.1, "feet"),
  5028. name: "Foot",
  5029. image: {
  5030. source: "./media/characters/ona/foot.svg"
  5031. }
  5032. }
  5033. },
  5034. [
  5035. {
  5036. name: "Megamacro",
  5037. height: math.unit(70, "km"),
  5038. default: true
  5039. },
  5040. {
  5041. name: "Gigamacro",
  5042. height: math.unit(681818, "miles")
  5043. },
  5044. {
  5045. name: "Examacro",
  5046. height: math.unit(3800000, "lightyears")
  5047. },
  5048. ]
  5049. ))
  5050. characterMakers.push(() => makeCharacter(
  5051. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5052. {
  5053. front: {
  5054. height: math.unit(12, "feet"),
  5055. weight: math.unit(3000, "lb"),
  5056. name: "Front",
  5057. image: {
  5058. source: "./media/characters/mech/front.svg",
  5059. extra: 2900 / 2770,
  5060. bottom: 110 / 3010
  5061. }
  5062. },
  5063. back: {
  5064. height: math.unit(12, "feet"),
  5065. weight: math.unit(3000, "lb"),
  5066. name: "Back",
  5067. image: {
  5068. source: "./media/characters/mech/back.svg",
  5069. extra: 3011 / 2890,
  5070. bottom: 94 / 3105
  5071. }
  5072. },
  5073. maw: {
  5074. height: math.unit(3.07, "feet"),
  5075. name: "Maw",
  5076. image: {
  5077. source: "./media/characters/mech/maw.svg"
  5078. }
  5079. },
  5080. head: {
  5081. height: math.unit(3.07, "feet"),
  5082. name: "Head",
  5083. image: {
  5084. source: "./media/characters/mech/head.svg"
  5085. }
  5086. },
  5087. dick: {
  5088. height: math.unit(1.43, "feet"),
  5089. name: "Dick",
  5090. image: {
  5091. source: "./media/characters/mech/dick.svg"
  5092. }
  5093. },
  5094. },
  5095. [
  5096. {
  5097. name: "Normal",
  5098. height: math.unit(12, "feet")
  5099. },
  5100. {
  5101. name: "Macro",
  5102. height: math.unit(300, "feet"),
  5103. default: true
  5104. },
  5105. {
  5106. name: "Macro+",
  5107. height: math.unit(1500, "feet")
  5108. },
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5113. {
  5114. front: {
  5115. height: math.unit(1.3, "meter"),
  5116. weight: math.unit(30, "kg"),
  5117. name: "Front",
  5118. image: {
  5119. source: "./media/characters/gregory/front.svg",
  5120. }
  5121. }
  5122. },
  5123. [
  5124. {
  5125. name: "Normal",
  5126. height: math.unit(1.3, "meter"),
  5127. default: true
  5128. },
  5129. {
  5130. name: "Macro",
  5131. height: math.unit(20, "meter")
  5132. }
  5133. ]
  5134. ))
  5135. characterMakers.push(() => makeCharacter(
  5136. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5137. {
  5138. front: {
  5139. height: math.unit(2.8, "meter"),
  5140. weight: math.unit(200, "kg"),
  5141. name: "Front",
  5142. image: {
  5143. source: "./media/characters/elory/front.svg",
  5144. }
  5145. }
  5146. },
  5147. [
  5148. {
  5149. name: "Normal",
  5150. height: math.unit(2.8, "meter"),
  5151. default: true
  5152. },
  5153. {
  5154. name: "Macro",
  5155. height: math.unit(38, "meter")
  5156. }
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5161. {
  5162. front: {
  5163. height: math.unit(470, "feet"),
  5164. weight: math.unit(924, "tons"),
  5165. name: "Front",
  5166. image: {
  5167. source: "./media/characters/angelpatamon/front.svg",
  5168. }
  5169. }
  5170. },
  5171. [
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(470, "feet"),
  5175. default: true
  5176. },
  5177. {
  5178. name: "Deity Size I",
  5179. height: math.unit(28651.2, "km")
  5180. },
  5181. {
  5182. name: "Deity Size II",
  5183. height: math.unit(171907.2, "km")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5189. {
  5190. side: {
  5191. height: math.unit(7.2, "meter"),
  5192. weight: math.unit(8.2, "tons"),
  5193. name: "Side",
  5194. image: {
  5195. source: "./media/characters/cryae/side.svg",
  5196. extra: 3500 / 1500
  5197. }
  5198. }
  5199. },
  5200. [
  5201. {
  5202. name: "Normal",
  5203. height: math.unit(7.2, "meter"),
  5204. default: true
  5205. }
  5206. ]
  5207. ))
  5208. characterMakers.push(() => makeCharacter(
  5209. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5210. {
  5211. front: {
  5212. height: math.unit(6, "feet"),
  5213. weight: math.unit(175, "lb"),
  5214. name: "Front",
  5215. image: {
  5216. source: "./media/characters/xera/front.svg",
  5217. extra: 2377 / 1972,
  5218. bottom: 75.5 / 2452
  5219. }
  5220. },
  5221. side: {
  5222. height: math.unit(6, "feet"),
  5223. weight: math.unit(175, "lb"),
  5224. name: "Side",
  5225. image: {
  5226. source: "./media/characters/xera/side.svg",
  5227. extra: 2345 / 2019,
  5228. bottom: 39.7 / 2384
  5229. }
  5230. },
  5231. back: {
  5232. height: math.unit(6, "feet"),
  5233. weight: math.unit(175, "lb"),
  5234. name: "Back",
  5235. image: {
  5236. source: "./media/characters/xera/back.svg",
  5237. extra: 2095 / 1984,
  5238. bottom: 67 / 2166
  5239. }
  5240. },
  5241. },
  5242. [
  5243. {
  5244. name: "Small",
  5245. height: math.unit(10, "feet")
  5246. },
  5247. {
  5248. name: "Macro",
  5249. height: math.unit(500, "meters"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Macro+",
  5254. height: math.unit(10, "km")
  5255. },
  5256. {
  5257. name: "Gigamacro",
  5258. height: math.unit(25000, "km")
  5259. },
  5260. {
  5261. name: "Teramacro",
  5262. height: math.unit(3e6, "km")
  5263. }
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5268. {
  5269. front: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(175, "lb"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/nebula/front.svg",
  5275. extra: 2566 / 2362,
  5276. bottom: 81 / 2644
  5277. }
  5278. }
  5279. },
  5280. [
  5281. {
  5282. name: "Small",
  5283. height: math.unit(4.5, "meters")
  5284. },
  5285. {
  5286. name: "Macro",
  5287. height: math.unit(1500, "meters"),
  5288. default: true
  5289. },
  5290. {
  5291. name: "Megamacro",
  5292. height: math.unit(150, "km")
  5293. },
  5294. {
  5295. name: "Gigamacro",
  5296. height: math.unit(27000, "km")
  5297. }
  5298. ]
  5299. ))
  5300. characterMakers.push(() => makeCharacter(
  5301. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5302. {
  5303. front: {
  5304. height: math.unit(6, "feet"),
  5305. weight: math.unit(225, "lb"),
  5306. name: "Front",
  5307. image: {
  5308. source: "./media/characters/abysgar/front.svg",
  5309. extra: 1739/1614,
  5310. bottom: 71/1810
  5311. }
  5312. },
  5313. frontNsfw: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(225, "lb"),
  5316. name: "Front (NSFW)",
  5317. image: {
  5318. source: "./media/characters/abysgar/front-nsfw.svg",
  5319. extra: 1739/1614,
  5320. bottom: 71/1810
  5321. }
  5322. },
  5323. back: {
  5324. height: math.unit(4.6, "feet"),
  5325. weight: math.unit(225, "lb"),
  5326. name: "Back",
  5327. image: {
  5328. source: "./media/characters/abysgar/back.svg",
  5329. extra: 1384/1327,
  5330. bottom: 0/1384
  5331. }
  5332. },
  5333. head: {
  5334. height: math.unit(1.25, "feet"),
  5335. name: "Head",
  5336. image: {
  5337. source: "./media/characters/abysgar/head.svg",
  5338. extra: 669/569,
  5339. bottom: 0/669
  5340. }
  5341. },
  5342. },
  5343. [
  5344. {
  5345. name: "Small",
  5346. height: math.unit(4.5, "meters")
  5347. },
  5348. {
  5349. name: "Macro",
  5350. height: math.unit(1250, "meters"),
  5351. default: true
  5352. },
  5353. {
  5354. name: "Megamacro",
  5355. height: math.unit(125, "km")
  5356. },
  5357. {
  5358. name: "Gigamacro",
  5359. height: math.unit(26000, "km")
  5360. }
  5361. ]
  5362. ))
  5363. characterMakers.push(() => makeCharacter(
  5364. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5365. {
  5366. front: {
  5367. height: math.unit(6, "feet"),
  5368. weight: math.unit(180, "lb"),
  5369. name: "Front",
  5370. image: {
  5371. source: "./media/characters/yakuz/front.svg"
  5372. }
  5373. }
  5374. },
  5375. [
  5376. {
  5377. name: "Small",
  5378. height: math.unit(5, "meters")
  5379. },
  5380. {
  5381. name: "Macro",
  5382. height: math.unit(1500, "meters"),
  5383. default: true
  5384. },
  5385. {
  5386. name: "Megamacro",
  5387. height: math.unit(200, "km")
  5388. },
  5389. {
  5390. name: "Gigamacro",
  5391. height: math.unit(100000, "km")
  5392. }
  5393. ]
  5394. ))
  5395. characterMakers.push(() => makeCharacter(
  5396. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5397. {
  5398. front: {
  5399. height: math.unit(6, "feet"),
  5400. weight: math.unit(175, "lb"),
  5401. name: "Front",
  5402. image: {
  5403. source: "./media/characters/mirova/front.svg",
  5404. extra: 3334 / 3071,
  5405. bottom: 42 / 3375.6
  5406. }
  5407. }
  5408. },
  5409. [
  5410. {
  5411. name: "Small",
  5412. height: math.unit(5, "meters")
  5413. },
  5414. {
  5415. name: "Macro",
  5416. height: math.unit(900, "meters"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "Megamacro",
  5421. height: math.unit(135, "km")
  5422. },
  5423. {
  5424. name: "Gigamacro",
  5425. height: math.unit(20000, "km")
  5426. }
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5431. {
  5432. side: {
  5433. height: math.unit(28.35, "feet"),
  5434. weight: math.unit(99.75, "tons"),
  5435. name: "Side",
  5436. image: {
  5437. source: "./media/characters/asana-mech/side.svg",
  5438. extra: 923 / 699,
  5439. bottom: 50 / 975
  5440. }
  5441. },
  5442. chaingun: {
  5443. height: math.unit(7, "feet"),
  5444. weight: math.unit(2400, "lb"),
  5445. name: "Chaingun",
  5446. image: {
  5447. source: "./media/characters/asana-mech/chaingun.svg"
  5448. }
  5449. },
  5450. laser: {
  5451. height: math.unit(7.12, "feet"),
  5452. weight: math.unit(2000, "lb"),
  5453. name: "Laser",
  5454. image: {
  5455. source: "./media/characters/asana-mech/laser.svg"
  5456. }
  5457. },
  5458. },
  5459. [
  5460. {
  5461. name: "Normal",
  5462. height: math.unit(28.35, "feet"),
  5463. default: true
  5464. },
  5465. {
  5466. name: "Macro",
  5467. height: math.unit(2500, "feet")
  5468. },
  5469. {
  5470. name: "Megamacro",
  5471. height: math.unit(25, "miles")
  5472. },
  5473. {
  5474. name: "Examacro",
  5475. height: math.unit(6e8, "lightyears")
  5476. },
  5477. ]
  5478. ))
  5479. characterMakers.push(() => makeCharacter(
  5480. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5481. {
  5482. front: {
  5483. height: math.unit(5, "meters"),
  5484. weight: math.unit(1000, "kg"),
  5485. name: "Front",
  5486. image: {
  5487. source: "./media/characters/asche/front.svg",
  5488. extra: 1258 / 1190,
  5489. bottom: 47 / 1305
  5490. }
  5491. },
  5492. frontUnderwear: {
  5493. height: math.unit(5, "meters"),
  5494. weight: math.unit(1000, "kg"),
  5495. name: "Front (Underwear)",
  5496. image: {
  5497. source: "./media/characters/asche/front-underwear.svg",
  5498. extra: 1258 / 1190,
  5499. bottom: 47 / 1305
  5500. }
  5501. },
  5502. frontDressed: {
  5503. height: math.unit(5, "meters"),
  5504. weight: math.unit(1000, "kg"),
  5505. name: "Front (Dressed)",
  5506. image: {
  5507. source: "./media/characters/asche/front-dressed.svg",
  5508. extra: 1258 / 1190,
  5509. bottom: 47 / 1305
  5510. }
  5511. },
  5512. frontArmor: {
  5513. height: math.unit(5, "meters"),
  5514. weight: math.unit(1000, "kg"),
  5515. name: "Front (Armored)",
  5516. image: {
  5517. source: "./media/characters/asche/front-armored.svg",
  5518. extra: 1374 / 1308,
  5519. bottom: 23 / 1397
  5520. }
  5521. },
  5522. mp724: {
  5523. height: math.unit(0.96, "meters"),
  5524. weight: math.unit(38, "kg"),
  5525. name: "H&K MP724",
  5526. image: {
  5527. source: "./media/characters/asche/h&k-mp724.svg"
  5528. }
  5529. },
  5530. side: {
  5531. height: math.unit(5, "meters"),
  5532. weight: math.unit(1000, "kg"),
  5533. name: "Side",
  5534. image: {
  5535. source: "./media/characters/asche/side.svg",
  5536. extra: 1717 / 1609,
  5537. bottom: 0.005
  5538. }
  5539. },
  5540. back: {
  5541. height: math.unit(5, "meters"),
  5542. weight: math.unit(1000, "kg"),
  5543. name: "Back",
  5544. image: {
  5545. source: "./media/characters/asche/back.svg",
  5546. extra: 1570 / 1501
  5547. }
  5548. },
  5549. },
  5550. [
  5551. {
  5552. name: "DEFCON 5",
  5553. height: math.unit(5, "meters")
  5554. },
  5555. {
  5556. name: "DEFCON 4",
  5557. height: math.unit(500, "meters"),
  5558. default: true
  5559. },
  5560. {
  5561. name: "DEFCON 3",
  5562. height: math.unit(5, "km")
  5563. },
  5564. {
  5565. name: "DEFCON 2",
  5566. height: math.unit(500, "km")
  5567. },
  5568. {
  5569. name: "DEFCON 1",
  5570. height: math.unit(500000, "km")
  5571. },
  5572. {
  5573. name: "DEFCON 0",
  5574. height: math.unit(3, "gigaparsecs")
  5575. },
  5576. ]
  5577. ))
  5578. characterMakers.push(() => makeCharacter(
  5579. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5580. {
  5581. front: {
  5582. height: math.unit(7, "feet"),
  5583. weight: math.unit(92.7, "kg"),
  5584. name: "Front",
  5585. image: {
  5586. source: "./media/characters/gale/front.svg",
  5587. extra: 977/919,
  5588. bottom: 105/1082
  5589. }
  5590. },
  5591. side: {
  5592. height: math.unit(6.7, "feet"),
  5593. weight: math.unit(92.7, "kg"),
  5594. name: "Side",
  5595. image: {
  5596. source: "./media/characters/gale/side.svg",
  5597. extra: 978/922,
  5598. bottom: 140/1118
  5599. }
  5600. },
  5601. back: {
  5602. height: math.unit(7, "feet"),
  5603. weight: math.unit(92.7, "kg"),
  5604. name: "Back",
  5605. image: {
  5606. source: "./media/characters/gale/back.svg",
  5607. extra: 966/920,
  5608. bottom: 61/1027
  5609. }
  5610. },
  5611. maw: {
  5612. height: math.unit(2.23, "feet"),
  5613. name: "Maw",
  5614. image: {
  5615. source: "./media/characters/gale/maw.svg"
  5616. }
  5617. },
  5618. foot: {
  5619. height: math.unit(2.1, "feet"),
  5620. name: "Foot",
  5621. image: {
  5622. source: "./media/characters/gale/foot.svg"
  5623. }
  5624. },
  5625. },
  5626. [
  5627. {
  5628. name: "Normal",
  5629. height: math.unit(7, "feet")
  5630. },
  5631. {
  5632. name: "Macro",
  5633. height: math.unit(150, "feet"),
  5634. default: true
  5635. },
  5636. {
  5637. name: "Macro+",
  5638. height: math.unit(300, "feet")
  5639. },
  5640. ]
  5641. ))
  5642. characterMakers.push(() => makeCharacter(
  5643. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5644. {
  5645. front: {
  5646. height: math.unit(5 + 10/12, "feet"),
  5647. weight: math.unit(67, "kg"),
  5648. name: "Front",
  5649. image: {
  5650. source: "./media/characters/draylen/front.svg",
  5651. extra: 832/777,
  5652. bottom: 85/917
  5653. }
  5654. }
  5655. },
  5656. [
  5657. {
  5658. name: "Normal",
  5659. height: math.unit(5 + 10/12, "feet")
  5660. },
  5661. {
  5662. name: "Macro",
  5663. height: math.unit(150, "feet"),
  5664. default: true
  5665. }
  5666. ]
  5667. ))
  5668. characterMakers.push(() => makeCharacter(
  5669. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5670. {
  5671. front: {
  5672. height: math.unit(7 + 9 / 12, "feet"),
  5673. weight: math.unit(379, "lbs"),
  5674. name: "Front",
  5675. image: {
  5676. source: "./media/characters/chez/front.svg"
  5677. }
  5678. },
  5679. side: {
  5680. height: math.unit(7 + 9 / 12, "feet"),
  5681. weight: math.unit(379, "lbs"),
  5682. name: "Side",
  5683. image: {
  5684. source: "./media/characters/chez/side.svg"
  5685. }
  5686. }
  5687. },
  5688. [
  5689. {
  5690. name: "Normal",
  5691. height: math.unit(7 + 9 / 12, "feet"),
  5692. default: true
  5693. },
  5694. {
  5695. name: "God King",
  5696. height: math.unit(9750000, "meters")
  5697. }
  5698. ]
  5699. ))
  5700. characterMakers.push(() => makeCharacter(
  5701. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5702. {
  5703. front: {
  5704. height: math.unit(6, "feet"),
  5705. weight: math.unit(275, "lbs"),
  5706. name: "Front",
  5707. image: {
  5708. source: "./media/characters/kaylum/front.svg",
  5709. bottom: 0.01,
  5710. extra: 1166 / 1031
  5711. }
  5712. },
  5713. frontWingless: {
  5714. height: math.unit(6, "feet"),
  5715. weight: math.unit(275, "lbs"),
  5716. name: "Front (Wingless)",
  5717. image: {
  5718. source: "./media/characters/kaylum/front-wingless.svg",
  5719. bottom: 0.01,
  5720. extra: 1117 / 1031
  5721. }
  5722. }
  5723. },
  5724. [
  5725. {
  5726. name: "Normal",
  5727. height: math.unit(3.05, "meters")
  5728. },
  5729. {
  5730. name: "Master",
  5731. height: math.unit(5.5, "meters")
  5732. },
  5733. {
  5734. name: "Rampage",
  5735. height: math.unit(19, "meters")
  5736. },
  5737. {
  5738. name: "Macro Lite",
  5739. height: math.unit(37, "meters")
  5740. },
  5741. {
  5742. name: "Hyper Predator",
  5743. height: math.unit(61, "meters")
  5744. },
  5745. {
  5746. name: "Macro",
  5747. height: math.unit(138, "meters"),
  5748. default: true
  5749. }
  5750. ]
  5751. ))
  5752. characterMakers.push(() => makeCharacter(
  5753. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5754. {
  5755. front: {
  5756. height: math.unit(5 + 5 / 12, "feet"),
  5757. weight: math.unit(120, "lbs"),
  5758. name: "Front",
  5759. image: {
  5760. source: "./media/characters/geta/front.svg",
  5761. extra: 1003/933,
  5762. bottom: 21/1024
  5763. }
  5764. },
  5765. paw: {
  5766. height: math.unit(0.35, "feet"),
  5767. name: "Paw",
  5768. image: {
  5769. source: "./media/characters/geta/paw.svg"
  5770. }
  5771. },
  5772. },
  5773. [
  5774. {
  5775. name: "Micro",
  5776. height: math.unit(3, "inches"),
  5777. default: true
  5778. },
  5779. {
  5780. name: "Normal",
  5781. height: math.unit(5 + 5 / 12, "feet")
  5782. }
  5783. ]
  5784. ))
  5785. characterMakers.push(() => makeCharacter(
  5786. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5787. {
  5788. front: {
  5789. height: math.unit(6, "feet"),
  5790. weight: math.unit(300, "lbs"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/tyrnn/front.svg"
  5794. }
  5795. }
  5796. },
  5797. [
  5798. {
  5799. name: "Main Height",
  5800. height: math.unit(355, "feet"),
  5801. default: true
  5802. },
  5803. {
  5804. name: "Fave. Height",
  5805. height: math.unit(2400, "feet")
  5806. }
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5811. {
  5812. front: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(300, "lbs"),
  5815. name: "Front",
  5816. image: {
  5817. source: "./media/characters/appledectomy/front.svg"
  5818. }
  5819. }
  5820. },
  5821. [
  5822. {
  5823. name: "Macro",
  5824. height: math.unit(2500, "feet")
  5825. },
  5826. {
  5827. name: "Megamacro",
  5828. height: math.unit(50, "miles"),
  5829. default: true
  5830. },
  5831. {
  5832. name: "Gigamacro",
  5833. height: math.unit(5000, "miles")
  5834. },
  5835. {
  5836. name: "Teramacro",
  5837. height: math.unit(250000, "miles")
  5838. },
  5839. ]
  5840. ))
  5841. characterMakers.push(() => makeCharacter(
  5842. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5843. {
  5844. front: {
  5845. height: math.unit(6, "feet"),
  5846. weight: math.unit(200, "lbs"),
  5847. name: "Front",
  5848. image: {
  5849. source: "./media/characters/vulpes/front.svg",
  5850. extra: 573 / 543,
  5851. bottom: 0.033
  5852. }
  5853. },
  5854. side: {
  5855. height: math.unit(6, "feet"),
  5856. weight: math.unit(200, "lbs"),
  5857. name: "Side",
  5858. image: {
  5859. source: "./media/characters/vulpes/side.svg",
  5860. extra: 577 / 549,
  5861. bottom: 11 / 588
  5862. }
  5863. },
  5864. back: {
  5865. height: math.unit(6, "feet"),
  5866. weight: math.unit(200, "lbs"),
  5867. name: "Back",
  5868. image: {
  5869. source: "./media/characters/vulpes/back.svg",
  5870. extra: 573 / 549,
  5871. bottom: 20 / 593
  5872. }
  5873. },
  5874. feet: {
  5875. height: math.unit(1.276, "feet"),
  5876. name: "Feet",
  5877. image: {
  5878. source: "./media/characters/vulpes/feet.svg"
  5879. }
  5880. },
  5881. maw: {
  5882. height: math.unit(1.18, "feet"),
  5883. name: "Maw",
  5884. image: {
  5885. source: "./media/characters/vulpes/maw.svg"
  5886. }
  5887. },
  5888. },
  5889. [
  5890. {
  5891. name: "Micro",
  5892. height: math.unit(2, "inches")
  5893. },
  5894. {
  5895. name: "Normal",
  5896. height: math.unit(6.3, "feet")
  5897. },
  5898. {
  5899. name: "Macro",
  5900. height: math.unit(850, "feet")
  5901. },
  5902. {
  5903. name: "Megamacro",
  5904. height: math.unit(7500, "feet"),
  5905. default: true
  5906. },
  5907. {
  5908. name: "Gigamacro",
  5909. height: math.unit(570000, "miles")
  5910. }
  5911. ]
  5912. ))
  5913. characterMakers.push(() => makeCharacter(
  5914. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5915. {
  5916. front: {
  5917. height: math.unit(6, "feet"),
  5918. weight: math.unit(210, "lbs"),
  5919. name: "Front",
  5920. image: {
  5921. source: "./media/characters/rain-fallen/front.svg"
  5922. }
  5923. },
  5924. side: {
  5925. height: math.unit(6, "feet"),
  5926. weight: math.unit(210, "lbs"),
  5927. name: "Side",
  5928. image: {
  5929. source: "./media/characters/rain-fallen/side.svg"
  5930. }
  5931. },
  5932. back: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(210, "lbs"),
  5935. name: "Back",
  5936. image: {
  5937. source: "./media/characters/rain-fallen/back.svg"
  5938. }
  5939. },
  5940. feral: {
  5941. height: math.unit(9, "feet"),
  5942. weight: math.unit(700, "lbs"),
  5943. name: "Feral",
  5944. image: {
  5945. source: "./media/characters/rain-fallen/feral.svg"
  5946. }
  5947. },
  5948. },
  5949. [
  5950. {
  5951. name: "Meddling with Mortals",
  5952. height: math.unit(8 + 8/12, "feet")
  5953. },
  5954. {
  5955. name: "Normal",
  5956. height: math.unit(5, "meter")
  5957. },
  5958. {
  5959. name: "Macro",
  5960. height: math.unit(150, "meter"),
  5961. default: true
  5962. },
  5963. {
  5964. name: "Megamacro",
  5965. height: math.unit(278e6, "meter")
  5966. },
  5967. {
  5968. name: "Gigamacro",
  5969. height: math.unit(2e9, "meter")
  5970. },
  5971. {
  5972. name: "Teramacro",
  5973. height: math.unit(8e12, "meter")
  5974. },
  5975. {
  5976. name: "Devourer",
  5977. height: math.unit(14, "zettameters")
  5978. },
  5979. {
  5980. name: "Scarlet King",
  5981. height: math.unit(18, "yottameters")
  5982. },
  5983. {
  5984. name: "Void",
  5985. height: math.unit(1e88, "yottameters")
  5986. }
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5991. {
  5992. standing: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(180, "lbs"),
  5995. name: "Standing",
  5996. image: {
  5997. source: "./media/characters/zaakira/standing.svg",
  5998. extra: 1599/1504,
  5999. bottom: 39/1638
  6000. }
  6001. },
  6002. laying: {
  6003. height: math.unit(3.3, "feet"),
  6004. weight: math.unit(180, "lbs"),
  6005. name: "Laying",
  6006. image: {
  6007. source: "./media/characters/zaakira/laying.svg"
  6008. }
  6009. },
  6010. },
  6011. [
  6012. {
  6013. name: "Normal",
  6014. height: math.unit(12, "feet")
  6015. },
  6016. {
  6017. name: "Macro",
  6018. height: math.unit(279, "feet"),
  6019. default: true
  6020. }
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6025. {
  6026. femSfw: {
  6027. height: math.unit(8, "feet"),
  6028. weight: math.unit(350, "lb"),
  6029. name: "Fem",
  6030. image: {
  6031. source: "./media/characters/sigvald/fem-sfw.svg",
  6032. extra: 182 / 164,
  6033. bottom: 8.7 / 190.5
  6034. }
  6035. },
  6036. femNsfw: {
  6037. height: math.unit(8, "feet"),
  6038. weight: math.unit(350, "lb"),
  6039. name: "Fem (NSFW)",
  6040. image: {
  6041. source: "./media/characters/sigvald/fem-nsfw.svg",
  6042. extra: 182 / 164,
  6043. bottom: 8.7 / 190.5
  6044. }
  6045. },
  6046. maleNsfw: {
  6047. height: math.unit(8, "feet"),
  6048. weight: math.unit(350, "lb"),
  6049. name: "Male (NSFW)",
  6050. image: {
  6051. source: "./media/characters/sigvald/male-nsfw.svg",
  6052. extra: 182 / 164,
  6053. bottom: 8.7 / 190.5
  6054. }
  6055. },
  6056. hermNsfw: {
  6057. height: math.unit(8, "feet"),
  6058. weight: math.unit(350, "lb"),
  6059. name: "Herm (NSFW)",
  6060. image: {
  6061. source: "./media/characters/sigvald/herm-nsfw.svg",
  6062. extra: 182 / 164,
  6063. bottom: 8.7 / 190.5
  6064. }
  6065. },
  6066. dick: {
  6067. height: math.unit(2.36, "feet"),
  6068. name: "Dick",
  6069. image: {
  6070. source: "./media/characters/sigvald/dick.svg"
  6071. }
  6072. },
  6073. eye: {
  6074. height: math.unit(0.31, "feet"),
  6075. name: "Eye",
  6076. image: {
  6077. source: "./media/characters/sigvald/eye.svg"
  6078. }
  6079. },
  6080. mouth: {
  6081. height: math.unit(0.92, "feet"),
  6082. name: "Mouth",
  6083. image: {
  6084. source: "./media/characters/sigvald/mouth.svg"
  6085. }
  6086. },
  6087. paws: {
  6088. height: math.unit(2.2, "feet"),
  6089. name: "Paws",
  6090. image: {
  6091. source: "./media/characters/sigvald/paws.svg"
  6092. }
  6093. }
  6094. },
  6095. [
  6096. {
  6097. name: "Normal",
  6098. height: math.unit(8, "feet")
  6099. },
  6100. {
  6101. name: "Large",
  6102. height: math.unit(12, "feet")
  6103. },
  6104. {
  6105. name: "Larger",
  6106. height: math.unit(20, "feet")
  6107. },
  6108. {
  6109. name: "Macro",
  6110. height: math.unit(150, "feet")
  6111. },
  6112. {
  6113. name: "Macro+",
  6114. height: math.unit(200, "feet"),
  6115. default: true
  6116. },
  6117. ]
  6118. ))
  6119. characterMakers.push(() => makeCharacter(
  6120. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6121. {
  6122. side: {
  6123. height: math.unit(12, "feet"),
  6124. weight: math.unit(2000, "kg"),
  6125. name: "Side",
  6126. image: {
  6127. source: "./media/characters/scott/side.svg",
  6128. extra: 754 / 724,
  6129. bottom: 0.069
  6130. }
  6131. },
  6132. upright: {
  6133. height: math.unit(12, "feet"),
  6134. weight: math.unit(2000, "kg"),
  6135. name: "Upright",
  6136. image: {
  6137. source: "./media/characters/scott/upright.svg",
  6138. extra: 3881 / 3722,
  6139. bottom: 0.05
  6140. }
  6141. },
  6142. },
  6143. [
  6144. {
  6145. name: "Normal",
  6146. height: math.unit(12, "feet"),
  6147. default: true
  6148. },
  6149. ]
  6150. ))
  6151. characterMakers.push(() => makeCharacter(
  6152. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6153. {
  6154. side: {
  6155. height: math.unit(8, "meters"),
  6156. weight: math.unit(84755, "lbs"),
  6157. name: "Side",
  6158. image: {
  6159. source: "./media/characters/tobias/side.svg",
  6160. extra: 1474 / 1096,
  6161. bottom: 38.9 / 1513.1235
  6162. }
  6163. },
  6164. maw: {
  6165. height: math.unit(2.3, "meters"),
  6166. name: "Maw",
  6167. image: {
  6168. source: "./media/characters/tobias/maw.svg"
  6169. }
  6170. },
  6171. burp: {
  6172. height: math.unit(2.85, "meters"),
  6173. name: "Burp",
  6174. image: {
  6175. source: "./media/characters/tobias/burp.svg"
  6176. }
  6177. },
  6178. },
  6179. [
  6180. {
  6181. name: "Normal",
  6182. height: math.unit(8, "meters"),
  6183. default: true
  6184. },
  6185. ]
  6186. ))
  6187. characterMakers.push(() => makeCharacter(
  6188. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6189. {
  6190. front: {
  6191. height: math.unit(5.5, "feet"),
  6192. weight: math.unit(400, "lbs"),
  6193. name: "Front",
  6194. image: {
  6195. source: "./media/characters/kieran/front.svg",
  6196. extra: 2694 / 2364,
  6197. bottom: 217 / 2908
  6198. }
  6199. },
  6200. side: {
  6201. height: math.unit(5.5, "feet"),
  6202. weight: math.unit(400, "lbs"),
  6203. name: "Side",
  6204. image: {
  6205. source: "./media/characters/kieran/side.svg",
  6206. extra: 875 / 777,
  6207. bottom: 84.6 / 959
  6208. }
  6209. },
  6210. },
  6211. [
  6212. {
  6213. name: "Normal",
  6214. height: math.unit(5.5, "feet"),
  6215. default: true
  6216. },
  6217. ]
  6218. ))
  6219. characterMakers.push(() => makeCharacter(
  6220. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6221. {
  6222. side: {
  6223. height: math.unit(2, "meters"),
  6224. weight: math.unit(70, "kg"),
  6225. name: "Side",
  6226. image: {
  6227. source: "./media/characters/sanya/side.svg",
  6228. bottom: 0.02,
  6229. extra: 1.02
  6230. }
  6231. },
  6232. },
  6233. [
  6234. {
  6235. name: "Small",
  6236. height: math.unit(2, "meters")
  6237. },
  6238. {
  6239. name: "Normal",
  6240. height: math.unit(3, "meters")
  6241. },
  6242. {
  6243. name: "Macro",
  6244. height: math.unit(16, "meters"),
  6245. default: true
  6246. },
  6247. ]
  6248. ))
  6249. characterMakers.push(() => makeCharacter(
  6250. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6251. {
  6252. front: {
  6253. height: math.unit(2, "meters"),
  6254. weight: math.unit(120, "kg"),
  6255. name: "Front",
  6256. image: {
  6257. source: "./media/characters/miranda/front.svg",
  6258. extra: 195 / 185,
  6259. bottom: 10.9 / 206.5
  6260. }
  6261. },
  6262. back: {
  6263. height: math.unit(2, "meters"),
  6264. weight: math.unit(120, "kg"),
  6265. name: "Back",
  6266. image: {
  6267. source: "./media/characters/miranda/back.svg",
  6268. extra: 201 / 193,
  6269. bottom: 2.3 / 203.7
  6270. }
  6271. },
  6272. },
  6273. [
  6274. {
  6275. name: "Normal",
  6276. height: math.unit(10, "feet"),
  6277. default: true
  6278. }
  6279. ]
  6280. ))
  6281. characterMakers.push(() => makeCharacter(
  6282. { name: "James", species: ["deer"], tags: ["anthro"] },
  6283. {
  6284. side: {
  6285. height: math.unit(2, "meters"),
  6286. weight: math.unit(100, "kg"),
  6287. name: "Front",
  6288. image: {
  6289. source: "./media/characters/james/front.svg",
  6290. extra: 10 / 8.5
  6291. }
  6292. },
  6293. },
  6294. [
  6295. {
  6296. name: "Normal",
  6297. height: math.unit(8.5, "feet"),
  6298. default: true
  6299. }
  6300. ]
  6301. ))
  6302. characterMakers.push(() => makeCharacter(
  6303. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6304. {
  6305. side: {
  6306. height: math.unit(9.5, "feet"),
  6307. weight: math.unit(2500, "lbs"),
  6308. name: "Side",
  6309. image: {
  6310. source: "./media/characters/heather/side.svg"
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(9.5, "feet"),
  6318. default: true
  6319. }
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6324. {
  6325. side: {
  6326. height: math.unit(6.5, "feet"),
  6327. weight: math.unit(400, "lbs"),
  6328. name: "Side",
  6329. image: {
  6330. source: "./media/characters/lukas/side.svg",
  6331. extra: 7.25 / 6.5
  6332. }
  6333. },
  6334. },
  6335. [
  6336. {
  6337. name: "Normal",
  6338. height: math.unit(6.5, "feet"),
  6339. default: true
  6340. }
  6341. ]
  6342. ))
  6343. characterMakers.push(() => makeCharacter(
  6344. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6345. {
  6346. side: {
  6347. height: math.unit(5, "feet"),
  6348. weight: math.unit(3000, "lbs"),
  6349. name: "Side",
  6350. image: {
  6351. source: "./media/characters/louise/side.svg"
  6352. }
  6353. },
  6354. },
  6355. [
  6356. {
  6357. name: "Normal",
  6358. height: math.unit(5, "feet"),
  6359. default: true
  6360. }
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6365. {
  6366. side: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(150, "lbs"),
  6369. name: "Side",
  6370. image: {
  6371. source: "./media/characters/ramona/side.svg",
  6372. extra: 871/854,
  6373. bottom: 41/912
  6374. }
  6375. },
  6376. },
  6377. [
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(6 + 4/12, "feet")
  6381. },
  6382. {
  6383. name: "Minimacro",
  6384. height: math.unit(5.3, "meters"),
  6385. default: true
  6386. },
  6387. {
  6388. name: "Macro",
  6389. height: math.unit(20, "stories")
  6390. },
  6391. {
  6392. name: "Macro+",
  6393. height: math.unit(50, "stories")
  6394. },
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6399. {
  6400. standing: {
  6401. height: math.unit(5.75, "feet"),
  6402. weight: math.unit(160, "lbs"),
  6403. name: "Standing",
  6404. image: {
  6405. source: "./media/characters/deerpuff/standing.svg",
  6406. extra: 682 / 624
  6407. }
  6408. },
  6409. sitting: {
  6410. height: math.unit(5.75 / 1.79, "feet"),
  6411. weight: math.unit(160, "lbs"),
  6412. name: "Sitting",
  6413. image: {
  6414. source: "./media/characters/deerpuff/sitting.svg",
  6415. bottom: 44 / 400,
  6416. extra: 1
  6417. }
  6418. },
  6419. taurLaying: {
  6420. height: math.unit(6, "feet"),
  6421. weight: math.unit(400, "lbs"),
  6422. name: "Taur (Laying)",
  6423. image: {
  6424. source: "./media/characters/deerpuff/taur-laying.svg"
  6425. }
  6426. },
  6427. },
  6428. [
  6429. {
  6430. name: "Puffball",
  6431. height: math.unit(6, "inches")
  6432. },
  6433. {
  6434. name: "Normalpuff",
  6435. height: math.unit(5.75, "feet")
  6436. },
  6437. {
  6438. name: "Macropuff",
  6439. height: math.unit(1500, "feet"),
  6440. default: true
  6441. },
  6442. {
  6443. name: "Megapuff",
  6444. height: math.unit(500, "miles")
  6445. },
  6446. {
  6447. name: "Gigapuff",
  6448. height: math.unit(250000, "miles")
  6449. },
  6450. {
  6451. name: "Omegapuff",
  6452. height: math.unit(1000, "lightyears")
  6453. },
  6454. ]
  6455. ))
  6456. characterMakers.push(() => makeCharacter(
  6457. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6458. {
  6459. stomping: {
  6460. height: math.unit(6, "feet"),
  6461. weight: math.unit(170, "lbs"),
  6462. name: "Stomping",
  6463. image: {
  6464. source: "./media/characters/vivian/stomping.svg"
  6465. }
  6466. },
  6467. sitting: {
  6468. height: math.unit(6 / 1.75, "feet"),
  6469. weight: math.unit(170, "lbs"),
  6470. name: "Sitting",
  6471. image: {
  6472. source: "./media/characters/vivian/sitting.svg",
  6473. bottom: 1 / 6.4,
  6474. extra: 1,
  6475. }
  6476. },
  6477. },
  6478. [
  6479. {
  6480. name: "Normal",
  6481. height: math.unit(7, "feet"),
  6482. default: true
  6483. },
  6484. {
  6485. name: "Macro",
  6486. height: math.unit(10, "stories")
  6487. },
  6488. {
  6489. name: "Macro+",
  6490. height: math.unit(30, "stories")
  6491. },
  6492. {
  6493. name: "Megamacro",
  6494. height: math.unit(10, "miles")
  6495. },
  6496. {
  6497. name: "Megamacro+",
  6498. height: math.unit(2750000, "meters")
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6504. {
  6505. front: {
  6506. height: math.unit(6, "feet"),
  6507. weight: math.unit(160, "lbs"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/prince/front.svg",
  6511. extra: 1938/1682,
  6512. bottom: 45/1983
  6513. }
  6514. },
  6515. back: {
  6516. height: math.unit(6, "feet"),
  6517. weight: math.unit(160, "lbs"),
  6518. name: "Back",
  6519. image: {
  6520. source: "./media/characters/prince/back.svg",
  6521. extra: 1955/1726,
  6522. bottom: 6/1961
  6523. }
  6524. },
  6525. },
  6526. [
  6527. {
  6528. name: "Normal",
  6529. height: math.unit(7.75, "feet"),
  6530. default: true
  6531. },
  6532. {
  6533. name: "Not cute",
  6534. height: math.unit(17, "feet")
  6535. },
  6536. {
  6537. name: "I said NOT",
  6538. height: math.unit(91, "feet")
  6539. },
  6540. {
  6541. name: "Please stop",
  6542. height: math.unit(560, "feet")
  6543. },
  6544. {
  6545. name: "What have you done",
  6546. height: math.unit(2200, "feet")
  6547. },
  6548. {
  6549. name: "Deer God",
  6550. height: math.unit(3.6, "miles")
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6556. {
  6557. standing: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(300, "lbs"),
  6560. name: "Standing",
  6561. image: {
  6562. source: "./media/characters/psymon/standing.svg",
  6563. extra: 1888 / 1810,
  6564. bottom: 0.05
  6565. }
  6566. },
  6567. slithering: {
  6568. height: math.unit(6, "feet"),
  6569. weight: math.unit(300, "lbs"),
  6570. name: "Slithering",
  6571. image: {
  6572. source: "./media/characters/psymon/slithering.svg",
  6573. extra: 1330 / 1224
  6574. }
  6575. },
  6576. slitheringAlt: {
  6577. height: math.unit(6, "feet"),
  6578. weight: math.unit(300, "lbs"),
  6579. name: "Slithering (Alt)",
  6580. image: {
  6581. source: "./media/characters/psymon/slithering-alt.svg",
  6582. extra: 1330 / 1224
  6583. }
  6584. },
  6585. },
  6586. [
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(11.25, "feet"),
  6590. default: true
  6591. },
  6592. {
  6593. name: "Large",
  6594. height: math.unit(27, "feet")
  6595. },
  6596. {
  6597. name: "Giant",
  6598. height: math.unit(87, "feet")
  6599. },
  6600. {
  6601. name: "Macro",
  6602. height: math.unit(365, "feet")
  6603. },
  6604. {
  6605. name: "Megamacro",
  6606. height: math.unit(3, "miles")
  6607. },
  6608. {
  6609. name: "World Serpent",
  6610. height: math.unit(8000, "miles")
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(180, "lbs"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/daimos/front.svg",
  6623. extra: 4160 / 3897,
  6624. bottom: 0.021
  6625. }
  6626. }
  6627. },
  6628. [
  6629. {
  6630. name: "Normal",
  6631. height: math.unit(8, "feet"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Big Dog",
  6636. height: math.unit(22, "feet")
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(127, "feet")
  6641. },
  6642. {
  6643. name: "Megamacro",
  6644. height: math.unit(3600, "feet")
  6645. },
  6646. ]
  6647. ))
  6648. characterMakers.push(() => makeCharacter(
  6649. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6650. {
  6651. side: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(180, "lbs"),
  6654. name: "Side",
  6655. image: {
  6656. source: "./media/characters/blake/side.svg",
  6657. extra: 1212 / 1120,
  6658. bottom: 0.05
  6659. }
  6660. },
  6661. crouched: {
  6662. height: math.unit(6 * 0.57, "feet"),
  6663. weight: math.unit(180, "lbs"),
  6664. name: "Crouched",
  6665. image: {
  6666. source: "./media/characters/blake/crouched.svg",
  6667. extra: 840 / 587,
  6668. bottom: 0.04
  6669. }
  6670. },
  6671. bent: {
  6672. height: math.unit(6 * 0.75, "feet"),
  6673. weight: math.unit(180, "lbs"),
  6674. name: "Bent",
  6675. image: {
  6676. source: "./media/characters/blake/bent.svg",
  6677. extra: 592 / 544,
  6678. bottom: 0.035
  6679. }
  6680. },
  6681. },
  6682. [
  6683. {
  6684. name: "Normal",
  6685. height: math.unit(8 + 1 / 6, "feet"),
  6686. default: true
  6687. },
  6688. {
  6689. name: "Big Backside",
  6690. height: math.unit(37, "feet")
  6691. },
  6692. {
  6693. name: "Subway Shredder",
  6694. height: math.unit(72, "feet")
  6695. },
  6696. {
  6697. name: "City Carver",
  6698. height: math.unit(1675, "feet")
  6699. },
  6700. {
  6701. name: "Tectonic Tweaker",
  6702. height: math.unit(2300, "miles")
  6703. },
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(6, "feet"),
  6711. weight: math.unit(180, "lbs"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/guisetto/front.svg",
  6715. extra: 856 / 817,
  6716. bottom: 0.06
  6717. }
  6718. },
  6719. airborne: {
  6720. height: math.unit(6, "feet"),
  6721. weight: math.unit(180, "lbs"),
  6722. name: "Airborne",
  6723. image: {
  6724. source: "./media/characters/guisetto/airborne.svg",
  6725. extra: 584 / 525
  6726. }
  6727. },
  6728. },
  6729. [
  6730. {
  6731. name: "Normal",
  6732. height: math.unit(10 + 11 / 12, "feet"),
  6733. default: true
  6734. },
  6735. {
  6736. name: "Large",
  6737. height: math.unit(35, "feet")
  6738. },
  6739. {
  6740. name: "Macro",
  6741. height: math.unit(475, "feet")
  6742. },
  6743. ]
  6744. ))
  6745. characterMakers.push(() => makeCharacter(
  6746. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6747. {
  6748. front: {
  6749. height: math.unit(6, "feet"),
  6750. weight: math.unit(180, "lbs"),
  6751. name: "Front",
  6752. image: {
  6753. source: "./media/characters/luxor/front.svg",
  6754. extra: 2940 / 2152
  6755. }
  6756. },
  6757. back: {
  6758. height: math.unit(6, "feet"),
  6759. weight: math.unit(180, "lbs"),
  6760. name: "Back",
  6761. image: {
  6762. source: "./media/characters/luxor/back.svg",
  6763. extra: 1083 / 960
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(5 + 5 / 6, "feet"),
  6771. default: true
  6772. },
  6773. {
  6774. name: "Lamp",
  6775. height: math.unit(50, "feet")
  6776. },
  6777. {
  6778. name: "Lämp",
  6779. height: math.unit(300, "feet")
  6780. },
  6781. {
  6782. name: "The sun is a lamp",
  6783. height: math.unit(250000, "miles")
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6789. {
  6790. front: {
  6791. height: math.unit(6, "feet"),
  6792. weight: math.unit(50, "lbs"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/huoyan/front.svg"
  6796. }
  6797. },
  6798. side: {
  6799. height: math.unit(6, "feet"),
  6800. weight: math.unit(180, "lbs"),
  6801. name: "Side",
  6802. image: {
  6803. source: "./media/characters/huoyan/side.svg"
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "Chef",
  6810. height: math.unit(9, "feet")
  6811. },
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(65, "feet"),
  6815. default: true
  6816. },
  6817. {
  6818. name: "Macro",
  6819. height: math.unit(780, "feet")
  6820. },
  6821. {
  6822. name: "Flaming Mountain",
  6823. height: math.unit(4.8, "miles")
  6824. },
  6825. {
  6826. name: "Celestial",
  6827. height: math.unit(765000, "miles")
  6828. },
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6833. {
  6834. front: {
  6835. height: math.unit(5 + 3 / 4, "feet"),
  6836. weight: math.unit(120, "lbs"),
  6837. name: "Front",
  6838. image: {
  6839. source: "./media/characters/tails/front.svg"
  6840. }
  6841. }
  6842. },
  6843. [
  6844. {
  6845. name: "Normal",
  6846. height: math.unit(5 + 3 / 4, "feet"),
  6847. default: true
  6848. }
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6853. {
  6854. front: {
  6855. height: math.unit(4, "feet"),
  6856. weight: math.unit(50, "lbs"),
  6857. name: "Front",
  6858. image: {
  6859. source: "./media/characters/rainy/front.svg"
  6860. }
  6861. }
  6862. },
  6863. [
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(800, "feet"),
  6867. default: true
  6868. }
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(150, "lbs"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/rainier/front.svg"
  6880. }
  6881. }
  6882. },
  6883. [
  6884. {
  6885. name: "Micro",
  6886. height: math.unit(2, "mm"),
  6887. default: true
  6888. }
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(8 + 4/12, "feet"),
  6896. weight: math.unit(450, "kilograms"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/andy-renard/front.svg",
  6900. extra: 862/809,
  6901. bottom: 85/947
  6902. },
  6903. extraAttributes: {
  6904. "pawSize": {
  6905. name: "Paw Size",
  6906. power: 2,
  6907. type: "area",
  6908. base: math.unit(0.45*0.3, "meters^2")
  6909. },
  6910. "handSize": {
  6911. name: "Hand Size",
  6912. power: 2,
  6913. type: "area",
  6914. base: math.unit(0.4 * 0.3, "meters^2")
  6915. },
  6916. "cockSize": {
  6917. name: "Cock Length",
  6918. power: 1,
  6919. type: "length",
  6920. base: math.unit(0.75, "meters")
  6921. },
  6922. "ballDiameter": {
  6923. name: "Ball Diameter",
  6924. power: 1,
  6925. type: "length",
  6926. base: math.unit(0.3, "meters")
  6927. },
  6928. "ballVolume": {
  6929. name: "Ball Volume",
  6930. power: 3,
  6931. type: "volume",
  6932. base: math.unit(0.01413716694, "meters^3")
  6933. },
  6934. }
  6935. },
  6936. back: {
  6937. height: math.unit(8 + 4/12, "feet"),
  6938. weight: math.unit(450, "kilograms"),
  6939. name: "Back",
  6940. image: {
  6941. source: "./media/characters/andy-renard/back.svg",
  6942. extra: 1112/1033,
  6943. bottom: 64/1176
  6944. },
  6945. extraAttributes: {
  6946. "pawSize": {
  6947. name: "Paw Size",
  6948. power: 2,
  6949. type: "area",
  6950. base: math.unit(0.45*0.3, "meters^2")
  6951. },
  6952. "handSize": {
  6953. name: "Hand Size",
  6954. power: 2,
  6955. type: "area",
  6956. base: math.unit(0.4 * 0.3, "meters^2")
  6957. },
  6958. "cockSize": {
  6959. name: "Cock Length",
  6960. power: 1,
  6961. type: "length",
  6962. base: math.unit(0.75, "meters")
  6963. },
  6964. "ballDiameter": {
  6965. name: "Ball Diameter",
  6966. power: 1,
  6967. type: "length",
  6968. base: math.unit(0.3, "meters")
  6969. },
  6970. "ballVolume": {
  6971. name: "Ball Volume",
  6972. power: 3,
  6973. type: "volume",
  6974. base: math.unit(0.01413716694, "meters^3")
  6975. },
  6976. }
  6977. },
  6978. },
  6979. [
  6980. {
  6981. name: "Tall",
  6982. height: math.unit(6 + 8/12, "feet")
  6983. },
  6984. {
  6985. name: "Very Tall",
  6986. height: math.unit(8 + 4/12, "feet")
  6987. },
  6988. {
  6989. name: "Mini Macro",
  6990. height: math.unit(15, "feet"),
  6991. default: true
  6992. },
  6993. {
  6994. name: "Giant",
  6995. height: math.unit(50, "feet")
  6996. },
  6997. {
  6998. name: "Nice",
  6999. height: math.unit(69, "feet")
  7000. },
  7001. {
  7002. name: "Macro",
  7003. height: math.unit(100, "feet")
  7004. },
  7005. {
  7006. name: "Enormous",
  7007. height: math.unit(500, "feet")
  7008. },
  7009. {
  7010. name: "Gargantuan",
  7011. height: math.unit(1000, "feet")
  7012. },
  7013. {
  7014. name: "Mega",
  7015. height: math.unit(1, "mile")
  7016. },
  7017. {
  7018. name: "Giga",
  7019. height: math.unit(50, "miles")
  7020. },
  7021. {
  7022. name: "Tera",
  7023. height: math.unit(1000, "miles")
  7024. },
  7025. {
  7026. name: "Cosmic",
  7027. height: math.unit(1.5, "galaxies")
  7028. },
  7029. {
  7030. name: "God",
  7031. height: math.unit(1.5, "universes")
  7032. },
  7033. {
  7034. name: "Chief Execute God",
  7035. height: math.unit(1.5, "multiverses")
  7036. },
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(210, "lbs"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/cimmaron/front-sfw.svg",
  7048. extra: 701 / 676,
  7049. bottom: 0.046
  7050. }
  7051. },
  7052. back: {
  7053. height: math.unit(6, "feet"),
  7054. weight: math.unit(210, "lbs"),
  7055. name: "Back",
  7056. image: {
  7057. source: "./media/characters/cimmaron/back-sfw.svg",
  7058. extra: 701 / 676,
  7059. bottom: 0.046
  7060. }
  7061. },
  7062. frontNsfw: {
  7063. height: math.unit(6, "feet"),
  7064. weight: math.unit(210, "lbs"),
  7065. name: "Front (NSFW)",
  7066. image: {
  7067. source: "./media/characters/cimmaron/front-nsfw.svg",
  7068. extra: 701 / 676,
  7069. bottom: 0.046
  7070. }
  7071. },
  7072. backNsfw: {
  7073. height: math.unit(6, "feet"),
  7074. weight: math.unit(210, "lbs"),
  7075. name: "Back (NSFW)",
  7076. image: {
  7077. source: "./media/characters/cimmaron/back-nsfw.svg",
  7078. extra: 701 / 676,
  7079. bottom: 0.046
  7080. }
  7081. },
  7082. dick: {
  7083. height: math.unit(1.714, "feet"),
  7084. name: "Dick",
  7085. image: {
  7086. source: "./media/characters/cimmaron/dick.svg"
  7087. }
  7088. },
  7089. },
  7090. [
  7091. {
  7092. name: "Normal",
  7093. height: math.unit(6, "feet"),
  7094. default: true
  7095. },
  7096. {
  7097. name: "Macro Mayor",
  7098. height: math.unit(350, "meters")
  7099. },
  7100. ]
  7101. ))
  7102. characterMakers.push(() => makeCharacter(
  7103. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7104. {
  7105. front: {
  7106. height: math.unit(6, "feet"),
  7107. weight: math.unit(200, "lbs"),
  7108. name: "Front",
  7109. image: {
  7110. source: "./media/characters/akari/front.svg",
  7111. extra: 962 / 901,
  7112. bottom: 0.04
  7113. }
  7114. }
  7115. },
  7116. [
  7117. {
  7118. name: "Micro",
  7119. height: math.unit(5, "inches"),
  7120. default: true
  7121. },
  7122. {
  7123. name: "Normal",
  7124. height: math.unit(7, "feet")
  7125. },
  7126. ]
  7127. ))
  7128. characterMakers.push(() => makeCharacter(
  7129. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7130. {
  7131. front: {
  7132. height: math.unit(6, "feet"),
  7133. weight: math.unit(140, "lbs"),
  7134. name: "Front",
  7135. image: {
  7136. source: "./media/characters/cynosura/front.svg",
  7137. extra: 437/410,
  7138. bottom: 9/446
  7139. }
  7140. },
  7141. back: {
  7142. height: math.unit(6, "feet"),
  7143. weight: math.unit(140, "lbs"),
  7144. name: "Back",
  7145. image: {
  7146. source: "./media/characters/cynosura/back.svg",
  7147. extra: 1304/1160,
  7148. bottom: 71/1375
  7149. }
  7150. },
  7151. },
  7152. [
  7153. {
  7154. name: "Micro",
  7155. height: math.unit(4, "inches")
  7156. },
  7157. {
  7158. name: "Normal",
  7159. height: math.unit(5.75, "feet"),
  7160. default: true
  7161. },
  7162. {
  7163. name: "Tall",
  7164. height: math.unit(10, "feet")
  7165. },
  7166. {
  7167. name: "Big",
  7168. height: math.unit(20, "feet")
  7169. },
  7170. {
  7171. name: "Macro",
  7172. height: math.unit(50, "feet")
  7173. },
  7174. ]
  7175. ))
  7176. characterMakers.push(() => makeCharacter(
  7177. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7178. {
  7179. front: {
  7180. height: math.unit(13 + 2/12, "feet"),
  7181. weight: math.unit(800, "kg"),
  7182. name: "Front",
  7183. image: {
  7184. source: "./media/characters/gin/front.svg",
  7185. extra: 1312/1191,
  7186. bottom: 45/1357
  7187. }
  7188. },
  7189. mouth: {
  7190. height: math.unit(2.39 * 1.8, "feet"),
  7191. name: "Mouth",
  7192. image: {
  7193. source: "./media/characters/gin/mouth.svg"
  7194. }
  7195. },
  7196. hand: {
  7197. height: math.unit(1.57 * 2.19, "feet"),
  7198. name: "Hand",
  7199. image: {
  7200. source: "./media/characters/gin/hand.svg"
  7201. }
  7202. },
  7203. foot: {
  7204. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7205. name: "Foot",
  7206. image: {
  7207. source: "./media/characters/gin/foot.svg"
  7208. }
  7209. },
  7210. sole: {
  7211. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7212. name: "Sole",
  7213. image: {
  7214. source: "./media/characters/gin/sole.svg"
  7215. }
  7216. },
  7217. },
  7218. [
  7219. {
  7220. name: "Very Small",
  7221. height: math.unit(13 + 2 / 12, "feet")
  7222. },
  7223. {
  7224. name: "Micro",
  7225. height: math.unit(600, "miles")
  7226. },
  7227. {
  7228. name: "Regular",
  7229. height: math.unit(20, "earths"),
  7230. default: true
  7231. },
  7232. {
  7233. name: "Macro",
  7234. height: math.unit(2.2, "solarradii")
  7235. },
  7236. {
  7237. name: "Teramacro",
  7238. height: math.unit(1.2, "galaxies")
  7239. },
  7240. {
  7241. name: "Omegamacro",
  7242. height: math.unit(200, "universes")
  7243. },
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7248. {
  7249. front: {
  7250. height: math.unit(6 + 1 / 6, "feet"),
  7251. weight: math.unit(178, "lbs"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/guy/front.svg"
  7255. }
  7256. }
  7257. },
  7258. [
  7259. {
  7260. name: "Normal",
  7261. height: math.unit(6 + 1 / 6, "feet"),
  7262. default: true
  7263. },
  7264. {
  7265. name: "Large",
  7266. height: math.unit(25 + 7 / 12, "feet")
  7267. },
  7268. {
  7269. name: "Macro",
  7270. height: math.unit(60 + 9 / 12, "feet")
  7271. },
  7272. {
  7273. name: "Macro+",
  7274. height: math.unit(246, "feet")
  7275. },
  7276. {
  7277. name: "Macro++",
  7278. height: math.unit(878, "feet")
  7279. }
  7280. ]
  7281. ))
  7282. characterMakers.push(() => makeCharacter(
  7283. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7284. {
  7285. front: {
  7286. height: math.unit(9, "feet"),
  7287. weight: math.unit(800, "lbs"),
  7288. name: "Front",
  7289. image: {
  7290. source: "./media/characters/tiberius/front.svg",
  7291. extra: 2295 / 2071
  7292. }
  7293. },
  7294. back: {
  7295. height: math.unit(9, "feet"),
  7296. weight: math.unit(800, "lbs"),
  7297. name: "Back",
  7298. image: {
  7299. source: "./media/characters/tiberius/back.svg",
  7300. extra: 2373 / 2160
  7301. }
  7302. },
  7303. },
  7304. [
  7305. {
  7306. name: "Normal",
  7307. height: math.unit(9, "feet"),
  7308. default: true
  7309. }
  7310. ]
  7311. ))
  7312. characterMakers.push(() => makeCharacter(
  7313. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7314. {
  7315. front: {
  7316. height: math.unit(6, "feet"),
  7317. weight: math.unit(600, "lbs"),
  7318. name: "Front",
  7319. image: {
  7320. source: "./media/characters/surgo/front.svg",
  7321. extra: 3591 / 2227
  7322. }
  7323. },
  7324. back: {
  7325. height: math.unit(6, "feet"),
  7326. weight: math.unit(600, "lbs"),
  7327. name: "Back",
  7328. image: {
  7329. source: "./media/characters/surgo/back.svg",
  7330. extra: 3557 / 2228
  7331. }
  7332. },
  7333. laying: {
  7334. height: math.unit(6 * 0.85, "feet"),
  7335. weight: math.unit(600, "lbs"),
  7336. name: "Laying",
  7337. image: {
  7338. source: "./media/characters/surgo/laying.svg"
  7339. }
  7340. },
  7341. },
  7342. [
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(6, "feet"),
  7346. default: true
  7347. }
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7352. {
  7353. side: {
  7354. height: math.unit(6, "feet"),
  7355. weight: math.unit(150, "lbs"),
  7356. name: "Side",
  7357. image: {
  7358. source: "./media/characters/cibus/side.svg",
  7359. extra: 800 / 400
  7360. }
  7361. },
  7362. },
  7363. [
  7364. {
  7365. name: "Normal",
  7366. height: math.unit(6, "feet"),
  7367. default: true
  7368. }
  7369. ]
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7373. {
  7374. front: {
  7375. height: math.unit(6, "feet"),
  7376. weight: math.unit(240, "lbs"),
  7377. name: "Front",
  7378. image: {
  7379. source: "./media/characters/nibbles/front.svg"
  7380. }
  7381. },
  7382. side: {
  7383. height: math.unit(6, "feet"),
  7384. weight: math.unit(240, "lbs"),
  7385. name: "Side",
  7386. image: {
  7387. source: "./media/characters/nibbles/side.svg"
  7388. }
  7389. },
  7390. },
  7391. [
  7392. {
  7393. name: "Normal",
  7394. height: math.unit(9, "feet"),
  7395. default: true
  7396. }
  7397. ]
  7398. ))
  7399. characterMakers.push(() => makeCharacter(
  7400. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7401. {
  7402. side: {
  7403. height: math.unit(5 + 1 / 6, "feet"),
  7404. weight: math.unit(130, "lbs"),
  7405. name: "Side",
  7406. image: {
  7407. source: "./media/characters/rikky/side.svg",
  7408. extra: 851 / 801
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Normal",
  7415. height: math.unit(5 + 1 / 6, "feet")
  7416. },
  7417. {
  7418. name: "Macro",
  7419. height: math.unit(152, "feet"),
  7420. default: true
  7421. },
  7422. {
  7423. name: "Megamacro",
  7424. height: math.unit(7, "miles")
  7425. }
  7426. ]
  7427. ))
  7428. characterMakers.push(() => makeCharacter(
  7429. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7430. {
  7431. side: {
  7432. height: math.unit(370, "cm"),
  7433. weight: math.unit(350, "lbs"),
  7434. name: "Side",
  7435. image: {
  7436. source: "./media/characters/malfressa/side.svg"
  7437. }
  7438. },
  7439. walking: {
  7440. height: math.unit(370, "cm"),
  7441. weight: math.unit(350, "lbs"),
  7442. name: "Walking",
  7443. image: {
  7444. source: "./media/characters/malfressa/walking.svg"
  7445. }
  7446. },
  7447. feral: {
  7448. height: math.unit(2500, "cm"),
  7449. weight: math.unit(100000, "lbs"),
  7450. name: "Feral",
  7451. image: {
  7452. source: "./media/characters/malfressa/feral.svg",
  7453. extra: 2108 / 837,
  7454. bottom: 0.02
  7455. }
  7456. },
  7457. },
  7458. [
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(370, "cm")
  7462. },
  7463. {
  7464. name: "Macro",
  7465. height: math.unit(300, "meters"),
  7466. default: true
  7467. }
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7472. {
  7473. front: {
  7474. height: math.unit(6, "feet"),
  7475. weight: math.unit(60, "kg"),
  7476. name: "Front",
  7477. image: {
  7478. source: "./media/characters/jaro/front.svg",
  7479. extra: 845/817,
  7480. bottom: 45/890
  7481. }
  7482. },
  7483. back: {
  7484. height: math.unit(6, "feet"),
  7485. weight: math.unit(60, "kg"),
  7486. name: "Back",
  7487. image: {
  7488. source: "./media/characters/jaro/back.svg",
  7489. extra: 847/817,
  7490. bottom: 34/881
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Micro",
  7497. height: math.unit(7, "inches")
  7498. },
  7499. {
  7500. name: "Normal",
  7501. height: math.unit(5.5, "feet"),
  7502. default: true
  7503. },
  7504. {
  7505. name: "Minimacro",
  7506. height: math.unit(20, "feet")
  7507. },
  7508. {
  7509. name: "Macro",
  7510. height: math.unit(200, "meters")
  7511. }
  7512. ]
  7513. ))
  7514. characterMakers.push(() => makeCharacter(
  7515. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7516. {
  7517. front: {
  7518. height: math.unit(6, "feet"),
  7519. weight: math.unit(195, "lb"),
  7520. name: "Front",
  7521. image: {
  7522. source: "./media/characters/rogue/front.svg"
  7523. }
  7524. },
  7525. },
  7526. [
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(90, "feet"),
  7530. default: true
  7531. },
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7536. {
  7537. standing: {
  7538. height: math.unit(5 + 8 / 12, "feet"),
  7539. weight: math.unit(140, "lb"),
  7540. name: "Standing",
  7541. image: {
  7542. source: "./media/characters/piper/standing.svg",
  7543. extra: 1440/1284,
  7544. bottom: 66/1506
  7545. }
  7546. },
  7547. running: {
  7548. height: math.unit(5 + 8 / 12, "feet"),
  7549. weight: math.unit(140, "lb"),
  7550. name: "Running",
  7551. image: {
  7552. source: "./media/characters/piper/running.svg",
  7553. extra: 3948/3655,
  7554. bottom: 0/3948
  7555. }
  7556. },
  7557. sole: {
  7558. height: math.unit(0.81, "feet"),
  7559. weight: math.unit(2, "kg"),
  7560. name: "Sole",
  7561. image: {
  7562. source: "./media/characters/piper/sole.svg"
  7563. }
  7564. },
  7565. nipple: {
  7566. height: math.unit(0.25, "feet"),
  7567. weight: math.unit(1.5, "lb"),
  7568. name: "Nipple",
  7569. image: {
  7570. source: "./media/characters/piper/nipple.svg"
  7571. }
  7572. },
  7573. head: {
  7574. height: math.unit(1.1, "feet"),
  7575. name: "Head",
  7576. image: {
  7577. source: "./media/characters/piper/head.svg"
  7578. }
  7579. },
  7580. },
  7581. [
  7582. {
  7583. name: "Micro",
  7584. height: math.unit(2, "inches")
  7585. },
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(5 + 8 / 12, "feet")
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(250, "feet"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Megamacro",
  7597. height: math.unit(7, "miles")
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(6, "feet"),
  7606. weight: math.unit(220, "lb"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/gemini/front.svg"
  7610. }
  7611. },
  7612. back: {
  7613. height: math.unit(6, "feet"),
  7614. weight: math.unit(220, "lb"),
  7615. name: "Back",
  7616. image: {
  7617. source: "./media/characters/gemini/back.svg"
  7618. }
  7619. },
  7620. kneeling: {
  7621. height: math.unit(6 / 1.5, "feet"),
  7622. weight: math.unit(220, "lb"),
  7623. name: "Kneeling",
  7624. image: {
  7625. source: "./media/characters/gemini/kneeling.svg",
  7626. bottom: 0.02
  7627. }
  7628. },
  7629. },
  7630. [
  7631. {
  7632. name: "Macro",
  7633. height: math.unit(300, "meters"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Megamacro",
  7638. height: math.unit(6900, "meters")
  7639. },
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7644. {
  7645. anthro: {
  7646. height: math.unit(2.35, "meters"),
  7647. weight: math.unit(73, "kg"),
  7648. name: "Anthro",
  7649. image: {
  7650. source: "./media/characters/alicia/anthro.svg",
  7651. extra: 2571 / 2385,
  7652. bottom: 75 / 2648
  7653. }
  7654. },
  7655. paw: {
  7656. height: math.unit(1.32, "feet"),
  7657. name: "Paw",
  7658. image: {
  7659. source: "./media/characters/alicia/paw.svg"
  7660. }
  7661. },
  7662. feral: {
  7663. height: math.unit(1.69, "meters"),
  7664. weight: math.unit(73, "kg"),
  7665. name: "Feral",
  7666. image: {
  7667. source: "./media/characters/alicia/feral.svg",
  7668. extra: 2123 / 1715,
  7669. bottom: 222 / 2349
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Normal",
  7676. height: math.unit(2.35, "meters")
  7677. },
  7678. {
  7679. name: "Macro",
  7680. height: math.unit(60, "meters"),
  7681. default: true
  7682. },
  7683. {
  7684. name: "Megamacro",
  7685. height: math.unit(10000, "kilometers")
  7686. },
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(7, "feet"),
  7694. weight: math.unit(250, "lbs"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/archy/front.svg"
  7698. }
  7699. }
  7700. },
  7701. [
  7702. {
  7703. name: "Micro",
  7704. height: math.unit(1, "inch")
  7705. },
  7706. {
  7707. name: "Shorty",
  7708. height: math.unit(5, "feet")
  7709. },
  7710. {
  7711. name: "Normal",
  7712. height: math.unit(7, "feet")
  7713. },
  7714. {
  7715. name: "Macro",
  7716. height: math.unit(600, "meters"),
  7717. default: true
  7718. },
  7719. {
  7720. name: "Megamacro",
  7721. height: math.unit(1, "mile")
  7722. },
  7723. ]
  7724. ))
  7725. characterMakers.push(() => makeCharacter(
  7726. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7727. {
  7728. front: {
  7729. height: math.unit(1.65, "meters"),
  7730. weight: math.unit(74, "kg"),
  7731. name: "Front",
  7732. image: {
  7733. source: "./media/characters/berri/front.svg",
  7734. extra: 857 / 837,
  7735. bottom: 18 / 877
  7736. }
  7737. },
  7738. bum: {
  7739. height: math.unit(1.46, "feet"),
  7740. name: "Bum",
  7741. image: {
  7742. source: "./media/characters/berri/bum.svg"
  7743. }
  7744. },
  7745. mouth: {
  7746. height: math.unit(0.44, "feet"),
  7747. name: "Mouth",
  7748. image: {
  7749. source: "./media/characters/berri/mouth.svg"
  7750. }
  7751. },
  7752. paw: {
  7753. height: math.unit(0.826, "feet"),
  7754. name: "Paw",
  7755. image: {
  7756. source: "./media/characters/berri/paw.svg"
  7757. }
  7758. },
  7759. },
  7760. [
  7761. {
  7762. name: "Normal",
  7763. height: math.unit(1.65, "meters")
  7764. },
  7765. {
  7766. name: "Macro",
  7767. height: math.unit(60, "m"),
  7768. default: true
  7769. },
  7770. {
  7771. name: "Megamacro",
  7772. height: math.unit(9.213, "km")
  7773. },
  7774. {
  7775. name: "Planet Eater",
  7776. height: math.unit(489, "megameters")
  7777. },
  7778. {
  7779. name: "Teramacro",
  7780. height: math.unit(2471635000000, "meters")
  7781. },
  7782. {
  7783. name: "Examacro",
  7784. height: math.unit(8.0624e+26, "meters")
  7785. }
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(1.72, "meters"),
  7793. weight: math.unit(68, "kg"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/lexi/front.svg"
  7797. }
  7798. }
  7799. },
  7800. [
  7801. {
  7802. name: "Very Smol",
  7803. height: math.unit(10, "mm")
  7804. },
  7805. {
  7806. name: "Micro",
  7807. height: math.unit(6.8, "cm"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Normal",
  7812. height: math.unit(1.72, "m")
  7813. }
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(1.69, "meters"),
  7821. weight: math.unit(68, "kg"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/martin/front.svg",
  7825. extra: 596 / 581
  7826. }
  7827. }
  7828. },
  7829. [
  7830. {
  7831. name: "Micro",
  7832. height: math.unit(6.85, "cm"),
  7833. default: true
  7834. },
  7835. {
  7836. name: "Normal",
  7837. height: math.unit(1.69, "m")
  7838. }
  7839. ]
  7840. ))
  7841. characterMakers.push(() => makeCharacter(
  7842. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7843. {
  7844. front: {
  7845. height: math.unit(1.69, "meters"),
  7846. weight: math.unit(68, "kg"),
  7847. name: "Front",
  7848. image: {
  7849. source: "./media/characters/juno/front.svg"
  7850. }
  7851. }
  7852. },
  7853. [
  7854. {
  7855. name: "Micro",
  7856. height: math.unit(7, "cm")
  7857. },
  7858. {
  7859. name: "Normal",
  7860. height: math.unit(1.89, "m")
  7861. },
  7862. {
  7863. name: "Macro",
  7864. height: math.unit(353, "meters"),
  7865. default: true
  7866. }
  7867. ]
  7868. ))
  7869. characterMakers.push(() => makeCharacter(
  7870. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7871. {
  7872. front: {
  7873. height: math.unit(1.93, "meters"),
  7874. weight: math.unit(83, "kg"),
  7875. name: "Front",
  7876. image: {
  7877. source: "./media/characters/samantha/front.svg"
  7878. }
  7879. },
  7880. frontClothed: {
  7881. height: math.unit(1.93, "meters"),
  7882. weight: math.unit(83, "kg"),
  7883. name: "Front (Clothed)",
  7884. image: {
  7885. source: "./media/characters/samantha/front-clothed.svg"
  7886. }
  7887. },
  7888. back: {
  7889. height: math.unit(1.93, "meters"),
  7890. weight: math.unit(83, "kg"),
  7891. name: "Back",
  7892. image: {
  7893. source: "./media/characters/samantha/back.svg"
  7894. }
  7895. },
  7896. },
  7897. [
  7898. {
  7899. name: "Normal",
  7900. height: math.unit(1.93, "m")
  7901. },
  7902. {
  7903. name: "Macro",
  7904. height: math.unit(74, "meters"),
  7905. default: true
  7906. },
  7907. {
  7908. name: "Macro+",
  7909. height: math.unit(223, "meters"),
  7910. },
  7911. {
  7912. name: "Megamacro",
  7913. height: math.unit(8381, "meters"),
  7914. },
  7915. {
  7916. name: "Megamacro+",
  7917. height: math.unit(12000, "kilometers")
  7918. },
  7919. ]
  7920. ))
  7921. characterMakers.push(() => makeCharacter(
  7922. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7923. {
  7924. front: {
  7925. height: math.unit(1.92, "meters"),
  7926. weight: math.unit(80, "kg"),
  7927. name: "Front",
  7928. image: {
  7929. source: "./media/characters/dr-clay/front.svg"
  7930. }
  7931. },
  7932. frontClothed: {
  7933. height: math.unit(1.92, "meters"),
  7934. weight: math.unit(80, "kg"),
  7935. name: "Front (Clothed)",
  7936. image: {
  7937. source: "./media/characters/dr-clay/front-clothed.svg"
  7938. }
  7939. }
  7940. },
  7941. [
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(1.92, "m")
  7945. },
  7946. {
  7947. name: "Macro",
  7948. height: math.unit(214, "meters"),
  7949. default: true
  7950. },
  7951. {
  7952. name: "Macro+",
  7953. height: math.unit(12.237, "meters"),
  7954. },
  7955. {
  7956. name: "Megamacro",
  7957. height: math.unit(557, "megameters"),
  7958. },
  7959. {
  7960. name: "Unimaginable",
  7961. height: math.unit(120e9, "lightyears")
  7962. },
  7963. ]
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7967. {
  7968. front: {
  7969. height: math.unit(2, "meters"),
  7970. weight: math.unit(80, "kg"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7974. }
  7975. }
  7976. },
  7977. [
  7978. {
  7979. name: "Teramacro",
  7980. height: math.unit(500000, "lightyears"),
  7981. default: true
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7987. {
  7988. crux: {
  7989. height: math.unit(2, "meters"),
  7990. weight: math.unit(150, "kg"),
  7991. name: "Crux",
  7992. image: {
  7993. source: "./media/characters/vemus/crux.svg",
  7994. extra: 1074/936,
  7995. bottom: 23/1097
  7996. }
  7997. },
  7998. skunkTanuki: {
  7999. height: math.unit(2, "meters"),
  8000. weight: math.unit(150, "kg"),
  8001. name: "Skunk-Tanuki",
  8002. image: {
  8003. source: "./media/characters/vemus/skunk-tanuki.svg",
  8004. extra: 926/893,
  8005. bottom: 20/946
  8006. }
  8007. },
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(4, "meters"),
  8013. default: true
  8014. },
  8015. {
  8016. name: "Big",
  8017. height: math.unit(8, "meters")
  8018. },
  8019. {
  8020. name: "Macro",
  8021. height: math.unit(100, "meters")
  8022. },
  8023. {
  8024. name: "Macro+",
  8025. height: math.unit(1500, "meters")
  8026. },
  8027. {
  8028. name: "Stellar",
  8029. height: math.unit(14e8, "meters")
  8030. },
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8035. {
  8036. front: {
  8037. height: math.unit(2, "meters"),
  8038. weight: math.unit(70, "kg"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/beherit/front.svg",
  8042. extra: 1234/1109,
  8043. bottom: 55/1289
  8044. }
  8045. }
  8046. },
  8047. [
  8048. {
  8049. name: "Normal",
  8050. height: math.unit(6, "feet")
  8051. },
  8052. {
  8053. name: "Lorg",
  8054. height: math.unit(25, "feet"),
  8055. default: true
  8056. },
  8057. {
  8058. name: "Lorger",
  8059. height: math.unit(75, "feet")
  8060. },
  8061. {
  8062. name: "Macro",
  8063. height: math.unit(200, "meters")
  8064. },
  8065. ]
  8066. ))
  8067. characterMakers.push(() => makeCharacter(
  8068. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8069. {
  8070. front: {
  8071. height: math.unit(2, "meters"),
  8072. weight: math.unit(150, "kg"),
  8073. name: "Front",
  8074. image: {
  8075. source: "./media/characters/everett/front.svg",
  8076. extra: 1017/866,
  8077. bottom: 86/1103
  8078. }
  8079. },
  8080. paw: {
  8081. height: math.unit(2 / 3.6, "meters"),
  8082. name: "Paw",
  8083. image: {
  8084. source: "./media/characters/everett/paw.svg"
  8085. }
  8086. },
  8087. },
  8088. [
  8089. {
  8090. name: "Normal",
  8091. height: math.unit(15, "feet"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Lorg",
  8096. height: math.unit(70, "feet"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Lorger",
  8101. height: math.unit(250, "feet")
  8102. },
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(500, "meters")
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(2, "meters"),
  8114. weight: math.unit(86, "kg"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/rose/front.svg",
  8118. extra: 1785/1636,
  8119. bottom: 30/1815
  8120. },
  8121. form: "liom",
  8122. default: true
  8123. },
  8124. frontSporty: {
  8125. height: math.unit(2, "meters"),
  8126. weight: math.unit(86, "kg"),
  8127. name: "Front (Sporty)",
  8128. image: {
  8129. source: "./media/characters/rose/front-sporty.svg",
  8130. extra: 350/335,
  8131. bottom: 10/360
  8132. },
  8133. form: "liom"
  8134. },
  8135. frontAlt: {
  8136. height: math.unit(1.6, "meters"),
  8137. weight: math.unit(86, "kg"),
  8138. name: "Front (Alt)",
  8139. image: {
  8140. source: "./media/characters/rose/front-alt.svg",
  8141. extra: 299/283,
  8142. bottom: 3/302
  8143. },
  8144. form: "liom"
  8145. },
  8146. plush: {
  8147. height: math.unit(2, "meters"),
  8148. weight: math.unit(86/3, "kg"),
  8149. name: "Plush",
  8150. image: {
  8151. source: "./media/characters/rose/plush.svg",
  8152. extra: 361/337,
  8153. bottom: 11/372
  8154. },
  8155. form: "plush",
  8156. default: true
  8157. },
  8158. faeStanding: {
  8159. height: math.unit(10, "cm"),
  8160. weight: math.unit(10, "grams"),
  8161. name: "Standing",
  8162. image: {
  8163. source: "./media/characters/rose/fae-standing.svg",
  8164. extra: 1189/1060,
  8165. bottom: 27/1216
  8166. },
  8167. form: "fae",
  8168. default: true
  8169. },
  8170. faeSitting: {
  8171. height: math.unit(5, "cm"),
  8172. weight: math.unit(10, "grams"),
  8173. name: "Sitting",
  8174. image: {
  8175. source: "./media/characters/rose/fae-sitting.svg",
  8176. extra: 737/577,
  8177. bottom: 356/1093
  8178. },
  8179. form: "fae"
  8180. },
  8181. faePaw: {
  8182. height: math.unit(1.35, "cm"),
  8183. name: "Paw",
  8184. image: {
  8185. source: "./media/characters/rose/fae-paw.svg"
  8186. },
  8187. form: "fae"
  8188. },
  8189. },
  8190. [
  8191. {
  8192. name: "True Micro",
  8193. height: math.unit(9, "cm"),
  8194. form: "liom"
  8195. },
  8196. {
  8197. name: "Micro",
  8198. height: math.unit(16, "cm"),
  8199. form: "liom"
  8200. },
  8201. {
  8202. name: "Normal",
  8203. height: math.unit(1.85, "meters"),
  8204. default: true,
  8205. form: "liom"
  8206. },
  8207. {
  8208. name: "Mini-Macro",
  8209. height: math.unit(5, "meters"),
  8210. form: "liom"
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(15, "meters"),
  8215. form: "liom"
  8216. },
  8217. {
  8218. name: "True Macro",
  8219. height: math.unit(40, "meters"),
  8220. form: "liom"
  8221. },
  8222. {
  8223. name: "City Scale",
  8224. height: math.unit(1, "km"),
  8225. form: "liom"
  8226. },
  8227. {
  8228. name: "Plushie",
  8229. height: math.unit(9, "cm"),
  8230. form: "plush",
  8231. default: true
  8232. },
  8233. {
  8234. name: "Fae",
  8235. height: math.unit(10, "cm"),
  8236. form: "fae",
  8237. default: true
  8238. },
  8239. ],
  8240. {
  8241. "liom": {
  8242. name: "Liom"
  8243. },
  8244. "plush": {
  8245. name: "Plush"
  8246. },
  8247. "fae": {
  8248. name: "Fae Fox",
  8249. default: true
  8250. }
  8251. }
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(2, "meters"),
  8258. weight: math.unit(350, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/regal/front.svg"
  8262. }
  8263. },
  8264. back: {
  8265. height: math.unit(2, "meters"),
  8266. weight: math.unit(350, "lbs"),
  8267. name: "Back",
  8268. image: {
  8269. source: "./media/characters/regal/back.svg"
  8270. }
  8271. },
  8272. },
  8273. [
  8274. {
  8275. name: "Macro",
  8276. height: math.unit(350, "feet"),
  8277. default: true
  8278. }
  8279. ]
  8280. ))
  8281. characterMakers.push(() => makeCharacter(
  8282. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8283. {
  8284. standing: {
  8285. height: math.unit(4 + 11/12, "feet"),
  8286. weight: math.unit(100, "lb"),
  8287. name: "Standing",
  8288. image: {
  8289. source: "./media/characters/opal/standing.svg",
  8290. extra: 1588/1513,
  8291. bottom: 23/1611
  8292. }
  8293. },
  8294. sitting: {
  8295. height: math.unit(2.3, "feet"),
  8296. weight: math.unit(100, "lb"),
  8297. name: "Sitting",
  8298. image: {
  8299. source: "./media/characters/opal/sitting.svg",
  8300. extra: 1031/892,
  8301. bottom: 142/1173
  8302. }
  8303. },
  8304. hand: {
  8305. height: math.unit(0.59, "feet"),
  8306. name: "Hand",
  8307. image: {
  8308. source: "./media/characters/opal/hand.svg"
  8309. }
  8310. },
  8311. foot: {
  8312. height: math.unit(0.61, "feet"),
  8313. name: "Foot",
  8314. image: {
  8315. source: "./media/characters/opal/foot.svg"
  8316. }
  8317. },
  8318. },
  8319. [
  8320. {
  8321. name: "Small",
  8322. height: math.unit(4 + 11 / 12, "feet")
  8323. },
  8324. {
  8325. name: "Normal",
  8326. height: math.unit(20, "feet"),
  8327. default: true
  8328. },
  8329. {
  8330. name: "Macro",
  8331. height: math.unit(120, "feet")
  8332. },
  8333. {
  8334. name: "Megamacro",
  8335. height: math.unit(80, "miles")
  8336. },
  8337. {
  8338. name: "True Size",
  8339. height: math.unit(100000, "lightyears")
  8340. },
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8345. {
  8346. front: {
  8347. height: math.unit(6, "feet"),
  8348. weight: math.unit(200, "lbs"),
  8349. name: "Front",
  8350. image: {
  8351. source: "./media/characters/vector-wuff/front.svg"
  8352. }
  8353. }
  8354. },
  8355. [
  8356. {
  8357. name: "Normal",
  8358. height: math.unit(2.8, "meters")
  8359. },
  8360. {
  8361. name: "Macro",
  8362. height: math.unit(450, "meters"),
  8363. default: true
  8364. },
  8365. {
  8366. name: "Megamacro",
  8367. height: math.unit(15, "kilometers")
  8368. }
  8369. ]
  8370. ))
  8371. characterMakers.push(() => makeCharacter(
  8372. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8373. {
  8374. front: {
  8375. height: math.unit(6, "feet"),
  8376. weight: math.unit(256, "lbs"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/dannik/front.svg"
  8380. }
  8381. }
  8382. },
  8383. [
  8384. {
  8385. name: "Macro",
  8386. height: math.unit(69.57, "meters"),
  8387. default: true
  8388. },
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8393. {
  8394. front: {
  8395. height: math.unit(6, "feet"),
  8396. weight: math.unit(120, "lbs"),
  8397. name: "Front",
  8398. image: {
  8399. source: "./media/characters/azura-saharah/front.svg"
  8400. }
  8401. },
  8402. back: {
  8403. height: math.unit(6, "feet"),
  8404. weight: math.unit(120, "lbs"),
  8405. name: "Back",
  8406. image: {
  8407. source: "./media/characters/azura-saharah/back.svg"
  8408. }
  8409. },
  8410. },
  8411. [
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(100, "feet"),
  8415. default: true
  8416. },
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8421. {
  8422. side: {
  8423. height: math.unit(5 + 4 / 12, "feet"),
  8424. weight: math.unit(163, "lbs"),
  8425. name: "Side",
  8426. image: {
  8427. source: "./media/characters/kennedy/side.svg"
  8428. }
  8429. }
  8430. },
  8431. [
  8432. {
  8433. name: "Standard Doggo",
  8434. height: math.unit(5 + 4 / 12, "feet")
  8435. },
  8436. {
  8437. name: "Big Doggo",
  8438. height: math.unit(25 + 3 / 12, "feet"),
  8439. default: true
  8440. },
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(5 + 5/12, "feet"),
  8448. weight: math.unit(100, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/odios-de-lunar/front.svg",
  8452. extra: 1468/1323,
  8453. bottom: 22/1490
  8454. }
  8455. }
  8456. },
  8457. [
  8458. {
  8459. name: "Micro",
  8460. height: math.unit(3, "inches")
  8461. },
  8462. {
  8463. name: "Normal",
  8464. height: math.unit(5.5, "feet"),
  8465. default: true
  8466. },
  8467. {
  8468. name: "Macro",
  8469. height: math.unit(100, "feet")
  8470. },
  8471. ]
  8472. ))
  8473. characterMakers.push(() => makeCharacter(
  8474. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8475. {
  8476. back: {
  8477. height: math.unit(6, "feet"),
  8478. weight: math.unit(220, "lbs"),
  8479. name: "Back",
  8480. image: {
  8481. source: "./media/characters/mandake/back.svg"
  8482. }
  8483. }
  8484. },
  8485. [
  8486. {
  8487. name: "Normal",
  8488. height: math.unit(7, "feet"),
  8489. default: true
  8490. },
  8491. {
  8492. name: "Macro",
  8493. height: math.unit(78, "feet")
  8494. },
  8495. {
  8496. name: "Macro+",
  8497. height: math.unit(300, "meters")
  8498. },
  8499. {
  8500. name: "Macro++",
  8501. height: math.unit(2400, "feet")
  8502. },
  8503. {
  8504. name: "Megamacro",
  8505. height: math.unit(5167, "meters")
  8506. },
  8507. {
  8508. name: "Gigamacro",
  8509. height: math.unit(41769, "miles")
  8510. },
  8511. ]
  8512. ))
  8513. characterMakers.push(() => makeCharacter(
  8514. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8515. {
  8516. front: {
  8517. height: math.unit(6, "feet"),
  8518. weight: math.unit(120, "lbs"),
  8519. name: "Front",
  8520. image: {
  8521. source: "./media/characters/yozey/front.svg"
  8522. }
  8523. },
  8524. frontAlt: {
  8525. height: math.unit(6, "feet"),
  8526. weight: math.unit(120, "lbs"),
  8527. name: "Front (Alt)",
  8528. image: {
  8529. source: "./media/characters/yozey/front-alt.svg"
  8530. }
  8531. },
  8532. side: {
  8533. height: math.unit(6, "feet"),
  8534. weight: math.unit(120, "lbs"),
  8535. name: "Side",
  8536. image: {
  8537. source: "./media/characters/yozey/side.svg"
  8538. }
  8539. },
  8540. },
  8541. [
  8542. {
  8543. name: "Micro",
  8544. height: math.unit(3, "inches"),
  8545. default: true
  8546. },
  8547. {
  8548. name: "Normal",
  8549. height: math.unit(6, "feet")
  8550. }
  8551. ]
  8552. ))
  8553. characterMakers.push(() => makeCharacter(
  8554. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8555. {
  8556. front: {
  8557. height: math.unit(6, "feet"),
  8558. weight: math.unit(103, "lbs"),
  8559. name: "Front",
  8560. image: {
  8561. source: "./media/characters/valeska-voss/front.svg"
  8562. }
  8563. }
  8564. },
  8565. [
  8566. {
  8567. name: "Mini-Sized Sub",
  8568. height: math.unit(3.1, "inches")
  8569. },
  8570. {
  8571. name: "Mid-Sized Sub",
  8572. height: math.unit(6.2, "inches")
  8573. },
  8574. {
  8575. name: "Full-Sized Sub",
  8576. height: math.unit(9.3, "inches")
  8577. },
  8578. {
  8579. name: "Normal",
  8580. height: math.unit(5 + 2 / 12, "foot"),
  8581. default: true
  8582. },
  8583. ]
  8584. ))
  8585. characterMakers.push(() => makeCharacter(
  8586. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8587. {
  8588. front: {
  8589. height: math.unit(6, "feet"),
  8590. weight: math.unit(160, "lbs"),
  8591. name: "Front",
  8592. image: {
  8593. source: "./media/characters/gene-zeta/front.svg",
  8594. extra: 3006 / 2826,
  8595. bottom: 182 / 3188
  8596. }
  8597. }
  8598. },
  8599. [
  8600. {
  8601. name: "Micro",
  8602. height: math.unit(6, "inches")
  8603. },
  8604. {
  8605. name: "Normal",
  8606. height: math.unit(5 + 11 / 12, "foot"),
  8607. default: true
  8608. },
  8609. {
  8610. name: "Macro",
  8611. height: math.unit(140, "feet")
  8612. },
  8613. {
  8614. name: "Supercharged",
  8615. height: math.unit(2500, "feet")
  8616. },
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8621. {
  8622. front: {
  8623. height: math.unit(6, "feet"),
  8624. weight: math.unit(350, "lbs"),
  8625. name: "Front",
  8626. image: {
  8627. source: "./media/characters/razinox/front.svg",
  8628. extra: 1686 / 1548,
  8629. bottom: 28.2 / 1868
  8630. }
  8631. },
  8632. back: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(350, "lbs"),
  8635. name: "Back",
  8636. image: {
  8637. source: "./media/characters/razinox/back.svg",
  8638. extra: 1660 / 1590,
  8639. bottom: 15 / 1665
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(10 + 8 / 12, "foot")
  8647. },
  8648. {
  8649. name: "Minimacro",
  8650. height: math.unit(15, "foot")
  8651. },
  8652. {
  8653. name: "Macro",
  8654. height: math.unit(60, "foot"),
  8655. default: true
  8656. },
  8657. {
  8658. name: "Megamacro",
  8659. height: math.unit(5, "miles")
  8660. },
  8661. {
  8662. name: "Gigamacro",
  8663. height: math.unit(6000, "miles")
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8669. {
  8670. front: {
  8671. height: math.unit(6, "feet"),
  8672. weight: math.unit(150, "lbs"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/cobalt/front.svg"
  8676. }
  8677. }
  8678. },
  8679. [
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(8 + 1 / 12, "foot")
  8683. },
  8684. {
  8685. name: "Macro",
  8686. height: math.unit(111, "foot"),
  8687. default: true
  8688. },
  8689. {
  8690. name: "Supracosmic",
  8691. height: math.unit(1e42, "feet")
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(5, "inches"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/amanda/front.svg",
  8703. extra: 926/791,
  8704. bottom: 38/964
  8705. }
  8706. },
  8707. back: {
  8708. height: math.unit(5, "inches"),
  8709. name: "Back",
  8710. image: {
  8711. source: "./media/characters/amanda/back.svg",
  8712. extra: 909/805,
  8713. bottom: 43/952
  8714. }
  8715. },
  8716. },
  8717. [
  8718. {
  8719. name: "Micro",
  8720. height: math.unit(5, "inches"),
  8721. default: true
  8722. },
  8723. ]
  8724. ))
  8725. characterMakers.push(() => makeCharacter(
  8726. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8727. {
  8728. front: {
  8729. height: math.unit(2.75, "meters"),
  8730. weight: math.unit(1200, "lb"),
  8731. name: "Front",
  8732. image: {
  8733. source: "./media/characters/teal/front.svg",
  8734. extra: 2463 / 2320,
  8735. bottom: 166 / 2629
  8736. }
  8737. },
  8738. back: {
  8739. height: math.unit(2.75, "meters"),
  8740. weight: math.unit(1200, "lb"),
  8741. name: "Back",
  8742. image: {
  8743. source: "./media/characters/teal/back.svg",
  8744. extra: 2580 / 2489,
  8745. bottom: 151 / 2731
  8746. }
  8747. },
  8748. sitting: {
  8749. height: math.unit(1.9, "meters"),
  8750. weight: math.unit(1200, "lb"),
  8751. name: "Sitting",
  8752. image: {
  8753. source: "./media/characters/teal/sitting.svg",
  8754. extra: 623 / 590,
  8755. bottom: 121 / 744
  8756. }
  8757. },
  8758. standing: {
  8759. height: math.unit(2.75, "meters"),
  8760. weight: math.unit(1200, "lb"),
  8761. name: "Standing",
  8762. image: {
  8763. source: "./media/characters/teal/standing.svg",
  8764. extra: 923 / 893,
  8765. bottom: 60 / 983
  8766. }
  8767. },
  8768. stretching: {
  8769. height: math.unit(3.65, "meters"),
  8770. weight: math.unit(1200, "lb"),
  8771. name: "Stretching",
  8772. image: {
  8773. source: "./media/characters/teal/stretching.svg",
  8774. extra: 1276 / 1244,
  8775. bottom: 0 / 1276
  8776. }
  8777. },
  8778. legged: {
  8779. height: math.unit(1.3, "meters"),
  8780. weight: math.unit(100, "lb"),
  8781. name: "Legged",
  8782. image: {
  8783. source: "./media/characters/teal/legged.svg",
  8784. extra: 462 / 437,
  8785. bottom: 24 / 486
  8786. }
  8787. },
  8788. naga: {
  8789. height: math.unit(5.4, "meters"),
  8790. weight: math.unit(4000, "lb"),
  8791. name: "Naga",
  8792. image: {
  8793. source: "./media/characters/teal/naga.svg",
  8794. extra: 1902 / 1858,
  8795. bottom: 0 / 1902
  8796. }
  8797. },
  8798. hand: {
  8799. height: math.unit(0.52, "meters"),
  8800. name: "Hand",
  8801. image: {
  8802. source: "./media/characters/teal/hand.svg"
  8803. }
  8804. },
  8805. maw: {
  8806. height: math.unit(0.43, "meters"),
  8807. name: "Maw",
  8808. image: {
  8809. source: "./media/characters/teal/maw.svg"
  8810. }
  8811. },
  8812. slit: {
  8813. height: math.unit(0.25, "meters"),
  8814. name: "Slit",
  8815. image: {
  8816. source: "./media/characters/teal/slit.svg"
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(2.75, "meters"),
  8824. default: true
  8825. },
  8826. {
  8827. name: "Macro",
  8828. height: math.unit(300, "feet")
  8829. },
  8830. {
  8831. name: "Macro+",
  8832. height: math.unit(2000, "feet")
  8833. },
  8834. ]
  8835. ))
  8836. characterMakers.push(() => makeCharacter(
  8837. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8838. {
  8839. frontCat: {
  8840. height: math.unit(6, "feet"),
  8841. weight: math.unit(180, "lbs"),
  8842. name: "Front (Cat)",
  8843. image: {
  8844. source: "./media/characters/ravin-amulet/front-cat.svg"
  8845. }
  8846. },
  8847. frontCatAlt: {
  8848. height: math.unit(6, "feet"),
  8849. weight: math.unit(180, "lbs"),
  8850. name: "Front (Alt, Cat)",
  8851. image: {
  8852. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8853. }
  8854. },
  8855. frontWerewolf: {
  8856. height: math.unit(6 * 1.2, "feet"),
  8857. weight: math.unit(225, "lbs"),
  8858. name: "Front (Werewolf)",
  8859. image: {
  8860. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8861. }
  8862. },
  8863. backWerewolf: {
  8864. height: math.unit(6 * 1.2, "feet"),
  8865. weight: math.unit(225, "lbs"),
  8866. name: "Back (Werewolf)",
  8867. image: {
  8868. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8869. }
  8870. },
  8871. },
  8872. [
  8873. {
  8874. name: "Nano",
  8875. height: math.unit(1, "micrometer")
  8876. },
  8877. {
  8878. name: "Micro",
  8879. height: math.unit(1, "inch")
  8880. },
  8881. {
  8882. name: "Normal",
  8883. height: math.unit(6, "feet"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Macro",
  8888. height: math.unit(60, "feet")
  8889. }
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8894. {
  8895. front: {
  8896. height: math.unit(6, "feet"),
  8897. weight: math.unit(165, "lbs"),
  8898. name: "Front",
  8899. image: {
  8900. source: "./media/characters/fluoresce/front.svg"
  8901. }
  8902. }
  8903. },
  8904. [
  8905. {
  8906. name: "Micro",
  8907. height: math.unit(6, "cm")
  8908. },
  8909. {
  8910. name: "Normal",
  8911. height: math.unit(5 + 7 / 12, "feet"),
  8912. default: true
  8913. },
  8914. {
  8915. name: "Macro",
  8916. height: math.unit(56, "feet")
  8917. },
  8918. {
  8919. name: "Megamacro",
  8920. height: math.unit(1.9, "miles")
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(9 + 6 / 12, "feet"),
  8929. weight: math.unit(523, "lbs"),
  8930. name: "Side",
  8931. image: {
  8932. source: "./media/characters/aurora/side.svg",
  8933. extra: 474/393,
  8934. bottom: 5/479
  8935. }
  8936. }
  8937. },
  8938. [
  8939. {
  8940. name: "Normal",
  8941. height: math.unit(9 + 6 / 12, "feet")
  8942. },
  8943. {
  8944. name: "Macro",
  8945. height: math.unit(96, "feet"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Macro+",
  8950. height: math.unit(243, "feet")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(194, "cm"),
  8959. weight: math.unit(90, "kg"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/ranek/front.svg",
  8963. extra: 1862/1791,
  8964. bottom: 80/1942
  8965. }
  8966. },
  8967. back: {
  8968. height: math.unit(194, "cm"),
  8969. weight: math.unit(90, "kg"),
  8970. name: "Back",
  8971. image: {
  8972. source: "./media/characters/ranek/back.svg",
  8973. extra: 1853/1787,
  8974. bottom: 74/1927
  8975. }
  8976. },
  8977. feral: {
  8978. height: math.unit(30, "cm"),
  8979. weight: math.unit(1.6, "lbs"),
  8980. name: "Feral",
  8981. image: {
  8982. source: "./media/characters/ranek/feral.svg",
  8983. extra: 990/631,
  8984. bottom: 29/1019
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Normal",
  8991. height: math.unit(194, "cm"),
  8992. default: true
  8993. },
  8994. {
  8995. name: "Macro",
  8996. height: math.unit(100, "meters")
  8997. },
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9002. {
  9003. front: {
  9004. height: math.unit(5 + 6 / 12, "feet"),
  9005. weight: math.unit(153, "lbs"),
  9006. name: "Front",
  9007. image: {
  9008. source: "./media/characters/andrew-cooper/front.svg"
  9009. }
  9010. },
  9011. },
  9012. [
  9013. {
  9014. name: "Nano",
  9015. height: math.unit(1, "mm")
  9016. },
  9017. {
  9018. name: "Micro",
  9019. height: math.unit(2, "inches")
  9020. },
  9021. {
  9022. name: "Normal",
  9023. height: math.unit(5 + 6 / 12, "feet"),
  9024. default: true
  9025. }
  9026. ]
  9027. ))
  9028. characterMakers.push(() => makeCharacter(
  9029. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9030. {
  9031. front: {
  9032. height: math.unit(6, "feet"),
  9033. weight: math.unit(180, "lbs"),
  9034. name: "Front",
  9035. image: {
  9036. source: "./media/characters/akane-sato/front.svg",
  9037. extra: 1219 / 1140
  9038. }
  9039. },
  9040. back: {
  9041. height: math.unit(6, "feet"),
  9042. weight: math.unit(180, "lbs"),
  9043. name: "Back",
  9044. image: {
  9045. source: "./media/characters/akane-sato/back.svg",
  9046. extra: 1219 / 1170
  9047. }
  9048. },
  9049. },
  9050. [
  9051. {
  9052. name: "Normal",
  9053. height: math.unit(2.5, "meters")
  9054. },
  9055. {
  9056. name: "Macro",
  9057. height: math.unit(250, "meters"),
  9058. default: true
  9059. },
  9060. {
  9061. name: "Megamacro",
  9062. height: math.unit(25, "km")
  9063. },
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9068. {
  9069. front: {
  9070. height: math.unit(6, "feet"),
  9071. weight: math.unit(65, "kg"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/rook/front.svg",
  9075. extra: 960 / 950
  9076. }
  9077. }
  9078. },
  9079. [
  9080. {
  9081. name: "Normal",
  9082. height: math.unit(8.8, "feet")
  9083. },
  9084. {
  9085. name: "Macro",
  9086. height: math.unit(88, "feet"),
  9087. default: true
  9088. },
  9089. {
  9090. name: "Megamacro",
  9091. height: math.unit(8, "miles")
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(12 + 2 / 12, "feet"),
  9100. weight: math.unit(808, "lbs"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/prodigy/front.svg"
  9104. }
  9105. }
  9106. },
  9107. [
  9108. {
  9109. name: "Normal",
  9110. height: math.unit(12 + 2 / 12, "feet"),
  9111. default: true
  9112. },
  9113. {
  9114. name: "Macro",
  9115. height: math.unit(143, "feet")
  9116. },
  9117. {
  9118. name: "Macro+",
  9119. height: math.unit(400, "feet")
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9125. {
  9126. front: {
  9127. height: math.unit(6, "feet"),
  9128. weight: math.unit(225, "lbs"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/daniel/front.svg"
  9132. }
  9133. },
  9134. leaning: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(225, "lbs"),
  9137. name: "Leaning",
  9138. image: {
  9139. source: "./media/characters/daniel/leaning.svg"
  9140. }
  9141. },
  9142. },
  9143. [
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(1000, "feet"),
  9147. default: true
  9148. },
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9153. {
  9154. front: {
  9155. height: math.unit(6, "feet"),
  9156. weight: math.unit(88, "lbs"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/chiros/front.svg",
  9160. extra: 306 / 226
  9161. }
  9162. },
  9163. side: {
  9164. height: math.unit(6, "feet"),
  9165. weight: math.unit(88, "lbs"),
  9166. name: "Side",
  9167. image: {
  9168. source: "./media/characters/chiros/side.svg",
  9169. extra: 306 / 226
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Normal",
  9176. height: math.unit(6, "cm"),
  9177. default: true
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9183. {
  9184. front: {
  9185. height: math.unit(6, "feet"),
  9186. weight: math.unit(100, "lbs"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/selka/front.svg",
  9190. extra: 947 / 887
  9191. }
  9192. }
  9193. },
  9194. [
  9195. {
  9196. name: "Normal",
  9197. height: math.unit(5, "cm"),
  9198. default: true
  9199. },
  9200. ]
  9201. ))
  9202. characterMakers.push(() => makeCharacter(
  9203. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9204. {
  9205. front: {
  9206. height: math.unit(8 + 3 / 12, "feet"),
  9207. weight: math.unit(424, "lbs"),
  9208. name: "Front",
  9209. image: {
  9210. source: "./media/characters/verin/front.svg",
  9211. extra: 1845 / 1550
  9212. }
  9213. },
  9214. frontArmored: {
  9215. height: math.unit(8 + 3 / 12, "feet"),
  9216. weight: math.unit(424, "lbs"),
  9217. name: "Front (Armored)",
  9218. image: {
  9219. source: "./media/characters/verin/front-armor.svg",
  9220. extra: 1845 / 1550,
  9221. bottom: 0.01
  9222. }
  9223. },
  9224. back: {
  9225. height: math.unit(8 + 3 / 12, "feet"),
  9226. weight: math.unit(424, "lbs"),
  9227. name: "Back",
  9228. image: {
  9229. source: "./media/characters/verin/back.svg",
  9230. bottom: 0.1,
  9231. extra: 1
  9232. }
  9233. },
  9234. foot: {
  9235. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9236. name: "Foot",
  9237. image: {
  9238. source: "./media/characters/verin/foot.svg"
  9239. }
  9240. },
  9241. },
  9242. [
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(8 + 3 / 12, "feet")
  9246. },
  9247. {
  9248. name: "Minimacro",
  9249. height: math.unit(21, "feet"),
  9250. default: true
  9251. },
  9252. {
  9253. name: "Macro",
  9254. height: math.unit(626, "feet")
  9255. },
  9256. ]
  9257. ))
  9258. characterMakers.push(() => makeCharacter(
  9259. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9260. {
  9261. front: {
  9262. height: math.unit(2.718, "meters"),
  9263. weight: math.unit(150, "lbs"),
  9264. name: "Front",
  9265. image: {
  9266. source: "./media/characters/sovrim-terraquian/front.svg",
  9267. extra: 1752/1689,
  9268. bottom: 36/1788
  9269. }
  9270. },
  9271. back: {
  9272. height: math.unit(2.718, "meters"),
  9273. weight: math.unit(150, "lbs"),
  9274. name: "Back",
  9275. image: {
  9276. source: "./media/characters/sovrim-terraquian/back.svg",
  9277. extra: 1698/1657,
  9278. bottom: 58/1756
  9279. }
  9280. },
  9281. tongue: {
  9282. height: math.unit(2.865, "feet"),
  9283. name: "Tongue",
  9284. image: {
  9285. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9286. }
  9287. },
  9288. hand: {
  9289. height: math.unit(1.61, "feet"),
  9290. name: "Hand",
  9291. image: {
  9292. source: "./media/characters/sovrim-terraquian/hand.svg"
  9293. }
  9294. },
  9295. foot: {
  9296. height: math.unit(1.05, "feet"),
  9297. name: "Foot",
  9298. image: {
  9299. source: "./media/characters/sovrim-terraquian/foot.svg"
  9300. }
  9301. },
  9302. footAlt: {
  9303. height: math.unit(0.88, "feet"),
  9304. name: "Foot (Alt)",
  9305. image: {
  9306. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9307. }
  9308. },
  9309. },
  9310. [
  9311. {
  9312. name: "Micro",
  9313. height: math.unit(2, "inches")
  9314. },
  9315. {
  9316. name: "Small",
  9317. height: math.unit(1, "meter")
  9318. },
  9319. {
  9320. name: "Normal",
  9321. height: math.unit(Math.E, "meters"),
  9322. default: true
  9323. },
  9324. {
  9325. name: "Macro",
  9326. height: math.unit(20, "meters")
  9327. },
  9328. {
  9329. name: "Macro+",
  9330. height: math.unit(400, "meters")
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9336. {
  9337. front: {
  9338. height: math.unit(7, "feet"),
  9339. weight: math.unit(489, "lbs"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/reece-silvermane/front.svg",
  9343. bottom: 0.02,
  9344. extra: 1
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Macro",
  9351. height: math.unit(1.5, "miles"),
  9352. default: true
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(6, "feet"),
  9361. weight: math.unit(78, "kg"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/kane/front.svg",
  9365. extra: 978 / 899
  9366. }
  9367. },
  9368. back: {
  9369. height: math.unit(6, "feet"),
  9370. weight: math.unit(78, "kg"),
  9371. name: "Back",
  9372. image: {
  9373. source: "./media/characters/kane/back.svg",
  9374. extra: 1966/1800,
  9375. bottom: 0/1966
  9376. }
  9377. },
  9378. head: {
  9379. height: math.unit(1.4, "feet"),
  9380. name: "Head",
  9381. image: {
  9382. source: "./media/characters/kane/head.svg"
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Normal",
  9389. height: math.unit(2.1, "m"),
  9390. },
  9391. {
  9392. name: "Macro",
  9393. height: math.unit(1, "km"),
  9394. default: true
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(6, "feet"),
  9403. weight: math.unit(200, "kg"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/tegon/front.svg",
  9407. bottom: 0.01,
  9408. extra: 1
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Micro",
  9415. height: math.unit(1, "inch")
  9416. },
  9417. {
  9418. name: "Normal",
  9419. height: math.unit(6 + 3 / 12, "feet"),
  9420. default: true
  9421. },
  9422. {
  9423. name: "Macro",
  9424. height: math.unit(300, "feet")
  9425. },
  9426. {
  9427. name: "Megamacro",
  9428. height: math.unit(69, "miles")
  9429. },
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9434. {
  9435. side: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(2304, "lbs"),
  9438. name: "Side",
  9439. image: {
  9440. source: "./media/characters/arcturax/side.svg",
  9441. extra: 790 / 376,
  9442. bottom: 0.01
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Micro",
  9449. height: math.unit(2, "inch")
  9450. },
  9451. {
  9452. name: "Normal",
  9453. height: math.unit(6, "feet")
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(39, "feet"),
  9458. default: true
  9459. },
  9460. {
  9461. name: "Megamacro",
  9462. height: math.unit(7, "miles")
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9468. {
  9469. front: {
  9470. height: math.unit(6, "feet"),
  9471. weight: math.unit(50, "lbs"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/sentri/front.svg",
  9475. extra: 1750 / 1570,
  9476. bottom: 0.025
  9477. }
  9478. },
  9479. frontAlt: {
  9480. height: math.unit(6, "feet"),
  9481. weight: math.unit(50, "lbs"),
  9482. name: "Front (Alt)",
  9483. image: {
  9484. source: "./media/characters/sentri/front-alt.svg",
  9485. extra: 1750 / 1570,
  9486. bottom: 0.025
  9487. }
  9488. },
  9489. },
  9490. [
  9491. {
  9492. name: "Normal",
  9493. height: math.unit(15, "feet"),
  9494. default: true
  9495. },
  9496. {
  9497. name: "Macro",
  9498. height: math.unit(2500, "feet")
  9499. }
  9500. ]
  9501. ))
  9502. characterMakers.push(() => makeCharacter(
  9503. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9504. {
  9505. front: {
  9506. height: math.unit(5 + 8 / 12, "feet"),
  9507. weight: math.unit(130, "lbs"),
  9508. name: "Front",
  9509. image: {
  9510. source: "./media/characters/corvin/front.svg",
  9511. extra: 1803 / 1629
  9512. }
  9513. },
  9514. frontShirt: {
  9515. height: math.unit(5 + 8 / 12, "feet"),
  9516. weight: math.unit(130, "lbs"),
  9517. name: "Front (Shirt)",
  9518. image: {
  9519. source: "./media/characters/corvin/front-shirt.svg",
  9520. extra: 1803 / 1629
  9521. }
  9522. },
  9523. frontPoncho: {
  9524. height: math.unit(5 + 8 / 12, "feet"),
  9525. weight: math.unit(130, "lbs"),
  9526. name: "Front (Poncho)",
  9527. image: {
  9528. source: "./media/characters/corvin/front-poncho.svg",
  9529. extra: 1803 / 1629
  9530. }
  9531. },
  9532. side: {
  9533. height: math.unit(5 + 8 / 12, "feet"),
  9534. weight: math.unit(130, "lbs"),
  9535. name: "Side",
  9536. image: {
  9537. source: "./media/characters/corvin/side.svg",
  9538. extra: 1012 / 945
  9539. }
  9540. },
  9541. back: {
  9542. height: math.unit(5 + 8 / 12, "feet"),
  9543. weight: math.unit(130, "lbs"),
  9544. name: "Back",
  9545. image: {
  9546. source: "./media/characters/corvin/back.svg",
  9547. extra: 1803 / 1629
  9548. }
  9549. },
  9550. },
  9551. [
  9552. {
  9553. name: "Micro",
  9554. height: math.unit(3, "inches")
  9555. },
  9556. {
  9557. name: "Normal",
  9558. height: math.unit(5 + 8 / 12, "feet")
  9559. },
  9560. {
  9561. name: "Macro",
  9562. height: math.unit(300, "feet"),
  9563. default: true
  9564. },
  9565. {
  9566. name: "Megamacro",
  9567. height: math.unit(500, "miles")
  9568. }
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9573. {
  9574. front: {
  9575. height: math.unit(6, "feet"),
  9576. weight: math.unit(135, "lbs"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/q/front.svg",
  9580. extra: 854 / 752,
  9581. bottom: 0.005
  9582. }
  9583. },
  9584. back: {
  9585. height: math.unit(6, "feet"),
  9586. weight: math.unit(130, "lbs"),
  9587. name: "Back",
  9588. image: {
  9589. source: "./media/characters/q/back.svg",
  9590. extra: 854 / 752
  9591. }
  9592. },
  9593. },
  9594. [
  9595. {
  9596. name: "Macro",
  9597. height: math.unit(90, "feet"),
  9598. default: true
  9599. },
  9600. {
  9601. name: "Extra Macro",
  9602. height: math.unit(300, "feet"),
  9603. },
  9604. {
  9605. name: "BIG WALF",
  9606. height: math.unit(750, "feet"),
  9607. },
  9608. ]
  9609. ))
  9610. characterMakers.push(() => makeCharacter(
  9611. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9612. {
  9613. front: {
  9614. height: math.unit(3, "feet"),
  9615. weight: math.unit(28, "lbs"),
  9616. name: "Front",
  9617. image: {
  9618. source: "./media/characters/citrine/front.svg"
  9619. }
  9620. }
  9621. },
  9622. [
  9623. {
  9624. name: "Normal",
  9625. height: math.unit(3, "feet"),
  9626. default: true
  9627. }
  9628. ]
  9629. ))
  9630. characterMakers.push(() => makeCharacter(
  9631. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9632. {
  9633. front: {
  9634. height: math.unit(14, "feet"),
  9635. weight: math.unit(1450, "kg"),
  9636. preyCapacity: math.unit(15, "people"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/aura-starwind/front.svg",
  9640. extra: 1440/1327,
  9641. bottom: 11/1451
  9642. }
  9643. },
  9644. side: {
  9645. height: math.unit(14, "feet"),
  9646. weight: math.unit(1450, "kg"),
  9647. preyCapacity: math.unit(15, "people"),
  9648. name: "Side",
  9649. image: {
  9650. source: "./media/characters/aura-starwind/side.svg",
  9651. extra: 1654 / 1497
  9652. }
  9653. },
  9654. taur: {
  9655. height: math.unit(18, "feet"),
  9656. weight: math.unit(5500, "kg"),
  9657. preyCapacity: math.unit(50, "people"),
  9658. name: "Taur",
  9659. image: {
  9660. source: "./media/characters/aura-starwind/taur.svg",
  9661. extra: 1760 / 1650
  9662. }
  9663. },
  9664. feral: {
  9665. height: math.unit(46, "feet"),
  9666. weight: math.unit(25000, "kg"),
  9667. preyCapacity: math.unit(120, "people"),
  9668. name: "Feral",
  9669. image: {
  9670. source: "./media/characters/aura-starwind/feral.svg"
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Normal",
  9677. height: math.unit(14, "feet"),
  9678. default: true
  9679. },
  9680. {
  9681. name: "Macro",
  9682. height: math.unit(50, "meters")
  9683. },
  9684. {
  9685. name: "Megamacro",
  9686. height: math.unit(5000, "meters")
  9687. },
  9688. {
  9689. name: "Gigamacro",
  9690. height: math.unit(100000, "kilometers")
  9691. },
  9692. ]
  9693. ))
  9694. characterMakers.push(() => makeCharacter(
  9695. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9696. {
  9697. front: {
  9698. height: math.unit(2 + 7 / 12, "feet"),
  9699. weight: math.unit(32, "lbs"),
  9700. name: "Front",
  9701. image: {
  9702. source: "./media/characters/rivet/front.svg",
  9703. extra: 1716 / 1658,
  9704. bottom: 0.03
  9705. }
  9706. },
  9707. foot: {
  9708. height: math.unit(0.551, "feet"),
  9709. name: "Rivet's Foot",
  9710. image: {
  9711. source: "./media/characters/rivet/foot.svg"
  9712. },
  9713. rename: true
  9714. }
  9715. },
  9716. [
  9717. {
  9718. name: "Micro",
  9719. height: math.unit(1.5, "inches"),
  9720. },
  9721. {
  9722. name: "Normal",
  9723. height: math.unit(2 + 7 / 12, "feet"),
  9724. default: true
  9725. },
  9726. {
  9727. name: "Macro",
  9728. height: math.unit(85, "feet")
  9729. },
  9730. {
  9731. name: "Megamacro",
  9732. height: math.unit(2.2, "km")
  9733. }
  9734. ]
  9735. ))
  9736. characterMakers.push(() => makeCharacter(
  9737. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9738. {
  9739. front: {
  9740. height: math.unit(5 + 9 / 12, "feet"),
  9741. weight: math.unit(150, "lbs"),
  9742. name: "Front",
  9743. image: {
  9744. source: "./media/characters/coffee/front.svg",
  9745. extra: 946/880,
  9746. bottom: 66/1012
  9747. }
  9748. },
  9749. foot: {
  9750. height: math.unit(1.29, "feet"),
  9751. name: "Foot",
  9752. image: {
  9753. source: "./media/characters/coffee/foot.svg"
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Micro",
  9760. height: math.unit(2, "inches"),
  9761. },
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(5 + 9 / 12, "feet"),
  9765. default: true
  9766. },
  9767. {
  9768. name: "Macro",
  9769. height: math.unit(800, "feet")
  9770. },
  9771. {
  9772. name: "Megamacro",
  9773. height: math.unit(25, "miles")
  9774. }
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9779. {
  9780. front: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(200, "lbs"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/chari-gal/front.svg",
  9786. extra: 735/649,
  9787. bottom: 55/790
  9788. },
  9789. form: "normal",
  9790. default: true
  9791. },
  9792. back: {
  9793. height: math.unit(6, "feet"),
  9794. weight: math.unit(200, "lb"),
  9795. name: "Back",
  9796. image: {
  9797. source: "./media/characters/chari-gal/back.svg",
  9798. extra: 762/666,
  9799. bottom: 31/793
  9800. },
  9801. form: "normal"
  9802. },
  9803. mouth: {
  9804. height: math.unit(1.35, "feet"),
  9805. name: "Mouth",
  9806. image: {
  9807. source: "./media/characters/chari-gal/mouth.svg"
  9808. },
  9809. form: "normal"
  9810. },
  9811. gigantamax: {
  9812. height: math.unit(6 * 16, "feet"),
  9813. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9814. name: "Gigantamax",
  9815. image: {
  9816. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9817. extra: 1507/1149,
  9818. bottom: 254/1761
  9819. },
  9820. form: "gigantamax",
  9821. default: true
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Normal",
  9827. height: math.unit(5 + 7 / 12, "feet"),
  9828. form: "normal",
  9829. },
  9830. {
  9831. name: "Macro",
  9832. height: math.unit(200, "feet"),
  9833. default: true,
  9834. form: "normal"
  9835. },
  9836. {
  9837. name: "Normal",
  9838. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9839. form: "gigantamax",
  9840. },
  9841. {
  9842. name: "Macro",
  9843. height: math.unit(16 * 200, "feet"),
  9844. default: true,
  9845. form: "gigantamax"
  9846. },
  9847. ],
  9848. {
  9849. "normal": {
  9850. name: "Normal",
  9851. default: true
  9852. },
  9853. "gigantamax": {
  9854. name: "Gigantamax",
  9855. },
  9856. }
  9857. ))
  9858. characterMakers.push(() => makeCharacter(
  9859. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9860. {
  9861. front: {
  9862. height: math.unit(6, "feet"),
  9863. weight: math.unit(150, "lbs"),
  9864. name: "Front",
  9865. image: {
  9866. source: "./media/characters/nova/front.svg",
  9867. extra: 5000 / 4722,
  9868. bottom: 0.02
  9869. }
  9870. }
  9871. },
  9872. [
  9873. {
  9874. name: "Micro-",
  9875. height: math.unit(0.8, "inches")
  9876. },
  9877. {
  9878. name: "Micro",
  9879. height: math.unit(2, "inches"),
  9880. default: true
  9881. },
  9882. ]
  9883. ))
  9884. characterMakers.push(() => makeCharacter(
  9885. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9886. {
  9887. koboldFront: {
  9888. height: math.unit(3 + 1 / 12, "feet"),
  9889. weight: math.unit(21.7, "lbs"),
  9890. name: "Front",
  9891. image: {
  9892. source: "./media/characters/argent/kobold-front.svg",
  9893. extra: 1471 / 1331,
  9894. bottom: 100.8 / 1575.5
  9895. },
  9896. form: "kobold",
  9897. default: true
  9898. },
  9899. dragonFront: {
  9900. height: math.unit(75, "inches"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/argent/dragon-front.svg",
  9904. extra: 1389/1248,
  9905. bottom: 54/1443
  9906. },
  9907. form: "dragon",
  9908. },
  9909. dragonBack: {
  9910. height: math.unit(75, "inches"),
  9911. name: "Back",
  9912. image: {
  9913. source: "./media/characters/argent/dragon-back.svg",
  9914. extra: 1399/1271,
  9915. bottom: 23/1422
  9916. },
  9917. form: "dragon",
  9918. },
  9919. dragonDressed: {
  9920. height: math.unit(75, "inches"),
  9921. name: "Dressed",
  9922. image: {
  9923. source: "./media/characters/argent/dragon-dressed.svg",
  9924. extra: 1350/1215,
  9925. bottom: 26/1376
  9926. },
  9927. form: "dragon"
  9928. },
  9929. dragonHead: {
  9930. height: math.unit(23.5, "inches"),
  9931. name: "Head",
  9932. image: {
  9933. source: "./media/characters/argent/dragon-head.svg"
  9934. },
  9935. form: "dragon",
  9936. },
  9937. },
  9938. [
  9939. {
  9940. name: "Micro",
  9941. height: math.unit(2, "inches"),
  9942. form: "kobold",
  9943. },
  9944. {
  9945. name: "Normal",
  9946. height: math.unit(3 + 1 / 12, "feet"),
  9947. form: "kobold",
  9948. default: true
  9949. },
  9950. {
  9951. name: "Macro",
  9952. height: math.unit(120, "feet"),
  9953. form: "kobold",
  9954. },
  9955. {
  9956. name: "Speck",
  9957. height: math.unit(1, "mm"),
  9958. form: "dragon",
  9959. },
  9960. {
  9961. name: "Tiny",
  9962. height: math.unit(1, "cm"),
  9963. form: "dragon",
  9964. },
  9965. {
  9966. name: "Micro",
  9967. height: math.unit(5, "cm"),
  9968. form: "dragon",
  9969. },
  9970. {
  9971. name: "Normal",
  9972. height: math.unit(75, "inches"),
  9973. form: "dragon",
  9974. default: true
  9975. },
  9976. {
  9977. name: "Extra Tall",
  9978. height: math.unit(9, "feet"),
  9979. form: "dragon",
  9980. },
  9981. {
  9982. name: "Inconvenient",
  9983. height: math.unit(5, "meters"),
  9984. form: "dragon",
  9985. },
  9986. {
  9987. name: "Macro",
  9988. height: math.unit(70, "meters"),
  9989. form: "dragon",
  9990. },
  9991. {
  9992. name: "Macro+",
  9993. height: math.unit(250, "meters"),
  9994. form: "dragon",
  9995. },
  9996. {
  9997. name: "Megamacro",
  9998. height: math.unit(20, "km"),
  9999. form: "dragon",
  10000. },
  10001. {
  10002. name: "Mountainous",
  10003. height: math.unit(100, "km"),
  10004. form: "dragon",
  10005. },
  10006. {
  10007. name: "Continental",
  10008. height: math.unit(2, "megameters"),
  10009. form: "dragon",
  10010. },
  10011. {
  10012. name: "Too Big",
  10013. height: math.unit(900, "megameters"),
  10014. form: "dragon",
  10015. },
  10016. ],
  10017. {
  10018. "kobold": {
  10019. name: "Kobold",
  10020. default: true
  10021. },
  10022. "dragon": {
  10023. name: "Dragon",
  10024. },
  10025. }
  10026. ))
  10027. characterMakers.push(() => makeCharacter(
  10028. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10029. {
  10030. lamp: {
  10031. height: math.unit(7 * 1559 / 989, "feet"),
  10032. name: "Magic Lamp",
  10033. image: {
  10034. source: "./media/characters/mira-al-cul/lamp.svg",
  10035. extra: 1617 / 1559
  10036. }
  10037. },
  10038. front: {
  10039. height: math.unit(7, "feet"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/mira-al-cul/front.svg",
  10043. extra: 1044 / 990
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Heavily Restricted",
  10050. height: math.unit(7 * 1559 / 989, "feet")
  10051. },
  10052. {
  10053. name: "Freshly Freed",
  10054. height: math.unit(50 * 1559 / 989, "feet")
  10055. },
  10056. {
  10057. name: "World Encompassing",
  10058. height: math.unit(10000 * 1559 / 989, "miles")
  10059. },
  10060. {
  10061. name: "Galactic",
  10062. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10063. },
  10064. {
  10065. name: "Palmed Universe",
  10066. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10067. default: true
  10068. },
  10069. {
  10070. name: "Multiversal Matriarch",
  10071. height: math.unit(8.87e10, "yottameters")
  10072. },
  10073. {
  10074. name: "Void Mother",
  10075. height: math.unit(3.14e110, "yottaparsecs")
  10076. },
  10077. {
  10078. name: "Toying with Transcendence",
  10079. height: math.unit(1e307, "meters")
  10080. },
  10081. ]
  10082. ))
  10083. characterMakers.push(() => makeCharacter(
  10084. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10085. {
  10086. front: {
  10087. height: math.unit(17 + 1 / 12, "feet"),
  10088. weight: math.unit(476.2 * 5, "lbs"),
  10089. name: "Front",
  10090. image: {
  10091. source: "./media/characters/kuro-shi-uchū/front.svg",
  10092. extra: 2329 / 1835,
  10093. bottom: 0.02
  10094. }
  10095. },
  10096. },
  10097. [
  10098. {
  10099. name: "Micro",
  10100. height: math.unit(2, "inches")
  10101. },
  10102. {
  10103. name: "Normal",
  10104. height: math.unit(12, "meters")
  10105. },
  10106. {
  10107. name: "Planetary",
  10108. height: math.unit(0.00929, "AU"),
  10109. default: true
  10110. },
  10111. {
  10112. name: "Universal",
  10113. height: math.unit(20, "gigaparsecs")
  10114. },
  10115. ]
  10116. ))
  10117. characterMakers.push(() => makeCharacter(
  10118. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10119. {
  10120. front: {
  10121. height: math.unit(5 + 2 / 12, "feet"),
  10122. weight: math.unit(120, "lbs"),
  10123. name: "Front",
  10124. image: {
  10125. source: "./media/characters/katherine/front.svg",
  10126. extra: 2075 / 1969
  10127. }
  10128. },
  10129. dress: {
  10130. height: math.unit(5 + 2 / 12, "feet"),
  10131. weight: math.unit(120, "lbs"),
  10132. name: "Dress",
  10133. image: {
  10134. source: "./media/characters/katherine/dress.svg",
  10135. extra: 2258 / 2064
  10136. }
  10137. },
  10138. },
  10139. [
  10140. {
  10141. name: "Micro",
  10142. height: math.unit(1, "inches"),
  10143. default: true
  10144. },
  10145. {
  10146. name: "Normal",
  10147. height: math.unit(5 + 2 / 12, "feet")
  10148. },
  10149. {
  10150. name: "Macro",
  10151. height: math.unit(100, "meters")
  10152. },
  10153. {
  10154. name: "Megamacro",
  10155. height: math.unit(80, "miles")
  10156. },
  10157. ]
  10158. ))
  10159. characterMakers.push(() => makeCharacter(
  10160. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10161. {
  10162. front: {
  10163. height: math.unit(7 + 8 / 12, "feet"),
  10164. weight: math.unit(250, "lbs"),
  10165. name: "Front",
  10166. image: {
  10167. source: "./media/characters/yevis/front.svg",
  10168. extra: 1938 / 1755
  10169. }
  10170. }
  10171. },
  10172. [
  10173. {
  10174. name: "Mortal",
  10175. height: math.unit(7 + 8 / 12, "feet")
  10176. },
  10177. {
  10178. name: "Battle",
  10179. height: math.unit(25 + 11 / 12, "feet")
  10180. },
  10181. {
  10182. name: "Wrath",
  10183. height: math.unit(1654 + 11 / 12, "feet")
  10184. },
  10185. {
  10186. name: "Planet Destroyer",
  10187. height: math.unit(12000, "miles")
  10188. },
  10189. {
  10190. name: "Galaxy Conqueror",
  10191. height: math.unit(1.45, "zettameters"),
  10192. default: true
  10193. },
  10194. {
  10195. name: "Universal War",
  10196. height: math.unit(184, "gigaparsecs")
  10197. },
  10198. {
  10199. name: "Eternity War",
  10200. height: math.unit(1.98e55, "yottaparsecs")
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(5 + 8 / 12, "feet"),
  10209. weight: math.unit(63, "kg"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/xavier/front.svg",
  10213. extra: 944 / 883
  10214. }
  10215. },
  10216. frontStretch: {
  10217. height: math.unit(5 + 8 / 12, "feet"),
  10218. weight: math.unit(63, "kg"),
  10219. name: "Stretching",
  10220. image: {
  10221. source: "./media/characters/xavier/front-stretch.svg",
  10222. extra: 962 / 820
  10223. }
  10224. },
  10225. },
  10226. [
  10227. {
  10228. name: "Normal",
  10229. height: math.unit(5 + 8 / 12, "feet")
  10230. },
  10231. {
  10232. name: "Macro",
  10233. height: math.unit(100, "meters"),
  10234. default: true
  10235. },
  10236. {
  10237. name: "McLargeHuge",
  10238. height: math.unit(10, "miles")
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(5 + 5 / 12, "feet"),
  10247. weight: math.unit(150, "lb"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/joshii/front.svg",
  10251. extra: 765 / 653,
  10252. bottom: 51 / 816
  10253. }
  10254. },
  10255. foot: {
  10256. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10257. name: "Foot",
  10258. image: {
  10259. source: "./media/characters/joshii/foot.svg"
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Micro",
  10266. height: math.unit(2, "inches")
  10267. },
  10268. {
  10269. name: "Normal",
  10270. height: math.unit(5 + 5 / 12, "feet")
  10271. },
  10272. {
  10273. name: "Macro",
  10274. height: math.unit(785, "feet"),
  10275. default: true
  10276. },
  10277. {
  10278. name: "Megamacro",
  10279. height: math.unit(24.5, "miles")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10285. {
  10286. front: {
  10287. height: math.unit(6, "feet"),
  10288. weight: math.unit(150, "lb"),
  10289. name: "Front",
  10290. image: {
  10291. source: "./media/characters/goddess-elizabeth/front.svg",
  10292. extra: 1800 / 1525,
  10293. bottom: 0.005
  10294. }
  10295. },
  10296. foot: {
  10297. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10298. name: "Foot",
  10299. image: {
  10300. source: "./media/characters/goddess-elizabeth/foot.svg"
  10301. }
  10302. },
  10303. mouth: {
  10304. height: math.unit(6, "feet"),
  10305. name: "Mouth",
  10306. image: {
  10307. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10308. }
  10309. },
  10310. },
  10311. [
  10312. {
  10313. name: "Micro",
  10314. height: math.unit(12, "feet")
  10315. },
  10316. {
  10317. name: "Normal",
  10318. height: math.unit(80, "miles"),
  10319. default: true
  10320. },
  10321. {
  10322. name: "Macro",
  10323. height: math.unit(15000, "parsecs")
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10329. {
  10330. front: {
  10331. height: math.unit(5 + 9 / 12, "feet"),
  10332. weight: math.unit(144, "lb"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/kara/front.svg"
  10336. }
  10337. },
  10338. feet: {
  10339. height: math.unit(6 / 6.765, "feet"),
  10340. name: "Kara's Feet",
  10341. rename: true,
  10342. image: {
  10343. source: "./media/characters/kara/feet.svg"
  10344. }
  10345. },
  10346. },
  10347. [
  10348. {
  10349. name: "Normal",
  10350. height: math.unit(5 + 9 / 12, "feet")
  10351. },
  10352. {
  10353. name: "Macro",
  10354. height: math.unit(174, "feet"),
  10355. default: true
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10361. {
  10362. front: {
  10363. height: math.unit(18, "feet"),
  10364. weight: math.unit(4050, "lb"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/tyrone/front.svg",
  10368. extra: 2405 / 2270,
  10369. bottom: 182 / 2587
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Normal",
  10376. height: math.unit(18, "feet"),
  10377. default: true
  10378. },
  10379. {
  10380. name: "Macro",
  10381. height: math.unit(300, "feet")
  10382. },
  10383. {
  10384. name: "Megamacro",
  10385. height: math.unit(15, "km")
  10386. },
  10387. {
  10388. name: "Gigamacro",
  10389. height: math.unit(500, "km")
  10390. },
  10391. {
  10392. name: "Teramacro",
  10393. height: math.unit(0.5, "gigameters")
  10394. },
  10395. {
  10396. name: "Omnimacro",
  10397. height: math.unit(1e252, "yottauniverse")
  10398. },
  10399. ]
  10400. ))
  10401. characterMakers.push(() => makeCharacter(
  10402. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10403. {
  10404. front: {
  10405. height: math.unit(7 + 8 / 12, "feet"),
  10406. weight: math.unit(120, "lb"),
  10407. name: "Front",
  10408. image: {
  10409. source: "./media/characters/danny/front.svg",
  10410. extra: 1490 / 1350
  10411. }
  10412. },
  10413. back: {
  10414. height: math.unit(7 + 8 / 12, "feet"),
  10415. weight: math.unit(120, "lb"),
  10416. name: "Back",
  10417. image: {
  10418. source: "./media/characters/danny/back.svg",
  10419. extra: 1490 / 1350
  10420. }
  10421. },
  10422. },
  10423. [
  10424. {
  10425. name: "Normal",
  10426. height: math.unit(7 + 8 / 12, "feet"),
  10427. default: true
  10428. },
  10429. ]
  10430. ))
  10431. characterMakers.push(() => makeCharacter(
  10432. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10433. {
  10434. front: {
  10435. height: math.unit(3.5, "inches"),
  10436. weight: math.unit(19, "grams"),
  10437. name: "Front",
  10438. image: {
  10439. source: "./media/characters/mallow/front.svg",
  10440. extra: 471 / 431
  10441. }
  10442. },
  10443. back: {
  10444. height: math.unit(3.5, "inches"),
  10445. weight: math.unit(19, "grams"),
  10446. name: "Back",
  10447. image: {
  10448. source: "./media/characters/mallow/back.svg",
  10449. extra: 471 / 431
  10450. }
  10451. },
  10452. },
  10453. [
  10454. {
  10455. name: "Normal",
  10456. height: math.unit(3.5, "inches"),
  10457. default: true
  10458. },
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10463. {
  10464. front: {
  10465. height: math.unit(9, "feet"),
  10466. weight: math.unit(230, "kg"),
  10467. name: "Front",
  10468. image: {
  10469. source: "./media/characters/starry-aqua/front.svg"
  10470. }
  10471. },
  10472. back: {
  10473. height: math.unit(9, "feet"),
  10474. weight: math.unit(230, "kg"),
  10475. name: "Back",
  10476. image: {
  10477. source: "./media/characters/starry-aqua/back.svg"
  10478. }
  10479. },
  10480. hand: {
  10481. height: math.unit(9 * 0.1168, "feet"),
  10482. name: "Hand",
  10483. image: {
  10484. source: "./media/characters/starry-aqua/hand.svg"
  10485. }
  10486. },
  10487. foot: {
  10488. height: math.unit(9 * 0.18, "feet"),
  10489. name: "Foot",
  10490. image: {
  10491. source: "./media/characters/starry-aqua/foot.svg"
  10492. }
  10493. }
  10494. },
  10495. [
  10496. {
  10497. name: "Micro",
  10498. height: math.unit(3, "inches")
  10499. },
  10500. {
  10501. name: "Normal",
  10502. height: math.unit(9, "feet")
  10503. },
  10504. {
  10505. name: "Macro",
  10506. height: math.unit(300, "feet"),
  10507. default: true
  10508. },
  10509. {
  10510. name: "Megamacro",
  10511. height: math.unit(3200, "feet")
  10512. }
  10513. ]
  10514. ))
  10515. characterMakers.push(() => makeCharacter(
  10516. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10517. {
  10518. front: {
  10519. height: math.unit(15, "feet"),
  10520. weight: math.unit(5026, "lb"),
  10521. name: "Front",
  10522. image: {
  10523. source: "./media/characters/luka-towers/front.svg",
  10524. extra: 1269/1133,
  10525. bottom: 51/1320
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(15, "feet"),
  10533. default: true
  10534. },
  10535. {
  10536. name: "Minimacro",
  10537. height: math.unit(25, "feet")
  10538. },
  10539. {
  10540. name: "Macro",
  10541. height: math.unit(320, "feet")
  10542. },
  10543. {
  10544. name: "Megamacro",
  10545. height: math.unit(35000, "feet")
  10546. },
  10547. {
  10548. name: "Gigamacro",
  10549. height: math.unit(4000, "miles")
  10550. },
  10551. {
  10552. name: "Teramacro",
  10553. height: math.unit(15000, "miles")
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(150, "lb"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/natalie-nightring/front.svg",
  10566. extra: 1,
  10567. bottom: 0.06
  10568. }
  10569. },
  10570. },
  10571. [
  10572. {
  10573. name: "Uh Oh",
  10574. height: math.unit(0.1, "mm")
  10575. },
  10576. {
  10577. name: "Small",
  10578. height: math.unit(3, "inches")
  10579. },
  10580. {
  10581. name: "Human Scale",
  10582. height: math.unit(6, "feet")
  10583. },
  10584. {
  10585. name: "Librarian",
  10586. height: math.unit(50, "feet"),
  10587. default: true
  10588. },
  10589. {
  10590. name: "Immense",
  10591. height: math.unit(200, "miles")
  10592. },
  10593. ]
  10594. ))
  10595. characterMakers.push(() => makeCharacter(
  10596. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10597. {
  10598. front: {
  10599. height: math.unit(6, "feet"),
  10600. weight: math.unit(180, "lbs"),
  10601. name: "Front",
  10602. image: {
  10603. source: "./media/characters/danni-rosie/front.svg",
  10604. extra: 1260 / 1128,
  10605. bottom: 0.022
  10606. }
  10607. },
  10608. },
  10609. [
  10610. {
  10611. name: "Micro",
  10612. height: math.unit(2, "inches"),
  10613. default: true
  10614. },
  10615. ]
  10616. ))
  10617. characterMakers.push(() => makeCharacter(
  10618. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10619. {
  10620. front: {
  10621. height: math.unit(5 + 9 / 12, "feet"),
  10622. weight: math.unit(220, "lb"),
  10623. name: "Front",
  10624. image: {
  10625. source: "./media/characters/samantha-kruse/front.svg",
  10626. extra: (985 / 935),
  10627. bottom: 0.03
  10628. }
  10629. },
  10630. frontUndressed: {
  10631. height: math.unit(5 + 9 / 12, "feet"),
  10632. weight: math.unit(220, "lb"),
  10633. name: "Front (Undressed)",
  10634. image: {
  10635. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10636. extra: (973 / 923),
  10637. bottom: 0.025
  10638. }
  10639. },
  10640. fat: {
  10641. height: math.unit(5 + 9 / 12, "feet"),
  10642. weight: math.unit(900, "lb"),
  10643. name: "Front (Fat)",
  10644. image: {
  10645. source: "./media/characters/samantha-kruse/fat.svg",
  10646. extra: 2688 / 2561
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(5 + 9 / 12, "feet"),
  10654. default: true
  10655. }
  10656. ]
  10657. ))
  10658. characterMakers.push(() => makeCharacter(
  10659. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10660. {
  10661. back: {
  10662. height: math.unit(5 + 4 / 12, "feet"),
  10663. weight: math.unit(4963, "lb"),
  10664. name: "Back",
  10665. image: {
  10666. source: "./media/characters/amelia-rosie/back.svg",
  10667. extra: 1113 / 963,
  10668. bottom: 0.01
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Level 0",
  10675. height: math.unit(5 + 4 / 12, "feet")
  10676. },
  10677. {
  10678. name: "Level 1",
  10679. height: math.unit(164597, "feet"),
  10680. default: true
  10681. },
  10682. {
  10683. name: "Level 2",
  10684. height: math.unit(956243, "miles")
  10685. },
  10686. {
  10687. name: "Level 3",
  10688. height: math.unit(29421709423, "miles")
  10689. },
  10690. {
  10691. name: "Level 4",
  10692. height: math.unit(154, "lightyears")
  10693. },
  10694. {
  10695. name: "Level 5",
  10696. height: math.unit(4738272, "lightyears")
  10697. },
  10698. {
  10699. name: "Level 6",
  10700. height: math.unit(145787152896, "lightyears")
  10701. },
  10702. ]
  10703. ))
  10704. characterMakers.push(() => makeCharacter(
  10705. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10706. {
  10707. front: {
  10708. height: math.unit(5 + 11 / 12, "feet"),
  10709. weight: math.unit(65, "kg"),
  10710. name: "Front",
  10711. image: {
  10712. source: "./media/characters/rook-kitara/front.svg",
  10713. extra: 1347 / 1274,
  10714. bottom: 0.005
  10715. }
  10716. },
  10717. },
  10718. [
  10719. {
  10720. name: "Totally Unfair",
  10721. height: math.unit(1.8, "mm")
  10722. },
  10723. {
  10724. name: "Lap Rookie",
  10725. height: math.unit(1.4, "feet")
  10726. },
  10727. {
  10728. name: "Normal",
  10729. height: math.unit(5 + 11 / 12, "feet"),
  10730. default: true
  10731. },
  10732. {
  10733. name: "How Did This Happen",
  10734. height: math.unit(80, "miles")
  10735. }
  10736. ]
  10737. ))
  10738. characterMakers.push(() => makeCharacter(
  10739. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10740. {
  10741. front: {
  10742. height: math.unit(7, "feet"),
  10743. weight: math.unit(300, "lb"),
  10744. name: "Front",
  10745. image: {
  10746. source: "./media/characters/pisces/front.svg",
  10747. extra: 2255 / 2115,
  10748. bottom: 0.03
  10749. }
  10750. },
  10751. back: {
  10752. height: math.unit(7, "feet"),
  10753. weight: math.unit(300, "lb"),
  10754. name: "Back",
  10755. image: {
  10756. source: "./media/characters/pisces/back.svg",
  10757. extra: 2146 / 2055,
  10758. bottom: 0.04
  10759. }
  10760. },
  10761. },
  10762. [
  10763. {
  10764. name: "Normal",
  10765. height: math.unit(7, "feet"),
  10766. default: true
  10767. },
  10768. {
  10769. name: "Swimming Pool",
  10770. height: math.unit(12.2, "meters")
  10771. },
  10772. {
  10773. name: "Olympic Swimming Pool",
  10774. height: math.unit(56.3, "meters")
  10775. },
  10776. {
  10777. name: "Lake Superior",
  10778. height: math.unit(93900, "meters")
  10779. },
  10780. {
  10781. name: "Mediterranean Sea",
  10782. height: math.unit(644457, "meters")
  10783. },
  10784. {
  10785. name: "World's Oceans",
  10786. height: math.unit(4567491, "meters")
  10787. },
  10788. ]
  10789. ))
  10790. characterMakers.push(() => makeCharacter(
  10791. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10792. {
  10793. front: {
  10794. height: math.unit(2.3, "meters"),
  10795. weight: math.unit(120, "kg"),
  10796. name: "Front",
  10797. image: {
  10798. source: "./media/characters/zelas/front.svg"
  10799. }
  10800. },
  10801. side: {
  10802. height: math.unit(2.3, "meters"),
  10803. weight: math.unit(120, "kg"),
  10804. name: "Side",
  10805. image: {
  10806. source: "./media/characters/zelas/side.svg"
  10807. }
  10808. },
  10809. back: {
  10810. height: math.unit(2.3, "meters"),
  10811. weight: math.unit(120, "kg"),
  10812. name: "Back",
  10813. image: {
  10814. source: "./media/characters/zelas/back.svg"
  10815. }
  10816. },
  10817. foot: {
  10818. height: math.unit(1.116, "feet"),
  10819. name: "Foot",
  10820. image: {
  10821. source: "./media/characters/zelas/foot.svg"
  10822. }
  10823. },
  10824. },
  10825. [
  10826. {
  10827. name: "Normal",
  10828. height: math.unit(2.3, "meters")
  10829. },
  10830. {
  10831. name: "Macro",
  10832. height: math.unit(30, "meters"),
  10833. default: true
  10834. },
  10835. ]
  10836. ))
  10837. characterMakers.push(() => makeCharacter(
  10838. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10839. {
  10840. front: {
  10841. height: math.unit(1, "inch"),
  10842. weight: math.unit(0.21, "grams"),
  10843. name: "Front",
  10844. image: {
  10845. source: "./media/characters/talbot/front.svg",
  10846. extra: 594 / 544
  10847. }
  10848. },
  10849. },
  10850. [
  10851. {
  10852. name: "Micro",
  10853. height: math.unit(1, "inch"),
  10854. default: true
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10860. {
  10861. front: {
  10862. height: math.unit(3 + 3 / 12, "feet"),
  10863. weight: math.unit(51.8, "lb"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/fliss/front.svg",
  10867. extra: 840 / 640
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Teeny Tiny",
  10874. height: math.unit(1, "mm")
  10875. },
  10876. {
  10877. name: "Small",
  10878. height: math.unit(1, "inch"),
  10879. default: true
  10880. },
  10881. {
  10882. name: "Standard Sylveon",
  10883. height: math.unit(3 + 3 / 12, "feet")
  10884. },
  10885. {
  10886. name: "Large Nuisance",
  10887. height: math.unit(33, "feet")
  10888. },
  10889. {
  10890. name: "City Filler",
  10891. height: math.unit(3000, "feet")
  10892. },
  10893. {
  10894. name: "New Horizon",
  10895. height: math.unit(6000, "miles")
  10896. },
  10897. ]
  10898. ))
  10899. characterMakers.push(() => makeCharacter(
  10900. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10901. {
  10902. front: {
  10903. height: math.unit(5, "cm"),
  10904. weight: math.unit(1.94, "g"),
  10905. name: "Front",
  10906. image: {
  10907. source: "./media/characters/fleta/front.svg",
  10908. extra: 835 / 803
  10909. }
  10910. },
  10911. back: {
  10912. height: math.unit(5, "cm"),
  10913. weight: math.unit(1.94, "g"),
  10914. name: "Back",
  10915. image: {
  10916. source: "./media/characters/fleta/back.svg",
  10917. extra: 835 / 803
  10918. }
  10919. },
  10920. },
  10921. [
  10922. {
  10923. name: "Micro",
  10924. height: math.unit(5, "cm"),
  10925. default: true
  10926. },
  10927. ]
  10928. ))
  10929. characterMakers.push(() => makeCharacter(
  10930. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10931. {
  10932. front: {
  10933. height: math.unit(6, "feet"),
  10934. weight: math.unit(225, "lb"),
  10935. name: "Front",
  10936. image: {
  10937. source: "./media/characters/dominic/front.svg",
  10938. extra: 1770 / 1620,
  10939. bottom: 0.025
  10940. }
  10941. },
  10942. back: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(225, "lb"),
  10945. name: "Back",
  10946. image: {
  10947. source: "./media/characters/dominic/back.svg",
  10948. extra: 1745 / 1620,
  10949. bottom: 0.065
  10950. }
  10951. },
  10952. },
  10953. [
  10954. {
  10955. name: "Nano",
  10956. height: math.unit(0.1, "mm")
  10957. },
  10958. {
  10959. name: "Micro-",
  10960. height: math.unit(1, "mm")
  10961. },
  10962. {
  10963. name: "Micro",
  10964. height: math.unit(4, "inches")
  10965. },
  10966. {
  10967. name: "Normal",
  10968. height: math.unit(6 + 4 / 12, "feet"),
  10969. default: true
  10970. },
  10971. {
  10972. name: "Macro",
  10973. height: math.unit(115, "feet")
  10974. },
  10975. {
  10976. name: "Macro+",
  10977. height: math.unit(955, "feet")
  10978. },
  10979. {
  10980. name: "Megamacro",
  10981. height: math.unit(8990, "feet")
  10982. },
  10983. {
  10984. name: "Gigmacro",
  10985. height: math.unit(9310, "miles")
  10986. },
  10987. {
  10988. name: "Teramacro",
  10989. height: math.unit(1567005010, "miles")
  10990. },
  10991. {
  10992. name: "Examacro",
  10993. height: math.unit(1425, "parsecs")
  10994. },
  10995. ]
  10996. ))
  10997. characterMakers.push(() => makeCharacter(
  10998. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10999. {
  11000. front: {
  11001. height: math.unit(400, "feet"),
  11002. weight: math.unit(44444444, "lb"),
  11003. name: "Front",
  11004. image: {
  11005. source: "./media/characters/major-colonel/front.svg"
  11006. }
  11007. },
  11008. back: {
  11009. height: math.unit(400, "feet"),
  11010. weight: math.unit(44444444, "lb"),
  11011. name: "Back",
  11012. image: {
  11013. source: "./media/characters/major-colonel/back.svg"
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Macro",
  11020. height: math.unit(400, "feet"),
  11021. default: true
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11027. {
  11028. catFront: {
  11029. height: math.unit(6, "feet"),
  11030. weight: math.unit(120, "lb"),
  11031. name: "Front (Cat Side)",
  11032. image: {
  11033. source: "./media/characters/axel-lycan/cat-front.svg",
  11034. extra: 430 / 402,
  11035. bottom: 43 / 472.35
  11036. }
  11037. },
  11038. catBack: {
  11039. height: math.unit(6, "feet"),
  11040. weight: math.unit(120, "lb"),
  11041. name: "Back (Cat Side)",
  11042. image: {
  11043. source: "./media/characters/axel-lycan/cat-back.svg",
  11044. extra: 447 / 419,
  11045. bottom: 23.3 / 469
  11046. }
  11047. },
  11048. wolfFront: {
  11049. height: math.unit(6, "feet"),
  11050. weight: math.unit(120, "lb"),
  11051. name: "Front (Wolf Side)",
  11052. image: {
  11053. source: "./media/characters/axel-lycan/wolf-front.svg",
  11054. extra: 485 / 456,
  11055. bottom: 19 / 504
  11056. }
  11057. },
  11058. wolfBack: {
  11059. height: math.unit(6, "feet"),
  11060. weight: math.unit(120, "lb"),
  11061. name: "Back (Wolf Side)",
  11062. image: {
  11063. source: "./media/characters/axel-lycan/wolf-back.svg",
  11064. extra: 475 / 438,
  11065. bottom: 39.2 / 514
  11066. }
  11067. },
  11068. },
  11069. [
  11070. {
  11071. name: "Macro",
  11072. height: math.unit(1, "km"),
  11073. default: true
  11074. },
  11075. ]
  11076. ))
  11077. characterMakers.push(() => makeCharacter(
  11078. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11079. {
  11080. front: {
  11081. height: math.unit(5 + 9 / 12, "feet"),
  11082. weight: math.unit(175, "lb"),
  11083. name: "Front",
  11084. image: {
  11085. source: "./media/characters/vanrel-hyena/front.svg",
  11086. extra: 1086 / 1010,
  11087. bottom: 0.04
  11088. }
  11089. },
  11090. },
  11091. [
  11092. {
  11093. name: "Normal",
  11094. height: math.unit(5 + 9 / 12, "feet"),
  11095. default: true
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11101. {
  11102. front: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(103, "lb"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/abbott-absol/front.svg",
  11108. extra: 765/694,
  11109. bottom: 47/812
  11110. }
  11111. },
  11112. },
  11113. [
  11114. {
  11115. name: "Megamicro",
  11116. height: math.unit(0.1, "mm")
  11117. },
  11118. {
  11119. name: "Micro",
  11120. height: math.unit(1, "inch")
  11121. },
  11122. {
  11123. name: "Normal",
  11124. height: math.unit(6, "feet"),
  11125. default: true
  11126. },
  11127. ]
  11128. ))
  11129. characterMakers.push(() => makeCharacter(
  11130. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11131. {
  11132. front: {
  11133. height: math.unit(6, "feet"),
  11134. weight: math.unit(264, "lb"),
  11135. name: "Front",
  11136. image: {
  11137. source: "./media/characters/hector/front.svg",
  11138. extra: 2280 / 2130,
  11139. bottom: 0.07
  11140. }
  11141. },
  11142. },
  11143. [
  11144. {
  11145. name: "Normal",
  11146. height: math.unit(12.25, "foot"),
  11147. default: true
  11148. },
  11149. {
  11150. name: "Macro",
  11151. height: math.unit(160, "feet")
  11152. },
  11153. ]
  11154. ))
  11155. characterMakers.push(() => makeCharacter(
  11156. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11157. {
  11158. front: {
  11159. height: math.unit(6, "feet"),
  11160. weight: math.unit(150, "lb"),
  11161. name: "Front",
  11162. image: {
  11163. source: "./media/characters/sal/front.svg",
  11164. extra: 1846 / 1699,
  11165. bottom: 0.04
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Megamacro",
  11172. height: math.unit(10, "miles"),
  11173. default: true
  11174. },
  11175. ]
  11176. ))
  11177. characterMakers.push(() => makeCharacter(
  11178. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11179. {
  11180. front: {
  11181. height: math.unit(3, "meters"),
  11182. weight: math.unit(450, "kg"),
  11183. name: "front",
  11184. image: {
  11185. source: "./media/characters/ranger/front.svg",
  11186. extra: 2401 / 2243,
  11187. bottom: 0.05
  11188. }
  11189. },
  11190. },
  11191. [
  11192. {
  11193. name: "Normal",
  11194. height: math.unit(3, "meters"),
  11195. default: true
  11196. },
  11197. ]
  11198. ))
  11199. characterMakers.push(() => makeCharacter(
  11200. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11201. {
  11202. front: {
  11203. height: math.unit(14, "feet"),
  11204. weight: math.unit(800, "kg"),
  11205. name: "Front",
  11206. image: {
  11207. source: "./media/characters/theresa/front.svg",
  11208. extra: 3575 / 3346,
  11209. bottom: 0.03
  11210. }
  11211. },
  11212. },
  11213. [
  11214. {
  11215. name: "Normal",
  11216. height: math.unit(14, "feet"),
  11217. default: true
  11218. },
  11219. ]
  11220. ))
  11221. characterMakers.push(() => makeCharacter(
  11222. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11223. {
  11224. front: {
  11225. height: math.unit(6, "feet"),
  11226. weight: math.unit(3, "kg"),
  11227. name: "Front",
  11228. image: {
  11229. source: "./media/characters/ine/front.svg",
  11230. extra: 678 / 539,
  11231. bottom: 0.023
  11232. }
  11233. },
  11234. },
  11235. [
  11236. {
  11237. name: "Normal",
  11238. height: math.unit(2.265, "feet"),
  11239. default: true
  11240. },
  11241. ]
  11242. ))
  11243. characterMakers.push(() => makeCharacter(
  11244. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11245. {
  11246. front: {
  11247. height: math.unit(5, "feet"),
  11248. weight: math.unit(30, "kg"),
  11249. name: "Front",
  11250. image: {
  11251. source: "./media/characters/vial/front.svg",
  11252. extra: 1365 / 1277,
  11253. bottom: 0.04
  11254. }
  11255. },
  11256. },
  11257. [
  11258. {
  11259. name: "Normal",
  11260. height: math.unit(5, "feet"),
  11261. default: true
  11262. },
  11263. ]
  11264. ))
  11265. characterMakers.push(() => makeCharacter(
  11266. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11267. {
  11268. side: {
  11269. height: math.unit(3.4, "meters"),
  11270. weight: math.unit(1000, "lb"),
  11271. name: "Side",
  11272. image: {
  11273. source: "./media/characters/rovoska/side.svg",
  11274. extra: 4403 / 1515
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(3.4, "meters"),
  11282. default: true
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(8, "feet"),
  11291. weight: math.unit(315, "lb"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/gunner-rotthbauer/front.svg"
  11295. }
  11296. },
  11297. back: {
  11298. height: math.unit(8, "feet"),
  11299. weight: math.unit(315, "lb"),
  11300. name: "Back",
  11301. image: {
  11302. source: "./media/characters/gunner-rotthbauer/back.svg"
  11303. }
  11304. },
  11305. },
  11306. [
  11307. {
  11308. name: "Micro",
  11309. height: math.unit(3.5, "inches")
  11310. },
  11311. {
  11312. name: "Normal",
  11313. height: math.unit(8, "feet"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Macro",
  11318. height: math.unit(250, "feet")
  11319. },
  11320. {
  11321. name: "Megamacro",
  11322. height: math.unit(1, "AU")
  11323. },
  11324. ]
  11325. ))
  11326. characterMakers.push(() => makeCharacter(
  11327. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11328. {
  11329. front: {
  11330. height: math.unit(5 + 5 / 12, "feet"),
  11331. weight: math.unit(140, "lb"),
  11332. name: "Front",
  11333. image: {
  11334. source: "./media/characters/allatia/front.svg",
  11335. extra: 1227 / 1180,
  11336. bottom: 0.027
  11337. }
  11338. },
  11339. },
  11340. [
  11341. {
  11342. name: "Normal",
  11343. height: math.unit(5 + 5 / 12, "feet")
  11344. },
  11345. {
  11346. name: "Macro",
  11347. height: math.unit(250, "feet"),
  11348. default: true
  11349. },
  11350. {
  11351. name: "Megamacro",
  11352. height: math.unit(8, "miles")
  11353. }
  11354. ]
  11355. ))
  11356. characterMakers.push(() => makeCharacter(
  11357. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11358. {
  11359. front: {
  11360. height: math.unit(6, "feet"),
  11361. weight: math.unit(120, "lb"),
  11362. name: "Front",
  11363. image: {
  11364. source: "./media/characters/tene/front.svg",
  11365. extra: 814/750,
  11366. bottom: 36/850
  11367. }
  11368. },
  11369. stomping: {
  11370. height: math.unit(2.025, "meters"),
  11371. weight: math.unit(120, "lb"),
  11372. name: "Stomping",
  11373. image: {
  11374. source: "./media/characters/tene/stomping.svg",
  11375. extra: 885/821,
  11376. bottom: 15/900
  11377. }
  11378. },
  11379. sitting: {
  11380. height: math.unit(1, "meter"),
  11381. weight: math.unit(120, "lb"),
  11382. name: "Sitting",
  11383. image: {
  11384. source: "./media/characters/tene/sitting.svg",
  11385. extra: 396/366,
  11386. bottom: 79/475
  11387. }
  11388. },
  11389. smiling: {
  11390. height: math.unit(1.2, "feet"),
  11391. name: "Smiling",
  11392. image: {
  11393. source: "./media/characters/tene/smiling.svg",
  11394. extra: 1364/1071,
  11395. bottom: 0/1364
  11396. }
  11397. },
  11398. smug: {
  11399. height: math.unit(1.3, "feet"),
  11400. name: "Smug",
  11401. image: {
  11402. source: "./media/characters/tene/smug.svg",
  11403. extra: 1323/1082,
  11404. bottom: 0/1323
  11405. }
  11406. },
  11407. feral: {
  11408. height: math.unit(3.9, "feet"),
  11409. weight: math.unit(250, "lb"),
  11410. name: "Feral",
  11411. image: {
  11412. source: "./media/characters/tene/feral.svg",
  11413. extra: 717 / 458,
  11414. bottom: 0.179
  11415. }
  11416. },
  11417. },
  11418. [
  11419. {
  11420. name: "Normal",
  11421. height: math.unit(6, "feet")
  11422. },
  11423. {
  11424. name: "Macro",
  11425. height: math.unit(300, "feet"),
  11426. default: true
  11427. },
  11428. {
  11429. name: "Megamacro",
  11430. height: math.unit(5, "miles")
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11436. {
  11437. side: {
  11438. height: math.unit(6, "feet"),
  11439. name: "Side",
  11440. image: {
  11441. source: "./media/characters/evander/side.svg",
  11442. extra: 877 / 477
  11443. }
  11444. },
  11445. },
  11446. [
  11447. {
  11448. name: "Normal",
  11449. height: math.unit(0.83, "meters"),
  11450. default: true
  11451. },
  11452. ]
  11453. ))
  11454. characterMakers.push(() => makeCharacter(
  11455. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11456. {
  11457. front: {
  11458. height: math.unit(12, "feet"),
  11459. weight: math.unit(1000, "lb"),
  11460. name: "Front",
  11461. image: {
  11462. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11463. extra: 1762 / 1611
  11464. }
  11465. },
  11466. back: {
  11467. height: math.unit(12, "feet"),
  11468. weight: math.unit(1000, "lb"),
  11469. name: "Back",
  11470. image: {
  11471. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11472. extra: 1762 / 1611
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Normal",
  11479. height: math.unit(12, "feet"),
  11480. default: true
  11481. },
  11482. {
  11483. name: "Kaiju",
  11484. height: math.unit(150, "feet")
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(5 + 11/12, "feet"),
  11493. weight: math.unit(180, "lb"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/zero-alurus/front.svg",
  11497. extra: 1032/957,
  11498. bottom: 10/1042
  11499. }
  11500. },
  11501. back: {
  11502. height: math.unit(5 + 11/12, "feet"),
  11503. weight: math.unit(180, "lb"),
  11504. name: "Back",
  11505. image: {
  11506. source: "./media/characters/zero-alurus/back.svg",
  11507. extra: 1027/950,
  11508. bottom: 12/1039
  11509. }
  11510. },
  11511. },
  11512. [
  11513. {
  11514. name: "Normal",
  11515. height: math.unit(5 + 11 / 12, "feet")
  11516. },
  11517. {
  11518. name: "Mini-Macro",
  11519. height: math.unit(25, "feet")
  11520. },
  11521. {
  11522. name: "Macro",
  11523. height: math.unit(90, "feet"),
  11524. default: true
  11525. },
  11526. {
  11527. name: "Macro+",
  11528. height: math.unit(500, "feet")
  11529. },
  11530. {
  11531. name: "Megamacro",
  11532. height: math.unit(1200, "feet")
  11533. },
  11534. ]
  11535. ))
  11536. characterMakers.push(() => makeCharacter(
  11537. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11538. {
  11539. front: {
  11540. height: math.unit(6, "feet"),
  11541. weight: math.unit(200, "lb"),
  11542. name: "Front",
  11543. image: {
  11544. source: "./media/characters/mega-shi/front.svg",
  11545. extra: 1279 / 1250,
  11546. bottom: 0.02
  11547. }
  11548. },
  11549. back: {
  11550. height: math.unit(6, "feet"),
  11551. weight: math.unit(200, "lb"),
  11552. name: "Back",
  11553. image: {
  11554. source: "./media/characters/mega-shi/back.svg",
  11555. extra: 1279 / 1250,
  11556. bottom: 0.02
  11557. }
  11558. },
  11559. },
  11560. [
  11561. {
  11562. name: "Micro",
  11563. height: math.unit(16 + 6 / 12, "feet")
  11564. },
  11565. {
  11566. name: "Third Dimension",
  11567. height: math.unit(40, "meters")
  11568. },
  11569. {
  11570. name: "Normal",
  11571. height: math.unit(660, "feet"),
  11572. default: true
  11573. },
  11574. {
  11575. name: "Megamacro",
  11576. height: math.unit(10, "miles")
  11577. },
  11578. {
  11579. name: "Planetary Launch",
  11580. height: math.unit(500, "miles")
  11581. },
  11582. {
  11583. name: "Interstellar",
  11584. height: math.unit(1e9, "miles")
  11585. },
  11586. {
  11587. name: "Leaving the Universe",
  11588. height: math.unit(1, "gigaparsec")
  11589. },
  11590. {
  11591. name: "Travelling Universes",
  11592. height: math.unit(30e15, "parsecs")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(5 + 4/12, "feet"),
  11601. weight: math.unit(120, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/odyssey/front.svg",
  11605. extra: 1747/1571,
  11606. bottom: 47/1794
  11607. }
  11608. },
  11609. side: {
  11610. height: math.unit(5.1, "feet"),
  11611. weight: math.unit(120, "lb"),
  11612. name: "Side",
  11613. image: {
  11614. source: "./media/characters/odyssey/side.svg",
  11615. extra: 1847/1619,
  11616. bottom: 47/1894
  11617. }
  11618. },
  11619. lounging: {
  11620. height: math.unit(1.464, "feet"),
  11621. weight: math.unit(120, "lb"),
  11622. name: "Lounging",
  11623. image: {
  11624. source: "./media/characters/odyssey/lounging.svg",
  11625. extra: 1235/837,
  11626. bottom: 551/1786
  11627. }
  11628. },
  11629. },
  11630. [
  11631. {
  11632. name: "Normal",
  11633. height: math.unit(5 + 4 / 12, "feet")
  11634. },
  11635. {
  11636. name: "Macro",
  11637. height: math.unit(1, "km")
  11638. },
  11639. {
  11640. name: "Megamacro",
  11641. height: math.unit(3000, "km")
  11642. },
  11643. {
  11644. name: "Gigamacro",
  11645. height: math.unit(1, "AU"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Omniversal",
  11650. height: math.unit(100e14, "lightyears")
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11656. {
  11657. front: {
  11658. height: math.unit(5 + 10/12, "feet"),
  11659. name: "Front",
  11660. image: {
  11661. source: "./media/characters/mekuto/front.svg",
  11662. extra: 875/835,
  11663. bottom: 46/921
  11664. }
  11665. },
  11666. },
  11667. [
  11668. {
  11669. name: "Minimicro",
  11670. height: math.unit(0.2, "inches")
  11671. },
  11672. {
  11673. name: "Micro",
  11674. height: math.unit(1.5, "inches")
  11675. },
  11676. {
  11677. name: "Normal",
  11678. height: math.unit(5 + 10 / 12, "feet"),
  11679. default: true
  11680. },
  11681. {
  11682. name: "Minimacro",
  11683. height: math.unit(17 + 9 / 12, "feet")
  11684. },
  11685. {
  11686. name: "Macro",
  11687. height: math.unit(177.5, "feet")
  11688. },
  11689. {
  11690. name: "Megamacro",
  11691. height: math.unit(152, "miles")
  11692. },
  11693. ]
  11694. ))
  11695. characterMakers.push(() => makeCharacter(
  11696. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11697. {
  11698. front: {
  11699. height: math.unit(6.5, "inches"),
  11700. weight: math.unit(13, "oz"),
  11701. name: "Front",
  11702. image: {
  11703. source: "./media/characters/dafydd-tomos/front.svg",
  11704. extra: 2990 / 2603,
  11705. bottom: 0.03
  11706. }
  11707. },
  11708. },
  11709. [
  11710. {
  11711. name: "Micro",
  11712. height: math.unit(6.5, "inches"),
  11713. default: true
  11714. },
  11715. ]
  11716. ))
  11717. characterMakers.push(() => makeCharacter(
  11718. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11719. {
  11720. front: {
  11721. height: math.unit(6, "feet"),
  11722. weight: math.unit(150, "lb"),
  11723. name: "Front",
  11724. image: {
  11725. source: "./media/characters/splinter/front.svg",
  11726. extra: 2990 / 2882,
  11727. bottom: 0.04
  11728. }
  11729. },
  11730. back: {
  11731. height: math.unit(6, "feet"),
  11732. weight: math.unit(150, "lb"),
  11733. name: "Back",
  11734. image: {
  11735. source: "./media/characters/splinter/back.svg",
  11736. extra: 2990 / 2882,
  11737. bottom: 0.04
  11738. }
  11739. },
  11740. },
  11741. [
  11742. {
  11743. name: "Normal",
  11744. height: math.unit(6, "feet")
  11745. },
  11746. {
  11747. name: "Macro",
  11748. height: math.unit(230, "meters"),
  11749. default: true
  11750. },
  11751. ]
  11752. ))
  11753. characterMakers.push(() => makeCharacter(
  11754. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11755. {
  11756. front: {
  11757. height: math.unit(4 + 10 / 12, "feet"),
  11758. weight: math.unit(480, "lb"),
  11759. name: "Front",
  11760. image: {
  11761. source: "./media/characters/snow-gabumon/front.svg",
  11762. extra: 1140 / 963,
  11763. bottom: 0.058
  11764. }
  11765. },
  11766. back: {
  11767. height: math.unit(4 + 10 / 12, "feet"),
  11768. weight: math.unit(480, "lb"),
  11769. name: "Back",
  11770. image: {
  11771. source: "./media/characters/snow-gabumon/back.svg",
  11772. extra: 1115 / 962,
  11773. bottom: 0.041
  11774. }
  11775. },
  11776. frontUndresed: {
  11777. height: math.unit(4 + 10 / 12, "feet"),
  11778. weight: math.unit(480, "lb"),
  11779. name: "Front (Undressed)",
  11780. image: {
  11781. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11782. extra: 1061 / 960,
  11783. bottom: 0.045
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Micro",
  11790. height: math.unit(1, "inch")
  11791. },
  11792. {
  11793. name: "Normal",
  11794. height: math.unit(4 + 10 / 12, "feet"),
  11795. default: true
  11796. },
  11797. {
  11798. name: "Macro",
  11799. height: math.unit(200, "feet")
  11800. },
  11801. {
  11802. name: "Megamacro",
  11803. height: math.unit(120, "miles")
  11804. },
  11805. {
  11806. name: "Gigamacro",
  11807. height: math.unit(9800, "miles")
  11808. },
  11809. ]
  11810. ))
  11811. characterMakers.push(() => makeCharacter(
  11812. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11813. {
  11814. front: {
  11815. height: math.unit(1.7, "meters"),
  11816. weight: math.unit(140, "lb"),
  11817. name: "Front",
  11818. image: {
  11819. source: "./media/characters/moody/front.svg",
  11820. extra: 3226 / 3007,
  11821. bottom: 0.087
  11822. }
  11823. },
  11824. },
  11825. [
  11826. {
  11827. name: "Micro",
  11828. height: math.unit(1, "mm")
  11829. },
  11830. {
  11831. name: "Normal",
  11832. height: math.unit(1.7, "meters"),
  11833. default: true
  11834. },
  11835. {
  11836. name: "Macro",
  11837. height: math.unit(80, "meters")
  11838. },
  11839. {
  11840. name: "Macro+",
  11841. height: math.unit(500, "meters")
  11842. },
  11843. ]
  11844. ))
  11845. characterMakers.push(() => makeCharacter(
  11846. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11847. {
  11848. front: {
  11849. height: math.unit(6, "feet"),
  11850. weight: math.unit(150, "lb"),
  11851. name: "Front",
  11852. image: {
  11853. source: "./media/characters/zyas/front.svg",
  11854. extra: 1180 / 1120,
  11855. bottom: 0.045
  11856. }
  11857. },
  11858. },
  11859. [
  11860. {
  11861. name: "Normal",
  11862. height: math.unit(10, "feet"),
  11863. default: true
  11864. },
  11865. {
  11866. name: "Macro",
  11867. height: math.unit(500, "feet")
  11868. },
  11869. {
  11870. name: "Megamacro",
  11871. height: math.unit(5, "miles")
  11872. },
  11873. {
  11874. name: "Teramacro",
  11875. height: math.unit(150000, "miles")
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(6, "feet"),
  11884. weight: math.unit(150, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/cuon/front.svg",
  11888. extra: 1390 / 1320,
  11889. bottom: 0.008
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Micro",
  11896. height: math.unit(3, "inches")
  11897. },
  11898. {
  11899. name: "Normal",
  11900. height: math.unit(18 + 9 / 12, "feet"),
  11901. default: true
  11902. },
  11903. {
  11904. name: "Macro",
  11905. height: math.unit(360, "feet")
  11906. },
  11907. {
  11908. name: "Megamacro",
  11909. height: math.unit(360, "miles")
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11915. {
  11916. front: {
  11917. height: math.unit(2.4, "meters"),
  11918. weight: math.unit(70, "kg"),
  11919. name: "Front",
  11920. image: {
  11921. source: "./media/characters/nyanuxk/front.svg",
  11922. extra: 1172 / 1084,
  11923. bottom: 0.065
  11924. }
  11925. },
  11926. side: {
  11927. height: math.unit(2.4, "meters"),
  11928. weight: math.unit(70, "kg"),
  11929. name: "Side",
  11930. image: {
  11931. source: "./media/characters/nyanuxk/side.svg",
  11932. extra: 1190 / 1132,
  11933. bottom: 0.007
  11934. }
  11935. },
  11936. back: {
  11937. height: math.unit(2.4, "meters"),
  11938. weight: math.unit(70, "kg"),
  11939. name: "Back",
  11940. image: {
  11941. source: "./media/characters/nyanuxk/back.svg",
  11942. extra: 1200 / 1141,
  11943. bottom: 0.015
  11944. }
  11945. },
  11946. foot: {
  11947. height: math.unit(0.52, "meters"),
  11948. name: "Foot",
  11949. image: {
  11950. source: "./media/characters/nyanuxk/foot.svg"
  11951. }
  11952. },
  11953. },
  11954. [
  11955. {
  11956. name: "Micro",
  11957. height: math.unit(2, "cm")
  11958. },
  11959. {
  11960. name: "Normal",
  11961. height: math.unit(2.4, "meters"),
  11962. default: true
  11963. },
  11964. {
  11965. name: "Smaller Macro",
  11966. height: math.unit(120, "meters")
  11967. },
  11968. {
  11969. name: "Bigger Macro",
  11970. height: math.unit(1.2, "km")
  11971. },
  11972. {
  11973. name: "Megamacro",
  11974. height: math.unit(15, "kilometers")
  11975. },
  11976. {
  11977. name: "Gigamacro",
  11978. height: math.unit(2000, "km")
  11979. },
  11980. {
  11981. name: "Teramacro",
  11982. height: math.unit(500000, "km")
  11983. },
  11984. ]
  11985. ))
  11986. characterMakers.push(() => makeCharacter(
  11987. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11988. {
  11989. side: {
  11990. height: math.unit(6, "feet"),
  11991. name: "Side",
  11992. image: {
  11993. source: "./media/characters/ailbhe/side.svg",
  11994. extra: 757 / 464,
  11995. bottom: 0.041
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Normal",
  12002. height: math.unit(1.07, "meters"),
  12003. default: true
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12009. {
  12010. front: {
  12011. height: math.unit(6, "feet"),
  12012. weight: math.unit(120, "kg"),
  12013. name: "Front",
  12014. image: {
  12015. source: "./media/characters/zevulfius/front.svg",
  12016. extra: 965 / 903
  12017. }
  12018. },
  12019. side: {
  12020. height: math.unit(6, "feet"),
  12021. weight: math.unit(120, "kg"),
  12022. name: "Side",
  12023. image: {
  12024. source: "./media/characters/zevulfius/side.svg",
  12025. extra: 939 / 900
  12026. }
  12027. },
  12028. back: {
  12029. height: math.unit(6, "feet"),
  12030. weight: math.unit(120, "kg"),
  12031. name: "Back",
  12032. image: {
  12033. source: "./media/characters/zevulfius/back.svg",
  12034. extra: 918 / 854,
  12035. bottom: 0.005
  12036. }
  12037. },
  12038. foot: {
  12039. height: math.unit(6 / 3.72, "feet"),
  12040. name: "Foot",
  12041. image: {
  12042. source: "./media/characters/zevulfius/foot.svg"
  12043. }
  12044. },
  12045. },
  12046. [
  12047. {
  12048. name: "Macro",
  12049. height: math.unit(750, "meters")
  12050. },
  12051. {
  12052. name: "Megamacro",
  12053. height: math.unit(20, "km"),
  12054. default: true
  12055. },
  12056. {
  12057. name: "Gigamacro",
  12058. height: math.unit(2000, "km")
  12059. },
  12060. {
  12061. name: "Teramacro",
  12062. height: math.unit(250000, "km")
  12063. },
  12064. ]
  12065. ))
  12066. characterMakers.push(() => makeCharacter(
  12067. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12068. {
  12069. front: {
  12070. height: math.unit(100, "feet"),
  12071. weight: math.unit(350, "kg"),
  12072. name: "Front",
  12073. image: {
  12074. source: "./media/characters/rikes/front.svg",
  12075. extra: 1565 / 1483,
  12076. bottom: 0.017
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Macro",
  12083. height: math.unit(100, "feet"),
  12084. default: true
  12085. },
  12086. ]
  12087. ))
  12088. characterMakers.push(() => makeCharacter(
  12089. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12090. {
  12091. front: {
  12092. height: math.unit(8, "feet"),
  12093. weight: math.unit(356, "lb"),
  12094. name: "Front",
  12095. image: {
  12096. source: "./media/characters/adam-silver-mane/front.svg",
  12097. extra: 1036/937,
  12098. bottom: 63/1099
  12099. }
  12100. },
  12101. side: {
  12102. height: math.unit(8, "feet"),
  12103. weight: math.unit(356, "lb"),
  12104. name: "Side",
  12105. image: {
  12106. source: "./media/characters/adam-silver-mane/side.svg",
  12107. extra: 997/901,
  12108. bottom: 59/1056
  12109. }
  12110. },
  12111. frontNsfw: {
  12112. height: math.unit(8, "feet"),
  12113. weight: math.unit(356, "lb"),
  12114. name: "Front (NSFW)",
  12115. image: {
  12116. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12117. extra: 1036/937,
  12118. bottom: 63/1099
  12119. }
  12120. },
  12121. sideNsfw: {
  12122. height: math.unit(8, "feet"),
  12123. weight: math.unit(356, "lb"),
  12124. name: "Side (NSFW)",
  12125. image: {
  12126. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12127. extra: 997/901,
  12128. bottom: 59/1056
  12129. }
  12130. },
  12131. dick: {
  12132. height: math.unit(2.1, "feet"),
  12133. name: "Dick",
  12134. image: {
  12135. source: "./media/characters/adam-silver-mane/dick.svg"
  12136. }
  12137. },
  12138. taur: {
  12139. height: math.unit(16, "feet"),
  12140. weight: math.unit(1500, "kg"),
  12141. name: "Taur",
  12142. image: {
  12143. source: "./media/characters/adam-silver-mane/taur.svg",
  12144. extra: 1713 / 1571,
  12145. bottom: 0.01
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Normal",
  12152. height: math.unit(8, "feet")
  12153. },
  12154. {
  12155. name: "Minimacro",
  12156. height: math.unit(80, "feet")
  12157. },
  12158. {
  12159. name: "MDA",
  12160. height: math.unit(80, "meters")
  12161. },
  12162. {
  12163. name: "Macro",
  12164. height: math.unit(800, "feet"),
  12165. default: true
  12166. },
  12167. {
  12168. name: "Megamacro",
  12169. height: math.unit(8000, "feet")
  12170. },
  12171. {
  12172. name: "Gigamacro",
  12173. height: math.unit(800, "miles")
  12174. },
  12175. {
  12176. name: "Teramacro",
  12177. height: math.unit(80000, "miles")
  12178. },
  12179. {
  12180. name: "Celestial",
  12181. height: math.unit(8e6, "miles")
  12182. },
  12183. {
  12184. name: "Star Dragon",
  12185. height: math.unit(800000, "parsecs")
  12186. },
  12187. {
  12188. name: "Godly",
  12189. height: math.unit(800, "teraparsecs")
  12190. },
  12191. ]
  12192. ))
  12193. characterMakers.push(() => makeCharacter(
  12194. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12195. {
  12196. front: {
  12197. height: math.unit(6, "feet"),
  12198. weight: math.unit(150, "lb"),
  12199. name: "Front",
  12200. image: {
  12201. source: "./media/characters/ky'owin/front.svg",
  12202. extra: 3862/3053,
  12203. bottom: 74/3936
  12204. }
  12205. },
  12206. },
  12207. [
  12208. {
  12209. name: "Normal",
  12210. height: math.unit(6 + 8 / 12, "feet")
  12211. },
  12212. {
  12213. name: "Large",
  12214. height: math.unit(68, "feet")
  12215. },
  12216. {
  12217. name: "Macro",
  12218. height: math.unit(132, "feet")
  12219. },
  12220. {
  12221. name: "Macro+",
  12222. height: math.unit(340, "feet")
  12223. },
  12224. {
  12225. name: "Macro++",
  12226. height: math.unit(680, "feet"),
  12227. default: true
  12228. },
  12229. {
  12230. name: "Megamacro",
  12231. height: math.unit(1, "mile")
  12232. },
  12233. {
  12234. name: "Megamacro+",
  12235. height: math.unit(10, "miles")
  12236. },
  12237. ]
  12238. ))
  12239. characterMakers.push(() => makeCharacter(
  12240. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12241. {
  12242. front: {
  12243. height: math.unit(4, "feet"),
  12244. weight: math.unit(50, "lb"),
  12245. name: "Front",
  12246. image: {
  12247. source: "./media/characters/mal/front.svg",
  12248. extra: 785 / 724,
  12249. bottom: 0.07
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "Micro",
  12256. height: math.unit(4, "inches")
  12257. },
  12258. {
  12259. name: "Normal",
  12260. height: math.unit(4, "feet"),
  12261. default: true
  12262. },
  12263. {
  12264. name: "Macro",
  12265. height: math.unit(200, "feet")
  12266. },
  12267. ]
  12268. ))
  12269. characterMakers.push(() => makeCharacter(
  12270. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12271. {
  12272. front: {
  12273. height: math.unit(6, "feet"),
  12274. weight: math.unit(150, "lb"),
  12275. name: "Front",
  12276. image: {
  12277. source: "./media/characters/jordan-deware/front.svg",
  12278. extra: 1191 / 1012
  12279. }
  12280. },
  12281. },
  12282. [
  12283. {
  12284. name: "Nano",
  12285. height: math.unit(0.01, "mm")
  12286. },
  12287. {
  12288. name: "Minimicro",
  12289. height: math.unit(1, "mm")
  12290. },
  12291. {
  12292. name: "Micro",
  12293. height: math.unit(0.5, "inches")
  12294. },
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(4, "feet"),
  12298. default: true
  12299. },
  12300. {
  12301. name: "Minimacro",
  12302. height: math.unit(40, "meters")
  12303. },
  12304. {
  12305. name: "Small Macro",
  12306. height: math.unit(400, "meters")
  12307. },
  12308. {
  12309. name: "Macro",
  12310. height: math.unit(4, "miles")
  12311. },
  12312. {
  12313. name: "Megamacro",
  12314. height: math.unit(40, "miles")
  12315. },
  12316. {
  12317. name: "Megamacro+",
  12318. height: math.unit(400, "miles")
  12319. },
  12320. {
  12321. name: "Gigamacro",
  12322. height: math.unit(400000, "miles")
  12323. },
  12324. ]
  12325. ))
  12326. characterMakers.push(() => makeCharacter(
  12327. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12328. {
  12329. side: {
  12330. height: math.unit(6, "feet"),
  12331. weight: math.unit(150, "lb"),
  12332. name: "Side",
  12333. image: {
  12334. source: "./media/characters/kimiko/side.svg",
  12335. extra: 600 / 358
  12336. }
  12337. },
  12338. },
  12339. [
  12340. {
  12341. name: "Normal",
  12342. height: math.unit(15, "feet"),
  12343. default: true
  12344. },
  12345. {
  12346. name: "Macro",
  12347. height: math.unit(220, "feet")
  12348. },
  12349. {
  12350. name: "Macro+",
  12351. height: math.unit(1450, "feet")
  12352. },
  12353. {
  12354. name: "Megamacro",
  12355. height: math.unit(11500, "feet")
  12356. },
  12357. {
  12358. name: "Gigamacro",
  12359. height: math.unit(9500, "miles")
  12360. },
  12361. {
  12362. name: "Teramacro",
  12363. height: math.unit(2208005005, "miles")
  12364. },
  12365. {
  12366. name: "Examacro",
  12367. height: math.unit(2750, "parsecs")
  12368. },
  12369. {
  12370. name: "Zettamacro",
  12371. height: math.unit(101500, "parsecs")
  12372. },
  12373. ]
  12374. ))
  12375. characterMakers.push(() => makeCharacter(
  12376. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12377. {
  12378. front: {
  12379. height: math.unit(6, "feet"),
  12380. weight: math.unit(70, "kg"),
  12381. name: "Front",
  12382. image: {
  12383. source: "./media/characters/andrew-sleepy/front.svg"
  12384. }
  12385. },
  12386. side: {
  12387. height: math.unit(6, "feet"),
  12388. weight: math.unit(70, "kg"),
  12389. name: "Side",
  12390. image: {
  12391. source: "./media/characters/andrew-sleepy/side.svg"
  12392. }
  12393. },
  12394. },
  12395. [
  12396. {
  12397. name: "Micro",
  12398. height: math.unit(1, "mm"),
  12399. default: true
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12405. {
  12406. front: {
  12407. height: math.unit(6, "feet"),
  12408. weight: math.unit(150, "lb"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/judio/front.svg",
  12412. extra: 1258 / 1110
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Normal",
  12419. height: math.unit(5 + 6 / 12, "feet")
  12420. },
  12421. {
  12422. name: "Macro",
  12423. height: math.unit(1000, "feet"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Megamacro",
  12428. height: math.unit(10, "miles")
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12434. {
  12435. frontDressed: {
  12436. height: math.unit(6, "feet"),
  12437. weight: math.unit(68, "kg"),
  12438. name: "Front (Dressed)",
  12439. image: {
  12440. source: "./media/characters/nomaxice/front-dressed.svg",
  12441. extra: 1137/824,
  12442. bottom: 74/1211
  12443. }
  12444. },
  12445. frontShorts: {
  12446. height: math.unit(6, "feet"),
  12447. weight: math.unit(68, "kg"),
  12448. name: "Front (Shorts)",
  12449. image: {
  12450. source: "./media/characters/nomaxice/front-shorts.svg",
  12451. extra: 1137/824,
  12452. bottom: 74/1211
  12453. }
  12454. },
  12455. back: {
  12456. height: math.unit(6, "feet"),
  12457. weight: math.unit(68, "kg"),
  12458. name: "Back",
  12459. image: {
  12460. source: "./media/characters/nomaxice/back.svg",
  12461. extra: 822/786,
  12462. bottom: 39/861
  12463. }
  12464. },
  12465. hand: {
  12466. height: math.unit(0.565, "feet"),
  12467. name: "Hand",
  12468. image: {
  12469. source: "./media/characters/nomaxice/hand.svg"
  12470. }
  12471. },
  12472. foot: {
  12473. height: math.unit(1, "feet"),
  12474. name: "Foot",
  12475. image: {
  12476. source: "./media/characters/nomaxice/foot.svg"
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Micro",
  12483. height: math.unit(8, "cm")
  12484. },
  12485. {
  12486. name: "Norm",
  12487. height: math.unit(1.82, "m")
  12488. },
  12489. {
  12490. name: "Norm+",
  12491. height: math.unit(8.8, "feet"),
  12492. default: true
  12493. },
  12494. {
  12495. name: "Big",
  12496. height: math.unit(8, "meters")
  12497. },
  12498. {
  12499. name: "Macro",
  12500. height: math.unit(18, "meters")
  12501. },
  12502. {
  12503. name: "Macro+",
  12504. height: math.unit(88, "meters")
  12505. },
  12506. ]
  12507. ))
  12508. characterMakers.push(() => makeCharacter(
  12509. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12510. {
  12511. front: {
  12512. height: math.unit(12, "feet"),
  12513. weight: math.unit(1.5, "tons"),
  12514. name: "Front",
  12515. image: {
  12516. source: "./media/characters/dydros/front.svg",
  12517. extra: 863 / 800,
  12518. bottom: 0.015
  12519. }
  12520. },
  12521. back: {
  12522. height: math.unit(12, "feet"),
  12523. weight: math.unit(1.5, "tons"),
  12524. name: "Back",
  12525. image: {
  12526. source: "./media/characters/dydros/back.svg",
  12527. extra: 900 / 843,
  12528. bottom: 0.005
  12529. }
  12530. },
  12531. },
  12532. [
  12533. {
  12534. name: "Normal",
  12535. height: math.unit(12, "feet"),
  12536. default: true
  12537. },
  12538. ]
  12539. ))
  12540. characterMakers.push(() => makeCharacter(
  12541. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12542. {
  12543. front: {
  12544. height: math.unit(6, "feet"),
  12545. weight: math.unit(100, "kg"),
  12546. name: "Front",
  12547. image: {
  12548. source: "./media/characters/riggi/front.svg",
  12549. extra: 5787 / 5303
  12550. }
  12551. },
  12552. hyper: {
  12553. height: math.unit(6 * 5 / 3, "feet"),
  12554. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12555. name: "Hyper",
  12556. image: {
  12557. source: "./media/characters/riggi/hyper.svg",
  12558. extra: 3595 / 3485
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Small Macro",
  12565. height: math.unit(50, "feet")
  12566. },
  12567. {
  12568. name: "Default",
  12569. height: math.unit(200, "feet"),
  12570. default: true
  12571. },
  12572. {
  12573. name: "Loom",
  12574. height: math.unit(10000, "feet")
  12575. },
  12576. {
  12577. name: "Cruising Altitude",
  12578. height: math.unit(30000, "feet")
  12579. },
  12580. {
  12581. name: "Megamacro",
  12582. height: math.unit(100, "miles")
  12583. },
  12584. {
  12585. name: "Continent Sized",
  12586. height: math.unit(2800, "miles")
  12587. },
  12588. {
  12589. name: "Earth Sized",
  12590. height: math.unit(8000, "miles")
  12591. },
  12592. ]
  12593. ))
  12594. characterMakers.push(() => makeCharacter(
  12595. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12596. {
  12597. front: {
  12598. height: math.unit(6, "feet"),
  12599. weight: math.unit(250, "lb"),
  12600. name: "Front",
  12601. image: {
  12602. source: "./media/characters/alexi/front.svg",
  12603. extra: 3483 / 3291,
  12604. bottom: 0.04
  12605. }
  12606. },
  12607. back: {
  12608. height: math.unit(6, "feet"),
  12609. weight: math.unit(250, "lb"),
  12610. name: "Back",
  12611. image: {
  12612. source: "./media/characters/alexi/back.svg",
  12613. extra: 3533 / 3356,
  12614. bottom: 0.021
  12615. }
  12616. },
  12617. frontTransforming: {
  12618. height: math.unit(8.58, "feet"),
  12619. weight: math.unit(1300, "lb"),
  12620. name: "Transforming",
  12621. image: {
  12622. source: "./media/characters/alexi/front-transforming.svg",
  12623. extra: 437 / 409,
  12624. bottom: 19 / 458.66
  12625. }
  12626. },
  12627. frontTransformed: {
  12628. height: math.unit(12.5, "feet"),
  12629. weight: math.unit(4000, "lb"),
  12630. name: "Transformed",
  12631. image: {
  12632. source: "./media/characters/alexi/front-transformed.svg",
  12633. extra: 639 / 614,
  12634. bottom: 30.55 / 671
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Normal",
  12641. height: math.unit(14, "feet"),
  12642. default: true
  12643. },
  12644. {
  12645. name: "Minimacro",
  12646. height: math.unit(30, "meters")
  12647. },
  12648. {
  12649. name: "Macro",
  12650. height: math.unit(500, "meters")
  12651. },
  12652. {
  12653. name: "Megamacro",
  12654. height: math.unit(9000, "km")
  12655. },
  12656. {
  12657. name: "Teramacro",
  12658. height: math.unit(384000, "km")
  12659. },
  12660. ]
  12661. ))
  12662. characterMakers.push(() => makeCharacter(
  12663. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12664. {
  12665. front: {
  12666. height: math.unit(6, "feet"),
  12667. weight: math.unit(150, "lb"),
  12668. name: "Front",
  12669. image: {
  12670. source: "./media/characters/kayroo/front.svg",
  12671. extra: 1153 / 1038,
  12672. bottom: 0.06
  12673. }
  12674. },
  12675. foot: {
  12676. height: math.unit(6, "feet"),
  12677. weight: math.unit(150, "lb"),
  12678. name: "Foot",
  12679. image: {
  12680. source: "./media/characters/kayroo/foot.svg"
  12681. }
  12682. },
  12683. },
  12684. [
  12685. {
  12686. name: "Normal",
  12687. height: math.unit(8, "feet"),
  12688. default: true
  12689. },
  12690. {
  12691. name: "Minimacro",
  12692. height: math.unit(250, "feet")
  12693. },
  12694. {
  12695. name: "Macro",
  12696. height: math.unit(2800, "feet")
  12697. },
  12698. {
  12699. name: "Megamacro",
  12700. height: math.unit(5200, "feet")
  12701. },
  12702. {
  12703. name: "Gigamacro",
  12704. height: math.unit(27000, "feet")
  12705. },
  12706. {
  12707. name: "Omega",
  12708. height: math.unit(45000, "feet")
  12709. },
  12710. ]
  12711. ))
  12712. characterMakers.push(() => makeCharacter(
  12713. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12714. {
  12715. front: {
  12716. height: math.unit(18, "feet"),
  12717. weight: math.unit(5800, "lb"),
  12718. name: "Front",
  12719. image: {
  12720. source: "./media/characters/rhys/front.svg",
  12721. extra: 3386 / 3090,
  12722. bottom: 0.07
  12723. }
  12724. },
  12725. },
  12726. [
  12727. {
  12728. name: "Normal",
  12729. height: math.unit(18, "feet"),
  12730. default: true
  12731. },
  12732. {
  12733. name: "Working Size",
  12734. height: math.unit(200, "feet")
  12735. },
  12736. {
  12737. name: "Demolition Size",
  12738. height: math.unit(2000, "feet")
  12739. },
  12740. {
  12741. name: "Maximum Licensed Size",
  12742. height: math.unit(5, "miles")
  12743. },
  12744. {
  12745. name: "Maximum Observed Size",
  12746. height: math.unit(10, "yottameters")
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12752. {
  12753. front: {
  12754. height: math.unit(6, "feet"),
  12755. weight: math.unit(250, "lb"),
  12756. name: "Front",
  12757. image: {
  12758. source: "./media/characters/toto/front.svg",
  12759. extra: 527 / 479,
  12760. bottom: 0.05
  12761. }
  12762. },
  12763. },
  12764. [
  12765. {
  12766. name: "Micro",
  12767. height: math.unit(3, "feet")
  12768. },
  12769. {
  12770. name: "Normal",
  12771. height: math.unit(10, "feet")
  12772. },
  12773. {
  12774. name: "Macro",
  12775. height: math.unit(150, "feet"),
  12776. default: true
  12777. },
  12778. {
  12779. name: "Megamacro",
  12780. height: math.unit(1200, "feet")
  12781. },
  12782. ]
  12783. ))
  12784. characterMakers.push(() => makeCharacter(
  12785. { name: "King", species: ["lion"], tags: ["anthro"] },
  12786. {
  12787. back: {
  12788. height: math.unit(6, "feet"),
  12789. weight: math.unit(150, "lb"),
  12790. name: "Back",
  12791. image: {
  12792. source: "./media/characters/king/back.svg"
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Micro",
  12799. height: math.unit(2, "inches")
  12800. },
  12801. {
  12802. name: "Normal",
  12803. height: math.unit(8, "feet")
  12804. },
  12805. {
  12806. name: "Macro",
  12807. height: math.unit(200, "feet"),
  12808. default: true
  12809. },
  12810. {
  12811. name: "Megamacro",
  12812. height: math.unit(50, "miles")
  12813. },
  12814. ]
  12815. ))
  12816. characterMakers.push(() => makeCharacter(
  12817. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12818. {
  12819. front: {
  12820. height: math.unit(11, "feet"),
  12821. weight: math.unit(1400, "lb"),
  12822. name: "Front",
  12823. image: {
  12824. source: "./media/characters/cordite/front.svg",
  12825. extra: 1919/1827,
  12826. bottom: 40/1959
  12827. }
  12828. },
  12829. side: {
  12830. height: math.unit(11, "feet"),
  12831. weight: math.unit(1400, "lb"),
  12832. name: "Side",
  12833. image: {
  12834. source: "./media/characters/cordite/side.svg",
  12835. extra: 1908/1793,
  12836. bottom: 38/1946
  12837. }
  12838. },
  12839. back: {
  12840. height: math.unit(11, "feet"),
  12841. weight: math.unit(1400, "lb"),
  12842. name: "Back",
  12843. image: {
  12844. source: "./media/characters/cordite/back.svg",
  12845. extra: 1938/1837,
  12846. bottom: 10/1948
  12847. }
  12848. },
  12849. feral: {
  12850. height: math.unit(2, "feet"),
  12851. weight: math.unit(90, "lb"),
  12852. name: "Feral",
  12853. image: {
  12854. source: "./media/characters/cordite/feral.svg",
  12855. extra: 1260 / 755,
  12856. bottom: 0.05
  12857. }
  12858. },
  12859. },
  12860. [
  12861. {
  12862. name: "Normal",
  12863. height: math.unit(11, "feet"),
  12864. default: true
  12865. },
  12866. ]
  12867. ))
  12868. characterMakers.push(() => makeCharacter(
  12869. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12870. {
  12871. front: {
  12872. height: math.unit(6, "feet"),
  12873. weight: math.unit(150, "lb"),
  12874. name: "Front",
  12875. image: {
  12876. source: "./media/characters/pianostrong/front.svg",
  12877. extra: 6577 / 6254,
  12878. bottom: 0.02
  12879. }
  12880. },
  12881. side: {
  12882. height: math.unit(6, "feet"),
  12883. weight: math.unit(150, "lb"),
  12884. name: "Side",
  12885. image: {
  12886. source: "./media/characters/pianostrong/side.svg",
  12887. extra: 6106 / 5730
  12888. }
  12889. },
  12890. back: {
  12891. height: math.unit(6, "feet"),
  12892. weight: math.unit(150, "lb"),
  12893. name: "Back",
  12894. image: {
  12895. source: "./media/characters/pianostrong/back.svg",
  12896. extra: 6085 / 5733,
  12897. bottom: 0.01
  12898. }
  12899. },
  12900. },
  12901. [
  12902. {
  12903. name: "Macro",
  12904. height: math.unit(100, "feet")
  12905. },
  12906. {
  12907. name: "Macro+",
  12908. height: math.unit(300, "feet"),
  12909. default: true
  12910. },
  12911. {
  12912. name: "Macro++",
  12913. height: math.unit(1000, "feet")
  12914. },
  12915. ]
  12916. ))
  12917. characterMakers.push(() => makeCharacter(
  12918. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12919. {
  12920. front: {
  12921. height: math.unit(6, "feet"),
  12922. weight: math.unit(150, "lb"),
  12923. name: "Front",
  12924. image: {
  12925. source: "./media/characters/kona/front.svg",
  12926. extra: 2960 / 2629,
  12927. bottom: 0.005
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Normal",
  12934. height: math.unit(11 + 8 / 12, "feet")
  12935. },
  12936. {
  12937. name: "Macro",
  12938. height: math.unit(850, "feet"),
  12939. default: true
  12940. },
  12941. {
  12942. name: "Macro+",
  12943. height: math.unit(1.5, "km"),
  12944. default: true
  12945. },
  12946. {
  12947. name: "Megamacro",
  12948. height: math.unit(80, "miles")
  12949. },
  12950. {
  12951. name: "Gigamacro",
  12952. height: math.unit(3500, "miles")
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12958. {
  12959. side: {
  12960. height: math.unit(1.9, "meters"),
  12961. weight: math.unit(326, "kg"),
  12962. name: "Side",
  12963. image: {
  12964. source: "./media/characters/levi/side.svg",
  12965. extra: 1704 / 1334,
  12966. bottom: 0.02
  12967. }
  12968. },
  12969. },
  12970. [
  12971. {
  12972. name: "Normal",
  12973. height: math.unit(1.9, "meters"),
  12974. default: true
  12975. },
  12976. {
  12977. name: "Macro",
  12978. height: math.unit(20, "meters")
  12979. },
  12980. {
  12981. name: "Macro+",
  12982. height: math.unit(200, "meters")
  12983. },
  12984. {
  12985. name: "Megamacro",
  12986. height: math.unit(2, "km")
  12987. },
  12988. {
  12989. name: "Megamacro+",
  12990. height: math.unit(20, "km")
  12991. },
  12992. {
  12993. name: "Gigamacro",
  12994. height: math.unit(2500, "km")
  12995. },
  12996. {
  12997. name: "Gigamacro+",
  12998. height: math.unit(120000, "km")
  12999. },
  13000. {
  13001. name: "Teramacro",
  13002. height: math.unit(7.77e6, "km")
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(6 + 4/12, "feet"),
  13011. weight: math.unit(190, "lb"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/bmc/front.svg",
  13015. extra: 1626/1472,
  13016. bottom: 79/1705
  13017. }
  13018. },
  13019. back: {
  13020. height: math.unit(6 + 4/12, "feet"),
  13021. weight: math.unit(190, "lb"),
  13022. name: "Back",
  13023. image: {
  13024. source: "./media/characters/bmc/back.svg",
  13025. extra: 1640/1479,
  13026. bottom: 45/1685
  13027. }
  13028. },
  13029. frontArmor: {
  13030. height: math.unit(6 + 4/12, "feet"),
  13031. weight: math.unit(190, "lb"),
  13032. name: "Front-armor",
  13033. image: {
  13034. source: "./media/characters/bmc/front-armor.svg",
  13035. extra: 1538/1468,
  13036. bottom: 79/1617
  13037. }
  13038. },
  13039. },
  13040. [
  13041. {
  13042. name: "Human-sized",
  13043. height: math.unit(6 + 4 / 12, "feet")
  13044. },
  13045. {
  13046. name: "Interactive Size",
  13047. height: math.unit(25, "feet")
  13048. },
  13049. {
  13050. name: "Small",
  13051. height: math.unit(250, "feet")
  13052. },
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(1250, "feet"),
  13056. default: true
  13057. },
  13058. {
  13059. name: "Good Day",
  13060. height: math.unit(88, "miles")
  13061. },
  13062. {
  13063. name: "Largest Measured Size",
  13064. height: math.unit(105.960, "galaxies")
  13065. },
  13066. ]
  13067. ))
  13068. characterMakers.push(() => makeCharacter(
  13069. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13070. {
  13071. front: {
  13072. height: math.unit(20, "feet"),
  13073. weight: math.unit(2016, "kg"),
  13074. name: "Front",
  13075. image: {
  13076. source: "./media/characters/sven-the-kaiju/front.svg",
  13077. extra: 1277/1250,
  13078. bottom: 35/1312
  13079. }
  13080. },
  13081. mouth: {
  13082. height: math.unit(1.85, "feet"),
  13083. name: "Mouth",
  13084. image: {
  13085. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Fairy",
  13092. height: math.unit(6, "inches")
  13093. },
  13094. {
  13095. name: "Normal",
  13096. height: math.unit(20, "feet"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Rampage",
  13101. height: math.unit(200, "feet")
  13102. },
  13103. {
  13104. name: "Archfey Forest Guardian",
  13105. height: math.unit(1, "mile")
  13106. },
  13107. ]
  13108. ))
  13109. characterMakers.push(() => makeCharacter(
  13110. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13111. {
  13112. front: {
  13113. height: math.unit(4, "meters"),
  13114. weight: math.unit(2, "tons"),
  13115. name: "Front",
  13116. image: {
  13117. source: "./media/characters/marik/front.svg",
  13118. extra: 1057 / 1003,
  13119. bottom: 0.08
  13120. }
  13121. },
  13122. },
  13123. [
  13124. {
  13125. name: "Normal",
  13126. height: math.unit(4, "meters"),
  13127. default: true
  13128. },
  13129. {
  13130. name: "Macro",
  13131. height: math.unit(20, "meters")
  13132. },
  13133. {
  13134. name: "Megamacro",
  13135. height: math.unit(50, "km")
  13136. },
  13137. {
  13138. name: "Gigamacro",
  13139. height: math.unit(100, "km")
  13140. },
  13141. {
  13142. name: "Alpha Macro",
  13143. height: math.unit(7.88e7, "yottameters")
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13149. {
  13150. front: {
  13151. height: math.unit(6, "feet"),
  13152. weight: math.unit(110, "lb"),
  13153. name: "Front",
  13154. image: {
  13155. source: "./media/characters/mel/front.svg",
  13156. extra: 736 / 617,
  13157. bottom: 0.017
  13158. }
  13159. },
  13160. },
  13161. [
  13162. {
  13163. name: "Pico",
  13164. height: math.unit(3, "pm")
  13165. },
  13166. {
  13167. name: "Nano",
  13168. height: math.unit(3, "nm")
  13169. },
  13170. {
  13171. name: "Micro",
  13172. height: math.unit(0.3, "mm"),
  13173. default: true
  13174. },
  13175. {
  13176. name: "Micro+",
  13177. height: math.unit(3, "mm")
  13178. },
  13179. {
  13180. name: "Normal",
  13181. height: math.unit(5 + 10.5 / 12, "feet")
  13182. },
  13183. ]
  13184. ))
  13185. characterMakers.push(() => makeCharacter(
  13186. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13187. {
  13188. kaiju: {
  13189. height: math.unit(1.75, "meters"),
  13190. weight: math.unit(55, "kg"),
  13191. name: "Kaiju",
  13192. image: {
  13193. source: "./media/characters/lykonous/kaiju.svg",
  13194. extra: 1055 / 946,
  13195. bottom: 0.135
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Normal",
  13202. height: math.unit(2.5, "meters"),
  13203. default: true
  13204. },
  13205. {
  13206. name: "Kaiju Dragon",
  13207. height: math.unit(60, "meters")
  13208. },
  13209. {
  13210. name: "Mega Kaiju",
  13211. height: math.unit(120, "km")
  13212. },
  13213. {
  13214. name: "Giga Kaiju",
  13215. height: math.unit(200, "megameters")
  13216. },
  13217. {
  13218. name: "Terra Kaiju",
  13219. height: math.unit(400, "gigameters")
  13220. },
  13221. {
  13222. name: "Kaiju Dragon God",
  13223. height: math.unit(13000, "exaparsecs")
  13224. },
  13225. ]
  13226. ))
  13227. characterMakers.push(() => makeCharacter(
  13228. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13229. {
  13230. front: {
  13231. height: math.unit(6, "feet"),
  13232. weight: math.unit(150, "lb"),
  13233. name: "Front",
  13234. image: {
  13235. source: "./media/characters/blü/front.svg",
  13236. extra: 1883 / 1564,
  13237. bottom: 0.031
  13238. }
  13239. },
  13240. },
  13241. [
  13242. {
  13243. name: "Normal",
  13244. height: math.unit(13, "feet"),
  13245. default: true
  13246. },
  13247. {
  13248. name: "Big Boi",
  13249. height: math.unit(150, "meters")
  13250. },
  13251. {
  13252. name: "Mini Stomper",
  13253. height: math.unit(300, "meters")
  13254. },
  13255. {
  13256. name: "Macro",
  13257. height: math.unit(1000, "meters")
  13258. },
  13259. {
  13260. name: "Megamacro",
  13261. height: math.unit(11000, "meters")
  13262. },
  13263. {
  13264. name: "Gigamacro",
  13265. height: math.unit(11000, "km")
  13266. },
  13267. {
  13268. name: "Teramacro",
  13269. height: math.unit(420000, "km")
  13270. },
  13271. {
  13272. name: "Examacro",
  13273. height: math.unit(120, "parsecs")
  13274. },
  13275. {
  13276. name: "God Tho",
  13277. height: math.unit(98000000000, "parsecs")
  13278. },
  13279. ]
  13280. ))
  13281. characterMakers.push(() => makeCharacter(
  13282. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13283. {
  13284. taurFront: {
  13285. height: math.unit(6, "feet"),
  13286. weight: math.unit(200, "lb"),
  13287. name: "Taur (Front)",
  13288. image: {
  13289. source: "./media/characters/scales/taur-front.svg",
  13290. extra: 1,
  13291. bottom: 0.05
  13292. }
  13293. },
  13294. taurBack: {
  13295. height: math.unit(6, "feet"),
  13296. weight: math.unit(200, "lb"),
  13297. name: "Taur (Back)",
  13298. image: {
  13299. source: "./media/characters/scales/taur-back.svg",
  13300. extra: 1,
  13301. bottom: 0.08
  13302. }
  13303. },
  13304. anthro: {
  13305. height: math.unit(6 * 7 / 12, "feet"),
  13306. weight: math.unit(100, "lb"),
  13307. name: "Anthro",
  13308. image: {
  13309. source: "./media/characters/scales/anthro.svg",
  13310. extra: 1,
  13311. bottom: 0.06
  13312. }
  13313. },
  13314. },
  13315. [
  13316. {
  13317. name: "Normal",
  13318. height: math.unit(12, "feet"),
  13319. default: true
  13320. },
  13321. ]
  13322. ))
  13323. characterMakers.push(() => makeCharacter(
  13324. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13325. {
  13326. front: {
  13327. height: math.unit(6, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/koragos/front.svg",
  13332. extra: 841 / 794,
  13333. bottom: 0.035
  13334. }
  13335. },
  13336. back: {
  13337. height: math.unit(6, "feet"),
  13338. weight: math.unit(150, "lb"),
  13339. name: "Back",
  13340. image: {
  13341. source: "./media/characters/koragos/back.svg",
  13342. extra: 841 / 810,
  13343. bottom: 0.022
  13344. }
  13345. },
  13346. },
  13347. [
  13348. {
  13349. name: "Normal",
  13350. height: math.unit(6 + 11 / 12, "feet"),
  13351. default: true
  13352. },
  13353. {
  13354. name: "Macro",
  13355. height: math.unit(490, "feet")
  13356. },
  13357. {
  13358. name: "Megamacro",
  13359. height: math.unit(10, "miles")
  13360. },
  13361. {
  13362. name: "Gigamacro",
  13363. height: math.unit(50, "miles")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(6, "feet"),
  13372. weight: math.unit(250, "lb"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/xylrem/front.svg",
  13376. extra: 3323 / 3050,
  13377. bottom: 0.065
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Micro",
  13384. height: math.unit(4, "feet")
  13385. },
  13386. {
  13387. name: "Normal",
  13388. height: math.unit(16, "feet"),
  13389. default: true
  13390. },
  13391. {
  13392. name: "Macro",
  13393. height: math.unit(2720, "feet")
  13394. },
  13395. {
  13396. name: "Megamacro",
  13397. height: math.unit(25000, "miles")
  13398. },
  13399. ]
  13400. ))
  13401. characterMakers.push(() => makeCharacter(
  13402. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13403. {
  13404. front: {
  13405. height: math.unit(8, "feet"),
  13406. weight: math.unit(250, "kg"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/ikideru/front.svg",
  13410. extra: 930 / 870,
  13411. bottom: 0.087
  13412. }
  13413. },
  13414. back: {
  13415. height: math.unit(8, "feet"),
  13416. weight: math.unit(250, "kg"),
  13417. name: "Back",
  13418. image: {
  13419. source: "./media/characters/ikideru/back.svg",
  13420. extra: 919 / 852,
  13421. bottom: 0.055
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Rare",
  13428. height: math.unit(8, "feet"),
  13429. default: true
  13430. },
  13431. {
  13432. name: "Playful Loom",
  13433. height: math.unit(80, "feet")
  13434. },
  13435. {
  13436. name: "City Leaner",
  13437. height: math.unit(230, "feet")
  13438. },
  13439. {
  13440. name: "Megamacro",
  13441. height: math.unit(2500, "feet")
  13442. },
  13443. {
  13444. name: "Gigamacro",
  13445. height: math.unit(26400, "feet")
  13446. },
  13447. {
  13448. name: "Tectonic Shifter",
  13449. height: math.unit(1.7, "megameters")
  13450. },
  13451. {
  13452. name: "Planet Carer",
  13453. height: math.unit(21, "megameters")
  13454. },
  13455. {
  13456. name: "God",
  13457. height: math.unit(11157.22, "parsecs")
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(6, "feet"),
  13466. weight: math.unit(120, "lb"),
  13467. name: "Front",
  13468. image: {
  13469. source: "./media/characters/neo/front.svg"
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Micro",
  13476. height: math.unit(2, "inches"),
  13477. default: true
  13478. },
  13479. {
  13480. name: "Human Size",
  13481. height: math.unit(5 + 8 / 12, "feet")
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(13 + 10 / 12, "feet"),
  13490. weight: math.unit(5320, "lb"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/chauncey-chantz/front.svg",
  13494. extra: 1587 / 1435,
  13495. bottom: 0.02
  13496. }
  13497. },
  13498. },
  13499. [
  13500. {
  13501. name: "Normal",
  13502. height: math.unit(13 + 10 / 12, "feet"),
  13503. default: true
  13504. },
  13505. {
  13506. name: "Macro",
  13507. height: math.unit(45, "feet")
  13508. },
  13509. {
  13510. name: "Megamacro",
  13511. height: math.unit(250, "miles")
  13512. },
  13513. {
  13514. name: "Planetary",
  13515. height: math.unit(10000, "miles")
  13516. },
  13517. {
  13518. name: "Galactic",
  13519. height: math.unit(40000, "parsecs")
  13520. },
  13521. {
  13522. name: "Universal",
  13523. height: math.unit(1, "yottameter")
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13529. {
  13530. front: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(150, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/epifox/front.svg",
  13536. extra: 1,
  13537. bottom: 0.075
  13538. }
  13539. },
  13540. },
  13541. [
  13542. {
  13543. name: "Micro",
  13544. height: math.unit(6, "inches")
  13545. },
  13546. {
  13547. name: "Normal",
  13548. height: math.unit(12, "feet"),
  13549. default: true
  13550. },
  13551. {
  13552. name: "Macro",
  13553. height: math.unit(3810, "feet")
  13554. },
  13555. {
  13556. name: "Megamacro",
  13557. height: math.unit(500, "miles")
  13558. },
  13559. ]
  13560. ))
  13561. characterMakers.push(() => makeCharacter(
  13562. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13563. {
  13564. front: {
  13565. height: math.unit(1.8796, "m"),
  13566. weight: math.unit(230, "lb"),
  13567. name: "Front",
  13568. image: {
  13569. source: "./media/characters/colin-t/front.svg",
  13570. extra: 1272 / 1193,
  13571. bottom: 0.07
  13572. }
  13573. },
  13574. },
  13575. [
  13576. {
  13577. name: "Micro",
  13578. height: math.unit(0.571, "meters")
  13579. },
  13580. {
  13581. name: "Normal",
  13582. height: math.unit(1.8796, "meters"),
  13583. default: true
  13584. },
  13585. {
  13586. name: "Tall",
  13587. height: math.unit(4, "meters")
  13588. },
  13589. {
  13590. name: "Macro",
  13591. height: math.unit(67.241, "meters")
  13592. },
  13593. {
  13594. name: "Megamacro",
  13595. height: math.unit(371.856, "meters")
  13596. },
  13597. {
  13598. name: "Planetary",
  13599. height: math.unit(12631.5689, "km")
  13600. },
  13601. ]
  13602. ))
  13603. characterMakers.push(() => makeCharacter(
  13604. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13605. {
  13606. front: {
  13607. height: math.unit(1.85, "meters"),
  13608. weight: math.unit(80, "kg"),
  13609. name: "Front",
  13610. image: {
  13611. source: "./media/characters/matvei/front.svg",
  13612. extra: 456/447,
  13613. bottom: 8/464
  13614. }
  13615. },
  13616. back: {
  13617. height: math.unit(1.85, "meters"),
  13618. weight: math.unit(80, "kg"),
  13619. name: "Back",
  13620. image: {
  13621. source: "./media/characters/matvei/back.svg",
  13622. extra: 434/427,
  13623. bottom: 11/445
  13624. }
  13625. },
  13626. },
  13627. [
  13628. {
  13629. name: "Normal",
  13630. height: math.unit(1.85, "meters"),
  13631. default: true
  13632. },
  13633. ]
  13634. ))
  13635. characterMakers.push(() => makeCharacter(
  13636. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13637. {
  13638. front: {
  13639. height: math.unit(5 + 9 / 12, "feet"),
  13640. weight: math.unit(70, "lb"),
  13641. name: "Front",
  13642. image: {
  13643. source: "./media/characters/quincy/front.svg",
  13644. extra: 3041 / 2751
  13645. }
  13646. },
  13647. back: {
  13648. height: math.unit(5 + 9 / 12, "feet"),
  13649. weight: math.unit(70, "lb"),
  13650. name: "Back",
  13651. image: {
  13652. source: "./media/characters/quincy/back.svg",
  13653. extra: 3041 / 2751
  13654. }
  13655. },
  13656. flying: {
  13657. height: math.unit(5 + 4 / 12, "feet"),
  13658. weight: math.unit(70, "lb"),
  13659. name: "Flying",
  13660. image: {
  13661. source: "./media/characters/quincy/flying.svg",
  13662. extra: 1044 / 930
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Micro",
  13669. height: math.unit(3, "cm")
  13670. },
  13671. {
  13672. name: "Normal",
  13673. height: math.unit(5 + 9 / 12, "feet")
  13674. },
  13675. {
  13676. name: "Macro",
  13677. height: math.unit(200, "meters"),
  13678. default: true
  13679. },
  13680. {
  13681. name: "Megamacro",
  13682. height: math.unit(1000, "meters")
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13688. {
  13689. front: {
  13690. height: math.unit(3 + 11/12, "feet"),
  13691. weight: math.unit(50, "lb"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/vanrel/front.svg",
  13695. extra: 1104/949,
  13696. bottom: 52/1156
  13697. }
  13698. },
  13699. back: {
  13700. height: math.unit(3 + 11/12, "feet"),
  13701. weight: math.unit(50, "lb"),
  13702. name: "Back",
  13703. image: {
  13704. source: "./media/characters/vanrel/back.svg",
  13705. extra: 1119/976,
  13706. bottom: 37/1156
  13707. }
  13708. },
  13709. tome: {
  13710. height: math.unit(1.35, "feet"),
  13711. weight: math.unit(10, "lb"),
  13712. name: "Vanrel's Tome",
  13713. rename: true,
  13714. image: {
  13715. source: "./media/characters/vanrel/tome.svg"
  13716. }
  13717. },
  13718. beans: {
  13719. height: math.unit(0.89, "feet"),
  13720. name: "Beans",
  13721. image: {
  13722. source: "./media/characters/vanrel/beans.svg"
  13723. }
  13724. },
  13725. },
  13726. [
  13727. {
  13728. name: "Normal",
  13729. height: math.unit(3 + 11/12, "feet"),
  13730. default: true
  13731. },
  13732. ]
  13733. ))
  13734. characterMakers.push(() => makeCharacter(
  13735. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13736. {
  13737. front: {
  13738. height: math.unit(7 + 5 / 12, "feet"),
  13739. name: "Front",
  13740. image: {
  13741. source: "./media/characters/kuiper-vanrel/front.svg",
  13742. extra: 1219/1169,
  13743. bottom: 69/1288
  13744. }
  13745. },
  13746. back: {
  13747. height: math.unit(7 + 5 / 12, "feet"),
  13748. name: "Back",
  13749. image: {
  13750. source: "./media/characters/kuiper-vanrel/back.svg",
  13751. extra: 1236/1193,
  13752. bottom: 27/1263
  13753. }
  13754. },
  13755. foot: {
  13756. height: math.unit(0.55, "meters"),
  13757. name: "Foot",
  13758. image: {
  13759. source: "./media/characters/kuiper-vanrel/foot.svg",
  13760. }
  13761. },
  13762. battle: {
  13763. height: math.unit(6.824, "feet"),
  13764. name: "Battle",
  13765. image: {
  13766. source: "./media/characters/kuiper-vanrel/battle.svg",
  13767. extra: 1466 / 1327,
  13768. bottom: 29 / 1492.5
  13769. }
  13770. },
  13771. meerkui: {
  13772. height: math.unit(18, "inches"),
  13773. name: "Meerkui",
  13774. image: {
  13775. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13776. extra: 1354/1289,
  13777. bottom: 69/1423
  13778. }
  13779. },
  13780. },
  13781. [
  13782. {
  13783. name: "Normal",
  13784. height: math.unit(7 + 5 / 12, "feet"),
  13785. default: true
  13786. },
  13787. ]
  13788. ))
  13789. characterMakers.push(() => makeCharacter(
  13790. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13791. {
  13792. front: {
  13793. height: math.unit(8 + 5 / 12, "feet"),
  13794. name: "Front",
  13795. image: {
  13796. source: "./media/characters/keset-vanrel/front.svg",
  13797. extra: 1231/1148,
  13798. bottom: 82/1313
  13799. }
  13800. },
  13801. back: {
  13802. height: math.unit(8 + 5 / 12, "feet"),
  13803. name: "Back",
  13804. image: {
  13805. source: "./media/characters/keset-vanrel/back.svg",
  13806. extra: 1240/1174,
  13807. bottom: 33/1273
  13808. }
  13809. },
  13810. hand: {
  13811. height: math.unit(0.6, "meters"),
  13812. name: "Hand",
  13813. image: {
  13814. source: "./media/characters/keset-vanrel/hand.svg"
  13815. }
  13816. },
  13817. foot: {
  13818. height: math.unit(0.94978, "meters"),
  13819. name: "Foot",
  13820. image: {
  13821. source: "./media/characters/keset-vanrel/foot.svg"
  13822. }
  13823. },
  13824. battle: {
  13825. height: math.unit(7.408, "feet"),
  13826. name: "Battle",
  13827. image: {
  13828. source: "./media/characters/keset-vanrel/battle.svg",
  13829. extra: 1890 / 1386,
  13830. bottom: 73.28 / 1970
  13831. }
  13832. },
  13833. },
  13834. [
  13835. {
  13836. name: "Normal",
  13837. height: math.unit(8 + 5 / 12, "feet"),
  13838. default: true
  13839. },
  13840. ]
  13841. ))
  13842. characterMakers.push(() => makeCharacter(
  13843. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13844. {
  13845. front: {
  13846. height: math.unit(6, "feet"),
  13847. weight: math.unit(150, "lb"),
  13848. name: "Front",
  13849. image: {
  13850. source: "./media/characters/neos/front.svg",
  13851. extra: 1696 / 992,
  13852. bottom: 0.14
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Normal",
  13859. height: math.unit(54, "cm"),
  13860. default: true
  13861. },
  13862. {
  13863. name: "Macro",
  13864. height: math.unit(100, "m")
  13865. },
  13866. {
  13867. name: "Megamacro",
  13868. height: math.unit(10, "km")
  13869. },
  13870. {
  13871. name: "Megamacro+",
  13872. height: math.unit(100, "km")
  13873. },
  13874. {
  13875. name: "Gigamacro",
  13876. height: math.unit(100, "Mm")
  13877. },
  13878. {
  13879. name: "Teramacro",
  13880. height: math.unit(100, "Gm")
  13881. },
  13882. {
  13883. name: "Examacro",
  13884. height: math.unit(100, "Em")
  13885. },
  13886. {
  13887. name: "Godly",
  13888. height: math.unit(10000, "Ym")
  13889. },
  13890. {
  13891. name: "Beyond Godly",
  13892. height: math.unit(25, "multiverses")
  13893. },
  13894. ]
  13895. ))
  13896. characterMakers.push(() => makeCharacter(
  13897. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13898. {
  13899. fluide_tame: {
  13900. height: math.unit(5, "feet"),
  13901. name: "Tame",
  13902. image: {
  13903. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13904. extra: 1655/1574,
  13905. bottom: 231/1886
  13906. },
  13907. form: "fluide",
  13908. default: true
  13909. },
  13910. fluide_nude: {
  13911. height: math.unit(5, "feet"),
  13912. name: "Nude",
  13913. image: {
  13914. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13915. extra: 1655/1574,
  13916. bottom: 231/1886
  13917. },
  13918. form: "fluide",
  13919. },
  13920. male_tame: {
  13921. height: math.unit(5, "feet"),
  13922. name: "Tame",
  13923. image: {
  13924. source: "./media/characters/sammy-mouse/male-tame.svg",
  13925. extra: 1655/1574,
  13926. bottom: 231/1886
  13927. },
  13928. form: "male",
  13929. default: true
  13930. },
  13931. male_nude: {
  13932. height: math.unit(5, "feet"),
  13933. name: "Nude",
  13934. image: {
  13935. source: "./media/characters/sammy-mouse/male-nude.svg",
  13936. extra: 1655/1574,
  13937. bottom: 231/1886
  13938. },
  13939. form: "male",
  13940. },
  13941. female_nude: {
  13942. height: math.unit(5, "feet"),
  13943. name: "Nude",
  13944. image: {
  13945. source: "./media/characters/sammy-mouse/female-nude.svg",
  13946. extra: 1655/1574,
  13947. bottom: 231/1886
  13948. },
  13949. form: "female",
  13950. default: true
  13951. },
  13952. mouth: {
  13953. height: math.unit(0.32, "feet"),
  13954. name: "Mouth",
  13955. image: {
  13956. source: "./media/characters/sammy-mouse/mouth.svg"
  13957. },
  13958. allForms: true
  13959. },
  13960. paw: {
  13961. height: math.unit(0.42, "feet"),
  13962. name: "Paw",
  13963. image: {
  13964. source: "./media/characters/sammy-mouse/paw.svg"
  13965. },
  13966. allForms: true
  13967. },
  13968. },
  13969. [
  13970. {
  13971. name: "Micro",
  13972. height: math.unit(5, "inches"),
  13973. allForms: true
  13974. },
  13975. {
  13976. name: "Normal",
  13977. height: math.unit(5, "feet"),
  13978. default: true,
  13979. allForms: true
  13980. },
  13981. {
  13982. name: "Macro",
  13983. height: math.unit(60, "feet"),
  13984. allForms: true
  13985. },
  13986. ],
  13987. {
  13988. "fluide": {
  13989. name: "Fluide",
  13990. default: true
  13991. },
  13992. "male": {
  13993. name: "Male",
  13994. },
  13995. "female": {
  13996. name: "Female",
  13997. },
  13998. }
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(4, "feet"),
  14005. weight: math.unit(50, "lb"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/kole/front.svg",
  14009. extra: 1423 / 1303,
  14010. bottom: 0.025
  14011. }
  14012. },
  14013. back: {
  14014. height: math.unit(4, "feet"),
  14015. weight: math.unit(50, "lb"),
  14016. name: "Back",
  14017. image: {
  14018. source: "./media/characters/kole/back.svg",
  14019. extra: 1426 / 1280,
  14020. bottom: 0.02
  14021. }
  14022. },
  14023. },
  14024. [
  14025. {
  14026. name: "Normal",
  14027. height: math.unit(4, "feet"),
  14028. default: true
  14029. },
  14030. ]
  14031. ))
  14032. characterMakers.push(() => makeCharacter(
  14033. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14034. {
  14035. front: {
  14036. height: math.unit(2.5, "feet"),
  14037. weight: math.unit(32, "lb"),
  14038. name: "Front",
  14039. image: {
  14040. source: "./media/characters/rufran/front.svg",
  14041. extra: 1313/885,
  14042. bottom: 94/1407
  14043. }
  14044. },
  14045. side: {
  14046. height: math.unit(2.5, "feet"),
  14047. weight: math.unit(32, "lb"),
  14048. name: "Side",
  14049. image: {
  14050. source: "./media/characters/rufran/side.svg",
  14051. extra: 1109/852,
  14052. bottom: 118/1227
  14053. }
  14054. },
  14055. back: {
  14056. height: math.unit(2.5, "feet"),
  14057. weight: math.unit(32, "lb"),
  14058. name: "Back",
  14059. image: {
  14060. source: "./media/characters/rufran/back.svg",
  14061. extra: 1280/878,
  14062. bottom: 131/1411
  14063. }
  14064. },
  14065. mouth: {
  14066. height: math.unit(1.13, "feet"),
  14067. name: "Mouth",
  14068. image: {
  14069. source: "./media/characters/rufran/mouth.svg"
  14070. }
  14071. },
  14072. foot: {
  14073. height: math.unit(1.33, "feet"),
  14074. name: "Foot",
  14075. image: {
  14076. source: "./media/characters/rufran/foot.svg"
  14077. }
  14078. },
  14079. koboldFront: {
  14080. height: math.unit(2 + 6 / 12, "feet"),
  14081. weight: math.unit(20, "lb"),
  14082. name: "Front (Kobold)",
  14083. image: {
  14084. source: "./media/characters/rufran/kobold-front.svg",
  14085. extra: 2041 / 1839,
  14086. bottom: 0.055
  14087. }
  14088. },
  14089. koboldBack: {
  14090. height: math.unit(2 + 6 / 12, "feet"),
  14091. weight: math.unit(20, "lb"),
  14092. name: "Back (Kobold)",
  14093. image: {
  14094. source: "./media/characters/rufran/kobold-back.svg",
  14095. extra: 2054 / 1839,
  14096. bottom: 0.01
  14097. }
  14098. },
  14099. koboldHand: {
  14100. height: math.unit(0.2166, "meters"),
  14101. name: "Hand (Kobold)",
  14102. image: {
  14103. source: "./media/characters/rufran/kobold-hand.svg"
  14104. }
  14105. },
  14106. koboldFoot: {
  14107. height: math.unit(0.185, "meters"),
  14108. name: "Foot (Kobold)",
  14109. image: {
  14110. source: "./media/characters/rufran/kobold-foot.svg"
  14111. }
  14112. },
  14113. },
  14114. [
  14115. {
  14116. name: "Micro",
  14117. height: math.unit(1, "inch")
  14118. },
  14119. {
  14120. name: "Normal",
  14121. height: math.unit(2 + 6 / 12, "feet"),
  14122. default: true
  14123. },
  14124. {
  14125. name: "Big",
  14126. height: math.unit(60, "feet")
  14127. },
  14128. {
  14129. name: "Macro",
  14130. height: math.unit(325, "feet")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(0.3, "meters"),
  14139. weight: math.unit(3.5, "kg"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/chip/front.svg",
  14143. extra: 748 / 674
  14144. }
  14145. },
  14146. },
  14147. [
  14148. {
  14149. name: "Micro",
  14150. height: math.unit(1, "inch"),
  14151. default: true
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14157. {
  14158. side: {
  14159. height: math.unit(2.3, "meters"),
  14160. weight: math.unit(3500, "lb"),
  14161. name: "Side",
  14162. image: {
  14163. source: "./media/characters/torvid/side.svg",
  14164. extra: 1972 / 722,
  14165. bottom: 0.035
  14166. }
  14167. },
  14168. },
  14169. [
  14170. {
  14171. name: "Normal",
  14172. height: math.unit(2.3, "meters"),
  14173. default: true
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14179. {
  14180. front: {
  14181. height: math.unit(2, "meters"),
  14182. weight: math.unit(150.5, "kg"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/susan/front.svg",
  14186. extra: 693 / 635,
  14187. bottom: 0.05
  14188. }
  14189. },
  14190. },
  14191. [
  14192. {
  14193. name: "Megamacro",
  14194. height: math.unit(505, "miles"),
  14195. default: true
  14196. },
  14197. ]
  14198. ))
  14199. characterMakers.push(() => makeCharacter(
  14200. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14201. {
  14202. front: {
  14203. height: math.unit(6, "feet"),
  14204. weight: math.unit(150, "lb"),
  14205. name: "Front",
  14206. image: {
  14207. source: "./media/characters/raindrops/front.svg",
  14208. extra: 2655 / 2461,
  14209. bottom: 49 / 2705
  14210. }
  14211. },
  14212. back: {
  14213. height: math.unit(6, "feet"),
  14214. weight: math.unit(150, "lb"),
  14215. name: "Back",
  14216. image: {
  14217. source: "./media/characters/raindrops/back.svg",
  14218. extra: 2574 / 2400,
  14219. bottom: 65 / 2634
  14220. }
  14221. },
  14222. },
  14223. [
  14224. {
  14225. name: "Micro",
  14226. height: math.unit(6, "inches")
  14227. },
  14228. {
  14229. name: "Normal",
  14230. height: math.unit(6 + 2 / 12, "feet")
  14231. },
  14232. {
  14233. name: "Macro",
  14234. height: math.unit(131, "feet"),
  14235. default: true
  14236. },
  14237. {
  14238. name: "Megamacro",
  14239. height: math.unit(15, "miles")
  14240. },
  14241. {
  14242. name: "Gigamacro",
  14243. height: math.unit(4000, "miles")
  14244. },
  14245. {
  14246. name: "Teramacro",
  14247. height: math.unit(315000, "miles")
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14253. {
  14254. front: {
  14255. height: math.unit(2.794, "meters"),
  14256. weight: math.unit(325, "kg"),
  14257. name: "Front",
  14258. image: {
  14259. source: "./media/characters/tezwa/front.svg",
  14260. extra: 2083 / 1906,
  14261. bottom: 0.031
  14262. }
  14263. },
  14264. foot: {
  14265. height: math.unit(0.687, "meters"),
  14266. name: "Foot",
  14267. image: {
  14268. source: "./media/characters/tezwa/foot.svg"
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Normal",
  14275. height: math.unit(9 + 2 / 12, "feet"),
  14276. default: true
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(58, "feet"),
  14285. weight: math.unit(89000, "lb"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/typhus/front.svg",
  14289. extra: 816 / 800,
  14290. bottom: 0.065
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Macro",
  14297. height: math.unit(58, "feet"),
  14298. default: true
  14299. },
  14300. ]
  14301. ))
  14302. characterMakers.push(() => makeCharacter(
  14303. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14304. {
  14305. front: {
  14306. height: math.unit(12, "feet"),
  14307. weight: math.unit(6, "tonnes"),
  14308. name: "Front",
  14309. image: {
  14310. source: "./media/characters/lyra-von-wulf/front.svg",
  14311. extra: 1,
  14312. bottom: 0.10
  14313. }
  14314. },
  14315. frontMecha: {
  14316. height: math.unit(12, "feet"),
  14317. weight: math.unit(12, "tonnes"),
  14318. name: "Front (Mecha)",
  14319. image: {
  14320. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14321. extra: 1,
  14322. bottom: 0.042
  14323. }
  14324. },
  14325. maw: {
  14326. height: math.unit(2.2, "feet"),
  14327. name: "Maw",
  14328. image: {
  14329. source: "./media/characters/lyra-von-wulf/maw.svg"
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(12, "feet"),
  14337. default: true
  14338. },
  14339. {
  14340. name: "Classic",
  14341. height: math.unit(50, "feet")
  14342. },
  14343. {
  14344. name: "Macro",
  14345. height: math.unit(500, "feet")
  14346. },
  14347. {
  14348. name: "Megamacro",
  14349. height: math.unit(1, "mile")
  14350. },
  14351. {
  14352. name: "Gigamacro",
  14353. height: math.unit(400, "miles")
  14354. },
  14355. {
  14356. name: "Teramacro",
  14357. height: math.unit(22000, "miles")
  14358. },
  14359. {
  14360. name: "Solarmacro",
  14361. height: math.unit(8600000, "miles")
  14362. },
  14363. {
  14364. name: "Galactic",
  14365. height: math.unit(1057000, "lightyears")
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14371. {
  14372. front: {
  14373. height: math.unit(6 + 10 / 12, "feet"),
  14374. weight: math.unit(150, "lb"),
  14375. name: "Front",
  14376. image: {
  14377. source: "./media/characters/dixon/front.svg",
  14378. extra: 3361 / 3209,
  14379. bottom: 0.01
  14380. }
  14381. },
  14382. },
  14383. [
  14384. {
  14385. name: "Normal",
  14386. height: math.unit(6 + 10 / 12, "feet"),
  14387. default: true
  14388. },
  14389. {
  14390. name: "Big",
  14391. height: math.unit(12, "meters")
  14392. },
  14393. {
  14394. name: "Macro",
  14395. height: math.unit(500, "meters")
  14396. },
  14397. {
  14398. name: "Megamacro",
  14399. height: math.unit(2, "km")
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14405. {
  14406. kingCheetah_front: {
  14407. height: math.unit(1.85, "meters"),
  14408. weight: math.unit(68, "kg"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/kauko/king-cheetah-front.svg",
  14412. extra: 1007/972,
  14413. bottom: 35/1042
  14414. },
  14415. form: "king-cheetah",
  14416. default: true
  14417. },
  14418. kingCheetah_back: {
  14419. height: math.unit(1.85, "meters"),
  14420. weight: math.unit(68, "kg"),
  14421. name: "Back",
  14422. image: {
  14423. source: "./media/characters/kauko/king-cheetah-back.svg",
  14424. extra: 1015/980,
  14425. bottom: 11/1026
  14426. },
  14427. form: "king-cheetah",
  14428. },
  14429. kingCheetah_hand: {
  14430. height: math.unit(0.23, "meters"),
  14431. name: "Hand",
  14432. image: {
  14433. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14434. },
  14435. form: "king-cheetah",
  14436. },
  14437. kingCheetah_paw: {
  14438. height: math.unit(0.38, "meters"),
  14439. name: "Paw",
  14440. image: {
  14441. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14442. },
  14443. form: "king-cheetah",
  14444. },
  14445. kingCheetah_nape: {
  14446. height: math.unit(0.23, "meters"),
  14447. name: "Nape",
  14448. image: {
  14449. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14450. },
  14451. form: "king-cheetah",
  14452. },
  14453. wolf_front: {
  14454. height: math.unit(1.88, "meters"),
  14455. weight: math.unit(74, "kg"),
  14456. name: "Front",
  14457. image: {
  14458. source: "./media/characters/kauko/wolf-front.svg",
  14459. extra: 952/908,
  14460. bottom: 64/1016
  14461. },
  14462. form: "wolf",
  14463. default: true
  14464. },
  14465. wolf_dressed: {
  14466. height: math.unit(1.88, "meters"),
  14467. weight: math.unit(74, "kg"),
  14468. name: "Dressed",
  14469. image: {
  14470. source: "./media/characters/kauko/wolf-dressed.svg",
  14471. extra: 963/916,
  14472. bottom: 101/1064
  14473. },
  14474. form: "wolf",
  14475. },
  14476. wolf_hand: {
  14477. height: math.unit(0.3, "meters"),
  14478. name: "Hand",
  14479. image: {
  14480. source: "./media/characters/kauko/wolf-hand.svg"
  14481. },
  14482. form: "wolf",
  14483. },
  14484. wolf_paw: {
  14485. height: math.unit(0.407, "meters"),
  14486. name: "Paw",
  14487. image: {
  14488. source: "./media/characters/kauko/wolf-paw.svg"
  14489. },
  14490. form: "wolf",
  14491. },
  14492. wolf_nape: {
  14493. height: math.unit(0.25, "meters"),
  14494. name: "Nape",
  14495. image: {
  14496. source: "./media/characters/kauko/wolf-nape.svg"
  14497. },
  14498. form: "wolf",
  14499. },
  14500. },
  14501. [
  14502. {
  14503. name: "Normal",
  14504. height: math.unit(1.85, "m"),
  14505. default: true,
  14506. form: "king-cheetah"
  14507. },
  14508. {
  14509. name: "Normal",
  14510. height: math.unit(1.88, "m"),
  14511. default: true,
  14512. form: "wolf"
  14513. },
  14514. ],
  14515. {
  14516. "king-cheetah": {
  14517. name: "King Cheetah",
  14518. default: true
  14519. },
  14520. "wolf": {
  14521. name: "Wolf",
  14522. },
  14523. }
  14524. ))
  14525. characterMakers.push(() => makeCharacter(
  14526. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14527. {
  14528. frontSfw: {
  14529. height: math.unit(5, "meters"),
  14530. weight: math.unit(4250, "lb"),
  14531. name: "Front",
  14532. image: {
  14533. source: "./media/characters/varg/front-sfw.svg",
  14534. extra: 1103/1010,
  14535. bottom: 50/1153
  14536. },
  14537. form: "anthro",
  14538. default: true
  14539. },
  14540. backSfw: {
  14541. height: math.unit(5, "meters"),
  14542. weight: math.unit(4250, "lb"),
  14543. name: "Back",
  14544. image: {
  14545. source: "./media/characters/varg/back-sfw.svg",
  14546. extra: 1038/1022,
  14547. bottom: 36/1074
  14548. },
  14549. form: "anthro"
  14550. },
  14551. frontNsfw: {
  14552. height: math.unit(5, "meters"),
  14553. weight: math.unit(4250, "lb"),
  14554. name: "Front (NSFW)",
  14555. image: {
  14556. source: "./media/characters/varg/front-nsfw.svg",
  14557. extra: 1103/1010,
  14558. bottom: 50/1153
  14559. },
  14560. form: "anthro"
  14561. },
  14562. sheath: {
  14563. height: math.unit(3.8, "feet"),
  14564. weight: math.unit(90, "kilograms"),
  14565. name: "Sheath",
  14566. image: {
  14567. source: "./media/characters/varg/sheath.svg"
  14568. },
  14569. form: "anthro"
  14570. },
  14571. dick: {
  14572. height: math.unit(4.6, "feet"),
  14573. weight: math.unit(451, "kilograms"),
  14574. name: "Dick",
  14575. image: {
  14576. source: "./media/characters/varg/dick.svg"
  14577. },
  14578. form: "anthro"
  14579. },
  14580. feralSfw: {
  14581. height: math.unit(5, "meters"),
  14582. weight: math.unit(100000, "lb"),
  14583. name: "Side",
  14584. image: {
  14585. source: "./media/characters/varg/feral-sfw.svg",
  14586. extra: 1065/511,
  14587. bottom: 211/1276
  14588. },
  14589. form: "feral",
  14590. default: true
  14591. },
  14592. feralNsfw: {
  14593. height: math.unit(5, "meters"),
  14594. weight: math.unit(100000, "lb"),
  14595. name: "Side (NSFW)",
  14596. image: {
  14597. source: "./media/characters/varg/feral-nsfw.svg",
  14598. extra: 1065/511,
  14599. bottom: 211/1276
  14600. },
  14601. form: "feral",
  14602. },
  14603. feralSheath: {
  14604. height: math.unit(9.8, "feet"),
  14605. weight: math.unit(2000, "kilograms"),
  14606. name: "Sheath",
  14607. image: {
  14608. source: "./media/characters/varg/sheath.svg"
  14609. },
  14610. form: "feral"
  14611. },
  14612. feralDick: {
  14613. height: math.unit(13.11, "feet"),
  14614. weight: math.unit(10440, "kilograms"),
  14615. name: "Dick",
  14616. image: {
  14617. source: "./media/characters/varg/dick.svg"
  14618. },
  14619. form: "feral"
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Normal",
  14625. height: math.unit(5, "meters"),
  14626. form: "anthro"
  14627. },
  14628. {
  14629. name: "Macro",
  14630. height: math.unit(200, "meters"),
  14631. form: "anthro"
  14632. },
  14633. {
  14634. name: "Megamacro",
  14635. height: math.unit(20, "kilometers"),
  14636. form: "anthro"
  14637. },
  14638. {
  14639. name: "True Size",
  14640. height: math.unit(211, "km"),
  14641. form: "anthro",
  14642. default: true
  14643. },
  14644. {
  14645. name: "Gigamacro",
  14646. height: math.unit(1000, "km"),
  14647. form: "anthro"
  14648. },
  14649. {
  14650. name: "Gigamacro+",
  14651. height: math.unit(8000, "km"),
  14652. form: "anthro"
  14653. },
  14654. {
  14655. name: "Teramacro",
  14656. height: math.unit(1000000, "km"),
  14657. form: "anthro"
  14658. },
  14659. {
  14660. name: "Normal",
  14661. height: math.unit(5, "meters"),
  14662. form: "feral"
  14663. },
  14664. {
  14665. name: "Macro",
  14666. height: math.unit(200, "meters"),
  14667. form: "feral"
  14668. },
  14669. {
  14670. name: "Megamacro",
  14671. height: math.unit(20, "kilometers"),
  14672. form: "feral"
  14673. },
  14674. {
  14675. name: "True Size",
  14676. height: math.unit(211, "km"),
  14677. form: "feral",
  14678. default: true
  14679. },
  14680. {
  14681. name: "Gigamacro",
  14682. height: math.unit(1000, "km"),
  14683. form: "feral"
  14684. },
  14685. {
  14686. name: "Gigamacro+",
  14687. height: math.unit(8000, "km"),
  14688. form: "feral"
  14689. },
  14690. {
  14691. name: "Teramacro",
  14692. height: math.unit(1000000, "km"),
  14693. form: "feral"
  14694. },
  14695. ],
  14696. {
  14697. "anthro": {
  14698. name: "Anthro",
  14699. default: true
  14700. },
  14701. "feral": {
  14702. name: "Feral",
  14703. },
  14704. }
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14708. {
  14709. front: {
  14710. height: math.unit(7 + 7 / 12, "feet"),
  14711. weight: math.unit(267, "lb"),
  14712. name: "Front",
  14713. image: {
  14714. source: "./media/characters/dayza/front.svg",
  14715. extra: 1262 / 1200,
  14716. bottom: 0.035
  14717. }
  14718. },
  14719. side: {
  14720. height: math.unit(7 + 7 / 12, "feet"),
  14721. weight: math.unit(267, "lb"),
  14722. name: "Side",
  14723. image: {
  14724. source: "./media/characters/dayza/side.svg",
  14725. extra: 1295 / 1245,
  14726. bottom: 0.05
  14727. }
  14728. },
  14729. back: {
  14730. height: math.unit(7 + 7 / 12, "feet"),
  14731. weight: math.unit(267, "lb"),
  14732. name: "Back",
  14733. image: {
  14734. source: "./media/characters/dayza/back.svg",
  14735. extra: 1241 / 1170
  14736. }
  14737. },
  14738. },
  14739. [
  14740. {
  14741. name: "Normal",
  14742. height: math.unit(7 + 7 / 12, "feet"),
  14743. default: true
  14744. },
  14745. {
  14746. name: "Macro",
  14747. height: math.unit(155, "feet")
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14753. {
  14754. front: {
  14755. height: math.unit(6 + 5 / 12, "feet"),
  14756. weight: math.unit(160, "lb"),
  14757. name: "Front",
  14758. image: {
  14759. source: "./media/characters/xanthos/front.svg",
  14760. extra: 1,
  14761. bottom: 0.04
  14762. }
  14763. },
  14764. back: {
  14765. height: math.unit(6 + 5 / 12, "feet"),
  14766. weight: math.unit(160, "lb"),
  14767. name: "Back",
  14768. image: {
  14769. source: "./media/characters/xanthos/back.svg",
  14770. extra: 1,
  14771. bottom: 0.03
  14772. }
  14773. },
  14774. hand: {
  14775. height: math.unit(0.928, "feet"),
  14776. name: "Hand",
  14777. image: {
  14778. source: "./media/characters/xanthos/hand.svg"
  14779. }
  14780. },
  14781. foot: {
  14782. height: math.unit(1.286, "feet"),
  14783. name: "Foot",
  14784. image: {
  14785. source: "./media/characters/xanthos/foot.svg"
  14786. }
  14787. },
  14788. },
  14789. [
  14790. {
  14791. name: "Normal",
  14792. height: math.unit(6 + 5 / 12, "feet"),
  14793. default: true
  14794. },
  14795. {
  14796. name: "Normal+",
  14797. height: math.unit(6, "meters")
  14798. },
  14799. {
  14800. name: "Macro",
  14801. height: math.unit(40, "feet")
  14802. },
  14803. {
  14804. name: "Macro+",
  14805. height: math.unit(200, "meters")
  14806. },
  14807. {
  14808. name: "Megamacro",
  14809. height: math.unit(20, "km")
  14810. },
  14811. {
  14812. name: "Megamacro+",
  14813. height: math.unit(100, "km")
  14814. },
  14815. {
  14816. name: "Gigamacro",
  14817. height: math.unit(200, "megameters")
  14818. },
  14819. {
  14820. name: "Gigamacro+",
  14821. height: math.unit(1.5, "gigameters")
  14822. },
  14823. ]
  14824. ))
  14825. characterMakers.push(() => makeCharacter(
  14826. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14827. {
  14828. front: {
  14829. height: math.unit(6 + 3 / 12, "feet"),
  14830. weight: math.unit(215, "lb"),
  14831. name: "Front",
  14832. image: {
  14833. source: "./media/characters/grynn/front.svg",
  14834. extra: 4627 / 4209,
  14835. bottom: 0.047
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Micro",
  14842. height: math.unit(6, "inches")
  14843. },
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(6 + 3 / 12, "feet"),
  14847. default: true
  14848. },
  14849. {
  14850. name: "Big",
  14851. height: math.unit(104, "feet")
  14852. },
  14853. {
  14854. name: "Macro",
  14855. height: math.unit(944, "feet")
  14856. },
  14857. {
  14858. name: "Macro+",
  14859. height: math.unit(9480, "feet")
  14860. },
  14861. {
  14862. name: "Megamacro",
  14863. height: math.unit(78752, "feet")
  14864. },
  14865. {
  14866. name: "Megamacro+",
  14867. height: math.unit(630128, "feet")
  14868. },
  14869. {
  14870. name: "Megamacro++",
  14871. height: math.unit(3150695, "feet")
  14872. },
  14873. ]
  14874. ))
  14875. characterMakers.push(() => makeCharacter(
  14876. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14877. {
  14878. front: {
  14879. height: math.unit(7 + 5 / 12, "feet"),
  14880. weight: math.unit(450, "lb"),
  14881. name: "Front",
  14882. image: {
  14883. source: "./media/characters/mocha-aura/front.svg",
  14884. extra: 1907 / 1817,
  14885. bottom: 0.04
  14886. }
  14887. },
  14888. back: {
  14889. height: math.unit(7 + 5 / 12, "feet"),
  14890. weight: math.unit(450, "lb"),
  14891. name: "Back",
  14892. image: {
  14893. source: "./media/characters/mocha-aura/back.svg",
  14894. extra: 1900 / 1825,
  14895. bottom: 0.045
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Nano",
  14902. height: math.unit(1, "nm")
  14903. },
  14904. {
  14905. name: "Megamicro",
  14906. height: math.unit(1, "mm")
  14907. },
  14908. {
  14909. name: "Micro",
  14910. height: math.unit(3, "inches")
  14911. },
  14912. {
  14913. name: "Normal",
  14914. height: math.unit(7 + 5 / 12, "feet"),
  14915. default: true
  14916. },
  14917. {
  14918. name: "Macro",
  14919. height: math.unit(30, "feet")
  14920. },
  14921. {
  14922. name: "Megamacro",
  14923. height: math.unit(3500, "feet")
  14924. },
  14925. {
  14926. name: "Teramacro",
  14927. height: math.unit(500000, "miles")
  14928. },
  14929. {
  14930. name: "Petamacro",
  14931. height: math.unit(50000000000000000, "parsecs")
  14932. },
  14933. ]
  14934. ))
  14935. characterMakers.push(() => makeCharacter(
  14936. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14937. {
  14938. front: {
  14939. height: math.unit(6, "feet"),
  14940. weight: math.unit(150, "lb"),
  14941. name: "Front",
  14942. image: {
  14943. source: "./media/characters/ilisha-devya/front.svg",
  14944. extra: 1053/1049,
  14945. bottom: 270/1323
  14946. }
  14947. },
  14948. back: {
  14949. height: math.unit(6, "feet"),
  14950. weight: math.unit(150, "lb"),
  14951. name: "Back",
  14952. image: {
  14953. source: "./media/characters/ilisha-devya/back.svg",
  14954. extra: 1131/1128,
  14955. bottom: 39/1170
  14956. }
  14957. },
  14958. },
  14959. [
  14960. {
  14961. name: "Macro",
  14962. height: math.unit(500, "feet"),
  14963. default: true
  14964. },
  14965. {
  14966. name: "Megamacro",
  14967. height: math.unit(10, "miles")
  14968. },
  14969. {
  14970. name: "Gigamacro",
  14971. height: math.unit(100000, "miles")
  14972. },
  14973. {
  14974. name: "Examacro",
  14975. height: math.unit(1e9, "lightyears")
  14976. },
  14977. {
  14978. name: "Omniversal",
  14979. height: math.unit(1e33, "lightyears")
  14980. },
  14981. {
  14982. name: "Beyond Infinite",
  14983. height: math.unit(1e100, "lightyears")
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14989. {
  14990. Side: {
  14991. height: math.unit(6, "feet"),
  14992. weight: math.unit(150, "lb"),
  14993. name: "Side",
  14994. image: {
  14995. source: "./media/characters/mira/side.svg",
  14996. extra: 900 / 799,
  14997. bottom: 0.02
  14998. }
  14999. },
  15000. },
  15001. [
  15002. {
  15003. name: "Human Size",
  15004. height: math.unit(6, "feet")
  15005. },
  15006. {
  15007. name: "Macro",
  15008. height: math.unit(100, "feet"),
  15009. default: true
  15010. },
  15011. {
  15012. name: "Megamacro",
  15013. height: math.unit(10, "miles")
  15014. },
  15015. {
  15016. name: "Gigamacro",
  15017. height: math.unit(25000, "miles")
  15018. },
  15019. {
  15020. name: "Teramacro",
  15021. height: math.unit(300, "AU")
  15022. },
  15023. {
  15024. name: "Full Size",
  15025. height: math.unit(4.5e10, "lightyears")
  15026. },
  15027. ]
  15028. ))
  15029. characterMakers.push(() => makeCharacter(
  15030. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15031. {
  15032. front: {
  15033. height: math.unit(6, "feet"),
  15034. weight: math.unit(150, "lb"),
  15035. name: "Front",
  15036. image: {
  15037. source: "./media/characters/holly/front.svg",
  15038. extra: 639 / 606
  15039. }
  15040. },
  15041. back: {
  15042. height: math.unit(6, "feet"),
  15043. weight: math.unit(150, "lb"),
  15044. name: "Back",
  15045. image: {
  15046. source: "./media/characters/holly/back.svg",
  15047. extra: 623 / 598
  15048. }
  15049. },
  15050. frontWorking: {
  15051. height: math.unit(6, "feet"),
  15052. weight: math.unit(150, "lb"),
  15053. name: "Front (Working)",
  15054. image: {
  15055. source: "./media/characters/holly/front-working.svg",
  15056. extra: 607 / 577,
  15057. bottom: 0.048
  15058. }
  15059. },
  15060. },
  15061. [
  15062. {
  15063. name: "Normal",
  15064. height: math.unit(12 + 3 / 12, "feet"),
  15065. default: true
  15066. },
  15067. ]
  15068. ))
  15069. characterMakers.push(() => makeCharacter(
  15070. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15071. {
  15072. front: {
  15073. height: math.unit(6, "feet"),
  15074. weight: math.unit(150, "lb"),
  15075. name: "Front",
  15076. image: {
  15077. source: "./media/characters/porter/front.svg",
  15078. extra: 1,
  15079. bottom: 0.01
  15080. }
  15081. },
  15082. frontRobes: {
  15083. height: math.unit(6, "feet"),
  15084. weight: math.unit(150, "lb"),
  15085. name: "Front (Robes)",
  15086. image: {
  15087. source: "./media/characters/porter/front-robes.svg",
  15088. extra: 1.01,
  15089. bottom: 0.01
  15090. }
  15091. },
  15092. },
  15093. [
  15094. {
  15095. name: "Normal",
  15096. height: math.unit(11 + 9 / 12, "feet"),
  15097. default: true
  15098. },
  15099. ]
  15100. ))
  15101. characterMakers.push(() => makeCharacter(
  15102. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15103. {
  15104. legendary: {
  15105. height: math.unit(6, "feet"),
  15106. weight: math.unit(150, "lb"),
  15107. name: "Legendary",
  15108. image: {
  15109. source: "./media/characters/lucy/legendary.svg",
  15110. extra: 1355 / 1100,
  15111. bottom: 0.045
  15112. }
  15113. },
  15114. },
  15115. [
  15116. {
  15117. name: "Legendary",
  15118. height: math.unit(86882 * 2, "miles"),
  15119. default: true
  15120. },
  15121. ]
  15122. ))
  15123. characterMakers.push(() => makeCharacter(
  15124. { name: "Drusilla", species: ["grizzly-bear", "fox"], 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/drusilla/front.svg",
  15132. extra: 678 / 635,
  15133. bottom: 0.03
  15134. }
  15135. },
  15136. back: {
  15137. height: math.unit(6, "feet"),
  15138. weight: math.unit(150, "lb"),
  15139. name: "Back",
  15140. image: {
  15141. source: "./media/characters/drusilla/back.svg",
  15142. extra: 678 / 635,
  15143. bottom: 0.005
  15144. }
  15145. },
  15146. },
  15147. [
  15148. {
  15149. name: "Macro",
  15150. height: math.unit(100, "feet")
  15151. },
  15152. {
  15153. name: "Canon Height",
  15154. height: math.unit(2000, "feet"),
  15155. default: true
  15156. },
  15157. ]
  15158. ))
  15159. characterMakers.push(() => makeCharacter(
  15160. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15161. {
  15162. front: {
  15163. height: math.unit(6, "feet"),
  15164. weight: math.unit(180, "lb"),
  15165. name: "Front",
  15166. image: {
  15167. source: "./media/characters/renard-thatch/front.svg",
  15168. extra: 2411 / 2275,
  15169. bottom: 0.01
  15170. }
  15171. },
  15172. frontPosing: {
  15173. height: math.unit(6, "feet"),
  15174. weight: math.unit(180, "lb"),
  15175. name: "Front (Posing)",
  15176. image: {
  15177. source: "./media/characters/renard-thatch/front-posing.svg",
  15178. extra: 2381 / 2261,
  15179. bottom: 0.01
  15180. }
  15181. },
  15182. back: {
  15183. height: math.unit(6, "feet"),
  15184. weight: math.unit(180, "lb"),
  15185. name: "Back",
  15186. image: {
  15187. source: "./media/characters/renard-thatch/back.svg",
  15188. extra: 2428 / 2288
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Micro",
  15195. height: math.unit(3, "inches")
  15196. },
  15197. {
  15198. name: "Default",
  15199. height: math.unit(6, "feet"),
  15200. default: true
  15201. },
  15202. {
  15203. name: "Macro",
  15204. height: math.unit(75, "feet")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(1450, "feet"),
  15213. weight: math.unit(1.21e6, "tons"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/sekvra/front.svg",
  15217. extra: 1193/1190,
  15218. bottom: 78/1271
  15219. }
  15220. },
  15221. side: {
  15222. height: math.unit(1450, "feet"),
  15223. weight: math.unit(1.21e6, "tons"),
  15224. name: "Side",
  15225. image: {
  15226. source: "./media/characters/sekvra/side.svg",
  15227. extra: 1193/1190,
  15228. bottom: 52/1245
  15229. }
  15230. },
  15231. back: {
  15232. height: math.unit(1450, "feet"),
  15233. weight: math.unit(1.21e6, "tons"),
  15234. name: "Back",
  15235. image: {
  15236. source: "./media/characters/sekvra/back.svg",
  15237. extra: 1219/1216,
  15238. bottom: 21/1240
  15239. }
  15240. },
  15241. frontClothed: {
  15242. height: math.unit(1450, "feet"),
  15243. weight: math.unit(1.21e6, "tons"),
  15244. name: "Front (Clothed)",
  15245. image: {
  15246. source: "./media/characters/sekvra/front-clothed.svg",
  15247. extra: 1192/1189,
  15248. bottom: 79/1271
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Macro",
  15255. height: math.unit(1450, "feet"),
  15256. default: true
  15257. },
  15258. {
  15259. name: "Megamacro",
  15260. height: math.unit(15000, "feet")
  15261. },
  15262. ]
  15263. ))
  15264. characterMakers.push(() => makeCharacter(
  15265. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15266. {
  15267. front: {
  15268. height: math.unit(6, "feet"),
  15269. weight: math.unit(150, "lb"),
  15270. name: "Front",
  15271. image: {
  15272. source: "./media/characters/carmine/front.svg",
  15273. extra: 1557/1538,
  15274. bottom: 68/1625
  15275. }
  15276. },
  15277. frontArmor: {
  15278. height: math.unit(6, "feet"),
  15279. weight: math.unit(150, "lb"),
  15280. name: "Front (Armor)",
  15281. image: {
  15282. source: "./media/characters/carmine/front-armor.svg",
  15283. extra: 1549/1530,
  15284. bottom: 82/1631
  15285. }
  15286. },
  15287. mouth: {
  15288. height: math.unit(0.55, "feet"),
  15289. name: "Mouth",
  15290. image: {
  15291. source: "./media/characters/carmine/mouth.svg"
  15292. }
  15293. },
  15294. hand: {
  15295. height: math.unit(1.05, "feet"),
  15296. name: "Hand",
  15297. image: {
  15298. source: "./media/characters/carmine/hand.svg"
  15299. }
  15300. },
  15301. foot: {
  15302. height: math.unit(0.6, "feet"),
  15303. name: "Foot",
  15304. image: {
  15305. source: "./media/characters/carmine/foot.svg"
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Large",
  15312. height: math.unit(1, "mile")
  15313. },
  15314. {
  15315. name: "Huge",
  15316. height: math.unit(40, "miles"),
  15317. default: true
  15318. },
  15319. {
  15320. name: "Colossal",
  15321. height: math.unit(2500, "miles")
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15327. {
  15328. front: {
  15329. height: math.unit(6, "feet"),
  15330. weight: math.unit(150, "lb"),
  15331. name: "Front",
  15332. image: {
  15333. source: "./media/characters/elyssia/front.svg",
  15334. extra: 2201 / 2035,
  15335. bottom: 0.05
  15336. }
  15337. },
  15338. frontClothed: {
  15339. height: math.unit(6, "feet"),
  15340. weight: math.unit(150, "lb"),
  15341. name: "Front (Clothed)",
  15342. image: {
  15343. source: "./media/characters/elyssia/front-clothed.svg",
  15344. extra: 2201 / 2035,
  15345. bottom: 0.05
  15346. }
  15347. },
  15348. back: {
  15349. height: math.unit(6, "feet"),
  15350. weight: math.unit(150, "lb"),
  15351. name: "Back",
  15352. image: {
  15353. source: "./media/characters/elyssia/back.svg",
  15354. extra: 2201 / 2035,
  15355. bottom: 0.013
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Smaller",
  15362. height: math.unit(150, "feet")
  15363. },
  15364. {
  15365. name: "Standard",
  15366. height: math.unit(1400, "feet"),
  15367. default: true
  15368. },
  15369. {
  15370. name: "Distracted",
  15371. height: math.unit(15000, "feet")
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15377. {
  15378. front: {
  15379. height: math.unit(7 + 4/12, "feet"),
  15380. weight: math.unit(690, "lb"),
  15381. name: "Front",
  15382. image: {
  15383. source: "./media/characters/geno-maxwell/front.svg",
  15384. extra: 984/856,
  15385. bottom: 87/1071
  15386. }
  15387. },
  15388. back: {
  15389. height: math.unit(7 + 4/12, "feet"),
  15390. weight: math.unit(690, "lb"),
  15391. name: "Back",
  15392. image: {
  15393. source: "./media/characters/geno-maxwell/back.svg",
  15394. extra: 981/854,
  15395. bottom: 57/1038
  15396. }
  15397. },
  15398. frontCostume: {
  15399. height: math.unit(7 + 4/12, "feet"),
  15400. weight: math.unit(690, "lb"),
  15401. name: "Front (Costume)",
  15402. image: {
  15403. source: "./media/characters/geno-maxwell/front-costume.svg",
  15404. extra: 984/856,
  15405. bottom: 87/1071
  15406. }
  15407. },
  15408. backcostume: {
  15409. height: math.unit(7 + 4/12, "feet"),
  15410. weight: math.unit(690, "lb"),
  15411. name: "Back (Costume)",
  15412. image: {
  15413. source: "./media/characters/geno-maxwell/back-costume.svg",
  15414. extra: 981/854,
  15415. bottom: 57/1038
  15416. }
  15417. },
  15418. },
  15419. [
  15420. {
  15421. name: "Micro",
  15422. height: math.unit(3, "inches")
  15423. },
  15424. {
  15425. name: "Normal",
  15426. height: math.unit(7 + 4 / 12, "feet"),
  15427. default: true
  15428. },
  15429. {
  15430. name: "Macro",
  15431. height: math.unit(220, "feet")
  15432. },
  15433. {
  15434. name: "Megamacro",
  15435. height: math.unit(11, "miles")
  15436. },
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15441. {
  15442. front: {
  15443. height: math.unit(7 + 4/12, "feet"),
  15444. weight: math.unit(750, "lb"),
  15445. name: "Front",
  15446. image: {
  15447. source: "./media/characters/regena-maxwell/front.svg",
  15448. extra: 984/856,
  15449. bottom: 87/1071
  15450. }
  15451. },
  15452. back: {
  15453. height: math.unit(7 + 4/12, "feet"),
  15454. weight: math.unit(750, "lb"),
  15455. name: "Back",
  15456. image: {
  15457. source: "./media/characters/regena-maxwell/back.svg",
  15458. extra: 981/854,
  15459. bottom: 57/1038
  15460. }
  15461. },
  15462. frontCostume: {
  15463. height: math.unit(7 + 4/12, "feet"),
  15464. weight: math.unit(750, "lb"),
  15465. name: "Front (Costume)",
  15466. image: {
  15467. source: "./media/characters/regena-maxwell/front-costume.svg",
  15468. extra: 984/856,
  15469. bottom: 87/1071
  15470. }
  15471. },
  15472. backcostume: {
  15473. height: math.unit(7 + 4/12, "feet"),
  15474. weight: math.unit(750, "lb"),
  15475. name: "Back (Costume)",
  15476. image: {
  15477. source: "./media/characters/regena-maxwell/back-costume.svg",
  15478. extra: 981/854,
  15479. bottom: 57/1038
  15480. }
  15481. },
  15482. },
  15483. [
  15484. {
  15485. name: "Normal",
  15486. height: math.unit(7 + 4 / 12, "feet"),
  15487. default: true
  15488. },
  15489. {
  15490. name: "Macro",
  15491. height: math.unit(220, "feet")
  15492. },
  15493. {
  15494. name: "Megamacro",
  15495. height: math.unit(11, "miles")
  15496. },
  15497. ]
  15498. ))
  15499. characterMakers.push(() => makeCharacter(
  15500. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15501. {
  15502. front: {
  15503. height: math.unit(6, "feet"),
  15504. weight: math.unit(150, "lb"),
  15505. name: "Front",
  15506. image: {
  15507. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15508. extra: 860 / 690,
  15509. bottom: 0.03
  15510. }
  15511. },
  15512. },
  15513. [
  15514. {
  15515. name: "Normal",
  15516. height: math.unit(1.7, "meters"),
  15517. default: true
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15523. {
  15524. front: {
  15525. height: math.unit(6, "feet"),
  15526. weight: math.unit(150, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/quilly/front.svg",
  15530. extra: 890 / 776
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Gigamacro",
  15537. height: math.unit(404090, "miles"),
  15538. default: true
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15544. {
  15545. front: {
  15546. height: math.unit(7 + 8 / 12, "feet"),
  15547. weight: math.unit(350, "lb"),
  15548. name: "Front",
  15549. image: {
  15550. source: "./media/characters/tempest/front.svg",
  15551. extra: 1175 / 1086,
  15552. bottom: 0.02
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(7 + 8 / 12, "feet"),
  15560. default: true
  15561. },
  15562. ]
  15563. ))
  15564. characterMakers.push(() => makeCharacter(
  15565. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15566. {
  15567. side: {
  15568. height: math.unit(4 + 5 / 12, "feet"),
  15569. weight: math.unit(80, "lb"),
  15570. name: "Side",
  15571. image: {
  15572. source: "./media/characters/rodger/side.svg",
  15573. extra: 1235 / 1118
  15574. }
  15575. },
  15576. },
  15577. [
  15578. {
  15579. name: "Micro",
  15580. height: math.unit(1, "inch")
  15581. },
  15582. {
  15583. name: "Normal",
  15584. height: math.unit(4 + 5 / 12, "feet"),
  15585. default: true
  15586. },
  15587. {
  15588. name: "Macro",
  15589. height: math.unit(120, "feet")
  15590. },
  15591. ]
  15592. ))
  15593. characterMakers.push(() => makeCharacter(
  15594. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15595. {
  15596. front: {
  15597. height: math.unit(6, "feet"),
  15598. weight: math.unit(150, "lb"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/danyel/front.svg",
  15602. extra: 1185 / 1123,
  15603. bottom: 0.05
  15604. }
  15605. },
  15606. },
  15607. [
  15608. {
  15609. name: "Shrunken",
  15610. height: math.unit(0.5, "mm")
  15611. },
  15612. {
  15613. name: "Micro",
  15614. height: math.unit(1, "mm"),
  15615. default: true
  15616. },
  15617. {
  15618. name: "Upsized",
  15619. height: math.unit(5 + 5 / 12, "feet")
  15620. },
  15621. ]
  15622. ))
  15623. characterMakers.push(() => makeCharacter(
  15624. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15625. {
  15626. front: {
  15627. height: math.unit(5 + 6 / 12, "feet"),
  15628. weight: math.unit(200, "lb"),
  15629. name: "Front",
  15630. image: {
  15631. source: "./media/characters/vivian-bijoux/front.svg",
  15632. extra: 1217/1209,
  15633. bottom: 76/1293
  15634. }
  15635. },
  15636. back: {
  15637. height: math.unit(5 + 6 / 12, "feet"),
  15638. weight: math.unit(200, "lb"),
  15639. name: "Back",
  15640. image: {
  15641. source: "./media/characters/vivian-bijoux/back.svg",
  15642. extra: 1214/1208,
  15643. bottom: 51/1265
  15644. }
  15645. },
  15646. dressed: {
  15647. height: math.unit(5 + 6 / 12, "feet"),
  15648. weight: math.unit(200, "lb"),
  15649. name: "Dressed",
  15650. image: {
  15651. source: "./media/characters/vivian-bijoux/dressed.svg",
  15652. extra: 1217/1209,
  15653. bottom: 76/1293
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Normal",
  15660. height: math.unit(5 + 6 / 12, "feet"),
  15661. default: true
  15662. },
  15663. {
  15664. name: "Bad Dream",
  15665. height: math.unit(500, "feet")
  15666. },
  15667. {
  15668. name: "Nightmare",
  15669. height: math.unit(500, "miles")
  15670. },
  15671. ]
  15672. ))
  15673. characterMakers.push(() => makeCharacter(
  15674. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15675. {
  15676. front: {
  15677. height: math.unit(6 + 1 / 12, "feet"),
  15678. weight: math.unit(260, "lb"),
  15679. name: "Front",
  15680. image: {
  15681. source: "./media/characters/zeta/front.svg",
  15682. extra: 1968 / 1889,
  15683. bottom: 0.06
  15684. }
  15685. },
  15686. back: {
  15687. height: math.unit(6 + 1 / 12, "feet"),
  15688. weight: math.unit(260, "lb"),
  15689. name: "Back",
  15690. image: {
  15691. source: "./media/characters/zeta/back.svg",
  15692. extra: 1944 / 1858,
  15693. bottom: 0.03
  15694. }
  15695. },
  15696. hand: {
  15697. height: math.unit(1.112, "feet"),
  15698. name: "Hand",
  15699. image: {
  15700. source: "./media/characters/zeta/hand.svg"
  15701. }
  15702. },
  15703. foot: {
  15704. height: math.unit(1.48, "feet"),
  15705. name: "Foot",
  15706. image: {
  15707. source: "./media/characters/zeta/foot.svg"
  15708. }
  15709. },
  15710. },
  15711. [
  15712. {
  15713. name: "Micro",
  15714. height: math.unit(6, "inches")
  15715. },
  15716. {
  15717. name: "Normal",
  15718. height: math.unit(6 + 1 / 12, "feet"),
  15719. default: true
  15720. },
  15721. {
  15722. name: "Macro",
  15723. height: math.unit(20, "feet")
  15724. },
  15725. ]
  15726. ))
  15727. characterMakers.push(() => makeCharacter(
  15728. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15729. {
  15730. front: {
  15731. height: math.unit(6, "feet"),
  15732. weight: math.unit(150, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/jamie-larsen/front.svg",
  15736. extra: 962 / 933,
  15737. bottom: 0.02
  15738. }
  15739. },
  15740. back: {
  15741. height: math.unit(6, "feet"),
  15742. weight: math.unit(150, "lb"),
  15743. name: "Back",
  15744. image: {
  15745. source: "./media/characters/jamie-larsen/back.svg",
  15746. extra: 997 / 946
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Macro",
  15753. height: math.unit(28 + 7 / 12, "feet"),
  15754. default: true
  15755. },
  15756. {
  15757. name: "Macro+",
  15758. height: math.unit(180, "feet")
  15759. },
  15760. {
  15761. name: "Megamacro",
  15762. height: math.unit(10, "miles")
  15763. },
  15764. {
  15765. name: "Gigamacro",
  15766. height: math.unit(200000, "miles")
  15767. },
  15768. ]
  15769. ))
  15770. characterMakers.push(() => makeCharacter(
  15771. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15772. {
  15773. front: {
  15774. height: math.unit(6, "feet"),
  15775. weight: math.unit(120, "lb"),
  15776. name: "Front",
  15777. image: {
  15778. source: "./media/characters/vance/front.svg",
  15779. extra: 1980 / 1890,
  15780. bottom: 0.09
  15781. }
  15782. },
  15783. back: {
  15784. height: math.unit(6, "feet"),
  15785. weight: math.unit(120, "lb"),
  15786. name: "Back",
  15787. image: {
  15788. source: "./media/characters/vance/back.svg",
  15789. extra: 2081 / 1994,
  15790. bottom: 0.014
  15791. }
  15792. },
  15793. hand: {
  15794. height: math.unit(0.88, "feet"),
  15795. name: "Hand",
  15796. image: {
  15797. source: "./media/characters/vance/hand.svg"
  15798. }
  15799. },
  15800. foot: {
  15801. height: math.unit(0.64, "feet"),
  15802. name: "Foot",
  15803. image: {
  15804. source: "./media/characters/vance/foot.svg"
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Small",
  15811. height: math.unit(90, "feet"),
  15812. default: true
  15813. },
  15814. {
  15815. name: "Macro",
  15816. height: math.unit(100, "meters")
  15817. },
  15818. {
  15819. name: "Megamacro",
  15820. height: math.unit(15, "miles")
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15826. {
  15827. front: {
  15828. height: math.unit(6, "feet"),
  15829. weight: math.unit(180, "lb"),
  15830. name: "Front",
  15831. image: {
  15832. source: "./media/characters/xochitl/front.svg",
  15833. extra: 2297 / 2261,
  15834. bottom: 0.065
  15835. }
  15836. },
  15837. back: {
  15838. height: math.unit(6, "feet"),
  15839. weight: math.unit(180, "lb"),
  15840. name: "Back",
  15841. image: {
  15842. source: "./media/characters/xochitl/back.svg",
  15843. extra: 2386 / 2354,
  15844. bottom: 0.01
  15845. }
  15846. },
  15847. foot: {
  15848. height: math.unit(6 / 5 * 1.15, "feet"),
  15849. weight: math.unit(150, "lb"),
  15850. name: "Foot",
  15851. image: {
  15852. source: "./media/characters/xochitl/foot.svg"
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Macro",
  15859. height: math.unit(80, "feet")
  15860. },
  15861. {
  15862. name: "Macro+",
  15863. height: math.unit(400, "feet"),
  15864. default: true
  15865. },
  15866. {
  15867. name: "Gigamacro",
  15868. height: math.unit(80000, "miles")
  15869. },
  15870. {
  15871. name: "Gigamacro+",
  15872. height: math.unit(400000, "miles")
  15873. },
  15874. {
  15875. name: "Teramacro",
  15876. height: math.unit(300, "AU")
  15877. },
  15878. ]
  15879. ))
  15880. characterMakers.push(() => makeCharacter(
  15881. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15882. {
  15883. front: {
  15884. height: math.unit(6, "feet"),
  15885. weight: math.unit(150, "lb"),
  15886. name: "Front",
  15887. image: {
  15888. source: "./media/characters/vincent/front.svg",
  15889. extra: 1130 / 1080,
  15890. bottom: 0.055
  15891. }
  15892. },
  15893. beak: {
  15894. height: math.unit(6 * 0.1, "feet"),
  15895. name: "Beak",
  15896. image: {
  15897. source: "./media/characters/vincent/beak.svg"
  15898. }
  15899. },
  15900. hand: {
  15901. height: math.unit(6 * 0.85, "feet"),
  15902. weight: math.unit(150, "lb"),
  15903. name: "Hand",
  15904. image: {
  15905. source: "./media/characters/vincent/hand.svg"
  15906. }
  15907. },
  15908. foot: {
  15909. height: math.unit(6 * 0.19, "feet"),
  15910. weight: math.unit(150, "lb"),
  15911. name: "Foot",
  15912. image: {
  15913. source: "./media/characters/vincent/foot.svg"
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Base",
  15920. height: math.unit(6 + 5 / 12, "feet"),
  15921. default: true
  15922. },
  15923. {
  15924. name: "Macro",
  15925. height: math.unit(300, "feet")
  15926. },
  15927. {
  15928. name: "Megamacro",
  15929. height: math.unit(2, "miles")
  15930. },
  15931. {
  15932. name: "Gigamacro",
  15933. height: math.unit(1000, "miles")
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15939. {
  15940. front: {
  15941. height: math.unit(2, "meters"),
  15942. weight: math.unit(500, "kg"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/coatl/front.svg",
  15946. extra: 3948 / 3500,
  15947. bottom: 0.082
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Normal",
  15954. height: math.unit(4, "meters")
  15955. },
  15956. {
  15957. name: "Macro",
  15958. height: math.unit(100, "meters"),
  15959. default: true
  15960. },
  15961. {
  15962. name: "Macro+",
  15963. height: math.unit(300, "meters")
  15964. },
  15965. {
  15966. name: "Megamacro",
  15967. height: math.unit(3, "gigameters")
  15968. },
  15969. {
  15970. name: "Megamacro+",
  15971. height: math.unit(300, "terameters")
  15972. },
  15973. {
  15974. name: "Megamacro++",
  15975. height: math.unit(3, "lightyears")
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15981. {
  15982. front: {
  15983. height: math.unit(6, "feet"),
  15984. weight: math.unit(50, "kg"),
  15985. name: "front",
  15986. image: {
  15987. source: "./media/characters/shiroryu/front.svg",
  15988. extra: 1990 / 1935
  15989. }
  15990. },
  15991. },
  15992. [
  15993. {
  15994. name: "Mortal Mingling",
  15995. height: math.unit(3, "meters")
  15996. },
  15997. {
  15998. name: "Kaiju-ish",
  15999. height: math.unit(250, "meters")
  16000. },
  16001. {
  16002. name: "Somewhat Godly",
  16003. height: math.unit(400, "km"),
  16004. default: true
  16005. },
  16006. {
  16007. name: "Planetary",
  16008. height: math.unit(300, "megameters")
  16009. },
  16010. {
  16011. name: "Galaxy-dwarfing",
  16012. height: math.unit(450, "kiloparsecs")
  16013. },
  16014. {
  16015. name: "Universe Eater",
  16016. height: math.unit(150, "gigaparsecs")
  16017. },
  16018. {
  16019. name: "Almost Immeasurable",
  16020. height: math.unit(1.3e266, "yottaparsecs")
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16026. {
  16027. front: {
  16028. height: math.unit(6, "feet"),
  16029. weight: math.unit(150, "lb"),
  16030. name: "Front",
  16031. image: {
  16032. source: "./media/characters/umeko/front.svg",
  16033. extra: 1,
  16034. bottom: 0.019
  16035. }
  16036. },
  16037. frontArmored: {
  16038. height: math.unit(6, "feet"),
  16039. weight: math.unit(150, "lb"),
  16040. name: "Front (Armored)",
  16041. image: {
  16042. source: "./media/characters/umeko/front-armored.svg",
  16043. extra: 1,
  16044. bottom: 0.021
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Macro",
  16051. height: math.unit(220, "feet"),
  16052. default: true
  16053. },
  16054. {
  16055. name: "Guardian Dragon",
  16056. height: math.unit(50, "miles")
  16057. },
  16058. {
  16059. name: "Cosmic",
  16060. height: math.unit(800000, "miles")
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16066. {
  16067. front: {
  16068. height: math.unit(6, "feet"),
  16069. weight: math.unit(150, "lb"),
  16070. name: "Front",
  16071. image: {
  16072. source: "./media/characters/cassidy/front.svg",
  16073. extra: 810/808,
  16074. bottom: 41/851
  16075. }
  16076. },
  16077. },
  16078. [
  16079. {
  16080. name: "Canon Height",
  16081. height: math.unit(120, "feet"),
  16082. default: true
  16083. },
  16084. {
  16085. name: "Macro+",
  16086. height: math.unit(400, "feet")
  16087. },
  16088. {
  16089. name: "Macro++",
  16090. height: math.unit(4000, "feet")
  16091. },
  16092. {
  16093. name: "Megamacro",
  16094. height: math.unit(3, "miles")
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(6, "feet"),
  16103. weight: math.unit(150, "lb"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/isaac/front.svg",
  16107. extra: 896 / 815,
  16108. bottom: 0.11
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Human Size",
  16115. height: math.unit(8, "feet"),
  16116. default: true
  16117. },
  16118. {
  16119. name: "Macro",
  16120. height: math.unit(400, "feet")
  16121. },
  16122. {
  16123. name: "Megamacro",
  16124. height: math.unit(50, "miles")
  16125. },
  16126. {
  16127. name: "Canon Height",
  16128. height: math.unit(200, "AU")
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16134. {
  16135. front: {
  16136. height: math.unit(6, "feet"),
  16137. weight: math.unit(72, "kg"),
  16138. name: "Front",
  16139. image: {
  16140. source: "./media/characters/sleekit/front.svg",
  16141. extra: 4693 / 4487,
  16142. bottom: 0.012
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Minimum Height",
  16149. height: math.unit(10, "meters")
  16150. },
  16151. {
  16152. name: "Smaller",
  16153. height: math.unit(25, "meters")
  16154. },
  16155. {
  16156. name: "Larger",
  16157. height: math.unit(38, "meters"),
  16158. default: true
  16159. },
  16160. {
  16161. name: "Maximum height",
  16162. height: math.unit(100, "meters")
  16163. },
  16164. ]
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16168. {
  16169. front: {
  16170. height: math.unit(6, "feet"),
  16171. weight: math.unit(150, "lb"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/nillia/front.svg",
  16175. extra: 719/665,
  16176. bottom: 6/725
  16177. }
  16178. },
  16179. back: {
  16180. height: math.unit(6, "feet"),
  16181. weight: math.unit(150, "lb"),
  16182. name: "Back",
  16183. image: {
  16184. source: "./media/characters/nillia/back.svg",
  16185. extra: 705/651,
  16186. bottom: 5/710
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Canon Height",
  16193. height: math.unit(489, "feet"),
  16194. default: true
  16195. }
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(6, "feet"),
  16203. weight: math.unit(150, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/mesmyriza/front.svg",
  16207. extra: 1541/1291,
  16208. bottom: 87/1628
  16209. }
  16210. },
  16211. foot: {
  16212. height: math.unit(6 / (250 / 35), "feet"),
  16213. name: "Foot",
  16214. image: {
  16215. source: "./media/characters/mesmyriza/foot.svg"
  16216. }
  16217. },
  16218. },
  16219. [
  16220. {
  16221. name: "Macro",
  16222. height: math.unit(457, "meters"),
  16223. default: true
  16224. },
  16225. {
  16226. name: "Megamacro",
  16227. height: math.unit(8, "megameters")
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16233. {
  16234. front: {
  16235. height: math.unit(6, "feet"),
  16236. weight: math.unit(250, "lb"),
  16237. name: "Front",
  16238. image: {
  16239. source: "./media/characters/saudade/front.svg",
  16240. extra: 1172 / 1139,
  16241. bottom: 0.035
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Micro",
  16248. height: math.unit(3, "inches")
  16249. },
  16250. {
  16251. name: "Normal",
  16252. height: math.unit(6, "feet"),
  16253. default: true
  16254. },
  16255. {
  16256. name: "Macro",
  16257. height: math.unit(50, "feet")
  16258. },
  16259. {
  16260. name: "Megamacro",
  16261. height: math.unit(2800, "feet")
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16267. {
  16268. front: {
  16269. height: math.unit(5 + 4 / 12, "feet"),
  16270. weight: math.unit(100, "lb"),
  16271. name: "Front",
  16272. image: {
  16273. source: "./media/characters/keireer/front.svg",
  16274. extra: 716 / 666,
  16275. bottom: 0.05
  16276. }
  16277. },
  16278. },
  16279. [
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(5 + 4 / 12, "feet"),
  16283. default: true
  16284. },
  16285. ]
  16286. ))
  16287. characterMakers.push(() => makeCharacter(
  16288. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16289. {
  16290. front: {
  16291. height: math.unit(5.5, "feet"),
  16292. weight: math.unit(90, "kg"),
  16293. name: "Front",
  16294. image: {
  16295. source: "./media/characters/mirja/front.svg",
  16296. extra: 1452/1262,
  16297. bottom: 67/1519
  16298. }
  16299. },
  16300. frontDressed: {
  16301. height: math.unit(5.5, "feet"),
  16302. weight: math.unit(90, "lb"),
  16303. name: "Front (Dressed)",
  16304. image: {
  16305. source: "./media/characters/mirja/dressed.svg",
  16306. extra: 1452/1262,
  16307. bottom: 67/1519
  16308. }
  16309. },
  16310. back: {
  16311. height: math.unit(6, "feet"),
  16312. weight: math.unit(90, "lb"),
  16313. name: "Back",
  16314. image: {
  16315. source: "./media/characters/mirja/back.svg",
  16316. extra: 1892/1795,
  16317. bottom: 48/1940
  16318. }
  16319. },
  16320. maw: {
  16321. height: math.unit(1.312, "feet"),
  16322. name: "Maw",
  16323. image: {
  16324. source: "./media/characters/mirja/maw.svg"
  16325. }
  16326. },
  16327. paw: {
  16328. height: math.unit(1.15, "feet"),
  16329. name: "Paw",
  16330. image: {
  16331. source: "./media/characters/mirja/paw.svg"
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "\"Incognito\"",
  16338. height: math.unit(3, "meters")
  16339. },
  16340. {
  16341. name: "Strolling Size",
  16342. height: math.unit(15, "km")
  16343. },
  16344. {
  16345. name: "Larger Strolling Size",
  16346. height: math.unit(400, "km")
  16347. },
  16348. {
  16349. name: "Preferred Size",
  16350. height: math.unit(5000, "km"),
  16351. default: true
  16352. },
  16353. {
  16354. name: "True Size",
  16355. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16356. },
  16357. ]
  16358. ))
  16359. characterMakers.push(() => makeCharacter(
  16360. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16361. {
  16362. front: {
  16363. height: math.unit(15, "feet"),
  16364. weight: math.unit(880, "kg"),
  16365. name: "Front",
  16366. image: {
  16367. source: "./media/characters/nightraver/front.svg",
  16368. extra: 2444 / 2160,
  16369. bottom: 0.027
  16370. }
  16371. },
  16372. back: {
  16373. height: math.unit(15, "feet"),
  16374. weight: math.unit(880, "kg"),
  16375. name: "Back",
  16376. image: {
  16377. source: "./media/characters/nightraver/back.svg",
  16378. extra: 2309 / 2180,
  16379. bottom: 0.005
  16380. }
  16381. },
  16382. sole: {
  16383. height: math.unit(2.878, "feet"),
  16384. name: "Sole",
  16385. image: {
  16386. source: "./media/characters/nightraver/sole.svg"
  16387. }
  16388. },
  16389. foot: {
  16390. height: math.unit(2.285, "feet"),
  16391. name: "Foot",
  16392. image: {
  16393. source: "./media/characters/nightraver/foot.svg"
  16394. }
  16395. },
  16396. maw: {
  16397. height: math.unit(2.67, "feet"),
  16398. name: "Maw",
  16399. image: {
  16400. source: "./media/characters/nightraver/maw.svg"
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Micro",
  16407. height: math.unit(1, "cm")
  16408. },
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(15, "feet"),
  16412. default: true
  16413. },
  16414. {
  16415. name: "Macro",
  16416. height: math.unit(300, "feet")
  16417. },
  16418. {
  16419. name: "Megamacro",
  16420. height: math.unit(300, "miles")
  16421. },
  16422. {
  16423. name: "Gigamacro",
  16424. height: math.unit(10000, "miles")
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16430. {
  16431. side: {
  16432. height: math.unit(2, "inches"),
  16433. weight: math.unit(5, "grams"),
  16434. name: "Side",
  16435. image: {
  16436. source: "./media/characters/arc/side.svg"
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Micro",
  16443. height: math.unit(2, "inches"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(1.1938, "meters"),
  16453. weight: math.unit(54, "kg"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/nebula-shahar/front.svg",
  16457. extra: 1642 / 1436,
  16458. bottom: 0.06
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Megamicro",
  16465. height: math.unit(0.3, "mm")
  16466. },
  16467. {
  16468. name: "Micro",
  16469. height: math.unit(3, "cm")
  16470. },
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(138, "cm"),
  16474. default: true
  16475. },
  16476. {
  16477. name: "Macro",
  16478. height: math.unit(30, "m")
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(5.24, "feet"),
  16487. weight: math.unit(150, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/shayla/front.svg",
  16491. extra: 1512 / 1414,
  16492. bottom: 0.01
  16493. }
  16494. },
  16495. back: {
  16496. height: math.unit(5.24, "feet"),
  16497. weight: math.unit(150, "lb"),
  16498. name: "Back",
  16499. image: {
  16500. source: "./media/characters/shayla/back.svg",
  16501. extra: 1512 / 1414
  16502. }
  16503. },
  16504. hand: {
  16505. height: math.unit(0.7781496062992126, "feet"),
  16506. name: "Hand",
  16507. image: {
  16508. source: "./media/characters/shayla/hand.svg"
  16509. }
  16510. },
  16511. foot: {
  16512. height: math.unit(1.4206036745406823, "feet"),
  16513. name: "Foot",
  16514. image: {
  16515. source: "./media/characters/shayla/foot.svg"
  16516. }
  16517. },
  16518. },
  16519. [
  16520. {
  16521. name: "Micro",
  16522. height: math.unit(0.32, "feet")
  16523. },
  16524. {
  16525. name: "Normal",
  16526. height: math.unit(5.24, "feet"),
  16527. default: true
  16528. },
  16529. {
  16530. name: "Macro",
  16531. height: math.unit(492.12, "feet")
  16532. },
  16533. {
  16534. name: "Megamacro",
  16535. height: math.unit(186.41, "miles")
  16536. },
  16537. ]
  16538. ))
  16539. characterMakers.push(() => makeCharacter(
  16540. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16541. {
  16542. front: {
  16543. height: math.unit(2.2, "m"),
  16544. weight: math.unit(120, "kg"),
  16545. name: "Front",
  16546. image: {
  16547. source: "./media/characters/pia-jr/front.svg",
  16548. extra: 1000 / 970,
  16549. bottom: 0.035
  16550. }
  16551. },
  16552. hand: {
  16553. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16554. name: "Hand",
  16555. image: {
  16556. source: "./media/characters/pia-jr/hand.svg"
  16557. }
  16558. },
  16559. paw: {
  16560. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16561. name: "Paw",
  16562. image: {
  16563. source: "./media/characters/pia-jr/paw.svg"
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Micro",
  16570. height: math.unit(1.2, "cm")
  16571. },
  16572. {
  16573. name: "Normal",
  16574. height: math.unit(2.2, "m"),
  16575. default: true
  16576. },
  16577. {
  16578. name: "Macro",
  16579. height: math.unit(180, "m")
  16580. },
  16581. {
  16582. name: "Megamacro",
  16583. height: math.unit(420, "km")
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16589. {
  16590. front: {
  16591. height: math.unit(2, "m"),
  16592. weight: math.unit(115, "kg"),
  16593. name: "Front",
  16594. image: {
  16595. source: "./media/characters/pia-sr/front.svg",
  16596. extra: 760 / 730,
  16597. bottom: 0.015
  16598. }
  16599. },
  16600. back: {
  16601. height: math.unit(2, "m"),
  16602. weight: math.unit(115, "kg"),
  16603. name: "Back",
  16604. image: {
  16605. source: "./media/characters/pia-sr/back.svg",
  16606. extra: 760 / 730,
  16607. bottom: 0.01
  16608. }
  16609. },
  16610. hand: {
  16611. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16612. name: "Hand",
  16613. image: {
  16614. source: "./media/characters/pia-sr/hand.svg"
  16615. }
  16616. },
  16617. foot: {
  16618. height: math.unit(1.83, "feet"),
  16619. name: "Foot",
  16620. image: {
  16621. source: "./media/characters/pia-sr/foot.svg"
  16622. }
  16623. },
  16624. },
  16625. [
  16626. {
  16627. name: "Micro",
  16628. height: math.unit(88, "mm")
  16629. },
  16630. {
  16631. name: "Normal",
  16632. height: math.unit(2, "m"),
  16633. default: true
  16634. },
  16635. {
  16636. name: "Macro",
  16637. height: math.unit(200, "m")
  16638. },
  16639. {
  16640. name: "Megamacro",
  16641. height: math.unit(420, "km")
  16642. },
  16643. ]
  16644. ))
  16645. characterMakers.push(() => makeCharacter(
  16646. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16647. {
  16648. front: {
  16649. height: math.unit(8 + 2 / 12, "feet"),
  16650. weight: math.unit(300, "lb"),
  16651. name: "Front",
  16652. image: {
  16653. source: "./media/characters/kibibyte/front.svg",
  16654. extra: 2221 / 2098,
  16655. bottom: 0.04
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Normal",
  16662. height: math.unit(8 + 2 / 12, "feet"),
  16663. default: true
  16664. },
  16665. {
  16666. name: "Socialable Macro",
  16667. height: math.unit(50, "feet")
  16668. },
  16669. {
  16670. name: "Macro",
  16671. height: math.unit(300, "feet")
  16672. },
  16673. {
  16674. name: "Megamacro",
  16675. height: math.unit(500, "miles")
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16681. {
  16682. front: {
  16683. height: math.unit(6, "feet"),
  16684. weight: math.unit(150, "lb"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/felix/front.svg",
  16688. extra: 762 / 722,
  16689. bottom: 0.02
  16690. }
  16691. },
  16692. frontClothed: {
  16693. height: math.unit(6, "feet"),
  16694. weight: math.unit(150, "lb"),
  16695. name: "Front (Clothed)",
  16696. image: {
  16697. source: "./media/characters/felix/front-clothed.svg",
  16698. extra: 762 / 722,
  16699. bottom: 0.02
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Normal",
  16706. height: math.unit(6 + 8 / 12, "feet"),
  16707. default: true
  16708. },
  16709. {
  16710. name: "Macro",
  16711. height: math.unit(2600, "feet")
  16712. },
  16713. {
  16714. name: "Megamacro",
  16715. height: math.unit(450, "miles")
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(6 + 1 / 12, "feet"),
  16724. weight: math.unit(250, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/tobo/front.svg",
  16728. extra: 608 / 586,
  16729. bottom: 0.023
  16730. }
  16731. },
  16732. back: {
  16733. height: math.unit(6 + 1 / 12, "feet"),
  16734. weight: math.unit(250, "lb"),
  16735. name: "Back",
  16736. image: {
  16737. source: "./media/characters/tobo/back.svg",
  16738. extra: 608 / 586
  16739. }
  16740. },
  16741. },
  16742. [
  16743. {
  16744. name: "Nano",
  16745. height: math.unit(2, "nm")
  16746. },
  16747. {
  16748. name: "Megamicro",
  16749. height: math.unit(0.1, "mm")
  16750. },
  16751. {
  16752. name: "Micro",
  16753. height: math.unit(1, "inch"),
  16754. default: true
  16755. },
  16756. {
  16757. name: "Human-sized",
  16758. height: math.unit(6 + 1 / 12, "feet")
  16759. },
  16760. {
  16761. name: "Macro",
  16762. height: math.unit(250, "feet")
  16763. },
  16764. {
  16765. name: "Megamacro",
  16766. height: math.unit(75, "miles")
  16767. },
  16768. {
  16769. name: "Texas-sized",
  16770. height: math.unit(750, "miles")
  16771. },
  16772. {
  16773. name: "Teramacro",
  16774. height: math.unit(50000, "miles")
  16775. },
  16776. ]
  16777. ))
  16778. characterMakers.push(() => makeCharacter(
  16779. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16780. {
  16781. front: {
  16782. height: math.unit(6, "feet"),
  16783. weight: math.unit(269, "lb"),
  16784. name: "Front",
  16785. image: {
  16786. source: "./media/characters/danny-kapowsky/front.svg",
  16787. extra: 766 / 736,
  16788. bottom: 0.044
  16789. }
  16790. },
  16791. back: {
  16792. height: math.unit(6, "feet"),
  16793. weight: math.unit(269, "lb"),
  16794. name: "Back",
  16795. image: {
  16796. source: "./media/characters/danny-kapowsky/back.svg",
  16797. extra: 797 / 760,
  16798. bottom: 0.025
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Macro",
  16805. height: math.unit(150, "feet"),
  16806. default: true
  16807. },
  16808. {
  16809. name: "Macro+",
  16810. height: math.unit(200, "feet")
  16811. },
  16812. {
  16813. name: "Macro++",
  16814. height: math.unit(300, "feet")
  16815. },
  16816. {
  16817. name: "Macro+++",
  16818. height: math.unit(400, "feet")
  16819. },
  16820. ]
  16821. ))
  16822. characterMakers.push(() => makeCharacter(
  16823. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16824. {
  16825. side: {
  16826. height: math.unit(6, "feet"),
  16827. weight: math.unit(170, "lb"),
  16828. name: "Side",
  16829. image: {
  16830. source: "./media/characters/finn/side.svg",
  16831. extra: 1953 / 1807,
  16832. bottom: 0.057
  16833. }
  16834. },
  16835. },
  16836. [
  16837. {
  16838. name: "Megamacro",
  16839. height: math.unit(14445, "feet"),
  16840. default: true
  16841. },
  16842. ]
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16846. {
  16847. front: {
  16848. height: math.unit(5 + 6 / 12, "feet"),
  16849. weight: math.unit(125, "lb"),
  16850. name: "Front",
  16851. image: {
  16852. source: "./media/characters/roy/front.svg",
  16853. extra: 1,
  16854. bottom: 0.11
  16855. }
  16856. },
  16857. },
  16858. [
  16859. {
  16860. name: "Micro",
  16861. height: math.unit(3, "inches"),
  16862. default: true
  16863. },
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(5 + 6 / 12, "feet")
  16867. },
  16868. {
  16869. name: "Lesser Macro",
  16870. height: math.unit(60, "feet")
  16871. },
  16872. {
  16873. name: "Greater Macro",
  16874. height: math.unit(120, "feet")
  16875. },
  16876. ]
  16877. ))
  16878. characterMakers.push(() => makeCharacter(
  16879. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16880. {
  16881. front: {
  16882. height: math.unit(6, "feet"),
  16883. weight: math.unit(100, "lb"),
  16884. name: "Front",
  16885. image: {
  16886. source: "./media/characters/aevsivs/front.svg",
  16887. extra: 1,
  16888. bottom: 0.03
  16889. }
  16890. },
  16891. back: {
  16892. height: math.unit(6, "feet"),
  16893. weight: math.unit(100, "lb"),
  16894. name: "Back",
  16895. image: {
  16896. source: "./media/characters/aevsivs/back.svg"
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Micro",
  16903. height: math.unit(2, "inches"),
  16904. default: true
  16905. },
  16906. {
  16907. name: "Normal",
  16908. height: math.unit(5, "feet")
  16909. },
  16910. ]
  16911. ))
  16912. characterMakers.push(() => makeCharacter(
  16913. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16914. {
  16915. front: {
  16916. height: math.unit(5 + 7 / 12, "feet"),
  16917. weight: math.unit(159, "lb"),
  16918. name: "Front",
  16919. image: {
  16920. source: "./media/characters/hildegard/front.svg",
  16921. extra: 289 / 269,
  16922. bottom: 7.63 / 297.8
  16923. }
  16924. },
  16925. back: {
  16926. height: math.unit(5 + 7 / 12, "feet"),
  16927. weight: math.unit(159, "lb"),
  16928. name: "Back",
  16929. image: {
  16930. source: "./media/characters/hildegard/back.svg",
  16931. extra: 280 / 260,
  16932. bottom: 2.3 / 282
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(5 + 7 / 12, "feet"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16946. {
  16947. bernard: {
  16948. height: math.unit(2 + 7 / 12, "feet"),
  16949. weight: math.unit(66, "lb"),
  16950. name: "Bernard",
  16951. rename: true,
  16952. image: {
  16953. source: "./media/characters/bernard-wilder/bernard.svg",
  16954. extra: 192 / 128,
  16955. bottom: 0.05
  16956. }
  16957. },
  16958. wilder: {
  16959. height: math.unit(5 + 8 / 12, "feet"),
  16960. weight: math.unit(143, "lb"),
  16961. name: "Wilder",
  16962. rename: true,
  16963. image: {
  16964. source: "./media/characters/bernard-wilder/wilder.svg",
  16965. extra: 361 / 312,
  16966. bottom: 0.02
  16967. }
  16968. },
  16969. },
  16970. [
  16971. {
  16972. name: "Normal",
  16973. height: math.unit(2 + 7 / 12, "feet"),
  16974. default: true
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16980. {
  16981. anthro: {
  16982. height: math.unit(6 + 1 / 12, "feet"),
  16983. weight: math.unit(155, "lb"),
  16984. name: "Anthro",
  16985. image: {
  16986. source: "./media/characters/hearth/anthro.svg",
  16987. extra: 1178/1136,
  16988. bottom: 28/1206
  16989. }
  16990. },
  16991. feral: {
  16992. height: math.unit(3.78, "feet"),
  16993. weight: math.unit(35, "kg"),
  16994. name: "Feral",
  16995. image: {
  16996. source: "./media/characters/hearth/feral.svg",
  16997. extra: 153 / 135,
  16998. bottom: 0.03
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Normal",
  17005. height: math.unit(6 + 1 / 12, "feet"),
  17006. default: true
  17007. },
  17008. ]
  17009. ))
  17010. characterMakers.push(() => makeCharacter(
  17011. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17012. {
  17013. front: {
  17014. height: math.unit(6, "feet"),
  17015. weight: math.unit(182, "lb"),
  17016. name: "Front",
  17017. image: {
  17018. source: "./media/characters/ingrid/front.svg",
  17019. extra: 294 / 268,
  17020. bottom: 0.027
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(6, "feet"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17034. {
  17035. eevee: {
  17036. height: math.unit(2 + 10 / 12, "feet"),
  17037. weight: math.unit(86, "lb"),
  17038. name: "Malgam",
  17039. image: {
  17040. source: "./media/characters/malgam/eevee.svg",
  17041. extra: 952/784,
  17042. bottom: 38/990
  17043. }
  17044. },
  17045. sylveon: {
  17046. height: math.unit(4, "feet"),
  17047. weight: math.unit(101, "lb"),
  17048. name: "Future Malgam",
  17049. rename: true,
  17050. image: {
  17051. source: "./media/characters/malgam/sylveon.svg",
  17052. extra: 371 / 325,
  17053. bottom: 0.015
  17054. }
  17055. },
  17056. gigantamax: {
  17057. height: math.unit(50, "feet"),
  17058. name: "Gigantamax Malgam",
  17059. rename: true,
  17060. image: {
  17061. source: "./media/characters/malgam/gigantamax.svg"
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(2 + 10 / 12, "feet"),
  17069. default: true
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17075. {
  17076. front: {
  17077. height: math.unit(5 + 11 / 12, "feet"),
  17078. weight: math.unit(188, "lb"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/fleur/front.svg",
  17082. extra: 309 / 283,
  17083. bottom: 0.007
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Normal",
  17090. height: math.unit(5 + 11 / 12, "feet"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(5 + 4 / 12, "feet"),
  17100. weight: math.unit(122, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/jude/front.svg",
  17104. extra: 288 / 273,
  17105. bottom: 0.03
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(5 + 4 / 12, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17119. {
  17120. front: {
  17121. height: math.unit(5 + 11 / 12, "feet"),
  17122. weight: math.unit(190, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/seara/front.svg",
  17126. extra: 1,
  17127. bottom: 0.05
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(5 + 11 / 12, "feet"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17141. {
  17142. front: {
  17143. height: math.unit(16 + 5 / 12, "feet"),
  17144. weight: math.unit(524, "lb"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/caspian-lugia/front.svg",
  17148. extra: 1,
  17149. bottom: 0.04
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(16 + 5 / 12, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(5 + 7 / 12, "feet"),
  17166. weight: math.unit(170, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/mika/front.svg",
  17170. extra: 1,
  17171. bottom: 0.016
  17172. }
  17173. },
  17174. },
  17175. [
  17176. {
  17177. name: "Normal",
  17178. height: math.unit(5 + 7 / 12, "feet"),
  17179. default: true
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17185. {
  17186. front: {
  17187. height: math.unit(6 + 2 / 12, "feet"),
  17188. weight: math.unit(268, "lb"),
  17189. name: "Front",
  17190. image: {
  17191. source: "./media/characters/sol/front.svg",
  17192. extra: 247 / 231,
  17193. bottom: 0.05
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(6 + 2 / 12, "feet"),
  17201. default: true
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17207. {
  17208. buizel: {
  17209. height: math.unit(2 + 5 / 12, "feet"),
  17210. weight: math.unit(87, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/umiko/buizel.svg",
  17214. extra: 172 / 157,
  17215. bottom: 0.01
  17216. },
  17217. form: "buizel",
  17218. default: true
  17219. },
  17220. floatzel: {
  17221. height: math.unit(5 + 9 / 12, "feet"),
  17222. weight: math.unit(250, "lb"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/umiko/floatzel.svg",
  17226. extra: 1076/1006,
  17227. bottom: 15/1091
  17228. },
  17229. form: "floatzel",
  17230. default: true
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(2 + 5 / 12, "feet"),
  17237. form: "buizel",
  17238. default: true
  17239. },
  17240. {
  17241. name: "Normal",
  17242. height: math.unit(5 + 9 / 12, "feet"),
  17243. form: "floatzel",
  17244. default: true
  17245. },
  17246. ],
  17247. {
  17248. "buizel": {
  17249. name: "Buizel"
  17250. },
  17251. "floatzel": {
  17252. name: "Floatzel",
  17253. default: true
  17254. }
  17255. }
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17259. {
  17260. front: {
  17261. height: math.unit(6 + 2 / 12, "feet"),
  17262. weight: math.unit(146, "lb"),
  17263. name: "Front",
  17264. image: {
  17265. source: "./media/characters/iliac/front.svg",
  17266. extra: 389 / 365,
  17267. bottom: 0.035
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Normal",
  17274. height: math.unit(6 + 2 / 12, "feet"),
  17275. default: true
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(6, "feet"),
  17284. weight: math.unit(170, "lb"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/topaz/front.svg",
  17288. extra: 317 / 303,
  17289. bottom: 0.055
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Normal",
  17296. height: math.unit(6, "feet"),
  17297. default: true
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17303. {
  17304. front: {
  17305. height: math.unit(5 + 11 / 12, "feet"),
  17306. weight: math.unit(144, "lb"),
  17307. name: "Front",
  17308. image: {
  17309. source: "./media/characters/gabriel/front.svg",
  17310. extra: 285 / 262,
  17311. bottom: 0.004
  17312. }
  17313. },
  17314. },
  17315. [
  17316. {
  17317. name: "Normal",
  17318. height: math.unit(5 + 11 / 12, "feet"),
  17319. default: true
  17320. },
  17321. ]
  17322. ))
  17323. characterMakers.push(() => makeCharacter(
  17324. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17325. {
  17326. side: {
  17327. height: math.unit(6 + 5 / 12, "feet"),
  17328. weight: math.unit(300, "lb"),
  17329. name: "Side",
  17330. image: {
  17331. source: "./media/characters/tempest-suicune/side.svg",
  17332. extra: 195 / 154,
  17333. bottom: 0.04
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(6 + 5 / 12, "feet"),
  17341. default: true
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17347. {
  17348. front: {
  17349. height: math.unit(7 + 2 / 12, "feet"),
  17350. weight: math.unit(322, "lb"),
  17351. name: "Front",
  17352. image: {
  17353. source: "./media/characters/vulcan/front.svg",
  17354. extra: 154 / 147,
  17355. bottom: 0.04
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(7 + 2 / 12, "feet"),
  17363. default: true
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(5 + 10 / 12, "feet"),
  17372. weight: math.unit(264, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/gault/front.svg",
  17376. extra: 161 / 140,
  17377. bottom: 0.028
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(5 + 10 / 12, "feet"),
  17385. default: true
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17391. {
  17392. front: {
  17393. height: math.unit(6, "feet"),
  17394. weight: math.unit(150, "lb"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/shard/front.svg",
  17398. extra: 273 / 238,
  17399. bottom: 0.02
  17400. }
  17401. },
  17402. },
  17403. [
  17404. {
  17405. name: "Normal",
  17406. height: math.unit(3 + 6 / 12, "feet"),
  17407. default: true
  17408. },
  17409. ]
  17410. ))
  17411. characterMakers.push(() => makeCharacter(
  17412. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17413. {
  17414. front: {
  17415. height: math.unit(5 + 11 / 12, "feet"),
  17416. weight: math.unit(146, "lb"),
  17417. name: "Front",
  17418. image: {
  17419. source: "./media/characters/ashe/front.svg",
  17420. extra: 400 / 373,
  17421. bottom: 0.01
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(5 + 11 / 12, "feet"),
  17429. default: true
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17435. {
  17436. front: {
  17437. height: math.unit(5 + 5 / 12, "feet"),
  17438. weight: math.unit(135, "lb"),
  17439. name: "Front",
  17440. image: {
  17441. source: "./media/characters/beatrix/front.svg",
  17442. extra: 392 / 379,
  17443. bottom: 0.01
  17444. }
  17445. },
  17446. },
  17447. [
  17448. {
  17449. name: "Normal",
  17450. height: math.unit(6, "feet"),
  17451. default: true
  17452. },
  17453. ]
  17454. ))
  17455. characterMakers.push(() => makeCharacter(
  17456. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17457. {
  17458. front: {
  17459. height: math.unit(6 + 2/12, "feet"),
  17460. weight: math.unit(135, "lb"),
  17461. name: "Front",
  17462. image: {
  17463. source: "./media/characters/ignatius/front.svg",
  17464. extra: 1380/1259,
  17465. bottom: 27/1407
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(6 + 2/12, "feet"),
  17473. default: true
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17479. {
  17480. front: {
  17481. height: math.unit(6 + 2 / 12, "feet"),
  17482. weight: math.unit(138, "lb"),
  17483. name: "Front",
  17484. image: {
  17485. source: "./media/characters/mei-li/front.svg",
  17486. extra: 237 / 229,
  17487. bottom: 0.03
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(6 + 2 / 12, "feet"),
  17495. default: true
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17501. {
  17502. front: {
  17503. height: math.unit(2 + 4 / 12, "feet"),
  17504. weight: math.unit(62, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/puru/front.svg",
  17508. extra: 206 / 149,
  17509. bottom: 0.06
  17510. }
  17511. },
  17512. },
  17513. [
  17514. {
  17515. name: "Normal",
  17516. height: math.unit(2 + 4 / 12, "feet"),
  17517. default: true
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17523. {
  17524. anthro: {
  17525. height: math.unit(5 + 8/12, "feet"),
  17526. weight: math.unit(200, "lb"),
  17527. energyNeed: math.unit(2000, "kcal"),
  17528. name: "Anthro",
  17529. image: {
  17530. source: "./media/characters/kee/anthro.svg",
  17531. extra: 3251/3184,
  17532. bottom: 250/3501
  17533. }
  17534. },
  17535. taur: {
  17536. height: math.unit(11, "feet"),
  17537. weight: math.unit(500, "lb"),
  17538. energyNeed: math.unit(5000, "kcal"),
  17539. name: "Taur",
  17540. image: {
  17541. source: "./media/characters/kee/taur.svg",
  17542. extra: 1362/1320,
  17543. bottom: 83/1445
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(5 + 8/12, "feet"),
  17551. default: true
  17552. },
  17553. {
  17554. name: "Macro",
  17555. height: math.unit(35, "feet")
  17556. },
  17557. ]
  17558. ))
  17559. characterMakers.push(() => makeCharacter(
  17560. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17561. {
  17562. anthro: {
  17563. height: math.unit(7, "feet"),
  17564. weight: math.unit(190, "lb"),
  17565. name: "Anthro",
  17566. image: {
  17567. source: "./media/characters/cobalt-dracha/anthro.svg",
  17568. extra: 231 / 225,
  17569. bottom: 0.04
  17570. }
  17571. },
  17572. feral: {
  17573. height: math.unit(9 + 7 / 12, "feet"),
  17574. weight: math.unit(294, "lb"),
  17575. name: "Feral",
  17576. image: {
  17577. source: "./media/characters/cobalt-dracha/feral.svg",
  17578. extra: 692 / 633,
  17579. bottom: 0.05
  17580. }
  17581. },
  17582. },
  17583. [
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(7, "feet"),
  17587. default: true
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17593. {
  17594. fallen: {
  17595. height: math.unit(11 + 8 / 12, "feet"),
  17596. weight: math.unit(485, "lb"),
  17597. name: "Java (Fallen)",
  17598. rename: true,
  17599. image: {
  17600. source: "./media/characters/java/fallen.svg",
  17601. extra: 226 / 208,
  17602. bottom: 0.005
  17603. }
  17604. },
  17605. godkin: {
  17606. height: math.unit(10 + 6 / 12, "feet"),
  17607. weight: math.unit(328, "lb"),
  17608. name: "Java (Godkin)",
  17609. rename: true,
  17610. image: {
  17611. source: "./media/characters/java/godkin.svg",
  17612. extra: 1104/1068,
  17613. bottom: 36/1140
  17614. }
  17615. },
  17616. },
  17617. [
  17618. {
  17619. name: "Normal",
  17620. height: math.unit(11 + 8 / 12, "feet"),
  17621. default: true
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(5 + 9 / 12, "feet"),
  17630. weight: math.unit(170, "lb"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/purna/front.svg",
  17634. extra: 239 / 229,
  17635. bottom: 0.01
  17636. }
  17637. },
  17638. },
  17639. [
  17640. {
  17641. name: "Normal",
  17642. height: math.unit(5 + 9 / 12, "feet"),
  17643. default: true
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(5 + 9 / 12, "feet"),
  17652. weight: math.unit(142, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/kuva/front.svg",
  17656. extra: 281 / 271,
  17657. bottom: 0.006
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Normal",
  17664. height: math.unit(5 + 9 / 12, "feet"),
  17665. default: true
  17666. },
  17667. ]
  17668. ))
  17669. characterMakers.push(() => makeCharacter(
  17670. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17671. {
  17672. anthro: {
  17673. height: math.unit(9 + 2 / 12, "feet"),
  17674. weight: math.unit(270, "lb"),
  17675. name: "Anthro",
  17676. image: {
  17677. source: "./media/characters/embra/anthro.svg",
  17678. extra: 200 / 187,
  17679. bottom: 0.02
  17680. }
  17681. },
  17682. feral: {
  17683. height: math.unit(18 + 8 / 12, "feet"),
  17684. weight: math.unit(576, "lb"),
  17685. name: "Feral",
  17686. image: {
  17687. source: "./media/characters/embra/feral.svg",
  17688. extra: 152 / 137,
  17689. bottom: 0.037
  17690. }
  17691. },
  17692. },
  17693. [
  17694. {
  17695. name: "Normal",
  17696. height: math.unit(9 + 2 / 12, "feet"),
  17697. default: true
  17698. },
  17699. ]
  17700. ))
  17701. characterMakers.push(() => makeCharacter(
  17702. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17703. {
  17704. anthro: {
  17705. height: math.unit(10 + 9 / 12, "feet"),
  17706. weight: math.unit(224, "lb"),
  17707. name: "Anthro",
  17708. image: {
  17709. source: "./media/characters/grottos/anthro.svg",
  17710. extra: 350 / 332,
  17711. bottom: 0.045
  17712. }
  17713. },
  17714. feral: {
  17715. height: math.unit(20 + 7 / 12, "feet"),
  17716. weight: math.unit(629, "lb"),
  17717. name: "Feral",
  17718. image: {
  17719. source: "./media/characters/grottos/feral.svg",
  17720. extra: 207 / 190,
  17721. bottom: 0.05
  17722. }
  17723. },
  17724. },
  17725. [
  17726. {
  17727. name: "Normal",
  17728. height: math.unit(10 + 9 / 12, "feet"),
  17729. default: true
  17730. },
  17731. ]
  17732. ))
  17733. characterMakers.push(() => makeCharacter(
  17734. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17735. {
  17736. anthro: {
  17737. height: math.unit(9 + 6 / 12, "feet"),
  17738. weight: math.unit(298, "lb"),
  17739. name: "Anthro",
  17740. image: {
  17741. source: "./media/characters/frifna/anthro.svg",
  17742. extra: 282 / 269,
  17743. bottom: 0.015
  17744. }
  17745. },
  17746. feral: {
  17747. height: math.unit(16 + 2 / 12, "feet"),
  17748. weight: math.unit(624, "lb"),
  17749. name: "Feral",
  17750. image: {
  17751. source: "./media/characters/frifna/feral.svg"
  17752. }
  17753. },
  17754. },
  17755. [
  17756. {
  17757. name: "Normal",
  17758. height: math.unit(9 + 6 / 12, "feet"),
  17759. default: true
  17760. },
  17761. ]
  17762. ))
  17763. characterMakers.push(() => makeCharacter(
  17764. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17765. {
  17766. front: {
  17767. height: math.unit(6 + 2 / 12, "feet"),
  17768. weight: math.unit(168, "lb"),
  17769. name: "Front",
  17770. image: {
  17771. source: "./media/characters/elise/front.svg",
  17772. extra: 276 / 271
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Normal",
  17779. height: math.unit(6 + 2 / 12, "feet"),
  17780. default: true
  17781. },
  17782. ]
  17783. ))
  17784. characterMakers.push(() => makeCharacter(
  17785. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17786. {
  17787. front: {
  17788. height: math.unit(5 + 10 / 12, "feet"),
  17789. weight: math.unit(210, "lb"),
  17790. name: "Front",
  17791. image: {
  17792. source: "./media/characters/glade/front.svg",
  17793. extra: 258 / 247,
  17794. bottom: 0.008
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(5 + 10 / 12, "feet"),
  17802. default: true
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17808. {
  17809. front: {
  17810. height: math.unit(5 + 10 / 12, "feet"),
  17811. weight: math.unit(129, "lb"),
  17812. name: "Front",
  17813. image: {
  17814. source: "./media/characters/rina/front.svg",
  17815. extra: 266 / 255,
  17816. bottom: 0.005
  17817. }
  17818. },
  17819. },
  17820. [
  17821. {
  17822. name: "Normal",
  17823. height: math.unit(5 + 10 / 12, "feet"),
  17824. default: true
  17825. },
  17826. ]
  17827. ))
  17828. characterMakers.push(() => makeCharacter(
  17829. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17830. {
  17831. front: {
  17832. height: math.unit(6 + 1 / 12, "feet"),
  17833. weight: math.unit(192, "lb"),
  17834. name: "Front",
  17835. image: {
  17836. source: "./media/characters/veronica/front.svg",
  17837. extra: 319 / 309,
  17838. bottom: 0.005
  17839. }
  17840. },
  17841. },
  17842. [
  17843. {
  17844. name: "Normal",
  17845. height: math.unit(6 + 1 / 12, "feet"),
  17846. default: true
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17852. {
  17853. front: {
  17854. height: math.unit(9 + 3 / 12, "feet"),
  17855. weight: math.unit(1100, "lb"),
  17856. name: "Front",
  17857. image: {
  17858. source: "./media/characters/braxton/front.svg",
  17859. extra: 1057 / 984,
  17860. bottom: 0.05
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(9 + 3 / 12, "feet")
  17868. },
  17869. {
  17870. name: "Giant",
  17871. height: math.unit(300, "feet"),
  17872. default: true
  17873. },
  17874. {
  17875. name: "Macro",
  17876. height: math.unit(700, "feet")
  17877. },
  17878. {
  17879. name: "Megamacro",
  17880. height: math.unit(6000, "feet")
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(6 + 7 / 12, "feet"),
  17889. weight: math.unit(150, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/blue-feyonics/front.svg",
  17893. extra: 1403 / 1306,
  17894. bottom: 0.047
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(6 + 7 / 12, "feet"),
  17902. default: true
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17908. {
  17909. front: {
  17910. height: math.unit(1.8, "meters"),
  17911. weight: math.unit(60, "kg"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/maxwell/front.svg",
  17915. extra: 2060 / 1873
  17916. }
  17917. },
  17918. },
  17919. [
  17920. {
  17921. name: "Micro",
  17922. height: math.unit(1, "mm")
  17923. },
  17924. {
  17925. name: "Normal",
  17926. height: math.unit(1.8, "meter"),
  17927. default: true
  17928. },
  17929. {
  17930. name: "Macro",
  17931. height: math.unit(30, "meters")
  17932. },
  17933. {
  17934. name: "Megamacro",
  17935. height: math.unit(10, "km")
  17936. },
  17937. ]
  17938. ))
  17939. characterMakers.push(() => makeCharacter(
  17940. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17941. {
  17942. front: {
  17943. height: math.unit(6, "feet"),
  17944. weight: math.unit(150, "lb"),
  17945. name: "Front",
  17946. image: {
  17947. source: "./media/characters/jack/front.svg",
  17948. extra: 1754 / 1640,
  17949. bottom: 0.01
  17950. }
  17951. },
  17952. },
  17953. [
  17954. {
  17955. name: "Normal",
  17956. height: math.unit(80000, "feet"),
  17957. default: true
  17958. },
  17959. {
  17960. name: "Max size",
  17961. height: math.unit(10, "lightyears")
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17967. {
  17968. urban: {
  17969. height: math.unit(5, "feet"),
  17970. weight: math.unit(240, "lb"),
  17971. name: "Urban",
  17972. image: {
  17973. source: "./media/characters/cafat/urban.svg",
  17974. extra: 1223/1126,
  17975. bottom: 205/1428
  17976. }
  17977. },
  17978. summer: {
  17979. height: math.unit(5, "feet"),
  17980. weight: math.unit(240, "lb"),
  17981. name: "Summer",
  17982. image: {
  17983. source: "./media/characters/cafat/summer.svg",
  17984. extra: 1223/1126,
  17985. bottom: 205/1428
  17986. }
  17987. },
  17988. winter: {
  17989. height: math.unit(5, "feet"),
  17990. weight: math.unit(240, "lb"),
  17991. name: "Winter",
  17992. image: {
  17993. source: "./media/characters/cafat/winter.svg",
  17994. extra: 1223/1126,
  17995. bottom: 205/1428
  17996. }
  17997. },
  17998. lingerie: {
  17999. height: math.unit(5, "feet"),
  18000. weight: math.unit(240, "lb"),
  18001. name: "Lingerie",
  18002. image: {
  18003. source: "./media/characters/cafat/lingerie.svg",
  18004. extra: 1223/1126,
  18005. bottom: 205/1428
  18006. }
  18007. },
  18008. upright: {
  18009. height: math.unit(6.3, "feet"),
  18010. weight: math.unit(240, "lb"),
  18011. name: "Upright",
  18012. image: {
  18013. source: "./media/characters/cafat/upright.svg",
  18014. bottom: 0.01
  18015. }
  18016. },
  18017. uprightFull: {
  18018. height: math.unit(6.3, "feet"),
  18019. weight: math.unit(240, "lb"),
  18020. name: "Upright (Full)",
  18021. image: {
  18022. source: "./media/characters/cafat/upright-full.svg",
  18023. bottom: 0.01
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Small",
  18030. height: math.unit(5, "feet"),
  18031. default: true
  18032. },
  18033. {
  18034. name: "Large",
  18035. height: math.unit(13, "feet")
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18041. {
  18042. front: {
  18043. height: math.unit(6, "feet"),
  18044. weight: math.unit(150, "lb"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/verin-raharra/front.svg",
  18048. extra: 5019 / 4835,
  18049. bottom: 0.023
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(7 + 5 / 12, "feet"),
  18057. default: true
  18058. },
  18059. {
  18060. name: "Upsized",
  18061. height: math.unit(20, "feet")
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18067. {
  18068. front: {
  18069. height: math.unit(7, "feet"),
  18070. weight: math.unit(230, "lb"),
  18071. name: "Front",
  18072. image: {
  18073. source: "./media/characters/nakata/front.svg",
  18074. extra: 1.005,
  18075. bottom: 0.01
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(7, "feet"),
  18083. default: true
  18084. },
  18085. {
  18086. name: "Big",
  18087. height: math.unit(14, "feet")
  18088. },
  18089. {
  18090. name: "Macro",
  18091. height: math.unit(400, "feet")
  18092. },
  18093. ]
  18094. ))
  18095. characterMakers.push(() => makeCharacter(
  18096. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18097. {
  18098. front: {
  18099. height: math.unit(4.91, "feet"),
  18100. weight: math.unit(100, "lb"),
  18101. name: "Front",
  18102. image: {
  18103. source: "./media/characters/lily/front.svg",
  18104. extra: 1585 / 1415,
  18105. bottom: 0.02
  18106. }
  18107. },
  18108. },
  18109. [
  18110. {
  18111. name: "Normal",
  18112. height: math.unit(4.91, "feet"),
  18113. default: true
  18114. },
  18115. ]
  18116. ))
  18117. characterMakers.push(() => makeCharacter(
  18118. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18119. {
  18120. laying: {
  18121. height: math.unit(4 + 4 / 12, "feet"),
  18122. weight: math.unit(600, "lb"),
  18123. name: "Laying",
  18124. image: {
  18125. source: "./media/characters/sheila/laying.svg",
  18126. extra: 1333 / 1265,
  18127. bottom: 0.16
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Normal",
  18134. height: math.unit(4 + 4 / 12, "feet"),
  18135. default: true
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(6, "feet"),
  18144. weight: math.unit(190, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/sax/front.svg",
  18148. extra: 1187 / 973,
  18149. bottom: 0.042
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Micro",
  18156. height: math.unit(4, "inches"),
  18157. default: true
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18163. {
  18164. front: {
  18165. height: math.unit(6, "feet"),
  18166. weight: math.unit(150, "lb"),
  18167. name: "Front",
  18168. image: {
  18169. source: "./media/characters/pandora/front.svg",
  18170. extra: 2720 / 2556,
  18171. bottom: 0.015
  18172. }
  18173. },
  18174. back: {
  18175. height: math.unit(6, "feet"),
  18176. weight: math.unit(150, "lb"),
  18177. name: "Back",
  18178. image: {
  18179. source: "./media/characters/pandora/back.svg",
  18180. extra: 2720 / 2556,
  18181. bottom: 0.01
  18182. }
  18183. },
  18184. beans: {
  18185. height: math.unit(6 / 8, "feet"),
  18186. name: "Beans",
  18187. image: {
  18188. source: "./media/characters/pandora/beans.svg"
  18189. }
  18190. },
  18191. collar: {
  18192. height: math.unit(0.31, "feet"),
  18193. name: "Collar",
  18194. image: {
  18195. source: "./media/characters/pandora/collar.svg"
  18196. }
  18197. },
  18198. skirt: {
  18199. height: math.unit(6, "feet"),
  18200. weight: math.unit(150, "lb"),
  18201. name: "Skirt",
  18202. image: {
  18203. source: "./media/characters/pandora/skirt.svg",
  18204. extra: 1622 / 1525,
  18205. bottom: 0.015
  18206. }
  18207. },
  18208. hoodie: {
  18209. height: math.unit(6, "feet"),
  18210. weight: math.unit(150, "lb"),
  18211. name: "Hoodie",
  18212. image: {
  18213. source: "./media/characters/pandora/hoodie.svg",
  18214. extra: 1622 / 1525,
  18215. bottom: 0.015
  18216. }
  18217. },
  18218. casual: {
  18219. height: math.unit(6, "feet"),
  18220. weight: math.unit(150, "lb"),
  18221. name: "Casual",
  18222. image: {
  18223. source: "./media/characters/pandora/casual.svg",
  18224. extra: 1622 / 1525,
  18225. bottom: 0.015
  18226. }
  18227. },
  18228. },
  18229. [
  18230. {
  18231. name: "Normal",
  18232. height: math.unit(6, "feet")
  18233. },
  18234. {
  18235. name: "Big Steppy",
  18236. height: math.unit(1, "km"),
  18237. default: true
  18238. },
  18239. {
  18240. name: "Galactic Steppy",
  18241. height: math.unit(2, "gigameters")
  18242. },
  18243. ]
  18244. ))
  18245. characterMakers.push(() => makeCharacter(
  18246. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18247. {
  18248. side: {
  18249. height: math.unit(10, "feet"),
  18250. weight: math.unit(800, "kg"),
  18251. name: "Side",
  18252. image: {
  18253. source: "./media/characters/venio-darcony/side.svg",
  18254. extra: 1373 / 1003,
  18255. bottom: 0.037
  18256. }
  18257. },
  18258. front: {
  18259. height: math.unit(19, "feet"),
  18260. weight: math.unit(800, "kg"),
  18261. name: "Front",
  18262. image: {
  18263. source: "./media/characters/venio-darcony/front.svg"
  18264. }
  18265. },
  18266. back: {
  18267. height: math.unit(19, "feet"),
  18268. weight: math.unit(800, "kg"),
  18269. name: "Back",
  18270. image: {
  18271. source: "./media/characters/venio-darcony/back.svg"
  18272. }
  18273. },
  18274. sideNsfw: {
  18275. height: math.unit(10, "feet"),
  18276. weight: math.unit(800, "kg"),
  18277. name: "Side (NSFW)",
  18278. image: {
  18279. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18280. extra: 1373 / 1003,
  18281. bottom: 0.037
  18282. }
  18283. },
  18284. frontNsfw: {
  18285. height: math.unit(19, "feet"),
  18286. weight: math.unit(800, "kg"),
  18287. name: "Front (NSFW)",
  18288. image: {
  18289. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18290. }
  18291. },
  18292. backNsfw: {
  18293. height: math.unit(19, "feet"),
  18294. weight: math.unit(800, "kg"),
  18295. name: "Back (NSFW)",
  18296. image: {
  18297. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18298. }
  18299. },
  18300. sideArmored: {
  18301. height: math.unit(10, "feet"),
  18302. weight: math.unit(800, "kg"),
  18303. name: "Side (Armored)",
  18304. image: {
  18305. source: "./media/characters/venio-darcony/side-armored.svg",
  18306. extra: 1373 / 1003,
  18307. bottom: 0.037
  18308. }
  18309. },
  18310. frontArmored: {
  18311. height: math.unit(19, "feet"),
  18312. weight: math.unit(900, "kg"),
  18313. name: "Front (Armored)",
  18314. image: {
  18315. source: "./media/characters/venio-darcony/front-armored.svg"
  18316. }
  18317. },
  18318. backArmored: {
  18319. height: math.unit(19, "feet"),
  18320. weight: math.unit(900, "kg"),
  18321. name: "Back (Armored)",
  18322. image: {
  18323. source: "./media/characters/venio-darcony/back-armored.svg"
  18324. }
  18325. },
  18326. sword: {
  18327. height: math.unit(10, "feet"),
  18328. weight: math.unit(50, "lb"),
  18329. name: "Sword",
  18330. image: {
  18331. source: "./media/characters/venio-darcony/sword.svg"
  18332. }
  18333. },
  18334. },
  18335. [
  18336. {
  18337. name: "Normal",
  18338. height: math.unit(10, "feet")
  18339. },
  18340. {
  18341. name: "Macro",
  18342. height: math.unit(130, "feet"),
  18343. default: true
  18344. },
  18345. {
  18346. name: "Macro+",
  18347. height: math.unit(240, "feet")
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18353. {
  18354. front: {
  18355. height: math.unit(6, "feet"),
  18356. weight: math.unit(150, "lb"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/veski/front.svg",
  18360. extra: 1299 / 1225,
  18361. bottom: 0.04
  18362. }
  18363. },
  18364. back: {
  18365. height: math.unit(6, "feet"),
  18366. weight: math.unit(150, "lb"),
  18367. name: "Back",
  18368. image: {
  18369. source: "./media/characters/veski/back.svg",
  18370. extra: 1299 / 1225,
  18371. bottom: 0.008
  18372. }
  18373. },
  18374. maw: {
  18375. height: math.unit(1.5 * 1.21, "feet"),
  18376. name: "Maw",
  18377. image: {
  18378. source: "./media/characters/veski/maw.svg"
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Macro",
  18385. height: math.unit(2, "km"),
  18386. default: true
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18392. {
  18393. front: {
  18394. height: math.unit(5 + 7 / 12, "feet"),
  18395. name: "Front",
  18396. image: {
  18397. source: "./media/characters/isabelle/front.svg",
  18398. extra: 2130 / 1976,
  18399. bottom: 0.05
  18400. }
  18401. },
  18402. },
  18403. [
  18404. {
  18405. name: "Supermicro",
  18406. height: math.unit(10, "micrometers")
  18407. },
  18408. {
  18409. name: "Micro",
  18410. height: math.unit(1, "inch")
  18411. },
  18412. {
  18413. name: "Tiny",
  18414. height: math.unit(5, "inches")
  18415. },
  18416. {
  18417. name: "Standard",
  18418. height: math.unit(5 + 7 / 12, "inches")
  18419. },
  18420. {
  18421. name: "Macro",
  18422. height: math.unit(80, "meters"),
  18423. default: true
  18424. },
  18425. {
  18426. name: "Megamacro",
  18427. height: math.unit(250, "meters")
  18428. },
  18429. {
  18430. name: "Gigamacro",
  18431. height: math.unit(5, "km")
  18432. },
  18433. {
  18434. name: "Cosmic",
  18435. height: math.unit(2.5e6, "miles")
  18436. },
  18437. ]
  18438. ))
  18439. characterMakers.push(() => makeCharacter(
  18440. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18441. {
  18442. front: {
  18443. height: math.unit(6, "feet"),
  18444. weight: math.unit(150, "lb"),
  18445. name: "Front",
  18446. image: {
  18447. source: "./media/characters/hanzo/front.svg",
  18448. extra: 374 / 344,
  18449. bottom: 0.02
  18450. }
  18451. },
  18452. },
  18453. [
  18454. {
  18455. name: "Normal",
  18456. height: math.unit(8, "feet"),
  18457. default: true
  18458. },
  18459. ]
  18460. ))
  18461. characterMakers.push(() => makeCharacter(
  18462. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18463. {
  18464. front: {
  18465. height: math.unit(7, "feet"),
  18466. weight: math.unit(130, "lb"),
  18467. name: "Front",
  18468. image: {
  18469. source: "./media/characters/anna/front.svg",
  18470. extra: 169 / 145,
  18471. bottom: 0.06
  18472. }
  18473. },
  18474. full: {
  18475. height: math.unit(4.96, "feet"),
  18476. weight: math.unit(220, "lb"),
  18477. name: "Full",
  18478. image: {
  18479. source: "./media/characters/anna/full.svg",
  18480. extra: 138 / 114,
  18481. bottom: 0.15
  18482. }
  18483. },
  18484. tongue: {
  18485. height: math.unit(2.53, "feet"),
  18486. name: "Tongue",
  18487. image: {
  18488. source: "./media/characters/anna/tongue.svg"
  18489. }
  18490. },
  18491. },
  18492. [
  18493. {
  18494. name: "Normal",
  18495. height: math.unit(7, "feet"),
  18496. default: true
  18497. },
  18498. ]
  18499. ))
  18500. characterMakers.push(() => makeCharacter(
  18501. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18502. {
  18503. front: {
  18504. height: math.unit(7, "feet"),
  18505. weight: math.unit(150, "lb"),
  18506. name: "Front",
  18507. image: {
  18508. source: "./media/characters/ian-corvid/front.svg",
  18509. extra: 150 / 142,
  18510. bottom: 0.02
  18511. }
  18512. },
  18513. back: {
  18514. height: math.unit(7, "feet"),
  18515. weight: math.unit(150, "lb"),
  18516. name: "Back",
  18517. image: {
  18518. source: "./media/characters/ian-corvid/back.svg",
  18519. extra: 150 / 143,
  18520. bottom: 0.01
  18521. }
  18522. },
  18523. stomping: {
  18524. height: math.unit(7, "feet"),
  18525. weight: math.unit(150, "lb"),
  18526. name: "Stomping",
  18527. image: {
  18528. source: "./media/characters/ian-corvid/stomping.svg",
  18529. extra: 76 / 72
  18530. }
  18531. },
  18532. sitting: {
  18533. height: math.unit(7 / 1.8, "feet"),
  18534. weight: math.unit(150, "lb"),
  18535. name: "Sitting",
  18536. image: {
  18537. source: "./media/characters/ian-corvid/sitting.svg",
  18538. extra: 1400 / 1269,
  18539. bottom: 0.15
  18540. }
  18541. },
  18542. },
  18543. [
  18544. {
  18545. name: "Tiny Microw",
  18546. height: math.unit(1, "inch")
  18547. },
  18548. {
  18549. name: "Microw",
  18550. height: math.unit(6, "inches")
  18551. },
  18552. {
  18553. name: "Crow",
  18554. height: math.unit(7 + 1 / 12, "feet"),
  18555. default: true
  18556. },
  18557. {
  18558. name: "Macrow",
  18559. height: math.unit(176, "feet")
  18560. },
  18561. ]
  18562. ))
  18563. characterMakers.push(() => makeCharacter(
  18564. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18565. {
  18566. front: {
  18567. height: math.unit(5 + 7 / 12, "feet"),
  18568. weight: math.unit(147, "lb"),
  18569. name: "Front",
  18570. image: {
  18571. source: "./media/characters/natalie-kellon/front.svg",
  18572. extra: 1214 / 1141,
  18573. bottom: 0.02
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Micro",
  18580. height: math.unit(1 / 16, "inch")
  18581. },
  18582. {
  18583. name: "Tiny",
  18584. height: math.unit(4, "inches")
  18585. },
  18586. {
  18587. name: "Normal",
  18588. height: math.unit(5 + 7 / 12, "feet"),
  18589. default: true
  18590. },
  18591. {
  18592. name: "Amazon",
  18593. height: math.unit(12, "feet")
  18594. },
  18595. {
  18596. name: "Giantess",
  18597. height: math.unit(160, "meters")
  18598. },
  18599. {
  18600. name: "Titaness",
  18601. height: math.unit(800, "meters")
  18602. },
  18603. ]
  18604. ))
  18605. characterMakers.push(() => makeCharacter(
  18606. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18607. {
  18608. front: {
  18609. height: math.unit(6, "feet"),
  18610. weight: math.unit(150, "lb"),
  18611. name: "Front",
  18612. image: {
  18613. source: "./media/characters/alluria/front.svg",
  18614. extra: 806 / 738,
  18615. bottom: 0.01
  18616. }
  18617. },
  18618. side: {
  18619. height: math.unit(6, "feet"),
  18620. weight: math.unit(150, "lb"),
  18621. name: "Side",
  18622. image: {
  18623. source: "./media/characters/alluria/side.svg",
  18624. extra: 800 / 750,
  18625. }
  18626. },
  18627. back: {
  18628. height: math.unit(6, "feet"),
  18629. weight: math.unit(150, "lb"),
  18630. name: "Back",
  18631. image: {
  18632. source: "./media/characters/alluria/back.svg",
  18633. extra: 806 / 738,
  18634. }
  18635. },
  18636. frontMaid: {
  18637. height: math.unit(6, "feet"),
  18638. weight: math.unit(150, "lb"),
  18639. name: "Front (Maid)",
  18640. image: {
  18641. source: "./media/characters/alluria/front-maid.svg",
  18642. extra: 806 / 738,
  18643. bottom: 0.01
  18644. }
  18645. },
  18646. sideMaid: {
  18647. height: math.unit(6, "feet"),
  18648. weight: math.unit(150, "lb"),
  18649. name: "Side (Maid)",
  18650. image: {
  18651. source: "./media/characters/alluria/side-maid.svg",
  18652. extra: 800 / 750,
  18653. bottom: 0.005
  18654. }
  18655. },
  18656. backMaid: {
  18657. height: math.unit(6, "feet"),
  18658. weight: math.unit(150, "lb"),
  18659. name: "Back (Maid)",
  18660. image: {
  18661. source: "./media/characters/alluria/back-maid.svg",
  18662. extra: 806 / 738,
  18663. }
  18664. },
  18665. },
  18666. [
  18667. {
  18668. name: "Micro",
  18669. height: math.unit(6, "inches"),
  18670. default: true
  18671. },
  18672. ]
  18673. ))
  18674. characterMakers.push(() => makeCharacter(
  18675. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18676. {
  18677. front: {
  18678. height: math.unit(6, "feet"),
  18679. weight: math.unit(150, "lb"),
  18680. name: "Front",
  18681. image: {
  18682. source: "./media/characters/kyle/front.svg",
  18683. extra: 1069 / 962,
  18684. bottom: 77.228 / 1727.45
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Macro",
  18691. height: math.unit(150, "feet"),
  18692. default: true
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18698. {
  18699. front: {
  18700. height: math.unit(6, "feet"),
  18701. weight: math.unit(300, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/duncan/front.svg",
  18705. extra: 1650 / 1482,
  18706. bottom: 0.05
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Macro",
  18713. height: math.unit(100, "feet"),
  18714. default: true
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(5 + 4 / 12, "feet"),
  18723. weight: math.unit(220, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/memory/front.svg",
  18727. extra: 3641 / 3545,
  18728. bottom: 0.03
  18729. }
  18730. },
  18731. back: {
  18732. height: math.unit(5 + 4 / 12, "feet"),
  18733. weight: math.unit(220, "lb"),
  18734. name: "Back",
  18735. image: {
  18736. source: "./media/characters/memory/back.svg",
  18737. extra: 3641 / 3545,
  18738. bottom: 0.025
  18739. }
  18740. },
  18741. frontSkirt: {
  18742. height: math.unit(5 + 4 / 12, "feet"),
  18743. weight: math.unit(220, "lb"),
  18744. name: "Front (Skirt)",
  18745. image: {
  18746. source: "./media/characters/memory/front-skirt.svg",
  18747. extra: 3641 / 3545,
  18748. bottom: 0.03
  18749. }
  18750. },
  18751. frontDress: {
  18752. height: math.unit(5 + 4 / 12, "feet"),
  18753. weight: math.unit(220, "lb"),
  18754. name: "Front (Dress)",
  18755. image: {
  18756. source: "./media/characters/memory/front-dress.svg",
  18757. extra: 3641 / 3545,
  18758. bottom: 0.03
  18759. }
  18760. },
  18761. },
  18762. [
  18763. {
  18764. name: "Micro",
  18765. height: math.unit(6, "inches"),
  18766. default: true
  18767. },
  18768. {
  18769. name: "Normal",
  18770. height: math.unit(5 + 4 / 12, "feet")
  18771. },
  18772. ]
  18773. ))
  18774. characterMakers.push(() => makeCharacter(
  18775. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18776. {
  18777. front: {
  18778. height: math.unit(4 + 11 / 12, "feet"),
  18779. weight: math.unit(100, "lb"),
  18780. name: "Front",
  18781. image: {
  18782. source: "./media/characters/luno/front.svg",
  18783. extra: 1535 / 1487,
  18784. bottom: 0.03
  18785. }
  18786. },
  18787. },
  18788. [
  18789. {
  18790. name: "Micro",
  18791. height: math.unit(3, "inches")
  18792. },
  18793. {
  18794. name: "Normal",
  18795. height: math.unit(4 + 11 / 12, "feet"),
  18796. default: true
  18797. },
  18798. {
  18799. name: "Macro",
  18800. height: math.unit(300, "feet")
  18801. },
  18802. {
  18803. name: "Megamacro",
  18804. height: math.unit(700, "miles")
  18805. },
  18806. ]
  18807. ))
  18808. characterMakers.push(() => makeCharacter(
  18809. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18810. {
  18811. front: {
  18812. height: math.unit(6 + 2 / 12, "feet"),
  18813. weight: math.unit(170, "lb"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/jamesy/front.svg",
  18817. extra: 440 / 382,
  18818. bottom: 0.005
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Micro",
  18825. height: math.unit(3, "inches")
  18826. },
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(6 + 2 / 12, "feet"),
  18830. default: true
  18831. },
  18832. {
  18833. name: "Macro",
  18834. height: math.unit(300, "feet")
  18835. },
  18836. {
  18837. name: "Megamacro",
  18838. height: math.unit(700, "miles")
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18844. {
  18845. front: {
  18846. height: math.unit(6, "feet"),
  18847. weight: math.unit(160, "lb"),
  18848. name: "Front",
  18849. image: {
  18850. source: "./media/characters/mark/front.svg",
  18851. extra: 3300 / 3100,
  18852. bottom: 136.42 / 3440.47
  18853. }
  18854. },
  18855. },
  18856. [
  18857. {
  18858. name: "Macro",
  18859. height: math.unit(120, "meters")
  18860. },
  18861. {
  18862. name: "Bigger Macro",
  18863. height: math.unit(350, "meters")
  18864. },
  18865. {
  18866. name: "Megamacro",
  18867. height: math.unit(8, "km"),
  18868. default: true
  18869. },
  18870. {
  18871. name: "Continental",
  18872. height: math.unit(4550, "km")
  18873. },
  18874. {
  18875. name: "Planetary",
  18876. height: math.unit(65000, "km")
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(6, "feet"),
  18885. weight: math.unit(400, "lb"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/mac/front.svg",
  18889. extra: 1048 / 987.7,
  18890. bottom: 60 / 1107.6,
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Macro",
  18897. height: math.unit(500, "feet"),
  18898. default: true
  18899. },
  18900. ]
  18901. ))
  18902. characterMakers.push(() => makeCharacter(
  18903. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18904. {
  18905. front: {
  18906. height: math.unit(5 + 2 / 12, "feet"),
  18907. weight: math.unit(190, "lb"),
  18908. name: "Front",
  18909. image: {
  18910. source: "./media/characters/bari/front.svg",
  18911. extra: 3156 / 2880,
  18912. bottom: 0.03
  18913. }
  18914. },
  18915. back: {
  18916. height: math.unit(5 + 2 / 12, "feet"),
  18917. weight: math.unit(190, "lb"),
  18918. name: "Back",
  18919. image: {
  18920. source: "./media/characters/bari/back.svg",
  18921. extra: 3260 / 2834,
  18922. bottom: 0.025
  18923. }
  18924. },
  18925. frontPlush: {
  18926. height: math.unit(5 + 2 / 12, "feet"),
  18927. weight: math.unit(190, "lb"),
  18928. name: "Front (Plush)",
  18929. image: {
  18930. source: "./media/characters/bari/front-plush.svg",
  18931. extra: 1112 / 1061,
  18932. bottom: 0.002
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Micro",
  18939. height: math.unit(3, "inches")
  18940. },
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(5 + 2 / 12, "feet"),
  18944. default: true
  18945. },
  18946. {
  18947. name: "Macro",
  18948. height: math.unit(20, "feet")
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18954. {
  18955. front: {
  18956. height: math.unit(6 + 1 / 12, "feet"),
  18957. weight: math.unit(275, "lb"),
  18958. name: "Front",
  18959. image: {
  18960. source: "./media/characters/hunter-misha-raven/front.svg"
  18961. }
  18962. },
  18963. },
  18964. [
  18965. {
  18966. name: "Mortal",
  18967. height: math.unit(6 + 1 / 12, "feet")
  18968. },
  18969. {
  18970. name: "Divine",
  18971. height: math.unit(1.12134e34, "parsecs"),
  18972. default: true
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(6 + 3 / 12, "feet"),
  18981. weight: math.unit(220, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/max-calore/front.svg",
  18985. extra: 1700 / 1648,
  18986. bottom: 0.01
  18987. }
  18988. },
  18989. back: {
  18990. height: math.unit(6 + 3 / 12, "feet"),
  18991. weight: math.unit(220, "lb"),
  18992. name: "Back",
  18993. image: {
  18994. source: "./media/characters/max-calore/back.svg",
  18995. extra: 1700 / 1648,
  18996. bottom: 0.01
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(6 + 3 / 12, "feet"),
  19004. default: true
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19010. {
  19011. side: {
  19012. height: math.unit(2 + 8 / 12, "feet"),
  19013. weight: math.unit(99, "lb"),
  19014. name: "Side",
  19015. image: {
  19016. source: "./media/characters/aspen/side.svg",
  19017. extra: 152 / 138,
  19018. bottom: 0.032
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(2 + 8 / 12, "feet"),
  19026. default: true
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19032. {
  19033. side: {
  19034. height: math.unit(3 + 2 / 12, "feet"),
  19035. weight: math.unit(224, "lb"),
  19036. name: "Side",
  19037. image: {
  19038. source: "./media/characters/sheila-feral-wolf/side.svg",
  19039. extra: 179 / 166,
  19040. bottom: 0.03
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(3 + 2 / 12, "feet"),
  19048. default: true
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19054. {
  19055. side: {
  19056. height: math.unit(1 + 9 / 12, "feet"),
  19057. weight: math.unit(38, "lb"),
  19058. name: "Side",
  19059. image: {
  19060. source: "./media/characters/michelle/side.svg",
  19061. extra: 147 / 136.7,
  19062. bottom: 0.03
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(1 + 9 / 12, "feet"),
  19070. default: true
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19076. {
  19077. front: {
  19078. height: math.unit(1.54, "feet"),
  19079. weight: math.unit(50, "lb"),
  19080. name: "Front",
  19081. image: {
  19082. source: "./media/characters/nino/front.svg"
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(1.54, "feet"),
  19090. default: true
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19096. {
  19097. front: {
  19098. height: math.unit(1.49, "feet"),
  19099. weight: math.unit(45, "lb"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/viola/front.svg"
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(1.49, "feet"),
  19110. default: true
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19116. {
  19117. front: {
  19118. height: math.unit(6 + 5 / 12, "feet"),
  19119. weight: math.unit(580, "lb"),
  19120. name: "Front",
  19121. image: {
  19122. source: "./media/characters/atlas/front.svg",
  19123. extra: 298.5 / 290,
  19124. bottom: 0.015
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(6 + 5 / 12, "feet"),
  19132. default: true
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19138. {
  19139. side: {
  19140. height: math.unit(15.6, "inches"),
  19141. weight: math.unit(10, "lb"),
  19142. name: "Side",
  19143. image: {
  19144. source: "./media/characters/davy/side.svg",
  19145. extra: 200 / 170,
  19146. bottom: 0.01
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(15.6, "inches"),
  19154. default: true
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19160. {
  19161. side: {
  19162. height: math.unit(4 + 8 / 12, "feet"),
  19163. weight: math.unit(166, "lb"),
  19164. name: "Side",
  19165. image: {
  19166. source: "./media/characters/fiona/side.svg",
  19167. extra: 232 / 220,
  19168. bottom: 0.03
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Normal",
  19175. height: math.unit(4 + 8 / 12, "feet"),
  19176. default: true
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19182. {
  19183. front: {
  19184. height: math.unit(26, "inches"),
  19185. weight: math.unit(35, "lb"),
  19186. name: "Front",
  19187. image: {
  19188. source: "./media/characters/lyla/front.svg",
  19189. bottom: 0.1
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(3, "feet"),
  19197. default: true
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19203. {
  19204. side: {
  19205. height: math.unit(1.8, "feet"),
  19206. weight: math.unit(44, "lb"),
  19207. name: "Side",
  19208. image: {
  19209. source: "./media/characters/perseus/side.svg",
  19210. bottom: 0.21
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(1.8, "feet"),
  19218. default: true
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19224. {
  19225. side: {
  19226. height: math.unit(4 + 2 / 12, "feet"),
  19227. weight: math.unit(20, "lb"),
  19228. name: "Side",
  19229. image: {
  19230. source: "./media/characters/remus/side.svg"
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Normal",
  19237. height: math.unit(4 + 2 / 12, "feet"),
  19238. default: true
  19239. },
  19240. ]
  19241. ))
  19242. characterMakers.push(() => makeCharacter(
  19243. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19244. {
  19245. front: {
  19246. height: math.unit(4 + 11 / 12, "feet"),
  19247. weight: math.unit(114, "lb"),
  19248. name: "Front",
  19249. image: {
  19250. source: "./media/characters/raf/front.svg",
  19251. extra: 1504/1339,
  19252. bottom: 26/1530
  19253. }
  19254. },
  19255. side: {
  19256. height: math.unit(4 + 11 / 12, "feet"),
  19257. weight: math.unit(114, "lb"),
  19258. name: "Side",
  19259. image: {
  19260. source: "./media/characters/raf/side.svg",
  19261. extra: 1466/1316,
  19262. bottom: 29/1495
  19263. }
  19264. },
  19265. paw: {
  19266. height: math.unit(1.45, "feet"),
  19267. name: "Paw",
  19268. image: {
  19269. source: "./media/characters/raf/paw.svg"
  19270. },
  19271. extraAttributes: {
  19272. "toeSize": {
  19273. name: "Toe Size",
  19274. power: 2,
  19275. type: "area",
  19276. base: math.unit(0.004, "m^2")
  19277. },
  19278. "padSize": {
  19279. name: "Pad Size",
  19280. power: 2,
  19281. type: "area",
  19282. base: math.unit(0.04, "m^2")
  19283. },
  19284. "footSize": {
  19285. name: "Foot Size",
  19286. power: 2,
  19287. type: "area",
  19288. base: math.unit(0.08, "m^2")
  19289. },
  19290. }
  19291. },
  19292. },
  19293. [
  19294. {
  19295. name: "Micro",
  19296. height: math.unit(2, "inches")
  19297. },
  19298. {
  19299. name: "Normal",
  19300. height: math.unit(4 + 11 / 12, "feet"),
  19301. default: true
  19302. },
  19303. {
  19304. name: "Macro",
  19305. height: math.unit(70, "feet")
  19306. },
  19307. ]
  19308. ))
  19309. characterMakers.push(() => makeCharacter(
  19310. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19311. {
  19312. front: {
  19313. height: math.unit(1.5, "meters"),
  19314. weight: math.unit(68, "kg"),
  19315. name: "Front",
  19316. image: {
  19317. source: "./media/characters/liam-einarr/front.svg",
  19318. extra: 2822 / 2666
  19319. }
  19320. },
  19321. back: {
  19322. height: math.unit(1.5, "meters"),
  19323. weight: math.unit(68, "kg"),
  19324. name: "Back",
  19325. image: {
  19326. source: "./media/characters/liam-einarr/back.svg",
  19327. extra: 2822 / 2666,
  19328. bottom: 0.015
  19329. }
  19330. },
  19331. },
  19332. [
  19333. {
  19334. name: "Normal",
  19335. height: math.unit(1.5, "meters"),
  19336. default: true
  19337. },
  19338. {
  19339. name: "Macro",
  19340. height: math.unit(150, "meters")
  19341. },
  19342. {
  19343. name: "Megamacro",
  19344. height: math.unit(35, "km")
  19345. },
  19346. ]
  19347. ))
  19348. characterMakers.push(() => makeCharacter(
  19349. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19350. {
  19351. front: {
  19352. height: math.unit(6, "feet"),
  19353. weight: math.unit(75, "kg"),
  19354. name: "Front",
  19355. image: {
  19356. source: "./media/characters/linda/front.svg",
  19357. extra: 930 / 874,
  19358. bottom: 0.004
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(6, "feet"),
  19366. default: true
  19367. },
  19368. ]
  19369. ))
  19370. characterMakers.push(() => makeCharacter(
  19371. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19372. {
  19373. front: {
  19374. height: math.unit(6 + 8 / 12, "feet"),
  19375. weight: math.unit(220, "lb"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/caylex/front.svg",
  19379. extra: 821 / 772,
  19380. bottom: 0.07
  19381. }
  19382. },
  19383. back: {
  19384. height: math.unit(6 + 8 / 12, "feet"),
  19385. weight: math.unit(220, "lb"),
  19386. name: "Back",
  19387. image: {
  19388. source: "./media/characters/caylex/back.svg",
  19389. extra: 821 / 772,
  19390. bottom: 0.022
  19391. }
  19392. },
  19393. hand: {
  19394. height: math.unit(1.25, "feet"),
  19395. name: "Hand",
  19396. image: {
  19397. source: "./media/characters/caylex/hand.svg"
  19398. }
  19399. },
  19400. foot: {
  19401. height: math.unit(1.6, "feet"),
  19402. name: "Foot",
  19403. image: {
  19404. source: "./media/characters/caylex/foot.svg"
  19405. }
  19406. },
  19407. armored: {
  19408. height: math.unit(6 + 8 / 12, "feet"),
  19409. weight: math.unit(250, "lb"),
  19410. name: "Armored",
  19411. image: {
  19412. source: "./media/characters/caylex/armored.svg",
  19413. extra: 1420 / 1310,
  19414. bottom: 0.045
  19415. }
  19416. },
  19417. },
  19418. [
  19419. {
  19420. name: "Normal",
  19421. height: math.unit(6 + 8 / 12, "feet"),
  19422. default: true
  19423. },
  19424. {
  19425. name: "Normal+",
  19426. height: math.unit(12, "feet")
  19427. },
  19428. ]
  19429. ))
  19430. characterMakers.push(() => makeCharacter(
  19431. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19432. {
  19433. front: {
  19434. height: math.unit(7 + 6 / 12, "feet"),
  19435. weight: math.unit(288, "lb"),
  19436. name: "Front",
  19437. image: {
  19438. source: "./media/characters/alana/front.svg",
  19439. extra: 679 / 653,
  19440. bottom: 22.5 / 701
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(7 + 6 / 12, "feet")
  19448. },
  19449. {
  19450. name: "Large",
  19451. height: math.unit(50, "feet")
  19452. },
  19453. {
  19454. name: "Macro",
  19455. height: math.unit(100, "feet"),
  19456. default: true
  19457. },
  19458. {
  19459. name: "Macro+",
  19460. height: math.unit(200, "feet")
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19466. {
  19467. front: {
  19468. height: math.unit(6 + 1 / 12, "feet"),
  19469. weight: math.unit(210, "lb"),
  19470. name: "Front",
  19471. image: {
  19472. source: "./media/characters/hasani/front.svg",
  19473. extra: 244 / 232,
  19474. bottom: 0.01
  19475. }
  19476. },
  19477. back: {
  19478. height: math.unit(6 + 1 / 12, "feet"),
  19479. weight: math.unit(210, "lb"),
  19480. name: "Back",
  19481. image: {
  19482. source: "./media/characters/hasani/back.svg",
  19483. extra: 244 / 232,
  19484. bottom: 0.01
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(6 + 1 / 12, "feet")
  19492. },
  19493. {
  19494. name: "Macro",
  19495. height: math.unit(175, "feet"),
  19496. default: true
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(1.82, "meters"),
  19505. weight: math.unit(140, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/nita/front.svg",
  19509. extra: 2473 / 2363,
  19510. bottom: 0.01
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(1.82, "m")
  19518. },
  19519. {
  19520. name: "Macro",
  19521. height: math.unit(300, "m")
  19522. },
  19523. {
  19524. name: "Mistake Canon",
  19525. height: math.unit(0.5, "miles"),
  19526. default: true
  19527. },
  19528. {
  19529. name: "Big Mistake",
  19530. height: math.unit(13, "miles")
  19531. },
  19532. {
  19533. name: "Playing God",
  19534. height: math.unit(2450, "miles")
  19535. },
  19536. ]
  19537. ))
  19538. characterMakers.push(() => makeCharacter(
  19539. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19540. {
  19541. front: {
  19542. height: math.unit(4, "feet"),
  19543. weight: math.unit(120, "lb"),
  19544. name: "Front",
  19545. image: {
  19546. source: "./media/characters/shiriko/front.svg",
  19547. extra: 970/934,
  19548. bottom: 5/975
  19549. }
  19550. },
  19551. },
  19552. [
  19553. {
  19554. name: "Normal",
  19555. height: math.unit(4, "feet"),
  19556. default: true
  19557. },
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(6, "feet"),
  19565. name: "front",
  19566. image: {
  19567. source: "./media/characters/deja/front.svg",
  19568. extra: 926 / 840,
  19569. bottom: 0.07
  19570. }
  19571. },
  19572. },
  19573. [
  19574. {
  19575. name: "Planck Length",
  19576. height: math.unit(1.6e-35, "meters")
  19577. },
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(30.48, "meters"),
  19581. default: true
  19582. },
  19583. {
  19584. name: "Universal",
  19585. height: math.unit(8.8e26, "meters")
  19586. },
  19587. ]
  19588. ))
  19589. characterMakers.push(() => makeCharacter(
  19590. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19591. {
  19592. side: {
  19593. height: math.unit(8, "feet"),
  19594. weight: math.unit(6300, "lb"),
  19595. name: "Side",
  19596. image: {
  19597. source: "./media/characters/anima/side.svg",
  19598. bottom: 0.035
  19599. }
  19600. },
  19601. },
  19602. [
  19603. {
  19604. name: "Normal",
  19605. height: math.unit(8, "feet"),
  19606. default: true
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19612. {
  19613. front: {
  19614. height: math.unit(8, "feet"),
  19615. weight: math.unit(350, "lb"),
  19616. name: "Front",
  19617. image: {
  19618. source: "./media/characters/bianca/front.svg",
  19619. extra: 234 / 225,
  19620. bottom: 0.03
  19621. }
  19622. },
  19623. },
  19624. [
  19625. {
  19626. name: "Normal",
  19627. height: math.unit(8, "feet"),
  19628. default: true
  19629. },
  19630. ]
  19631. ))
  19632. characterMakers.push(() => makeCharacter(
  19633. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19634. {
  19635. front: {
  19636. height: math.unit(11 + 5/12, "feet"),
  19637. weight: math.unit(1200, "lb"),
  19638. name: "Front",
  19639. image: {
  19640. source: "./media/characters/adinia/front.svg",
  19641. extra: 1767/1641,
  19642. bottom: 44/1811
  19643. },
  19644. extraAttributes: {
  19645. "energyIntake": {
  19646. name: "Energy Intake",
  19647. power: 3,
  19648. type: "energy",
  19649. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19650. },
  19651. }
  19652. },
  19653. back: {
  19654. height: math.unit(11 + 5/12, "feet"),
  19655. weight: math.unit(1200, "lb"),
  19656. name: "Back",
  19657. image: {
  19658. source: "./media/characters/adinia/back.svg",
  19659. extra: 1834/1684,
  19660. bottom: 14/1848
  19661. },
  19662. extraAttributes: {
  19663. "energyIntake": {
  19664. name: "Energy Intake",
  19665. power: 3,
  19666. type: "energy",
  19667. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19668. },
  19669. }
  19670. },
  19671. maw: {
  19672. height: math.unit(3.79, "feet"),
  19673. name: "Maw",
  19674. image: {
  19675. source: "./media/characters/adinia/maw.svg"
  19676. }
  19677. },
  19678. rump: {
  19679. height: math.unit(4.6, "feet"),
  19680. name: "Rump",
  19681. image: {
  19682. source: "./media/characters/adinia/rump.svg"
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Normal",
  19689. height: math.unit(11 + 5 / 12, "feet"),
  19690. default: true
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19696. {
  19697. front: {
  19698. height: math.unit(3, "meters"),
  19699. weight: math.unit(200, "kg"),
  19700. name: "Front",
  19701. image: {
  19702. source: "./media/characters/lykasa/front.svg",
  19703. extra: 1076 / 976,
  19704. bottom: 0.06
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(3, "meters")
  19712. },
  19713. {
  19714. name: "Kaiju",
  19715. height: math.unit(120, "meters"),
  19716. default: true
  19717. },
  19718. {
  19719. name: "Mega Kaiju",
  19720. height: math.unit(240, "km")
  19721. },
  19722. {
  19723. name: "Giga Kaiju",
  19724. height: math.unit(400, "megameters")
  19725. },
  19726. {
  19727. name: "Tera Kaiju",
  19728. height: math.unit(800, "gigameters")
  19729. },
  19730. {
  19731. name: "Kaiju Dragon Goddess",
  19732. height: math.unit(26, "zettaparsecs")
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19738. {
  19739. side: {
  19740. height: math.unit(283 / 124 * 6, "feet"),
  19741. weight: math.unit(35000, "lb"),
  19742. name: "Side",
  19743. image: {
  19744. source: "./media/characters/malfaren/side.svg",
  19745. extra: 1310/529,
  19746. bottom: 24/1334
  19747. }
  19748. },
  19749. front: {
  19750. height: math.unit(22.36, "feet"),
  19751. weight: math.unit(35000, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/malfaren/front.svg",
  19755. extra: 1237/1115,
  19756. bottom: 32/1269
  19757. }
  19758. },
  19759. maw: {
  19760. height: math.unit(6.9, "feet"),
  19761. name: "Maw",
  19762. image: {
  19763. source: "./media/characters/malfaren/maw.svg"
  19764. }
  19765. },
  19766. dick: {
  19767. height: math.unit(6.19, "feet"),
  19768. name: "Dick",
  19769. image: {
  19770. source: "./media/characters/malfaren/dick.svg"
  19771. }
  19772. },
  19773. eye: {
  19774. height: math.unit(0.69, "feet"),
  19775. name: "Eye",
  19776. image: {
  19777. source: "./media/characters/malfaren/eye.svg"
  19778. }
  19779. },
  19780. },
  19781. [
  19782. {
  19783. name: "Big",
  19784. height: math.unit(283 / 162 * 6, "feet"),
  19785. },
  19786. {
  19787. name: "Bigger",
  19788. height: math.unit(283 / 124 * 6, "feet")
  19789. },
  19790. {
  19791. name: "Massive",
  19792. height: math.unit(283 / 92 * 6, "feet"),
  19793. default: true
  19794. },
  19795. {
  19796. name: "👀💦",
  19797. height: math.unit(283 / 73 * 6, "feet"),
  19798. },
  19799. ]
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19803. {
  19804. front: {
  19805. height: math.unit(1.7, "m"),
  19806. weight: math.unit(70, "kg"),
  19807. name: "Front",
  19808. image: {
  19809. source: "./media/characters/kernel/front.svg",
  19810. extra: 1960/1821,
  19811. bottom: 17/1977
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Nano",
  19818. height: math.unit(17, "micrometers")
  19819. },
  19820. {
  19821. name: "Micro",
  19822. height: math.unit(1.7, "mm")
  19823. },
  19824. {
  19825. name: "Small",
  19826. height: math.unit(1.7, "cm")
  19827. },
  19828. {
  19829. name: "Normal",
  19830. height: math.unit(1.7, "m"),
  19831. default: true
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19837. {
  19838. front: {
  19839. height: math.unit(1.75, "meters"),
  19840. weight: math.unit(65, "kg"),
  19841. name: "Front",
  19842. image: {
  19843. source: "./media/characters/jayne-folest/front.svg",
  19844. extra: 2115 / 2007,
  19845. bottom: 0.02
  19846. }
  19847. },
  19848. back: {
  19849. height: math.unit(1.75, "meters"),
  19850. weight: math.unit(65, "kg"),
  19851. name: "Back",
  19852. image: {
  19853. source: "./media/characters/jayne-folest/back.svg",
  19854. extra: 2115 / 2007,
  19855. bottom: 0.005
  19856. }
  19857. },
  19858. frontClothed: {
  19859. height: math.unit(1.75, "meters"),
  19860. weight: math.unit(65, "kg"),
  19861. name: "Front (Clothed)",
  19862. image: {
  19863. source: "./media/characters/jayne-folest/front-clothed.svg",
  19864. extra: 2115 / 2007,
  19865. bottom: 0.035
  19866. }
  19867. },
  19868. hand: {
  19869. height: math.unit(1 / 1.260, "feet"),
  19870. name: "Hand",
  19871. image: {
  19872. source: "./media/characters/jayne-folest/hand.svg"
  19873. }
  19874. },
  19875. foot: {
  19876. height: math.unit(1 / 0.918, "feet"),
  19877. name: "Foot",
  19878. image: {
  19879. source: "./media/characters/jayne-folest/foot.svg"
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Micro",
  19886. height: math.unit(4, "cm")
  19887. },
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(1.75, "meters")
  19891. },
  19892. {
  19893. name: "Macro",
  19894. height: math.unit(47.5, "meters"),
  19895. default: true
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(180, "cm"),
  19904. weight: math.unit(70, "kg"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/algier/front.svg",
  19908. extra: 596 / 572,
  19909. bottom: 0.04
  19910. }
  19911. },
  19912. back: {
  19913. height: math.unit(180, "cm"),
  19914. weight: math.unit(70, "kg"),
  19915. name: "Back",
  19916. image: {
  19917. source: "./media/characters/algier/back.svg",
  19918. extra: 596 / 572,
  19919. bottom: 0.025
  19920. }
  19921. },
  19922. frontdressed: {
  19923. height: math.unit(180, "cm"),
  19924. weight: math.unit(150, "kg"),
  19925. name: "Front-dressed",
  19926. image: {
  19927. source: "./media/characters/algier/front-dressed.svg",
  19928. extra: 596 / 572,
  19929. bottom: 0.038
  19930. }
  19931. },
  19932. },
  19933. [
  19934. {
  19935. name: "Micro",
  19936. height: math.unit(5, "cm")
  19937. },
  19938. {
  19939. name: "Normal",
  19940. height: math.unit(180, "cm"),
  19941. default: true
  19942. },
  19943. {
  19944. name: "Macro",
  19945. height: math.unit(64, "m")
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19951. {
  19952. upright: {
  19953. height: math.unit(7, "feet"),
  19954. weight: math.unit(300, "lb"),
  19955. name: "Upright",
  19956. image: {
  19957. source: "./media/characters/pretzel/upright.svg",
  19958. extra: 534 / 522,
  19959. bottom: 0.065
  19960. }
  19961. },
  19962. sprawling: {
  19963. height: math.unit(3.75, "feet"),
  19964. weight: math.unit(300, "lb"),
  19965. name: "Sprawling",
  19966. image: {
  19967. source: "./media/characters/pretzel/sprawling.svg",
  19968. extra: 314 / 281,
  19969. bottom: 0.1
  19970. }
  19971. },
  19972. tongue: {
  19973. height: math.unit(2, "feet"),
  19974. name: "Tongue",
  19975. image: {
  19976. source: "./media/characters/pretzel/tongue.svg"
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Normal",
  19983. height: math.unit(7, "feet"),
  19984. default: true
  19985. },
  19986. {
  19987. name: "Oversized",
  19988. height: math.unit(15, "feet")
  19989. },
  19990. {
  19991. name: "Huge",
  19992. height: math.unit(30, "feet")
  19993. },
  19994. {
  19995. name: "Macro",
  19996. height: math.unit(250, "feet")
  19997. },
  19998. ]
  19999. ))
  20000. characterMakers.push(() => makeCharacter(
  20001. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20002. {
  20003. sideFront: {
  20004. height: math.unit(5 + 2 / 12, "feet"),
  20005. weight: math.unit(120, "lb"),
  20006. name: "Front Side",
  20007. image: {
  20008. source: "./media/characters/roxi/side-front.svg",
  20009. extra: 2924 / 2717,
  20010. bottom: 0.08
  20011. }
  20012. },
  20013. sideBack: {
  20014. height: math.unit(5 + 2 / 12, "feet"),
  20015. weight: math.unit(120, "lb"),
  20016. name: "Back Side",
  20017. image: {
  20018. source: "./media/characters/roxi/side-back.svg",
  20019. extra: 2904 / 2693,
  20020. bottom: 0.06
  20021. }
  20022. },
  20023. front: {
  20024. height: math.unit(5 + 2 / 12, "feet"),
  20025. weight: math.unit(120, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/roxi/front.svg",
  20029. extra: 2028 / 1907,
  20030. bottom: 0.01
  20031. }
  20032. },
  20033. frontAlt: {
  20034. height: math.unit(5 + 2 / 12, "feet"),
  20035. weight: math.unit(120, "lb"),
  20036. name: "Front (Alt)",
  20037. image: {
  20038. source: "./media/characters/roxi/front-alt.svg",
  20039. extra: 1828 / 1798,
  20040. bottom: 0.01
  20041. }
  20042. },
  20043. sitting: {
  20044. height: math.unit(2.8, "feet"),
  20045. weight: math.unit(120, "lb"),
  20046. name: "Sitting",
  20047. image: {
  20048. source: "./media/characters/roxi/sitting.svg",
  20049. extra: 2660 / 2462,
  20050. bottom: 0.1
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Normal",
  20057. height: math.unit(5 + 2 / 12, "feet"),
  20058. default: true
  20059. },
  20060. ]
  20061. ))
  20062. characterMakers.push(() => makeCharacter(
  20063. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20064. {
  20065. side: {
  20066. height: math.unit(55, "feet"),
  20067. weight: math.unit(153, "tons"),
  20068. name: "Side",
  20069. image: {
  20070. source: "./media/characters/shadow/side.svg",
  20071. extra: 701 / 628,
  20072. bottom: 0.02
  20073. }
  20074. },
  20075. flying: {
  20076. height: math.unit(145, "feet"),
  20077. weight: math.unit(153, "tons"),
  20078. name: "Flying",
  20079. image: {
  20080. source: "./media/characters/shadow/flying.svg"
  20081. }
  20082. },
  20083. },
  20084. [
  20085. {
  20086. name: "Normal",
  20087. height: math.unit(55, "feet"),
  20088. default: true
  20089. },
  20090. ]
  20091. ))
  20092. characterMakers.push(() => makeCharacter(
  20093. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20094. {
  20095. front: {
  20096. height: math.unit(6, "feet"),
  20097. weight: math.unit(200, "lb"),
  20098. name: "Front",
  20099. image: {
  20100. source: "./media/characters/marcie/front.svg",
  20101. extra: 960 / 876,
  20102. bottom: 58 / 1017.87
  20103. }
  20104. },
  20105. },
  20106. [
  20107. {
  20108. name: "Macro",
  20109. height: math.unit(1, "mile"),
  20110. default: true
  20111. },
  20112. ]
  20113. ))
  20114. characterMakers.push(() => makeCharacter(
  20115. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20116. {
  20117. front: {
  20118. height: math.unit(7, "feet"),
  20119. weight: math.unit(200, "lb"),
  20120. name: "Front",
  20121. image: {
  20122. source: "./media/characters/kachina/front.svg",
  20123. extra: 3206/2764,
  20124. bottom: 140/3346
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(7, "feet"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20138. {
  20139. looking: {
  20140. height: math.unit(2, "meters"),
  20141. weight: math.unit(300, "kg"),
  20142. name: "Looking",
  20143. image: {
  20144. source: "./media/characters/kash/looking.svg",
  20145. extra: 474 / 344,
  20146. bottom: 0.03
  20147. }
  20148. },
  20149. side: {
  20150. height: math.unit(2, "meters"),
  20151. weight: math.unit(300, "kg"),
  20152. name: "Side",
  20153. image: {
  20154. source: "./media/characters/kash/side.svg",
  20155. extra: 302 / 251,
  20156. bottom: 0.03
  20157. }
  20158. },
  20159. front: {
  20160. height: math.unit(2, "meters"),
  20161. weight: math.unit(300, "kg"),
  20162. name: "Front",
  20163. image: {
  20164. source: "./media/characters/kash/front.svg",
  20165. extra: 495 / 360,
  20166. bottom: 0.015
  20167. }
  20168. },
  20169. },
  20170. [
  20171. {
  20172. name: "Normal",
  20173. height: math.unit(2, "meters"),
  20174. default: true
  20175. },
  20176. {
  20177. name: "Big",
  20178. height: math.unit(3, "meters")
  20179. },
  20180. {
  20181. name: "Large",
  20182. height: math.unit(5, "meters")
  20183. },
  20184. ]
  20185. ))
  20186. characterMakers.push(() => makeCharacter(
  20187. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20188. {
  20189. feeding: {
  20190. height: math.unit(6.7, "feet"),
  20191. weight: math.unit(350, "lb"),
  20192. name: "Feeding",
  20193. image: {
  20194. source: "./media/characters/lalim/feeding.svg",
  20195. }
  20196. },
  20197. },
  20198. [
  20199. {
  20200. name: "Normal",
  20201. height: math.unit(6.7, "feet"),
  20202. default: true
  20203. },
  20204. ]
  20205. ))
  20206. characterMakers.push(() => makeCharacter(
  20207. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20208. {
  20209. front: {
  20210. height: math.unit(9.5, "feet"),
  20211. weight: math.unit(600, "lb"),
  20212. name: "Front",
  20213. image: {
  20214. source: "./media/characters/de'vout/front.svg",
  20215. extra: 1443 / 1328,
  20216. bottom: 0.025
  20217. }
  20218. },
  20219. back: {
  20220. height: math.unit(9.5, "feet"),
  20221. weight: math.unit(600, "lb"),
  20222. name: "Back",
  20223. image: {
  20224. source: "./media/characters/de'vout/back.svg",
  20225. extra: 1443 / 1328
  20226. }
  20227. },
  20228. frontDressed: {
  20229. height: math.unit(9.5, "feet"),
  20230. weight: math.unit(600, "lb"),
  20231. name: "Front (Dressed",
  20232. image: {
  20233. source: "./media/characters/de'vout/front-dressed.svg",
  20234. extra: 1443 / 1328,
  20235. bottom: 0.025
  20236. }
  20237. },
  20238. backDressed: {
  20239. height: math.unit(9.5, "feet"),
  20240. weight: math.unit(600, "lb"),
  20241. name: "Back (Dressed",
  20242. image: {
  20243. source: "./media/characters/de'vout/back-dressed.svg",
  20244. extra: 1443 / 1328
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(9.5, "feet"),
  20252. default: true
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20258. {
  20259. front: {
  20260. height: math.unit(8, "feet"),
  20261. weight: math.unit(225, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/talana/front.svg",
  20265. extra: 1410 / 1300,
  20266. bottom: 0.015
  20267. }
  20268. },
  20269. frontDressed: {
  20270. height: math.unit(8, "feet"),
  20271. weight: math.unit(225, "lb"),
  20272. name: "Front (Dressed",
  20273. image: {
  20274. source: "./media/characters/talana/front-dressed.svg",
  20275. extra: 1410 / 1300,
  20276. bottom: 0.015
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(8, "feet"),
  20284. default: true
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20290. {
  20291. side: {
  20292. height: math.unit(7.2, "feet"),
  20293. weight: math.unit(150, "lb"),
  20294. name: "Side",
  20295. image: {
  20296. source: "./media/characters/xeauvok/side.svg",
  20297. extra: 1975 / 1523,
  20298. bottom: 0.07
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(7.2, "feet"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20312. {
  20313. side: {
  20314. height: math.unit(4, "meters"),
  20315. weight: math.unit(2200, "kg"),
  20316. name: "Side",
  20317. image: {
  20318. source: "./media/characters/zara/side.svg",
  20319. extra: 765/744,
  20320. bottom: 156/921
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Normal",
  20327. height: math.unit(4, "meters"),
  20328. default: true
  20329. },
  20330. ]
  20331. ))
  20332. characterMakers.push(() => makeCharacter(
  20333. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20334. {
  20335. side: {
  20336. height: math.unit(6, "feet"),
  20337. weight: math.unit(150, "lb"),
  20338. name: "Side",
  20339. image: {
  20340. source: "./media/characters/richard-dragon/side.svg",
  20341. extra: 845 / 340,
  20342. bottom: 0.017
  20343. }
  20344. },
  20345. maw: {
  20346. height: math.unit(2.97, "feet"),
  20347. name: "Maw",
  20348. image: {
  20349. source: "./media/characters/richard-dragon/maw.svg"
  20350. }
  20351. },
  20352. },
  20353. [
  20354. ]
  20355. ))
  20356. characterMakers.push(() => makeCharacter(
  20357. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20358. {
  20359. front: {
  20360. height: math.unit(4, "feet"),
  20361. weight: math.unit(100, "lb"),
  20362. name: "Front",
  20363. image: {
  20364. source: "./media/characters/richard-smeargle/front.svg",
  20365. extra: 2952 / 2820,
  20366. bottom: 0.028
  20367. }
  20368. },
  20369. },
  20370. [
  20371. {
  20372. name: "Normal",
  20373. height: math.unit(4, "feet"),
  20374. default: true
  20375. },
  20376. {
  20377. name: "Dynamax",
  20378. height: math.unit(20, "meters")
  20379. },
  20380. ]
  20381. ))
  20382. characterMakers.push(() => makeCharacter(
  20383. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20384. {
  20385. front: {
  20386. height: math.unit(6, "feet"),
  20387. weight: math.unit(110, "lb"),
  20388. name: "Front",
  20389. image: {
  20390. source: "./media/characters/klay/front.svg",
  20391. extra: 962 / 883,
  20392. bottom: 0.04
  20393. }
  20394. },
  20395. back: {
  20396. height: math.unit(6, "feet"),
  20397. weight: math.unit(110, "lb"),
  20398. name: "Back",
  20399. image: {
  20400. source: "./media/characters/klay/back.svg",
  20401. extra: 962 / 883
  20402. }
  20403. },
  20404. beans: {
  20405. height: math.unit(1.15, "feet"),
  20406. name: "Beans",
  20407. image: {
  20408. source: "./media/characters/klay/beans.svg"
  20409. }
  20410. },
  20411. },
  20412. [
  20413. {
  20414. name: "Micro",
  20415. height: math.unit(6, "inches")
  20416. },
  20417. {
  20418. name: "Mini",
  20419. height: math.unit(3, "feet")
  20420. },
  20421. {
  20422. name: "Normal",
  20423. height: math.unit(6, "feet"),
  20424. default: true
  20425. },
  20426. {
  20427. name: "Big",
  20428. height: math.unit(25, "feet")
  20429. },
  20430. {
  20431. name: "Macro",
  20432. height: math.unit(100, "feet")
  20433. },
  20434. {
  20435. name: "Megamacro",
  20436. height: math.unit(400, "feet")
  20437. },
  20438. ]
  20439. ))
  20440. characterMakers.push(() => makeCharacter(
  20441. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20442. {
  20443. front: {
  20444. height: math.unit(6, "feet"),
  20445. weight: math.unit(160, "lb"),
  20446. name: "Front",
  20447. image: {
  20448. source: "./media/characters/marcus/front.svg",
  20449. extra: 734 / 676,
  20450. bottom: 0.03
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Little",
  20457. height: math.unit(6, "feet")
  20458. },
  20459. {
  20460. name: "Normal",
  20461. height: math.unit(110, "feet"),
  20462. default: true
  20463. },
  20464. {
  20465. name: "Macro",
  20466. height: math.unit(250, "feet")
  20467. },
  20468. {
  20469. name: "Megamacro",
  20470. height: math.unit(1000, "feet")
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20476. {
  20477. front: {
  20478. height: math.unit(7, "feet"),
  20479. weight: math.unit(275, "lb"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/claude-delroute/front.svg",
  20483. extra: 902/827,
  20484. bottom: 26/928
  20485. }
  20486. },
  20487. side: {
  20488. height: math.unit(7, "feet"),
  20489. weight: math.unit(275, "lb"),
  20490. name: "Side",
  20491. image: {
  20492. source: "./media/characters/claude-delroute/side.svg",
  20493. extra: 908/853,
  20494. bottom: 16/924
  20495. }
  20496. },
  20497. back: {
  20498. height: math.unit(7, "feet"),
  20499. weight: math.unit(275, "lb"),
  20500. name: "Back",
  20501. image: {
  20502. source: "./media/characters/claude-delroute/back.svg",
  20503. extra: 911/829,
  20504. bottom: 18/929
  20505. }
  20506. },
  20507. maw: {
  20508. height: math.unit(0.6407, "meters"),
  20509. name: "Maw",
  20510. image: {
  20511. source: "./media/characters/claude-delroute/maw.svg"
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(7, "feet"),
  20519. default: true
  20520. },
  20521. {
  20522. name: "Lorge",
  20523. height: math.unit(20, "feet")
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(8 + 4 / 12, "feet"),
  20532. weight: math.unit(600, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/dragonien/front.svg",
  20536. extra: 100 / 94,
  20537. bottom: 3.3 / 103.3445
  20538. }
  20539. },
  20540. back: {
  20541. height: math.unit(8 + 4 / 12, "feet"),
  20542. weight: math.unit(600, "lb"),
  20543. name: "Back",
  20544. image: {
  20545. source: "./media/characters/dragonien/back.svg",
  20546. extra: 776 / 746,
  20547. bottom: 6.4 / 782.0616
  20548. }
  20549. },
  20550. foot: {
  20551. height: math.unit(1.54, "feet"),
  20552. name: "Foot",
  20553. image: {
  20554. source: "./media/characters/dragonien/foot.svg",
  20555. }
  20556. },
  20557. },
  20558. [
  20559. {
  20560. name: "Normal",
  20561. height: math.unit(8 + 4 / 12, "feet"),
  20562. default: true
  20563. },
  20564. {
  20565. name: "Macro",
  20566. height: math.unit(200, "feet")
  20567. },
  20568. {
  20569. name: "Megamacro",
  20570. height: math.unit(1, "mile")
  20571. },
  20572. {
  20573. name: "Gigamacro",
  20574. height: math.unit(1000, "miles")
  20575. },
  20576. ]
  20577. ))
  20578. characterMakers.push(() => makeCharacter(
  20579. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20580. {
  20581. front: {
  20582. height: math.unit(5 + 2 / 12, "feet"),
  20583. weight: math.unit(110, "lb"),
  20584. name: "Front",
  20585. image: {
  20586. source: "./media/characters/desta/front.svg",
  20587. extra: 767 / 726,
  20588. bottom: 11.7 / 779
  20589. }
  20590. },
  20591. back: {
  20592. height: math.unit(5 + 2 / 12, "feet"),
  20593. weight: math.unit(110, "lb"),
  20594. name: "Back",
  20595. image: {
  20596. source: "./media/characters/desta/back.svg",
  20597. extra: 777 / 728,
  20598. bottom: 6 / 784
  20599. }
  20600. },
  20601. frontAlt: {
  20602. height: math.unit(5 + 2 / 12, "feet"),
  20603. weight: math.unit(110, "lb"),
  20604. name: "Front",
  20605. image: {
  20606. source: "./media/characters/desta/front-alt.svg",
  20607. extra: 1482 / 1417
  20608. }
  20609. },
  20610. side: {
  20611. height: math.unit(5 + 2 / 12, "feet"),
  20612. weight: math.unit(110, "lb"),
  20613. name: "Side",
  20614. image: {
  20615. source: "./media/characters/desta/side.svg",
  20616. extra: 2579 / 2491,
  20617. bottom: 0.053
  20618. }
  20619. },
  20620. },
  20621. [
  20622. {
  20623. name: "Micro",
  20624. height: math.unit(6, "inches")
  20625. },
  20626. {
  20627. name: "Normal",
  20628. height: math.unit(5 + 2 / 12, "feet"),
  20629. default: true
  20630. },
  20631. {
  20632. name: "Macro",
  20633. height: math.unit(62, "feet")
  20634. },
  20635. {
  20636. name: "Megamacro",
  20637. height: math.unit(1800, "feet")
  20638. },
  20639. ]
  20640. ))
  20641. characterMakers.push(() => makeCharacter(
  20642. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20643. {
  20644. front: {
  20645. height: math.unit(10, "feet"),
  20646. weight: math.unit(700, "lb"),
  20647. name: "Front",
  20648. image: {
  20649. source: "./media/characters/storm-alystar/front.svg",
  20650. extra: 2112 / 1898,
  20651. bottom: 0.034
  20652. }
  20653. },
  20654. },
  20655. [
  20656. {
  20657. name: "Micro",
  20658. height: math.unit(3.5, "inches")
  20659. },
  20660. {
  20661. name: "Normal",
  20662. height: math.unit(10, "feet"),
  20663. default: true
  20664. },
  20665. {
  20666. name: "Macro",
  20667. height: math.unit(400, "feet")
  20668. },
  20669. {
  20670. name: "Deific",
  20671. height: math.unit(60, "miles")
  20672. },
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20677. {
  20678. front: {
  20679. height: math.unit(2.35, "meters"),
  20680. weight: math.unit(119, "kg"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/ilia/front.svg",
  20684. extra: 1285 / 1255,
  20685. bottom: 0.06
  20686. }
  20687. },
  20688. },
  20689. [
  20690. {
  20691. name: "Normal",
  20692. height: math.unit(2.35, "meters")
  20693. },
  20694. {
  20695. name: "Macro",
  20696. height: math.unit(140, "meters"),
  20697. default: true
  20698. },
  20699. {
  20700. name: "Megamacro",
  20701. height: math.unit(100, "miles")
  20702. },
  20703. ]
  20704. ))
  20705. characterMakers.push(() => makeCharacter(
  20706. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20707. {
  20708. front: {
  20709. height: math.unit(6 + 5 / 12, "feet"),
  20710. weight: math.unit(190, "lb"),
  20711. name: "Front",
  20712. image: {
  20713. source: "./media/characters/kingdead/front.svg",
  20714. extra: 1228 / 1177
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Micro",
  20721. height: math.unit(7, "inches")
  20722. },
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(6 + 5 / 12, "feet")
  20726. },
  20727. {
  20728. name: "Macro",
  20729. height: math.unit(150, "feet"),
  20730. default: true
  20731. },
  20732. {
  20733. name: "Megamacro",
  20734. height: math.unit(200, "miles")
  20735. },
  20736. ]
  20737. ))
  20738. characterMakers.push(() => makeCharacter(
  20739. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20740. {
  20741. front: {
  20742. height: math.unit(8, "feet"),
  20743. weight: math.unit(600, "lb"),
  20744. name: "Front",
  20745. image: {
  20746. source: "./media/characters/kyrehx/front.svg",
  20747. extra: 1195 / 1095,
  20748. bottom: 0.034
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Micro",
  20755. height: math.unit(2, "inches")
  20756. },
  20757. {
  20758. name: "Normal",
  20759. height: math.unit(8, "feet"),
  20760. default: true
  20761. },
  20762. {
  20763. name: "Macro",
  20764. height: math.unit(255, "feet")
  20765. },
  20766. ]
  20767. ))
  20768. characterMakers.push(() => makeCharacter(
  20769. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20770. {
  20771. front: {
  20772. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20773. weight: math.unit(184, "lb"),
  20774. name: "Front",
  20775. image: {
  20776. source: "./media/characters/xang/front.svg",
  20777. extra: 845 / 755
  20778. }
  20779. },
  20780. },
  20781. [
  20782. {
  20783. name: "Normal",
  20784. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20785. default: true
  20786. },
  20787. {
  20788. name: "Macro",
  20789. height: math.unit(0.935 * 146, "feet")
  20790. },
  20791. {
  20792. name: "Megamacro",
  20793. height: math.unit(0.935 * 3, "miles")
  20794. },
  20795. ]
  20796. ))
  20797. characterMakers.push(() => makeCharacter(
  20798. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20799. {
  20800. frontDressed: {
  20801. height: math.unit(5 + 7 / 12, "feet"),
  20802. weight: math.unit(140, "lb"),
  20803. name: "Front (Dressed)",
  20804. image: {
  20805. source: "./media/characters/doc-weardno/front-dressed.svg",
  20806. extra: 263 / 234
  20807. }
  20808. },
  20809. backDressed: {
  20810. height: math.unit(5 + 7 / 12, "feet"),
  20811. weight: math.unit(140, "lb"),
  20812. name: "Back (Dressed)",
  20813. image: {
  20814. source: "./media/characters/doc-weardno/back-dressed.svg",
  20815. extra: 266 / 238
  20816. }
  20817. },
  20818. front: {
  20819. height: math.unit(5 + 7 / 12, "feet"),
  20820. weight: math.unit(140, "lb"),
  20821. name: "Front",
  20822. image: {
  20823. source: "./media/characters/doc-weardno/front.svg",
  20824. extra: 254 / 233
  20825. }
  20826. },
  20827. },
  20828. [
  20829. {
  20830. name: "Micro",
  20831. height: math.unit(3, "inches")
  20832. },
  20833. {
  20834. name: "Normal",
  20835. height: math.unit(5 + 7 / 12, "feet"),
  20836. default: true
  20837. },
  20838. {
  20839. name: "Macro",
  20840. height: math.unit(25, "feet")
  20841. },
  20842. {
  20843. name: "Megamacro",
  20844. height: math.unit(2, "miles")
  20845. },
  20846. ]
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20850. {
  20851. front: {
  20852. height: math.unit(6 + 2 / 12, "feet"),
  20853. weight: math.unit(153, "lb"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/seth-whilst/front.svg",
  20857. bottom: 0.07
  20858. }
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Micro",
  20864. height: math.unit(5, "inches")
  20865. },
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(6 + 2 / 12, "feet"),
  20869. default: true
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20875. {
  20876. front: {
  20877. height: math.unit(3, "inches"),
  20878. weight: math.unit(8, "grams"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/pocket-jabari/front.svg",
  20882. extra: 1024 / 974,
  20883. bottom: 0.039
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Minimicro",
  20890. height: math.unit(8, "mm")
  20891. },
  20892. {
  20893. name: "Micro",
  20894. height: math.unit(3, "inches"),
  20895. default: true
  20896. },
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(3, "feet")
  20900. },
  20901. ]
  20902. ))
  20903. characterMakers.push(() => makeCharacter(
  20904. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20905. {
  20906. frontDressed: {
  20907. height: math.unit(15, "feet"),
  20908. weight: math.unit(3280, "lb"),
  20909. name: "Front (Dressed)",
  20910. image: {
  20911. source: "./media/characters/sapphy/front-dressed.svg",
  20912. extra: 1951/1654,
  20913. bottom: 194/2145
  20914. },
  20915. form: "anthro",
  20916. default: true
  20917. },
  20918. backDressed: {
  20919. height: math.unit(15, "feet"),
  20920. weight: math.unit(3280, "lb"),
  20921. name: "Back (Dressed)",
  20922. image: {
  20923. source: "./media/characters/sapphy/back-dressed.svg",
  20924. extra: 2058/1918,
  20925. bottom: 125/2183
  20926. },
  20927. form: "anthro"
  20928. },
  20929. frontNude: {
  20930. height: math.unit(15, "feet"),
  20931. weight: math.unit(3280, "lb"),
  20932. name: "Front (Nude)",
  20933. image: {
  20934. source: "./media/characters/sapphy/front-nude.svg",
  20935. extra: 1951/1654,
  20936. bottom: 194/2145
  20937. },
  20938. form: "anthro"
  20939. },
  20940. backNude: {
  20941. height: math.unit(15, "feet"),
  20942. weight: math.unit(3280, "lb"),
  20943. name: "Back (Nude)",
  20944. image: {
  20945. source: "./media/characters/sapphy/back-nude.svg",
  20946. extra: 2058/1918,
  20947. bottom: 125/2183
  20948. },
  20949. form: "anthro"
  20950. },
  20951. full: {
  20952. height: math.unit(15, "feet"),
  20953. weight: math.unit(3280, "lb"),
  20954. name: "Full",
  20955. image: {
  20956. source: "./media/characters/sapphy/full.svg",
  20957. extra: 1396/1317,
  20958. bottom: 44/1440
  20959. },
  20960. form: "anthro"
  20961. },
  20962. dick: {
  20963. height: math.unit(3.8, "feet"),
  20964. name: "Dick",
  20965. image: {
  20966. source: "./media/characters/sapphy/dick.svg"
  20967. },
  20968. form: "anthro"
  20969. },
  20970. feral: {
  20971. height: math.unit(35, "feet"),
  20972. weight: math.unit(160, "tons"),
  20973. name: "Feral",
  20974. image: {
  20975. source: "./media/characters/sapphy/feral.svg",
  20976. extra: 1050/573,
  20977. bottom: 60/1110
  20978. },
  20979. form: "feral",
  20980. default: true
  20981. },
  20982. },
  20983. [
  20984. {
  20985. name: "Normal",
  20986. height: math.unit(15, "feet"),
  20987. form: "anthro"
  20988. },
  20989. {
  20990. name: "Casual Macro",
  20991. height: math.unit(120, "feet"),
  20992. form: "anthro"
  20993. },
  20994. {
  20995. name: "Macro",
  20996. height: math.unit(2150, "feet"),
  20997. default: true,
  20998. form: "anthro"
  20999. },
  21000. {
  21001. name: "Megamacro",
  21002. height: math.unit(8, "miles"),
  21003. form: "anthro"
  21004. },
  21005. {
  21006. name: "Galaxy Mom",
  21007. height: math.unit(6, "megalightyears"),
  21008. form: "anthro"
  21009. },
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(35, "feet"),
  21013. form: "feral",
  21014. default: true
  21015. },
  21016. {
  21017. name: "Macro",
  21018. height: math.unit(300, "feet"),
  21019. form: "feral"
  21020. },
  21021. {
  21022. name: "Galaxy Mom",
  21023. height: math.unit(10, "megalightyears"),
  21024. form: "feral"
  21025. },
  21026. ],
  21027. {
  21028. "anthro": {
  21029. name: "Anthro",
  21030. default: true
  21031. },
  21032. "feral": {
  21033. name: "Feral"
  21034. }
  21035. }
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21039. {
  21040. hyenaFront: {
  21041. height: math.unit(6, "feet"),
  21042. weight: math.unit(190, "lb"),
  21043. name: "Front",
  21044. image: {
  21045. source: "./media/characters/kiro/hyena-front.svg",
  21046. extra: 927/839,
  21047. bottom: 91/1018
  21048. },
  21049. form: "hyena",
  21050. default: true
  21051. },
  21052. front: {
  21053. height: math.unit(6, "feet"),
  21054. weight: math.unit(170, "lb"),
  21055. name: "Front",
  21056. image: {
  21057. source: "./media/characters/kiro/front.svg",
  21058. extra: 1064 / 1012,
  21059. bottom: 0.052
  21060. },
  21061. form: "folf",
  21062. default: true
  21063. },
  21064. },
  21065. [
  21066. {
  21067. name: "Micro",
  21068. height: math.unit(6, "inches"),
  21069. form: "folf"
  21070. },
  21071. {
  21072. name: "Normal",
  21073. height: math.unit(6, "feet"),
  21074. form: "folf",
  21075. default: true
  21076. },
  21077. {
  21078. name: "Macro",
  21079. height: math.unit(72, "feet"),
  21080. form: "folf"
  21081. },
  21082. {
  21083. name: "Micro",
  21084. height: math.unit(6, "inches"),
  21085. form: "hyena"
  21086. },
  21087. {
  21088. name: "Normal",
  21089. height: math.unit(6, "feet"),
  21090. form: "hyena",
  21091. default: true
  21092. },
  21093. {
  21094. name: "Macro",
  21095. height: math.unit(72, "feet"),
  21096. form: "hyena"
  21097. },
  21098. ],
  21099. {
  21100. "hyena": {
  21101. name: "Hyena",
  21102. default: true
  21103. },
  21104. "folf": {
  21105. name: "Folf",
  21106. },
  21107. }
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21111. {
  21112. front: {
  21113. height: math.unit(5 + 9 / 12, "feet"),
  21114. weight: math.unit(175, "lb"),
  21115. name: "Front",
  21116. image: {
  21117. source: "./media/characters/irishfox/front.svg",
  21118. extra: 1912 / 1680,
  21119. bottom: 0.02
  21120. }
  21121. },
  21122. },
  21123. [
  21124. {
  21125. name: "Nano",
  21126. height: math.unit(1, "mm")
  21127. },
  21128. {
  21129. name: "Micro",
  21130. height: math.unit(2, "inches")
  21131. },
  21132. {
  21133. name: "Normal",
  21134. height: math.unit(5 + 9 / 12, "feet"),
  21135. default: true
  21136. },
  21137. {
  21138. name: "Macro",
  21139. height: math.unit(45, "feet")
  21140. },
  21141. ]
  21142. ))
  21143. characterMakers.push(() => makeCharacter(
  21144. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21145. {
  21146. front: {
  21147. height: math.unit(6 + 1 / 12, "feet"),
  21148. weight: math.unit(75, "lb"),
  21149. name: "Front",
  21150. image: {
  21151. source: "./media/characters/aronai-sieyes/front.svg",
  21152. extra: 1532/1450,
  21153. bottom: 42/1574
  21154. }
  21155. },
  21156. side: {
  21157. height: math.unit(6 + 1 / 12, "feet"),
  21158. weight: math.unit(75, "lb"),
  21159. name: "Side",
  21160. image: {
  21161. source: "./media/characters/aronai-sieyes/side.svg",
  21162. extra: 1422/1365,
  21163. bottom: 148/1570
  21164. }
  21165. },
  21166. back: {
  21167. height: math.unit(6 + 1 / 12, "feet"),
  21168. weight: math.unit(75, "lb"),
  21169. name: "Back",
  21170. image: {
  21171. source: "./media/characters/aronai-sieyes/back.svg",
  21172. extra: 1526/1464,
  21173. bottom: 51/1577
  21174. }
  21175. },
  21176. dressed: {
  21177. height: math.unit(6 + 1 / 12, "feet"),
  21178. weight: math.unit(75, "lb"),
  21179. name: "Dressed",
  21180. image: {
  21181. source: "./media/characters/aronai-sieyes/dressed.svg",
  21182. extra: 1559/1483,
  21183. bottom: 39/1598
  21184. }
  21185. },
  21186. slit: {
  21187. height: math.unit(1.3, "feet"),
  21188. name: "Slit",
  21189. image: {
  21190. source: "./media/characters/aronai-sieyes/slit.svg"
  21191. }
  21192. },
  21193. slitSpread: {
  21194. height: math.unit(0.9, "feet"),
  21195. name: "Slit (Spread)",
  21196. image: {
  21197. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21198. }
  21199. },
  21200. rump: {
  21201. height: math.unit(1.3, "feet"),
  21202. name: "Rump",
  21203. image: {
  21204. source: "./media/characters/aronai-sieyes/rump.svg"
  21205. }
  21206. },
  21207. maw: {
  21208. height: math.unit(1.25, "feet"),
  21209. name: "Maw",
  21210. image: {
  21211. source: "./media/characters/aronai-sieyes/maw.svg"
  21212. }
  21213. },
  21214. feral: {
  21215. height: math.unit(18, "feet"),
  21216. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21217. name: "Feral",
  21218. image: {
  21219. source: "./media/characters/aronai-sieyes/feral.svg",
  21220. extra: 1530 / 1240,
  21221. bottom: 0.035
  21222. }
  21223. },
  21224. },
  21225. [
  21226. {
  21227. name: "Micro",
  21228. height: math.unit(2, "inches")
  21229. },
  21230. {
  21231. name: "Normal",
  21232. height: math.unit(6 + 1 / 12, "feet"),
  21233. default: true
  21234. }
  21235. ]
  21236. ))
  21237. characterMakers.push(() => makeCharacter(
  21238. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21239. {
  21240. front: {
  21241. height: math.unit(12, "feet"),
  21242. weight: math.unit(410, "kg"),
  21243. name: "Front",
  21244. image: {
  21245. source: "./media/characters/xuna/front.svg",
  21246. extra: 2184 / 1980
  21247. }
  21248. },
  21249. side: {
  21250. height: math.unit(12, "feet"),
  21251. weight: math.unit(410, "kg"),
  21252. name: "Side",
  21253. image: {
  21254. source: "./media/characters/xuna/side.svg",
  21255. extra: 2184 / 1980
  21256. }
  21257. },
  21258. back: {
  21259. height: math.unit(12, "feet"),
  21260. weight: math.unit(410, "kg"),
  21261. name: "Back",
  21262. image: {
  21263. source: "./media/characters/xuna/back.svg",
  21264. extra: 2184 / 1980
  21265. }
  21266. },
  21267. },
  21268. [
  21269. {
  21270. name: "Nano glow",
  21271. height: math.unit(10, "nm")
  21272. },
  21273. {
  21274. name: "Micro floof",
  21275. height: math.unit(0.3, "m")
  21276. },
  21277. {
  21278. name: "Huggable softy boi",
  21279. height: math.unit(3.6576, "m"),
  21280. default: true
  21281. },
  21282. {
  21283. name: "Admirable floof",
  21284. height: math.unit(80, "meters")
  21285. },
  21286. {
  21287. name: "Gentle macro",
  21288. height: math.unit(300, "meters")
  21289. },
  21290. {
  21291. name: "Very careful floof",
  21292. height: math.unit(3200, "meters")
  21293. },
  21294. {
  21295. name: "The mega floof",
  21296. height: math.unit(36000, "meters")
  21297. },
  21298. {
  21299. name: "Giga-fur-Wicker",
  21300. height: math.unit(4800000, "meters")
  21301. },
  21302. {
  21303. name: "Licky world",
  21304. height: math.unit(20000000, "meters")
  21305. },
  21306. {
  21307. name: "Floofy cyan sun",
  21308. height: math.unit(1500000000, "meters")
  21309. },
  21310. {
  21311. name: "Milky Wicker",
  21312. height: math.unit(1000000000000000000000, "meters")
  21313. },
  21314. {
  21315. name: "The observing Wicker",
  21316. height: math.unit(999999999999999999999999999, "meters")
  21317. },
  21318. ]
  21319. ))
  21320. characterMakers.push(() => makeCharacter(
  21321. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21322. {
  21323. front: {
  21324. height: math.unit(5 + 9 / 12, "feet"),
  21325. weight: math.unit(150, "lb"),
  21326. name: "Front",
  21327. image: {
  21328. source: "./media/characters/arokha-sieyes/front.svg",
  21329. extra: 1425 / 1284,
  21330. bottom: 0.05
  21331. }
  21332. },
  21333. },
  21334. [
  21335. {
  21336. name: "Normal",
  21337. height: math.unit(5 + 9 / 12, "feet")
  21338. },
  21339. {
  21340. name: "Macro",
  21341. height: math.unit(30, "meters"),
  21342. default: true
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21348. {
  21349. front: {
  21350. height: math.unit(6, "feet"),
  21351. weight: math.unit(180, "lb"),
  21352. name: "Front",
  21353. image: {
  21354. source: "./media/characters/arokh-sieyes/front.svg",
  21355. extra: 1830 / 1769,
  21356. bottom: 0.01
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Normal",
  21363. height: math.unit(6, "feet")
  21364. },
  21365. {
  21366. name: "Macro",
  21367. height: math.unit(30, "meters"),
  21368. default: true
  21369. },
  21370. ]
  21371. ))
  21372. characterMakers.push(() => makeCharacter(
  21373. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21374. {
  21375. side: {
  21376. height: math.unit(13 + 1 / 12, "feet"),
  21377. weight: math.unit(8.5, "tonnes"),
  21378. preyCapacity: math.unit(36, "people"),
  21379. name: "Side",
  21380. image: {
  21381. source: "./media/characters/goldeneye/side.svg",
  21382. extra: 1139/741,
  21383. bottom: 98/1237
  21384. }
  21385. },
  21386. front: {
  21387. height: math.unit(5.1, "feet"),
  21388. weight: math.unit(8.5, "tonnes"),
  21389. preyCapacity: math.unit(36, "people"),
  21390. name: "Front",
  21391. image: {
  21392. source: "./media/characters/goldeneye/front.svg",
  21393. extra: 635/365,
  21394. bottom: 598/1233
  21395. }
  21396. },
  21397. maw: {
  21398. height: math.unit(6.6, "feet"),
  21399. name: "Maw",
  21400. image: {
  21401. source: "./media/characters/goldeneye/maw.svg"
  21402. }
  21403. },
  21404. headFront: {
  21405. height: math.unit(8, "feet"),
  21406. name: "Head (Front)",
  21407. image: {
  21408. source: "./media/characters/goldeneye/head-front.svg"
  21409. }
  21410. },
  21411. headSide: {
  21412. height: math.unit(6, "feet"),
  21413. name: "Head (Side)",
  21414. image: {
  21415. source: "./media/characters/goldeneye/head-side.svg"
  21416. }
  21417. },
  21418. headBack: {
  21419. height: math.unit(8, "feet"),
  21420. name: "Head (Back)",
  21421. image: {
  21422. source: "./media/characters/goldeneye/head-back.svg"
  21423. }
  21424. },
  21425. paw: {
  21426. height: math.unit(3.4, "feet"),
  21427. name: "Paw",
  21428. image: {
  21429. source: "./media/characters/goldeneye/paw.svg"
  21430. }
  21431. },
  21432. toering: {
  21433. height: math.unit(0.45, "feet"),
  21434. name: "Toering",
  21435. image: {
  21436. source: "./media/characters/goldeneye/toering.svg"
  21437. }
  21438. },
  21439. eyes: {
  21440. height: math.unit(0.5, "feet"),
  21441. name: "Eyes",
  21442. image: {
  21443. source: "./media/characters/goldeneye/eyes.svg"
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(13 + 1 / 12, "feet"),
  21451. default: true
  21452. },
  21453. ]
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21457. {
  21458. front: {
  21459. height: math.unit(6 + 1 / 12, "feet"),
  21460. weight: math.unit(210, "lb"),
  21461. name: "Front",
  21462. image: {
  21463. source: "./media/characters/leonardo-lycheborne/front.svg",
  21464. extra: 776/723,
  21465. bottom: 34/810
  21466. }
  21467. },
  21468. side: {
  21469. height: math.unit(6 + 1 / 12, "feet"),
  21470. weight: math.unit(210, "lb"),
  21471. name: "Side",
  21472. image: {
  21473. source: "./media/characters/leonardo-lycheborne/side.svg",
  21474. extra: 780/728,
  21475. bottom: 12/792
  21476. }
  21477. },
  21478. back: {
  21479. height: math.unit(6 + 1 / 12, "feet"),
  21480. weight: math.unit(210, "lb"),
  21481. name: "Back",
  21482. image: {
  21483. source: "./media/characters/leonardo-lycheborne/back.svg",
  21484. extra: 775/721,
  21485. bottom: 17/792
  21486. }
  21487. },
  21488. hand: {
  21489. height: math.unit(1.08, "feet"),
  21490. name: "Hand",
  21491. image: {
  21492. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21493. }
  21494. },
  21495. foot: {
  21496. height: math.unit(1.32, "feet"),
  21497. name: "Foot",
  21498. image: {
  21499. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21500. }
  21501. },
  21502. maw: {
  21503. height: math.unit(1, "feet"),
  21504. name: "Maw",
  21505. image: {
  21506. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21507. }
  21508. },
  21509. were: {
  21510. height: math.unit(20, "feet"),
  21511. weight: math.unit(7800, "lb"),
  21512. name: "Were",
  21513. image: {
  21514. source: "./media/characters/leonardo-lycheborne/were.svg",
  21515. extra: 1224/1165,
  21516. bottom: 72/1296
  21517. }
  21518. },
  21519. feral: {
  21520. height: math.unit(7.5, "feet"),
  21521. weight: math.unit(600, "lb"),
  21522. name: "Feral",
  21523. image: {
  21524. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21525. extra: 797/702,
  21526. bottom: 139/936
  21527. }
  21528. },
  21529. taur: {
  21530. height: math.unit(11, "feet"),
  21531. weight: math.unit(3300, "lb"),
  21532. name: "Taur",
  21533. image: {
  21534. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21535. extra: 1271/1197,
  21536. bottom: 47/1318
  21537. }
  21538. },
  21539. barghest: {
  21540. height: math.unit(11, "feet"),
  21541. weight: math.unit(1300, "lb"),
  21542. name: "Barghest",
  21543. image: {
  21544. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21545. extra: 1291/1204,
  21546. bottom: 37/1328
  21547. }
  21548. },
  21549. dick: {
  21550. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21551. name: "Dick",
  21552. image: {
  21553. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21554. }
  21555. },
  21556. dickWere: {
  21557. height: math.unit((20) / 3.8, "feet"),
  21558. name: "Dick (Were)",
  21559. image: {
  21560. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "Normal",
  21567. height: math.unit(6 + 1 / 12, "feet"),
  21568. default: true
  21569. },
  21570. ]
  21571. ))
  21572. characterMakers.push(() => makeCharacter(
  21573. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21574. {
  21575. front: {
  21576. height: math.unit(10, "feet"),
  21577. weight: math.unit(350, "lb"),
  21578. name: "Front",
  21579. image: {
  21580. source: "./media/characters/jet/front.svg",
  21581. extra: 2050 / 1980,
  21582. bottom: 0.013
  21583. }
  21584. },
  21585. back: {
  21586. height: math.unit(10, "feet"),
  21587. weight: math.unit(350, "lb"),
  21588. name: "Back",
  21589. image: {
  21590. source: "./media/characters/jet/back.svg",
  21591. extra: 2050 / 1980,
  21592. bottom: 0.013
  21593. }
  21594. },
  21595. },
  21596. [
  21597. {
  21598. name: "Micro",
  21599. height: math.unit(6, "inches")
  21600. },
  21601. {
  21602. name: "Normal",
  21603. height: math.unit(10, "feet"),
  21604. default: true
  21605. },
  21606. {
  21607. name: "Macro",
  21608. height: math.unit(100, "feet")
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21614. {
  21615. front: {
  21616. height: math.unit(15, "feet"),
  21617. weight: math.unit(2800, "lb"),
  21618. name: "Front",
  21619. image: {
  21620. source: "./media/characters/tanarath/front.svg",
  21621. extra: 2392 / 2220,
  21622. bottom: 0.03
  21623. }
  21624. },
  21625. back: {
  21626. height: math.unit(15, "feet"),
  21627. weight: math.unit(2800, "lb"),
  21628. name: "Back",
  21629. image: {
  21630. source: "./media/characters/tanarath/back.svg",
  21631. extra: 2392 / 2220,
  21632. bottom: 0.03
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(15, "feet"),
  21640. default: true
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21646. {
  21647. front: {
  21648. height: math.unit(7 + 1 / 12, "feet"),
  21649. weight: math.unit(175, "lb"),
  21650. name: "Front",
  21651. image: {
  21652. source: "./media/characters/patty-cattybatty/front.svg",
  21653. extra: 908 / 874,
  21654. bottom: 0.025
  21655. }
  21656. },
  21657. },
  21658. [
  21659. {
  21660. name: "Micro",
  21661. height: math.unit(1, "inch")
  21662. },
  21663. {
  21664. name: "Normal",
  21665. height: math.unit(7 + 1 / 12, "feet")
  21666. },
  21667. {
  21668. name: "Mini Macro",
  21669. height: math.unit(155, "feet")
  21670. },
  21671. {
  21672. name: "Macro",
  21673. height: math.unit(1077, "feet")
  21674. },
  21675. {
  21676. name: "Mega Macro",
  21677. height: math.unit(47650, "feet"),
  21678. default: true
  21679. },
  21680. {
  21681. name: "Giga Macro",
  21682. height: math.unit(440, "miles")
  21683. },
  21684. {
  21685. name: "Tera Macro",
  21686. height: math.unit(8700, "miles")
  21687. },
  21688. {
  21689. name: "Planetary Macro",
  21690. height: math.unit(32700, "miles")
  21691. },
  21692. {
  21693. name: "Solar Macro",
  21694. height: math.unit(550000, "miles")
  21695. },
  21696. {
  21697. name: "Celestial Macro",
  21698. height: math.unit(2.5, "AU")
  21699. },
  21700. ]
  21701. ))
  21702. characterMakers.push(() => makeCharacter(
  21703. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21704. {
  21705. front: {
  21706. height: math.unit(4 + 5 / 12, "feet"),
  21707. weight: math.unit(90, "lb"),
  21708. name: "Front",
  21709. image: {
  21710. source: "./media/characters/cappu/front.svg",
  21711. extra: 1247 / 1152,
  21712. bottom: 0.012
  21713. }
  21714. },
  21715. },
  21716. [
  21717. {
  21718. name: "Normal",
  21719. height: math.unit(4 + 5 / 12, "feet"),
  21720. default: true
  21721. },
  21722. ]
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21726. {
  21727. frontDressed: {
  21728. height: math.unit(70, "cm"),
  21729. weight: math.unit(6, "kg"),
  21730. name: "Front (Dressed)",
  21731. image: {
  21732. source: "./media/characters/sebi/front-dressed.svg",
  21733. extra: 713.5 / 686.5,
  21734. bottom: 0.003
  21735. }
  21736. },
  21737. front: {
  21738. height: math.unit(70, "cm"),
  21739. weight: math.unit(5, "kg"),
  21740. name: "Front",
  21741. image: {
  21742. source: "./media/characters/sebi/front.svg",
  21743. extra: 713.5 / 686.5,
  21744. bottom: 0.003
  21745. }
  21746. }
  21747. },
  21748. [
  21749. {
  21750. name: "Normal",
  21751. height: math.unit(70, "cm"),
  21752. default: true
  21753. },
  21754. {
  21755. name: "Macro",
  21756. height: math.unit(8, "meters")
  21757. },
  21758. ]
  21759. ))
  21760. characterMakers.push(() => makeCharacter(
  21761. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21762. {
  21763. front: {
  21764. height: math.unit(6, "feet"),
  21765. weight: math.unit(150, "lb"),
  21766. name: "Front",
  21767. image: {
  21768. source: "./media/characters/typhek/front.svg",
  21769. extra: 1948 / 1929,
  21770. bottom: 0.025
  21771. }
  21772. },
  21773. side: {
  21774. height: math.unit(6, "feet"),
  21775. weight: math.unit(150, "lb"),
  21776. name: "Side",
  21777. image: {
  21778. source: "./media/characters/typhek/side.svg",
  21779. extra: 2034 / 2010,
  21780. bottom: 0.003
  21781. }
  21782. },
  21783. back: {
  21784. height: math.unit(6, "feet"),
  21785. weight: math.unit(150, "lb"),
  21786. name: "Back",
  21787. image: {
  21788. source: "./media/characters/typhek/back.svg",
  21789. extra: 2005 / 1978,
  21790. bottom: 0.004
  21791. }
  21792. },
  21793. palm: {
  21794. height: math.unit(1.2, "feet"),
  21795. name: "Palm",
  21796. image: {
  21797. source: "./media/characters/typhek/palm.svg"
  21798. }
  21799. },
  21800. fist: {
  21801. height: math.unit(1.1, "feet"),
  21802. name: "Fist",
  21803. image: {
  21804. source: "./media/characters/typhek/fist.svg"
  21805. }
  21806. },
  21807. foot: {
  21808. height: math.unit(1.57, "feet"),
  21809. name: "Foot",
  21810. image: {
  21811. source: "./media/characters/typhek/foot.svg"
  21812. }
  21813. },
  21814. sole: {
  21815. height: math.unit(2.05, "feet"),
  21816. name: "Sole",
  21817. image: {
  21818. source: "./media/characters/typhek/sole.svg"
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Macro",
  21825. height: math.unit(40, "stories"),
  21826. default: true
  21827. },
  21828. {
  21829. name: "Megamacro",
  21830. height: math.unit(1, "mile")
  21831. },
  21832. {
  21833. name: "Gigamacro",
  21834. height: math.unit(4000, "solarradii")
  21835. },
  21836. {
  21837. name: "Universal",
  21838. height: math.unit(1.1, "universes")
  21839. }
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21844. {
  21845. side: {
  21846. height: math.unit(5 + 7 / 12, "feet"),
  21847. weight: math.unit(150, "lb"),
  21848. name: "Side",
  21849. image: {
  21850. source: "./media/characters/kassy/side.svg",
  21851. extra: 1280 / 1225,
  21852. bottom: 0.002
  21853. }
  21854. },
  21855. front: {
  21856. height: math.unit(5 + 7 / 12, "feet"),
  21857. weight: math.unit(150, "lb"),
  21858. name: "Front",
  21859. image: {
  21860. source: "./media/characters/kassy/front.svg",
  21861. extra: 1280 / 1225,
  21862. bottom: 0.025
  21863. }
  21864. },
  21865. back: {
  21866. height: math.unit(5 + 7 / 12, "feet"),
  21867. weight: math.unit(150, "lb"),
  21868. name: "Back",
  21869. image: {
  21870. source: "./media/characters/kassy/back.svg",
  21871. extra: 1280 / 1225,
  21872. bottom: 0.002
  21873. }
  21874. },
  21875. foot: {
  21876. height: math.unit(1.266, "feet"),
  21877. name: "Foot",
  21878. image: {
  21879. source: "./media/characters/kassy/foot.svg"
  21880. }
  21881. },
  21882. },
  21883. [
  21884. {
  21885. name: "Normal",
  21886. height: math.unit(5 + 7 / 12, "feet")
  21887. },
  21888. {
  21889. name: "Macro",
  21890. height: math.unit(137, "feet"),
  21891. default: true
  21892. },
  21893. {
  21894. name: "Megamacro",
  21895. height: math.unit(1, "mile")
  21896. },
  21897. ]
  21898. ))
  21899. characterMakers.push(() => makeCharacter(
  21900. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21901. {
  21902. front: {
  21903. height: math.unit(6 + 1 / 12, "feet"),
  21904. weight: math.unit(200, "lb"),
  21905. name: "Front",
  21906. image: {
  21907. source: "./media/characters/neil/front.svg",
  21908. extra: 1326 / 1250,
  21909. bottom: 0.023
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(6 + 1 / 12, "feet"),
  21917. default: true
  21918. },
  21919. {
  21920. name: "Macro",
  21921. height: math.unit(200, "feet")
  21922. },
  21923. ]
  21924. ))
  21925. characterMakers.push(() => makeCharacter(
  21926. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21927. {
  21928. front: {
  21929. height: math.unit(5 + 9 / 12, "feet"),
  21930. weight: math.unit(190, "lb"),
  21931. name: "Front",
  21932. image: {
  21933. source: "./media/characters/atticus/front.svg",
  21934. extra: 2934 / 2785,
  21935. bottom: 0.025
  21936. }
  21937. },
  21938. },
  21939. [
  21940. {
  21941. name: "Normal",
  21942. height: math.unit(5 + 9 / 12, "feet"),
  21943. default: true
  21944. },
  21945. {
  21946. name: "Macro",
  21947. height: math.unit(180, "feet")
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21953. {
  21954. side: {
  21955. height: math.unit(9, "feet"),
  21956. weight: math.unit(650, "lb"),
  21957. name: "Side",
  21958. image: {
  21959. source: "./media/characters/milo/side.svg",
  21960. extra: 2644 / 2310,
  21961. bottom: 0.032
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(9, "feet"),
  21969. default: true
  21970. },
  21971. {
  21972. name: "Macro",
  21973. height: math.unit(300, "feet")
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21979. {
  21980. side: {
  21981. height: math.unit(8, "meters"),
  21982. weight: math.unit(90000, "kg"),
  21983. name: "Side",
  21984. image: {
  21985. source: "./media/characters/ijzer/side.svg",
  21986. extra: 2756 / 1600,
  21987. bottom: 0.01
  21988. }
  21989. },
  21990. },
  21991. [
  21992. {
  21993. name: "Small",
  21994. height: math.unit(3, "meters")
  21995. },
  21996. {
  21997. name: "Normal",
  21998. height: math.unit(8, "meters"),
  21999. default: true
  22000. },
  22001. {
  22002. name: "Normal+",
  22003. height: math.unit(10, "meters")
  22004. },
  22005. {
  22006. name: "Bigger",
  22007. height: math.unit(24, "meters")
  22008. },
  22009. {
  22010. name: "Huge",
  22011. height: math.unit(80, "meters")
  22012. },
  22013. ]
  22014. ))
  22015. characterMakers.push(() => makeCharacter(
  22016. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22017. {
  22018. front: {
  22019. height: math.unit(6 + 2 / 12, "feet"),
  22020. weight: math.unit(153, "lb"),
  22021. name: "Front",
  22022. image: {
  22023. source: "./media/characters/luca-cervicum/front.svg",
  22024. extra: 370 / 327,
  22025. bottom: 0.015
  22026. }
  22027. },
  22028. back: {
  22029. height: math.unit(6 + 2 / 12, "feet"),
  22030. weight: math.unit(153, "lb"),
  22031. name: "Back",
  22032. image: {
  22033. source: "./media/characters/luca-cervicum/back.svg",
  22034. extra: 367 / 333,
  22035. bottom: 0.005
  22036. }
  22037. },
  22038. frontGear: {
  22039. height: math.unit(6 + 2 / 12, "feet"),
  22040. weight: math.unit(173, "lb"),
  22041. name: "Front (Gear)",
  22042. image: {
  22043. source: "./media/characters/luca-cervicum/front-gear.svg",
  22044. extra: 377 / 333,
  22045. bottom: 0.006
  22046. }
  22047. },
  22048. },
  22049. [
  22050. {
  22051. name: "Normal",
  22052. height: math.unit(6 + 2 / 12, "feet"),
  22053. default: true
  22054. },
  22055. ]
  22056. ))
  22057. characterMakers.push(() => makeCharacter(
  22058. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22059. {
  22060. front: {
  22061. height: math.unit(6 + 1 / 12, "feet"),
  22062. weight: math.unit(304, "lb"),
  22063. name: "Front",
  22064. image: {
  22065. source: "./media/characters/oliver/front.svg",
  22066. extra: 157 / 143,
  22067. bottom: 0.08
  22068. }
  22069. },
  22070. },
  22071. [
  22072. {
  22073. name: "Normal",
  22074. height: math.unit(6 + 1 / 12, "feet"),
  22075. default: true
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22081. {
  22082. front: {
  22083. height: math.unit(5 + 7 / 12, "feet"),
  22084. weight: math.unit(140, "lb"),
  22085. name: "Front",
  22086. image: {
  22087. source: "./media/characters/shane/front.svg",
  22088. extra: 304 / 289,
  22089. bottom: 0.005
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(5 + 7 / 12, "feet"),
  22097. default: true
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22103. {
  22104. front: {
  22105. height: math.unit(5 + 9 / 12, "feet"),
  22106. weight: math.unit(178, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/shin/front.svg",
  22110. extra: 159 / 151,
  22111. bottom: 0.015
  22112. }
  22113. },
  22114. },
  22115. [
  22116. {
  22117. name: "Normal",
  22118. height: math.unit(5 + 9 / 12, "feet"),
  22119. default: true
  22120. },
  22121. ]
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22125. {
  22126. front: {
  22127. height: math.unit(5 + 10 / 12, "feet"),
  22128. weight: math.unit(168, "lb"),
  22129. name: "Front",
  22130. image: {
  22131. source: "./media/characters/xerxes/front.svg",
  22132. extra: 282 / 260,
  22133. bottom: 0.045
  22134. }
  22135. },
  22136. },
  22137. [
  22138. {
  22139. name: "Normal",
  22140. height: math.unit(5 + 10 / 12, "feet"),
  22141. default: true
  22142. },
  22143. ]
  22144. ))
  22145. characterMakers.push(() => makeCharacter(
  22146. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22147. {
  22148. front: {
  22149. height: math.unit(6 + 7 / 12, "feet"),
  22150. weight: math.unit(208, "lb"),
  22151. name: "Front",
  22152. image: {
  22153. source: "./media/characters/chaska/front.svg",
  22154. extra: 332 / 319,
  22155. bottom: 0.015
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(6 + 7 / 12, "feet"),
  22163. default: true
  22164. },
  22165. ]
  22166. ))
  22167. characterMakers.push(() => makeCharacter(
  22168. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22169. {
  22170. front: {
  22171. height: math.unit(5 + 8 / 12, "feet"),
  22172. weight: math.unit(208, "lb"),
  22173. name: "Front",
  22174. image: {
  22175. source: "./media/characters/enuk/front.svg",
  22176. extra: 437 / 406,
  22177. bottom: 0.02
  22178. }
  22179. },
  22180. },
  22181. [
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(5 + 8 / 12, "feet"),
  22185. default: true
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22191. {
  22192. front: {
  22193. height: math.unit(5 + 10 / 12, "feet"),
  22194. weight: math.unit(252, "lb"),
  22195. name: "Front",
  22196. image: {
  22197. source: "./media/characters/bruun/front.svg",
  22198. extra: 197 / 187,
  22199. bottom: 0.012
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Normal",
  22206. height: math.unit(5 + 10 / 12, "feet"),
  22207. default: true
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22213. {
  22214. front: {
  22215. height: math.unit(6 + 10 / 12, "feet"),
  22216. weight: math.unit(255, "lb"),
  22217. name: "Front",
  22218. image: {
  22219. source: "./media/characters/alexeev/front.svg",
  22220. extra: 213 / 200,
  22221. bottom: 0.05
  22222. }
  22223. },
  22224. },
  22225. [
  22226. {
  22227. name: "Normal",
  22228. height: math.unit(6 + 10 / 12, "feet"),
  22229. default: true
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22235. {
  22236. front: {
  22237. height: math.unit(2 + 8 / 12, "feet"),
  22238. weight: math.unit(22, "lb"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/evelyn/front.svg",
  22242. extra: 208 / 180
  22243. }
  22244. },
  22245. },
  22246. [
  22247. {
  22248. name: "Normal",
  22249. height: math.unit(2 + 8 / 12, "feet"),
  22250. default: true
  22251. },
  22252. ]
  22253. ))
  22254. characterMakers.push(() => makeCharacter(
  22255. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22256. {
  22257. front: {
  22258. height: math.unit(5 + 9 / 12, "feet"),
  22259. weight: math.unit(139, "lb"),
  22260. name: "Front",
  22261. image: {
  22262. source: "./media/characters/inca/front.svg",
  22263. extra: 294 / 291,
  22264. bottom: 0.03
  22265. }
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Normal",
  22271. height: math.unit(5 + 9 / 12, "feet"),
  22272. default: true
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22278. {
  22279. front: {
  22280. height: math.unit(6 + 3 / 12, "feet"),
  22281. weight: math.unit(185, "lb"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/mera/front.svg",
  22285. extra: 291 / 277,
  22286. bottom: 0.03
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Normal",
  22293. height: math.unit(6 + 3 / 12, "feet"),
  22294. default: true
  22295. },
  22296. ]
  22297. ))
  22298. characterMakers.push(() => makeCharacter(
  22299. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22300. {
  22301. front: {
  22302. height: math.unit(6 + 7 / 12, "feet"),
  22303. weight: math.unit(160, "lb"),
  22304. name: "Front",
  22305. image: {
  22306. source: "./media/characters/ceres/front.svg",
  22307. extra: 1023 / 950,
  22308. bottom: 0.027
  22309. }
  22310. },
  22311. back: {
  22312. height: math.unit(6 + 7 / 12, "feet"),
  22313. weight: math.unit(160, "lb"),
  22314. name: "Back",
  22315. image: {
  22316. source: "./media/characters/ceres/back.svg",
  22317. extra: 1023 / 950
  22318. }
  22319. },
  22320. },
  22321. [
  22322. {
  22323. name: "Normal",
  22324. height: math.unit(6 + 7 / 12, "feet"),
  22325. default: true
  22326. },
  22327. ]
  22328. ))
  22329. characterMakers.push(() => makeCharacter(
  22330. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22331. {
  22332. front: {
  22333. height: math.unit(5 + 10 / 12, "feet"),
  22334. weight: math.unit(150, "lb"),
  22335. name: "Front",
  22336. image: {
  22337. source: "./media/characters/kris/front.svg",
  22338. extra: 885 / 803,
  22339. bottom: 0.03
  22340. }
  22341. },
  22342. },
  22343. [
  22344. {
  22345. name: "Normal",
  22346. height: math.unit(5 + 10 / 12, "feet"),
  22347. default: true
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22353. {
  22354. dragon_front: {
  22355. height: math.unit(5, "feet"),
  22356. name: "Front",
  22357. image: {
  22358. source: "./media/characters/taluthus/dragon-front.svg",
  22359. extra: 1203/1098,
  22360. bottom: 46/1249
  22361. },
  22362. form: "dragon",
  22363. default: true
  22364. },
  22365. dragon_maw: {
  22366. height: math.unit(2.35, "feet"),
  22367. name: "Maw",
  22368. image: {
  22369. source: "./media/characters/taluthus/dragon-maw.svg"
  22370. },
  22371. form: "dragon",
  22372. },
  22373. kitsune_front: {
  22374. height: math.unit(7, "feet"),
  22375. name: "Front",
  22376. image: {
  22377. source: "./media/characters/taluthus/kitsune-front.svg",
  22378. extra: 900/841,
  22379. bottom: 65/965
  22380. },
  22381. form: "kitsune",
  22382. default: true
  22383. },
  22384. },
  22385. [
  22386. {
  22387. name: "Normal",
  22388. height: math.unit(5, "feet"),
  22389. form: "dragon",
  22390. default: true,
  22391. },
  22392. {
  22393. name: "Normal",
  22394. height: math.unit(7, "feet"),
  22395. form: "kitsune",
  22396. default: true
  22397. },
  22398. {
  22399. name: "Macro",
  22400. height: math.unit(300, "feet"),
  22401. allForms: true
  22402. },
  22403. ],
  22404. {
  22405. "dragon": {
  22406. name: "Dragon",
  22407. default: true
  22408. },
  22409. "kitsune": {
  22410. name: "Kitsune",
  22411. },
  22412. }
  22413. ))
  22414. characterMakers.push(() => makeCharacter(
  22415. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22416. {
  22417. front: {
  22418. height: math.unit(5 + 9 / 12, "feet"),
  22419. weight: math.unit(145, "lb"),
  22420. name: "Front",
  22421. image: {
  22422. source: "./media/characters/dawn/front.svg",
  22423. extra: 2094 / 2016,
  22424. bottom: 0.025
  22425. }
  22426. },
  22427. back: {
  22428. height: math.unit(5 + 9 / 12, "feet"),
  22429. weight: math.unit(160, "lb"),
  22430. name: "Back",
  22431. image: {
  22432. source: "./media/characters/dawn/back.svg",
  22433. extra: 2112 / 2080,
  22434. bottom: 0.005
  22435. }
  22436. },
  22437. },
  22438. [
  22439. {
  22440. name: "Normal",
  22441. height: math.unit(6 + 7 / 12, "feet"),
  22442. default: true
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22448. {
  22449. anthro: {
  22450. height: math.unit(8 + 3 / 12, "feet"),
  22451. weight: math.unit(450, "lb"),
  22452. name: "Anthro",
  22453. image: {
  22454. source: "./media/characters/arador/anthro.svg",
  22455. extra: 1835 / 1718,
  22456. bottom: 0.025
  22457. }
  22458. },
  22459. feral: {
  22460. height: math.unit(4, "feet"),
  22461. weight: math.unit(200, "lb"),
  22462. name: "Feral",
  22463. image: {
  22464. source: "./media/characters/arador/feral.svg",
  22465. extra: 1683 / 1514,
  22466. bottom: 0.07
  22467. }
  22468. },
  22469. },
  22470. [
  22471. {
  22472. name: "Normal",
  22473. height: math.unit(8 + 3 / 12, "feet")
  22474. },
  22475. {
  22476. name: "Macro",
  22477. height: math.unit(82.5, "feet"),
  22478. default: true
  22479. },
  22480. ]
  22481. ))
  22482. characterMakers.push(() => makeCharacter(
  22483. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22484. {
  22485. front: {
  22486. height: math.unit(5 + 10 / 12, "feet"),
  22487. weight: math.unit(125, "lb"),
  22488. name: "Front",
  22489. image: {
  22490. source: "./media/characters/dharsi/front.svg",
  22491. extra: 716 / 630,
  22492. bottom: 0.035
  22493. }
  22494. },
  22495. },
  22496. [
  22497. {
  22498. name: "Nano",
  22499. height: math.unit(100, "nm")
  22500. },
  22501. {
  22502. name: "Micro",
  22503. height: math.unit(2, "inches")
  22504. },
  22505. {
  22506. name: "Normal",
  22507. height: math.unit(5 + 10 / 12, "feet"),
  22508. default: true
  22509. },
  22510. {
  22511. name: "Macro",
  22512. height: math.unit(1000, "feet")
  22513. },
  22514. {
  22515. name: "Megamacro",
  22516. height: math.unit(10, "miles")
  22517. },
  22518. {
  22519. name: "Gigamacro",
  22520. height: math.unit(3000, "miles")
  22521. },
  22522. {
  22523. name: "Teramacro",
  22524. height: math.unit(500000, "miles")
  22525. },
  22526. {
  22527. name: "Teramacro+",
  22528. height: math.unit(30, "galaxies")
  22529. },
  22530. ]
  22531. ))
  22532. characterMakers.push(() => makeCharacter(
  22533. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22534. {
  22535. front: {
  22536. height: math.unit(6, "feet"),
  22537. weight: math.unit(150, "lb"),
  22538. name: "Front",
  22539. image: {
  22540. source: "./media/characters/deathy/front.svg",
  22541. extra: 1552 / 1463,
  22542. bottom: 0.025
  22543. }
  22544. },
  22545. side: {
  22546. height: math.unit(6, "feet"),
  22547. weight: math.unit(150, "lb"),
  22548. name: "Side",
  22549. image: {
  22550. source: "./media/characters/deathy/side.svg",
  22551. extra: 1604 / 1455,
  22552. bottom: 0.025
  22553. }
  22554. },
  22555. back: {
  22556. height: math.unit(6, "feet"),
  22557. weight: math.unit(150, "lb"),
  22558. name: "Back",
  22559. image: {
  22560. source: "./media/characters/deathy/back.svg",
  22561. extra: 1580 / 1463,
  22562. bottom: 0.005
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Micro",
  22569. height: math.unit(5, "millimeters")
  22570. },
  22571. {
  22572. name: "Normal",
  22573. height: math.unit(6 + 5 / 12, "feet"),
  22574. default: true
  22575. },
  22576. ]
  22577. ))
  22578. characterMakers.push(() => makeCharacter(
  22579. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22580. {
  22581. front: {
  22582. height: math.unit(16, "feet"),
  22583. weight: math.unit(4000, "lb"),
  22584. name: "Front",
  22585. image: {
  22586. source: "./media/characters/juniper/front.svg",
  22587. bottom: 0.04
  22588. }
  22589. },
  22590. },
  22591. [
  22592. {
  22593. name: "Normal",
  22594. height: math.unit(16, "feet"),
  22595. default: true
  22596. },
  22597. ]
  22598. ))
  22599. characterMakers.push(() => makeCharacter(
  22600. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22601. {
  22602. front: {
  22603. height: math.unit(6, "feet"),
  22604. weight: math.unit(150, "lb"),
  22605. name: "Front",
  22606. image: {
  22607. source: "./media/characters/hipster/front.svg",
  22608. extra: 1312 / 1209,
  22609. bottom: 0.025
  22610. }
  22611. },
  22612. back: {
  22613. height: math.unit(6, "feet"),
  22614. weight: math.unit(150, "lb"),
  22615. name: "Back",
  22616. image: {
  22617. source: "./media/characters/hipster/back.svg",
  22618. extra: 1281 / 1196,
  22619. bottom: 0.01
  22620. }
  22621. },
  22622. },
  22623. [
  22624. {
  22625. name: "Micro",
  22626. height: math.unit(1, "mm")
  22627. },
  22628. {
  22629. name: "Normal",
  22630. height: math.unit(4, "inches"),
  22631. default: true
  22632. },
  22633. {
  22634. name: "Macro",
  22635. height: math.unit(500, "feet")
  22636. },
  22637. {
  22638. name: "Megamacro",
  22639. height: math.unit(1000, "miles")
  22640. },
  22641. ]
  22642. ))
  22643. characterMakers.push(() => makeCharacter(
  22644. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22645. {
  22646. front: {
  22647. height: math.unit(6, "feet"),
  22648. weight: math.unit(150, "lb"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/tendirmuldr/front.svg",
  22652. extra: 1878 / 1772,
  22653. bottom: 0.015
  22654. }
  22655. },
  22656. },
  22657. [
  22658. {
  22659. name: "Megamacro",
  22660. height: math.unit(1500, "miles"),
  22661. default: true
  22662. },
  22663. ]
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22667. {
  22668. front: {
  22669. height: math.unit(14, "feet"),
  22670. weight: math.unit(12000, "lb"),
  22671. name: "Front",
  22672. image: {
  22673. source: "./media/characters/mort/front.svg",
  22674. extra: 365 / 318,
  22675. bottom: 0.01
  22676. }
  22677. },
  22678. side: {
  22679. height: math.unit(14, "feet"),
  22680. weight: math.unit(12000, "lb"),
  22681. name: "Side",
  22682. image: {
  22683. source: "./media/characters/mort/side.svg",
  22684. extra: 365 / 318,
  22685. bottom: 0.052
  22686. },
  22687. default: true
  22688. },
  22689. back: {
  22690. height: math.unit(14, "feet"),
  22691. weight: math.unit(12000, "lb"),
  22692. name: "Back",
  22693. image: {
  22694. source: "./media/characters/mort/back.svg",
  22695. extra: 371 / 332,
  22696. bottom: 0.18
  22697. }
  22698. },
  22699. },
  22700. [
  22701. {
  22702. name: "Normal",
  22703. height: math.unit(14, "feet"),
  22704. default: true
  22705. },
  22706. ]
  22707. ))
  22708. characterMakers.push(() => makeCharacter(
  22709. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22710. {
  22711. front: {
  22712. height: math.unit(8, "feet"),
  22713. weight: math.unit(1, "ton"),
  22714. name: "Front",
  22715. image: {
  22716. source: "./media/characters/lycoa/front.svg",
  22717. extra: 1836/1728,
  22718. bottom: 81/1917
  22719. }
  22720. },
  22721. back: {
  22722. height: math.unit(8, "feet"),
  22723. weight: math.unit(1, "ton"),
  22724. name: "Back",
  22725. image: {
  22726. source: "./media/characters/lycoa/back.svg",
  22727. extra: 1785/1720,
  22728. bottom: 91/1876
  22729. }
  22730. },
  22731. head: {
  22732. height: math.unit(1.6243, "feet"),
  22733. name: "Head",
  22734. image: {
  22735. source: "./media/characters/lycoa/head.svg",
  22736. extra: 1011/782,
  22737. bottom: 0/1011
  22738. }
  22739. },
  22740. tailmaw: {
  22741. height: math.unit(1.9, "feet"),
  22742. name: "Tailmaw",
  22743. image: {
  22744. source: "./media/characters/lycoa/tailmaw.svg"
  22745. }
  22746. },
  22747. tentacles: {
  22748. height: math.unit(2.1, "feet"),
  22749. name: "Tentacles",
  22750. image: {
  22751. source: "./media/characters/lycoa/tentacles.svg"
  22752. }
  22753. },
  22754. dick: {
  22755. height: math.unit(1.73, "feet"),
  22756. name: "Dick",
  22757. image: {
  22758. source: "./media/characters/lycoa/dick.svg"
  22759. }
  22760. },
  22761. },
  22762. [
  22763. {
  22764. name: "Normal",
  22765. height: math.unit(8, "feet"),
  22766. default: true
  22767. },
  22768. {
  22769. name: "Macro",
  22770. height: math.unit(30, "feet")
  22771. },
  22772. ]
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22776. {
  22777. front: {
  22778. height: math.unit(4 + 2 / 12, "feet"),
  22779. weight: math.unit(70, "lb"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/naldara/front.svg",
  22783. extra: 1664/1387,
  22784. bottom: 81/1745
  22785. },
  22786. form: "anthro",
  22787. default: true
  22788. },
  22789. naga: {
  22790. height: math.unit(20, "feet"),
  22791. weight: math.unit(15000, "kg"),
  22792. name: "Front",
  22793. image: {
  22794. source: "./media/characters/naldara/naga.svg",
  22795. extra: 1590/1396,
  22796. bottom: 285/1875
  22797. },
  22798. form: "naga",
  22799. default: true
  22800. },
  22801. },
  22802. [
  22803. {
  22804. name: "Normal",
  22805. height: math.unit(4 + 2 / 12, "feet"),
  22806. form: "anthro",
  22807. default: true
  22808. },
  22809. {
  22810. name: "Normal",
  22811. height: math.unit(20, "feet"),
  22812. form: "naga",
  22813. default: true
  22814. },
  22815. ],
  22816. {
  22817. "anthro": {
  22818. name: "Anthro",
  22819. default: true
  22820. },
  22821. "naga": {
  22822. name: "Naga"
  22823. }
  22824. }
  22825. ))
  22826. characterMakers.push(() => makeCharacter(
  22827. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22828. {
  22829. front: {
  22830. height: math.unit(13 + 7 / 12, "feet"),
  22831. weight: math.unit(1500, "lb"),
  22832. name: "Front",
  22833. image: {
  22834. source: "./media/characters/briar/front.svg",
  22835. extra: 1223/1157,
  22836. bottom: 123/1346
  22837. }
  22838. },
  22839. },
  22840. [
  22841. {
  22842. name: "Normal",
  22843. height: math.unit(13 + 7 / 12, "feet"),
  22844. default: true
  22845. },
  22846. ]
  22847. ))
  22848. characterMakers.push(() => makeCharacter(
  22849. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22850. {
  22851. side: {
  22852. height: math.unit(16, "feet"),
  22853. weight: math.unit(500, "lb"),
  22854. name: "Side",
  22855. image: {
  22856. source: "./media/characters/vanguard/side.svg",
  22857. extra: 1022/914,
  22858. bottom: 30/1052
  22859. }
  22860. },
  22861. sideAlt: {
  22862. height: math.unit(10, "feet"),
  22863. weight: math.unit(500, "lb"),
  22864. name: "Side (Alt)",
  22865. image: {
  22866. source: "./media/characters/vanguard/side-alt.svg",
  22867. extra: 502 / 425,
  22868. bottom: 0.087
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Normal",
  22875. height: math.unit(17.71, "feet"),
  22876. default: true
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22882. {
  22883. front: {
  22884. height: math.unit(7.5, "feet"),
  22885. weight: math.unit(2, "lb"),
  22886. name: "Front",
  22887. image: {
  22888. source: "./media/characters/artemis/work-safe-front.svg",
  22889. extra: 1192 / 1075,
  22890. bottom: 0.07
  22891. },
  22892. form: "work-safe",
  22893. default: true
  22894. },
  22895. frontNsfw: {
  22896. height: math.unit(7.5, "feet"),
  22897. weight: math.unit(2, "lb"),
  22898. name: "Front",
  22899. image: {
  22900. source: "./media/characters/artemis/calibrating-front.svg",
  22901. extra: 1192 / 1075,
  22902. bottom: 0.07
  22903. },
  22904. form: "calibrating",
  22905. default: true
  22906. },
  22907. frontNsfwer: {
  22908. height: math.unit(7.5, "feet"),
  22909. weight: math.unit(2, "lb"),
  22910. name: "Front",
  22911. image: {
  22912. source: "./media/characters/artemis/oversize-load-front.svg",
  22913. extra: 1192 / 1075,
  22914. bottom: 0.07
  22915. },
  22916. form: "oversize-load",
  22917. default: true
  22918. },
  22919. side: {
  22920. height: math.unit(7.5, "feet"),
  22921. weight: math.unit(2, "lb"),
  22922. name: "Side",
  22923. image: {
  22924. source: "./media/characters/artemis/work-safe-side.svg",
  22925. extra: 1192 / 1075,
  22926. bottom: 0.07
  22927. },
  22928. form: "work-safe"
  22929. },
  22930. sideNsfw: {
  22931. height: math.unit(7.5, "feet"),
  22932. weight: math.unit(2, "lb"),
  22933. name: "Side",
  22934. image: {
  22935. source: "./media/characters/artemis/calibrating-side.svg",
  22936. extra: 1192 / 1075,
  22937. bottom: 0.07
  22938. },
  22939. form: "calibrating"
  22940. },
  22941. sideNsfwer: {
  22942. height: math.unit(7.5, "feet"),
  22943. weight: math.unit(2, "lb"),
  22944. name: "Side",
  22945. image: {
  22946. source: "./media/characters/artemis/oversize-load-side.svg",
  22947. extra: 1192 / 1075,
  22948. bottom: 0.07
  22949. },
  22950. form: "oversize-load"
  22951. },
  22952. maw: {
  22953. height: math.unit(1.1, "feet"),
  22954. name: "Maw",
  22955. image: {
  22956. source: "./media/characters/artemis/maw.svg"
  22957. },
  22958. form: "work-safe"
  22959. },
  22960. stomach: {
  22961. height: math.unit(0.95, "feet"),
  22962. name: "Stomach",
  22963. image: {
  22964. source: "./media/characters/artemis/stomach.svg"
  22965. },
  22966. form: "work-safe"
  22967. },
  22968. dickCanine: {
  22969. height: math.unit(1, "feet"),
  22970. name: "Dick (Canine)",
  22971. image: {
  22972. source: "./media/characters/artemis/dick-canine.svg"
  22973. },
  22974. form: "calibrating"
  22975. },
  22976. dickEquine: {
  22977. height: math.unit(0.85, "feet"),
  22978. name: "Dick (Equine)",
  22979. image: {
  22980. source: "./media/characters/artemis/dick-equine.svg"
  22981. },
  22982. form: "calibrating"
  22983. },
  22984. dickExotic: {
  22985. height: math.unit(0.85, "feet"),
  22986. name: "Dick (Exotic)",
  22987. image: {
  22988. source: "./media/characters/artemis/dick-exotic.svg"
  22989. },
  22990. form: "calibrating"
  22991. },
  22992. dickCanineBigger: {
  22993. height: math.unit(1 * 1.33, "feet"),
  22994. name: "Dick (Canine)",
  22995. image: {
  22996. source: "./media/characters/artemis/dick-canine.svg"
  22997. },
  22998. form: "oversize-load"
  22999. },
  23000. dickEquineBigger: {
  23001. height: math.unit(0.85 * 1.33, "feet"),
  23002. name: "Dick (Equine)",
  23003. image: {
  23004. source: "./media/characters/artemis/dick-equine.svg"
  23005. },
  23006. form: "oversize-load"
  23007. },
  23008. dickExoticBigger: {
  23009. height: math.unit(0.85 * 1.33, "feet"),
  23010. name: "Dick (Exotic)",
  23011. image: {
  23012. source: "./media/characters/artemis/dick-exotic.svg"
  23013. },
  23014. form: "oversize-load"
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Normal",
  23020. height: math.unit(7.5, "feet"),
  23021. form: "work-safe",
  23022. default: true
  23023. },
  23024. {
  23025. name: "Normal",
  23026. height: math.unit(7.5, "feet"),
  23027. form: "calibrating",
  23028. default: true
  23029. },
  23030. {
  23031. name: "Normal",
  23032. height: math.unit(7.5, "feet"),
  23033. form: "oversize-load",
  23034. default: true
  23035. },
  23036. {
  23037. name: "Enlarged",
  23038. height: math.unit(12, "feet"),
  23039. form: "work-safe",
  23040. },
  23041. {
  23042. name: "Enlarged",
  23043. height: math.unit(12, "feet"),
  23044. form: "calibrating",
  23045. },
  23046. {
  23047. name: "Enlarged",
  23048. height: math.unit(12, "feet"),
  23049. form: "oversize-load",
  23050. },
  23051. ],
  23052. {
  23053. "work-safe": {
  23054. name: "Work-Safe",
  23055. default: true
  23056. },
  23057. "calibrating": {
  23058. name: "Calibrating"
  23059. },
  23060. "oversize-load": {
  23061. name: "Oversize Load"
  23062. }
  23063. }
  23064. ))
  23065. characterMakers.push(() => makeCharacter(
  23066. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23067. {
  23068. front: {
  23069. height: math.unit(5 + 3 / 12, "feet"),
  23070. weight: math.unit(160, "lb"),
  23071. name: "Front",
  23072. image: {
  23073. source: "./media/characters/kira/front.svg",
  23074. extra: 906 / 786,
  23075. bottom: 0.01
  23076. }
  23077. },
  23078. back: {
  23079. height: math.unit(5 + 3 / 12, "feet"),
  23080. weight: math.unit(160, "lb"),
  23081. name: "Back",
  23082. image: {
  23083. source: "./media/characters/kira/back.svg",
  23084. extra: 882 / 757,
  23085. bottom: 0.005
  23086. }
  23087. },
  23088. frontDressed: {
  23089. height: math.unit(5 + 3 / 12, "feet"),
  23090. weight: math.unit(160, "lb"),
  23091. name: "Front (Dressed)",
  23092. image: {
  23093. source: "./media/characters/kira/front-dressed.svg",
  23094. extra: 906 / 786,
  23095. bottom: 0.01
  23096. }
  23097. },
  23098. beans: {
  23099. height: math.unit(0.92, "feet"),
  23100. name: "Beans",
  23101. image: {
  23102. source: "./media/characters/kira/beans.svg"
  23103. }
  23104. },
  23105. },
  23106. [
  23107. {
  23108. name: "Normal",
  23109. height: math.unit(5 + 3 / 12, "feet"),
  23110. default: true
  23111. },
  23112. ]
  23113. ))
  23114. characterMakers.push(() => makeCharacter(
  23115. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23116. {
  23117. front: {
  23118. height: math.unit(5 + 4 / 12, "feet"),
  23119. weight: math.unit(145, "lb"),
  23120. name: "Front",
  23121. image: {
  23122. source: "./media/characters/scramble/front.svg",
  23123. extra: 763 / 727,
  23124. bottom: 0.05
  23125. }
  23126. },
  23127. back: {
  23128. height: math.unit(5 + 4 / 12, "feet"),
  23129. weight: math.unit(145, "lb"),
  23130. name: "Back",
  23131. image: {
  23132. source: "./media/characters/scramble/back.svg",
  23133. extra: 826 / 737,
  23134. bottom: 0.002
  23135. }
  23136. },
  23137. },
  23138. [
  23139. {
  23140. name: "Normal",
  23141. height: math.unit(5 + 4 / 12, "feet"),
  23142. default: true
  23143. },
  23144. ]
  23145. ))
  23146. characterMakers.push(() => makeCharacter(
  23147. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23148. {
  23149. side: {
  23150. height: math.unit(6 + 2 / 12, "feet"),
  23151. weight: math.unit(190, "lb"),
  23152. name: "Side",
  23153. image: {
  23154. source: "./media/characters/biscuit/side.svg",
  23155. extra: 858 / 791,
  23156. bottom: 0.044
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Normal",
  23163. height: math.unit(6 + 2 / 12, "feet"),
  23164. default: true
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23170. {
  23171. front: {
  23172. height: math.unit(5 + 2 / 12, "feet"),
  23173. weight: math.unit(120, "lb"),
  23174. name: "Front",
  23175. image: {
  23176. source: "./media/characters/poffin/front.svg",
  23177. extra: 786 / 680,
  23178. bottom: 0.005
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Normal",
  23185. height: math.unit(5 + 2 / 12, "feet"),
  23186. default: true
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23192. {
  23193. front: {
  23194. height: math.unit(6 + 3 / 12, "feet"),
  23195. weight: math.unit(519, "lb"),
  23196. name: "Front",
  23197. image: {
  23198. source: "./media/characters/dhari/front.svg",
  23199. extra: 1048 / 946,
  23200. bottom: 0.015
  23201. }
  23202. },
  23203. back: {
  23204. height: math.unit(6 + 3 / 12, "feet"),
  23205. weight: math.unit(519, "lb"),
  23206. name: "Back",
  23207. image: {
  23208. source: "./media/characters/dhari/back.svg",
  23209. extra: 1048 / 931,
  23210. bottom: 0.005
  23211. }
  23212. },
  23213. frontDressed: {
  23214. height: math.unit(6 + 3 / 12, "feet"),
  23215. weight: math.unit(519, "lb"),
  23216. name: "Front (Dressed)",
  23217. image: {
  23218. source: "./media/characters/dhari/front-dressed.svg",
  23219. extra: 1713 / 1546,
  23220. bottom: 0.02
  23221. }
  23222. },
  23223. backDressed: {
  23224. height: math.unit(6 + 3 / 12, "feet"),
  23225. weight: math.unit(519, "lb"),
  23226. name: "Back (Dressed)",
  23227. image: {
  23228. source: "./media/characters/dhari/back-dressed.svg",
  23229. extra: 1699 / 1537,
  23230. bottom: 0.01
  23231. }
  23232. },
  23233. maw: {
  23234. height: math.unit(0.95, "feet"),
  23235. name: "Maw",
  23236. image: {
  23237. source: "./media/characters/dhari/maw.svg"
  23238. }
  23239. },
  23240. wereFront: {
  23241. height: math.unit(12 + 8 / 12, "feet"),
  23242. weight: math.unit(4000, "lb"),
  23243. name: "Front (Were)",
  23244. image: {
  23245. source: "./media/characters/dhari/were-front.svg",
  23246. extra: 1065 / 969,
  23247. bottom: 0.015
  23248. }
  23249. },
  23250. wereBack: {
  23251. height: math.unit(12 + 8 / 12, "feet"),
  23252. weight: math.unit(4000, "lb"),
  23253. name: "Back (Were)",
  23254. image: {
  23255. source: "./media/characters/dhari/were-back.svg",
  23256. extra: 1065 / 969,
  23257. bottom: 0.012
  23258. }
  23259. },
  23260. wereMaw: {
  23261. height: math.unit(0.625, "meters"),
  23262. name: "Maw (Were)",
  23263. image: {
  23264. source: "./media/characters/dhari/were-maw.svg"
  23265. }
  23266. },
  23267. },
  23268. [
  23269. {
  23270. name: "Normal",
  23271. height: math.unit(6 + 3 / 12, "feet"),
  23272. default: true
  23273. },
  23274. ]
  23275. ))
  23276. characterMakers.push(() => makeCharacter(
  23277. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23278. {
  23279. anthro: {
  23280. height: math.unit(5 + 7 / 12, "feet"),
  23281. weight: math.unit(175, "lb"),
  23282. name: "Anthro",
  23283. image: {
  23284. source: "./media/characters/rena-dyne/anthro.svg",
  23285. extra: 1849 / 1785,
  23286. bottom: 0.005
  23287. }
  23288. },
  23289. taur: {
  23290. height: math.unit(15 + 6 / 12, "feet"),
  23291. weight: math.unit(8000, "lb"),
  23292. name: "Taur",
  23293. image: {
  23294. source: "./media/characters/rena-dyne/taur.svg",
  23295. extra: 2315 / 2234,
  23296. bottom: 0.033
  23297. }
  23298. },
  23299. },
  23300. [
  23301. {
  23302. name: "Normal",
  23303. height: math.unit(5 + 7 / 12, "feet"),
  23304. default: true
  23305. },
  23306. ]
  23307. ))
  23308. characterMakers.push(() => makeCharacter(
  23309. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23310. {
  23311. front: {
  23312. height: math.unit(8, "feet"),
  23313. weight: math.unit(600, "lb"),
  23314. name: "Front",
  23315. image: {
  23316. source: "./media/characters/weremeep/front.svg",
  23317. extra: 970/849,
  23318. bottom: 7/977
  23319. }
  23320. },
  23321. },
  23322. [
  23323. {
  23324. name: "Normal",
  23325. height: math.unit(8, "feet"),
  23326. default: true
  23327. },
  23328. {
  23329. name: "Lorg",
  23330. height: math.unit(12, "feet")
  23331. },
  23332. {
  23333. name: "Oh Lawd She Comin'",
  23334. height: math.unit(20, "feet")
  23335. },
  23336. ]
  23337. ))
  23338. characterMakers.push(() => makeCharacter(
  23339. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23340. {
  23341. front: {
  23342. height: math.unit(4, "feet"),
  23343. weight: math.unit(90, "lb"),
  23344. name: "Front",
  23345. image: {
  23346. source: "./media/characters/reza/front.svg",
  23347. extra: 1183 / 1111,
  23348. bottom: 0.017
  23349. }
  23350. },
  23351. back: {
  23352. height: math.unit(4, "feet"),
  23353. weight: math.unit(90, "lb"),
  23354. name: "Back",
  23355. image: {
  23356. source: "./media/characters/reza/back.svg",
  23357. extra: 1183 / 1111,
  23358. bottom: 0.01
  23359. }
  23360. },
  23361. drake: {
  23362. height: math.unit(30, "feet"),
  23363. weight: math.unit(246960, "lb"),
  23364. name: "Drake",
  23365. image: {
  23366. source: "./media/characters/reza/drake.svg",
  23367. extra: 2350 / 2024,
  23368. bottom: 60.7 / 2403
  23369. }
  23370. },
  23371. },
  23372. [
  23373. {
  23374. name: "Normal",
  23375. height: math.unit(4, "feet"),
  23376. default: true
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23382. {
  23383. side: {
  23384. height: math.unit(15, "feet"),
  23385. weight: math.unit(14, "tons"),
  23386. name: "Side",
  23387. image: {
  23388. source: "./media/characters/athea/side.svg",
  23389. extra: 960 / 540,
  23390. bottom: 0.003
  23391. }
  23392. },
  23393. sitting: {
  23394. height: math.unit(6 * 2.85, "feet"),
  23395. weight: math.unit(14, "tons"),
  23396. name: "Sitting",
  23397. image: {
  23398. source: "./media/characters/athea/sitting.svg",
  23399. extra: 621 / 581,
  23400. bottom: 0.075
  23401. }
  23402. },
  23403. maw: {
  23404. height: math.unit(7.59498031496063, "feet"),
  23405. name: "Maw",
  23406. image: {
  23407. source: "./media/characters/athea/maw.svg"
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Lap Cat",
  23414. height: math.unit(2.5, "feet")
  23415. },
  23416. {
  23417. name: "Minimacro",
  23418. height: math.unit(15, "feet"),
  23419. default: true
  23420. },
  23421. {
  23422. name: "Macro",
  23423. height: math.unit(120, "feet")
  23424. },
  23425. {
  23426. name: "Macro+",
  23427. height: math.unit(640, "feet")
  23428. },
  23429. {
  23430. name: "Colossus",
  23431. height: math.unit(2.2, "miles")
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23437. {
  23438. front: {
  23439. height: math.unit(8 + 8 / 12, "feet"),
  23440. weight: math.unit(130, "kg"),
  23441. name: "Front",
  23442. image: {
  23443. source: "./media/characters/seroko/front.svg",
  23444. extra: 1385 / 1280,
  23445. bottom: 0.025
  23446. }
  23447. },
  23448. back: {
  23449. height: math.unit(8 + 8 / 12, "feet"),
  23450. weight: math.unit(130, "kg"),
  23451. name: "Back",
  23452. image: {
  23453. source: "./media/characters/seroko/back.svg",
  23454. extra: 1369 / 1238,
  23455. bottom: 0.018
  23456. }
  23457. },
  23458. frontDressed: {
  23459. height: math.unit(8 + 8 / 12, "feet"),
  23460. weight: math.unit(130, "kg"),
  23461. name: "Front (Dressed)",
  23462. image: {
  23463. source: "./media/characters/seroko/front-dressed.svg",
  23464. extra: 1366 / 1275,
  23465. bottom: 0.03
  23466. }
  23467. },
  23468. },
  23469. [
  23470. {
  23471. name: "Normal",
  23472. height: math.unit(8 + 8 / 12, "feet"),
  23473. default: true
  23474. },
  23475. ]
  23476. ))
  23477. characterMakers.push(() => makeCharacter(
  23478. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23479. {
  23480. front: {
  23481. height: math.unit(5.5, "feet"),
  23482. weight: math.unit(160, "lb"),
  23483. name: "Front",
  23484. image: {
  23485. source: "./media/characters/quatzi/front.svg",
  23486. extra: 2346 / 2242,
  23487. bottom: 0.015
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Normal",
  23494. height: math.unit(5.5, "feet"),
  23495. default: true
  23496. },
  23497. {
  23498. name: "Big",
  23499. height: math.unit(7.7, "feet")
  23500. },
  23501. ]
  23502. ))
  23503. characterMakers.push(() => makeCharacter(
  23504. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23505. {
  23506. front: {
  23507. height: math.unit(5 + 11 / 12, "feet"),
  23508. weight: math.unit(180, "lb"),
  23509. name: "Front",
  23510. image: {
  23511. source: "./media/characters/sen/front.svg",
  23512. extra: 1321 / 1254,
  23513. bottom: 0.015
  23514. }
  23515. },
  23516. side: {
  23517. height: math.unit(5 + 11 / 12, "feet"),
  23518. weight: math.unit(180, "lb"),
  23519. name: "Side",
  23520. image: {
  23521. source: "./media/characters/sen/side.svg",
  23522. extra: 1321 / 1254,
  23523. bottom: 0.007
  23524. }
  23525. },
  23526. back: {
  23527. height: math.unit(5 + 11 / 12, "feet"),
  23528. weight: math.unit(180, "lb"),
  23529. name: "Back",
  23530. image: {
  23531. source: "./media/characters/sen/back.svg",
  23532. extra: 1321 / 1254
  23533. }
  23534. },
  23535. },
  23536. [
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(5 + 11 / 12, "feet"),
  23540. default: true
  23541. },
  23542. ]
  23543. ))
  23544. characterMakers.push(() => makeCharacter(
  23545. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23546. {
  23547. front: {
  23548. height: math.unit(166.6, "cm"),
  23549. weight: math.unit(66.6, "kg"),
  23550. name: "Front",
  23551. image: {
  23552. source: "./media/characters/fruity/front.svg",
  23553. extra: 1510 / 1386,
  23554. bottom: 0.04
  23555. }
  23556. },
  23557. back: {
  23558. height: math.unit(166.6, "cm"),
  23559. weight: math.unit(66.6, "lb"),
  23560. name: "Back",
  23561. image: {
  23562. source: "./media/characters/fruity/back.svg",
  23563. extra: 1563 / 1435,
  23564. bottom: 0.005
  23565. }
  23566. },
  23567. },
  23568. [
  23569. {
  23570. name: "Normal",
  23571. height: math.unit(166.6, "cm"),
  23572. default: true
  23573. },
  23574. {
  23575. name: "Demonic",
  23576. height: math.unit(166.6, "feet")
  23577. },
  23578. ]
  23579. ))
  23580. characterMakers.push(() => makeCharacter(
  23581. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23582. {
  23583. side: {
  23584. height: math.unit(10, "feet"),
  23585. weight: math.unit(500, "lb"),
  23586. name: "Side",
  23587. image: {
  23588. source: "./media/characters/zost/side.svg",
  23589. extra: 2870/2533,
  23590. bottom: 252/3122
  23591. }
  23592. },
  23593. mawFront: {
  23594. height: math.unit(1.08, "meters"),
  23595. name: "Maw (Front)",
  23596. image: {
  23597. source: "./media/characters/zost/maw-front.svg"
  23598. }
  23599. },
  23600. mawSide: {
  23601. height: math.unit(2.66, "feet"),
  23602. name: "Maw (Side)",
  23603. image: {
  23604. source: "./media/characters/zost/maw-side.svg"
  23605. }
  23606. },
  23607. wingspan: {
  23608. height: math.unit(7.4, "feet"),
  23609. name: "Wingspan",
  23610. image: {
  23611. source: "./media/characters/zost/wingspan.svg"
  23612. }
  23613. },
  23614. },
  23615. [
  23616. {
  23617. name: "Normal",
  23618. height: math.unit(10, "feet"),
  23619. default: true
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23625. {
  23626. front: {
  23627. height: math.unit(5 + 4 / 12, "feet"),
  23628. weight: math.unit(120, "lb"),
  23629. name: "Front",
  23630. image: {
  23631. source: "./media/characters/luci/front.svg",
  23632. extra: 1985 / 1884,
  23633. bottom: 0.04
  23634. }
  23635. },
  23636. back: {
  23637. height: math.unit(5 + 4 / 12, "feet"),
  23638. weight: math.unit(120, "lb"),
  23639. name: "Back",
  23640. image: {
  23641. source: "./media/characters/luci/back.svg",
  23642. extra: 1892 / 1791,
  23643. bottom: 0.002
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(5 + 4 / 12, "feet"),
  23651. default: true
  23652. },
  23653. ]
  23654. ))
  23655. characterMakers.push(() => makeCharacter(
  23656. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23657. {
  23658. front: {
  23659. height: math.unit(1500, "feet"),
  23660. weight: math.unit(3.8e6, "tons"),
  23661. name: "Front",
  23662. image: {
  23663. source: "./media/characters/2th/front.svg",
  23664. extra: 3489 / 3350,
  23665. bottom: 0.1
  23666. }
  23667. },
  23668. foot: {
  23669. height: math.unit(461, "feet"),
  23670. name: "Foot",
  23671. image: {
  23672. source: "./media/characters/2th/foot.svg"
  23673. }
  23674. },
  23675. },
  23676. [
  23677. {
  23678. name: "\"Micro\"",
  23679. height: math.unit(15 + 7 / 12, "feet")
  23680. },
  23681. {
  23682. name: "Normal",
  23683. height: math.unit(1500, "feet"),
  23684. default: true
  23685. },
  23686. {
  23687. name: "Macro",
  23688. height: math.unit(5000, "feet")
  23689. },
  23690. {
  23691. name: "Megamacro",
  23692. height: math.unit(15, "miles")
  23693. },
  23694. {
  23695. name: "Gigamacro",
  23696. height: math.unit(4000, "miles")
  23697. },
  23698. {
  23699. name: "Galactic",
  23700. height: math.unit(50, "AU")
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23706. {
  23707. front: {
  23708. height: math.unit(5 + 6 / 12, "feet"),
  23709. weight: math.unit(220, "lb"),
  23710. name: "Front",
  23711. image: {
  23712. source: "./media/characters/amethyst/front.svg",
  23713. extra: 2078 / 2040,
  23714. bottom: 0.045
  23715. }
  23716. },
  23717. back: {
  23718. height: math.unit(5 + 6 / 12, "feet"),
  23719. weight: math.unit(220, "lb"),
  23720. name: "Back",
  23721. image: {
  23722. source: "./media/characters/amethyst/back.svg",
  23723. extra: 2021 / 1989,
  23724. bottom: 0.02
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Normal",
  23731. height: math.unit(5 + 6 / 12, "feet"),
  23732. default: true
  23733. },
  23734. ]
  23735. ))
  23736. characterMakers.push(() => makeCharacter(
  23737. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23738. {
  23739. front: {
  23740. height: math.unit(4 + 11 / 12, "feet"),
  23741. weight: math.unit(120, "lb"),
  23742. name: "Front",
  23743. image: {
  23744. source: "./media/characters/yumi-akiyama/front.svg",
  23745. extra: 2638/2432,
  23746. bottom: 70/2708
  23747. }
  23748. },
  23749. back: {
  23750. height: math.unit(4 + 11 / 12, "feet"),
  23751. weight: math.unit(120, "lb"),
  23752. name: "Back",
  23753. image: {
  23754. source: "./media/characters/yumi-akiyama/back.svg",
  23755. extra: 2502/2397,
  23756. bottom: 80/2582
  23757. }
  23758. },
  23759. casual: {
  23760. height: math.unit(4 + 11 / 12, "feet"),
  23761. weight: math.unit(120, "lb"),
  23762. name: "Casual",
  23763. image: {
  23764. source: "./media/characters/yumi-akiyama/casual.svg",
  23765. extra: 958/887,
  23766. bottom: 41/999
  23767. }
  23768. },
  23769. jammies: {
  23770. height: math.unit(4 + 11 / 12, "feet"),
  23771. weight: math.unit(120, "lb"),
  23772. name: "Jammies",
  23773. image: {
  23774. source: "./media/characters/yumi-akiyama/jammies.svg",
  23775. extra: 958/894,
  23776. bottom: 37/995
  23777. }
  23778. },
  23779. warmWeather: {
  23780. height: math.unit(4 + 11 / 12, "feet"),
  23781. weight: math.unit(120, "lb"),
  23782. name: "Warm Weather",
  23783. image: {
  23784. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23785. extra: 929/865,
  23786. bottom: 76/1005
  23787. }
  23788. },
  23789. mouth: {
  23790. height: math.unit(0.35, "feet"),
  23791. name: "Mouth",
  23792. image: {
  23793. source: "./media/characters/yumi-akiyama/mouth.svg"
  23794. }
  23795. },
  23796. paws: {
  23797. height: math.unit(1.05, "feet"),
  23798. name: "Paws",
  23799. image: {
  23800. source: "./media/characters/yumi-akiyama/paws.svg"
  23801. }
  23802. },
  23803. cockRing: {
  23804. height: math.unit(0.225, "feet"),
  23805. name: "Cock Ring",
  23806. image: {
  23807. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Galactic",
  23814. height: math.unit(50, "galaxies"),
  23815. default: true
  23816. },
  23817. {
  23818. name: "Universal",
  23819. height: math.unit(100, "universes")
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23825. {
  23826. front: {
  23827. height: math.unit(8, "feet"),
  23828. weight: math.unit(500, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/rifter-yrmori/front.svg",
  23832. extra: 1180 / 1125,
  23833. bottom: 0.02
  23834. }
  23835. },
  23836. back: {
  23837. height: math.unit(8, "feet"),
  23838. weight: math.unit(500, "lb"),
  23839. name: "Back",
  23840. image: {
  23841. source: "./media/characters/rifter-yrmori/back.svg",
  23842. extra: 1190 / 1145,
  23843. bottom: 0.001
  23844. }
  23845. },
  23846. wings: {
  23847. height: math.unit(7.75, "feet"),
  23848. weight: math.unit(500, "lb"),
  23849. name: "Wings",
  23850. image: {
  23851. source: "./media/characters/rifter-yrmori/wings.svg",
  23852. extra: 1357 / 1285
  23853. }
  23854. },
  23855. maw: {
  23856. height: math.unit(0.8, "feet"),
  23857. name: "Maw",
  23858. image: {
  23859. source: "./media/characters/rifter-yrmori/maw.svg"
  23860. }
  23861. },
  23862. mawfront: {
  23863. height: math.unit(1.45, "feet"),
  23864. name: "Maw (Front)",
  23865. image: {
  23866. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23867. }
  23868. },
  23869. },
  23870. [
  23871. {
  23872. name: "Normal",
  23873. height: math.unit(8, "feet"),
  23874. default: true
  23875. },
  23876. {
  23877. name: "Macro",
  23878. height: math.unit(42, "meters")
  23879. },
  23880. ]
  23881. ))
  23882. characterMakers.push(() => makeCharacter(
  23883. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23884. {
  23885. were: {
  23886. height: math.unit(25 + 6 / 12, "feet"),
  23887. weight: math.unit(10000, "lb"),
  23888. name: "Were",
  23889. image: {
  23890. source: "./media/characters/tahajin/were.svg",
  23891. extra: 801 / 770,
  23892. bottom: 0.042
  23893. }
  23894. },
  23895. aquatic: {
  23896. height: math.unit(6 + 4 / 12, "feet"),
  23897. weight: math.unit(160, "lb"),
  23898. name: "Aquatic",
  23899. image: {
  23900. source: "./media/characters/tahajin/aquatic.svg",
  23901. extra: 572 / 542,
  23902. bottom: 0.04
  23903. }
  23904. },
  23905. chow: {
  23906. height: math.unit(8 + 11 / 12, "feet"),
  23907. weight: math.unit(450, "lb"),
  23908. name: "Chow",
  23909. image: {
  23910. source: "./media/characters/tahajin/chow.svg",
  23911. extra: 660 / 640,
  23912. bottom: 0.015
  23913. }
  23914. },
  23915. demiNaga: {
  23916. height: math.unit(6 + 8 / 12, "feet"),
  23917. weight: math.unit(300, "lb"),
  23918. name: "Demi Naga",
  23919. image: {
  23920. source: "./media/characters/tahajin/demi-naga.svg",
  23921. extra: 643 / 615,
  23922. bottom: 0.1
  23923. }
  23924. },
  23925. data: {
  23926. height: math.unit(5, "inches"),
  23927. weight: math.unit(0.1, "lb"),
  23928. name: "Data",
  23929. image: {
  23930. source: "./media/characters/tahajin/data.svg"
  23931. }
  23932. },
  23933. fluu: {
  23934. height: math.unit(5 + 7 / 12, "feet"),
  23935. weight: math.unit(140, "lb"),
  23936. name: "Fluu",
  23937. image: {
  23938. source: "./media/characters/tahajin/fluu.svg",
  23939. extra: 628 / 592,
  23940. bottom: 0.02
  23941. }
  23942. },
  23943. starWarrior: {
  23944. height: math.unit(4 + 5 / 12, "feet"),
  23945. weight: math.unit(50, "lb"),
  23946. name: "Star Warrior",
  23947. image: {
  23948. source: "./media/characters/tahajin/star-warrior.svg"
  23949. }
  23950. },
  23951. },
  23952. [
  23953. {
  23954. name: "Normal",
  23955. height: math.unit(25 + 6 / 12, "feet"),
  23956. default: true
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23962. {
  23963. front: {
  23964. height: math.unit(8, "feet"),
  23965. weight: math.unit(350, "lb"),
  23966. name: "Front",
  23967. image: {
  23968. source: "./media/characters/gabira/front.svg",
  23969. extra: 1261/1154,
  23970. bottom: 51/1312
  23971. }
  23972. },
  23973. back: {
  23974. height: math.unit(8, "feet"),
  23975. weight: math.unit(350, "lb"),
  23976. name: "Back",
  23977. image: {
  23978. source: "./media/characters/gabira/back.svg",
  23979. extra: 1265/1163,
  23980. bottom: 46/1311
  23981. }
  23982. },
  23983. head: {
  23984. height: math.unit(2.85, "feet"),
  23985. name: "Head",
  23986. image: {
  23987. source: "./media/characters/gabira/head.svg"
  23988. }
  23989. },
  23990. },
  23991. [
  23992. {
  23993. name: "Normal",
  23994. height: math.unit(8, "feet"),
  23995. default: true
  23996. },
  23997. ]
  23998. ))
  23999. characterMakers.push(() => makeCharacter(
  24000. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24001. {
  24002. front: {
  24003. height: math.unit(5 + 3 / 12, "feet"),
  24004. weight: math.unit(137, "lb"),
  24005. name: "Front",
  24006. image: {
  24007. source: "./media/characters/sasha-katraine/front.svg",
  24008. extra: 1745/1694,
  24009. bottom: 37/1782
  24010. }
  24011. },
  24012. back: {
  24013. height: math.unit(5 + 3 / 12, "feet"),
  24014. weight: math.unit(137, "lb"),
  24015. name: "Back",
  24016. image: {
  24017. source: "./media/characters/sasha-katraine/back.svg",
  24018. extra: 1776/1699,
  24019. bottom: 26/1802
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Micro",
  24026. height: math.unit(5, "inches")
  24027. },
  24028. {
  24029. name: "Normal",
  24030. height: math.unit(5 + 3 / 12, "feet"),
  24031. default: true
  24032. },
  24033. ]
  24034. ))
  24035. characterMakers.push(() => makeCharacter(
  24036. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24037. {
  24038. side: {
  24039. height: math.unit(4, "inches"),
  24040. weight: math.unit(200, "grams"),
  24041. name: "Side",
  24042. image: {
  24043. source: "./media/characters/der/side.svg",
  24044. extra: 719 / 400,
  24045. bottom: 30.6 / 749.9187
  24046. }
  24047. },
  24048. },
  24049. [
  24050. {
  24051. name: "Micro",
  24052. height: math.unit(4, "inches"),
  24053. default: true
  24054. },
  24055. ]
  24056. ))
  24057. characterMakers.push(() => makeCharacter(
  24058. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24059. {
  24060. side: {
  24061. height: math.unit(30, "meters"),
  24062. weight: math.unit(700, "tonnes"),
  24063. name: "Side",
  24064. image: {
  24065. source: "./media/characters/fixerdragon/side.svg",
  24066. extra: (1293.0514 - 116.03) / 1106.86,
  24067. bottom: 116.03 / 1293.0514
  24068. }
  24069. },
  24070. },
  24071. [
  24072. {
  24073. name: "Planck",
  24074. height: math.unit(1.6e-35, "meters")
  24075. },
  24076. {
  24077. name: "Micro",
  24078. height: math.unit(0.4, "meters")
  24079. },
  24080. {
  24081. name: "Normal",
  24082. height: math.unit(30, "meters"),
  24083. default: true
  24084. },
  24085. {
  24086. name: "Megamacro",
  24087. height: math.unit(1.2, "megameters")
  24088. },
  24089. {
  24090. name: "Teramacro",
  24091. height: math.unit(130, "terameters")
  24092. },
  24093. {
  24094. name: "Yottamacro",
  24095. height: math.unit(6200, "yottameters")
  24096. },
  24097. ]
  24098. ));
  24099. characterMakers.push(() => makeCharacter(
  24100. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24101. {
  24102. front: {
  24103. height: math.unit(8, "feet"),
  24104. weight: math.unit(250, "lb"),
  24105. name: "Front",
  24106. image: {
  24107. source: "./media/characters/kite/front.svg",
  24108. extra: 2796 / 2659,
  24109. bottom: 0.002
  24110. }
  24111. },
  24112. },
  24113. [
  24114. {
  24115. name: "Normal",
  24116. height: math.unit(8, "feet"),
  24117. default: true
  24118. },
  24119. {
  24120. name: "Macro",
  24121. height: math.unit(360, "feet")
  24122. },
  24123. {
  24124. name: "Megamacro",
  24125. height: math.unit(1500, "feet")
  24126. },
  24127. ]
  24128. ))
  24129. characterMakers.push(() => makeCharacter(
  24130. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24131. {
  24132. anthro_front: {
  24133. height: math.unit(5 + 11/12, "feet"),
  24134. weight: math.unit(170, "lb"),
  24135. name: "Front",
  24136. image: {
  24137. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24138. extra: 1735/1585,
  24139. bottom: 96/1831
  24140. },
  24141. form: "anthro",
  24142. default: true
  24143. },
  24144. anthro_back: {
  24145. height: math.unit(5 + 11/12, "feet"),
  24146. weight: math.unit(170, "lb"),
  24147. name: "Back",
  24148. image: {
  24149. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24150. extra: 1749/1607,
  24151. bottom: 28/1777
  24152. },
  24153. form: "anthro"
  24154. },
  24155. anthro_male: {
  24156. height: math.unit(5 + 11/12, "feet"),
  24157. weight: math.unit(170, "lb"),
  24158. name: "Male",
  24159. image: {
  24160. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24161. extra: 1855/1713,
  24162. bottom: 63/1918
  24163. },
  24164. form: "anthro"
  24165. },
  24166. taur_front: {
  24167. height: math.unit(5 + 7/12, "feet"),
  24168. weight: math.unit(170, "lb"),
  24169. name: "Front",
  24170. image: {
  24171. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24172. extra: 1151/1059,
  24173. bottom: 356/1507
  24174. },
  24175. form: "taur",
  24176. default: true
  24177. },
  24178. anthro_frontDressed: {
  24179. height: math.unit(5 + 11/12, "feet"),
  24180. weight: math.unit(170, "lb"),
  24181. name: "Front (Dressed)",
  24182. image: {
  24183. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24184. extra: 1735/1585,
  24185. bottom: 96/1831
  24186. },
  24187. form: "anthro"
  24188. },
  24189. anthro_backDressed: {
  24190. height: math.unit(5 + 11/12, "feet"),
  24191. weight: math.unit(170, "lb"),
  24192. name: "Back (Dressed)",
  24193. image: {
  24194. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24195. extra: 1749/1607,
  24196. bottom: 28/1777
  24197. },
  24198. form: "anthro"
  24199. },
  24200. anthro_maleDressed: {
  24201. height: math.unit(5 + 11/12, "feet"),
  24202. weight: math.unit(170, "lb"),
  24203. name: "Male (Dressed)",
  24204. image: {
  24205. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24206. extra: 1855/1713,
  24207. bottom: 63/1918
  24208. },
  24209. form: "anthro"
  24210. },
  24211. taur_frontDressed: {
  24212. height: math.unit(5 + 7/12, "feet"),
  24213. weight: math.unit(170, "lb"),
  24214. name: "Front (Dressed)",
  24215. image: {
  24216. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24217. extra: 1151/1059,
  24218. bottom: 356/1507
  24219. },
  24220. form: "taur"
  24221. },
  24222. maw: {
  24223. height: math.unit(1.46, "feet"),
  24224. name: "Maw",
  24225. image: {
  24226. source: "./media/characters/poojawa-vynar/maw.svg"
  24227. },
  24228. allForms: true
  24229. },
  24230. head: {
  24231. height: math.unit(2.34, "feet"),
  24232. name: "Head",
  24233. image: {
  24234. source: "./media/characters/poojawa-vynar/head.svg"
  24235. },
  24236. allForms: true
  24237. },
  24238. leftPaw: {
  24239. height: math.unit(1.72, "feet"),
  24240. name: "Left Paw",
  24241. image: {
  24242. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24243. },
  24244. allForms: true
  24245. },
  24246. rightPaw: {
  24247. height: math.unit(1.61, "feet"),
  24248. name: "Right Paw",
  24249. image: {
  24250. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24251. },
  24252. allForms: true
  24253. },
  24254. toering: {
  24255. height: math.unit(2.9, "inches"),
  24256. name: "Toering",
  24257. image: {
  24258. source: "./media/characters/poojawa-vynar/toering.svg"
  24259. },
  24260. allForms: true
  24261. },
  24262. shaft: {
  24263. height: math.unit(0.625, "feet"),
  24264. name: "Shaft",
  24265. image: {
  24266. source: "./media/characters/poojawa-vynar/shaft.svg"
  24267. },
  24268. allForms: true
  24269. },
  24270. spade: {
  24271. height: math.unit(0.42, "feet"),
  24272. name: "Spade",
  24273. image: {
  24274. source: "./media/characters/poojawa-vynar/spade.svg"
  24275. },
  24276. allForms: true
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Shortstack",
  24282. height: math.unit(4, "feet"),
  24283. form: "anthro"
  24284. },
  24285. {
  24286. name: "Normal",
  24287. height: math.unit(5 + 11 / 12, "feet"),
  24288. form: "anthro",
  24289. default: true
  24290. },
  24291. {
  24292. name: "Tauric",
  24293. height: math.unit(4, "meters"),
  24294. form: "taur",
  24295. default: true
  24296. },
  24297. ],
  24298. {
  24299. "anthro": {
  24300. name: "Anthro",
  24301. default: true
  24302. },
  24303. "taur": {
  24304. name: "Taur",
  24305. },
  24306. }
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24310. {
  24311. front: {
  24312. height: math.unit(293, "meters"),
  24313. weight: math.unit(70400, "tons"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/violette/front.svg",
  24317. extra: 1227 / 1180,
  24318. bottom: 0.005
  24319. }
  24320. },
  24321. back: {
  24322. height: math.unit(293, "meters"),
  24323. weight: math.unit(70400, "tons"),
  24324. name: "Back",
  24325. image: {
  24326. source: "./media/characters/violette/back.svg",
  24327. extra: 1227 / 1180,
  24328. bottom: 0.005
  24329. }
  24330. },
  24331. },
  24332. [
  24333. {
  24334. name: "Macro",
  24335. height: math.unit(293, "meters"),
  24336. default: true
  24337. },
  24338. ]
  24339. ))
  24340. characterMakers.push(() => makeCharacter(
  24341. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24342. {
  24343. front: {
  24344. height: math.unit(1050, "feet"),
  24345. weight: math.unit(200000, "tons"),
  24346. name: "Front",
  24347. image: {
  24348. source: "./media/characters/alessandra/front.svg",
  24349. extra: 960 / 912,
  24350. bottom: 0.06
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Macro",
  24357. height: math.unit(1050, "feet")
  24358. },
  24359. {
  24360. name: "Macro+",
  24361. height: math.unit(900, "meters"),
  24362. default: true
  24363. },
  24364. ]
  24365. ))
  24366. characterMakers.push(() => makeCharacter(
  24367. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24368. {
  24369. front: {
  24370. height: math.unit(5, "feet"),
  24371. weight: math.unit(187, "lb"),
  24372. name: "Front",
  24373. image: {
  24374. source: "./media/characters/person/front.svg",
  24375. extra: 3087 / 2945,
  24376. bottom: 91 / 3181
  24377. }
  24378. },
  24379. },
  24380. [
  24381. {
  24382. name: "Micro",
  24383. height: math.unit(3, "inches")
  24384. },
  24385. {
  24386. name: "Normal",
  24387. height: math.unit(5, "feet"),
  24388. default: true
  24389. },
  24390. {
  24391. name: "Macro",
  24392. height: math.unit(90, "feet")
  24393. },
  24394. {
  24395. name: "Max Size",
  24396. height: math.unit(280, "feet")
  24397. },
  24398. ]
  24399. ))
  24400. characterMakers.push(() => makeCharacter(
  24401. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24402. {
  24403. front: {
  24404. height: math.unit(4.5, "meters"),
  24405. weight: math.unit(3200, "lb"),
  24406. name: "Front",
  24407. image: {
  24408. source: "./media/characters/ty/front.svg",
  24409. extra: 1038 / 960,
  24410. bottom: 31.156 / 1068
  24411. }
  24412. },
  24413. back: {
  24414. height: math.unit(4.5, "meters"),
  24415. weight: math.unit(3200, "lb"),
  24416. name: "Back",
  24417. image: {
  24418. source: "./media/characters/ty/back.svg",
  24419. extra: 1044 / 966,
  24420. bottom: 7.48 / 1049
  24421. }
  24422. },
  24423. },
  24424. [
  24425. {
  24426. name: "Normal",
  24427. height: math.unit(4.5, "meters"),
  24428. default: true
  24429. },
  24430. ]
  24431. ))
  24432. characterMakers.push(() => makeCharacter(
  24433. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24434. {
  24435. front: {
  24436. height: math.unit(5 + 4 / 12, "feet"),
  24437. weight: math.unit(115, "lb"),
  24438. name: "Front",
  24439. image: {
  24440. source: "./media/characters/rocky/front.svg",
  24441. extra: 1012 / 975,
  24442. bottom: 54 / 1066
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Normal",
  24449. height: math.unit(5 + 4 / 12, "feet"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24456. {
  24457. upright: {
  24458. height: math.unit(6, "meters"),
  24459. weight: math.unit(4000, "kg"),
  24460. name: "Upright",
  24461. image: {
  24462. source: "./media/characters/ruin/upright.svg",
  24463. extra: 668 / 661,
  24464. bottom: 42 / 799.8396
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Normal",
  24471. height: math.unit(6, "meters"),
  24472. default: true
  24473. },
  24474. ]
  24475. ))
  24476. characterMakers.push(() => makeCharacter(
  24477. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24478. {
  24479. front: {
  24480. height: math.unit(5, "feet"),
  24481. weight: math.unit(106, "lb"),
  24482. name: "Front",
  24483. image: {
  24484. source: "./media/characters/robin/front.svg",
  24485. extra: 862 / 799,
  24486. bottom: 42.4 / 914.8856
  24487. }
  24488. },
  24489. },
  24490. [
  24491. {
  24492. name: "Normal",
  24493. height: math.unit(5, "feet"),
  24494. default: true
  24495. },
  24496. ]
  24497. ))
  24498. characterMakers.push(() => makeCharacter(
  24499. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24500. {
  24501. side: {
  24502. height: math.unit(3, "feet"),
  24503. weight: math.unit(225, "lb"),
  24504. name: "Side",
  24505. image: {
  24506. source: "./media/characters/saian/side.svg",
  24507. extra: 566 / 356,
  24508. bottom: 79.7 / 643
  24509. }
  24510. },
  24511. maw: {
  24512. height: math.unit(2.85, "feet"),
  24513. name: "Maw",
  24514. image: {
  24515. source: "./media/characters/saian/maw.svg"
  24516. }
  24517. },
  24518. },
  24519. [
  24520. {
  24521. name: "Normal",
  24522. height: math.unit(3, "feet"),
  24523. default: true
  24524. },
  24525. ]
  24526. ))
  24527. characterMakers.push(() => makeCharacter(
  24528. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24529. {
  24530. side: {
  24531. height: math.unit(8, "feet"),
  24532. weight: math.unit(300, "lb"),
  24533. name: "Side",
  24534. image: {
  24535. source: "./media/characters/equus-silvermane/side.svg",
  24536. extra: 2176 / 2050,
  24537. bottom: 65.7 / 2245
  24538. }
  24539. },
  24540. front: {
  24541. height: math.unit(8, "feet"),
  24542. weight: math.unit(300, "lb"),
  24543. name: "Front",
  24544. image: {
  24545. source: "./media/characters/equus-silvermane/front.svg",
  24546. extra: 4633 / 4400,
  24547. bottom: 71.3 / 4706.915
  24548. }
  24549. },
  24550. sideStepping: {
  24551. height: math.unit(8, "feet"),
  24552. weight: math.unit(300, "lb"),
  24553. name: "Side (Stepping)",
  24554. image: {
  24555. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24556. extra: 1968 / 1860,
  24557. bottom: 16.4 / 1989
  24558. }
  24559. },
  24560. },
  24561. [
  24562. {
  24563. name: "Normal",
  24564. height: math.unit(8, "feet")
  24565. },
  24566. {
  24567. name: "Minimacro",
  24568. height: math.unit(75, "feet"),
  24569. default: true
  24570. },
  24571. {
  24572. name: "Macro",
  24573. height: math.unit(150, "feet")
  24574. },
  24575. {
  24576. name: "Macro+",
  24577. height: math.unit(1000, "feet")
  24578. },
  24579. {
  24580. name: "Megamacro",
  24581. height: math.unit(1, "mile")
  24582. },
  24583. ]
  24584. ))
  24585. characterMakers.push(() => makeCharacter(
  24586. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24587. {
  24588. side: {
  24589. height: math.unit(20, "feet"),
  24590. weight: math.unit(30000, "kg"),
  24591. name: "Side",
  24592. image: {
  24593. source: "./media/characters/windar/side.svg",
  24594. extra: 1491 / 1248,
  24595. bottom: 82.56 / 1568
  24596. }
  24597. },
  24598. },
  24599. [
  24600. {
  24601. name: "Normal",
  24602. height: math.unit(20, "feet"),
  24603. default: true
  24604. },
  24605. ]
  24606. ))
  24607. characterMakers.push(() => makeCharacter(
  24608. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24609. {
  24610. side: {
  24611. height: math.unit(15.66, "feet"),
  24612. weight: math.unit(150, "lb"),
  24613. name: "Side",
  24614. image: {
  24615. source: "./media/characters/melody/side.svg",
  24616. extra: 1097 / 944,
  24617. bottom: 11.8 / 1109
  24618. }
  24619. },
  24620. sideOutfit: {
  24621. height: math.unit(15.66, "feet"),
  24622. weight: math.unit(150, "lb"),
  24623. name: "Side (Outfit)",
  24624. image: {
  24625. source: "./media/characters/melody/side-outfit.svg",
  24626. extra: 1097 / 944,
  24627. bottom: 11.8 / 1109
  24628. }
  24629. },
  24630. },
  24631. [
  24632. {
  24633. name: "Normal",
  24634. height: math.unit(15.66, "feet"),
  24635. default: true
  24636. },
  24637. ]
  24638. ))
  24639. characterMakers.push(() => makeCharacter(
  24640. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24641. {
  24642. armoredFront: {
  24643. height: math.unit(8, "feet"),
  24644. weight: math.unit(325, "lb"),
  24645. name: "Front",
  24646. image: {
  24647. source: "./media/characters/windera/armored-front.svg",
  24648. extra: 1830/1598,
  24649. bottom: 151/1981
  24650. },
  24651. form: "armored",
  24652. default: true
  24653. },
  24654. macroFront: {
  24655. height: math.unit(70, "feet"),
  24656. weight: math.unit(315453, "lb"),
  24657. name: "Front",
  24658. image: {
  24659. source: "./media/characters/windera/macro-front.svg",
  24660. extra: 963/883,
  24661. bottom: 23/986
  24662. },
  24663. form: "macro",
  24664. default: true
  24665. },
  24666. },
  24667. [
  24668. {
  24669. name: "Normal",
  24670. height: math.unit(8, "feet"),
  24671. default: true,
  24672. form: "armored"
  24673. },
  24674. {
  24675. name: "Normal",
  24676. height: math.unit(70, "feet"),
  24677. default: true,
  24678. form: "macro"
  24679. },
  24680. ],
  24681. {
  24682. "armored": {
  24683. name: "Armored",
  24684. default: true
  24685. },
  24686. "macro": {
  24687. name: "Macro",
  24688. },
  24689. }
  24690. ))
  24691. characterMakers.push(() => makeCharacter(
  24692. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24693. {
  24694. front: {
  24695. height: math.unit(28.75, "feet"),
  24696. weight: math.unit(2000, "kg"),
  24697. name: "Front",
  24698. image: {
  24699. source: "./media/characters/sonear/front.svg",
  24700. extra: 1041.1 / 964.9,
  24701. bottom: 53.7 / 1096.6
  24702. }
  24703. },
  24704. },
  24705. [
  24706. {
  24707. name: "Normal",
  24708. height: math.unit(28.75, "feet"),
  24709. default: true
  24710. },
  24711. ]
  24712. ))
  24713. characterMakers.push(() => makeCharacter(
  24714. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24715. {
  24716. side: {
  24717. height: math.unit(25.5, "feet"),
  24718. weight: math.unit(23000, "kg"),
  24719. name: "Side",
  24720. image: {
  24721. source: "./media/characters/kanara/side.svg"
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Normal",
  24728. height: math.unit(25.5, "feet"),
  24729. default: true
  24730. },
  24731. ]
  24732. ))
  24733. characterMakers.push(() => makeCharacter(
  24734. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24735. {
  24736. side: {
  24737. height: math.unit(10, "feet"),
  24738. weight: math.unit(1000, "kg"),
  24739. name: "Side",
  24740. image: {
  24741. source: "./media/characters/ereus/side.svg",
  24742. extra: 1157 / 959,
  24743. bottom: 153 / 1312.5
  24744. }
  24745. },
  24746. },
  24747. [
  24748. {
  24749. name: "Normal",
  24750. height: math.unit(10, "feet"),
  24751. default: true
  24752. },
  24753. ]
  24754. ))
  24755. characterMakers.push(() => makeCharacter(
  24756. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24757. {
  24758. side: {
  24759. height: math.unit(4.5, "feet"),
  24760. weight: math.unit(500, "lb"),
  24761. name: "Side",
  24762. image: {
  24763. source: "./media/characters/e-ter/side.svg",
  24764. extra: 1550 / 1248,
  24765. bottom: 146 / 1694
  24766. }
  24767. },
  24768. },
  24769. [
  24770. {
  24771. name: "Normal",
  24772. height: math.unit(4.5, "feet"),
  24773. default: true
  24774. },
  24775. ]
  24776. ))
  24777. characterMakers.push(() => makeCharacter(
  24778. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24779. {
  24780. side: {
  24781. height: math.unit(9.7, "feet"),
  24782. weight: math.unit(4000, "kg"),
  24783. name: "Side",
  24784. image: {
  24785. source: "./media/characters/yamie/side.svg"
  24786. }
  24787. },
  24788. },
  24789. [
  24790. {
  24791. name: "Normal",
  24792. height: math.unit(9.7, "feet"),
  24793. default: true
  24794. },
  24795. ]
  24796. ))
  24797. characterMakers.push(() => makeCharacter(
  24798. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24799. {
  24800. front: {
  24801. height: math.unit(50, "feet"),
  24802. weight: math.unit(50000, "kg"),
  24803. name: "Front",
  24804. image: {
  24805. source: "./media/characters/anders/front.svg",
  24806. extra: 570 / 539,
  24807. bottom: 14.7 / 586.7
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Large",
  24814. height: math.unit(50, "feet")
  24815. },
  24816. {
  24817. name: "Macro",
  24818. height: math.unit(2000, "feet"),
  24819. default: true
  24820. },
  24821. {
  24822. name: "Megamacro",
  24823. height: math.unit(12, "miles")
  24824. },
  24825. ]
  24826. ))
  24827. characterMakers.push(() => makeCharacter(
  24828. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24829. {
  24830. front: {
  24831. height: math.unit(7 + 2 / 12, "feet"),
  24832. weight: math.unit(300, "lb"),
  24833. name: "Front",
  24834. image: {
  24835. source: "./media/characters/reban/front.svg",
  24836. extra: 1287/1212,
  24837. bottom: 148/1435
  24838. }
  24839. },
  24840. head: {
  24841. height: math.unit(1.95, "feet"),
  24842. name: "Head",
  24843. image: {
  24844. source: "./media/characters/reban/head.svg"
  24845. }
  24846. },
  24847. maw: {
  24848. height: math.unit(0.95, "feet"),
  24849. name: "Maw",
  24850. image: {
  24851. source: "./media/characters/reban/maw.svg"
  24852. }
  24853. },
  24854. foot: {
  24855. height: math.unit(1.65, "feet"),
  24856. name: "Foot",
  24857. image: {
  24858. source: "./media/characters/reban/foot.svg"
  24859. }
  24860. },
  24861. dick: {
  24862. height: math.unit(7 / 5, "feet"),
  24863. name: "Dick",
  24864. image: {
  24865. source: "./media/characters/reban/dick.svg"
  24866. }
  24867. },
  24868. },
  24869. [
  24870. {
  24871. name: "Natural Height",
  24872. height: math.unit(7 + 2 / 12, "feet")
  24873. },
  24874. {
  24875. name: "Macro",
  24876. height: math.unit(500, "feet"),
  24877. default: true
  24878. },
  24879. {
  24880. name: "Canon Height",
  24881. height: math.unit(50, "AU")
  24882. },
  24883. ]
  24884. ))
  24885. characterMakers.push(() => makeCharacter(
  24886. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24887. {
  24888. front: {
  24889. height: math.unit(6, "feet"),
  24890. weight: math.unit(150, "lb"),
  24891. name: "Front",
  24892. image: {
  24893. source: "./media/characters/terrance-keayes/front.svg",
  24894. extra: 1.005,
  24895. bottom: 151 / 1615
  24896. }
  24897. },
  24898. side: {
  24899. height: math.unit(6, "feet"),
  24900. weight: math.unit(150, "lb"),
  24901. name: "Side",
  24902. image: {
  24903. source: "./media/characters/terrance-keayes/side.svg",
  24904. extra: 1.005,
  24905. bottom: 129.4 / 1544
  24906. }
  24907. },
  24908. back: {
  24909. height: math.unit(6, "feet"),
  24910. weight: math.unit(150, "lb"),
  24911. name: "Back",
  24912. image: {
  24913. source: "./media/characters/terrance-keayes/back.svg",
  24914. extra: 1.005,
  24915. bottom: 58.4 / 1557.3
  24916. }
  24917. },
  24918. dick: {
  24919. height: math.unit(6 * 0.208, "feet"),
  24920. name: "Dick",
  24921. image: {
  24922. source: "./media/characters/terrance-keayes/dick.svg"
  24923. }
  24924. },
  24925. },
  24926. [
  24927. {
  24928. name: "Canon Height",
  24929. height: math.unit(35, "miles"),
  24930. default: true
  24931. },
  24932. ]
  24933. ))
  24934. characterMakers.push(() => makeCharacter(
  24935. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24936. {
  24937. front: {
  24938. height: math.unit(6, "feet"),
  24939. weight: math.unit(150, "lb"),
  24940. name: "Front",
  24941. image: {
  24942. source: "./media/characters/ofelia/front.svg",
  24943. extra: 1130/1117,
  24944. bottom: 91/1221
  24945. }
  24946. },
  24947. back: {
  24948. height: math.unit(6, "feet"),
  24949. weight: math.unit(150, "lb"),
  24950. name: "Back",
  24951. image: {
  24952. source: "./media/characters/ofelia/back.svg",
  24953. extra: 1172/1159,
  24954. bottom: 28/1200
  24955. }
  24956. },
  24957. maw: {
  24958. height: math.unit(1, "feet"),
  24959. name: "Maw",
  24960. image: {
  24961. source: "./media/characters/ofelia/maw.svg"
  24962. }
  24963. },
  24964. foot: {
  24965. height: math.unit(1.949, "feet"),
  24966. name: "Foot",
  24967. image: {
  24968. source: "./media/characters/ofelia/foot.svg"
  24969. }
  24970. },
  24971. },
  24972. [
  24973. {
  24974. name: "Canon Height",
  24975. height: math.unit(2000, "miles"),
  24976. default: true
  24977. },
  24978. ]
  24979. ))
  24980. characterMakers.push(() => makeCharacter(
  24981. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24982. {
  24983. front: {
  24984. height: math.unit(6, "feet"),
  24985. weight: math.unit(150, "lb"),
  24986. name: "Front",
  24987. image: {
  24988. source: "./media/characters/samuel/front.svg",
  24989. extra: 265 / 258,
  24990. bottom: 2 / 266.1566
  24991. }
  24992. },
  24993. },
  24994. [
  24995. {
  24996. name: "Macro",
  24997. height: math.unit(100, "feet"),
  24998. default: true
  24999. },
  25000. {
  25001. name: "Full Size",
  25002. height: math.unit(1000, "miles")
  25003. },
  25004. ]
  25005. ))
  25006. characterMakers.push(() => makeCharacter(
  25007. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25008. {
  25009. front: {
  25010. height: math.unit(6, "feet"),
  25011. weight: math.unit(300, "lb"),
  25012. name: "Front",
  25013. image: {
  25014. source: "./media/characters/beishir-kiel/front.svg",
  25015. extra: 569 / 547,
  25016. bottom: 41.9 / 609
  25017. }
  25018. },
  25019. maw: {
  25020. height: math.unit(6 * 0.202, "feet"),
  25021. name: "Maw",
  25022. image: {
  25023. source: "./media/characters/beishir-kiel/maw.svg"
  25024. }
  25025. },
  25026. },
  25027. [
  25028. {
  25029. name: "Macro",
  25030. height: math.unit(300, "feet"),
  25031. default: true
  25032. },
  25033. ]
  25034. ))
  25035. characterMakers.push(() => makeCharacter(
  25036. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25037. {
  25038. front: {
  25039. height: math.unit(5 + 7/12, "feet"),
  25040. weight: math.unit(120, "lb"),
  25041. name: "Front",
  25042. image: {
  25043. source: "./media/characters/logan-grey/front.svg",
  25044. extra: 1836/1738,
  25045. bottom: 108/1944
  25046. }
  25047. },
  25048. back: {
  25049. height: math.unit(5 + 7/12, "feet"),
  25050. weight: math.unit(120, "lb"),
  25051. name: "Back",
  25052. image: {
  25053. source: "./media/characters/logan-grey/back.svg",
  25054. extra: 1880/1794,
  25055. bottom: 24/1904
  25056. }
  25057. },
  25058. frontSfw: {
  25059. height: math.unit(5 + 7/12, "feet"),
  25060. weight: math.unit(120, "lb"),
  25061. name: "Front (SFW)",
  25062. image: {
  25063. source: "./media/characters/logan-grey/front-sfw.svg",
  25064. extra: 1836/1738,
  25065. bottom: 108/1944
  25066. }
  25067. },
  25068. backSfw: {
  25069. height: math.unit(5 + 7/12, "feet"),
  25070. weight: math.unit(120, "lb"),
  25071. name: "Back (SFW)",
  25072. image: {
  25073. source: "./media/characters/logan-grey/back-sfw.svg",
  25074. extra: 1880/1794,
  25075. bottom: 24/1904
  25076. }
  25077. },
  25078. hands: {
  25079. height: math.unit(0.84, "feet"),
  25080. name: "Hands",
  25081. image: {
  25082. source: "./media/characters/logan-grey/hands.svg"
  25083. }
  25084. },
  25085. paws: {
  25086. height: math.unit(0.72, "feet"),
  25087. name: "Paws",
  25088. image: {
  25089. source: "./media/characters/logan-grey/paws.svg"
  25090. }
  25091. },
  25092. cock: {
  25093. height: math.unit(1.45, "feet"),
  25094. name: "Cock",
  25095. image: {
  25096. source: "./media/characters/logan-grey/cock.svg"
  25097. }
  25098. },
  25099. cockAlt: {
  25100. height: math.unit(1.437, "feet"),
  25101. name: "Cock (alt)",
  25102. image: {
  25103. source: "./media/characters/logan-grey/cock-alt.svg"
  25104. }
  25105. },
  25106. },
  25107. [
  25108. {
  25109. name: "Normal",
  25110. height: math.unit(5 + 8 / 12, "feet")
  25111. },
  25112. {
  25113. name: "The 500 Foot Femboy",
  25114. height: math.unit(500, "feet"),
  25115. default: true
  25116. },
  25117. {
  25118. name: "Megmacro",
  25119. height: math.unit(20, "miles")
  25120. },
  25121. ]
  25122. ))
  25123. characterMakers.push(() => makeCharacter(
  25124. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25125. {
  25126. front: {
  25127. height: math.unit(8 + 2 / 12, "feet"),
  25128. weight: math.unit(275, "lb"),
  25129. name: "Front",
  25130. image: {
  25131. source: "./media/characters/draganta/front.svg",
  25132. extra: 1177 / 1135,
  25133. bottom: 33.46 / 1212.1
  25134. }
  25135. },
  25136. },
  25137. [
  25138. {
  25139. name: "Normal",
  25140. height: math.unit(8 + 6 / 12, "feet"),
  25141. default: true
  25142. },
  25143. {
  25144. name: "Macro",
  25145. height: math.unit(150, "feet")
  25146. },
  25147. {
  25148. name: "Megamacro",
  25149. height: math.unit(1000, "miles")
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25155. {
  25156. front: {
  25157. height: math.unit(1.72, "m"),
  25158. weight: math.unit(80, "lb"),
  25159. name: "Front",
  25160. image: {
  25161. source: "./media/characters/voski/front.svg",
  25162. extra: 2076.22 / 2022.4,
  25163. bottom: 102.7 / 2177.3866
  25164. }
  25165. },
  25166. frontFlaccid: {
  25167. height: math.unit(1.72, "m"),
  25168. weight: math.unit(80, "lb"),
  25169. name: "Front (Flaccid)",
  25170. image: {
  25171. source: "./media/characters/voski/front-flaccid.svg",
  25172. extra: 2076.22 / 2022.4,
  25173. bottom: 102.7 / 2177.3866
  25174. }
  25175. },
  25176. frontErect: {
  25177. height: math.unit(1.72, "m"),
  25178. weight: math.unit(80, "lb"),
  25179. name: "Front (Erect)",
  25180. image: {
  25181. source: "./media/characters/voski/front-erect.svg",
  25182. extra: 2076.22 / 2022.4,
  25183. bottom: 102.7 / 2177.3866
  25184. }
  25185. },
  25186. back: {
  25187. height: math.unit(1.72, "m"),
  25188. weight: math.unit(80, "lb"),
  25189. name: "Back",
  25190. image: {
  25191. source: "./media/characters/voski/back.svg",
  25192. extra: 2104 / 2051,
  25193. bottom: 10.45 / 2113.63
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Normal",
  25200. height: math.unit(1.72, "m")
  25201. },
  25202. {
  25203. name: "Macro",
  25204. height: math.unit(55, "m"),
  25205. default: true
  25206. },
  25207. {
  25208. name: "Macro+",
  25209. height: math.unit(300, "m")
  25210. },
  25211. {
  25212. name: "Macro++",
  25213. height: math.unit(700, "m")
  25214. },
  25215. {
  25216. name: "Macro+++",
  25217. height: math.unit(4500, "m")
  25218. },
  25219. {
  25220. name: "Macro++++",
  25221. height: math.unit(45, "km")
  25222. },
  25223. {
  25224. name: "Macro+++++",
  25225. height: math.unit(1220, "km")
  25226. },
  25227. ]
  25228. ))
  25229. characterMakers.push(() => makeCharacter(
  25230. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25231. {
  25232. front: {
  25233. height: math.unit(2.3, "m"),
  25234. weight: math.unit(304, "kg"),
  25235. name: "Front",
  25236. image: {
  25237. source: "./media/characters/icowom-lee/front.svg",
  25238. extra: 985 / 955,
  25239. bottom: 25.4 / 1012
  25240. }
  25241. },
  25242. fronttentacles: {
  25243. height: math.unit(2.3, "m"),
  25244. weight: math.unit(304, "kg"),
  25245. name: "Front-tentacles",
  25246. image: {
  25247. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25248. extra: 985 / 955,
  25249. bottom: 25.4 / 1012
  25250. }
  25251. },
  25252. back: {
  25253. height: math.unit(2.3, "m"),
  25254. weight: math.unit(304, "kg"),
  25255. name: "Back",
  25256. image: {
  25257. source: "./media/characters/icowom-lee/back.svg",
  25258. extra: 975 / 954,
  25259. bottom: 9.5 / 985
  25260. }
  25261. },
  25262. backtentacles: {
  25263. height: math.unit(2.3, "m"),
  25264. weight: math.unit(304, "kg"),
  25265. name: "Back-tentacles",
  25266. image: {
  25267. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25268. extra: 975 / 954,
  25269. bottom: 9.5 / 985
  25270. }
  25271. },
  25272. frontDressed: {
  25273. height: math.unit(2.3, "m"),
  25274. weight: math.unit(304, "kg"),
  25275. name: "Front (Dressed)",
  25276. image: {
  25277. source: "./media/characters/icowom-lee/front-dressed.svg",
  25278. extra: 3076 / 2933,
  25279. bottom: 51.4 / 3125.1889
  25280. }
  25281. },
  25282. rump: {
  25283. height: math.unit(0.776, "meters"),
  25284. name: "Rump",
  25285. image: {
  25286. source: "./media/characters/icowom-lee/rump.svg"
  25287. }
  25288. },
  25289. genitals: {
  25290. height: math.unit(0.78, "meters"),
  25291. name: "Genitals",
  25292. image: {
  25293. source: "./media/characters/icowom-lee/genitals.svg"
  25294. }
  25295. },
  25296. },
  25297. [
  25298. {
  25299. name: "Normal",
  25300. height: math.unit(2.3, "meters"),
  25301. default: true
  25302. },
  25303. {
  25304. name: "Macro",
  25305. height: math.unit(94, "meters"),
  25306. default: true
  25307. },
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25312. {
  25313. front: {
  25314. height: math.unit(22, "meters"),
  25315. weight: math.unit(21000, "kg"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/shock-diamond/front.svg",
  25319. extra: 2204 / 2053,
  25320. bottom: 65 / 2239.47
  25321. }
  25322. },
  25323. frontNude: {
  25324. height: math.unit(22, "meters"),
  25325. weight: math.unit(21000, "kg"),
  25326. name: "Front (Nude)",
  25327. image: {
  25328. source: "./media/characters/shock-diamond/front-nude.svg",
  25329. extra: 2514 / 2285,
  25330. bottom: 13 / 2527.56
  25331. }
  25332. },
  25333. },
  25334. [
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(3, "meters")
  25338. },
  25339. {
  25340. name: "Macro",
  25341. height: math.unit(22, "meters"),
  25342. default: true
  25343. },
  25344. ]
  25345. ))
  25346. characterMakers.push(() => makeCharacter(
  25347. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25348. {
  25349. front: {
  25350. height: math.unit(5 + 4/12, "feet"),
  25351. weight: math.unit(125, "lb"),
  25352. name: "Front",
  25353. image: {
  25354. source: "./media/characters/rory/front.svg",
  25355. extra: 1790/1681,
  25356. bottom: 66/1856
  25357. },
  25358. form: "normal",
  25359. default: true
  25360. },
  25361. back: {
  25362. height: math.unit(5 + 4/12, "feet"),
  25363. weight: math.unit(125, "lb"),
  25364. name: "Back",
  25365. image: {
  25366. source: "./media/characters/rory/back.svg",
  25367. extra: 1805/1690,
  25368. bottom: 56/1861
  25369. },
  25370. form: "normal"
  25371. },
  25372. frontDressed: {
  25373. height: math.unit(5 + 4/12, "feet"),
  25374. weight: math.unit(125, "lb"),
  25375. name: "Front (Dressed)",
  25376. image: {
  25377. source: "./media/characters/rory/front-dressed.svg",
  25378. extra: 1790/1681,
  25379. bottom: 66/1856
  25380. },
  25381. form: "normal"
  25382. },
  25383. backDressed: {
  25384. height: math.unit(5 + 4/12, "feet"),
  25385. weight: math.unit(125, "lb"),
  25386. name: "Back (Dressed)",
  25387. image: {
  25388. source: "./media/characters/rory/back-dressed.svg",
  25389. extra: 1805/1690,
  25390. bottom: 56/1861
  25391. },
  25392. form: "normal"
  25393. },
  25394. frontNsfw: {
  25395. height: math.unit(5 + 4/12, "feet"),
  25396. weight: math.unit(125, "lb"),
  25397. name: "Front (NSFW)",
  25398. image: {
  25399. source: "./media/characters/rory/front-nsfw.svg",
  25400. extra: 1790/1681,
  25401. bottom: 66/1856
  25402. },
  25403. form: "normal"
  25404. },
  25405. backNsfw: {
  25406. height: math.unit(5 + 4/12, "feet"),
  25407. weight: math.unit(125, "lb"),
  25408. name: "Back (NSFW)",
  25409. image: {
  25410. source: "./media/characters/rory/back-nsfw.svg",
  25411. extra: 1805/1690,
  25412. bottom: 56/1861
  25413. },
  25414. form: "normal"
  25415. },
  25416. dick: {
  25417. height: math.unit(0.8, "feet"),
  25418. name: "Dick",
  25419. image: {
  25420. source: "./media/characters/rory/dick.svg"
  25421. },
  25422. form: "normal"
  25423. },
  25424. thicc_front: {
  25425. height: math.unit(5 + 4/12, "feet"),
  25426. weight: math.unit(195, "lb"),
  25427. name: "Front",
  25428. image: {
  25429. source: "./media/characters/rory/thicc-front.svg",
  25430. extra: 1220/1100,
  25431. bottom: 103/1323
  25432. },
  25433. form: "thicc",
  25434. default: true
  25435. },
  25436. thicc_back: {
  25437. height: math.unit(5 + 4/12, "feet"),
  25438. weight: math.unit(195, "lb"),
  25439. name: "Back",
  25440. image: {
  25441. source: "./media/characters/rory/thicc-back.svg",
  25442. extra: 1166/1086,
  25443. bottom: 35/1201
  25444. },
  25445. form: "thicc"
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Micro",
  25451. height: math.unit(3, "inches"),
  25452. allForms: true
  25453. },
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(5 + 4/12, "feet"),
  25457. allForms: true,
  25458. default: true
  25459. },
  25460. {
  25461. name: "Macro",
  25462. height: math.unit(90, "feet"),
  25463. allForms: true
  25464. },
  25465. {
  25466. name: "Supercharged",
  25467. height: math.unit(270, "feet"),
  25468. allForms: true
  25469. },
  25470. ],
  25471. {
  25472. "normal": {
  25473. name: "Normal",
  25474. default: true
  25475. },
  25476. "thicc": {
  25477. name: "Thicc",
  25478. },
  25479. }
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25483. {
  25484. front: {
  25485. height: math.unit(5 + 9 / 12, "feet"),
  25486. weight: math.unit(190, "lb"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/sprisk/front.svg",
  25490. extra: 1225 / 1180,
  25491. bottom: 42.7 / 1266.4
  25492. }
  25493. },
  25494. frontNsfw: {
  25495. height: math.unit(5 + 9 / 12, "feet"),
  25496. weight: math.unit(190, "lb"),
  25497. name: "Front (NSFW)",
  25498. image: {
  25499. source: "./media/characters/sprisk/front-nsfw.svg",
  25500. extra: 1225 / 1180,
  25501. bottom: 42.7 / 1266.4
  25502. }
  25503. },
  25504. back: {
  25505. height: math.unit(5 + 9 / 12, "feet"),
  25506. weight: math.unit(190, "lb"),
  25507. name: "Back",
  25508. image: {
  25509. source: "./media/characters/sprisk/back.svg",
  25510. extra: 1247 / 1200,
  25511. bottom: 5.6 / 1253.04
  25512. }
  25513. },
  25514. },
  25515. [
  25516. {
  25517. name: "Tiny",
  25518. height: math.unit(2, "inches")
  25519. },
  25520. {
  25521. name: "Normal",
  25522. height: math.unit(5 + 9 / 12, "feet"),
  25523. default: true
  25524. },
  25525. {
  25526. name: "Mini Macro",
  25527. height: math.unit(18, "feet")
  25528. },
  25529. {
  25530. name: "Macro",
  25531. height: math.unit(100, "feet")
  25532. },
  25533. {
  25534. name: "MACRO",
  25535. height: math.unit(50, "miles")
  25536. },
  25537. {
  25538. name: "M A C R O",
  25539. height: math.unit(300, "miles")
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25545. {
  25546. side: {
  25547. height: math.unit(15.6, "meters"),
  25548. weight: math.unit(700000, "kg"),
  25549. name: "Side",
  25550. image: {
  25551. source: "./media/characters/bunsen/side.svg",
  25552. extra: 1644 / 358
  25553. }
  25554. },
  25555. foot: {
  25556. height: math.unit(1.611 * 1644 / 358, "meter"),
  25557. name: "Foot",
  25558. image: {
  25559. source: "./media/characters/bunsen/foot.svg"
  25560. }
  25561. },
  25562. },
  25563. [
  25564. {
  25565. name: "Small",
  25566. height: math.unit(10, "feet")
  25567. },
  25568. {
  25569. name: "Normal",
  25570. height: math.unit(15.6, "meters"),
  25571. default: true
  25572. },
  25573. ]
  25574. ))
  25575. characterMakers.push(() => makeCharacter(
  25576. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25577. {
  25578. front: {
  25579. height: math.unit(4 + 11 / 12, "feet"),
  25580. weight: math.unit(140, "lb"),
  25581. name: "Front",
  25582. image: {
  25583. source: "./media/characters/sesh/front.svg",
  25584. extra: 3420 / 3231,
  25585. bottom: 72 / 3949.5
  25586. }
  25587. },
  25588. },
  25589. [
  25590. {
  25591. name: "Normal",
  25592. height: math.unit(4 + 11 / 12, "feet")
  25593. },
  25594. {
  25595. name: "Grown",
  25596. height: math.unit(15, "feet"),
  25597. default: true
  25598. },
  25599. {
  25600. name: "Macro",
  25601. height: math.unit(1500, "feet")
  25602. },
  25603. {
  25604. name: "Megamacro",
  25605. height: math.unit(30, "miles")
  25606. },
  25607. {
  25608. name: "Continental",
  25609. height: math.unit(3000, "miles")
  25610. },
  25611. {
  25612. name: "Gravity Mass",
  25613. height: math.unit(300000, "miles")
  25614. },
  25615. {
  25616. name: "Planet Buster",
  25617. height: math.unit(30000000, "miles")
  25618. },
  25619. {
  25620. name: "Big",
  25621. height: math.unit(3000000000, "miles")
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25627. {
  25628. front: {
  25629. height: math.unit(9, "feet"),
  25630. weight: math.unit(350, "lb"),
  25631. name: "Front",
  25632. image: {
  25633. source: "./media/characters/pepper/front.svg",
  25634. extra: 1448 / 1312,
  25635. bottom: 9.4 / 1457.88
  25636. }
  25637. },
  25638. back: {
  25639. height: math.unit(9, "feet"),
  25640. weight: math.unit(350, "lb"),
  25641. name: "Back",
  25642. image: {
  25643. source: "./media/characters/pepper/back.svg",
  25644. extra: 1423 / 1300,
  25645. bottom: 4.6 / 1429
  25646. }
  25647. },
  25648. maw: {
  25649. height: math.unit(0.932, "feet"),
  25650. name: "Maw",
  25651. image: {
  25652. source: "./media/characters/pepper/maw.svg"
  25653. }
  25654. },
  25655. },
  25656. [
  25657. {
  25658. name: "Normal",
  25659. height: math.unit(9, "feet"),
  25660. default: true
  25661. },
  25662. ]
  25663. ))
  25664. characterMakers.push(() => makeCharacter(
  25665. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25666. {
  25667. front: {
  25668. height: math.unit(6, "feet"),
  25669. weight: math.unit(150, "lb"),
  25670. name: "Front",
  25671. image: {
  25672. source: "./media/characters/maelstrom/front.svg",
  25673. extra: 2100 / 1883,
  25674. bottom: 94 / 2196.7
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Less Kaiju",
  25681. height: math.unit(200, "feet")
  25682. },
  25683. {
  25684. name: "Kaiju",
  25685. height: math.unit(400, "feet"),
  25686. default: true
  25687. },
  25688. {
  25689. name: "Kaiju-er",
  25690. height: math.unit(600, "feet")
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(6 + 5 / 12, "feet"),
  25699. weight: math.unit(180, "lb"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/lexir/front.svg",
  25703. extra: 180 / 172,
  25704. bottom: 12 / 192
  25705. }
  25706. },
  25707. back: {
  25708. height: math.unit(6 + 5 / 12, "feet"),
  25709. weight: math.unit(180, "lb"),
  25710. name: "Back",
  25711. image: {
  25712. source: "./media/characters/lexir/back.svg",
  25713. extra: 1273/1201,
  25714. bottom: 39/1312
  25715. }
  25716. },
  25717. },
  25718. [
  25719. {
  25720. name: "Very Smal",
  25721. height: math.unit(1, "nm")
  25722. },
  25723. {
  25724. name: "Normal",
  25725. height: math.unit(6 + 5 / 12, "feet"),
  25726. default: true
  25727. },
  25728. {
  25729. name: "Macro",
  25730. height: math.unit(1, "mile")
  25731. },
  25732. {
  25733. name: "Megamacro",
  25734. height: math.unit(50, "miles")
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25740. {
  25741. front: {
  25742. height: math.unit(1.5, "meters"),
  25743. weight: math.unit(100, "lb"),
  25744. name: "Front",
  25745. image: {
  25746. source: "./media/characters/maksio/front.svg",
  25747. extra: 1549 / 1531,
  25748. bottom: 123.7 / 1674.5429
  25749. }
  25750. },
  25751. back: {
  25752. height: math.unit(1.5, "meters"),
  25753. weight: math.unit(100, "lb"),
  25754. name: "Back",
  25755. image: {
  25756. source: "./media/characters/maksio/back.svg",
  25757. extra: 1541 / 1509,
  25758. bottom: 97 / 1639
  25759. }
  25760. },
  25761. hand: {
  25762. height: math.unit(0.621, "feet"),
  25763. name: "Hand",
  25764. image: {
  25765. source: "./media/characters/maksio/hand.svg"
  25766. }
  25767. },
  25768. foot: {
  25769. height: math.unit(1.611, "feet"),
  25770. name: "Foot",
  25771. image: {
  25772. source: "./media/characters/maksio/foot.svg"
  25773. }
  25774. },
  25775. },
  25776. [
  25777. {
  25778. name: "Shrunken",
  25779. height: math.unit(10, "cm")
  25780. },
  25781. {
  25782. name: "Normal",
  25783. height: math.unit(150, "cm"),
  25784. default: true
  25785. },
  25786. ]
  25787. ))
  25788. characterMakers.push(() => makeCharacter(
  25789. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25790. {
  25791. front: {
  25792. height: math.unit(100, "feet"),
  25793. name: "Front",
  25794. image: {
  25795. source: "./media/characters/erza-bear/front.svg",
  25796. extra: 2449 / 2390,
  25797. bottom: 46 / 2494
  25798. }
  25799. },
  25800. back: {
  25801. height: math.unit(100, "feet"),
  25802. name: "Back",
  25803. image: {
  25804. source: "./media/characters/erza-bear/back.svg",
  25805. extra: 2489 / 2430,
  25806. bottom: 85.4 / 2480
  25807. }
  25808. },
  25809. tail: {
  25810. height: math.unit(42, "feet"),
  25811. name: "Tail",
  25812. image: {
  25813. source: "./media/characters/erza-bear/tail.svg"
  25814. }
  25815. },
  25816. tongue: {
  25817. height: math.unit(8, "feet"),
  25818. name: "Tongue",
  25819. image: {
  25820. source: "./media/characters/erza-bear/tongue.svg"
  25821. }
  25822. },
  25823. dick: {
  25824. height: math.unit(10.5, "feet"),
  25825. name: "Dick",
  25826. image: {
  25827. source: "./media/characters/erza-bear/dick.svg"
  25828. }
  25829. },
  25830. dickVertical: {
  25831. height: math.unit(16.9, "feet"),
  25832. name: "Dick (Vertical)",
  25833. image: {
  25834. source: "./media/characters/erza-bear/dick-vertical.svg"
  25835. }
  25836. },
  25837. },
  25838. [
  25839. {
  25840. name: "Macro",
  25841. height: math.unit(100, "feet"),
  25842. default: true
  25843. },
  25844. ]
  25845. ))
  25846. characterMakers.push(() => makeCharacter(
  25847. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25848. {
  25849. front: {
  25850. height: math.unit(172, "cm"),
  25851. weight: math.unit(73, "kg"),
  25852. name: "Front",
  25853. image: {
  25854. source: "./media/characters/violet-flor/front.svg",
  25855. extra: 1474/1379,
  25856. bottom: 113/1587
  25857. }
  25858. },
  25859. back: {
  25860. height: math.unit(180, "cm"),
  25861. weight: math.unit(73, "kg"),
  25862. name: "Back",
  25863. image: {
  25864. source: "./media/characters/violet-flor/back.svg",
  25865. extra: 1660/1567,
  25866. bottom: 49/1709
  25867. }
  25868. },
  25869. },
  25870. [
  25871. {
  25872. name: "Normal",
  25873. height: math.unit(172, "cm"),
  25874. default: true
  25875. },
  25876. ]
  25877. ))
  25878. characterMakers.push(() => makeCharacter(
  25879. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25880. {
  25881. front: {
  25882. height: math.unit(6, "feet"),
  25883. weight: math.unit(220, "lb"),
  25884. name: "Front",
  25885. image: {
  25886. source: "./media/characters/lynn-rhea/front.svg",
  25887. extra: 310 / 273
  25888. }
  25889. },
  25890. back: {
  25891. height: math.unit(6, "feet"),
  25892. weight: math.unit(220, "lb"),
  25893. name: "Back",
  25894. image: {
  25895. source: "./media/characters/lynn-rhea/back.svg",
  25896. extra: 310 / 273
  25897. }
  25898. },
  25899. dicks: {
  25900. height: math.unit(0.9, "feet"),
  25901. name: "Dicks",
  25902. image: {
  25903. source: "./media/characters/lynn-rhea/dicks.svg"
  25904. }
  25905. },
  25906. slit: {
  25907. height: math.unit(0.4, "feet"),
  25908. name: "Slit",
  25909. image: {
  25910. source: "./media/characters/lynn-rhea/slit.svg"
  25911. }
  25912. },
  25913. },
  25914. [
  25915. {
  25916. name: "Micro",
  25917. height: math.unit(1, "inch")
  25918. },
  25919. {
  25920. name: "Macro",
  25921. height: math.unit(60, "feet"),
  25922. default: true
  25923. },
  25924. {
  25925. name: "Megamacro",
  25926. height: math.unit(2, "miles")
  25927. },
  25928. {
  25929. name: "Gigamacro",
  25930. height: math.unit(3, "earths")
  25931. },
  25932. {
  25933. name: "Galactic",
  25934. height: math.unit(0.8, "galaxies")
  25935. },
  25936. ]
  25937. ))
  25938. characterMakers.push(() => makeCharacter(
  25939. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25940. {
  25941. front: {
  25942. height: math.unit(1600, "feet"),
  25943. weight: math.unit(85758785169, "kg"),
  25944. name: "Front",
  25945. image: {
  25946. source: "./media/characters/valathos/front.svg",
  25947. extra: 1451 / 1339
  25948. }
  25949. },
  25950. },
  25951. [
  25952. {
  25953. name: "Macro",
  25954. height: math.unit(1600, "feet"),
  25955. default: true
  25956. },
  25957. ]
  25958. ))
  25959. characterMakers.push(() => makeCharacter(
  25960. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25961. {
  25962. front: {
  25963. height: math.unit(7 + 5 / 12, "feet"),
  25964. weight: math.unit(300, "lb"),
  25965. name: "Front",
  25966. image: {
  25967. source: "./media/characters/azula/front.svg",
  25968. extra: 3208 / 2880,
  25969. bottom: 80.2 / 3277
  25970. }
  25971. },
  25972. back: {
  25973. height: math.unit(7 + 5 / 12, "feet"),
  25974. weight: math.unit(300, "lb"),
  25975. name: "Back",
  25976. image: {
  25977. source: "./media/characters/azula/back.svg",
  25978. extra: 3169 / 2822,
  25979. bottom: 150.6 / 3321
  25980. }
  25981. },
  25982. },
  25983. [
  25984. {
  25985. name: "Normal",
  25986. height: math.unit(7 + 5 / 12, "feet"),
  25987. default: true
  25988. },
  25989. {
  25990. name: "Big",
  25991. height: math.unit(20, "feet")
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(5 + 1 / 12, "feet"),
  26000. weight: math.unit(110, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/rupert/front.svg",
  26004. extra: 1549 / 1495,
  26005. bottom: 54.2 / 1604.4
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(5 + 1 / 12, "feet"),
  26013. default: true
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26019. {
  26020. front: {
  26021. height: math.unit(8 + 4 / 12, "feet"),
  26022. weight: math.unit(350, "lb"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/sheera-castellar/front.svg",
  26026. extra: 1957 / 1894,
  26027. bottom: 26.97 / 1975.017
  26028. }
  26029. },
  26030. side: {
  26031. height: math.unit(8 + 4 / 12, "feet"),
  26032. weight: math.unit(350, "lb"),
  26033. name: "Side",
  26034. image: {
  26035. source: "./media/characters/sheera-castellar/side.svg",
  26036. extra: 1957 / 1894
  26037. }
  26038. },
  26039. back: {
  26040. height: math.unit(8 + 4 / 12, "feet"),
  26041. weight: math.unit(350, "lb"),
  26042. name: "Back",
  26043. image: {
  26044. source: "./media/characters/sheera-castellar/back.svg",
  26045. extra: 1957 / 1894
  26046. }
  26047. },
  26048. angled: {
  26049. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26050. weight: math.unit(350, "lb"),
  26051. name: "Angled",
  26052. image: {
  26053. source: "./media/characters/sheera-castellar/angled.svg",
  26054. extra: 1807 / 1707,
  26055. bottom: 68 / 1875
  26056. }
  26057. },
  26058. genitals: {
  26059. height: math.unit(2.2, "feet"),
  26060. name: "Genitals",
  26061. image: {
  26062. source: "./media/characters/sheera-castellar/genitals.svg"
  26063. }
  26064. },
  26065. taur: {
  26066. height: math.unit(10 + 6/12, "feet"),
  26067. name: "Taur",
  26068. image: {
  26069. source: "./media/characters/sheera-castellar/taur.svg",
  26070. extra: 2017/1909,
  26071. bottom: 185/2202
  26072. }
  26073. },
  26074. },
  26075. [
  26076. {
  26077. name: "Normal",
  26078. height: math.unit(8 + 4 / 12, "feet")
  26079. },
  26080. {
  26081. name: "Macro",
  26082. height: math.unit(150, "feet"),
  26083. default: true
  26084. },
  26085. {
  26086. name: "Macro+",
  26087. height: math.unit(800, "feet")
  26088. },
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26093. {
  26094. front: {
  26095. height: math.unit(6, "feet"),
  26096. weight: math.unit(150, "lb"),
  26097. name: "Front",
  26098. image: {
  26099. source: "./media/characters/jaipur/front.svg",
  26100. extra: 3860 / 3731,
  26101. bottom: 287 / 4140
  26102. }
  26103. },
  26104. back: {
  26105. height: math.unit(6, "feet"),
  26106. weight: math.unit(150, "lb"),
  26107. name: "Back",
  26108. image: {
  26109. source: "./media/characters/jaipur/back.svg",
  26110. extra: 1637/1561,
  26111. bottom: 154/1791
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Normal",
  26118. height: math.unit(1.85, "meters"),
  26119. default: true
  26120. },
  26121. {
  26122. name: "Macro",
  26123. height: math.unit(150, "meters")
  26124. },
  26125. {
  26126. name: "Macro+",
  26127. height: math.unit(0.5, "miles")
  26128. },
  26129. {
  26130. name: "Macro++",
  26131. height: math.unit(2.5, "miles")
  26132. },
  26133. {
  26134. name: "Macro+++",
  26135. height: math.unit(12, "miles")
  26136. },
  26137. {
  26138. name: "Macro++++",
  26139. height: math.unit(120, "miles")
  26140. },
  26141. {
  26142. name: "Macro+++++",
  26143. height: math.unit(1200, "miles")
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26149. {
  26150. front: {
  26151. height: math.unit(6, "feet"),
  26152. weight: math.unit(150, "lb"),
  26153. name: "Front",
  26154. image: {
  26155. source: "./media/characters/sheila-wolf/front.svg",
  26156. extra: 1931 / 1808,
  26157. bottom: 29.5 / 1960
  26158. }
  26159. },
  26160. dick: {
  26161. height: math.unit(1.464, "feet"),
  26162. name: "Dick",
  26163. image: {
  26164. source: "./media/characters/sheila-wolf/dick.svg"
  26165. }
  26166. },
  26167. muzzle: {
  26168. height: math.unit(0.513, "feet"),
  26169. name: "Muzzle",
  26170. image: {
  26171. source: "./media/characters/sheila-wolf/muzzle.svg"
  26172. }
  26173. },
  26174. },
  26175. [
  26176. {
  26177. name: "Macro",
  26178. height: math.unit(70, "feet"),
  26179. default: true
  26180. },
  26181. ]
  26182. ))
  26183. characterMakers.push(() => makeCharacter(
  26184. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26185. {
  26186. front: {
  26187. height: math.unit(32, "meters"),
  26188. weight: math.unit(300000, "kg"),
  26189. name: "Front",
  26190. image: {
  26191. source: "./media/characters/almor/front.svg",
  26192. extra: 1408 / 1322,
  26193. bottom: 94.6 / 1506.5
  26194. }
  26195. },
  26196. },
  26197. [
  26198. {
  26199. name: "Macro",
  26200. height: math.unit(32, "meters"),
  26201. default: true
  26202. },
  26203. ]
  26204. ))
  26205. characterMakers.push(() => makeCharacter(
  26206. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26207. {
  26208. front: {
  26209. height: math.unit(7, "feet"),
  26210. weight: math.unit(200, "lb"),
  26211. name: "Front",
  26212. image: {
  26213. source: "./media/characters/silver/front.svg",
  26214. extra: 472.1 / 450.5,
  26215. bottom: 26.5 / 499.424
  26216. }
  26217. },
  26218. },
  26219. [
  26220. {
  26221. name: "Normal",
  26222. height: math.unit(7, "feet"),
  26223. default: true
  26224. },
  26225. {
  26226. name: "Macro",
  26227. height: math.unit(800, "feet")
  26228. },
  26229. {
  26230. name: "Megamacro",
  26231. height: math.unit(250, "miles")
  26232. },
  26233. ]
  26234. ))
  26235. characterMakers.push(() => makeCharacter(
  26236. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26237. {
  26238. front: {
  26239. height: math.unit(6, "feet"),
  26240. weight: math.unit(150, "lb"),
  26241. name: "Front",
  26242. image: {
  26243. source: "./media/characters/pliskin/front.svg",
  26244. extra: 1469 / 1359,
  26245. bottom: 70 / 1540
  26246. }
  26247. },
  26248. },
  26249. [
  26250. {
  26251. name: "Micro",
  26252. height: math.unit(3, "inches")
  26253. },
  26254. {
  26255. name: "Normal",
  26256. height: math.unit(5 + 11 / 12, "feet"),
  26257. default: true
  26258. },
  26259. {
  26260. name: "Macro",
  26261. height: math.unit(120, "feet")
  26262. },
  26263. ]
  26264. ))
  26265. characterMakers.push(() => makeCharacter(
  26266. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26267. {
  26268. front: {
  26269. height: math.unit(6, "feet"),
  26270. weight: math.unit(150, "lb"),
  26271. name: "Front",
  26272. image: {
  26273. source: "./media/characters/sammy/front.svg",
  26274. extra: 1193 / 1089,
  26275. bottom: 30.5 / 1226
  26276. }
  26277. },
  26278. },
  26279. [
  26280. {
  26281. name: "Macro",
  26282. height: math.unit(1700, "feet"),
  26283. default: true
  26284. },
  26285. {
  26286. name: "Examacro",
  26287. height: math.unit(2.5e9, "lightyears")
  26288. },
  26289. ]
  26290. ))
  26291. characterMakers.push(() => makeCharacter(
  26292. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26293. {
  26294. front: {
  26295. height: math.unit(21, "meters"),
  26296. weight: math.unit(12, "tonnes"),
  26297. name: "Front",
  26298. image: {
  26299. source: "./media/characters/kuru/front.svg",
  26300. extra: 4301 / 3785,
  26301. bottom: 371.3 / 4691
  26302. }
  26303. },
  26304. },
  26305. [
  26306. {
  26307. name: "Macro",
  26308. height: math.unit(21, "meters"),
  26309. default: true
  26310. },
  26311. ]
  26312. ))
  26313. characterMakers.push(() => makeCharacter(
  26314. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26315. {
  26316. front: {
  26317. height: math.unit(23, "meters"),
  26318. weight: math.unit(12.2, "tonnes"),
  26319. name: "Front",
  26320. image: {
  26321. source: "./media/characters/rakka/front.svg",
  26322. extra: 4670 / 4169,
  26323. bottom: 301 / 4968.7
  26324. }
  26325. },
  26326. },
  26327. [
  26328. {
  26329. name: "Macro",
  26330. height: math.unit(23, "meters"),
  26331. default: true
  26332. },
  26333. ]
  26334. ))
  26335. characterMakers.push(() => makeCharacter(
  26336. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26337. {
  26338. front: {
  26339. height: math.unit(6, "feet"),
  26340. weight: math.unit(150, "lb"),
  26341. name: "Front",
  26342. image: {
  26343. source: "./media/characters/rhys-feline/front.svg",
  26344. extra: 2488 / 2308,
  26345. bottom: 35.67 / 2519.19
  26346. }
  26347. },
  26348. },
  26349. [
  26350. {
  26351. name: "Really Small",
  26352. height: math.unit(1, "nm")
  26353. },
  26354. {
  26355. name: "Micro",
  26356. height: math.unit(4, "inches")
  26357. },
  26358. {
  26359. name: "Normal",
  26360. height: math.unit(4 + 10 / 12, "feet"),
  26361. default: true
  26362. },
  26363. {
  26364. name: "Macro",
  26365. height: math.unit(100, "feet")
  26366. },
  26367. {
  26368. name: "Megamacto",
  26369. height: math.unit(50, "miles")
  26370. },
  26371. ]
  26372. ))
  26373. characterMakers.push(() => makeCharacter(
  26374. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26375. {
  26376. side: {
  26377. height: math.unit(30, "feet"),
  26378. weight: math.unit(35000, "kg"),
  26379. name: "Side",
  26380. image: {
  26381. source: "./media/characters/alydar/side.svg",
  26382. extra: 234 / 222,
  26383. bottom: 6.5 / 241
  26384. }
  26385. },
  26386. front: {
  26387. height: math.unit(30, "feet"),
  26388. weight: math.unit(35000, "kg"),
  26389. name: "Front",
  26390. image: {
  26391. source: "./media/characters/alydar/front.svg",
  26392. extra: 223.37 / 210.2,
  26393. bottom: 22.3 / 246.76
  26394. }
  26395. },
  26396. top: {
  26397. height: math.unit(64.54, "feet"),
  26398. weight: math.unit(35000, "kg"),
  26399. name: "Top",
  26400. image: {
  26401. source: "./media/characters/alydar/top.svg"
  26402. }
  26403. },
  26404. anthro: {
  26405. height: math.unit(30, "feet"),
  26406. weight: math.unit(9000, "kg"),
  26407. name: "Anthro",
  26408. image: {
  26409. source: "./media/characters/alydar/anthro.svg",
  26410. extra: 432 / 421,
  26411. bottom: 7.18 / 440
  26412. }
  26413. },
  26414. maw: {
  26415. height: math.unit(11.693, "feet"),
  26416. name: "Maw",
  26417. image: {
  26418. source: "./media/characters/alydar/maw.svg"
  26419. }
  26420. },
  26421. head: {
  26422. height: math.unit(11.693, "feet"),
  26423. name: "Head",
  26424. image: {
  26425. source: "./media/characters/alydar/head.svg"
  26426. }
  26427. },
  26428. headAlt: {
  26429. height: math.unit(12.861, "feet"),
  26430. name: "Head (Alt)",
  26431. image: {
  26432. source: "./media/characters/alydar/head-alt.svg"
  26433. }
  26434. },
  26435. wing: {
  26436. height: math.unit(20.712, "feet"),
  26437. name: "Wing",
  26438. image: {
  26439. source: "./media/characters/alydar/wing.svg"
  26440. }
  26441. },
  26442. wingFeather: {
  26443. height: math.unit(9.662, "feet"),
  26444. name: "Wing Feather",
  26445. image: {
  26446. source: "./media/characters/alydar/wing-feather.svg"
  26447. }
  26448. },
  26449. countourFeather: {
  26450. height: math.unit(4.154, "feet"),
  26451. name: "Contour Feather",
  26452. image: {
  26453. source: "./media/characters/alydar/contour-feather.svg"
  26454. }
  26455. },
  26456. },
  26457. [
  26458. {
  26459. name: "Diplomatic",
  26460. height: math.unit(13, "feet"),
  26461. default: true
  26462. },
  26463. {
  26464. name: "Small",
  26465. height: math.unit(30, "feet")
  26466. },
  26467. {
  26468. name: "Normal",
  26469. height: math.unit(95, "feet"),
  26470. default: true
  26471. },
  26472. {
  26473. name: "Large",
  26474. height: math.unit(285, "feet")
  26475. },
  26476. {
  26477. name: "Incomprehensible",
  26478. height: math.unit(450, "megameters")
  26479. },
  26480. ]
  26481. ))
  26482. characterMakers.push(() => makeCharacter(
  26483. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26484. {
  26485. side: {
  26486. height: math.unit(11, "feet"),
  26487. weight: math.unit(1750, "kg"),
  26488. name: "Side",
  26489. image: {
  26490. source: "./media/characters/selicia/side.svg",
  26491. extra: 440 / 396,
  26492. bottom: 24.8 / 465.979
  26493. }
  26494. },
  26495. maw: {
  26496. height: math.unit(4.665, "feet"),
  26497. name: "Maw",
  26498. image: {
  26499. source: "./media/characters/selicia/maw.svg"
  26500. }
  26501. },
  26502. },
  26503. [
  26504. {
  26505. name: "Normal",
  26506. height: math.unit(11, "feet"),
  26507. default: true
  26508. },
  26509. ]
  26510. ))
  26511. characterMakers.push(() => makeCharacter(
  26512. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26513. {
  26514. side: {
  26515. height: math.unit(2 + 6 / 12, "feet"),
  26516. weight: math.unit(30, "lb"),
  26517. name: "Side",
  26518. image: {
  26519. source: "./media/characters/layla/side.svg",
  26520. extra: 244 / 188,
  26521. bottom: 18.2 / 262.1
  26522. }
  26523. },
  26524. back: {
  26525. height: math.unit(2 + 6 / 12, "feet"),
  26526. weight: math.unit(30, "lb"),
  26527. name: "Back",
  26528. image: {
  26529. source: "./media/characters/layla/back.svg",
  26530. extra: 308 / 241.5,
  26531. bottom: 8.9 / 316.8
  26532. }
  26533. },
  26534. cumming: {
  26535. height: math.unit(2 + 6 / 12, "feet"),
  26536. weight: math.unit(30, "lb"),
  26537. name: "Cumming",
  26538. image: {
  26539. source: "./media/characters/layla/cumming.svg",
  26540. extra: 342 / 279,
  26541. bottom: 595 / 938
  26542. }
  26543. },
  26544. dickFlaccid: {
  26545. height: math.unit(2.595, "feet"),
  26546. name: "Flaccid Genitals",
  26547. image: {
  26548. source: "./media/characters/layla/dick-flaccid.svg"
  26549. }
  26550. },
  26551. dickErect: {
  26552. height: math.unit(2.359, "feet"),
  26553. name: "Erect Genitals",
  26554. image: {
  26555. source: "./media/characters/layla/dick-erect.svg"
  26556. }
  26557. },
  26558. dragon: {
  26559. height: math.unit(40, "feet"),
  26560. name: "Dragon",
  26561. image: {
  26562. source: "./media/characters/layla/dragon.svg",
  26563. extra: 610/535,
  26564. bottom: 367/977
  26565. }
  26566. },
  26567. taur: {
  26568. height: math.unit(30, "feet"),
  26569. name: "Taur",
  26570. image: {
  26571. source: "./media/characters/layla/taur.svg",
  26572. extra: 1268/1199,
  26573. bottom: 112/1380
  26574. }
  26575. },
  26576. },
  26577. [
  26578. {
  26579. name: "Micro",
  26580. height: math.unit(1, "inch")
  26581. },
  26582. {
  26583. name: "Small",
  26584. height: math.unit(1, "foot")
  26585. },
  26586. {
  26587. name: "Normal",
  26588. height: math.unit(2 + 6 / 12, "feet"),
  26589. default: true
  26590. },
  26591. {
  26592. name: "Macro",
  26593. height: math.unit(200, "feet")
  26594. },
  26595. {
  26596. name: "Megamacro",
  26597. height: math.unit(1000, "miles")
  26598. },
  26599. {
  26600. name: "Planetary",
  26601. height: math.unit(8000, "miles")
  26602. },
  26603. {
  26604. name: "True Layla",
  26605. height: math.unit(200000 * 7, "multiverses")
  26606. },
  26607. ]
  26608. ))
  26609. characterMakers.push(() => makeCharacter(
  26610. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26611. {
  26612. back: {
  26613. height: math.unit(10.5, "feet"),
  26614. weight: math.unit(800, "lb"),
  26615. name: "Back",
  26616. image: {
  26617. source: "./media/characters/knox/back.svg",
  26618. extra: 1486 / 1089,
  26619. bottom: 107 / 1601.4
  26620. }
  26621. },
  26622. side: {
  26623. height: math.unit(10.5, "feet"),
  26624. weight: math.unit(800, "lb"),
  26625. name: "Side",
  26626. image: {
  26627. source: "./media/characters/knox/side.svg",
  26628. extra: 244 / 218,
  26629. bottom: 14 / 260
  26630. }
  26631. },
  26632. },
  26633. [
  26634. {
  26635. name: "Compact",
  26636. height: math.unit(10.5, "feet"),
  26637. default: true
  26638. },
  26639. {
  26640. name: "Dynamax",
  26641. height: math.unit(210, "feet")
  26642. },
  26643. {
  26644. name: "Full Macro",
  26645. height: math.unit(850, "feet")
  26646. },
  26647. ]
  26648. ))
  26649. characterMakers.push(() => makeCharacter(
  26650. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26651. {
  26652. front: {
  26653. height: math.unit(28, "feet"),
  26654. weight: math.unit(10500, "lb"),
  26655. name: "Front",
  26656. image: {
  26657. source: "./media/characters/kayda/front.svg",
  26658. extra: 1536 / 1428,
  26659. bottom: 68.7 / 1603
  26660. }
  26661. },
  26662. back: {
  26663. height: math.unit(28, "feet"),
  26664. weight: math.unit(10500, "lb"),
  26665. name: "Back",
  26666. image: {
  26667. source: "./media/characters/kayda/back.svg",
  26668. extra: 1557 / 1464,
  26669. bottom: 39.5 / 1597.49
  26670. }
  26671. },
  26672. dick: {
  26673. height: math.unit(3.858, "feet"),
  26674. name: "Dick",
  26675. image: {
  26676. source: "./media/characters/kayda/dick.svg"
  26677. }
  26678. },
  26679. },
  26680. [
  26681. {
  26682. name: "Macro",
  26683. height: math.unit(28, "feet"),
  26684. default: true
  26685. },
  26686. ]
  26687. ))
  26688. characterMakers.push(() => makeCharacter(
  26689. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26690. {
  26691. front: {
  26692. height: math.unit(10 + 11 / 12, "feet"),
  26693. weight: math.unit(1400, "lb"),
  26694. name: "Front",
  26695. image: {
  26696. source: "./media/characters/brian/front.svg",
  26697. extra: 737 / 692,
  26698. bottom: 55.4 / 785
  26699. }
  26700. },
  26701. },
  26702. [
  26703. {
  26704. name: "Normal",
  26705. height: math.unit(10 + 11 / 12, "feet"),
  26706. default: true
  26707. },
  26708. ]
  26709. ))
  26710. characterMakers.push(() => makeCharacter(
  26711. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26712. {
  26713. front: {
  26714. height: math.unit(5 + 8 / 12, "feet"),
  26715. weight: math.unit(140, "lb"),
  26716. name: "Front",
  26717. image: {
  26718. source: "./media/characters/khemri/front.svg",
  26719. extra: 4780 / 4059,
  26720. bottom: 80.1 / 4859.25
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Micro",
  26727. height: math.unit(6, "inches")
  26728. },
  26729. {
  26730. name: "Normal",
  26731. height: math.unit(5 + 8 / 12, "feet"),
  26732. default: true
  26733. },
  26734. ]
  26735. ))
  26736. characterMakers.push(() => makeCharacter(
  26737. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26738. {
  26739. front: {
  26740. height: math.unit(13, "feet"),
  26741. weight: math.unit(1700, "lb"),
  26742. name: "Front",
  26743. image: {
  26744. source: "./media/characters/felix-braveheart/front.svg",
  26745. extra: 1222 / 1157,
  26746. bottom: 53.2 / 1280
  26747. }
  26748. },
  26749. back: {
  26750. height: math.unit(13, "feet"),
  26751. weight: math.unit(1700, "lb"),
  26752. name: "Back",
  26753. image: {
  26754. source: "./media/characters/felix-braveheart/back.svg",
  26755. extra: 1277 / 1203,
  26756. bottom: 50.2 / 1327
  26757. }
  26758. },
  26759. feral: {
  26760. height: math.unit(6, "feet"),
  26761. weight: math.unit(400, "lb"),
  26762. name: "Feral",
  26763. image: {
  26764. source: "./media/characters/felix-braveheart/feral.svg",
  26765. extra: 682 / 625,
  26766. bottom: 6.9 / 688
  26767. }
  26768. },
  26769. },
  26770. [
  26771. {
  26772. name: "Normal",
  26773. height: math.unit(13, "feet"),
  26774. default: true
  26775. },
  26776. ]
  26777. ))
  26778. characterMakers.push(() => makeCharacter(
  26779. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26780. {
  26781. side: {
  26782. height: math.unit(5 + 11 / 12, "feet"),
  26783. weight: math.unit(1400, "lb"),
  26784. name: "Side",
  26785. image: {
  26786. source: "./media/characters/shadow-blade/side.svg",
  26787. extra: 1726 / 1267,
  26788. bottom: 58.4 / 1785
  26789. }
  26790. },
  26791. },
  26792. [
  26793. {
  26794. name: "Normal",
  26795. height: math.unit(5 + 11 / 12, "feet"),
  26796. default: true
  26797. },
  26798. ]
  26799. ))
  26800. characterMakers.push(() => makeCharacter(
  26801. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26802. {
  26803. front: {
  26804. height: math.unit(1 + 6 / 12, "feet"),
  26805. weight: math.unit(25, "lb"),
  26806. name: "Front",
  26807. image: {
  26808. source: "./media/characters/karla-halldor/front.svg",
  26809. extra: 1459 / 1383,
  26810. bottom: 12 / 1472
  26811. }
  26812. },
  26813. },
  26814. [
  26815. {
  26816. name: "Normal",
  26817. height: math.unit(1 + 6 / 12, "feet"),
  26818. default: true
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26824. {
  26825. front: {
  26826. height: math.unit(6 + 2 / 12, "feet"),
  26827. weight: math.unit(160, "lb"),
  26828. name: "Front",
  26829. image: {
  26830. source: "./media/characters/ariam/front.svg",
  26831. extra: 1073/976,
  26832. bottom: 52/1125
  26833. }
  26834. },
  26835. back: {
  26836. height: math.unit(6 + 2/12, "feet"),
  26837. weight: math.unit(160, "lb"),
  26838. name: "Back",
  26839. image: {
  26840. source: "./media/characters/ariam/back.svg",
  26841. extra: 1103/1023,
  26842. bottom: 9/1112
  26843. }
  26844. },
  26845. dressed: {
  26846. height: math.unit(6 + 2/12, "feet"),
  26847. weight: math.unit(160, "lb"),
  26848. name: "Dressed",
  26849. image: {
  26850. source: "./media/characters/ariam/dressed.svg",
  26851. extra: 1099/1009,
  26852. bottom: 25/1124
  26853. }
  26854. },
  26855. squatting: {
  26856. height: math.unit(4.1, "feet"),
  26857. weight: math.unit(160, "lb"),
  26858. name: "Squatting",
  26859. image: {
  26860. source: "./media/characters/ariam/squatting.svg",
  26861. extra: 2617 / 2112,
  26862. bottom: 61.2 / 2681,
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Normal",
  26869. height: math.unit(6 + 2 / 12, "feet"),
  26870. default: true
  26871. },
  26872. {
  26873. name: "Normal+",
  26874. height: math.unit(4, "meters")
  26875. },
  26876. {
  26877. name: "Macro",
  26878. height: math.unit(50, "meters")
  26879. },
  26880. {
  26881. name: "Macro+",
  26882. height: math.unit(100, "meters")
  26883. },
  26884. {
  26885. name: "Megamacro",
  26886. height: math.unit(20, "km")
  26887. },
  26888. {
  26889. name: "Caretaker",
  26890. height: math.unit(444, "megameters")
  26891. },
  26892. ]
  26893. ))
  26894. characterMakers.push(() => makeCharacter(
  26895. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26896. {
  26897. front: {
  26898. height: math.unit(1.67, "meters"),
  26899. weight: math.unit(140, "lb"),
  26900. name: "Front",
  26901. image: {
  26902. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26903. extra: 438 / 410,
  26904. bottom: 0.75 / 439
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Shrunken",
  26911. height: math.unit(7.6, "cm")
  26912. },
  26913. {
  26914. name: "Human Scale",
  26915. height: math.unit(1.67, "meters")
  26916. },
  26917. {
  26918. name: "Wolxi Scale",
  26919. height: math.unit(36.7, "meters"),
  26920. default: true
  26921. },
  26922. ]
  26923. ))
  26924. characterMakers.push(() => makeCharacter(
  26925. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26926. {
  26927. front: {
  26928. height: math.unit(1.73, "meters"),
  26929. weight: math.unit(240, "lb"),
  26930. name: "Front",
  26931. image: {
  26932. source: "./media/characters/izue-two-mothers/front.svg",
  26933. extra: 469 / 437,
  26934. bottom: 1.24 / 470.6
  26935. }
  26936. },
  26937. },
  26938. [
  26939. {
  26940. name: "Shrunken",
  26941. height: math.unit(7.86, "cm")
  26942. },
  26943. {
  26944. name: "Human Scale",
  26945. height: math.unit(1.73, "meters")
  26946. },
  26947. {
  26948. name: "Wolxi Scale",
  26949. height: math.unit(38, "meters"),
  26950. default: true
  26951. },
  26952. ]
  26953. ))
  26954. characterMakers.push(() => makeCharacter(
  26955. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26956. {
  26957. front: {
  26958. height: math.unit(1.55, "meters"),
  26959. weight: math.unit(120, "lb"),
  26960. name: "Front",
  26961. image: {
  26962. source: "./media/characters/teeku-love-shack/front.svg",
  26963. extra: 387 / 362,
  26964. bottom: 1.51 / 388
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Shrunken",
  26971. height: math.unit(7, "cm")
  26972. },
  26973. {
  26974. name: "Human Scale",
  26975. height: math.unit(1.55, "meters")
  26976. },
  26977. {
  26978. name: "Wolxi Scale",
  26979. height: math.unit(34.1, "meters"),
  26980. default: true
  26981. },
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26986. {
  26987. front: {
  26988. height: math.unit(1.83, "meters"),
  26989. weight: math.unit(135, "lb"),
  26990. name: "Front",
  26991. image: {
  26992. source: "./media/characters/dejma-the-red/front.svg",
  26993. extra: 480 / 458,
  26994. bottom: 1.8 / 482
  26995. }
  26996. },
  26997. },
  26998. [
  26999. {
  27000. name: "Shrunken",
  27001. height: math.unit(8.3, "cm")
  27002. },
  27003. {
  27004. name: "Human Scale",
  27005. height: math.unit(1.83, "meters")
  27006. },
  27007. {
  27008. name: "Wolxi Scale",
  27009. height: math.unit(40, "meters"),
  27010. default: true
  27011. },
  27012. ]
  27013. ))
  27014. characterMakers.push(() => makeCharacter(
  27015. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27016. {
  27017. front: {
  27018. height: math.unit(1.78, "meters"),
  27019. weight: math.unit(65, "kg"),
  27020. name: "Front",
  27021. image: {
  27022. source: "./media/characters/aki/front.svg",
  27023. extra: 452 / 415
  27024. }
  27025. },
  27026. frontNsfw: {
  27027. height: math.unit(1.78, "meters"),
  27028. weight: math.unit(65, "kg"),
  27029. name: "Front (NSFW)",
  27030. image: {
  27031. source: "./media/characters/aki/front-nsfw.svg",
  27032. extra: 452 / 415
  27033. }
  27034. },
  27035. back: {
  27036. height: math.unit(1.78, "meters"),
  27037. weight: math.unit(65, "kg"),
  27038. name: "Back",
  27039. image: {
  27040. source: "./media/characters/aki/back.svg",
  27041. extra: 452 / 415
  27042. }
  27043. },
  27044. rump: {
  27045. height: math.unit(2.05, "feet"),
  27046. name: "Rump",
  27047. image: {
  27048. source: "./media/characters/aki/rump.svg"
  27049. }
  27050. },
  27051. dick: {
  27052. height: math.unit(0.95, "feet"),
  27053. name: "Dick",
  27054. image: {
  27055. source: "./media/characters/aki/dick.svg"
  27056. }
  27057. },
  27058. },
  27059. [
  27060. {
  27061. name: "Micro",
  27062. height: math.unit(15, "cm")
  27063. },
  27064. {
  27065. name: "Normal",
  27066. height: math.unit(178, "cm"),
  27067. default: true
  27068. },
  27069. {
  27070. name: "Macro",
  27071. height: math.unit(214, "m")
  27072. },
  27073. {
  27074. name: "Macro+",
  27075. height: math.unit(534, "m")
  27076. },
  27077. ]
  27078. ))
  27079. characterMakers.push(() => makeCharacter(
  27080. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27081. {
  27082. front: {
  27083. height: math.unit(5 + 5 / 12, "feet"),
  27084. weight: math.unit(120, "lb"),
  27085. name: "Front",
  27086. image: {
  27087. source: "./media/characters/ari/front.svg",
  27088. extra: 1550/1471,
  27089. bottom: 39/1589
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Normal",
  27096. height: math.unit(5 + 5 / 12, "feet")
  27097. },
  27098. {
  27099. name: "Macro",
  27100. height: math.unit(100, "feet"),
  27101. default: true
  27102. },
  27103. {
  27104. name: "Megamacro",
  27105. height: math.unit(100, "miles")
  27106. },
  27107. {
  27108. name: "Gigamacro",
  27109. height: math.unit(80000, "miles")
  27110. },
  27111. ]
  27112. ))
  27113. characterMakers.push(() => makeCharacter(
  27114. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27115. {
  27116. side: {
  27117. height: math.unit(9, "feet"),
  27118. weight: math.unit(400, "kg"),
  27119. name: "Side",
  27120. image: {
  27121. source: "./media/characters/bolt/side.svg",
  27122. extra: 1126 / 896,
  27123. bottom: 60 / 1187.3,
  27124. }
  27125. },
  27126. },
  27127. [
  27128. {
  27129. name: "Micro",
  27130. height: math.unit(5, "inches")
  27131. },
  27132. {
  27133. name: "Normal",
  27134. height: math.unit(9, "feet"),
  27135. default: true
  27136. },
  27137. {
  27138. name: "Macro",
  27139. height: math.unit(700, "feet")
  27140. },
  27141. {
  27142. name: "Max Size",
  27143. height: math.unit(1.52e22, "yottameters")
  27144. },
  27145. ]
  27146. ))
  27147. characterMakers.push(() => makeCharacter(
  27148. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27149. {
  27150. front: {
  27151. height: math.unit(4.3, "meters"),
  27152. weight: math.unit(3, "tons"),
  27153. name: "Front",
  27154. image: {
  27155. source: "./media/characters/draekon-sylviar/front.svg",
  27156. extra: 2072/1512,
  27157. bottom: 74/2146
  27158. }
  27159. },
  27160. back: {
  27161. height: math.unit(4.3, "meters"),
  27162. weight: math.unit(3, "tons"),
  27163. name: "Back",
  27164. image: {
  27165. source: "./media/characters/draekon-sylviar/back.svg",
  27166. extra: 1639/1483,
  27167. bottom: 41/1680
  27168. }
  27169. },
  27170. feral: {
  27171. height: math.unit(1.15, "meters"),
  27172. weight: math.unit(3, "tons"),
  27173. name: "Feral",
  27174. image: {
  27175. source: "./media/characters/draekon-sylviar/feral.svg",
  27176. extra: 1033/395,
  27177. bottom: 130/1163
  27178. }
  27179. },
  27180. maw: {
  27181. height: math.unit(1.3, "meters"),
  27182. name: "Maw",
  27183. image: {
  27184. source: "./media/characters/draekon-sylviar/maw.svg"
  27185. }
  27186. },
  27187. mawSeparated: {
  27188. height: math.unit(1.53, "meters"),
  27189. name: "Separated Maw",
  27190. image: {
  27191. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27192. }
  27193. },
  27194. tail: {
  27195. height: math.unit(1.15, "meters"),
  27196. name: "Tail",
  27197. image: {
  27198. source: "./media/characters/draekon-sylviar/tail.svg"
  27199. }
  27200. },
  27201. tailDick: {
  27202. height: math.unit(1.15, "meters"),
  27203. name: "Tail (Dick)",
  27204. image: {
  27205. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27206. }
  27207. },
  27208. tailDickSeparated: {
  27209. height: math.unit(1.19, "meters"),
  27210. name: "Tail (Separated Dick)",
  27211. image: {
  27212. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27213. }
  27214. },
  27215. slit: {
  27216. height: math.unit(1, "meters"),
  27217. name: "Slit",
  27218. image: {
  27219. source: "./media/characters/draekon-sylviar/slit.svg"
  27220. }
  27221. },
  27222. dick: {
  27223. height: math.unit(1.15, "meters"),
  27224. name: "Dick",
  27225. image: {
  27226. source: "./media/characters/draekon-sylviar/dick.svg"
  27227. }
  27228. },
  27229. dickSeparated: {
  27230. height: math.unit(1.1, "meters"),
  27231. name: "Separated Dick",
  27232. image: {
  27233. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27234. }
  27235. },
  27236. sheath: {
  27237. height: math.unit(1.15, "meters"),
  27238. name: "Sheath",
  27239. image: {
  27240. source: "./media/characters/draekon-sylviar/sheath.svg"
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Small",
  27247. height: math.unit(4.53 / 2, "meters"),
  27248. default: true
  27249. },
  27250. {
  27251. name: "Normal",
  27252. height: math.unit(4.53, "meters"),
  27253. default: true
  27254. },
  27255. {
  27256. name: "Large",
  27257. height: math.unit(4.53 * 2, "meters"),
  27258. },
  27259. ]
  27260. ))
  27261. characterMakers.push(() => makeCharacter(
  27262. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27263. {
  27264. front: {
  27265. height: math.unit(6 + 2 / 12, "feet"),
  27266. weight: math.unit(180, "lb"),
  27267. name: "Front",
  27268. image: {
  27269. source: "./media/characters/brawler/front.svg",
  27270. extra: 3301 / 3027,
  27271. bottom: 138 / 3439
  27272. }
  27273. },
  27274. },
  27275. [
  27276. {
  27277. name: "Normal",
  27278. height: math.unit(6 + 2 / 12, "feet"),
  27279. default: true
  27280. },
  27281. ]
  27282. ))
  27283. characterMakers.push(() => makeCharacter(
  27284. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27285. {
  27286. front: {
  27287. height: math.unit(11, "feet"),
  27288. weight: math.unit(1000, "lb"),
  27289. name: "Front",
  27290. image: {
  27291. source: "./media/characters/alex/front.svg",
  27292. bottom: 44.5 / 620
  27293. }
  27294. },
  27295. },
  27296. [
  27297. {
  27298. name: "Micro",
  27299. height: math.unit(5, "inches")
  27300. },
  27301. {
  27302. name: "Normal",
  27303. height: math.unit(11, "feet"),
  27304. default: true
  27305. },
  27306. {
  27307. name: "Macro",
  27308. height: math.unit(9.5e9, "feet")
  27309. },
  27310. {
  27311. name: "Max Size",
  27312. height: math.unit(1.4e283, "yottameters")
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27318. {
  27319. female: {
  27320. height: math.unit(29.9, "m"),
  27321. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27322. name: "Female",
  27323. image: {
  27324. source: "./media/characters/zenari/female.svg",
  27325. extra: 3281.6 / 3217,
  27326. bottom: 72.2 / 3353
  27327. }
  27328. },
  27329. male: {
  27330. height: math.unit(27.7, "m"),
  27331. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27332. name: "Male",
  27333. image: {
  27334. source: "./media/characters/zenari/male.svg",
  27335. extra: 3008 / 2991,
  27336. bottom: 54.6 / 3069
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Macro",
  27343. height: math.unit(29.7, "meters"),
  27344. default: true
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27350. {
  27351. female: {
  27352. height: math.unit(23.8, "m"),
  27353. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27354. name: "Female",
  27355. image: {
  27356. source: "./media/characters/mactarian/female.svg",
  27357. extra: 2662 / 2569,
  27358. bottom: 73 / 2736
  27359. }
  27360. },
  27361. male: {
  27362. height: math.unit(23.8, "m"),
  27363. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27364. name: "Male",
  27365. image: {
  27366. source: "./media/characters/mactarian/male.svg",
  27367. extra: 2673 / 2600,
  27368. bottom: 76 / 2750
  27369. }
  27370. },
  27371. },
  27372. [
  27373. {
  27374. name: "Macro",
  27375. height: math.unit(23.8, "meters"),
  27376. default: true
  27377. },
  27378. ]
  27379. ))
  27380. characterMakers.push(() => makeCharacter(
  27381. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27382. {
  27383. female: {
  27384. height: math.unit(19.3, "m"),
  27385. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27386. name: "Female",
  27387. image: {
  27388. source: "./media/characters/umok/female.svg",
  27389. extra: 2186 / 2078,
  27390. bottom: 87 / 2277
  27391. }
  27392. },
  27393. male: {
  27394. height: math.unit(19.5, "m"),
  27395. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27396. name: "Male",
  27397. image: {
  27398. source: "./media/characters/umok/male.svg",
  27399. extra: 2233 / 2140,
  27400. bottom: 24.4 / 2258
  27401. }
  27402. },
  27403. },
  27404. [
  27405. {
  27406. name: "Macro",
  27407. height: math.unit(19.3, "meters"),
  27408. default: true
  27409. },
  27410. ]
  27411. ))
  27412. characterMakers.push(() => makeCharacter(
  27413. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27414. {
  27415. female: {
  27416. height: math.unit(26.15, "m"),
  27417. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27418. name: "Female",
  27419. image: {
  27420. source: "./media/characters/joraxian/female.svg",
  27421. extra: 2912 / 2824,
  27422. bottom: 36 / 2956
  27423. }
  27424. },
  27425. male: {
  27426. height: math.unit(25.4, "m"),
  27427. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27428. name: "Male",
  27429. image: {
  27430. source: "./media/characters/joraxian/male.svg",
  27431. extra: 2877 / 2721,
  27432. bottom: 82 / 2967
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Macro",
  27439. height: math.unit(26.15, "meters"),
  27440. default: true
  27441. },
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27446. {
  27447. female: {
  27448. height: math.unit(21.6, "m"),
  27449. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27450. name: "Female",
  27451. image: {
  27452. source: "./media/characters/sthara/female.svg",
  27453. extra: 2516 / 2347,
  27454. bottom: 21.5 / 2537
  27455. }
  27456. },
  27457. male: {
  27458. height: math.unit(24, "m"),
  27459. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27460. name: "Male",
  27461. image: {
  27462. source: "./media/characters/sthara/male.svg",
  27463. extra: 2732 / 2607,
  27464. bottom: 23 / 2732
  27465. }
  27466. },
  27467. },
  27468. [
  27469. {
  27470. name: "Macro",
  27471. height: math.unit(21.6, "meters"),
  27472. default: true
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27478. {
  27479. front: {
  27480. height: math.unit(6 + 4 / 12, "feet"),
  27481. weight: math.unit(175, "lb"),
  27482. name: "Front",
  27483. image: {
  27484. source: "./media/characters/luka-bryzant/front.svg",
  27485. extra: 311 / 289,
  27486. bottom: 4 / 315
  27487. }
  27488. },
  27489. back: {
  27490. height: math.unit(6 + 4 / 12, "feet"),
  27491. weight: math.unit(175, "lb"),
  27492. name: "Back",
  27493. image: {
  27494. source: "./media/characters/luka-bryzant/back.svg",
  27495. extra: 311 / 289,
  27496. bottom: 3.8 / 313.7
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Micro",
  27503. height: math.unit(10, "inches")
  27504. },
  27505. {
  27506. name: "Normal",
  27507. height: math.unit(6 + 4 / 12, "feet"),
  27508. default: true
  27509. },
  27510. {
  27511. name: "Large",
  27512. height: math.unit(12, "feet")
  27513. },
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27518. {
  27519. front: {
  27520. height: math.unit(5 + 7 / 12, "feet"),
  27521. weight: math.unit(185, "lb"),
  27522. name: "Front",
  27523. image: {
  27524. source: "./media/characters/aman-aquila/front.svg",
  27525. extra: 1013 / 976,
  27526. bottom: 45.6 / 1057
  27527. }
  27528. },
  27529. side: {
  27530. height: math.unit(5 + 7 / 12, "feet"),
  27531. weight: math.unit(185, "lb"),
  27532. name: "Side",
  27533. image: {
  27534. source: "./media/characters/aman-aquila/side.svg",
  27535. extra: 1054 / 1011,
  27536. bottom: 15 / 1070
  27537. }
  27538. },
  27539. back: {
  27540. height: math.unit(5 + 7 / 12, "feet"),
  27541. weight: math.unit(185, "lb"),
  27542. name: "Back",
  27543. image: {
  27544. source: "./media/characters/aman-aquila/back.svg",
  27545. extra: 1026 / 970,
  27546. bottom: 12 / 1039
  27547. }
  27548. },
  27549. head: {
  27550. height: math.unit(1.211, "feet"),
  27551. name: "Head",
  27552. image: {
  27553. source: "./media/characters/aman-aquila/head.svg",
  27554. }
  27555. },
  27556. },
  27557. [
  27558. {
  27559. name: "Minimicro",
  27560. height: math.unit(0.057, "inches")
  27561. },
  27562. {
  27563. name: "Micro",
  27564. height: math.unit(7, "inches")
  27565. },
  27566. {
  27567. name: "Mini",
  27568. height: math.unit(3 + 7 / 12, "feet")
  27569. },
  27570. {
  27571. name: "Normal",
  27572. height: math.unit(5 + 7 / 12, "feet"),
  27573. default: true
  27574. },
  27575. {
  27576. name: "Macro",
  27577. height: math.unit(157 + 7 / 12, "feet")
  27578. },
  27579. {
  27580. name: "Megamacro",
  27581. height: math.unit(1557 + 7 / 12, "feet")
  27582. },
  27583. {
  27584. name: "Gigamacro",
  27585. height: math.unit(15557 + 7 / 12, "feet")
  27586. },
  27587. ]
  27588. ))
  27589. characterMakers.push(() => makeCharacter(
  27590. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27591. {
  27592. front: {
  27593. height: math.unit(3 + 2 / 12, "inches"),
  27594. weight: math.unit(0.3, "ounces"),
  27595. name: "Front",
  27596. image: {
  27597. source: "./media/characters/hiphae/front.svg",
  27598. extra: 1931 / 1683,
  27599. bottom: 24 / 1955
  27600. }
  27601. },
  27602. },
  27603. [
  27604. {
  27605. name: "Normal",
  27606. height: math.unit(3 + 1 / 2, "inches"),
  27607. default: true
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27613. {
  27614. front: {
  27615. height: math.unit(5 + 10 / 12, "feet"),
  27616. weight: math.unit(165, "lb"),
  27617. name: "Front",
  27618. image: {
  27619. source: "./media/characters/nicky/front.svg",
  27620. extra: 3144 / 2886,
  27621. bottom: 45.6 / 3192
  27622. }
  27623. },
  27624. back: {
  27625. height: math.unit(5 + 10 / 12, "feet"),
  27626. weight: math.unit(165, "lb"),
  27627. name: "Back",
  27628. image: {
  27629. source: "./media/characters/nicky/back.svg",
  27630. extra: 3055 / 2804,
  27631. bottom: 28.4 / 3087
  27632. }
  27633. },
  27634. frontclothed: {
  27635. height: math.unit(5 + 10 / 12, "feet"),
  27636. weight: math.unit(165, "lb"),
  27637. name: "Front-clothed",
  27638. image: {
  27639. source: "./media/characters/nicky/front-clothed.svg",
  27640. extra: 3184.9 / 2926.9,
  27641. bottom: 86.5 / 3239.9
  27642. }
  27643. },
  27644. foot: {
  27645. height: math.unit(1.16, "feet"),
  27646. name: "Foot",
  27647. image: {
  27648. source: "./media/characters/nicky/foot.svg"
  27649. }
  27650. },
  27651. feet: {
  27652. height: math.unit(1.34, "feet"),
  27653. name: "Feet",
  27654. image: {
  27655. source: "./media/characters/nicky/feet.svg"
  27656. }
  27657. },
  27658. maw: {
  27659. height: math.unit(0.9, "feet"),
  27660. name: "Maw",
  27661. image: {
  27662. source: "./media/characters/nicky/maw.svg"
  27663. }
  27664. },
  27665. },
  27666. [
  27667. {
  27668. name: "Normal",
  27669. height: math.unit(5 + 10 / 12, "feet"),
  27670. default: true
  27671. },
  27672. {
  27673. name: "Macro",
  27674. height: math.unit(60, "feet")
  27675. },
  27676. {
  27677. name: "Megamacro",
  27678. height: math.unit(1, "mile")
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27684. {
  27685. side: {
  27686. height: math.unit(10, "feet"),
  27687. weight: math.unit(600, "lb"),
  27688. name: "Side",
  27689. image: {
  27690. source: "./media/characters/blair/side.svg",
  27691. bottom: 16.6 / 475,
  27692. extra: 458 / 431
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Micro",
  27699. height: math.unit(8, "inches")
  27700. },
  27701. {
  27702. name: "Normal",
  27703. height: math.unit(10, "feet"),
  27704. default: true
  27705. },
  27706. {
  27707. name: "Macro",
  27708. height: math.unit(180, "feet")
  27709. },
  27710. ]
  27711. ))
  27712. characterMakers.push(() => makeCharacter(
  27713. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27714. {
  27715. front: {
  27716. height: math.unit(5 + 4 / 12, "feet"),
  27717. weight: math.unit(125, "lb"),
  27718. name: "Front",
  27719. image: {
  27720. source: "./media/characters/fisher/front.svg",
  27721. extra: 444 / 390,
  27722. bottom: 2 / 444.8
  27723. }
  27724. },
  27725. },
  27726. [
  27727. {
  27728. name: "Micro",
  27729. height: math.unit(4, "inches")
  27730. },
  27731. {
  27732. name: "Normal",
  27733. height: math.unit(5 + 4 / 12, "feet"),
  27734. default: true
  27735. },
  27736. {
  27737. name: "Macro",
  27738. height: math.unit(100, "feet")
  27739. },
  27740. ]
  27741. ))
  27742. characterMakers.push(() => makeCharacter(
  27743. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27744. {
  27745. front: {
  27746. height: math.unit(6.71, "feet"),
  27747. weight: math.unit(200, "lb"),
  27748. preyCapacity: math.unit(1000000, "people"),
  27749. name: "Front",
  27750. image: {
  27751. source: "./media/characters/gliss/front.svg",
  27752. extra: 2347 / 2231,
  27753. bottom: 113 / 2462
  27754. }
  27755. },
  27756. hammerspaceSize: {
  27757. height: math.unit(6.71 * 717, "feet"),
  27758. weight: math.unit(200, "lb"),
  27759. preyCapacity: math.unit(1000000, "people"),
  27760. name: "Hammerspace Size",
  27761. image: {
  27762. source: "./media/characters/gliss/front.svg",
  27763. extra: 2347 / 2231,
  27764. bottom: 113 / 2462
  27765. }
  27766. },
  27767. },
  27768. [
  27769. {
  27770. name: "Normal",
  27771. height: math.unit(6.71, "feet"),
  27772. default: true
  27773. },
  27774. ]
  27775. ))
  27776. characterMakers.push(() => makeCharacter(
  27777. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27778. {
  27779. side: {
  27780. height: math.unit(1.44, "m"),
  27781. weight: math.unit(80, "kg"),
  27782. name: "Side",
  27783. image: {
  27784. source: "./media/characters/dune-anderson/side.svg",
  27785. bottom: 49 / 1426
  27786. }
  27787. },
  27788. },
  27789. [
  27790. {
  27791. name: "Wolf-sized",
  27792. height: math.unit(1.44, "meters")
  27793. },
  27794. {
  27795. name: "Normal",
  27796. height: math.unit(5.05, "meters"),
  27797. default: true
  27798. },
  27799. {
  27800. name: "Big",
  27801. height: math.unit(14.4, "meters")
  27802. },
  27803. {
  27804. name: "Huge",
  27805. height: math.unit(144, "meters")
  27806. },
  27807. ]
  27808. ))
  27809. characterMakers.push(() => makeCharacter(
  27810. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27811. {
  27812. front: {
  27813. height: math.unit(6, "feet"),
  27814. weight: math.unit(220, "lb"),
  27815. name: "Front",
  27816. image: {
  27817. source: "./media/characters/hind/front.svg",
  27818. extra: 1912/1787,
  27819. bottom: 52/1964
  27820. }
  27821. },
  27822. back: {
  27823. height: math.unit(6, "feet"),
  27824. weight: math.unit(220, "lb"),
  27825. name: "Back",
  27826. image: {
  27827. source: "./media/characters/hind/back.svg",
  27828. extra: 1901/1794,
  27829. bottom: 26/1927
  27830. }
  27831. },
  27832. },
  27833. [
  27834. {
  27835. name: "Normal",
  27836. height: math.unit(6, "feet"),
  27837. default: true
  27838. },
  27839. ]
  27840. ))
  27841. characterMakers.push(() => makeCharacter(
  27842. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27843. {
  27844. front: {
  27845. height: math.unit(2.1, "meters"),
  27846. weight: math.unit(150, "lb"),
  27847. name: "Front",
  27848. image: {
  27849. source: "./media/characters/tharquench-sizestealer/front.svg",
  27850. extra: 1605/1470,
  27851. bottom: 36/1641
  27852. }
  27853. },
  27854. frontAlt: {
  27855. height: math.unit(2.1, "meters"),
  27856. weight: math.unit(150, "lb"),
  27857. name: "Front (Alt)",
  27858. image: {
  27859. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27860. extra: 2318 / 2063,
  27861. bottom: 93.4 / 2410
  27862. }
  27863. },
  27864. },
  27865. [
  27866. {
  27867. name: "Nano",
  27868. height: math.unit(1, "mm")
  27869. },
  27870. {
  27871. name: "Micro",
  27872. height: math.unit(1, "cm")
  27873. },
  27874. {
  27875. name: "Normal",
  27876. height: math.unit(2.1, "meters"),
  27877. default: true
  27878. },
  27879. ]
  27880. ))
  27881. characterMakers.push(() => makeCharacter(
  27882. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27883. {
  27884. front: {
  27885. height: math.unit(7 + 5 / 12, "feet"),
  27886. weight: math.unit(357, "lb"),
  27887. name: "Front",
  27888. image: {
  27889. source: "./media/characters/solex-draconov/front.svg",
  27890. extra: 1993 / 1865,
  27891. bottom: 117 / 2111
  27892. }
  27893. },
  27894. },
  27895. [
  27896. {
  27897. name: "Natural Height",
  27898. height: math.unit(7 + 5 / 12, "feet"),
  27899. default: true
  27900. },
  27901. {
  27902. name: "Macro",
  27903. height: math.unit(350, "feet")
  27904. },
  27905. {
  27906. name: "Macro+",
  27907. height: math.unit(1000, "feet")
  27908. },
  27909. {
  27910. name: "Megamacro",
  27911. height: math.unit(20, "km")
  27912. },
  27913. {
  27914. name: "Megamacro+",
  27915. height: math.unit(1000, "km")
  27916. },
  27917. {
  27918. name: "Gigamacro",
  27919. height: math.unit(2.5, "Gm")
  27920. },
  27921. {
  27922. name: "Teramacro",
  27923. height: math.unit(15, "Tm")
  27924. },
  27925. {
  27926. name: "Galactic",
  27927. height: math.unit(30, "Zm")
  27928. },
  27929. {
  27930. name: "Universal",
  27931. height: math.unit(21000, "Ym")
  27932. },
  27933. {
  27934. name: "Omniversal",
  27935. height: math.unit(9.861e50, "Ym")
  27936. },
  27937. {
  27938. name: "Existential",
  27939. height: math.unit(1e300, "meters")
  27940. },
  27941. ]
  27942. ))
  27943. characterMakers.push(() => makeCharacter(
  27944. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27945. {
  27946. side: {
  27947. height: math.unit(25, "feet"),
  27948. weight: math.unit(90000, "lb"),
  27949. name: "Side",
  27950. image: {
  27951. source: "./media/characters/mandarax/side.svg",
  27952. extra: 614 / 332,
  27953. bottom: 55 / 630
  27954. }
  27955. },
  27956. lounging: {
  27957. height: math.unit(15.4, "feet"),
  27958. weight: math.unit(90000, "lb"),
  27959. name: "Lounging",
  27960. image: {
  27961. source: "./media/characters/mandarax/lounging.svg",
  27962. extra: 817/609,
  27963. bottom: 685/1502
  27964. }
  27965. },
  27966. head: {
  27967. height: math.unit(11.4, "feet"),
  27968. name: "Head",
  27969. image: {
  27970. source: "./media/characters/mandarax/head.svg"
  27971. }
  27972. },
  27973. belly: {
  27974. height: math.unit(33, "feet"),
  27975. name: "Belly",
  27976. preyCapacity: math.unit(500, "people"),
  27977. image: {
  27978. source: "./media/characters/mandarax/belly.svg"
  27979. }
  27980. },
  27981. dick: {
  27982. height: math.unit(8.46, "feet"),
  27983. name: "Dick",
  27984. image: {
  27985. source: "./media/characters/mandarax/dick.svg"
  27986. }
  27987. },
  27988. top: {
  27989. height: math.unit(28, "meters"),
  27990. name: "Top",
  27991. image: {
  27992. source: "./media/characters/mandarax/top.svg"
  27993. }
  27994. },
  27995. },
  27996. [
  27997. {
  27998. name: "Normal",
  27999. height: math.unit(25, "feet"),
  28000. default: true
  28001. },
  28002. ]
  28003. ))
  28004. characterMakers.push(() => makeCharacter(
  28005. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28006. {
  28007. front: {
  28008. height: math.unit(5, "feet"),
  28009. weight: math.unit(90, "lb"),
  28010. name: "Front",
  28011. image: {
  28012. source: "./media/characters/pixil/front.svg",
  28013. extra: 2000 / 1618,
  28014. bottom: 12.3 / 2011
  28015. }
  28016. },
  28017. },
  28018. [
  28019. {
  28020. name: "Normal",
  28021. height: math.unit(5, "feet"),
  28022. default: true
  28023. },
  28024. {
  28025. name: "Megamacro",
  28026. height: math.unit(10, "miles"),
  28027. },
  28028. ]
  28029. ))
  28030. characterMakers.push(() => makeCharacter(
  28031. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28032. {
  28033. front: {
  28034. height: math.unit(7 + 2 / 12, "feet"),
  28035. weight: math.unit(200, "lb"),
  28036. name: "Front",
  28037. image: {
  28038. source: "./media/characters/angel/front.svg",
  28039. extra: 1946/1840,
  28040. bottom: 30/1976
  28041. }
  28042. },
  28043. },
  28044. [
  28045. {
  28046. name: "Normal",
  28047. height: math.unit(7 + 2 / 12, "feet"),
  28048. default: true
  28049. },
  28050. {
  28051. name: "Macro",
  28052. height: math.unit(1000, "feet")
  28053. },
  28054. {
  28055. name: "Megamacro",
  28056. height: math.unit(2, "miles")
  28057. },
  28058. {
  28059. name: "Gigamacro",
  28060. height: math.unit(20, "earths")
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28066. {
  28067. front: {
  28068. height: math.unit(5, "feet"),
  28069. weight: math.unit(180, "lb"),
  28070. name: "Front",
  28071. image: {
  28072. source: "./media/characters/mekana/front.svg",
  28073. extra: 1671 / 1605,
  28074. bottom: 3.5 / 1691
  28075. }
  28076. },
  28077. side: {
  28078. height: math.unit(5, "feet"),
  28079. weight: math.unit(180, "lb"),
  28080. name: "Side",
  28081. image: {
  28082. source: "./media/characters/mekana/side.svg",
  28083. extra: 1671 / 1605,
  28084. bottom: 3.5 / 1691
  28085. }
  28086. },
  28087. back: {
  28088. height: math.unit(5, "feet"),
  28089. weight: math.unit(180, "lb"),
  28090. name: "Back",
  28091. image: {
  28092. source: "./media/characters/mekana/back.svg",
  28093. extra: 1671 / 1605,
  28094. bottom: 3.5 / 1691
  28095. }
  28096. },
  28097. },
  28098. [
  28099. {
  28100. name: "Normal",
  28101. height: math.unit(5, "feet"),
  28102. default: true
  28103. },
  28104. ]
  28105. ))
  28106. characterMakers.push(() => makeCharacter(
  28107. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28108. {
  28109. front: {
  28110. height: math.unit(4 + 6 / 12, "feet"),
  28111. weight: math.unit(80, "lb"),
  28112. name: "Front",
  28113. image: {
  28114. source: "./media/characters/pixie/front.svg",
  28115. extra: 1924 / 1825,
  28116. bottom: 22.4 / 1946
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(4 + 6 / 12, "feet"),
  28124. default: true
  28125. },
  28126. {
  28127. name: "Macro",
  28128. height: math.unit(40, "feet")
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28134. {
  28135. front: {
  28136. height: math.unit(2.1, "meters"),
  28137. weight: math.unit(200, "lb"),
  28138. name: "Front",
  28139. image: {
  28140. source: "./media/characters/the-lascivious/front.svg",
  28141. extra: 1 / 0.893,
  28142. bottom: 3.5 / 573.7
  28143. }
  28144. },
  28145. },
  28146. [
  28147. {
  28148. name: "Human Scale",
  28149. height: math.unit(2.1, "meters")
  28150. },
  28151. {
  28152. name: "Wolxi Scale",
  28153. height: math.unit(46.2, "m"),
  28154. default: true
  28155. },
  28156. {
  28157. name: "Boinker of Buildings",
  28158. height: math.unit(10, "km")
  28159. },
  28160. {
  28161. name: "Shagger of Skyscrapers",
  28162. height: math.unit(40, "km")
  28163. },
  28164. {
  28165. name: "Banger of Boroughs",
  28166. height: math.unit(4000, "km")
  28167. },
  28168. {
  28169. name: "Screwer of States",
  28170. height: math.unit(100000, "km")
  28171. },
  28172. {
  28173. name: "Pounder of Planets",
  28174. height: math.unit(2000000, "km")
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28180. {
  28181. front: {
  28182. height: math.unit(6, "feet"),
  28183. weight: math.unit(150, "lb"),
  28184. name: "Front",
  28185. image: {
  28186. source: "./media/characters/aj/front.svg",
  28187. extra: 2039 / 1562,
  28188. bottom: 40 / 2079
  28189. }
  28190. },
  28191. },
  28192. [
  28193. {
  28194. name: "Normal",
  28195. height: math.unit(11 + 6 / 12, "feet"),
  28196. default: true
  28197. },
  28198. {
  28199. name: "Megamacro",
  28200. height: math.unit(60, "megameters")
  28201. },
  28202. ]
  28203. ))
  28204. characterMakers.push(() => makeCharacter(
  28205. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28206. {
  28207. side: {
  28208. height: math.unit(31 + 8 / 12, "feet"),
  28209. weight: math.unit(75000, "kg"),
  28210. name: "Side",
  28211. image: {
  28212. source: "./media/characters/koros/side.svg",
  28213. extra: 1442 / 1297,
  28214. bottom: 122.7 / 1562
  28215. }
  28216. },
  28217. dicksKingsCrown: {
  28218. height: math.unit(6, "feet"),
  28219. name: "Dicks (King's Crown)",
  28220. image: {
  28221. source: "./media/characters/koros/dicks-kings-crown.svg"
  28222. }
  28223. },
  28224. dicksTailSet: {
  28225. height: math.unit(3, "feet"),
  28226. name: "Dicks (Tail Set)",
  28227. image: {
  28228. source: "./media/characters/koros/dicks-tail-set.svg"
  28229. }
  28230. },
  28231. dickCumming: {
  28232. height: math.unit(7.98, "feet"),
  28233. name: "Dick (Cumming)",
  28234. image: {
  28235. source: "./media/characters/koros/dick-cumming.svg"
  28236. }
  28237. },
  28238. dicksBack: {
  28239. height: math.unit(5.9, "feet"),
  28240. name: "Dicks (Back)",
  28241. image: {
  28242. source: "./media/characters/koros/dicks-back.svg"
  28243. }
  28244. },
  28245. dicksFront: {
  28246. height: math.unit(3.72, "feet"),
  28247. name: "Dicks (Front)",
  28248. image: {
  28249. source: "./media/characters/koros/dicks-front.svg"
  28250. }
  28251. },
  28252. dicksPeeking: {
  28253. height: math.unit(3.0, "feet"),
  28254. name: "Dicks (Peeking)",
  28255. image: {
  28256. source: "./media/characters/koros/dicks-peeking.svg"
  28257. }
  28258. },
  28259. eye: {
  28260. height: math.unit(1.7, "feet"),
  28261. name: "Eye",
  28262. image: {
  28263. source: "./media/characters/koros/eye.svg"
  28264. }
  28265. },
  28266. headFront: {
  28267. height: math.unit(11.69, "feet"),
  28268. name: "Head (Front)",
  28269. image: {
  28270. source: "./media/characters/koros/head-front.svg"
  28271. }
  28272. },
  28273. headSide: {
  28274. height: math.unit(14, "feet"),
  28275. name: "Head (Side)",
  28276. image: {
  28277. source: "./media/characters/koros/head-side.svg"
  28278. }
  28279. },
  28280. leg: {
  28281. height: math.unit(17, "feet"),
  28282. name: "Leg",
  28283. image: {
  28284. source: "./media/characters/koros/leg.svg"
  28285. }
  28286. },
  28287. mawSide: {
  28288. height: math.unit(12.8, "feet"),
  28289. name: "Maw (Side)",
  28290. image: {
  28291. source: "./media/characters/koros/maw-side.svg"
  28292. }
  28293. },
  28294. mawSpitting: {
  28295. height: math.unit(17, "feet"),
  28296. name: "Maw (Spitting)",
  28297. image: {
  28298. source: "./media/characters/koros/maw-spitting.svg"
  28299. }
  28300. },
  28301. slit: {
  28302. height: math.unit(2.8, "feet"),
  28303. name: "Slit",
  28304. image: {
  28305. source: "./media/characters/koros/slit.svg"
  28306. }
  28307. },
  28308. stomach: {
  28309. height: math.unit(6.8, "feet"),
  28310. preyCapacity: math.unit(20, "people"),
  28311. name: "Stomach",
  28312. image: {
  28313. source: "./media/characters/koros/stomach.svg"
  28314. }
  28315. },
  28316. wingspanBottom: {
  28317. height: math.unit(114, "feet"),
  28318. name: "Wingspan (Bottom)",
  28319. image: {
  28320. source: "./media/characters/koros/wingspan-bottom.svg"
  28321. }
  28322. },
  28323. wingspanTop: {
  28324. height: math.unit(104, "feet"),
  28325. name: "Wingspan (Top)",
  28326. image: {
  28327. source: "./media/characters/koros/wingspan-top.svg"
  28328. }
  28329. },
  28330. },
  28331. [
  28332. {
  28333. name: "Normal",
  28334. height: math.unit(31 + 8 / 12, "feet"),
  28335. default: true
  28336. },
  28337. ]
  28338. ))
  28339. characterMakers.push(() => makeCharacter(
  28340. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28341. {
  28342. front: {
  28343. height: math.unit(18 + 5 / 12, "feet"),
  28344. weight: math.unit(3750, "kg"),
  28345. name: "Front",
  28346. image: {
  28347. source: "./media/characters/vexx/front.svg",
  28348. extra: 426 / 396,
  28349. bottom: 31.5 / 458
  28350. }
  28351. },
  28352. maw: {
  28353. height: math.unit(6, "feet"),
  28354. name: "Maw",
  28355. image: {
  28356. source: "./media/characters/vexx/maw.svg"
  28357. }
  28358. },
  28359. },
  28360. [
  28361. {
  28362. name: "Normal",
  28363. height: math.unit(18 + 5 / 12, "feet"),
  28364. default: true
  28365. },
  28366. ]
  28367. ))
  28368. characterMakers.push(() => makeCharacter(
  28369. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28370. {
  28371. front: {
  28372. height: math.unit(17 + 6 / 12, "feet"),
  28373. weight: math.unit(150, "lb"),
  28374. name: "Front",
  28375. image: {
  28376. source: "./media/characters/baadra/front.svg",
  28377. extra: 1694/1553,
  28378. bottom: 179/1873
  28379. }
  28380. },
  28381. frontAlt: {
  28382. height: math.unit(17 + 6 / 12, "feet"),
  28383. weight: math.unit(150, "lb"),
  28384. name: "Front (Alt)",
  28385. image: {
  28386. source: "./media/characters/baadra/front-alt.svg",
  28387. extra: 3137 / 2890,
  28388. bottom: 168.4 / 3305
  28389. }
  28390. },
  28391. back: {
  28392. height: math.unit(17 + 6 / 12, "feet"),
  28393. weight: math.unit(150, "lb"),
  28394. name: "Back",
  28395. image: {
  28396. source: "./media/characters/baadra/back.svg",
  28397. extra: 3142 / 2890,
  28398. bottom: 220 / 3371
  28399. }
  28400. },
  28401. head: {
  28402. height: math.unit(5.45, "feet"),
  28403. name: "Head",
  28404. image: {
  28405. source: "./media/characters/baadra/head.svg"
  28406. }
  28407. },
  28408. headAngry: {
  28409. height: math.unit(4.95, "feet"),
  28410. name: "Head (Angry)",
  28411. image: {
  28412. source: "./media/characters/baadra/head-angry.svg"
  28413. }
  28414. },
  28415. headOpen: {
  28416. height: math.unit(6, "feet"),
  28417. name: "Head (Open)",
  28418. image: {
  28419. source: "./media/characters/baadra/head-open.svg"
  28420. }
  28421. },
  28422. },
  28423. [
  28424. {
  28425. name: "Normal",
  28426. height: math.unit(17 + 6 / 12, "feet"),
  28427. default: true
  28428. },
  28429. ]
  28430. ))
  28431. characterMakers.push(() => makeCharacter(
  28432. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28433. {
  28434. front: {
  28435. height: math.unit(7 + 3 / 12, "feet"),
  28436. weight: math.unit(180, "lb"),
  28437. name: "Front",
  28438. image: {
  28439. source: "./media/characters/juri/front.svg",
  28440. extra: 1401 / 1237,
  28441. bottom: 18.5 / 1418
  28442. }
  28443. },
  28444. side: {
  28445. height: math.unit(7 + 3 / 12, "feet"),
  28446. weight: math.unit(180, "lb"),
  28447. name: "Side",
  28448. image: {
  28449. source: "./media/characters/juri/side.svg",
  28450. extra: 1424 / 1242,
  28451. bottom: 18.5 / 1447
  28452. }
  28453. },
  28454. sitting: {
  28455. height: math.unit(6, "feet"),
  28456. weight: math.unit(180, "lb"),
  28457. name: "Sitting",
  28458. image: {
  28459. source: "./media/characters/juri/sitting.svg",
  28460. extra: 1270 / 1143,
  28461. bottom: 100 / 1343
  28462. }
  28463. },
  28464. back: {
  28465. height: math.unit(7 + 3 / 12, "feet"),
  28466. weight: math.unit(180, "lb"),
  28467. name: "Back",
  28468. image: {
  28469. source: "./media/characters/juri/back.svg",
  28470. extra: 1377 / 1240,
  28471. bottom: 23.7 / 1405
  28472. }
  28473. },
  28474. maw: {
  28475. height: math.unit(2.8, "feet"),
  28476. name: "Maw",
  28477. image: {
  28478. source: "./media/characters/juri/maw.svg"
  28479. }
  28480. },
  28481. stomach: {
  28482. height: math.unit(0.89, "feet"),
  28483. preyCapacity: math.unit(4, "liters"),
  28484. name: "Stomach",
  28485. image: {
  28486. source: "./media/characters/juri/stomach.svg"
  28487. }
  28488. },
  28489. },
  28490. [
  28491. {
  28492. name: "Normal",
  28493. height: math.unit(7 + 3 / 12, "feet"),
  28494. default: true
  28495. },
  28496. ]
  28497. ))
  28498. characterMakers.push(() => makeCharacter(
  28499. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28500. {
  28501. fox: {
  28502. height: math.unit(5 + 6 / 12, "feet"),
  28503. weight: math.unit(140, "lb"),
  28504. name: "Fox",
  28505. image: {
  28506. source: "./media/characters/maxene-sita/fox.svg",
  28507. extra: 146 / 138,
  28508. bottom: 2.1 / 148.19
  28509. }
  28510. },
  28511. foxLaying: {
  28512. height: math.unit(1.70, "feet"),
  28513. weight: math.unit(140, "lb"),
  28514. name: "Fox (Laying)",
  28515. image: {
  28516. source: "./media/characters/maxene-sita/fox-laying.svg",
  28517. extra: 910 / 572,
  28518. bottom: 71 / 981
  28519. }
  28520. },
  28521. kitsune: {
  28522. height: math.unit(10, "feet"),
  28523. weight: math.unit(800, "lb"),
  28524. name: "Kitsune",
  28525. image: {
  28526. source: "./media/characters/maxene-sita/kitsune.svg",
  28527. extra: 185 / 176,
  28528. bottom: 4.7 / 189.9
  28529. }
  28530. },
  28531. hellhound: {
  28532. height: math.unit(10, "feet"),
  28533. weight: math.unit(700, "lb"),
  28534. name: "Hellhound",
  28535. image: {
  28536. source: "./media/characters/maxene-sita/hellhound.svg",
  28537. extra: 1600 / 1545,
  28538. bottom: 81 / 1681
  28539. }
  28540. },
  28541. },
  28542. [
  28543. {
  28544. name: "Normal",
  28545. height: math.unit(5 + 6 / 12, "feet"),
  28546. default: true
  28547. },
  28548. ]
  28549. ))
  28550. characterMakers.push(() => makeCharacter(
  28551. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28552. {
  28553. front: {
  28554. height: math.unit(3 + 4 / 12, "feet"),
  28555. weight: math.unit(70, "lb"),
  28556. name: "Front",
  28557. image: {
  28558. source: "./media/characters/maia/front.svg",
  28559. extra: 227 / 219.5,
  28560. bottom: 40 / 267
  28561. }
  28562. },
  28563. back: {
  28564. height: math.unit(3 + 4 / 12, "feet"),
  28565. weight: math.unit(70, "lb"),
  28566. name: "Back",
  28567. image: {
  28568. source: "./media/characters/maia/back.svg",
  28569. extra: 237 / 225
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Normal",
  28576. height: math.unit(3 + 4 / 12, "feet"),
  28577. default: true
  28578. },
  28579. ]
  28580. ))
  28581. characterMakers.push(() => makeCharacter(
  28582. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28583. {
  28584. front: {
  28585. height: math.unit(5 + 10 / 12, "feet"),
  28586. weight: math.unit(197, "lb"),
  28587. name: "Front",
  28588. image: {
  28589. source: "./media/characters/jabaro/front.svg",
  28590. extra: 225 / 216,
  28591. bottom: 5.06 / 230
  28592. }
  28593. },
  28594. back: {
  28595. height: math.unit(5 + 10 / 12, "feet"),
  28596. weight: math.unit(197, "lb"),
  28597. name: "Back",
  28598. image: {
  28599. source: "./media/characters/jabaro/back.svg",
  28600. extra: 225 / 219,
  28601. bottom: 1.9 / 227
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Normal",
  28608. height: math.unit(5 + 10 / 12, "feet"),
  28609. default: true
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28615. {
  28616. front: {
  28617. height: math.unit(5 + 8 / 12, "feet"),
  28618. weight: math.unit(139, "lb"),
  28619. name: "Front",
  28620. image: {
  28621. source: "./media/characters/risa/front.svg",
  28622. extra: 270 / 260,
  28623. bottom: 11.2 / 282
  28624. }
  28625. },
  28626. back: {
  28627. height: math.unit(5 + 8 / 12, "feet"),
  28628. weight: math.unit(139, "lb"),
  28629. name: "Back",
  28630. image: {
  28631. source: "./media/characters/risa/back.svg",
  28632. extra: 264 / 255,
  28633. bottom: 4 / 268
  28634. }
  28635. },
  28636. },
  28637. [
  28638. {
  28639. name: "Normal",
  28640. height: math.unit(5 + 8 / 12, "feet"),
  28641. default: true
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28647. {
  28648. front: {
  28649. height: math.unit(2 + 11 / 12, "feet"),
  28650. weight: math.unit(30, "lb"),
  28651. name: "Front",
  28652. image: {
  28653. source: "./media/characters/weatley/front.svg",
  28654. bottom: 10.7 / 414,
  28655. extra: 403.5 / 362
  28656. }
  28657. },
  28658. back: {
  28659. height: math.unit(2 + 11 / 12, "feet"),
  28660. weight: math.unit(30, "lb"),
  28661. name: "Back",
  28662. image: {
  28663. source: "./media/characters/weatley/back.svg",
  28664. bottom: 10.7 / 414,
  28665. extra: 403.5 / 362
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(2 + 11 / 12, "feet"),
  28673. default: true
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28679. {
  28680. front: {
  28681. height: math.unit(5 + 2 / 12, "feet"),
  28682. weight: math.unit(50, "kg"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/mercury-crescent/front.svg",
  28686. extra: 1088 / 1033,
  28687. bottom: 18.9 / 1109
  28688. }
  28689. },
  28690. },
  28691. [
  28692. {
  28693. name: "Normal",
  28694. height: math.unit(5 + 2 / 12, "feet"),
  28695. default: true
  28696. },
  28697. ]
  28698. ))
  28699. characterMakers.push(() => makeCharacter(
  28700. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28701. {
  28702. front: {
  28703. height: math.unit(2, "feet"),
  28704. weight: math.unit(15, "kg"),
  28705. name: "Front",
  28706. image: {
  28707. source: "./media/characters/diamond-jones/front.svg",
  28708. extra: 727/723,
  28709. bottom: 46/773
  28710. }
  28711. },
  28712. },
  28713. [
  28714. {
  28715. name: "Normal",
  28716. height: math.unit(2, "feet"),
  28717. default: true
  28718. },
  28719. ]
  28720. ))
  28721. characterMakers.push(() => makeCharacter(
  28722. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28723. {
  28724. front: {
  28725. height: math.unit(3, "feet"),
  28726. weight: math.unit(30, "kg"),
  28727. name: "Front",
  28728. image: {
  28729. source: "./media/characters/sweet-bit/front.svg",
  28730. extra: 675 / 567,
  28731. bottom: 27.7 / 703
  28732. }
  28733. },
  28734. },
  28735. [
  28736. {
  28737. name: "Normal",
  28738. height: math.unit(3, "feet"),
  28739. default: true
  28740. },
  28741. ]
  28742. ))
  28743. characterMakers.push(() => makeCharacter(
  28744. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28745. {
  28746. side: {
  28747. height: math.unit(9.178, "feet"),
  28748. weight: math.unit(500, "lb"),
  28749. name: "Side",
  28750. image: {
  28751. source: "./media/characters/umbrazen/side.svg",
  28752. extra: 1730 / 1473,
  28753. bottom: 34.6 / 1765
  28754. }
  28755. },
  28756. },
  28757. [
  28758. {
  28759. name: "Normal",
  28760. height: math.unit(9.178, "feet"),
  28761. default: true
  28762. },
  28763. ]
  28764. ))
  28765. characterMakers.push(() => makeCharacter(
  28766. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28767. {
  28768. front: {
  28769. height: math.unit(10, "feet"),
  28770. weight: math.unit(750, "lb"),
  28771. name: "Front",
  28772. image: {
  28773. source: "./media/characters/arlist/front.svg",
  28774. extra: 961 / 778,
  28775. bottom: 6.2 / 986
  28776. }
  28777. },
  28778. },
  28779. [
  28780. {
  28781. name: "Normal",
  28782. height: math.unit(10, "feet"),
  28783. default: true
  28784. },
  28785. ]
  28786. ))
  28787. characterMakers.push(() => makeCharacter(
  28788. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28789. {
  28790. front: {
  28791. height: math.unit(5 + 1 / 12, "feet"),
  28792. weight: math.unit(110, "lb"),
  28793. name: "Front",
  28794. image: {
  28795. source: "./media/characters/aradel/front.svg",
  28796. extra: 324 / 303,
  28797. bottom: 3.6 / 329.4
  28798. }
  28799. },
  28800. },
  28801. [
  28802. {
  28803. name: "Normal",
  28804. height: math.unit(5 + 1 / 12, "feet"),
  28805. default: true
  28806. },
  28807. ]
  28808. ))
  28809. characterMakers.push(() => makeCharacter(
  28810. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28811. {
  28812. dressed: {
  28813. height: math.unit(3 + 8 / 12, "feet"),
  28814. weight: math.unit(50, "lb"),
  28815. name: "Dressed",
  28816. image: {
  28817. source: "./media/characters/serryn/dressed.svg",
  28818. extra: 1792 / 1656,
  28819. bottom: 43.5 / 1840
  28820. }
  28821. },
  28822. nude: {
  28823. height: math.unit(3 + 8 / 12, "feet"),
  28824. weight: math.unit(50, "lb"),
  28825. name: "Nude",
  28826. image: {
  28827. source: "./media/characters/serryn/nude.svg",
  28828. extra: 1792 / 1656,
  28829. bottom: 43.5 / 1840
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Normal",
  28836. height: math.unit(3 + 8 / 12, "feet"),
  28837. default: true
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(7 + 10 / 12, "feet"),
  28846. weight: math.unit(255, "lb"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/xavier-thyme/front.svg",
  28850. extra: 3733 / 3642,
  28851. bottom: 131 / 3869
  28852. }
  28853. },
  28854. frontRaven: {
  28855. height: math.unit(7 + 10 / 12, "feet"),
  28856. weight: math.unit(255, "lb"),
  28857. name: "Front (Raven)",
  28858. image: {
  28859. source: "./media/characters/xavier-thyme/front-raven.svg",
  28860. extra: 4385 / 3642,
  28861. bottom: 131 / 4517
  28862. }
  28863. },
  28864. },
  28865. [
  28866. {
  28867. name: "Normal",
  28868. height: math.unit(7 + 10 / 12, "feet"),
  28869. default: true
  28870. },
  28871. ]
  28872. ))
  28873. characterMakers.push(() => makeCharacter(
  28874. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28875. {
  28876. front: {
  28877. height: math.unit(1.6, "m"),
  28878. weight: math.unit(50, "kg"),
  28879. name: "Front",
  28880. image: {
  28881. source: "./media/characters/kiki/front.svg",
  28882. extra: 4682 / 3610,
  28883. bottom: 115 / 4777
  28884. }
  28885. },
  28886. },
  28887. [
  28888. {
  28889. name: "Normal",
  28890. height: math.unit(1.6, "meters"),
  28891. default: true
  28892. },
  28893. ]
  28894. ))
  28895. characterMakers.push(() => makeCharacter(
  28896. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28897. {
  28898. front: {
  28899. height: math.unit(50, "m"),
  28900. weight: math.unit(500, "tonnes"),
  28901. name: "Front",
  28902. image: {
  28903. source: "./media/characters/ryoko/front.svg",
  28904. extra: 4632 / 3926,
  28905. bottom: 193 / 4823
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(50, "meters"),
  28913. default: true
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28919. {
  28920. front: {
  28921. height: math.unit(30, "m"),
  28922. weight: math.unit(22, "tonnes"),
  28923. name: "Front",
  28924. image: {
  28925. source: "./media/characters/elio/front.svg",
  28926. extra: 4582 / 3720,
  28927. bottom: 236 / 4828
  28928. }
  28929. },
  28930. },
  28931. [
  28932. {
  28933. name: "Normal",
  28934. height: math.unit(30, "meters"),
  28935. default: true
  28936. },
  28937. ]
  28938. ))
  28939. characterMakers.push(() => makeCharacter(
  28940. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28941. {
  28942. front: {
  28943. height: math.unit(6 + 3 / 12, "feet"),
  28944. weight: math.unit(120, "lb"),
  28945. name: "Front",
  28946. image: {
  28947. source: "./media/characters/azura/front.svg",
  28948. extra: 1149 / 1135,
  28949. bottom: 45 / 1194
  28950. }
  28951. },
  28952. frontClothed: {
  28953. height: math.unit(6 + 3 / 12, "feet"),
  28954. weight: math.unit(120, "lb"),
  28955. name: "Front (Clothed)",
  28956. image: {
  28957. source: "./media/characters/azura/front-clothed.svg",
  28958. extra: 1149 / 1135,
  28959. bottom: 45 / 1194
  28960. }
  28961. },
  28962. },
  28963. [
  28964. {
  28965. name: "Normal",
  28966. height: math.unit(6 + 3 / 12, "feet"),
  28967. default: true
  28968. },
  28969. {
  28970. name: "Macro",
  28971. height: math.unit(20 + 6 / 12, "feet")
  28972. },
  28973. {
  28974. name: "Megamacro",
  28975. height: math.unit(12, "miles")
  28976. },
  28977. {
  28978. name: "Gigamacro",
  28979. height: math.unit(10000, "miles")
  28980. },
  28981. {
  28982. name: "Teramacro",
  28983. height: math.unit(900000, "miles")
  28984. },
  28985. ]
  28986. ))
  28987. characterMakers.push(() => makeCharacter(
  28988. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28989. {
  28990. front: {
  28991. height: math.unit(12, "feet"),
  28992. weight: math.unit(1, "ton"),
  28993. capacity: math.unit(660000, "gallons"),
  28994. name: "Front",
  28995. image: {
  28996. source: "./media/characters/zeus/front.svg",
  28997. extra: 5005 / 4717,
  28998. bottom: 363 / 5388
  28999. }
  29000. },
  29001. },
  29002. [
  29003. {
  29004. name: "Normal",
  29005. height: math.unit(12, "feet")
  29006. },
  29007. {
  29008. name: "Preferred Size",
  29009. height: math.unit(0.5, "miles"),
  29010. default: true
  29011. },
  29012. {
  29013. name: "Giga Horse",
  29014. height: math.unit(300, "miles")
  29015. },
  29016. {
  29017. name: "Riding Planets",
  29018. height: math.unit(30, "megameters")
  29019. },
  29020. {
  29021. name: "Cosmic Giant",
  29022. height: math.unit(3, "zettameters")
  29023. },
  29024. {
  29025. name: "Breeding God",
  29026. height: math.unit(9.92e22, "yottameters")
  29027. },
  29028. ]
  29029. ))
  29030. characterMakers.push(() => makeCharacter(
  29031. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29032. {
  29033. side: {
  29034. height: math.unit(9, "feet"),
  29035. weight: math.unit(1500, "kg"),
  29036. name: "Side",
  29037. image: {
  29038. source: "./media/characters/fang/side.svg",
  29039. extra: 924 / 866,
  29040. bottom: 47.5 / 972.3
  29041. }
  29042. },
  29043. },
  29044. [
  29045. {
  29046. name: "Normal",
  29047. height: math.unit(9, "feet"),
  29048. default: true
  29049. },
  29050. {
  29051. name: "Macro",
  29052. height: math.unit(75 + 6 / 12, "feet")
  29053. },
  29054. {
  29055. name: "Teramacro",
  29056. height: math.unit(50000, "miles")
  29057. },
  29058. ]
  29059. ))
  29060. characterMakers.push(() => makeCharacter(
  29061. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29062. {
  29063. front: {
  29064. height: math.unit(10, "feet"),
  29065. weight: math.unit(2, "tons"),
  29066. name: "Front",
  29067. image: {
  29068. source: "./media/characters/rekhit/front.svg",
  29069. extra: 2796 / 2590,
  29070. bottom: 225 / 3022
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(10, "feet"),
  29078. default: true
  29079. },
  29080. {
  29081. name: "Macro",
  29082. height: math.unit(500, "feet")
  29083. },
  29084. ]
  29085. ))
  29086. characterMakers.push(() => makeCharacter(
  29087. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29088. {
  29089. front: {
  29090. height: math.unit(7 + 6.451 / 12, "feet"),
  29091. weight: math.unit(310, "lb"),
  29092. name: "Front",
  29093. image: {
  29094. source: "./media/characters/dahlia-verrick/front.svg",
  29095. extra: 1488 / 1365,
  29096. bottom: 6.2 / 1495
  29097. }
  29098. },
  29099. back: {
  29100. height: math.unit(7 + 6.451 / 12, "feet"),
  29101. weight: math.unit(310, "lb"),
  29102. name: "Back",
  29103. image: {
  29104. source: "./media/characters/dahlia-verrick/back.svg",
  29105. extra: 1472 / 1351,
  29106. bottom: 5.28 / 1477
  29107. }
  29108. },
  29109. frontBusiness: {
  29110. height: math.unit(7 + 6.451 / 12, "feet"),
  29111. weight: math.unit(200, "lb"),
  29112. name: "Front (Business)",
  29113. image: {
  29114. source: "./media/characters/dahlia-verrick/front-business.svg",
  29115. extra: 1478 / 1381,
  29116. bottom: 5.5 / 1484
  29117. }
  29118. },
  29119. frontCasual: {
  29120. height: math.unit(7 + 6.451 / 12, "feet"),
  29121. weight: math.unit(200, "lb"),
  29122. name: "Front (Casual)",
  29123. image: {
  29124. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29125. extra: 1478 / 1381,
  29126. bottom: 5.5 / 1484
  29127. }
  29128. },
  29129. },
  29130. [
  29131. {
  29132. name: "Travel-Sized",
  29133. height: math.unit(7.45, "inches")
  29134. },
  29135. {
  29136. name: "Normal",
  29137. height: math.unit(7 + 6.451 / 12, "feet"),
  29138. default: true
  29139. },
  29140. {
  29141. name: "Hitting the Town",
  29142. height: math.unit(37 + 8 / 12, "feet")
  29143. },
  29144. {
  29145. name: "Stomp in the Suburbs",
  29146. height: math.unit(964 + 9.728 / 12, "feet")
  29147. },
  29148. {
  29149. name: "Sit on the City",
  29150. height: math.unit(61747 + 10.592 / 12, "feet")
  29151. },
  29152. {
  29153. name: "Glomp the Globe",
  29154. height: math.unit(252919327 + 4.832 / 12, "feet")
  29155. },
  29156. ]
  29157. ))
  29158. characterMakers.push(() => makeCharacter(
  29159. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29160. {
  29161. front: {
  29162. height: math.unit(6 + 4 / 12, "feet"),
  29163. weight: math.unit(320, "lb"),
  29164. name: "Front",
  29165. image: {
  29166. source: "./media/characters/balina-mahigan/front.svg",
  29167. extra: 447 / 428,
  29168. bottom: 18 / 466
  29169. }
  29170. },
  29171. back: {
  29172. height: math.unit(6 + 4 / 12, "feet"),
  29173. weight: math.unit(320, "lb"),
  29174. name: "Back",
  29175. image: {
  29176. source: "./media/characters/balina-mahigan/back.svg",
  29177. extra: 445 / 428,
  29178. bottom: 4.07 / 448
  29179. }
  29180. },
  29181. arm: {
  29182. height: math.unit(1.88, "feet"),
  29183. name: "Arm",
  29184. image: {
  29185. source: "./media/characters/balina-mahigan/arm.svg"
  29186. }
  29187. },
  29188. backPort: {
  29189. height: math.unit(0.685, "feet"),
  29190. name: "Back Port",
  29191. image: {
  29192. source: "./media/characters/balina-mahigan/back-port.svg"
  29193. }
  29194. },
  29195. hoofpaw: {
  29196. height: math.unit(1.41, "feet"),
  29197. name: "Hoofpaw",
  29198. image: {
  29199. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29200. }
  29201. },
  29202. leftHandBack: {
  29203. height: math.unit(0.938, "feet"),
  29204. name: "Left Hand (Back)",
  29205. image: {
  29206. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29207. }
  29208. },
  29209. leftHandFront: {
  29210. height: math.unit(0.938, "feet"),
  29211. name: "Left Hand (Front)",
  29212. image: {
  29213. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29214. }
  29215. },
  29216. rightHandBack: {
  29217. height: math.unit(0.95, "feet"),
  29218. name: "Right Hand (Back)",
  29219. image: {
  29220. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29221. }
  29222. },
  29223. rightHandFront: {
  29224. height: math.unit(0.95, "feet"),
  29225. name: "Right Hand (Front)",
  29226. image: {
  29227. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Normal",
  29234. height: math.unit(6 + 4 / 12, "feet"),
  29235. default: true
  29236. },
  29237. ]
  29238. ))
  29239. characterMakers.push(() => makeCharacter(
  29240. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29241. {
  29242. front: {
  29243. height: math.unit(6, "feet"),
  29244. weight: math.unit(320, "lb"),
  29245. name: "Front",
  29246. image: {
  29247. source: "./media/characters/balina-mejeri/front.svg",
  29248. extra: 517 / 488,
  29249. bottom: 44.2 / 561
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(6 + 4 / 12, "feet")
  29257. },
  29258. {
  29259. name: "Business",
  29260. height: math.unit(155, "feet"),
  29261. default: true
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29267. {
  29268. kneeling: {
  29269. height: math.unit(6 + 4 / 12, "feet"),
  29270. weight: math.unit(300 * 20, "lb"),
  29271. name: "Kneeling",
  29272. image: {
  29273. source: "./media/characters/balbarian/kneeling.svg",
  29274. extra: 922 / 862,
  29275. bottom: 42.4 / 965
  29276. }
  29277. },
  29278. },
  29279. [
  29280. {
  29281. name: "Normal",
  29282. height: math.unit(6 + 4 / 12, "feet")
  29283. },
  29284. {
  29285. name: "Treasured",
  29286. height: math.unit(18 + 9 / 12, "feet"),
  29287. default: true
  29288. },
  29289. {
  29290. name: "Macro",
  29291. height: math.unit(900, "feet")
  29292. },
  29293. ]
  29294. ))
  29295. characterMakers.push(() => makeCharacter(
  29296. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29297. {
  29298. front: {
  29299. height: math.unit(6 + 4 / 12, "feet"),
  29300. weight: math.unit(325, "lb"),
  29301. name: "Front",
  29302. image: {
  29303. source: "./media/characters/balina-amarini/front.svg",
  29304. extra: 415 / 403,
  29305. bottom: 19 / 433.4
  29306. }
  29307. },
  29308. back: {
  29309. height: math.unit(6 + 4 / 12, "feet"),
  29310. weight: math.unit(325, "lb"),
  29311. name: "Back",
  29312. image: {
  29313. source: "./media/characters/balina-amarini/back.svg",
  29314. extra: 415 / 403,
  29315. bottom: 13.5 / 432
  29316. }
  29317. },
  29318. overdrive: {
  29319. height: math.unit(6 + 4 / 12, "feet"),
  29320. weight: math.unit(400, "lb"),
  29321. name: "Overdrive",
  29322. image: {
  29323. source: "./media/characters/balina-amarini/overdrive.svg",
  29324. extra: 269 / 259,
  29325. bottom: 12 / 282
  29326. }
  29327. },
  29328. },
  29329. [
  29330. {
  29331. name: "Boom",
  29332. height: math.unit(9 + 10 / 12, "feet"),
  29333. default: true
  29334. },
  29335. {
  29336. name: "Macro",
  29337. height: math.unit(280, "feet")
  29338. },
  29339. ]
  29340. ))
  29341. characterMakers.push(() => makeCharacter(
  29342. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29343. {
  29344. goddess: {
  29345. height: math.unit(600, "feet"),
  29346. weight: math.unit(2000000, "tons"),
  29347. name: "Goddess",
  29348. image: {
  29349. source: "./media/characters/lady-kubwa/goddess.svg",
  29350. extra: 1240.5 / 1223,
  29351. bottom: 22 / 1263
  29352. }
  29353. },
  29354. goddesser: {
  29355. height: math.unit(900, "feet"),
  29356. weight: math.unit(20000000, "lb"),
  29357. name: "Goddess-er",
  29358. image: {
  29359. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29360. extra: 899 / 888,
  29361. bottom: 12.6 / 912
  29362. }
  29363. },
  29364. },
  29365. [
  29366. {
  29367. name: "Macro",
  29368. height: math.unit(600, "feet"),
  29369. default: true
  29370. },
  29371. {
  29372. name: "Megamacro",
  29373. height: math.unit(250, "miles")
  29374. },
  29375. ]
  29376. ))
  29377. characterMakers.push(() => makeCharacter(
  29378. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29379. {
  29380. front: {
  29381. height: math.unit(7 + 7 / 12, "feet"),
  29382. weight: math.unit(250, "lb"),
  29383. name: "Front",
  29384. image: {
  29385. source: "./media/characters/tala-grovehorn/front.svg",
  29386. extra: 2636 / 2525,
  29387. bottom: 147 / 2781
  29388. }
  29389. },
  29390. back: {
  29391. height: math.unit(7 + 7 / 12, "feet"),
  29392. weight: math.unit(250, "lb"),
  29393. name: "Back",
  29394. image: {
  29395. source: "./media/characters/tala-grovehorn/back.svg",
  29396. extra: 2635 / 2539,
  29397. bottom: 100 / 2732.8
  29398. }
  29399. },
  29400. mouth: {
  29401. height: math.unit(1.15, "feet"),
  29402. name: "Mouth",
  29403. image: {
  29404. source: "./media/characters/tala-grovehorn/mouth.svg"
  29405. }
  29406. },
  29407. dick: {
  29408. height: math.unit(2.36, "feet"),
  29409. name: "Dick",
  29410. image: {
  29411. source: "./media/characters/tala-grovehorn/dick.svg"
  29412. }
  29413. },
  29414. slit: {
  29415. height: math.unit(0.61, "feet"),
  29416. name: "Slit",
  29417. image: {
  29418. source: "./media/characters/tala-grovehorn/slit.svg"
  29419. }
  29420. },
  29421. },
  29422. [
  29423. ]
  29424. ))
  29425. characterMakers.push(() => makeCharacter(
  29426. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29427. {
  29428. front: {
  29429. height: math.unit(7 + 7 / 12, "feet"),
  29430. weight: math.unit(225, "lb"),
  29431. name: "Front",
  29432. image: {
  29433. source: "./media/characters/epona/front.svg",
  29434. extra: 2445 / 2290,
  29435. bottom: 251 / 2696
  29436. }
  29437. },
  29438. back: {
  29439. height: math.unit(7 + 7 / 12, "feet"),
  29440. weight: math.unit(225, "lb"),
  29441. name: "Back",
  29442. image: {
  29443. source: "./media/characters/epona/back.svg",
  29444. extra: 2546 / 2408,
  29445. bottom: 44 / 2589
  29446. }
  29447. },
  29448. genitals: {
  29449. height: math.unit(1.5, "feet"),
  29450. name: "Genitals",
  29451. image: {
  29452. source: "./media/characters/epona/genitals.svg"
  29453. }
  29454. },
  29455. },
  29456. [
  29457. {
  29458. name: "Normal",
  29459. height: math.unit(7 + 7 / 12, "feet"),
  29460. default: true
  29461. },
  29462. ]
  29463. ))
  29464. characterMakers.push(() => makeCharacter(
  29465. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29466. {
  29467. front: {
  29468. height: math.unit(7, "feet"),
  29469. weight: math.unit(518, "lb"),
  29470. name: "Front",
  29471. image: {
  29472. source: "./media/characters/avia-bloodbourn/front.svg",
  29473. extra: 1466 / 1350,
  29474. bottom: 65 / 1527
  29475. }
  29476. },
  29477. },
  29478. [
  29479. ]
  29480. ))
  29481. characterMakers.push(() => makeCharacter(
  29482. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29483. {
  29484. front: {
  29485. height: math.unit(9.35, "feet"),
  29486. weight: math.unit(600, "lb"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/amera/front.svg",
  29490. extra: 891 / 818,
  29491. bottom: 30 / 922.7
  29492. }
  29493. },
  29494. back: {
  29495. height: math.unit(9.35, "feet"),
  29496. weight: math.unit(600, "lb"),
  29497. name: "Back",
  29498. image: {
  29499. source: "./media/characters/amera/back.svg",
  29500. extra: 876 / 824,
  29501. bottom: 6.8 / 884
  29502. }
  29503. },
  29504. dick: {
  29505. height: math.unit(2.14, "feet"),
  29506. name: "Dick",
  29507. image: {
  29508. source: "./media/characters/amera/dick.svg"
  29509. }
  29510. },
  29511. },
  29512. [
  29513. {
  29514. name: "Normal",
  29515. height: math.unit(9.35, "feet"),
  29516. default: true
  29517. },
  29518. ]
  29519. ))
  29520. characterMakers.push(() => makeCharacter(
  29521. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29522. {
  29523. kneeling: {
  29524. height: math.unit(3 + 4 / 12, "feet"),
  29525. weight: math.unit(90, "lb"),
  29526. name: "Kneeling",
  29527. image: {
  29528. source: "./media/characters/rosewen/kneeling.svg",
  29529. extra: 1835 / 1571,
  29530. bottom: 27.7 / 1862
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Normal",
  29537. height: math.unit(3 + 4 / 12, "feet"),
  29538. default: true
  29539. },
  29540. ]
  29541. ))
  29542. characterMakers.push(() => makeCharacter(
  29543. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29544. {
  29545. front: {
  29546. height: math.unit(5 + 10 / 12, "feet"),
  29547. weight: math.unit(200, "lb"),
  29548. name: "Front",
  29549. image: {
  29550. source: "./media/characters/sabah/front.svg",
  29551. extra: 849 / 763,
  29552. bottom: 33.9 / 881
  29553. }
  29554. },
  29555. },
  29556. [
  29557. {
  29558. name: "Normal",
  29559. height: math.unit(5 + 10 / 12, "feet"),
  29560. default: true
  29561. },
  29562. ]
  29563. ))
  29564. characterMakers.push(() => makeCharacter(
  29565. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29566. {
  29567. front: {
  29568. height: math.unit(3 + 5 / 12, "feet"),
  29569. weight: math.unit(40, "kg"),
  29570. name: "Front",
  29571. image: {
  29572. source: "./media/characters/purple-flame/front.svg",
  29573. extra: 1577 / 1412,
  29574. bottom: 97 / 1694
  29575. }
  29576. },
  29577. frontDressed: {
  29578. height: math.unit(3 + 5 / 12, "feet"),
  29579. weight: math.unit(40, "kg"),
  29580. name: "Front (Dressed)",
  29581. image: {
  29582. source: "./media/characters/purple-flame/front-dressed.svg",
  29583. extra: 1577 / 1412,
  29584. bottom: 97 / 1694
  29585. }
  29586. },
  29587. headphones: {
  29588. height: math.unit(0.85, "feet"),
  29589. name: "Headphones",
  29590. image: {
  29591. source: "./media/characters/purple-flame/headphones.svg"
  29592. }
  29593. },
  29594. },
  29595. [
  29596. {
  29597. name: "Really Small",
  29598. height: math.unit(5, "cm")
  29599. },
  29600. {
  29601. name: "Micro",
  29602. height: math.unit(1 + 5 / 12, "feet")
  29603. },
  29604. {
  29605. name: "Normal",
  29606. height: math.unit(3 + 5 / 12, "feet"),
  29607. default: true
  29608. },
  29609. {
  29610. name: "Minimacro",
  29611. height: math.unit(125, "feet")
  29612. },
  29613. {
  29614. name: "Macro",
  29615. height: math.unit(0.5, "miles")
  29616. },
  29617. {
  29618. name: "Megamacro",
  29619. height: math.unit(50, "miles")
  29620. },
  29621. {
  29622. name: "Gigantic",
  29623. height: math.unit(750, "miles")
  29624. },
  29625. {
  29626. name: "Planetary",
  29627. height: math.unit(15000, "miles")
  29628. },
  29629. ]
  29630. ))
  29631. characterMakers.push(() => makeCharacter(
  29632. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29633. {
  29634. front: {
  29635. height: math.unit(14, "feet"),
  29636. weight: math.unit(959, "lb"),
  29637. name: "Front",
  29638. image: {
  29639. source: "./media/characters/arsenal/front.svg",
  29640. extra: 2357 / 2157,
  29641. bottom: 93 / 2458
  29642. }
  29643. },
  29644. },
  29645. [
  29646. {
  29647. name: "Normal",
  29648. height: math.unit(14, "feet"),
  29649. default: true
  29650. },
  29651. ]
  29652. ))
  29653. characterMakers.push(() => makeCharacter(
  29654. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29655. {
  29656. front: {
  29657. height: math.unit(6, "feet"),
  29658. weight: math.unit(150, "lb"),
  29659. name: "Front",
  29660. image: {
  29661. source: "./media/characters/adira/front.svg",
  29662. extra: 2121/2013,
  29663. bottom: 206/2327
  29664. }
  29665. },
  29666. },
  29667. [
  29668. {
  29669. name: "Micro",
  29670. height: math.unit(4, "inches"),
  29671. default: true
  29672. },
  29673. {
  29674. name: "Macro",
  29675. height: math.unit(50, "feet")
  29676. },
  29677. ]
  29678. ))
  29679. characterMakers.push(() => makeCharacter(
  29680. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29681. {
  29682. front: {
  29683. height: math.unit(16, "feet"),
  29684. weight: math.unit(1000, "lb"),
  29685. name: "Front",
  29686. image: {
  29687. source: "./media/characters/grim/front.svg",
  29688. extra: 622 / 614,
  29689. bottom: 18.1 / 642
  29690. }
  29691. },
  29692. back: {
  29693. height: math.unit(16, "feet"),
  29694. weight: math.unit(1000, "lb"),
  29695. name: "Back",
  29696. image: {
  29697. source: "./media/characters/grim/back.svg",
  29698. extra: 610.6 / 602,
  29699. bottom: 40.8 / 652
  29700. }
  29701. },
  29702. hunched: {
  29703. height: math.unit(9.75, "feet"),
  29704. weight: math.unit(1000, "lb"),
  29705. name: "Hunched",
  29706. image: {
  29707. source: "./media/characters/grim/hunched.svg",
  29708. extra: 304 / 297,
  29709. bottom: 35.4 / 394
  29710. }
  29711. },
  29712. },
  29713. [
  29714. {
  29715. name: "Normal",
  29716. height: math.unit(16, "feet"),
  29717. default: true
  29718. },
  29719. ]
  29720. ))
  29721. characterMakers.push(() => makeCharacter(
  29722. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29723. {
  29724. front: {
  29725. height: math.unit(2.3, "meters"),
  29726. weight: math.unit(300, "lb"),
  29727. name: "Front",
  29728. image: {
  29729. source: "./media/characters/sinja/front-sfw.svg",
  29730. extra: 1393 / 1294,
  29731. bottom: 70 / 1463
  29732. }
  29733. },
  29734. frontNsfw: {
  29735. height: math.unit(2.3, "meters"),
  29736. weight: math.unit(300, "lb"),
  29737. name: "Front (NSFW)",
  29738. image: {
  29739. source: "./media/characters/sinja/front-nsfw.svg",
  29740. extra: 1393 / 1294,
  29741. bottom: 70 / 1463
  29742. }
  29743. },
  29744. back: {
  29745. height: math.unit(2.3, "meters"),
  29746. weight: math.unit(300, "lb"),
  29747. name: "Back",
  29748. image: {
  29749. source: "./media/characters/sinja/back.svg",
  29750. extra: 1393 / 1294,
  29751. bottom: 70 / 1463
  29752. }
  29753. },
  29754. head: {
  29755. height: math.unit(1.771, "feet"),
  29756. name: "Head",
  29757. image: {
  29758. source: "./media/characters/sinja/head.svg"
  29759. }
  29760. },
  29761. slit: {
  29762. height: math.unit(0.8, "feet"),
  29763. name: "Slit",
  29764. image: {
  29765. source: "./media/characters/sinja/slit.svg"
  29766. }
  29767. },
  29768. },
  29769. [
  29770. {
  29771. name: "Normal",
  29772. height: math.unit(2.3, "meters")
  29773. },
  29774. {
  29775. name: "Macro",
  29776. height: math.unit(91, "meters"),
  29777. default: true
  29778. },
  29779. {
  29780. name: "Megamacro",
  29781. height: math.unit(91440, "meters")
  29782. },
  29783. {
  29784. name: "Gigamacro",
  29785. height: math.unit(60960000, "meters")
  29786. },
  29787. {
  29788. name: "Teramacro",
  29789. height: math.unit(9144000000, "meters")
  29790. },
  29791. ]
  29792. ))
  29793. characterMakers.push(() => makeCharacter(
  29794. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29795. {
  29796. front: {
  29797. height: math.unit(1.7, "meters"),
  29798. weight: math.unit(130, "lb"),
  29799. name: "Front",
  29800. image: {
  29801. source: "./media/characters/kyu/front.svg",
  29802. extra: 415 / 395,
  29803. bottom: 5 / 420
  29804. }
  29805. },
  29806. head: {
  29807. height: math.unit(1.75, "feet"),
  29808. name: "Head",
  29809. image: {
  29810. source: "./media/characters/kyu/head.svg"
  29811. }
  29812. },
  29813. foot: {
  29814. height: math.unit(0.81, "feet"),
  29815. name: "Foot",
  29816. image: {
  29817. source: "./media/characters/kyu/foot.svg"
  29818. }
  29819. },
  29820. },
  29821. [
  29822. {
  29823. name: "Normal",
  29824. height: math.unit(1.7, "meters")
  29825. },
  29826. {
  29827. name: "Macro",
  29828. height: math.unit(131, "feet"),
  29829. default: true
  29830. },
  29831. {
  29832. name: "Megamacro",
  29833. height: math.unit(91440, "meters")
  29834. },
  29835. {
  29836. name: "Gigamacro",
  29837. height: math.unit(60960000, "meters")
  29838. },
  29839. {
  29840. name: "Teramacro",
  29841. height: math.unit(9144000000, "meters")
  29842. },
  29843. ]
  29844. ))
  29845. characterMakers.push(() => makeCharacter(
  29846. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29847. {
  29848. front: {
  29849. height: math.unit(7 + 1 / 12, "feet"),
  29850. weight: math.unit(250, "lb"),
  29851. name: "Front",
  29852. image: {
  29853. source: "./media/characters/joey/front.svg",
  29854. extra: 1791 / 1537,
  29855. bottom: 28 / 1816
  29856. }
  29857. },
  29858. },
  29859. [
  29860. {
  29861. name: "Micro",
  29862. height: math.unit(3, "inches")
  29863. },
  29864. {
  29865. name: "Normal",
  29866. height: math.unit(7 + 1 / 12, "feet"),
  29867. default: true
  29868. },
  29869. ]
  29870. ))
  29871. characterMakers.push(() => makeCharacter(
  29872. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29873. {
  29874. front: {
  29875. height: math.unit(165, "cm"),
  29876. weight: math.unit(140, "lb"),
  29877. name: "Front",
  29878. image: {
  29879. source: "./media/characters/sam-evans/front.svg",
  29880. extra: 3417 / 3230,
  29881. bottom: 41.3 / 3417
  29882. }
  29883. },
  29884. frontSixTails: {
  29885. height: math.unit(165, "cm"),
  29886. weight: math.unit(140, "lb"),
  29887. name: "Front-six-tails",
  29888. image: {
  29889. source: "./media/characters/sam-evans/front-six-tails.svg",
  29890. extra: 3417 / 3230,
  29891. bottom: 41.3 / 3417
  29892. }
  29893. },
  29894. back: {
  29895. height: math.unit(165, "cm"),
  29896. weight: math.unit(140, "lb"),
  29897. name: "Back",
  29898. image: {
  29899. source: "./media/characters/sam-evans/back.svg",
  29900. extra: 3227 / 3032,
  29901. bottom: 6.8 / 3234
  29902. }
  29903. },
  29904. face: {
  29905. height: math.unit(0.68, "feet"),
  29906. name: "Face",
  29907. image: {
  29908. source: "./media/characters/sam-evans/face.svg"
  29909. }
  29910. },
  29911. },
  29912. [
  29913. {
  29914. name: "Normal",
  29915. height: math.unit(165, "cm"),
  29916. default: true
  29917. },
  29918. {
  29919. name: "Macro",
  29920. height: math.unit(100, "meters")
  29921. },
  29922. {
  29923. name: "Macro+",
  29924. height: math.unit(800, "meters")
  29925. },
  29926. {
  29927. name: "Macro++",
  29928. height: math.unit(3, "km")
  29929. },
  29930. {
  29931. name: "Macro+++",
  29932. height: math.unit(30, "km")
  29933. },
  29934. ]
  29935. ))
  29936. characterMakers.push(() => makeCharacter(
  29937. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29938. {
  29939. front: {
  29940. height: math.unit(10, "feet"),
  29941. weight: math.unit(750, "lb"),
  29942. name: "Front",
  29943. image: {
  29944. source: "./media/characters/juliet-a/front.svg",
  29945. extra: 1766 / 1720,
  29946. bottom: 43 / 1809
  29947. }
  29948. },
  29949. back: {
  29950. height: math.unit(10, "feet"),
  29951. weight: math.unit(750, "lb"),
  29952. name: "Back",
  29953. image: {
  29954. source: "./media/characters/juliet-a/back.svg",
  29955. extra: 1781 / 1734,
  29956. bottom: 35 / 1810,
  29957. }
  29958. },
  29959. },
  29960. [
  29961. {
  29962. name: "Normal",
  29963. height: math.unit(10, "feet"),
  29964. default: true
  29965. },
  29966. {
  29967. name: "Dragon Form",
  29968. height: math.unit(250, "feet")
  29969. },
  29970. {
  29971. name: "Macro",
  29972. height: math.unit(1000, "feet")
  29973. },
  29974. {
  29975. name: "Megamacro",
  29976. height: math.unit(10000, "feet")
  29977. }
  29978. ]
  29979. ))
  29980. characterMakers.push(() => makeCharacter(
  29981. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29982. {
  29983. regular: {
  29984. height: math.unit(7 + 3 / 12, "feet"),
  29985. weight: math.unit(260, "lb"),
  29986. name: "Regular",
  29987. image: {
  29988. source: "./media/characters/wild/regular.svg",
  29989. extra: 97.45 / 92,
  29990. bottom: 6.8 / 104.3
  29991. }
  29992. },
  29993. biggums: {
  29994. height: math.unit(8 + 6 / 12, "feet"),
  29995. weight: math.unit(425, "lb"),
  29996. name: "Biggums",
  29997. image: {
  29998. source: "./media/characters/wild/biggums.svg",
  29999. extra: 97.45 / 92,
  30000. bottom: 7.5 / 132.34
  30001. }
  30002. },
  30003. mawRegular: {
  30004. height: math.unit(1.24, "feet"),
  30005. name: "Maw (Regular)",
  30006. image: {
  30007. source: "./media/characters/wild/maw.svg"
  30008. }
  30009. },
  30010. mawBiggums: {
  30011. height: math.unit(1.47, "feet"),
  30012. name: "Maw (Biggums)",
  30013. image: {
  30014. source: "./media/characters/wild/maw.svg"
  30015. }
  30016. },
  30017. },
  30018. [
  30019. {
  30020. name: "Normal",
  30021. height: math.unit(7 + 3 / 12, "feet"),
  30022. default: true
  30023. },
  30024. ]
  30025. ))
  30026. characterMakers.push(() => makeCharacter(
  30027. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30028. {
  30029. front: {
  30030. height: math.unit(2.5, "meters"),
  30031. weight: math.unit(200, "kg"),
  30032. name: "Front",
  30033. image: {
  30034. source: "./media/characters/vidar/front.svg",
  30035. extra: 2994 / 2795,
  30036. bottom: 56 / 3061
  30037. }
  30038. },
  30039. back: {
  30040. height: math.unit(2.5, "meters"),
  30041. weight: math.unit(200, "kg"),
  30042. name: "Back",
  30043. image: {
  30044. source: "./media/characters/vidar/back.svg",
  30045. extra: 3131 / 2928,
  30046. bottom: 13.5 / 3141.5
  30047. }
  30048. },
  30049. feral: {
  30050. height: math.unit(2.5, "meters"),
  30051. weight: math.unit(2000, "kg"),
  30052. name: "Feral",
  30053. image: {
  30054. source: "./media/characters/vidar/feral.svg",
  30055. extra: 2790 / 1765,
  30056. bottom: 6 / 2796
  30057. }
  30058. },
  30059. },
  30060. [
  30061. {
  30062. name: "Normal",
  30063. height: math.unit(2.5, "meters"),
  30064. default: true
  30065. },
  30066. {
  30067. name: "Macro",
  30068. height: math.unit(100, "meters")
  30069. },
  30070. ]
  30071. ))
  30072. characterMakers.push(() => makeCharacter(
  30073. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30074. {
  30075. front: {
  30076. height: math.unit(5 + 9 / 12, "feet"),
  30077. weight: math.unit(120, "lb"),
  30078. name: "Front",
  30079. image: {
  30080. source: "./media/characters/ash/front.svg",
  30081. extra: 2189 / 1961,
  30082. bottom: 5.2 / 2194
  30083. }
  30084. },
  30085. },
  30086. [
  30087. {
  30088. name: "Normal",
  30089. height: math.unit(5 + 9 / 12, "feet"),
  30090. default: true
  30091. },
  30092. ]
  30093. ))
  30094. characterMakers.push(() => makeCharacter(
  30095. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30096. {
  30097. front: {
  30098. height: math.unit(9, "feet"),
  30099. weight: math.unit(10000, "lb"),
  30100. name: "Front",
  30101. image: {
  30102. source: "./media/characters/gygabite/front.svg",
  30103. bottom: 31.7 / 537.8,
  30104. extra: 505 / 370
  30105. }
  30106. },
  30107. },
  30108. [
  30109. {
  30110. name: "Normal",
  30111. height: math.unit(9, "feet"),
  30112. default: true
  30113. },
  30114. ]
  30115. ))
  30116. characterMakers.push(() => makeCharacter(
  30117. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30118. {
  30119. front: {
  30120. height: math.unit(12, "feet"),
  30121. weight: math.unit(4000, "lb"),
  30122. name: "Front",
  30123. image: {
  30124. source: "./media/characters/p0tat0/front.svg",
  30125. extra: 1065 / 921,
  30126. bottom: 55.7 / 1121.25
  30127. }
  30128. },
  30129. },
  30130. [
  30131. {
  30132. name: "Normal",
  30133. height: math.unit(12, "feet"),
  30134. default: true
  30135. },
  30136. ]
  30137. ))
  30138. characterMakers.push(() => makeCharacter(
  30139. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30140. {
  30141. side: {
  30142. height: math.unit(6.5, "feet"),
  30143. weight: math.unit(800, "lb"),
  30144. name: "Side",
  30145. image: {
  30146. source: "./media/characters/dusk/side.svg",
  30147. extra: 615 / 373,
  30148. bottom: 53 / 664
  30149. }
  30150. },
  30151. sitting: {
  30152. height: math.unit(7, "feet"),
  30153. weight: math.unit(800, "lb"),
  30154. name: "Sitting",
  30155. image: {
  30156. source: "./media/characters/dusk/sitting.svg",
  30157. extra: 753 / 425,
  30158. bottom: 33 / 774
  30159. }
  30160. },
  30161. head: {
  30162. height: math.unit(6.1, "feet"),
  30163. name: "Head",
  30164. image: {
  30165. source: "./media/characters/dusk/head.svg"
  30166. }
  30167. },
  30168. },
  30169. [
  30170. {
  30171. name: "Normal",
  30172. height: math.unit(7, "feet"),
  30173. default: true
  30174. },
  30175. ]
  30176. ))
  30177. characterMakers.push(() => makeCharacter(
  30178. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30179. {
  30180. front: {
  30181. height: math.unit(15, "feet"),
  30182. weight: math.unit(7000, "lb"),
  30183. name: "Front",
  30184. image: {
  30185. source: "./media/characters/jay-direwolf/front.svg",
  30186. extra: 1810 / 1732,
  30187. bottom: 66 / 1892
  30188. }
  30189. },
  30190. },
  30191. [
  30192. {
  30193. name: "Normal",
  30194. height: math.unit(15, "feet"),
  30195. default: true
  30196. },
  30197. ]
  30198. ))
  30199. characterMakers.push(() => makeCharacter(
  30200. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30201. {
  30202. front: {
  30203. height: math.unit(4 + 9 / 12, "feet"),
  30204. weight: math.unit(130, "lb"),
  30205. name: "Front",
  30206. image: {
  30207. source: "./media/characters/anchovie/front.svg",
  30208. extra: 382 / 350,
  30209. bottom: 25 / 409
  30210. }
  30211. },
  30212. back: {
  30213. height: math.unit(4 + 9 / 12, "feet"),
  30214. weight: math.unit(130, "lb"),
  30215. name: "Back",
  30216. image: {
  30217. source: "./media/characters/anchovie/back.svg",
  30218. extra: 385 / 352,
  30219. bottom: 16.6 / 402
  30220. }
  30221. },
  30222. frontDressed: {
  30223. height: math.unit(4 + 9 / 12, "feet"),
  30224. weight: math.unit(130, "lb"),
  30225. name: "Front (Dressed)",
  30226. image: {
  30227. source: "./media/characters/anchovie/front-dressed.svg",
  30228. extra: 382 / 350,
  30229. bottom: 25 / 409
  30230. }
  30231. },
  30232. backDressed: {
  30233. height: math.unit(4 + 9 / 12, "feet"),
  30234. weight: math.unit(130, "lb"),
  30235. name: "Back (Dressed)",
  30236. image: {
  30237. source: "./media/characters/anchovie/back-dressed.svg",
  30238. extra: 385 / 352,
  30239. bottom: 16.6 / 402
  30240. }
  30241. },
  30242. },
  30243. [
  30244. {
  30245. name: "Micro",
  30246. height: math.unit(6.4, "inches")
  30247. },
  30248. {
  30249. name: "Normal",
  30250. height: math.unit(4 + 9 / 12, "feet"),
  30251. default: true
  30252. },
  30253. ]
  30254. ))
  30255. characterMakers.push(() => makeCharacter(
  30256. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30257. {
  30258. front: {
  30259. height: math.unit(2, "meters"),
  30260. weight: math.unit(180, "lb"),
  30261. name: "Front",
  30262. image: {
  30263. source: "./media/characters/acidrenamon/front.svg",
  30264. extra: 987 / 890,
  30265. bottom: 22.8 / 1009
  30266. }
  30267. },
  30268. back: {
  30269. height: math.unit(2, "meters"),
  30270. weight: math.unit(180, "lb"),
  30271. name: "Back",
  30272. image: {
  30273. source: "./media/characters/acidrenamon/back.svg",
  30274. extra: 983 / 891,
  30275. bottom: 8.4 / 992
  30276. }
  30277. },
  30278. head: {
  30279. height: math.unit(1.92, "feet"),
  30280. name: "Head",
  30281. image: {
  30282. source: "./media/characters/acidrenamon/head.svg"
  30283. }
  30284. },
  30285. rump: {
  30286. height: math.unit(1.72, "feet"),
  30287. name: "Rump",
  30288. image: {
  30289. source: "./media/characters/acidrenamon/rump.svg"
  30290. }
  30291. },
  30292. tail: {
  30293. height: math.unit(4.2, "feet"),
  30294. name: "Tail",
  30295. image: {
  30296. source: "./media/characters/acidrenamon/tail.svg"
  30297. }
  30298. },
  30299. },
  30300. [
  30301. {
  30302. name: "Normal",
  30303. height: math.unit(2, "meters"),
  30304. default: true
  30305. },
  30306. {
  30307. name: "Minimacro",
  30308. height: math.unit(7, "meters")
  30309. },
  30310. {
  30311. name: "Macro",
  30312. height: math.unit(200, "meters")
  30313. },
  30314. {
  30315. name: "Gigamacro",
  30316. height: math.unit(0.2, "earths")
  30317. },
  30318. ]
  30319. ))
  30320. characterMakers.push(() => makeCharacter(
  30321. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30322. {
  30323. front: {
  30324. height: math.unit(152, "feet"),
  30325. name: "Front",
  30326. image: {
  30327. source: "./media/characters/kenzie-lee/front.svg",
  30328. extra: 1869/1774,
  30329. bottom: 128/1997
  30330. }
  30331. },
  30332. side: {
  30333. height: math.unit(86, "feet"),
  30334. name: "Side",
  30335. image: {
  30336. source: "./media/characters/kenzie-lee/side.svg",
  30337. extra: 930/815,
  30338. bottom: 177/1107
  30339. }
  30340. },
  30341. paw: {
  30342. height: math.unit(15, "feet"),
  30343. name: "Paw",
  30344. image: {
  30345. source: "./media/characters/kenzie-lee/paw.svg"
  30346. }
  30347. },
  30348. },
  30349. [
  30350. {
  30351. name: "Kenzie Flea",
  30352. height: math.unit(2, "mm"),
  30353. default: true
  30354. },
  30355. {
  30356. name: "Micro",
  30357. height: math.unit(2, "inches")
  30358. },
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(152, "feet")
  30362. },
  30363. {
  30364. name: "Megamacro",
  30365. height: math.unit(7, "miles")
  30366. },
  30367. {
  30368. name: "Gigamacro",
  30369. height: math.unit(8000, "miles")
  30370. },
  30371. ]
  30372. ))
  30373. characterMakers.push(() => makeCharacter(
  30374. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30375. {
  30376. front: {
  30377. height: math.unit(6, "feet"),
  30378. name: "Front",
  30379. image: {
  30380. source: "./media/characters/withers/front.svg",
  30381. extra: 1935/1760,
  30382. bottom: 72/2007
  30383. }
  30384. },
  30385. back: {
  30386. height: math.unit(6, "feet"),
  30387. name: "Back",
  30388. image: {
  30389. source: "./media/characters/withers/back.svg",
  30390. extra: 1944/1792,
  30391. bottom: 12/1956
  30392. }
  30393. },
  30394. dressed: {
  30395. height: math.unit(6, "feet"),
  30396. name: "Dressed",
  30397. image: {
  30398. source: "./media/characters/withers/dressed.svg",
  30399. extra: 1937/1765,
  30400. bottom: 73/2010
  30401. }
  30402. },
  30403. phase1: {
  30404. height: math.unit(1.1, "feet"),
  30405. name: "Phase 1",
  30406. image: {
  30407. source: "./media/characters/withers/phase-1.svg",
  30408. extra: 1885/1232,
  30409. bottom: 0/1885
  30410. }
  30411. },
  30412. phase2: {
  30413. height: math.unit(1.05, "feet"),
  30414. name: "Phase 2",
  30415. image: {
  30416. source: "./media/characters/withers/phase-2.svg",
  30417. extra: 1792/1090,
  30418. bottom: 0/1792
  30419. }
  30420. },
  30421. partyWipe: {
  30422. height: math.unit(1.1, "feet"),
  30423. name: "Party Wipe",
  30424. image: {
  30425. source: "./media/characters/withers/party-wipe.svg",
  30426. extra: 1864/1207,
  30427. bottom: 0/1864
  30428. }
  30429. },
  30430. },
  30431. [
  30432. {
  30433. name: "Macro",
  30434. height: math.unit(167, "feet"),
  30435. default: true
  30436. },
  30437. {
  30438. name: "Megamacro",
  30439. height: math.unit(15, "miles")
  30440. }
  30441. ]
  30442. ))
  30443. characterMakers.push(() => makeCharacter(
  30444. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30445. {
  30446. front: {
  30447. height: math.unit(6 + 7 / 12, "feet"),
  30448. weight: math.unit(250, "lb"),
  30449. name: "Front",
  30450. image: {
  30451. source: "./media/characters/nemoskii/front.svg",
  30452. extra: 2270 / 1734,
  30453. bottom: 86 / 2354
  30454. }
  30455. },
  30456. back: {
  30457. height: math.unit(6 + 7 / 12, "feet"),
  30458. weight: math.unit(250, "lb"),
  30459. name: "Back",
  30460. image: {
  30461. source: "./media/characters/nemoskii/back.svg",
  30462. extra: 1845 / 1788,
  30463. bottom: 10.5 / 1852
  30464. }
  30465. },
  30466. head: {
  30467. height: math.unit(1.31, "feet"),
  30468. name: "Head",
  30469. image: {
  30470. source: "./media/characters/nemoskii/head.svg"
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Micro",
  30477. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30478. },
  30479. {
  30480. name: "Normal",
  30481. height: math.unit(6 + 7 / 12, "feet"),
  30482. default: true
  30483. },
  30484. {
  30485. name: "Macro",
  30486. height: math.unit((6 + 7 / 12) * 150, "feet")
  30487. },
  30488. {
  30489. name: "Macro+",
  30490. height: math.unit((6 + 7 / 12) * 500, "feet")
  30491. },
  30492. {
  30493. name: "Megamacro",
  30494. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30495. },
  30496. ]
  30497. ))
  30498. characterMakers.push(() => makeCharacter(
  30499. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30500. {
  30501. front: {
  30502. height: math.unit(1, "mile"),
  30503. weight: math.unit(265261.9, "lb"),
  30504. name: "Front",
  30505. image: {
  30506. source: "./media/characters/shui/front.svg",
  30507. extra: 1633 / 1564,
  30508. bottom: 91.5 / 1726
  30509. }
  30510. },
  30511. },
  30512. [
  30513. {
  30514. name: "Macro",
  30515. height: math.unit(1, "mile"),
  30516. default: true
  30517. },
  30518. ]
  30519. ))
  30520. characterMakers.push(() => makeCharacter(
  30521. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30522. {
  30523. front: {
  30524. height: math.unit(12 + 6 / 12, "feet"),
  30525. weight: math.unit(1342, "lb"),
  30526. name: "Front",
  30527. image: {
  30528. source: "./media/characters/arokh-takakura/front.svg",
  30529. extra: 1089 / 1043,
  30530. bottom: 77.4 / 1176.7
  30531. }
  30532. },
  30533. back: {
  30534. height: math.unit(12 + 6 / 12, "feet"),
  30535. weight: math.unit(1342, "lb"),
  30536. name: "Back",
  30537. image: {
  30538. source: "./media/characters/arokh-takakura/back.svg",
  30539. extra: 1046 / 1019,
  30540. bottom: 102 / 1150
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Big",
  30547. height: math.unit(12 + 6 / 12, "feet"),
  30548. default: true
  30549. },
  30550. ]
  30551. ))
  30552. characterMakers.push(() => makeCharacter(
  30553. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30554. {
  30555. front: {
  30556. height: math.unit(5 + 6 / 12, "feet"),
  30557. weight: math.unit(150, "lb"),
  30558. name: "Front",
  30559. image: {
  30560. source: "./media/characters/theo/front.svg",
  30561. extra: 1184 / 1131,
  30562. bottom: 7.4 / 1191
  30563. }
  30564. },
  30565. },
  30566. [
  30567. {
  30568. name: "Micro",
  30569. height: math.unit(5, "inches")
  30570. },
  30571. {
  30572. name: "Normal",
  30573. height: math.unit(5 + 6 / 12, "feet"),
  30574. default: true
  30575. },
  30576. ]
  30577. ))
  30578. characterMakers.push(() => makeCharacter(
  30579. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30580. {
  30581. front: {
  30582. height: math.unit(5 + 9 / 12, "feet"),
  30583. weight: math.unit(130, "lb"),
  30584. name: "Front",
  30585. image: {
  30586. source: "./media/characters/cecelia-swift/front.svg",
  30587. extra: 502 / 484,
  30588. bottom: 23 / 523
  30589. }
  30590. },
  30591. back: {
  30592. height: math.unit(5 + 9 / 12, "feet"),
  30593. weight: math.unit(130, "lb"),
  30594. name: "Back",
  30595. image: {
  30596. source: "./media/characters/cecelia-swift/back.svg",
  30597. extra: 499 / 485,
  30598. bottom: 12 / 511
  30599. }
  30600. },
  30601. head: {
  30602. height: math.unit(0.90, "feet"),
  30603. name: "Head",
  30604. image: {
  30605. source: "./media/characters/cecelia-swift/head.svg"
  30606. }
  30607. },
  30608. rump: {
  30609. height: math.unit(1.75, "feet"),
  30610. name: "Rump",
  30611. image: {
  30612. source: "./media/characters/cecelia-swift/rump.svg"
  30613. }
  30614. },
  30615. },
  30616. [
  30617. {
  30618. name: "Normal",
  30619. height: math.unit(5 + 9 / 12, "feet"),
  30620. default: true
  30621. },
  30622. {
  30623. name: "Big",
  30624. height: math.unit(50, "feet")
  30625. },
  30626. {
  30627. name: "Macro",
  30628. height: math.unit(100, "feet")
  30629. },
  30630. {
  30631. name: "Macro+",
  30632. height: math.unit(500, "feet")
  30633. },
  30634. {
  30635. name: "Macro++",
  30636. height: math.unit(1000, "feet")
  30637. },
  30638. ]
  30639. ))
  30640. characterMakers.push(() => makeCharacter(
  30641. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30642. {
  30643. front: {
  30644. height: math.unit(6, "feet"),
  30645. weight: math.unit(150, "lb"),
  30646. name: "Front",
  30647. image: {
  30648. source: "./media/characters/kaunan/front.svg",
  30649. extra: 2890 / 2523,
  30650. bottom: 49 / 2939
  30651. }
  30652. },
  30653. },
  30654. [
  30655. {
  30656. name: "Macro",
  30657. height: math.unit(150, "feet"),
  30658. default: true
  30659. },
  30660. ]
  30661. ))
  30662. characterMakers.push(() => makeCharacter(
  30663. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30664. {
  30665. dressed: {
  30666. height: math.unit(175, "cm"),
  30667. weight: math.unit(60, "kg"),
  30668. name: "Dressed",
  30669. image: {
  30670. source: "./media/characters/fei/dressed.svg",
  30671. extra: 1402/1278,
  30672. bottom: 27/1429
  30673. }
  30674. },
  30675. nude: {
  30676. height: math.unit(175, "cm"),
  30677. weight: math.unit(60, "kg"),
  30678. name: "Nude",
  30679. image: {
  30680. source: "./media/characters/fei/nude.svg",
  30681. extra: 1402/1278,
  30682. bottom: 27/1429
  30683. }
  30684. },
  30685. heels: {
  30686. height: math.unit(0.466, "feet"),
  30687. name: "Heels",
  30688. image: {
  30689. source: "./media/characters/fei/heels.svg",
  30690. extra: 156/152,
  30691. bottom: 28/184
  30692. }
  30693. },
  30694. },
  30695. [
  30696. {
  30697. name: "Mortal",
  30698. height: math.unit(175, "cm")
  30699. },
  30700. {
  30701. name: "Normal",
  30702. height: math.unit(3500, "m")
  30703. },
  30704. {
  30705. name: "Stroll",
  30706. height: math.unit(18.4, "km"),
  30707. default: true
  30708. },
  30709. {
  30710. name: "Showoff",
  30711. height: math.unit(175, "km")
  30712. },
  30713. ]
  30714. ))
  30715. characterMakers.push(() => makeCharacter(
  30716. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30717. {
  30718. front: {
  30719. height: math.unit(7, "feet"),
  30720. weight: math.unit(1000, "kg"),
  30721. name: "Front",
  30722. image: {
  30723. source: "./media/characters/edrax/front.svg",
  30724. extra: 2838 / 2550,
  30725. bottom: 130 / 2968
  30726. }
  30727. },
  30728. },
  30729. [
  30730. {
  30731. name: "Small",
  30732. height: math.unit(7, "feet")
  30733. },
  30734. {
  30735. name: "Normal",
  30736. height: math.unit(1500, "meters")
  30737. },
  30738. {
  30739. name: "Mega",
  30740. height: math.unit(12000000, "km"),
  30741. default: true
  30742. },
  30743. {
  30744. name: "Megamacro",
  30745. height: math.unit(10600000, "lightyears")
  30746. },
  30747. {
  30748. name: "Hypermacro",
  30749. height: math.unit(256, "yottameters")
  30750. },
  30751. ]
  30752. ))
  30753. characterMakers.push(() => makeCharacter(
  30754. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30755. {
  30756. front: {
  30757. height: math.unit(10, "feet"),
  30758. weight: math.unit(750, "lb"),
  30759. name: "Front",
  30760. image: {
  30761. source: "./media/characters/clove/front.svg",
  30762. extra: 1918/1751,
  30763. bottom: 52/1970
  30764. }
  30765. },
  30766. back: {
  30767. height: math.unit(10, "feet"),
  30768. weight: math.unit(750, "lb"),
  30769. name: "Back",
  30770. image: {
  30771. source: "./media/characters/clove/back.svg",
  30772. extra: 1912/1747,
  30773. bottom: 50/1962
  30774. }
  30775. },
  30776. },
  30777. [
  30778. {
  30779. name: "Normal",
  30780. height: math.unit(10, "feet"),
  30781. default: true
  30782. },
  30783. ]
  30784. ))
  30785. characterMakers.push(() => makeCharacter(
  30786. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30787. {
  30788. front: {
  30789. height: math.unit(4, "feet"),
  30790. weight: math.unit(50, "lb"),
  30791. name: "Front",
  30792. image: {
  30793. source: "./media/characters/alex-rabbit/front.svg",
  30794. extra: 507 / 458,
  30795. bottom: 18.5 / 527
  30796. }
  30797. },
  30798. back: {
  30799. height: math.unit(4, "feet"),
  30800. weight: math.unit(50, "lb"),
  30801. name: "Back",
  30802. image: {
  30803. source: "./media/characters/alex-rabbit/back.svg",
  30804. extra: 502 / 460,
  30805. bottom: 18.9 / 521
  30806. }
  30807. },
  30808. },
  30809. [
  30810. {
  30811. name: "Normal",
  30812. height: math.unit(4, "feet"),
  30813. default: true
  30814. },
  30815. ]
  30816. ))
  30817. characterMakers.push(() => makeCharacter(
  30818. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30819. {
  30820. front: {
  30821. height: math.unit(1 + 3 / 12, "feet"),
  30822. weight: math.unit(80, "lb"),
  30823. name: "Front",
  30824. image: {
  30825. source: "./media/characters/zander-rose/front.svg",
  30826. extra: 916 / 797,
  30827. bottom: 17 / 933
  30828. }
  30829. },
  30830. back: {
  30831. height: math.unit(1 + 3 / 12, "feet"),
  30832. weight: math.unit(80, "lb"),
  30833. name: "Back",
  30834. image: {
  30835. source: "./media/characters/zander-rose/back.svg",
  30836. extra: 903 / 779,
  30837. bottom: 31 / 934
  30838. }
  30839. },
  30840. },
  30841. [
  30842. {
  30843. name: "Normal",
  30844. height: math.unit(1 + 3 / 12, "feet"),
  30845. default: true
  30846. },
  30847. ]
  30848. ))
  30849. characterMakers.push(() => makeCharacter(
  30850. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30851. {
  30852. anthro: {
  30853. height: math.unit(6, "feet"),
  30854. weight: math.unit(150, "lb"),
  30855. name: "Anthro",
  30856. image: {
  30857. source: "./media/characters/razz/anthro.svg",
  30858. extra: 1437 / 1343,
  30859. bottom: 48 / 1485
  30860. }
  30861. },
  30862. feral: {
  30863. height: math.unit(6, "feet"),
  30864. weight: math.unit(150, "lb"),
  30865. name: "Feral",
  30866. image: {
  30867. source: "./media/characters/razz/feral.svg",
  30868. extra: 2569 / 1385,
  30869. bottom: 95 / 2664
  30870. }
  30871. },
  30872. },
  30873. [
  30874. {
  30875. name: "Normal",
  30876. height: math.unit(6, "feet"),
  30877. default: true
  30878. },
  30879. ]
  30880. ))
  30881. characterMakers.push(() => makeCharacter(
  30882. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30883. {
  30884. front: {
  30885. height: math.unit(9 + 4 / 12, "feet"),
  30886. weight: math.unit(500, "lb"),
  30887. name: "Front",
  30888. image: {
  30889. source: "./media/characters/morrigan/front.svg",
  30890. extra: 2707 / 2579,
  30891. bottom: 156 / 2863
  30892. }
  30893. },
  30894. },
  30895. [
  30896. {
  30897. name: "Normal",
  30898. height: math.unit(9 + 4 / 12, "feet"),
  30899. default: true
  30900. },
  30901. ]
  30902. ))
  30903. characterMakers.push(() => makeCharacter(
  30904. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30905. {
  30906. front: {
  30907. height: math.unit(5, "stories"),
  30908. weight: math.unit(4000, "lb"),
  30909. name: "Front",
  30910. image: {
  30911. source: "./media/characters/jenene/front.svg",
  30912. extra: 1780 / 1710,
  30913. bottom: 57 / 1837
  30914. }
  30915. },
  30916. },
  30917. [
  30918. {
  30919. name: "Normal",
  30920. height: math.unit(5, "stories"),
  30921. default: true
  30922. },
  30923. ]
  30924. ))
  30925. characterMakers.push(() => makeCharacter(
  30926. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30927. {
  30928. taurSfw: {
  30929. height: math.unit(10, "meters"),
  30930. weight: math.unit(17500, "kg"),
  30931. name: "Taur",
  30932. image: {
  30933. source: "./media/characters/faey/taur-sfw.svg",
  30934. extra: 1200 / 968,
  30935. bottom: 41 / 1241
  30936. }
  30937. },
  30938. chestmaw: {
  30939. height: math.unit(2.01, "meters"),
  30940. name: "Chestmaw",
  30941. image: {
  30942. source: "./media/characters/faey/chestmaw.svg"
  30943. }
  30944. },
  30945. foot: {
  30946. height: math.unit(2.43, "meters"),
  30947. name: "Foot",
  30948. image: {
  30949. source: "./media/characters/faey/foot.svg"
  30950. }
  30951. },
  30952. jaws: {
  30953. height: math.unit(1.66, "meters"),
  30954. name: "Jaws",
  30955. image: {
  30956. source: "./media/characters/faey/jaws.svg"
  30957. }
  30958. },
  30959. tongues: {
  30960. height: math.unit(2.01, "meters"),
  30961. name: "Tongues",
  30962. image: {
  30963. source: "./media/characters/faey/tongues.svg"
  30964. }
  30965. },
  30966. },
  30967. [
  30968. {
  30969. name: "Small",
  30970. height: math.unit(10, "meters"),
  30971. default: true
  30972. },
  30973. {
  30974. name: "Big",
  30975. height: math.unit(500000, "km")
  30976. },
  30977. ]
  30978. ))
  30979. characterMakers.push(() => makeCharacter(
  30980. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30981. {
  30982. front: {
  30983. height: math.unit(7, "feet"),
  30984. weight: math.unit(275, "lb"),
  30985. name: "Front",
  30986. image: {
  30987. source: "./media/characters/roku/front.svg",
  30988. extra: 903 / 878,
  30989. bottom: 37 / 940
  30990. }
  30991. },
  30992. },
  30993. [
  30994. {
  30995. name: "Normal",
  30996. height: math.unit(7, "feet"),
  30997. default: true
  30998. },
  30999. {
  31000. name: "Macro",
  31001. height: math.unit(500, "feet")
  31002. },
  31003. {
  31004. name: "Megamacro",
  31005. height: math.unit(200, "miles")
  31006. },
  31007. ]
  31008. ))
  31009. characterMakers.push(() => makeCharacter(
  31010. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31011. {
  31012. front: {
  31013. height: math.unit(6 + 2 / 12, "feet"),
  31014. weight: math.unit(150, "lb"),
  31015. name: "Front",
  31016. image: {
  31017. source: "./media/characters/lira/front.svg",
  31018. extra: 1727 / 1605,
  31019. bottom: 26 / 1753
  31020. }
  31021. },
  31022. back: {
  31023. height: math.unit(6 + 2 / 12, "feet"),
  31024. weight: math.unit(150, "lb"),
  31025. name: "Back",
  31026. image: {
  31027. source: "./media/characters/lira/back.svg",
  31028. extra: 1713/1621,
  31029. bottom: 20/1733
  31030. }
  31031. },
  31032. hand: {
  31033. height: math.unit(0.75, "feet"),
  31034. name: "Hand",
  31035. image: {
  31036. source: "./media/characters/lira/hand.svg"
  31037. }
  31038. },
  31039. maw: {
  31040. height: math.unit(0.65, "feet"),
  31041. name: "Maw",
  31042. image: {
  31043. source: "./media/characters/lira/maw.svg"
  31044. }
  31045. },
  31046. pawDigi: {
  31047. height: math.unit(1.6, "feet"),
  31048. name: "Paw Digi",
  31049. image: {
  31050. source: "./media/characters/lira/paw-digi.svg"
  31051. }
  31052. },
  31053. pawPlanti: {
  31054. height: math.unit(1.4, "feet"),
  31055. name: "Paw Planti",
  31056. image: {
  31057. source: "./media/characters/lira/paw-planti.svg"
  31058. }
  31059. },
  31060. },
  31061. [
  31062. {
  31063. name: "Normal",
  31064. height: math.unit(6 + 2 / 12, "feet"),
  31065. default: true
  31066. },
  31067. {
  31068. name: "Macro",
  31069. height: math.unit(100, "feet")
  31070. },
  31071. {
  31072. name: "Macro²",
  31073. height: math.unit(1600, "feet")
  31074. },
  31075. {
  31076. name: "Planetary",
  31077. height: math.unit(20, "earths")
  31078. },
  31079. ]
  31080. ))
  31081. characterMakers.push(() => makeCharacter(
  31082. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31083. {
  31084. front: {
  31085. height: math.unit(6, "feet"),
  31086. weight: math.unit(150, "lb"),
  31087. name: "Front",
  31088. image: {
  31089. source: "./media/characters/hadjet/front.svg",
  31090. extra: 1480 / 1346,
  31091. bottom: 26 / 1506
  31092. }
  31093. },
  31094. frontNsfw: {
  31095. height: math.unit(6, "feet"),
  31096. weight: math.unit(150, "lb"),
  31097. name: "Front (NSFW)",
  31098. image: {
  31099. source: "./media/characters/hadjet/front-nsfw.svg",
  31100. extra: 1440 / 1358,
  31101. bottom: 52 / 1492
  31102. }
  31103. },
  31104. },
  31105. [
  31106. {
  31107. name: "Macro",
  31108. height: math.unit(10, "stories"),
  31109. default: true
  31110. },
  31111. {
  31112. name: "Megamacro",
  31113. height: math.unit(1.5, "miles")
  31114. },
  31115. {
  31116. name: "Megamacro+",
  31117. height: math.unit(5, "miles")
  31118. },
  31119. ]
  31120. ))
  31121. characterMakers.push(() => makeCharacter(
  31122. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31123. {
  31124. side: {
  31125. height: math.unit(106, "feet"),
  31126. weight: math.unit(500, "tonnes"),
  31127. name: "Side",
  31128. image: {
  31129. source: "./media/characters/kodran/side.svg",
  31130. extra: 553 / 480,
  31131. bottom: 33 / 586
  31132. }
  31133. },
  31134. front: {
  31135. height: math.unit(132, "feet"),
  31136. weight: math.unit(500, "tonnes"),
  31137. name: "Front",
  31138. image: {
  31139. source: "./media/characters/kodran/front.svg",
  31140. extra: 667 / 643,
  31141. bottom: 42 / 709
  31142. }
  31143. },
  31144. flying: {
  31145. height: math.unit(350, "feet"),
  31146. weight: math.unit(500, "tonnes"),
  31147. name: "Flying",
  31148. image: {
  31149. source: "./media/characters/kodran/flying.svg"
  31150. }
  31151. },
  31152. foot: {
  31153. height: math.unit(33, "feet"),
  31154. name: "Foot",
  31155. image: {
  31156. source: "./media/characters/kodran/foot.svg"
  31157. }
  31158. },
  31159. footFront: {
  31160. height: math.unit(19, "feet"),
  31161. name: "Foot (Front)",
  31162. image: {
  31163. source: "./media/characters/kodran/foot-front.svg",
  31164. extra: 261 / 261,
  31165. bottom: 91 / 352
  31166. }
  31167. },
  31168. headFront: {
  31169. height: math.unit(53, "feet"),
  31170. name: "Head (Front)",
  31171. image: {
  31172. source: "./media/characters/kodran/head-front.svg"
  31173. }
  31174. },
  31175. headSide: {
  31176. height: math.unit(65, "feet"),
  31177. name: "Head (Side)",
  31178. image: {
  31179. source: "./media/characters/kodran/head-side.svg"
  31180. }
  31181. },
  31182. throat: {
  31183. height: math.unit(79, "feet"),
  31184. name: "Throat",
  31185. image: {
  31186. source: "./media/characters/kodran/throat.svg"
  31187. }
  31188. },
  31189. },
  31190. [
  31191. {
  31192. name: "Large",
  31193. height: math.unit(106, "feet"),
  31194. default: true
  31195. },
  31196. ]
  31197. ))
  31198. characterMakers.push(() => makeCharacter(
  31199. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31200. {
  31201. side: {
  31202. height: math.unit(11, "feet"),
  31203. weight: math.unit(150, "lb"),
  31204. name: "Side",
  31205. image: {
  31206. source: "./media/characters/pyxaron/side.svg",
  31207. extra: 305 / 195,
  31208. bottom: 17 / 322
  31209. }
  31210. },
  31211. },
  31212. [
  31213. {
  31214. name: "Normal",
  31215. height: math.unit(11, "feet"),
  31216. default: true
  31217. },
  31218. ]
  31219. ))
  31220. characterMakers.push(() => makeCharacter(
  31221. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31222. {
  31223. front: {
  31224. height: math.unit(6, "feet"),
  31225. weight: math.unit(150, "lb"),
  31226. name: "Front",
  31227. image: {
  31228. source: "./media/characters/meep/front.svg",
  31229. extra: 88 / 80,
  31230. bottom: 6 / 94
  31231. }
  31232. },
  31233. },
  31234. [
  31235. {
  31236. name: "Fun Sized",
  31237. height: math.unit(2, "inches"),
  31238. default: true
  31239. },
  31240. {
  31241. name: "Friend Sized",
  31242. height: math.unit(8, "inches")
  31243. },
  31244. ]
  31245. ))
  31246. characterMakers.push(() => makeCharacter(
  31247. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31248. {
  31249. front: {
  31250. height: math.unit(15, "feet"),
  31251. weight: math.unit(2500, "lb"),
  31252. name: "Front",
  31253. image: {
  31254. source: "./media/characters/holly-rabbit/front.svg",
  31255. extra: 1433 / 1233,
  31256. bottom: 125 / 1558
  31257. }
  31258. },
  31259. dick: {
  31260. height: math.unit(4.6, "feet"),
  31261. name: "Dick",
  31262. image: {
  31263. source: "./media/characters/holly-rabbit/dick.svg"
  31264. }
  31265. },
  31266. },
  31267. [
  31268. {
  31269. name: "Normal",
  31270. height: math.unit(15, "feet"),
  31271. default: true
  31272. },
  31273. {
  31274. name: "Macro",
  31275. height: math.unit(250, "feet")
  31276. },
  31277. {
  31278. name: "Macro+",
  31279. height: math.unit(2500, "feet")
  31280. },
  31281. ]
  31282. ))
  31283. characterMakers.push(() => makeCharacter(
  31284. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31285. {
  31286. front: {
  31287. height: math.unit(3.02, "meters"),
  31288. weight: math.unit(500, "kg"),
  31289. name: "Front",
  31290. image: {
  31291. source: "./media/characters/drena/front.svg",
  31292. extra: 282 / 243,
  31293. bottom: 8 / 290
  31294. }
  31295. },
  31296. side: {
  31297. height: math.unit(3.02, "meters"),
  31298. weight: math.unit(500, "kg"),
  31299. name: "Side",
  31300. image: {
  31301. source: "./media/characters/drena/side.svg",
  31302. extra: 280 / 245,
  31303. bottom: 10 / 290
  31304. }
  31305. },
  31306. back: {
  31307. height: math.unit(3.02, "meters"),
  31308. weight: math.unit(500, "kg"),
  31309. name: "Back",
  31310. image: {
  31311. source: "./media/characters/drena/back.svg",
  31312. extra: 278 / 243,
  31313. bottom: 2 / 280
  31314. }
  31315. },
  31316. foot: {
  31317. height: math.unit(0.75, "meters"),
  31318. name: "Foot",
  31319. image: {
  31320. source: "./media/characters/drena/foot.svg"
  31321. }
  31322. },
  31323. maw: {
  31324. height: math.unit(0.82, "meters"),
  31325. name: "Maw",
  31326. image: {
  31327. source: "./media/characters/drena/maw.svg"
  31328. }
  31329. },
  31330. eating: {
  31331. height: math.unit(0.75, "meters"),
  31332. name: "Eating",
  31333. image: {
  31334. source: "./media/characters/drena/eating.svg"
  31335. }
  31336. },
  31337. rump: {
  31338. height: math.unit(0.93, "meters"),
  31339. name: "Rump",
  31340. image: {
  31341. source: "./media/characters/drena/rump.svg"
  31342. }
  31343. },
  31344. },
  31345. [
  31346. {
  31347. name: "Normal",
  31348. height: math.unit(3.02, "meters"),
  31349. default: true
  31350. },
  31351. ]
  31352. ))
  31353. characterMakers.push(() => makeCharacter(
  31354. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31355. {
  31356. front: {
  31357. height: math.unit(6 + 4 / 12, "feet"),
  31358. weight: math.unit(250, "lb"),
  31359. name: "Front",
  31360. image: {
  31361. source: "./media/characters/remmyzilla/front.svg",
  31362. extra: 4033 / 3588,
  31363. bottom: 123 / 4156
  31364. }
  31365. },
  31366. back: {
  31367. height: math.unit(6 + 4 / 12, "feet"),
  31368. weight: math.unit(250, "lb"),
  31369. name: "Back",
  31370. image: {
  31371. source: "./media/characters/remmyzilla/back.svg",
  31372. extra: 1696/1602,
  31373. bottom: 63/1759
  31374. }
  31375. },
  31376. paw: {
  31377. height: math.unit(1.73, "feet"),
  31378. name: "Paw",
  31379. image: {
  31380. source: "./media/characters/remmyzilla/paw.svg"
  31381. },
  31382. extraAttributes: {
  31383. "toeSize": {
  31384. name: "Toe Size",
  31385. power: 2,
  31386. type: "area",
  31387. base: math.unit(0.0035, "m^2")
  31388. },
  31389. "padSize": {
  31390. name: "Pad Size",
  31391. power: 2,
  31392. type: "area",
  31393. base: math.unit(0.015, "m^2")
  31394. },
  31395. "pawsize": {
  31396. name: "Paw Size",
  31397. power: 2,
  31398. type: "area",
  31399. base: math.unit(0.072, "m^2")
  31400. },
  31401. }
  31402. },
  31403. maw: {
  31404. height: math.unit(1.73, "feet"),
  31405. name: "Maw",
  31406. image: {
  31407. source: "./media/characters/remmyzilla/maw.svg"
  31408. }
  31409. },
  31410. },
  31411. [
  31412. {
  31413. name: "Normal",
  31414. height: math.unit(6 + 4 / 12, "feet")
  31415. },
  31416. {
  31417. name: "Minimacro",
  31418. height: math.unit(12 + 8 / 12, "feet")
  31419. },
  31420. {
  31421. name: "Normal",
  31422. height: math.unit(640, "feet"),
  31423. default: true
  31424. },
  31425. {
  31426. name: "Megamacro",
  31427. height: math.unit(6400, "feet")
  31428. },
  31429. {
  31430. name: "Gigamacro",
  31431. height: math.unit(64000, "miles")
  31432. },
  31433. ]
  31434. ))
  31435. characterMakers.push(() => makeCharacter(
  31436. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31437. {
  31438. front: {
  31439. height: math.unit(2.5, "meters"),
  31440. weight: math.unit(300, "lb"),
  31441. name: "Front",
  31442. image: {
  31443. source: "./media/characters/lawrence/front.svg",
  31444. extra: 357 / 335,
  31445. bottom: 30 / 387
  31446. }
  31447. },
  31448. back: {
  31449. height: math.unit(2.5, "meters"),
  31450. weight: math.unit(300, "lb"),
  31451. name: "Back",
  31452. image: {
  31453. source: "./media/characters/lawrence/back.svg",
  31454. extra: 357 / 338,
  31455. bottom: 16 / 373
  31456. }
  31457. },
  31458. head: {
  31459. height: math.unit(0.9, "meter"),
  31460. name: "Head",
  31461. image: {
  31462. source: "./media/characters/lawrence/head.svg"
  31463. }
  31464. },
  31465. maw: {
  31466. height: math.unit(0.7, "meter"),
  31467. name: "Maw",
  31468. image: {
  31469. source: "./media/characters/lawrence/maw.svg"
  31470. }
  31471. },
  31472. footBottom: {
  31473. height: math.unit(0.5, "meter"),
  31474. name: "Foot (Bottom)",
  31475. image: {
  31476. source: "./media/characters/lawrence/foot-bottom.svg"
  31477. }
  31478. },
  31479. footTop: {
  31480. height: math.unit(0.5, "meter"),
  31481. name: "Foot (Top)",
  31482. image: {
  31483. source: "./media/characters/lawrence/foot-top.svg"
  31484. }
  31485. },
  31486. },
  31487. [
  31488. {
  31489. name: "Normal",
  31490. height: math.unit(2.5, "meters"),
  31491. default: true
  31492. },
  31493. {
  31494. name: "Macro",
  31495. height: math.unit(95, "meters")
  31496. },
  31497. {
  31498. name: "Megamacro",
  31499. height: math.unit(150, "km")
  31500. },
  31501. ]
  31502. ))
  31503. characterMakers.push(() => makeCharacter(
  31504. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31505. {
  31506. front: {
  31507. height: math.unit(4.2, "meters"),
  31508. preyCapacity: math.unit(50, "m^3"),
  31509. weight: math.unit(30, "tonnes"),
  31510. name: "Front",
  31511. image: {
  31512. source: "./media/characters/sydney/front.svg",
  31513. extra: 1177/1129,
  31514. bottom: 197/1374
  31515. },
  31516. extraAttributes: {
  31517. "length": {
  31518. name: "Length",
  31519. power: 1,
  31520. type: "length",
  31521. base: math.unit(21, "meters")
  31522. },
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Normal",
  31529. height: math.unit(4.2, "meters"),
  31530. default: true
  31531. },
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31536. {
  31537. back: {
  31538. height: math.unit(201, "feet"),
  31539. name: "Back",
  31540. image: {
  31541. source: "./media/characters/jessica/back.svg",
  31542. extra: 273 / 259,
  31543. bottom: 7 / 280
  31544. }
  31545. },
  31546. },
  31547. [
  31548. {
  31549. name: "Normal",
  31550. height: math.unit(201, "feet"),
  31551. default: true
  31552. },
  31553. {
  31554. name: "Megamacro",
  31555. height: math.unit(8, "miles")
  31556. },
  31557. ]
  31558. ))
  31559. characterMakers.push(() => makeCharacter(
  31560. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31561. {
  31562. side: {
  31563. height: math.unit(5.6, "m"),
  31564. weight: math.unit(8000, "kg"),
  31565. name: "Side",
  31566. image: {
  31567. source: "./media/characters/victoria/side.svg",
  31568. extra: 1542/1229,
  31569. bottom: 124/1666
  31570. }
  31571. },
  31572. maw: {
  31573. height: math.unit(7.14, "feet"),
  31574. name: "Maw",
  31575. image: {
  31576. source: "./media/characters/victoria/maw.svg"
  31577. }
  31578. },
  31579. },
  31580. [
  31581. {
  31582. name: "Normal",
  31583. height: math.unit(5.6, "m"),
  31584. default: true
  31585. },
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31590. {
  31591. front: {
  31592. height: math.unit(5 + 6 / 12, "feet"),
  31593. name: "Front",
  31594. image: {
  31595. source: "./media/characters/cat/cat-front.svg",
  31596. extra: 1422/1262,
  31597. bottom: 61/1483
  31598. },
  31599. form: "cat",
  31600. default: true
  31601. },
  31602. back: {
  31603. height: math.unit(5 + 6 / 12, "feet"),
  31604. name: "Back",
  31605. image: {
  31606. source: "./media/characters/cat/cat-back.svg",
  31607. extra: 1466/1301,
  31608. bottom: 19/1485
  31609. },
  31610. form: "cat"
  31611. },
  31612. taur: {
  31613. height: math.unit(7, "feet"),
  31614. name: "Side",
  31615. image: {
  31616. source: "./media/characters/cat/taur-side.svg",
  31617. extra: 1389/1233,
  31618. bottom: 83/1472
  31619. },
  31620. form: "taur",
  31621. default: true
  31622. },
  31623. lucarioFront: {
  31624. height: math.unit(4, "feet"),
  31625. name: "Front",
  31626. image: {
  31627. source: "./media/characters/cat/lucario-front.svg",
  31628. extra: 1149/1019,
  31629. bottom: 84/1233
  31630. },
  31631. form: "lucario",
  31632. default: true
  31633. },
  31634. lucarioBack: {
  31635. height: math.unit(4, "feet"),
  31636. name: "Back",
  31637. image: {
  31638. source: "./media/characters/cat/lucario-back.svg",
  31639. extra: 1190/1059,
  31640. bottom: 33/1223
  31641. },
  31642. form: "lucario"
  31643. },
  31644. riolu_front: {
  31645. height: math.unit(2 + 4/12, "feet"),
  31646. name: "Front",
  31647. image: {
  31648. source: "./media/characters/cat/riolu-front.svg",
  31649. extra: 1104/956,
  31650. bottom: 70/1174
  31651. },
  31652. form: "riolu",
  31653. default: true
  31654. },
  31655. nickit: {
  31656. height: math.unit(2, "feet"),
  31657. name: "Side",
  31658. image: {
  31659. source: "./media/characters/cat/nickit-side.svg",
  31660. extra: 1087/852,
  31661. bottom: 67/1154
  31662. },
  31663. form: "nickit",
  31664. default: true
  31665. },
  31666. lopunnyFront: {
  31667. height: math.unit(5, "feet"),
  31668. name: "Front",
  31669. image: {
  31670. source: "./media/characters/cat/lopunny-front.svg",
  31671. extra: 1217/1078,
  31672. bottom: 23/1240
  31673. },
  31674. form: "lopunny",
  31675. default: true
  31676. },
  31677. lopunnyBack: {
  31678. height: math.unit(5, "feet"),
  31679. name: "Back",
  31680. image: {
  31681. source: "./media/characters/cat/lopunny-back.svg",
  31682. extra: 1205/1057,
  31683. bottom: 33/1238
  31684. },
  31685. form: "lopunny"
  31686. },
  31687. dog_front: {
  31688. height: math.unit(5 + 9/12, "feet"),
  31689. name: "Front",
  31690. image: {
  31691. source: "./media/characters/cat/dog-front.svg",
  31692. extra: 1403/1309,
  31693. bottom: 31/1434
  31694. },
  31695. form: "dog",
  31696. default: true
  31697. },
  31698. dog_back: {
  31699. height: math.unit(5 + 9/12, "feet"),
  31700. name: "Back",
  31701. image: {
  31702. source: "./media/characters/cat/dog-back.svg",
  31703. extra: 1393/1297,
  31704. bottom: 38/1431
  31705. },
  31706. form: "dog",
  31707. },
  31708. pikachu_front: {
  31709. height: math.unit(2.64, "feet"),
  31710. name: "Front",
  31711. image: {
  31712. source: "./media/characters/cat/pikachu-front.svg",
  31713. extra: 1224/958,
  31714. bottom: 34/1258
  31715. },
  31716. form: "pikachu",
  31717. default: true
  31718. },
  31719. pikachu_back: {
  31720. height: math.unit(2.64, "feet"),
  31721. name: "Back",
  31722. image: {
  31723. source: "./media/characters/cat/pikachu-back.svg",
  31724. extra: 1228/958,
  31725. bottom: 16/1244
  31726. },
  31727. form: "pikachu",
  31728. },
  31729. gigachuFront: {
  31730. height: math.unit(75, "feet"),
  31731. name: "Front",
  31732. image: {
  31733. source: "./media/characters/cat/gigachu-front.svg",
  31734. extra: 1239/1027,
  31735. bottom: 32/1271
  31736. },
  31737. form: "gigachu",
  31738. default: true
  31739. },
  31740. gigachuBack: {
  31741. height: math.unit(75, "feet"),
  31742. name: "Back",
  31743. image: {
  31744. source: "./media/characters/cat/gigachu-back.svg",
  31745. extra: 1229/1030,
  31746. bottom: 9/1238
  31747. },
  31748. form: "gigachu"
  31749. },
  31750. },
  31751. [
  31752. {
  31753. name: "Really small",
  31754. height: math.unit(1, "nm"),
  31755. allForms: true
  31756. },
  31757. {
  31758. name: "Micro",
  31759. height: math.unit(5, "inches"),
  31760. allForms: true
  31761. },
  31762. {
  31763. name: "Normal",
  31764. height: math.unit(5 + 6 / 12, "feet"),
  31765. default: true,
  31766. form: "cat"
  31767. },
  31768. {
  31769. name: "Normal",
  31770. height: math.unit(7, "feet"),
  31771. default: true,
  31772. form: "taur"
  31773. },
  31774. {
  31775. name: "Normal",
  31776. height: math.unit(4, "feet"),
  31777. default: true,
  31778. form: "lucario"
  31779. },
  31780. {
  31781. name: "Normal",
  31782. height: math.unit(2, "feet"),
  31783. default: true,
  31784. form: "nickit"
  31785. },
  31786. {
  31787. name: "Normal",
  31788. height: math.unit(5, "feet"),
  31789. default: true,
  31790. form: "lopunny"
  31791. },
  31792. {
  31793. name: "Normal",
  31794. height: math.unit(2 + 4/12, "feet"),
  31795. default: true,
  31796. form: "riolu"
  31797. },
  31798. {
  31799. name: "Normal",
  31800. height: math.unit(5 + 6 / 12, "feet"),
  31801. default: true,
  31802. form: "dog"
  31803. },
  31804. {
  31805. name: "Macro",
  31806. height: math.unit(50, "feet"),
  31807. allForms: true
  31808. },
  31809. {
  31810. name: "Normal",
  31811. height: math.unit(2.64, "feet"),
  31812. default: true,
  31813. form: "pikachu"
  31814. },
  31815. {
  31816. name: "Dynamax",
  31817. height: math.unit(75, "feet"),
  31818. form: "gigachu",
  31819. default: true
  31820. },
  31821. {
  31822. name: "Macro+",
  31823. height: math.unit(150, "feet"),
  31824. allForms: true
  31825. },
  31826. {
  31827. name: "Megamacro",
  31828. height: math.unit(100, "miles"),
  31829. allForms: true
  31830. },
  31831. ],
  31832. {
  31833. "cat": {
  31834. name: "Cat",
  31835. default: true
  31836. },
  31837. "taur": {
  31838. name: "Taur",
  31839. },
  31840. "lucario": {
  31841. name: "Lucario",
  31842. },
  31843. "riolu": {
  31844. name: "Riolu",
  31845. },
  31846. "nickit": {
  31847. name: "Nickit",
  31848. },
  31849. "lopunny": {
  31850. name: "Lopunny",
  31851. },
  31852. "dog": {
  31853. name: "Dog",
  31854. },
  31855. "pikachu": {
  31856. name: "Pikachu",
  31857. },
  31858. "gigachu": {
  31859. name: "Gigachu",
  31860. ignoreAllFormSizes: true
  31861. }
  31862. }
  31863. ))
  31864. characterMakers.push(() => makeCharacter(
  31865. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31866. {
  31867. front: {
  31868. height: math.unit(63.4, "meters"),
  31869. weight: math.unit(3.28349e+6, "kilograms"),
  31870. name: "Front",
  31871. image: {
  31872. source: "./media/characters/kirina-violet/front.svg",
  31873. extra: 2812 / 2725,
  31874. bottom: 0 / 2812
  31875. }
  31876. },
  31877. back: {
  31878. height: math.unit(63.4, "meters"),
  31879. weight: math.unit(3.28349e+6, "kilograms"),
  31880. name: "Back",
  31881. image: {
  31882. source: "./media/characters/kirina-violet/back.svg",
  31883. extra: 2812 / 2725,
  31884. bottom: 0 / 2812
  31885. }
  31886. },
  31887. mouth: {
  31888. height: math.unit(4.35, "meters"),
  31889. name: "Mouth",
  31890. image: {
  31891. source: "./media/characters/kirina-violet/mouth.svg"
  31892. }
  31893. },
  31894. paw: {
  31895. height: math.unit(5.6, "meters"),
  31896. name: "Paw",
  31897. image: {
  31898. source: "./media/characters/kirina-violet/paw.svg"
  31899. }
  31900. },
  31901. tail: {
  31902. height: math.unit(18, "meters"),
  31903. name: "Tail",
  31904. image: {
  31905. source: "./media/characters/kirina-violet/tail.svg"
  31906. }
  31907. },
  31908. },
  31909. [
  31910. {
  31911. name: "Macro",
  31912. height: math.unit(63.4, "meters"),
  31913. default: true
  31914. },
  31915. ]
  31916. ))
  31917. characterMakers.push(() => makeCharacter(
  31918. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31919. {
  31920. front: {
  31921. height: math.unit(6, "feet"),
  31922. weight: math.unit(150, "lb"),
  31923. name: "Front",
  31924. image: {
  31925. source: "./media/characters/sfaiyan/front.svg",
  31926. extra: 999 / 978,
  31927. bottom: 5 / 1004
  31928. }
  31929. },
  31930. },
  31931. [
  31932. {
  31933. name: "Normal",
  31934. height: math.unit(1.82, "meters")
  31935. },
  31936. {
  31937. name: "Giant",
  31938. height: math.unit(2.27, "km"),
  31939. default: true
  31940. },
  31941. ]
  31942. ))
  31943. characterMakers.push(() => makeCharacter(
  31944. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31945. {
  31946. front: {
  31947. height: math.unit(179, "cm"),
  31948. weight: math.unit(100, "kg"),
  31949. name: "Front",
  31950. image: {
  31951. source: "./media/characters/raunehkeli/front.svg",
  31952. extra: 1934 / 1926,
  31953. bottom: 0 / 1934
  31954. }
  31955. },
  31956. },
  31957. [
  31958. {
  31959. name: "Normal",
  31960. height: math.unit(179, "cm")
  31961. },
  31962. {
  31963. name: "Maximum",
  31964. height: math.unit(575, "meters"),
  31965. default: true
  31966. },
  31967. ]
  31968. ))
  31969. characterMakers.push(() => makeCharacter(
  31970. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31971. {
  31972. front: {
  31973. height: math.unit(6, "feet"),
  31974. weight: math.unit(150, "lb"),
  31975. name: "Front",
  31976. image: {
  31977. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31978. extra: 2625 / 2518,
  31979. bottom: 60 / 2685
  31980. }
  31981. },
  31982. },
  31983. [
  31984. {
  31985. name: "Normal",
  31986. height: math.unit(6 + 2 / 12, "feet")
  31987. },
  31988. {
  31989. name: "Macro",
  31990. height: math.unit(1180, "feet"),
  31991. default: true
  31992. },
  31993. ]
  31994. ))
  31995. characterMakers.push(() => makeCharacter(
  31996. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31997. {
  31998. front: {
  31999. height: math.unit(5 + 6 / 12, "feet"),
  32000. weight: math.unit(108, "lb"),
  32001. name: "Front",
  32002. image: {
  32003. source: "./media/characters/lilith-zott/front.svg",
  32004. extra: 2510 / 2238,
  32005. bottom: 100 / 2610
  32006. }
  32007. },
  32008. frontDressed: {
  32009. height: math.unit(5 + 6 / 12, "feet"),
  32010. weight: math.unit(108, "lb"),
  32011. name: "Front (Dressed)",
  32012. image: {
  32013. source: "./media/characters/lilith-zott/front-dressed.svg",
  32014. extra: 2510 / 2238,
  32015. bottom: 100 / 2610
  32016. }
  32017. },
  32018. },
  32019. [
  32020. {
  32021. name: "Normal",
  32022. height: math.unit(5 + 6 / 12, "feet")
  32023. },
  32024. {
  32025. name: "Macro",
  32026. height: math.unit(1030, "feet"),
  32027. default: true
  32028. },
  32029. ]
  32030. ))
  32031. characterMakers.push(() => makeCharacter(
  32032. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32033. {
  32034. front: {
  32035. height: math.unit(6, "feet"),
  32036. weight: math.unit(150, "lb"),
  32037. name: "Front",
  32038. image: {
  32039. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  32040. extra: 2567 / 2435,
  32041. bottom: 39 / 2606
  32042. }
  32043. },
  32044. frontSuper: {
  32045. height: math.unit(6, "feet"),
  32046. name: "Front (Super)",
  32047. image: {
  32048. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  32049. extra: 2567 / 2435,
  32050. bottom: 39 / 2606
  32051. }
  32052. },
  32053. },
  32054. [
  32055. {
  32056. name: "Normal",
  32057. height: math.unit(5 + 10 / 12, "feet")
  32058. },
  32059. {
  32060. name: "Macro",
  32061. height: math.unit(1100, "feet"),
  32062. default: true
  32063. },
  32064. ]
  32065. ))
  32066. characterMakers.push(() => makeCharacter(
  32067. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32068. {
  32069. front: {
  32070. height: math.unit(100, "miles"),
  32071. name: "Front",
  32072. image: {
  32073. source: "./media/characters/sona/front.svg",
  32074. extra: 2433 / 2201,
  32075. bottom: 53 / 2486
  32076. }
  32077. },
  32078. foot: {
  32079. height: math.unit(16.1, "miles"),
  32080. name: "Foot",
  32081. image: {
  32082. source: "./media/characters/sona/foot.svg"
  32083. }
  32084. },
  32085. },
  32086. [
  32087. {
  32088. name: "Macro",
  32089. height: math.unit(100, "miles"),
  32090. default: true
  32091. },
  32092. ]
  32093. ))
  32094. characterMakers.push(() => makeCharacter(
  32095. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32096. {
  32097. front: {
  32098. height: math.unit(6, "feet"),
  32099. weight: math.unit(150, "lb"),
  32100. name: "Front",
  32101. image: {
  32102. source: "./media/characters/bailey/front.svg",
  32103. extra: 1778 / 1724,
  32104. bottom: 30 / 1808
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "Micro",
  32111. height: math.unit(4, "inches")
  32112. },
  32113. {
  32114. name: "Normal",
  32115. height: math.unit(5 + 5 / 12, "feet"),
  32116. default: true
  32117. },
  32118. {
  32119. name: "Macro",
  32120. height: math.unit(250, "feet")
  32121. },
  32122. {
  32123. name: "Megamacro",
  32124. height: math.unit(100, "miles")
  32125. },
  32126. ]
  32127. ))
  32128. characterMakers.push(() => makeCharacter(
  32129. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32130. {
  32131. front: {
  32132. height: math.unit(5 + 2 / 12, "feet"),
  32133. weight: math.unit(120, "lb"),
  32134. name: "Front",
  32135. image: {
  32136. source: "./media/characters/snaps/front.svg",
  32137. extra: 2370 / 2177,
  32138. bottom: 48 / 2418
  32139. }
  32140. },
  32141. back: {
  32142. height: math.unit(5 + 2 / 12, "feet"),
  32143. weight: math.unit(120, "lb"),
  32144. name: "Back",
  32145. image: {
  32146. source: "./media/characters/snaps/back.svg",
  32147. extra: 2408 / 2258,
  32148. bottom: 15 / 2423
  32149. }
  32150. },
  32151. },
  32152. [
  32153. {
  32154. name: "Micro",
  32155. height: math.unit(9, "inches")
  32156. },
  32157. {
  32158. name: "Normal",
  32159. height: math.unit(5 + 2 / 12, "feet"),
  32160. default: true
  32161. },
  32162. {
  32163. name: "Mini Macro",
  32164. height: math.unit(10, "feet")
  32165. },
  32166. ]
  32167. ))
  32168. characterMakers.push(() => makeCharacter(
  32169. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32170. {
  32171. front: {
  32172. height: math.unit(1.8, "meters"),
  32173. weight: math.unit(85, "kg"),
  32174. name: "Front",
  32175. image: {
  32176. source: "./media/characters/azteck/front.svg",
  32177. extra: 2815 / 2625,
  32178. bottom: 89 / 2904
  32179. }
  32180. },
  32181. back: {
  32182. height: math.unit(1.8, "meters"),
  32183. weight: math.unit(85, "kg"),
  32184. name: "Back",
  32185. image: {
  32186. source: "./media/characters/azteck/back.svg",
  32187. extra: 2856 / 2648,
  32188. bottom: 85 / 2941
  32189. }
  32190. },
  32191. frontDressed: {
  32192. height: math.unit(1.8, "meters"),
  32193. weight: math.unit(85, "kg"),
  32194. name: "Front (Dressed)",
  32195. image: {
  32196. source: "./media/characters/azteck/front-dressed.svg",
  32197. extra: 2147 / 2003,
  32198. bottom: 68 / 2215
  32199. }
  32200. },
  32201. head: {
  32202. height: math.unit(0.47, "meters"),
  32203. weight: math.unit(85, "kg"),
  32204. name: "Head",
  32205. image: {
  32206. source: "./media/characters/azteck/head.svg"
  32207. }
  32208. },
  32209. },
  32210. [
  32211. {
  32212. name: "Bite sized",
  32213. height: math.unit(16, "cm")
  32214. },
  32215. {
  32216. name: "Normal",
  32217. height: math.unit(1.8, "meters"),
  32218. default: true
  32219. },
  32220. ]
  32221. ))
  32222. characterMakers.push(() => makeCharacter(
  32223. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32224. {
  32225. front: {
  32226. height: math.unit(6, "feet"),
  32227. weight: math.unit(150, "lb"),
  32228. name: "Front",
  32229. image: {
  32230. source: "./media/characters/pidge/front.svg",
  32231. extra: 1936/1820,
  32232. bottom: 0/1936
  32233. }
  32234. },
  32235. back: {
  32236. height: math.unit(6, "feet"),
  32237. weight: math.unit(150, "lb"),
  32238. name: "Back",
  32239. image: {
  32240. source: "./media/characters/pidge/back.svg",
  32241. extra: 1938/1843,
  32242. bottom: 0/1938
  32243. }
  32244. },
  32245. casual: {
  32246. height: math.unit(6, "feet"),
  32247. weight: math.unit(150, "lb"),
  32248. name: "Casual",
  32249. image: {
  32250. source: "./media/characters/pidge/casual.svg",
  32251. extra: 1936/1820,
  32252. bottom: 0/1936
  32253. }
  32254. },
  32255. tech: {
  32256. height: math.unit(6, "feet"),
  32257. weight: math.unit(150, "lb"),
  32258. name: "Tech",
  32259. image: {
  32260. source: "./media/characters/pidge/tech.svg",
  32261. extra: 1802/1682,
  32262. bottom: 0/1802
  32263. }
  32264. },
  32265. head: {
  32266. height: math.unit(1.61, "feet"),
  32267. name: "Head",
  32268. image: {
  32269. source: "./media/characters/pidge/head.svg"
  32270. }
  32271. },
  32272. collar: {
  32273. height: math.unit(0.82, "feet"),
  32274. name: "Collar",
  32275. image: {
  32276. source: "./media/characters/pidge/collar.svg"
  32277. }
  32278. },
  32279. },
  32280. [
  32281. {
  32282. name: "Macro",
  32283. height: math.unit(2, "mile"),
  32284. default: true
  32285. },
  32286. {
  32287. name: "PUPPY",
  32288. height: math.unit(20, "miles")
  32289. },
  32290. ]
  32291. ))
  32292. characterMakers.push(() => makeCharacter(
  32293. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32294. {
  32295. front: {
  32296. height: math.unit(6, "feet"),
  32297. weight: math.unit(150, "lb"),
  32298. name: "Front",
  32299. image: {
  32300. source: "./media/characters/en/front.svg",
  32301. extra: 1697 / 1563,
  32302. bottom: 103 / 1800
  32303. }
  32304. },
  32305. back: {
  32306. height: math.unit(6, "feet"),
  32307. weight: math.unit(150, "lb"),
  32308. name: "Back",
  32309. image: {
  32310. source: "./media/characters/en/back.svg",
  32311. extra: 1700 / 1570,
  32312. bottom: 51 / 1751
  32313. }
  32314. },
  32315. frontDressed: {
  32316. height: math.unit(6, "feet"),
  32317. weight: math.unit(150, "lb"),
  32318. name: "Front (Dressed)",
  32319. image: {
  32320. source: "./media/characters/en/front-dressed.svg",
  32321. extra: 1697 / 1563,
  32322. bottom: 103 / 1800
  32323. }
  32324. },
  32325. backDressed: {
  32326. height: math.unit(6, "feet"),
  32327. weight: math.unit(150, "lb"),
  32328. name: "Back (Dressed)",
  32329. image: {
  32330. source: "./media/characters/en/back-dressed.svg",
  32331. extra: 1700 / 1570,
  32332. bottom: 51 / 1751
  32333. }
  32334. },
  32335. },
  32336. [
  32337. {
  32338. name: "Macro",
  32339. height: math.unit(210, "feet"),
  32340. default: true
  32341. },
  32342. ]
  32343. ))
  32344. characterMakers.push(() => makeCharacter(
  32345. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32346. {
  32347. front: {
  32348. height: math.unit(6, "feet"),
  32349. weight: math.unit(150, "lb"),
  32350. name: "Front",
  32351. image: {
  32352. source: "./media/characters/haze-orris/front.svg",
  32353. extra: 3975 / 3525,
  32354. bottom: 137 / 4112
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Micro",
  32361. height: math.unit(150, "mm"),
  32362. default: true
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32368. {
  32369. front: {
  32370. height: math.unit(6, "feet"),
  32371. weight: math.unit(150, "lb"),
  32372. name: "Front",
  32373. image: {
  32374. source: "./media/characters/casselene-yaro/front.svg",
  32375. extra: 4721 / 4541,
  32376. bottom: 82 / 4803
  32377. }
  32378. },
  32379. back: {
  32380. height: math.unit(6, "feet"),
  32381. weight: math.unit(150, "lb"),
  32382. name: "Back",
  32383. image: {
  32384. source: "./media/characters/casselene-yaro/back.svg",
  32385. extra: 4569 / 4377,
  32386. bottom: 69 / 4638
  32387. }
  32388. },
  32389. dressed: {
  32390. height: math.unit(6, "feet"),
  32391. weight: math.unit(150, "lb"),
  32392. name: "Dressed",
  32393. image: {
  32394. source: "./media/characters/casselene-yaro/dressed.svg",
  32395. extra: 4721 / 4541,
  32396. bottom: 82 / 4803
  32397. }
  32398. },
  32399. maw: {
  32400. height: math.unit(1, "feet"),
  32401. name: "Maw",
  32402. image: {
  32403. source: "./media/characters/casselene-yaro/maw.svg"
  32404. }
  32405. },
  32406. },
  32407. [
  32408. {
  32409. name: "Macro",
  32410. height: math.unit(190, "feet"),
  32411. default: true
  32412. },
  32413. ]
  32414. ))
  32415. characterMakers.push(() => makeCharacter(
  32416. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32417. {
  32418. front: {
  32419. height: math.unit(10, "feet"),
  32420. weight: math.unit(15015, "lb"),
  32421. name: "Front",
  32422. image: {
  32423. source: "./media/characters/platine/front.svg",
  32424. extra: 1741/1650,
  32425. bottom: 84/1825
  32426. }
  32427. },
  32428. side: {
  32429. height: math.unit(10, "feet"),
  32430. weight: math.unit(15015, "lb"),
  32431. name: "Side",
  32432. image: {
  32433. source: "./media/characters/platine/side.svg",
  32434. extra: 1790/1705,
  32435. bottom: 29/1819
  32436. }
  32437. },
  32438. },
  32439. [
  32440. {
  32441. name: "Normal",
  32442. height: math.unit(10, "feet"),
  32443. default: true
  32444. },
  32445. {
  32446. name: "Macro",
  32447. height: math.unit(100, "feet")
  32448. },
  32449. {
  32450. name: "Megamacro",
  32451. height: math.unit(1000, "feet")
  32452. },
  32453. ]
  32454. ))
  32455. characterMakers.push(() => makeCharacter(
  32456. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32457. {
  32458. front: {
  32459. height: math.unit(15 + 5 / 12, "feet"),
  32460. weight: math.unit(4600, "lb"),
  32461. name: "Front",
  32462. image: {
  32463. source: "./media/characters/neapolitan-ananassa/front.svg",
  32464. extra: 2903 / 2736,
  32465. bottom: 0 / 2903
  32466. }
  32467. },
  32468. side: {
  32469. height: math.unit(15 + 5 / 12, "feet"),
  32470. weight: math.unit(4600, "lb"),
  32471. name: "Side",
  32472. image: {
  32473. source: "./media/characters/neapolitan-ananassa/side.svg",
  32474. extra: 2925 / 2719,
  32475. bottom: 0 / 2925
  32476. }
  32477. },
  32478. back: {
  32479. height: math.unit(15 + 5 / 12, "feet"),
  32480. weight: math.unit(4600, "lb"),
  32481. name: "Back",
  32482. image: {
  32483. source: "./media/characters/neapolitan-ananassa/back.svg",
  32484. extra: 2903 / 2736,
  32485. bottom: 0 / 2903
  32486. }
  32487. },
  32488. },
  32489. [
  32490. {
  32491. name: "Normal",
  32492. height: math.unit(15 + 5 / 12, "feet"),
  32493. default: true
  32494. },
  32495. {
  32496. name: "Post-Millenium",
  32497. height: math.unit(35 + 5 / 12, "feet")
  32498. },
  32499. {
  32500. name: "Post-Era",
  32501. height: math.unit(450 + 5 / 12, "feet")
  32502. },
  32503. ]
  32504. ))
  32505. characterMakers.push(() => makeCharacter(
  32506. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32507. {
  32508. front: {
  32509. height: math.unit(300, "meters"),
  32510. weight: math.unit(125000, "tonnes"),
  32511. name: "Front",
  32512. image: {
  32513. source: "./media/characters/pazuzu/front.svg",
  32514. extra: 877 / 794,
  32515. bottom: 47 / 924
  32516. }
  32517. },
  32518. },
  32519. [
  32520. {
  32521. name: "Macro",
  32522. height: math.unit(300, "meters"),
  32523. default: true
  32524. },
  32525. ]
  32526. ))
  32527. characterMakers.push(() => makeCharacter(
  32528. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32529. {
  32530. side: {
  32531. height: math.unit(10 + 7 / 12, "feet"),
  32532. weight: math.unit(2.5, "tons"),
  32533. name: "Side",
  32534. image: {
  32535. source: "./media/characters/aasha/side.svg",
  32536. extra: 1345 / 1245,
  32537. bottom: 111 / 1456
  32538. }
  32539. },
  32540. back: {
  32541. height: math.unit(10 + 7 / 12, "feet"),
  32542. weight: math.unit(2.5, "tons"),
  32543. name: "Back",
  32544. image: {
  32545. source: "./media/characters/aasha/back.svg",
  32546. extra: 1133 / 1057,
  32547. bottom: 257 / 1390
  32548. }
  32549. },
  32550. },
  32551. [
  32552. {
  32553. name: "Normal",
  32554. height: math.unit(10 + 7 / 12, "feet"),
  32555. default: true
  32556. },
  32557. ]
  32558. ))
  32559. characterMakers.push(() => makeCharacter(
  32560. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32561. {
  32562. front: {
  32563. height: math.unit(6 + 3 / 12, "feet"),
  32564. name: "Front",
  32565. image: {
  32566. source: "./media/characters/nevan/front.svg",
  32567. extra: 704 / 704,
  32568. bottom: 28 / 732
  32569. }
  32570. },
  32571. back: {
  32572. height: math.unit(6 + 3 / 12, "feet"),
  32573. name: "Back",
  32574. image: {
  32575. source: "./media/characters/nevan/back.svg",
  32576. extra: 714 / 714,
  32577. bottom: 21 / 735
  32578. }
  32579. },
  32580. frontFlaccid: {
  32581. height: math.unit(6 + 3 / 12, "feet"),
  32582. name: "Front (Flaccid)",
  32583. image: {
  32584. source: "./media/characters/nevan/front-flaccid.svg",
  32585. extra: 704 / 704,
  32586. bottom: 28 / 732
  32587. }
  32588. },
  32589. frontErect: {
  32590. height: math.unit(6 + 3 / 12, "feet"),
  32591. name: "Front (Erect)",
  32592. image: {
  32593. source: "./media/characters/nevan/front-erect.svg",
  32594. extra: 704 / 704,
  32595. bottom: 28 / 732
  32596. }
  32597. },
  32598. backFlaccid: {
  32599. height: math.unit(6 + 3 / 12, "feet"),
  32600. name: "Back (Flaccid)",
  32601. image: {
  32602. source: "./media/characters/nevan/back-flaccid.svg",
  32603. extra: 714 / 714,
  32604. bottom: 21 / 735
  32605. }
  32606. },
  32607. },
  32608. [
  32609. {
  32610. name: "Normal",
  32611. height: math.unit(6 + 3 / 12, "feet"),
  32612. default: true
  32613. },
  32614. ]
  32615. ))
  32616. characterMakers.push(() => makeCharacter(
  32617. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32618. {
  32619. front: {
  32620. height: math.unit(4, "feet"),
  32621. name: "Front",
  32622. image: {
  32623. source: "./media/characters/arhan/front.svg",
  32624. extra: 3368 / 3133,
  32625. bottom: 0 / 3368
  32626. }
  32627. },
  32628. side: {
  32629. height: math.unit(4, "feet"),
  32630. name: "Side",
  32631. image: {
  32632. source: "./media/characters/arhan/side.svg",
  32633. extra: 3347 / 3105,
  32634. bottom: 0 / 3347
  32635. }
  32636. },
  32637. tongue: {
  32638. height: math.unit(1.42, "feet"),
  32639. name: "Tongue",
  32640. image: {
  32641. source: "./media/characters/arhan/tongue.svg"
  32642. }
  32643. },
  32644. head: {
  32645. height: math.unit(0.85, "feet"),
  32646. name: "Head",
  32647. image: {
  32648. source: "./media/characters/arhan/head.svg"
  32649. }
  32650. },
  32651. },
  32652. [
  32653. {
  32654. name: "Normal",
  32655. height: math.unit(4, "feet"),
  32656. default: true
  32657. },
  32658. ]
  32659. ))
  32660. characterMakers.push(() => makeCharacter(
  32661. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32662. {
  32663. front: {
  32664. height: math.unit(5 + 7.5 / 12, "feet"),
  32665. weight: math.unit(120, "lb"),
  32666. name: "Front",
  32667. image: {
  32668. source: "./media/characters/digi-duncan/front.svg",
  32669. extra: 330 / 326,
  32670. bottom: 16 / 346
  32671. }
  32672. },
  32673. side: {
  32674. height: math.unit(5 + 7.5 / 12, "feet"),
  32675. weight: math.unit(120, "lb"),
  32676. name: "Side",
  32677. image: {
  32678. source: "./media/characters/digi-duncan/side.svg",
  32679. extra: 341 / 337,
  32680. bottom: 1 / 342
  32681. }
  32682. },
  32683. back: {
  32684. height: math.unit(5 + 7.5 / 12, "feet"),
  32685. weight: math.unit(120, "lb"),
  32686. name: "Back",
  32687. image: {
  32688. source: "./media/characters/digi-duncan/back.svg",
  32689. extra: 330 / 326,
  32690. bottom: 12 / 342
  32691. }
  32692. },
  32693. },
  32694. [
  32695. {
  32696. name: "Speck",
  32697. height: math.unit(0.25, "mm")
  32698. },
  32699. {
  32700. name: "Micro",
  32701. height: math.unit(5, "mm")
  32702. },
  32703. {
  32704. name: "Tiny",
  32705. height: math.unit(0.5, "inches"),
  32706. default: true
  32707. },
  32708. {
  32709. name: "Human",
  32710. height: math.unit(5 + 7.5 / 12, "feet")
  32711. },
  32712. {
  32713. name: "Minigiant",
  32714. height: math.unit(8 + 5.25, "feet")
  32715. },
  32716. {
  32717. name: "Giant",
  32718. height: math.unit(2000, "feet")
  32719. },
  32720. {
  32721. name: "Mega",
  32722. height: math.unit(371.1, "miles")
  32723. },
  32724. ]
  32725. ))
  32726. characterMakers.push(() => makeCharacter(
  32727. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32728. {
  32729. front: {
  32730. height: math.unit(2, "meters"),
  32731. weight: math.unit(350, "kg"),
  32732. name: "Front",
  32733. image: {
  32734. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32735. extra: 898 / 838,
  32736. bottom: 9 / 907
  32737. }
  32738. },
  32739. },
  32740. [
  32741. {
  32742. name: "Micro",
  32743. height: math.unit(8, "meters")
  32744. },
  32745. {
  32746. name: "Normal",
  32747. height: math.unit(50, "meters"),
  32748. default: true
  32749. },
  32750. {
  32751. name: "Macro",
  32752. height: math.unit(500, "meters")
  32753. },
  32754. ]
  32755. ))
  32756. characterMakers.push(() => makeCharacter(
  32757. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32758. {
  32759. front: {
  32760. height: math.unit(6 + 6 / 12, "feet"),
  32761. name: "Front",
  32762. image: {
  32763. source: "./media/characters/khardesh/front.svg",
  32764. extra: 1788/1596,
  32765. bottom: 66/1854
  32766. }
  32767. },
  32768. back: {
  32769. height: math.unit(6 + 6 / 12, "feet"),
  32770. name: "Back",
  32771. image: {
  32772. source: "./media/characters/khardesh/back.svg",
  32773. extra: 1781/1584,
  32774. bottom: 68/1849
  32775. }
  32776. },
  32777. },
  32778. [
  32779. {
  32780. name: "Normal",
  32781. height: math.unit(6 + 6 / 12, "feet"),
  32782. default: true
  32783. },
  32784. {
  32785. name: "Normal+",
  32786. height: math.unit(4, "meters")
  32787. },
  32788. {
  32789. name: "Macro",
  32790. height: math.unit(50, "meters")
  32791. },
  32792. {
  32793. name: "Macro+",
  32794. height: math.unit(100, "meters")
  32795. },
  32796. {
  32797. name: "Megamacro",
  32798. height: math.unit(20, "km")
  32799. },
  32800. ]
  32801. ))
  32802. characterMakers.push(() => makeCharacter(
  32803. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32804. {
  32805. front: {
  32806. height: math.unit(6, "feet"),
  32807. weight: math.unit(150, "lb"),
  32808. name: "Front",
  32809. image: {
  32810. source: "./media/characters/kosho/front.svg",
  32811. extra: 1847 / 1847,
  32812. bottom: 86 / 1933
  32813. }
  32814. },
  32815. },
  32816. [
  32817. {
  32818. name: "Second-stage micro",
  32819. height: math.unit(0.5, "inches")
  32820. },
  32821. {
  32822. name: "First-stage micro",
  32823. height: math.unit(6, "inches")
  32824. },
  32825. {
  32826. name: "Normal",
  32827. height: math.unit(6, "feet"),
  32828. default: true
  32829. },
  32830. {
  32831. name: "First-stage macro",
  32832. height: math.unit(72, "feet")
  32833. },
  32834. {
  32835. name: "Second-stage macro",
  32836. height: math.unit(864, "feet")
  32837. },
  32838. ]
  32839. ))
  32840. characterMakers.push(() => makeCharacter(
  32841. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32842. {
  32843. normal: {
  32844. height: math.unit(4 + 6 / 12, "feet"),
  32845. name: "Normal",
  32846. image: {
  32847. source: "./media/characters/hydra/normal.svg",
  32848. extra: 2833 / 2634,
  32849. bottom: 68 / 2901
  32850. }
  32851. },
  32852. smol: {
  32853. height: math.unit(0.705, "inches"),
  32854. name: "Smol",
  32855. image: {
  32856. source: "./media/characters/hydra/smol.svg",
  32857. extra: 2715 / 2540,
  32858. bottom: 0 / 2715
  32859. }
  32860. },
  32861. },
  32862. [
  32863. {
  32864. name: "Normal",
  32865. height: math.unit(4 + 6 / 12, "feet"),
  32866. default: true
  32867. }
  32868. ]
  32869. ))
  32870. characterMakers.push(() => makeCharacter(
  32871. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32872. {
  32873. front: {
  32874. height: math.unit(0.6, "cm"),
  32875. name: "Front",
  32876. image: {
  32877. source: "./media/characters/daz/front.svg",
  32878. extra: 1682 / 1164,
  32879. bottom: 42 / 1724
  32880. }
  32881. },
  32882. },
  32883. [
  32884. {
  32885. name: "Normal",
  32886. height: math.unit(0.6, "cm"),
  32887. default: true
  32888. },
  32889. ]
  32890. ))
  32891. characterMakers.push(() => makeCharacter(
  32892. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32893. {
  32894. front: {
  32895. height: math.unit(6, "feet"),
  32896. weight: math.unit(235, "lb"),
  32897. name: "Front",
  32898. image: {
  32899. source: "./media/characters/theo-pangolin/front.svg",
  32900. extra: 1996 / 1969,
  32901. bottom: 115 / 2111
  32902. }
  32903. },
  32904. back: {
  32905. height: math.unit(6, "feet"),
  32906. weight: math.unit(235, "lb"),
  32907. name: "Back",
  32908. image: {
  32909. source: "./media/characters/theo-pangolin/back.svg",
  32910. extra: 1979 / 1979,
  32911. bottom: 40 / 2019
  32912. }
  32913. },
  32914. feral: {
  32915. height: math.unit(2, "feet"),
  32916. weight: math.unit(30, "lb"),
  32917. name: "Feral",
  32918. image: {
  32919. source: "./media/characters/theo-pangolin/feral.svg",
  32920. extra: 803 / 791,
  32921. bottom: 181 / 984
  32922. }
  32923. },
  32924. footFive: {
  32925. height: math.unit(1.43, "feet"),
  32926. name: "Foot (Five Toes)",
  32927. image: {
  32928. source: "./media/characters/theo-pangolin/foot-five.svg"
  32929. }
  32930. },
  32931. footFour: {
  32932. height: math.unit(1.43, "feet"),
  32933. name: "Foot (Four Toes)",
  32934. image: {
  32935. source: "./media/characters/theo-pangolin/foot-four.svg"
  32936. }
  32937. },
  32938. handFour: {
  32939. height: math.unit(0.81, "feet"),
  32940. name: "Hand (Four Fingers)",
  32941. image: {
  32942. source: "./media/characters/theo-pangolin/hand-four.svg"
  32943. }
  32944. },
  32945. handThree: {
  32946. height: math.unit(0.81, "feet"),
  32947. name: "Hand (Three Fingers)",
  32948. image: {
  32949. source: "./media/characters/theo-pangolin/hand-three.svg"
  32950. }
  32951. },
  32952. headFront: {
  32953. height: math.unit(1.37, "feet"),
  32954. name: "Head (Front)",
  32955. image: {
  32956. source: "./media/characters/theo-pangolin/head-front.svg"
  32957. }
  32958. },
  32959. headSide: {
  32960. height: math.unit(1.43, "feet"),
  32961. name: "Head (Side)",
  32962. image: {
  32963. source: "./media/characters/theo-pangolin/head-side.svg"
  32964. }
  32965. },
  32966. tongue: {
  32967. height: math.unit(2.29, "feet"),
  32968. name: "Tongue",
  32969. image: {
  32970. source: "./media/characters/theo-pangolin/tongue.svg"
  32971. }
  32972. },
  32973. },
  32974. [
  32975. {
  32976. name: "Normal",
  32977. height: math.unit(6, "feet")
  32978. },
  32979. {
  32980. name: "Macro",
  32981. height: math.unit(400, "feet"),
  32982. default: true
  32983. },
  32984. ]
  32985. ))
  32986. characterMakers.push(() => makeCharacter(
  32987. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32988. {
  32989. front: {
  32990. height: math.unit(6, "inches"),
  32991. weight: math.unit(0.036, "kg"),
  32992. name: "Front",
  32993. image: {
  32994. source: "./media/characters/renée/front.svg",
  32995. extra: 900 / 886,
  32996. bottom: 8 / 908
  32997. }
  32998. },
  32999. },
  33000. [
  33001. {
  33002. name: "Nano",
  33003. height: math.unit(1, "nm")
  33004. },
  33005. {
  33006. name: "Micro",
  33007. height: math.unit(1, "mm")
  33008. },
  33009. {
  33010. name: "Normal",
  33011. height: math.unit(6, "inches")
  33012. },
  33013. {
  33014. name: "Macro",
  33015. height: math.unit(2000, "feet"),
  33016. default: true
  33017. },
  33018. {
  33019. name: "Megamacro",
  33020. height: math.unit(2, "km")
  33021. },
  33022. {
  33023. name: "Gigamacro",
  33024. height: math.unit(2000, "km")
  33025. },
  33026. {
  33027. name: "Teramacro",
  33028. height: math.unit(250000, "km")
  33029. },
  33030. ]
  33031. ))
  33032. characterMakers.push(() => makeCharacter(
  33033. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33034. {
  33035. front: {
  33036. height: math.unit(4, "meters"),
  33037. weight: math.unit(150, "kg"),
  33038. name: "Front",
  33039. image: {
  33040. source: "./media/characters/caledvwlch/front.svg",
  33041. extra: 1757/1537,
  33042. bottom: 31/1788
  33043. }
  33044. },
  33045. side: {
  33046. height: math.unit(4, "meters"),
  33047. weight: math.unit(150, "kg"),
  33048. name: "Side",
  33049. image: {
  33050. source: "./media/characters/caledvwlch/side.svg",
  33051. extra: 1605 / 1536,
  33052. bottom: 31 / 1636
  33053. }
  33054. },
  33055. back: {
  33056. height: math.unit(4, "meters"),
  33057. weight: math.unit(150, "kg"),
  33058. name: "Back",
  33059. image: {
  33060. source: "./media/characters/caledvwlch/back.svg",
  33061. extra: 1635 / 1565,
  33062. bottom: 27 / 1662
  33063. }
  33064. },
  33065. },
  33066. [
  33067. {
  33068. name: "\"Incognito\"",
  33069. height: math.unit(4, "meters")
  33070. },
  33071. {
  33072. name: "Small rampage",
  33073. height: math.unit(600, "meters")
  33074. },
  33075. {
  33076. name: "Mega",
  33077. height: math.unit(30, "km")
  33078. },
  33079. {
  33080. name: "Home-size",
  33081. height: math.unit(50, "km"),
  33082. default: true
  33083. },
  33084. {
  33085. name: "Giga",
  33086. height: math.unit(300, "km")
  33087. },
  33088. {
  33089. name: "Lounging",
  33090. height: math.unit(11000, "km")
  33091. },
  33092. {
  33093. name: "Planet snacking",
  33094. height: math.unit(2000000, "km")
  33095. },
  33096. ]
  33097. ))
  33098. characterMakers.push(() => makeCharacter(
  33099. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33100. {
  33101. front: {
  33102. height: math.unit(6, "feet"),
  33103. weight: math.unit(215, "lb"),
  33104. name: "Front",
  33105. image: {
  33106. source: "./media/characters/sapphire-svell/front.svg",
  33107. extra: 495 / 455,
  33108. bottom: 20 / 515
  33109. }
  33110. },
  33111. back: {
  33112. height: math.unit(6, "feet"),
  33113. weight: math.unit(216, "lb"),
  33114. name: "Back",
  33115. image: {
  33116. source: "./media/characters/sapphire-svell/back.svg",
  33117. extra: 497 / 477,
  33118. bottom: 7 / 504
  33119. }
  33120. },
  33121. maw: {
  33122. height: math.unit(1.57, "feet"),
  33123. name: "Maw",
  33124. image: {
  33125. source: "./media/characters/sapphire-svell/maw.svg"
  33126. }
  33127. },
  33128. foot: {
  33129. height: math.unit(1.07, "feet"),
  33130. name: "Foot",
  33131. image: {
  33132. source: "./media/characters/sapphire-svell/foot.svg"
  33133. }
  33134. },
  33135. toering: {
  33136. height: math.unit(1.7, "inch"),
  33137. name: "Toering",
  33138. image: {
  33139. source: "./media/characters/sapphire-svell/toering.svg"
  33140. }
  33141. },
  33142. },
  33143. [
  33144. {
  33145. name: "Normal",
  33146. height: math.unit(300, "feet"),
  33147. default: true
  33148. },
  33149. {
  33150. name: "Augmented",
  33151. height: math.unit(1250, "feet")
  33152. },
  33153. {
  33154. name: "Unleashed",
  33155. height: math.unit(3000, "feet")
  33156. },
  33157. ]
  33158. ))
  33159. characterMakers.push(() => makeCharacter(
  33160. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33161. {
  33162. side: {
  33163. height: math.unit(2 + 3 / 12, "feet"),
  33164. weight: math.unit(110, "lb"),
  33165. name: "Side",
  33166. image: {
  33167. source: "./media/characters/glitch-flux/side.svg",
  33168. extra: 997 / 805,
  33169. bottom: 20 / 1017
  33170. }
  33171. },
  33172. },
  33173. [
  33174. {
  33175. name: "Normal",
  33176. height: math.unit(2 + 3 / 12, "feet"),
  33177. default: true
  33178. },
  33179. ]
  33180. ))
  33181. characterMakers.push(() => makeCharacter(
  33182. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33183. {
  33184. front: {
  33185. height: math.unit(4, "meters"),
  33186. name: "Front",
  33187. image: {
  33188. source: "./media/characters/mid/front.svg",
  33189. extra: 507 / 476,
  33190. bottom: 17 / 524
  33191. }
  33192. },
  33193. back: {
  33194. height: math.unit(4, "meters"),
  33195. name: "Back",
  33196. image: {
  33197. source: "./media/characters/mid/back.svg",
  33198. extra: 519 / 487,
  33199. bottom: 7 / 526
  33200. }
  33201. },
  33202. stuck: {
  33203. height: math.unit(2.2, "meters"),
  33204. name: "Stuck",
  33205. image: {
  33206. source: "./media/characters/mid/stuck.svg",
  33207. extra: 1951 / 1869,
  33208. bottom: 88 / 2039
  33209. }
  33210. }
  33211. },
  33212. [
  33213. {
  33214. name: "Normal",
  33215. height: math.unit(4, "meters"),
  33216. default: true
  33217. },
  33218. {
  33219. name: "Big",
  33220. height: math.unit(10, "meters")
  33221. },
  33222. {
  33223. name: "Macro",
  33224. height: math.unit(800, "meters")
  33225. },
  33226. {
  33227. name: "Megamacro",
  33228. height: math.unit(100, "km")
  33229. },
  33230. {
  33231. name: "Overgrown",
  33232. height: math.unit(1, "parsec")
  33233. },
  33234. ]
  33235. ))
  33236. characterMakers.push(() => makeCharacter(
  33237. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33238. {
  33239. front: {
  33240. height: math.unit(2.5, "meters"),
  33241. weight: math.unit(225, "kg"),
  33242. name: "Front",
  33243. image: {
  33244. source: "./media/characters/iris/front.svg",
  33245. extra: 3348 / 3251,
  33246. bottom: 205 / 3553
  33247. }
  33248. },
  33249. maw: {
  33250. height: math.unit(0.56, "meter"),
  33251. name: "Maw",
  33252. image: {
  33253. source: "./media/characters/iris/maw.svg"
  33254. }
  33255. },
  33256. },
  33257. [
  33258. {
  33259. name: "Mewter cat",
  33260. height: math.unit(1.2, "meters")
  33261. },
  33262. {
  33263. name: "Normal",
  33264. height: math.unit(2.5, "meters"),
  33265. default: true
  33266. },
  33267. {
  33268. name: "Minimacro",
  33269. height: math.unit(18, "feet")
  33270. },
  33271. {
  33272. name: "Macro",
  33273. height: math.unit(140, "feet")
  33274. },
  33275. {
  33276. name: "Macro+",
  33277. height: math.unit(180, "meters")
  33278. },
  33279. {
  33280. name: "Megamacro",
  33281. height: math.unit(2746, "meters")
  33282. },
  33283. ]
  33284. ))
  33285. characterMakers.push(() => makeCharacter(
  33286. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33287. {
  33288. front: {
  33289. height: math.unit(6, "feet"),
  33290. weight: math.unit(135, "lb"),
  33291. name: "Front",
  33292. image: {
  33293. source: "./media/characters/axel/front.svg",
  33294. extra: 908 / 908,
  33295. bottom: 58 / 966
  33296. }
  33297. },
  33298. side: {
  33299. height: math.unit(6, "feet"),
  33300. weight: math.unit(135, "lb"),
  33301. name: "Side",
  33302. image: {
  33303. source: "./media/characters/axel/side.svg",
  33304. extra: 958 / 958,
  33305. bottom: 11 / 969
  33306. }
  33307. },
  33308. back: {
  33309. height: math.unit(6, "feet"),
  33310. weight: math.unit(135, "lb"),
  33311. name: "Back",
  33312. image: {
  33313. source: "./media/characters/axel/back.svg",
  33314. extra: 887 / 887,
  33315. bottom: 34 / 921
  33316. }
  33317. },
  33318. head: {
  33319. height: math.unit(1.07, "feet"),
  33320. name: "Head",
  33321. image: {
  33322. source: "./media/characters/axel/head.svg"
  33323. }
  33324. },
  33325. beak: {
  33326. height: math.unit(1.4, "feet"),
  33327. name: "Beak",
  33328. image: {
  33329. source: "./media/characters/axel/beak.svg"
  33330. }
  33331. },
  33332. beakSide: {
  33333. height: math.unit(1.4, "feet"),
  33334. name: "Beak Side",
  33335. image: {
  33336. source: "./media/characters/axel/beak-side.svg"
  33337. }
  33338. },
  33339. sheath: {
  33340. height: math.unit(0.5, "feet"),
  33341. name: "Sheath",
  33342. image: {
  33343. source: "./media/characters/axel/sheath.svg"
  33344. }
  33345. },
  33346. dick: {
  33347. height: math.unit(0.98, "feet"),
  33348. name: "Dick",
  33349. image: {
  33350. source: "./media/characters/axel/dick.svg"
  33351. }
  33352. },
  33353. },
  33354. [
  33355. {
  33356. name: "Macro",
  33357. height: math.unit(68, "meters"),
  33358. default: true
  33359. },
  33360. ]
  33361. ))
  33362. characterMakers.push(() => makeCharacter(
  33363. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33364. {
  33365. front: {
  33366. height: math.unit(3.5, "meters"),
  33367. weight: math.unit(1200, "kg"),
  33368. name: "Front",
  33369. image: {
  33370. source: "./media/characters/joanna/front.svg",
  33371. extra: 1596 / 1488,
  33372. bottom: 29 / 1625
  33373. }
  33374. },
  33375. back: {
  33376. height: math.unit(3.5, "meters"),
  33377. weight: math.unit(1200, "kg"),
  33378. name: "Back",
  33379. image: {
  33380. source: "./media/characters/joanna/back.svg",
  33381. extra: 1594 / 1495,
  33382. bottom: 26 / 1620
  33383. }
  33384. },
  33385. frontShorts: {
  33386. height: math.unit(3.5, "meters"),
  33387. weight: math.unit(1200, "kg"),
  33388. name: "Front (Shorts)",
  33389. image: {
  33390. source: "./media/characters/joanna/front-shorts.svg",
  33391. extra: 1596 / 1488,
  33392. bottom: 29 / 1625
  33393. }
  33394. },
  33395. frontBiker: {
  33396. height: math.unit(3.5, "meters"),
  33397. weight: math.unit(1200, "kg"),
  33398. name: "Front (Biker)",
  33399. image: {
  33400. source: "./media/characters/joanna/front-biker.svg",
  33401. extra: 1596 / 1488,
  33402. bottom: 29 / 1625
  33403. }
  33404. },
  33405. backBiker: {
  33406. height: math.unit(3.5, "meters"),
  33407. weight: math.unit(1200, "kg"),
  33408. name: "Back (Biker)",
  33409. image: {
  33410. source: "./media/characters/joanna/back-biker.svg",
  33411. extra: 1594 / 1495,
  33412. bottom: 88 / 1682
  33413. }
  33414. },
  33415. bikeLeft: {
  33416. height: math.unit(2.4, "meters"),
  33417. weight: math.unit(1600, "kg"),
  33418. name: "Bike (Left)",
  33419. image: {
  33420. source: "./media/characters/joanna/bike-left.svg",
  33421. extra: 720 / 720,
  33422. bottom: 8 / 728
  33423. }
  33424. },
  33425. bikeRight: {
  33426. height: math.unit(2.4, "meters"),
  33427. weight: math.unit(1600, "kg"),
  33428. name: "Bike (Right)",
  33429. image: {
  33430. source: "./media/characters/joanna/bike-right.svg",
  33431. extra: 720 / 720,
  33432. bottom: 8 / 728
  33433. }
  33434. },
  33435. },
  33436. [
  33437. {
  33438. name: "Incognito",
  33439. height: math.unit(3.5, "meters")
  33440. },
  33441. {
  33442. name: "Casual Big",
  33443. height: math.unit(200, "meters")
  33444. },
  33445. {
  33446. name: "Macro",
  33447. height: math.unit(600, "meters")
  33448. },
  33449. {
  33450. name: "Original",
  33451. height: math.unit(20, "km"),
  33452. default: true
  33453. },
  33454. {
  33455. name: "Giga",
  33456. height: math.unit(400, "km")
  33457. },
  33458. {
  33459. name: "Lounging",
  33460. height: math.unit(1500, "km")
  33461. },
  33462. {
  33463. name: "Planetary",
  33464. height: math.unit(200000, "km")
  33465. },
  33466. ]
  33467. ))
  33468. characterMakers.push(() => makeCharacter(
  33469. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33470. {
  33471. front: {
  33472. height: math.unit(6, "feet"),
  33473. weight: math.unit(150, "lb"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/hugo-sigil/front.svg",
  33477. extra: 522 / 500,
  33478. bottom: 2 / 524
  33479. }
  33480. },
  33481. back: {
  33482. height: math.unit(6, "feet"),
  33483. weight: math.unit(150, "lb"),
  33484. name: "Back",
  33485. image: {
  33486. source: "./media/characters/hugo-sigil/back.svg",
  33487. extra: 519 / 495,
  33488. bottom: 5 / 524
  33489. }
  33490. },
  33491. maw: {
  33492. height: math.unit(1.4, "feet"),
  33493. weight: math.unit(150, "lb"),
  33494. name: "Maw",
  33495. image: {
  33496. source: "./media/characters/hugo-sigil/maw.svg"
  33497. }
  33498. },
  33499. feet: {
  33500. height: math.unit(1.56, "feet"),
  33501. weight: math.unit(150, "lb"),
  33502. name: "Feet",
  33503. image: {
  33504. source: "./media/characters/hugo-sigil/feet.svg",
  33505. extra: 177 / 177,
  33506. bottom: 12 / 189
  33507. }
  33508. },
  33509. },
  33510. [
  33511. {
  33512. name: "Normal",
  33513. height: math.unit(6, "feet")
  33514. },
  33515. {
  33516. name: "Macro",
  33517. height: math.unit(200, "feet"),
  33518. default: true
  33519. },
  33520. ]
  33521. ))
  33522. characterMakers.push(() => makeCharacter(
  33523. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33524. {
  33525. front: {
  33526. height: math.unit(6, "feet"),
  33527. weight: math.unit(150, "lb"),
  33528. name: "Front",
  33529. image: {
  33530. source: "./media/characters/peri/front.svg",
  33531. extra: 2354 / 2233,
  33532. bottom: 49 / 2403
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Really Small",
  33539. height: math.unit(1, "nm")
  33540. },
  33541. {
  33542. name: "Micro",
  33543. height: math.unit(4, "inches")
  33544. },
  33545. {
  33546. name: "Normal",
  33547. height: math.unit(7, "inches"),
  33548. default: true
  33549. },
  33550. {
  33551. name: "Macro",
  33552. height: math.unit(400, "feet")
  33553. },
  33554. {
  33555. name: "Megamacro",
  33556. height: math.unit(100, "miles")
  33557. },
  33558. ]
  33559. ))
  33560. characterMakers.push(() => makeCharacter(
  33561. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33562. {
  33563. frontSlim: {
  33564. height: math.unit(7, "feet"),
  33565. name: "Front (Slim)",
  33566. image: {
  33567. source: "./media/characters/issilora/front-slim.svg",
  33568. extra: 529 / 449,
  33569. bottom: 53 / 582
  33570. }
  33571. },
  33572. sideSlim: {
  33573. height: math.unit(7, "feet"),
  33574. name: "Side (Slim)",
  33575. image: {
  33576. source: "./media/characters/issilora/side-slim.svg",
  33577. extra: 570 / 480,
  33578. bottom: 30 / 600
  33579. }
  33580. },
  33581. backSlim: {
  33582. height: math.unit(7, "feet"),
  33583. name: "Back (Slim)",
  33584. image: {
  33585. source: "./media/characters/issilora/back-slim.svg",
  33586. extra: 537 / 455,
  33587. bottom: 46 / 583
  33588. }
  33589. },
  33590. frontBuff: {
  33591. height: math.unit(7, "feet"),
  33592. name: "Front (Buff)",
  33593. image: {
  33594. source: "./media/characters/issilora/front-buff.svg",
  33595. extra: 2310 / 2035,
  33596. bottom: 335 / 2645
  33597. }
  33598. },
  33599. head: {
  33600. height: math.unit(1.94, "feet"),
  33601. name: "Head",
  33602. image: {
  33603. source: "./media/characters/issilora/head.svg"
  33604. }
  33605. },
  33606. },
  33607. [
  33608. {
  33609. name: "Minimum",
  33610. height: math.unit(7, "feet")
  33611. },
  33612. {
  33613. name: "Comfortable",
  33614. height: math.unit(17, "feet")
  33615. },
  33616. {
  33617. name: "Fun Size",
  33618. height: math.unit(47, "feet")
  33619. },
  33620. {
  33621. name: "Natural Macro",
  33622. height: math.unit(137, "feet"),
  33623. default: true
  33624. },
  33625. {
  33626. name: "Maximum Kaiju",
  33627. height: math.unit(397, "feet")
  33628. },
  33629. ]
  33630. ))
  33631. characterMakers.push(() => makeCharacter(
  33632. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33633. {
  33634. front: {
  33635. height: math.unit(50 + 9/12, "feet"),
  33636. weight: math.unit(32.8, "tons"),
  33637. name: "Front",
  33638. image: {
  33639. source: "./media/characters/irb'iiritaahn/front.svg",
  33640. extra: 1878/1826,
  33641. bottom: 326/2204
  33642. }
  33643. },
  33644. back: {
  33645. height: math.unit(50 + 9/12, "feet"),
  33646. weight: math.unit(32.8, "tons"),
  33647. name: "Back",
  33648. image: {
  33649. source: "./media/characters/irb'iiritaahn/back.svg",
  33650. extra: 2052/2018,
  33651. bottom: 152/2204
  33652. }
  33653. },
  33654. head: {
  33655. height: math.unit(12.86, "feet"),
  33656. name: "Head",
  33657. image: {
  33658. source: "./media/characters/irb'iiritaahn/head.svg"
  33659. }
  33660. },
  33661. maw: {
  33662. height: math.unit(9.66, "feet"),
  33663. name: "Maw",
  33664. image: {
  33665. source: "./media/characters/irb'iiritaahn/maw.svg"
  33666. }
  33667. },
  33668. frontDick: {
  33669. height: math.unit(8.78461, "feet"),
  33670. name: "Front Dick",
  33671. image: {
  33672. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33673. }
  33674. },
  33675. rearDick: {
  33676. height: math.unit(8.78461, "feet"),
  33677. name: "Rear Dick",
  33678. image: {
  33679. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33680. }
  33681. },
  33682. rearDickUnfolded: {
  33683. height: math.unit(8.78, "feet"),
  33684. name: "Rear Dick (Unfolded)",
  33685. image: {
  33686. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33687. }
  33688. },
  33689. wings: {
  33690. height: math.unit(43, "feet"),
  33691. name: "Wings",
  33692. image: {
  33693. source: "./media/characters/irb'iiritaahn/wings.svg"
  33694. }
  33695. },
  33696. },
  33697. [
  33698. {
  33699. name: "Macro",
  33700. height: math.unit(50 + 9/12, "feet"),
  33701. default: true
  33702. },
  33703. ]
  33704. ))
  33705. characterMakers.push(() => makeCharacter(
  33706. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33707. {
  33708. front: {
  33709. height: math.unit(205, "cm"),
  33710. weight: math.unit(102, "kg"),
  33711. name: "Front",
  33712. image: {
  33713. source: "./media/characters/irbisgreif/front.svg",
  33714. extra: 785/706,
  33715. bottom: 13/798
  33716. }
  33717. },
  33718. back: {
  33719. height: math.unit(205, "cm"),
  33720. weight: math.unit(102, "kg"),
  33721. name: "Back",
  33722. image: {
  33723. source: "./media/characters/irbisgreif/back.svg",
  33724. extra: 713/701,
  33725. bottom: 26/739
  33726. }
  33727. },
  33728. frontDressed: {
  33729. height: math.unit(216, "cm"),
  33730. weight: math.unit(102, "kg"),
  33731. name: "Front-dressed",
  33732. image: {
  33733. source: "./media/characters/irbisgreif/front-dressed.svg",
  33734. extra: 902/776,
  33735. bottom: 14/916
  33736. }
  33737. },
  33738. sideDressed: {
  33739. height: math.unit(195, "cm"),
  33740. weight: math.unit(102, "kg"),
  33741. name: "Side-dressed",
  33742. image: {
  33743. source: "./media/characters/irbisgreif/side-dressed.svg",
  33744. extra: 788/688,
  33745. bottom: 21/809
  33746. }
  33747. },
  33748. backDressed: {
  33749. height: math.unit(216, "cm"),
  33750. weight: math.unit(102, "kg"),
  33751. name: "Back-dressed",
  33752. image: {
  33753. source: "./media/characters/irbisgreif/back-dressed.svg",
  33754. extra: 901/783,
  33755. bottom: 10/911
  33756. }
  33757. },
  33758. dick: {
  33759. height: math.unit(0.49, "feet"),
  33760. name: "Dick",
  33761. image: {
  33762. source: "./media/characters/irbisgreif/dick.svg"
  33763. }
  33764. },
  33765. wingTop: {
  33766. height: math.unit(1.93 , "feet"),
  33767. name: "Wing-top",
  33768. image: {
  33769. source: "./media/characters/irbisgreif/wing-top.svg"
  33770. }
  33771. },
  33772. wingBottom: {
  33773. height: math.unit(1.93 , "feet"),
  33774. name: "Wing-bottom",
  33775. image: {
  33776. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33777. }
  33778. },
  33779. },
  33780. [
  33781. {
  33782. name: "Normal",
  33783. height: math.unit(216, "cm"),
  33784. default: true
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33790. {
  33791. front: {
  33792. height: math.unit(6, "feet"),
  33793. weight: math.unit(150, "lb"),
  33794. name: "Front",
  33795. image: {
  33796. source: "./media/characters/pride/front.svg",
  33797. extra: 1299/1230,
  33798. bottom: 18/1317
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Normal",
  33805. height: math.unit(7, "feet")
  33806. },
  33807. {
  33808. name: "Mini-macro",
  33809. height: math.unit(11, "feet")
  33810. },
  33811. {
  33812. name: "Macro",
  33813. height: math.unit(15, "meters"),
  33814. default: true
  33815. },
  33816. {
  33817. name: "Macro+",
  33818. height: math.unit(40, "meters")
  33819. },
  33820. ]
  33821. ))
  33822. characterMakers.push(() => makeCharacter(
  33823. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33824. {
  33825. front: {
  33826. height: math.unit(4 + 2 / 12, "feet"),
  33827. weight: math.unit(95, "lb"),
  33828. name: "Front",
  33829. image: {
  33830. source: "./media/characters/vaelophis-nyx/front.svg",
  33831. extra: 2532/2330,
  33832. bottom: 0/2532
  33833. }
  33834. },
  33835. back: {
  33836. height: math.unit(4 + 2 / 12, "feet"),
  33837. weight: math.unit(95, "lb"),
  33838. name: "Back",
  33839. image: {
  33840. source: "./media/characters/vaelophis-nyx/back.svg",
  33841. extra: 2484/2361,
  33842. bottom: 0/2484
  33843. }
  33844. },
  33845. feralSide: {
  33846. height: math.unit(2 + 1/12, "feet"),
  33847. weight: math.unit(20, "lb"),
  33848. name: "Feral (Side)",
  33849. image: {
  33850. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33851. extra: 1721/1581,
  33852. bottom: 70/1791
  33853. }
  33854. },
  33855. feralLazing: {
  33856. height: math.unit(1.08, "feet"),
  33857. weight: math.unit(20, "lb"),
  33858. name: "Feral (Lazing)",
  33859. image: {
  33860. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33861. extra: 822/822,
  33862. bottom: 248/1070
  33863. }
  33864. },
  33865. ear: {
  33866. height: math.unit(0.416, "feet"),
  33867. name: "Ear",
  33868. image: {
  33869. source: "./media/characters/vaelophis-nyx/ear.svg"
  33870. }
  33871. },
  33872. eye: {
  33873. height: math.unit(0.0748, "feet"),
  33874. name: "Eye",
  33875. image: {
  33876. source: "./media/characters/vaelophis-nyx/eye.svg"
  33877. }
  33878. },
  33879. mouth: {
  33880. height: math.unit(0.378, "feet"),
  33881. name: "Mouth",
  33882. image: {
  33883. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33884. }
  33885. },
  33886. spade: {
  33887. height: math.unit(0.55, "feet"),
  33888. name: "Spade",
  33889. image: {
  33890. source: "./media/characters/vaelophis-nyx/spade.svg"
  33891. }
  33892. },
  33893. },
  33894. [
  33895. {
  33896. name: "Normal",
  33897. height: math.unit(4 + 2/12, "feet"),
  33898. default: true
  33899. },
  33900. ]
  33901. ))
  33902. characterMakers.push(() => makeCharacter(
  33903. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33904. {
  33905. front: {
  33906. height: math.unit(7, "feet"),
  33907. weight: math.unit(231, "lb"),
  33908. name: "Front",
  33909. image: {
  33910. source: "./media/characters/flux/front.svg",
  33911. extra: 919/871,
  33912. bottom: 0/919
  33913. }
  33914. },
  33915. back: {
  33916. height: math.unit(7, "feet"),
  33917. weight: math.unit(231, "lb"),
  33918. name: "Back",
  33919. image: {
  33920. source: "./media/characters/flux/back.svg",
  33921. extra: 1040/992,
  33922. bottom: 0/1040
  33923. }
  33924. },
  33925. frontDressed: {
  33926. height: math.unit(7, "feet"),
  33927. weight: math.unit(231, "lb"),
  33928. name: "Front (Dressed)",
  33929. image: {
  33930. source: "./media/characters/flux/front-dressed.svg",
  33931. extra: 919/871,
  33932. bottom: 0/919
  33933. }
  33934. },
  33935. feralSide: {
  33936. height: math.unit(5, "feet"),
  33937. weight: math.unit(150, "lb"),
  33938. name: "Feral (Side)",
  33939. image: {
  33940. source: "./media/characters/flux/feral-side.svg",
  33941. extra: 598/528,
  33942. bottom: 28/626
  33943. }
  33944. },
  33945. head: {
  33946. height: math.unit(1.585, "feet"),
  33947. name: "Head",
  33948. image: {
  33949. source: "./media/characters/flux/head.svg"
  33950. }
  33951. },
  33952. headSide: {
  33953. height: math.unit(1.74, "feet"),
  33954. name: "Head (Side)",
  33955. image: {
  33956. source: "./media/characters/flux/head-side.svg"
  33957. }
  33958. },
  33959. headSideFire: {
  33960. height: math.unit(1.76, "feet"),
  33961. name: "Head (Side, Fire)",
  33962. image: {
  33963. source: "./media/characters/flux/head-side-fire.svg"
  33964. }
  33965. },
  33966. },
  33967. [
  33968. {
  33969. name: "Normal",
  33970. height: math.unit(7, "feet"),
  33971. default: true
  33972. },
  33973. ]
  33974. ))
  33975. characterMakers.push(() => makeCharacter(
  33976. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33977. {
  33978. front: {
  33979. height: math.unit(9, "feet"),
  33980. weight: math.unit(1012, "lb"),
  33981. name: "Front",
  33982. image: {
  33983. source: "./media/characters/ulfra-lupae/front.svg",
  33984. extra: 1083/1011,
  33985. bottom: 67/1150
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "Micro",
  33992. height: math.unit(6, "inches")
  33993. },
  33994. {
  33995. name: "Socializing",
  33996. height: math.unit(6 + 5/12, "feet")
  33997. },
  33998. {
  33999. name: "Normal",
  34000. height: math.unit(9, "feet"),
  34001. default: true
  34002. },
  34003. {
  34004. name: "Macro",
  34005. height: math.unit(150, "feet")
  34006. },
  34007. ]
  34008. ))
  34009. characterMakers.push(() => makeCharacter(
  34010. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34011. {
  34012. front: {
  34013. height: math.unit(5 + 2/12, "feet"),
  34014. weight: math.unit(120, "lb"),
  34015. name: "Front",
  34016. image: {
  34017. source: "./media/characters/timber/front.svg",
  34018. extra: 2814/2705,
  34019. bottom: 181/2995
  34020. }
  34021. },
  34022. },
  34023. [
  34024. {
  34025. name: "Normal",
  34026. height: math.unit(5 + 2/12, "feet"),
  34027. default: true
  34028. },
  34029. ]
  34030. ))
  34031. characterMakers.push(() => makeCharacter(
  34032. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34033. {
  34034. front: {
  34035. height: math.unit(9, "feet"),
  34036. name: "Front",
  34037. image: {
  34038. source: "./media/characters/nicki/front.svg",
  34039. extra: 1240/990,
  34040. bottom: 45/1285
  34041. },
  34042. form: "anthro",
  34043. default: true
  34044. },
  34045. side: {
  34046. height: math.unit(9, "feet"),
  34047. name: "Side",
  34048. image: {
  34049. source: "./media/characters/nicki/side.svg",
  34050. extra: 1047/973,
  34051. bottom: 61/1108
  34052. },
  34053. form: "anthro"
  34054. },
  34055. back: {
  34056. height: math.unit(9, "feet"),
  34057. name: "Back",
  34058. image: {
  34059. source: "./media/characters/nicki/back.svg",
  34060. extra: 1006/965,
  34061. bottom: 39/1045
  34062. },
  34063. form: "anthro"
  34064. },
  34065. taur: {
  34066. height: math.unit(15, "feet"),
  34067. name: "Taur",
  34068. image: {
  34069. source: "./media/characters/nicki/taur.svg",
  34070. extra: 1592/1347,
  34071. bottom: 0/1592
  34072. },
  34073. form: "taur",
  34074. default: true
  34075. },
  34076. },
  34077. [
  34078. {
  34079. name: "Normal",
  34080. height: math.unit(9, "feet"),
  34081. form: "anthro",
  34082. default: true
  34083. },
  34084. {
  34085. name: "Normal",
  34086. height: math.unit(15, "feet"),
  34087. form: "taur",
  34088. default: true
  34089. }
  34090. ],
  34091. {
  34092. "anthro": {
  34093. name: "Anthro",
  34094. default: true
  34095. },
  34096. "taur": {
  34097. name: "Taur"
  34098. }
  34099. }
  34100. ))
  34101. characterMakers.push(() => makeCharacter(
  34102. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34103. {
  34104. front: {
  34105. height: math.unit(7 + 10/12, "feet"),
  34106. weight: math.unit(3.5, "tons"),
  34107. name: "Front",
  34108. image: {
  34109. source: "./media/characters/lee/front.svg",
  34110. extra: 1773/1615,
  34111. bottom: 86/1859
  34112. }
  34113. },
  34114. hand: {
  34115. height: math.unit(1.78, "feet"),
  34116. name: "Hand",
  34117. image: {
  34118. source: "./media/characters/lee/hand.svg"
  34119. }
  34120. },
  34121. maw: {
  34122. height: math.unit(1.18, "feet"),
  34123. name: "Maw",
  34124. image: {
  34125. source: "./media/characters/lee/maw.svg"
  34126. }
  34127. },
  34128. },
  34129. [
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(7 + 10/12, "feet"),
  34133. default: true
  34134. },
  34135. ]
  34136. ))
  34137. characterMakers.push(() => makeCharacter(
  34138. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34139. {
  34140. front: {
  34141. height: math.unit(9, "feet"),
  34142. name: "Front",
  34143. image: {
  34144. source: "./media/characters/guti/front.svg",
  34145. extra: 4551/4355,
  34146. bottom: 123/4674
  34147. }
  34148. },
  34149. tongue: {
  34150. height: math.unit(1, "feet"),
  34151. name: "Tongue",
  34152. image: {
  34153. source: "./media/characters/guti/tongue.svg"
  34154. }
  34155. },
  34156. paw: {
  34157. height: math.unit(1.18, "feet"),
  34158. name: "Paw",
  34159. image: {
  34160. source: "./media/characters/guti/paw.svg"
  34161. }
  34162. },
  34163. },
  34164. [
  34165. {
  34166. name: "Normal",
  34167. height: math.unit(9, "feet"),
  34168. default: true
  34169. },
  34170. ]
  34171. ))
  34172. characterMakers.push(() => makeCharacter(
  34173. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34174. {
  34175. side: {
  34176. height: math.unit(5, "meters"),
  34177. name: "Side",
  34178. image: {
  34179. source: "./media/characters/vesper/side.svg",
  34180. extra: 1605/1518,
  34181. bottom: 0/1605
  34182. }
  34183. },
  34184. },
  34185. [
  34186. {
  34187. name: "Small",
  34188. height: math.unit(5, "meters")
  34189. },
  34190. {
  34191. name: "Sage",
  34192. height: math.unit(100, "meters"),
  34193. default: true
  34194. },
  34195. {
  34196. name: "Fun Size",
  34197. height: math.unit(600, "meters")
  34198. },
  34199. {
  34200. name: "Goddess",
  34201. height: math.unit(20000, "km")
  34202. },
  34203. {
  34204. name: "Maximum",
  34205. height: math.unit(5, "galaxies")
  34206. },
  34207. ]
  34208. ))
  34209. characterMakers.push(() => makeCharacter(
  34210. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34211. {
  34212. front: {
  34213. height: math.unit(6 + 3/12, "feet"),
  34214. weight: math.unit(190, "lb"),
  34215. name: "Front",
  34216. image: {
  34217. source: "./media/characters/gawain/front.svg",
  34218. extra: 2222/2139,
  34219. bottom: 90/2312
  34220. }
  34221. },
  34222. back: {
  34223. height: math.unit(6 + 3/12, "feet"),
  34224. weight: math.unit(190, "lb"),
  34225. name: "Back",
  34226. image: {
  34227. source: "./media/characters/gawain/back.svg",
  34228. extra: 2199/2111,
  34229. bottom: 73/2272
  34230. }
  34231. },
  34232. },
  34233. [
  34234. {
  34235. name: "Normal",
  34236. height: math.unit(6 + 3/12, "feet"),
  34237. default: true
  34238. },
  34239. ]
  34240. ))
  34241. characterMakers.push(() => makeCharacter(
  34242. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34243. {
  34244. side: {
  34245. height: math.unit(3.5, "meters"),
  34246. weight: math.unit(16000, "lb"),
  34247. name: "Side",
  34248. image: {
  34249. source: "./media/characters/dascalti/side.svg",
  34250. extra: 392/273,
  34251. bottom: 47/439
  34252. }
  34253. },
  34254. breath: {
  34255. height: math.unit(7.4, "feet"),
  34256. name: "Breath",
  34257. image: {
  34258. source: "./media/characters/dascalti/breath.svg"
  34259. }
  34260. },
  34261. fed: {
  34262. height: math.unit(3.6, "meters"),
  34263. weight: math.unit(16000, "lb"),
  34264. name: "Fed",
  34265. image: {
  34266. source: "./media/characters/dascalti/fed.svg",
  34267. extra: 1419/820,
  34268. bottom: 95/1514
  34269. }
  34270. },
  34271. },
  34272. [
  34273. {
  34274. name: "Normal",
  34275. height: math.unit(3.5, "meters"),
  34276. default: true
  34277. },
  34278. ]
  34279. ))
  34280. characterMakers.push(() => makeCharacter(
  34281. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34282. {
  34283. front: {
  34284. height: math.unit(3 + 5/12, "feet"),
  34285. name: "Front",
  34286. image: {
  34287. source: "./media/characters/mauve/front.svg",
  34288. extra: 1126/1033,
  34289. bottom: 65/1191
  34290. }
  34291. },
  34292. side: {
  34293. height: math.unit(3 + 5/12, "feet"),
  34294. name: "Side",
  34295. image: {
  34296. source: "./media/characters/mauve/side.svg",
  34297. extra: 1089/1001,
  34298. bottom: 29/1118
  34299. }
  34300. },
  34301. back: {
  34302. height: math.unit(3 + 5/12, "feet"),
  34303. name: "Back",
  34304. image: {
  34305. source: "./media/characters/mauve/back.svg",
  34306. extra: 1173/1053,
  34307. bottom: 109/1282
  34308. }
  34309. },
  34310. },
  34311. [
  34312. {
  34313. name: "Normal",
  34314. height: math.unit(3 + 5/12, "feet"),
  34315. default: true
  34316. },
  34317. ]
  34318. ))
  34319. characterMakers.push(() => makeCharacter(
  34320. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34321. {
  34322. front: {
  34323. height: math.unit(6 + 3/12, "feet"),
  34324. weight: math.unit(430, "lb"),
  34325. name: "Front",
  34326. image: {
  34327. source: "./media/characters/carlos/front.svg",
  34328. extra: 1964/1913,
  34329. bottom: 70/2034
  34330. }
  34331. },
  34332. },
  34333. [
  34334. {
  34335. name: "Normal",
  34336. height: math.unit(6 + 3/12, "feet"),
  34337. default: true
  34338. },
  34339. ]
  34340. ))
  34341. characterMakers.push(() => makeCharacter(
  34342. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34343. {
  34344. back: {
  34345. height: math.unit(5 + 10/12, "feet"),
  34346. weight: math.unit(200, "lb"),
  34347. name: "Back",
  34348. image: {
  34349. source: "./media/characters/jax/back.svg",
  34350. extra: 764/739,
  34351. bottom: 25/789
  34352. }
  34353. },
  34354. },
  34355. [
  34356. {
  34357. name: "Normal",
  34358. height: math.unit(5 + 10/12, "feet"),
  34359. default: true
  34360. },
  34361. ]
  34362. ))
  34363. characterMakers.push(() => makeCharacter(
  34364. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34365. {
  34366. front: {
  34367. height: math.unit(8, "feet"),
  34368. weight: math.unit(250, "lb"),
  34369. name: "Front",
  34370. image: {
  34371. source: "./media/characters/eikthynir/front.svg",
  34372. extra: 1332/1166,
  34373. bottom: 82/1414
  34374. }
  34375. },
  34376. back: {
  34377. height: math.unit(8, "feet"),
  34378. weight: math.unit(250, "lb"),
  34379. name: "Back",
  34380. image: {
  34381. source: "./media/characters/eikthynir/back.svg",
  34382. extra: 1342/1190,
  34383. bottom: 19/1361
  34384. }
  34385. },
  34386. dick: {
  34387. height: math.unit(2.35, "feet"),
  34388. name: "Dick",
  34389. image: {
  34390. source: "./media/characters/eikthynir/dick.svg"
  34391. }
  34392. },
  34393. },
  34394. [
  34395. {
  34396. name: "Normal",
  34397. height: math.unit(8, "feet"),
  34398. default: true
  34399. },
  34400. ]
  34401. ))
  34402. characterMakers.push(() => makeCharacter(
  34403. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34404. {
  34405. front: {
  34406. height: math.unit(99, "meters"),
  34407. weight: math.unit(13000, "tons"),
  34408. name: "Front",
  34409. image: {
  34410. source: "./media/characters/zlmos/front.svg",
  34411. extra: 2202/1992,
  34412. bottom: 315/2517
  34413. }
  34414. },
  34415. },
  34416. [
  34417. {
  34418. name: "Macro",
  34419. height: math.unit(99, "meters"),
  34420. default: true
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34426. {
  34427. front: {
  34428. height: math.unit(6 + 5/12, "feet"),
  34429. name: "Front",
  34430. image: {
  34431. source: "./media/characters/purri/front.svg",
  34432. extra: 1698/1610,
  34433. bottom: 32/1730
  34434. }
  34435. },
  34436. frontAlt: {
  34437. height: math.unit(6 + 5/12, "feet"),
  34438. name: "Front (Alt)",
  34439. image: {
  34440. source: "./media/characters/purri/front-alt.svg",
  34441. extra: 450/420,
  34442. bottom: 26/476
  34443. }
  34444. },
  34445. boots: {
  34446. height: math.unit(5.5, "feet"),
  34447. name: "Boots",
  34448. image: {
  34449. source: "./media/characters/purri/boots.svg",
  34450. extra: 905/853,
  34451. bottom: 18/923
  34452. },
  34453. extraAttributes: {
  34454. "shoeSize": {
  34455. name: "Shoe Size",
  34456. power: 1,
  34457. type: "length",
  34458. base: math.unit(12, "ShoeSizeMensUS")
  34459. },
  34460. "platformHeight": {
  34461. name: "Platform Height",
  34462. power: 1,
  34463. type: "length",
  34464. base: math.unit(2, "inches")
  34465. },
  34466. }
  34467. },
  34468. lying: {
  34469. height: math.unit(2, "feet"),
  34470. name: "Lying",
  34471. image: {
  34472. source: "./media/characters/purri/lying.svg",
  34473. extra: 940/843,
  34474. bottom: 146/1086
  34475. }
  34476. },
  34477. devious: {
  34478. height: math.unit(1.77, "feet"),
  34479. name: "Devious",
  34480. image: {
  34481. source: "./media/characters/purri/devious.svg",
  34482. extra: 1440/1155,
  34483. bottom: 147/1587
  34484. }
  34485. },
  34486. bean: {
  34487. height: math.unit(1.94, "feet"),
  34488. name: "Bean",
  34489. image: {
  34490. source: "./media/characters/purri/bean.svg"
  34491. }
  34492. },
  34493. },
  34494. [
  34495. {
  34496. name: "Micro",
  34497. height: math.unit(1, "mm")
  34498. },
  34499. {
  34500. name: "Normal",
  34501. height: math.unit(6 + 5/12, "feet"),
  34502. default: true
  34503. },
  34504. {
  34505. name: "Macro :3c",
  34506. height: math.unit(2, "miles")
  34507. },
  34508. ]
  34509. ))
  34510. characterMakers.push(() => makeCharacter(
  34511. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34512. {
  34513. front: {
  34514. height: math.unit(6 + 2/12, "feet"),
  34515. weight: math.unit(250, "lb"),
  34516. name: "Front",
  34517. image: {
  34518. source: "./media/characters/moonlight/front.svg",
  34519. extra: 1044/908,
  34520. bottom: 56/1100
  34521. }
  34522. },
  34523. feral: {
  34524. height: math.unit(3 + 1/12, "feet"),
  34525. weight: math.unit(50, "kg"),
  34526. name: "Feral",
  34527. image: {
  34528. source: "./media/characters/moonlight/feral.svg",
  34529. extra: 3705/2791,
  34530. bottom: 145/3850
  34531. }
  34532. },
  34533. paw: {
  34534. height: math.unit(1, "feet"),
  34535. name: "Paw",
  34536. image: {
  34537. source: "./media/characters/moonlight/paw.svg"
  34538. }
  34539. },
  34540. paws: {
  34541. height: math.unit(0.98, "feet"),
  34542. name: "Paws",
  34543. image: {
  34544. source: "./media/characters/moonlight/paws.svg",
  34545. extra: 939/939,
  34546. bottom: 50/989
  34547. }
  34548. },
  34549. mouth: {
  34550. height: math.unit(0.48, "feet"),
  34551. name: "Mouth",
  34552. image: {
  34553. source: "./media/characters/moonlight/mouth.svg"
  34554. }
  34555. },
  34556. dick: {
  34557. height: math.unit(1.46, "feet"),
  34558. name: "Dick",
  34559. image: {
  34560. source: "./media/characters/moonlight/dick.svg"
  34561. }
  34562. },
  34563. },
  34564. [
  34565. {
  34566. name: "Normal",
  34567. height: math.unit(6 + 2/12, "feet"),
  34568. default: true
  34569. },
  34570. {
  34571. name: "Macro",
  34572. height: math.unit(300, "feet")
  34573. },
  34574. {
  34575. name: "Macro+",
  34576. height: math.unit(1, "mile")
  34577. },
  34578. {
  34579. name: "Mt. Moon",
  34580. height: math.unit(5, "miles")
  34581. },
  34582. {
  34583. name: "Megamacro",
  34584. height: math.unit(15, "miles")
  34585. },
  34586. ]
  34587. ))
  34588. characterMakers.push(() => makeCharacter(
  34589. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34590. {
  34591. back: {
  34592. height: math.unit(6, "feet"),
  34593. weight: math.unit(150, "lb"),
  34594. name: "Back",
  34595. image: {
  34596. source: "./media/characters/sylen/back.svg",
  34597. extra: 1335/1273,
  34598. bottom: 107/1442
  34599. }
  34600. },
  34601. },
  34602. [
  34603. {
  34604. name: "Normal",
  34605. height: math.unit(5 + 5/12, "feet")
  34606. },
  34607. {
  34608. name: "Megamacro",
  34609. height: math.unit(3, "miles"),
  34610. default: true
  34611. },
  34612. ]
  34613. ))
  34614. characterMakers.push(() => makeCharacter(
  34615. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34616. {
  34617. front: {
  34618. height: math.unit(6, "feet"),
  34619. weight: math.unit(190, "lb"),
  34620. name: "Front",
  34621. image: {
  34622. source: "./media/characters/huttser/front.svg",
  34623. extra: 1152/1058,
  34624. bottom: 23/1175
  34625. }
  34626. },
  34627. side: {
  34628. height: math.unit(6, "feet"),
  34629. weight: math.unit(190, "lb"),
  34630. name: "Side",
  34631. image: {
  34632. source: "./media/characters/huttser/side.svg",
  34633. extra: 1174/1065,
  34634. bottom: 18/1192
  34635. }
  34636. },
  34637. back: {
  34638. height: math.unit(6, "feet"),
  34639. weight: math.unit(190, "lb"),
  34640. name: "Back",
  34641. image: {
  34642. source: "./media/characters/huttser/back.svg",
  34643. extra: 1158/1056,
  34644. bottom: 12/1170
  34645. }
  34646. },
  34647. },
  34648. [
  34649. ]
  34650. ))
  34651. characterMakers.push(() => makeCharacter(
  34652. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34653. {
  34654. side: {
  34655. height: math.unit(12 + 9/12, "feet"),
  34656. weight: math.unit(15000, "lb"),
  34657. name: "Side",
  34658. image: {
  34659. source: "./media/characters/faan/side.svg",
  34660. extra: 2747/2697,
  34661. bottom: 0/2747
  34662. }
  34663. },
  34664. front: {
  34665. height: math.unit(12 + 9/12, "feet"),
  34666. weight: math.unit(15000, "lb"),
  34667. name: "Front",
  34668. image: {
  34669. source: "./media/characters/faan/front.svg",
  34670. extra: 607/571,
  34671. bottom: 24/631
  34672. }
  34673. },
  34674. head: {
  34675. height: math.unit(2.85, "feet"),
  34676. name: "Head",
  34677. image: {
  34678. source: "./media/characters/faan/head.svg"
  34679. }
  34680. },
  34681. headAlt: {
  34682. height: math.unit(3.13, "feet"),
  34683. name: "Head-alt",
  34684. image: {
  34685. source: "./media/characters/faan/head-alt.svg"
  34686. }
  34687. },
  34688. },
  34689. [
  34690. {
  34691. name: "Normal",
  34692. height: math.unit(12 + 9/12, "feet"),
  34693. default: true
  34694. },
  34695. ]
  34696. ))
  34697. characterMakers.push(() => makeCharacter(
  34698. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34699. {
  34700. front: {
  34701. height: math.unit(6, "feet"),
  34702. weight: math.unit(300, "lb"),
  34703. name: "Front",
  34704. image: {
  34705. source: "./media/characters/tanio/front.svg",
  34706. extra: 711/673,
  34707. bottom: 25/736
  34708. }
  34709. },
  34710. },
  34711. [
  34712. {
  34713. name: "Normal",
  34714. height: math.unit(6, "feet"),
  34715. default: true
  34716. },
  34717. ]
  34718. ))
  34719. characterMakers.push(() => makeCharacter(
  34720. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34721. {
  34722. front: {
  34723. height: math.unit(3, "inches"),
  34724. name: "Front",
  34725. image: {
  34726. source: "./media/characters/noboru/front.svg",
  34727. extra: 1039/932,
  34728. bottom: 18/1057
  34729. }
  34730. },
  34731. },
  34732. [
  34733. {
  34734. name: "Micro",
  34735. height: math.unit(3, "inches"),
  34736. default: true
  34737. },
  34738. ]
  34739. ))
  34740. characterMakers.push(() => makeCharacter(
  34741. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34742. {
  34743. front: {
  34744. height: math.unit(1.85, "meters"),
  34745. weight: math.unit(80, "kg"),
  34746. name: "Front",
  34747. image: {
  34748. source: "./media/characters/daniel-barrett/front.svg",
  34749. extra: 355/337,
  34750. bottom: 9/364
  34751. }
  34752. },
  34753. },
  34754. [
  34755. {
  34756. name: "Pico",
  34757. height: math.unit(0.0433, "mm")
  34758. },
  34759. {
  34760. name: "Nano",
  34761. height: math.unit(1.5, "mm")
  34762. },
  34763. {
  34764. name: "Micro",
  34765. height: math.unit(5.3, "cm"),
  34766. default: true
  34767. },
  34768. {
  34769. name: "Normal",
  34770. height: math.unit(1.85, "meters")
  34771. },
  34772. {
  34773. name: "Macro",
  34774. height: math.unit(64.7, "meters")
  34775. },
  34776. {
  34777. name: "Megamacro",
  34778. height: math.unit(2.26, "km")
  34779. },
  34780. {
  34781. name: "Gigamacro",
  34782. height: math.unit(79, "km")
  34783. },
  34784. {
  34785. name: "Teramacro",
  34786. height: math.unit(2765, "km")
  34787. },
  34788. {
  34789. name: "Petamacro",
  34790. height: math.unit(96678, "km")
  34791. },
  34792. ]
  34793. ))
  34794. characterMakers.push(() => makeCharacter(
  34795. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34796. {
  34797. front: {
  34798. height: math.unit(30, "meters"),
  34799. weight: math.unit(400, "tons"),
  34800. name: "Front",
  34801. image: {
  34802. source: "./media/characters/zeel/front.svg",
  34803. extra: 2599/2599,
  34804. bottom: 226/2825
  34805. }
  34806. },
  34807. },
  34808. [
  34809. {
  34810. name: "Macro",
  34811. height: math.unit(30, "meters"),
  34812. default: true
  34813. },
  34814. ]
  34815. ))
  34816. characterMakers.push(() => makeCharacter(
  34817. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34818. {
  34819. front: {
  34820. height: math.unit(6 + 7/12, "feet"),
  34821. weight: math.unit(210, "lb"),
  34822. name: "Front",
  34823. image: {
  34824. source: "./media/characters/tarn/front.svg",
  34825. extra: 3517/3220,
  34826. bottom: 91/3608
  34827. }
  34828. },
  34829. back: {
  34830. height: math.unit(6 + 7/12, "feet"),
  34831. weight: math.unit(210, "lb"),
  34832. name: "Back",
  34833. image: {
  34834. source: "./media/characters/tarn/back.svg",
  34835. extra: 3566/3241,
  34836. bottom: 34/3600
  34837. }
  34838. },
  34839. dick: {
  34840. height: math.unit(1.65, "feet"),
  34841. name: "Dick",
  34842. image: {
  34843. source: "./media/characters/tarn/dick.svg"
  34844. }
  34845. },
  34846. paw: {
  34847. height: math.unit(1.80, "feet"),
  34848. name: "Paw",
  34849. image: {
  34850. source: "./media/characters/tarn/paw.svg"
  34851. }
  34852. },
  34853. tongue: {
  34854. height: math.unit(0.97, "feet"),
  34855. name: "Tongue",
  34856. image: {
  34857. source: "./media/characters/tarn/tongue.svg"
  34858. }
  34859. },
  34860. },
  34861. [
  34862. {
  34863. name: "Micro",
  34864. height: math.unit(4, "inches")
  34865. },
  34866. {
  34867. name: "Normal",
  34868. height: math.unit(6 + 7/12, "feet"),
  34869. default: true
  34870. },
  34871. {
  34872. name: "Macro",
  34873. height: math.unit(300, "feet")
  34874. },
  34875. ]
  34876. ))
  34877. characterMakers.push(() => makeCharacter(
  34878. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34879. {
  34880. front: {
  34881. height: math.unit(5 + 7/12, "feet"),
  34882. weight: math.unit(80, "kg"),
  34883. name: "Front",
  34884. image: {
  34885. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34886. extra: 3023/2865,
  34887. bottom: 33/3056
  34888. }
  34889. },
  34890. back: {
  34891. height: math.unit(5 + 7/12, "feet"),
  34892. weight: math.unit(80, "kg"),
  34893. name: "Back",
  34894. image: {
  34895. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34896. extra: 3020/2886,
  34897. bottom: 30/3050
  34898. }
  34899. },
  34900. dick: {
  34901. height: math.unit(0.98, "feet"),
  34902. name: "Dick",
  34903. image: {
  34904. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34905. }
  34906. },
  34907. anatomy: {
  34908. height: math.unit(2.86, "feet"),
  34909. name: "Anatomy",
  34910. image: {
  34911. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34912. }
  34913. },
  34914. },
  34915. [
  34916. {
  34917. name: "Really Small",
  34918. height: math.unit(2, "inches")
  34919. },
  34920. {
  34921. name: "Micro",
  34922. height: math.unit(5.583, "inches")
  34923. },
  34924. {
  34925. name: "Normal",
  34926. height: math.unit(5 + 7/12, "feet"),
  34927. default: true
  34928. },
  34929. {
  34930. name: "Macro",
  34931. height: math.unit(67, "feet")
  34932. },
  34933. {
  34934. name: "Megamacro",
  34935. height: math.unit(134, "feet")
  34936. },
  34937. ]
  34938. ))
  34939. characterMakers.push(() => makeCharacter(
  34940. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34941. {
  34942. front: {
  34943. height: math.unit(9, "feet"),
  34944. weight: math.unit(120, "lb"),
  34945. name: "Front",
  34946. image: {
  34947. source: "./media/characters/sally/front.svg",
  34948. extra: 1506/1349,
  34949. bottom: 66/1572
  34950. }
  34951. },
  34952. },
  34953. [
  34954. {
  34955. name: "Normal",
  34956. height: math.unit(9, "feet"),
  34957. default: true
  34958. },
  34959. ]
  34960. ))
  34961. characterMakers.push(() => makeCharacter(
  34962. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34963. {
  34964. front: {
  34965. height: math.unit(8, "feet"),
  34966. weight: math.unit(900, "lb"),
  34967. name: "Front",
  34968. image: {
  34969. source: "./media/characters/owen/front.svg",
  34970. extra: 1761/1657,
  34971. bottom: 74/1835
  34972. }
  34973. },
  34974. side: {
  34975. height: math.unit(8, "feet"),
  34976. weight: math.unit(900, "lb"),
  34977. name: "Side",
  34978. image: {
  34979. source: "./media/characters/owen/side.svg",
  34980. extra: 1797/1734,
  34981. bottom: 30/1827
  34982. }
  34983. },
  34984. back: {
  34985. height: math.unit(8, "feet"),
  34986. weight: math.unit(900, "lb"),
  34987. name: "Back",
  34988. image: {
  34989. source: "./media/characters/owen/back.svg",
  34990. extra: 1796/1706,
  34991. bottom: 59/1855
  34992. }
  34993. },
  34994. maw: {
  34995. height: math.unit(1.76, "feet"),
  34996. name: "Maw",
  34997. image: {
  34998. source: "./media/characters/owen/maw.svg"
  34999. }
  35000. },
  35001. },
  35002. [
  35003. {
  35004. name: "Normal",
  35005. height: math.unit(8, "feet"),
  35006. default: true
  35007. },
  35008. ]
  35009. ))
  35010. characterMakers.push(() => makeCharacter(
  35011. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35012. {
  35013. front: {
  35014. height: math.unit(4, "feet"),
  35015. weight: math.unit(400, "lb"),
  35016. name: "Front",
  35017. image: {
  35018. source: "./media/characters/ryth/front.svg",
  35019. extra: 1920/1748,
  35020. bottom: 42/1962
  35021. }
  35022. },
  35023. back: {
  35024. height: math.unit(4, "feet"),
  35025. weight: math.unit(400, "lb"),
  35026. name: "Back",
  35027. image: {
  35028. source: "./media/characters/ryth/back.svg",
  35029. extra: 1897/1690,
  35030. bottom: 89/1986
  35031. }
  35032. },
  35033. mouth: {
  35034. height: math.unit(1.39, "feet"),
  35035. name: "Mouth",
  35036. image: {
  35037. source: "./media/characters/ryth/mouth.svg"
  35038. }
  35039. },
  35040. tailmaw: {
  35041. height: math.unit(1.23, "feet"),
  35042. name: "Tailmaw",
  35043. image: {
  35044. source: "./media/characters/ryth/tailmaw.svg"
  35045. }
  35046. },
  35047. goia: {
  35048. height: math.unit(4, "meters"),
  35049. weight: math.unit(10800, "lb"),
  35050. name: "Goia",
  35051. image: {
  35052. source: "./media/characters/ryth/goia.svg",
  35053. extra: 745/640,
  35054. bottom: 107/852
  35055. }
  35056. },
  35057. goiaFront: {
  35058. height: math.unit(4, "meters"),
  35059. weight: math.unit(10800, "lb"),
  35060. name: "Goia (Front)",
  35061. image: {
  35062. source: "./media/characters/ryth/goia-front.svg",
  35063. extra: 750/586,
  35064. bottom: 114/864
  35065. }
  35066. },
  35067. goiaMaw: {
  35068. height: math.unit(5.55, "feet"),
  35069. name: "Goia Maw",
  35070. image: {
  35071. source: "./media/characters/ryth/goia-maw.svg"
  35072. }
  35073. },
  35074. goiaForepaw: {
  35075. height: math.unit(3.5, "feet"),
  35076. name: "Goia Forepaw",
  35077. image: {
  35078. source: "./media/characters/ryth/goia-forepaw.svg"
  35079. }
  35080. },
  35081. goiaHindpaw: {
  35082. height: math.unit(5.55, "feet"),
  35083. name: "Goia Hindpaw",
  35084. image: {
  35085. source: "./media/characters/ryth/goia-hindpaw.svg"
  35086. }
  35087. },
  35088. },
  35089. [
  35090. {
  35091. name: "Normal",
  35092. height: math.unit(4, "feet"),
  35093. default: true
  35094. },
  35095. ]
  35096. ))
  35097. characterMakers.push(() => makeCharacter(
  35098. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35099. {
  35100. front: {
  35101. height: math.unit(7, "feet"),
  35102. weight: math.unit(180, "lb"),
  35103. name: "Front",
  35104. image: {
  35105. source: "./media/characters/necrolance/front.svg",
  35106. extra: 1062/947,
  35107. bottom: 41/1103
  35108. }
  35109. },
  35110. back: {
  35111. height: math.unit(7, "feet"),
  35112. weight: math.unit(180, "lb"),
  35113. name: "Back",
  35114. image: {
  35115. source: "./media/characters/necrolance/back.svg",
  35116. extra: 1045/984,
  35117. bottom: 14/1059
  35118. }
  35119. },
  35120. wing: {
  35121. height: math.unit(2.67, "feet"),
  35122. name: "Wing",
  35123. image: {
  35124. source: "./media/characters/necrolance/wing.svg"
  35125. }
  35126. },
  35127. },
  35128. [
  35129. {
  35130. name: "Normal",
  35131. height: math.unit(7, "feet"),
  35132. default: true
  35133. },
  35134. ]
  35135. ))
  35136. characterMakers.push(() => makeCharacter(
  35137. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35138. {
  35139. front: {
  35140. height: math.unit(76, "meters"),
  35141. weight: math.unit(30000, "tons"),
  35142. name: "Front",
  35143. image: {
  35144. source: "./media/characters/tyler/front.svg",
  35145. extra: 1640/1640,
  35146. bottom: 114/1754
  35147. }
  35148. },
  35149. },
  35150. [
  35151. {
  35152. name: "Macro",
  35153. height: math.unit(76, "meters"),
  35154. default: true
  35155. },
  35156. ]
  35157. ))
  35158. characterMakers.push(() => makeCharacter(
  35159. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35160. {
  35161. front: {
  35162. height: math.unit(4 + 11/12, "feet"),
  35163. weight: math.unit(132, "lb"),
  35164. name: "Front",
  35165. image: {
  35166. source: "./media/characters/icey/front.svg",
  35167. extra: 2750/2550,
  35168. bottom: 33/2783
  35169. }
  35170. },
  35171. back: {
  35172. height: math.unit(4 + 11/12, "feet"),
  35173. weight: math.unit(132, "lb"),
  35174. name: "Back",
  35175. image: {
  35176. source: "./media/characters/icey/back.svg",
  35177. extra: 2624/2481,
  35178. bottom: 35/2659
  35179. }
  35180. },
  35181. },
  35182. [
  35183. {
  35184. name: "Normal",
  35185. height: math.unit(4 + 11/12, "feet"),
  35186. default: true
  35187. },
  35188. ]
  35189. ))
  35190. characterMakers.push(() => makeCharacter(
  35191. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35192. {
  35193. front: {
  35194. height: math.unit(100, "feet"),
  35195. weight: math.unit(0, "lb"),
  35196. name: "Front",
  35197. image: {
  35198. source: "./media/characters/smile/front.svg",
  35199. extra: 2983/2912,
  35200. bottom: 162/3145
  35201. }
  35202. },
  35203. back: {
  35204. height: math.unit(100, "feet"),
  35205. weight: math.unit(0, "lb"),
  35206. name: "Back",
  35207. image: {
  35208. source: "./media/characters/smile/back.svg",
  35209. extra: 3143/3031,
  35210. bottom: 91/3234
  35211. }
  35212. },
  35213. head: {
  35214. height: math.unit(26.3, "feet"),
  35215. weight: math.unit(0, "lb"),
  35216. name: "Head",
  35217. image: {
  35218. source: "./media/characters/smile/head.svg"
  35219. }
  35220. },
  35221. collar: {
  35222. height: math.unit(5.3, "feet"),
  35223. weight: math.unit(0, "lb"),
  35224. name: "Collar",
  35225. image: {
  35226. source: "./media/characters/smile/collar.svg"
  35227. }
  35228. },
  35229. },
  35230. [
  35231. {
  35232. name: "Macro",
  35233. height: math.unit(100, "feet"),
  35234. default: true
  35235. },
  35236. ]
  35237. ))
  35238. characterMakers.push(() => makeCharacter(
  35239. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35240. {
  35241. dragon: {
  35242. height: math.unit(26, "feet"),
  35243. weight: math.unit(36, "tons"),
  35244. name: "Dragon",
  35245. image: {
  35246. source: "./media/characters/arimphae/dragon.svg",
  35247. extra: 1574/983,
  35248. bottom: 357/1931
  35249. }
  35250. },
  35251. drake: {
  35252. height: math.unit(9, "feet"),
  35253. weight: math.unit(1.5, "tons"),
  35254. name: "Drake",
  35255. image: {
  35256. source: "./media/characters/arimphae/drake.svg",
  35257. extra: 1120/925,
  35258. bottom: 435/1555
  35259. }
  35260. },
  35261. },
  35262. [
  35263. {
  35264. name: "Small",
  35265. height: math.unit(26*5/9, "feet")
  35266. },
  35267. {
  35268. name: "Normal",
  35269. height: math.unit(26, "feet"),
  35270. default: true
  35271. },
  35272. ]
  35273. ))
  35274. characterMakers.push(() => makeCharacter(
  35275. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35276. {
  35277. front: {
  35278. height: math.unit(8 + 9/12, "feet"),
  35279. name: "Front",
  35280. image: {
  35281. source: "./media/characters/xander/front.svg",
  35282. extra: 1237/974,
  35283. bottom: 94/1331
  35284. }
  35285. },
  35286. },
  35287. [
  35288. {
  35289. name: "Normal",
  35290. height: math.unit(8 + 9/12, "feet"),
  35291. default: true
  35292. },
  35293. {
  35294. name: "Gaze Grabber",
  35295. height: math.unit(13 + 8/12, "feet")
  35296. },
  35297. {
  35298. name: "Jaw Dropper",
  35299. height: math.unit(27, "feet")
  35300. },
  35301. {
  35302. name: "Show Stopper",
  35303. height: math.unit(136, "feet")
  35304. },
  35305. {
  35306. name: "Superstar",
  35307. height: math.unit(1.9e6, "miles")
  35308. },
  35309. ]
  35310. ))
  35311. characterMakers.push(() => makeCharacter(
  35312. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35313. {
  35314. side: {
  35315. height: math.unit(2100, "feet"),
  35316. name: "Side",
  35317. image: {
  35318. source: "./media/characters/osiris/side.svg",
  35319. extra: 1105/939,
  35320. bottom: 167/1272
  35321. }
  35322. },
  35323. },
  35324. [
  35325. {
  35326. name: "Macro",
  35327. height: math.unit(2100, "feet"),
  35328. default: true
  35329. },
  35330. ]
  35331. ))
  35332. characterMakers.push(() => makeCharacter(
  35333. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35334. {
  35335. front: {
  35336. height: math.unit(6 + 8/12, "feet"),
  35337. weight: math.unit(225, "lb"),
  35338. name: "Front",
  35339. image: {
  35340. source: "./media/characters/rhys-londe/front.svg",
  35341. extra: 2258/2141,
  35342. bottom: 188/2446
  35343. }
  35344. },
  35345. back: {
  35346. height: math.unit(6 + 8/12, "feet"),
  35347. weight: math.unit(225, "lb"),
  35348. name: "Back",
  35349. image: {
  35350. source: "./media/characters/rhys-londe/back.svg",
  35351. extra: 2237/2137,
  35352. bottom: 63/2300
  35353. }
  35354. },
  35355. frontNsfw: {
  35356. height: math.unit(6 + 8/12, "feet"),
  35357. weight: math.unit(225, "lb"),
  35358. name: "Front (NSFW)",
  35359. image: {
  35360. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35361. extra: 2258/2141,
  35362. bottom: 188/2446
  35363. }
  35364. },
  35365. backNsfw: {
  35366. height: math.unit(6 + 8/12, "feet"),
  35367. weight: math.unit(225, "lb"),
  35368. name: "Back (NSFW)",
  35369. image: {
  35370. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35371. extra: 2237/2137,
  35372. bottom: 63/2300
  35373. }
  35374. },
  35375. dick: {
  35376. height: math.unit(30, "inches"),
  35377. name: "Dick",
  35378. image: {
  35379. source: "./media/characters/rhys-londe/dick.svg"
  35380. }
  35381. },
  35382. maw: {
  35383. height: math.unit(1.6, "feet"),
  35384. name: "Maw",
  35385. image: {
  35386. source: "./media/characters/rhys-londe/maw.svg"
  35387. }
  35388. },
  35389. },
  35390. [
  35391. {
  35392. name: "Normal",
  35393. height: math.unit(6 + 8/12, "feet"),
  35394. default: true
  35395. },
  35396. ]
  35397. ))
  35398. characterMakers.push(() => makeCharacter(
  35399. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35400. {
  35401. front: {
  35402. height: math.unit(3 + 10/12, "feet"),
  35403. weight: math.unit(90, "lb"),
  35404. name: "Front",
  35405. image: {
  35406. source: "./media/characters/taivas-ensim/front.svg",
  35407. extra: 1327/1216,
  35408. bottom: 96/1423
  35409. }
  35410. },
  35411. back: {
  35412. height: math.unit(3 + 10/12, "feet"),
  35413. weight: math.unit(90, "lb"),
  35414. name: "Back",
  35415. image: {
  35416. source: "./media/characters/taivas-ensim/back.svg",
  35417. extra: 1355/1247,
  35418. bottom: 11/1366
  35419. }
  35420. },
  35421. frontNsfw: {
  35422. height: math.unit(3 + 10/12, "feet"),
  35423. weight: math.unit(90, "lb"),
  35424. name: "Front (NSFW)",
  35425. image: {
  35426. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35427. extra: 1327/1216,
  35428. bottom: 96/1423
  35429. }
  35430. },
  35431. backNsfw: {
  35432. height: math.unit(3 + 10/12, "feet"),
  35433. weight: math.unit(90, "lb"),
  35434. name: "Back (NSFW)",
  35435. image: {
  35436. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35437. extra: 1355/1247,
  35438. bottom: 11/1366
  35439. }
  35440. },
  35441. },
  35442. [
  35443. {
  35444. name: "Normal",
  35445. height: math.unit(3 + 10/12, "feet"),
  35446. default: true
  35447. },
  35448. ]
  35449. ))
  35450. characterMakers.push(() => makeCharacter(
  35451. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35452. {
  35453. front: {
  35454. height: math.unit(9 + 6/12, "feet"),
  35455. weight: math.unit(940, "lb"),
  35456. name: "Front",
  35457. image: {
  35458. source: "./media/characters/byliss/front.svg",
  35459. extra: 1327/1290,
  35460. bottom: 82/1409
  35461. }
  35462. },
  35463. back: {
  35464. height: math.unit(9 + 6/12, "feet"),
  35465. weight: math.unit(940, "lb"),
  35466. name: "Back",
  35467. image: {
  35468. source: "./media/characters/byliss/back.svg",
  35469. extra: 1376/1349,
  35470. bottom: 9/1385
  35471. }
  35472. },
  35473. frontNsfw: {
  35474. height: math.unit(9 + 6/12, "feet"),
  35475. weight: math.unit(940, "lb"),
  35476. name: "Front (NSFW)",
  35477. image: {
  35478. source: "./media/characters/byliss/front-nsfw.svg",
  35479. extra: 1327/1290,
  35480. bottom: 82/1409
  35481. }
  35482. },
  35483. backNsfw: {
  35484. height: math.unit(9 + 6/12, "feet"),
  35485. weight: math.unit(940, "lb"),
  35486. name: "Back (NSFW)",
  35487. image: {
  35488. source: "./media/characters/byliss/back-nsfw.svg",
  35489. extra: 1376/1349,
  35490. bottom: 9/1385
  35491. }
  35492. },
  35493. },
  35494. [
  35495. {
  35496. name: "Normal",
  35497. height: math.unit(9 + 6/12, "feet"),
  35498. default: true
  35499. },
  35500. ]
  35501. ))
  35502. characterMakers.push(() => makeCharacter(
  35503. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35504. {
  35505. front: {
  35506. height: math.unit(5 + 2/12, "feet"),
  35507. weight: math.unit(200, "lb"),
  35508. name: "Front",
  35509. image: {
  35510. source: "./media/characters/noraly/front.svg",
  35511. extra: 4985/4773,
  35512. bottom: 150/5135
  35513. }
  35514. },
  35515. full: {
  35516. height: math.unit(5 + 2/12, "feet"),
  35517. weight: math.unit(164, "lb"),
  35518. name: "Full",
  35519. image: {
  35520. source: "./media/characters/noraly/full.svg",
  35521. extra: 1114/1059,
  35522. bottom: 35/1149
  35523. }
  35524. },
  35525. fuller: {
  35526. height: math.unit(5 + 2/12, "feet"),
  35527. weight: math.unit(230, "lb"),
  35528. name: "Fuller",
  35529. image: {
  35530. source: "./media/characters/noraly/fuller.svg",
  35531. extra: 1114/1059,
  35532. bottom: 35/1149
  35533. }
  35534. },
  35535. fullest: {
  35536. height: math.unit(5 + 2/12, "feet"),
  35537. weight: math.unit(300, "lb"),
  35538. name: "Fullest",
  35539. image: {
  35540. source: "./media/characters/noraly/fullest.svg",
  35541. extra: 1114/1059,
  35542. bottom: 35/1149
  35543. }
  35544. },
  35545. },
  35546. [
  35547. {
  35548. name: "Normal",
  35549. height: math.unit(5 + 2/12, "feet"),
  35550. default: true
  35551. },
  35552. ]
  35553. ))
  35554. characterMakers.push(() => makeCharacter(
  35555. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35556. {
  35557. front: {
  35558. height: math.unit(5 + 2/12, "feet"),
  35559. weight: math.unit(210, "lb"),
  35560. name: "Front",
  35561. image: {
  35562. source: "./media/characters/pera/front.svg",
  35563. extra: 1560/1531,
  35564. bottom: 165/1725
  35565. }
  35566. },
  35567. back: {
  35568. height: math.unit(5 + 2/12, "feet"),
  35569. weight: math.unit(210, "lb"),
  35570. name: "Back",
  35571. image: {
  35572. source: "./media/characters/pera/back.svg",
  35573. extra: 1523/1493,
  35574. bottom: 152/1675
  35575. }
  35576. },
  35577. dick: {
  35578. height: math.unit(2.4, "feet"),
  35579. name: "Dick",
  35580. image: {
  35581. source: "./media/characters/pera/dick.svg"
  35582. }
  35583. },
  35584. },
  35585. [
  35586. {
  35587. name: "Normal",
  35588. height: math.unit(5 + 2/12, "feet"),
  35589. default: true
  35590. },
  35591. ]
  35592. ))
  35593. characterMakers.push(() => makeCharacter(
  35594. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35595. {
  35596. front: {
  35597. height: math.unit(12, "feet"),
  35598. weight: math.unit(3200, "lb"),
  35599. name: "Front",
  35600. image: {
  35601. source: "./media/characters/julian/front.svg",
  35602. extra: 2962/2701,
  35603. bottom: 184/3146
  35604. }
  35605. },
  35606. maw: {
  35607. height: math.unit(5.35, "feet"),
  35608. name: "Maw",
  35609. image: {
  35610. source: "./media/characters/julian/maw.svg"
  35611. }
  35612. },
  35613. paw: {
  35614. height: math.unit(3.07, "feet"),
  35615. name: "Paw",
  35616. image: {
  35617. source: "./media/characters/julian/paw.svg"
  35618. }
  35619. },
  35620. },
  35621. [
  35622. {
  35623. name: "Default",
  35624. height: math.unit(12, "feet"),
  35625. default: true
  35626. },
  35627. {
  35628. name: "Big",
  35629. height: math.unit(50, "feet")
  35630. },
  35631. {
  35632. name: "Really Big",
  35633. height: math.unit(1, "mile")
  35634. },
  35635. {
  35636. name: "Extremely Big",
  35637. height: math.unit(100, "miles")
  35638. },
  35639. {
  35640. name: "Planet Hugger",
  35641. height: math.unit(200, "megameters")
  35642. },
  35643. {
  35644. name: "Unreasonably Big",
  35645. height: math.unit(1e300, "meters")
  35646. },
  35647. ]
  35648. ))
  35649. characterMakers.push(() => makeCharacter(
  35650. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35651. {
  35652. solgooleo: {
  35653. height: math.unit(4, "meters"),
  35654. weight: math.unit(6000*1.5, "kg"),
  35655. volume: math.unit(6000, "liters"),
  35656. name: "Solgooleo",
  35657. image: {
  35658. source: "./media/characters/pi/solgooleo.svg",
  35659. extra: 388/331,
  35660. bottom: 29/417
  35661. }
  35662. },
  35663. },
  35664. [
  35665. {
  35666. name: "Normal",
  35667. height: math.unit(4, "meters"),
  35668. default: true
  35669. },
  35670. ]
  35671. ))
  35672. characterMakers.push(() => makeCharacter(
  35673. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35674. {
  35675. front: {
  35676. height: math.unit(8, "feet"),
  35677. weight: math.unit(4, "tons"),
  35678. name: "Front",
  35679. image: {
  35680. source: "./media/characters/shaun/front.svg",
  35681. extra: 503/495,
  35682. bottom: 20/523
  35683. }
  35684. },
  35685. back: {
  35686. height: math.unit(8, "feet"),
  35687. weight: math.unit(4, "tons"),
  35688. name: "Back",
  35689. image: {
  35690. source: "./media/characters/shaun/back.svg",
  35691. extra: 487/480,
  35692. bottom: 20/507
  35693. }
  35694. },
  35695. },
  35696. [
  35697. {
  35698. name: "Lorg",
  35699. height: math.unit(8, "feet"),
  35700. default: true
  35701. },
  35702. ]
  35703. ))
  35704. characterMakers.push(() => makeCharacter(
  35705. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35706. {
  35707. frontAnthro: {
  35708. height: math.unit(7, "feet"),
  35709. name: "Front",
  35710. image: {
  35711. source: "./media/characters/sini/front-anthro.svg",
  35712. extra: 726/678,
  35713. bottom: 35/761
  35714. },
  35715. form: "anthro",
  35716. default: true
  35717. },
  35718. backAnthro: {
  35719. height: math.unit(7, "feet"),
  35720. name: "Back",
  35721. image: {
  35722. source: "./media/characters/sini/back-anthro.svg",
  35723. extra: 743/701,
  35724. bottom: 12/755
  35725. },
  35726. form: "anthro",
  35727. },
  35728. frontAnthroNsfw: {
  35729. height: math.unit(7, "feet"),
  35730. name: "Front (NSFW)",
  35731. image: {
  35732. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35733. extra: 726/678,
  35734. bottom: 35/761
  35735. },
  35736. form: "anthro"
  35737. },
  35738. backAnthroNsfw: {
  35739. height: math.unit(7, "feet"),
  35740. name: "Back (NSFW)",
  35741. image: {
  35742. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35743. extra: 743/701,
  35744. bottom: 12/755
  35745. },
  35746. form: "anthro",
  35747. },
  35748. mawAnthro: {
  35749. height: math.unit(2.14, "feet"),
  35750. name: "Maw",
  35751. image: {
  35752. source: "./media/characters/sini/maw-anthro.svg"
  35753. },
  35754. form: "anthro"
  35755. },
  35756. dick: {
  35757. height: math.unit(1.45, "feet"),
  35758. name: "Dick",
  35759. image: {
  35760. source: "./media/characters/sini/dick-anthro.svg"
  35761. },
  35762. form: "anthro"
  35763. },
  35764. feral: {
  35765. height: math.unit(16, "feet"),
  35766. name: "Feral",
  35767. image: {
  35768. source: "./media/characters/sini/feral.svg",
  35769. extra: 814/605,
  35770. bottom: 11/825
  35771. },
  35772. form: "feral",
  35773. default: true
  35774. },
  35775. feralNsfw: {
  35776. height: math.unit(16, "feet"),
  35777. name: "Feral (NSFW)",
  35778. image: {
  35779. source: "./media/characters/sini/feral-nsfw.svg",
  35780. extra: 814/605,
  35781. bottom: 11/825
  35782. },
  35783. form: "feral"
  35784. },
  35785. mawFeral: {
  35786. height: math.unit(5.66, "feet"),
  35787. name: "Maw",
  35788. image: {
  35789. source: "./media/characters/sini/maw-feral.svg"
  35790. },
  35791. form: "feral",
  35792. },
  35793. pawFeral: {
  35794. height: math.unit(5.17, "feet"),
  35795. name: "Paw",
  35796. image: {
  35797. source: "./media/characters/sini/paw-feral.svg"
  35798. },
  35799. form: "feral",
  35800. },
  35801. rumpFeral: {
  35802. height: math.unit(13.11, "feet"),
  35803. name: "Rump",
  35804. image: {
  35805. source: "./media/characters/sini/rump-feral.svg"
  35806. },
  35807. form: "feral",
  35808. },
  35809. dickFeral: {
  35810. height: math.unit(1, "feet"),
  35811. name: "Dick",
  35812. image: {
  35813. source: "./media/characters/sini/dick-feral.svg"
  35814. },
  35815. form: "feral",
  35816. },
  35817. eyeFeral: {
  35818. height: math.unit(1.23, "feet"),
  35819. name: "Eye",
  35820. image: {
  35821. source: "./media/characters/sini/eye-feral.svg"
  35822. },
  35823. form: "feral",
  35824. },
  35825. },
  35826. [
  35827. {
  35828. name: "Normal",
  35829. height: math.unit(7, "feet"),
  35830. default: true,
  35831. form: "anthro"
  35832. },
  35833. {
  35834. name: "Normal",
  35835. height: math.unit(16, "feet"),
  35836. default: true,
  35837. form: "feral"
  35838. },
  35839. ],
  35840. {
  35841. "anthro": {
  35842. name: "Anthro",
  35843. default: true
  35844. },
  35845. "feral": {
  35846. name: "Feral",
  35847. }
  35848. }
  35849. ))
  35850. characterMakers.push(() => makeCharacter(
  35851. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35852. {
  35853. side: {
  35854. height: math.unit(47.2, "meters"),
  35855. weight: math.unit(10000, "tons"),
  35856. name: "Side",
  35857. image: {
  35858. source: "./media/characters/raylldo/side.svg",
  35859. extra: 2363/642,
  35860. bottom: 221/2584
  35861. }
  35862. },
  35863. top: {
  35864. height: math.unit(240, "meters"),
  35865. weight: math.unit(10000, "tons"),
  35866. name: "Top",
  35867. image: {
  35868. source: "./media/characters/raylldo/top.svg"
  35869. }
  35870. },
  35871. bottom: {
  35872. height: math.unit(240, "meters"),
  35873. weight: math.unit(10000, "tons"),
  35874. name: "Bottom",
  35875. image: {
  35876. source: "./media/characters/raylldo/bottom.svg"
  35877. }
  35878. },
  35879. head: {
  35880. height: math.unit(38.6, "meters"),
  35881. name: "Head",
  35882. image: {
  35883. source: "./media/characters/raylldo/head.svg",
  35884. extra: 1335/1112,
  35885. bottom: 0/1335
  35886. }
  35887. },
  35888. maw: {
  35889. height: math.unit(16.37, "meters"),
  35890. name: "Maw",
  35891. image: {
  35892. source: "./media/characters/raylldo/maw.svg",
  35893. extra: 883/660,
  35894. bottom: 0/883
  35895. },
  35896. extraAttributes: {
  35897. preyCapacity: {
  35898. name: "Capacity",
  35899. power: 3,
  35900. type: "volume",
  35901. base: math.unit(1000, "people")
  35902. },
  35903. tongueSize: {
  35904. name: "Tongue Size",
  35905. power: 2,
  35906. type: "area",
  35907. base: math.unit(21, "m^2")
  35908. }
  35909. }
  35910. },
  35911. forepaw: {
  35912. height: math.unit(18, "meters"),
  35913. name: "Forepaw",
  35914. image: {
  35915. source: "./media/characters/raylldo/forepaw.svg"
  35916. }
  35917. },
  35918. hindpaw: {
  35919. height: math.unit(23, "meters"),
  35920. name: "Hindpaw",
  35921. image: {
  35922. source: "./media/characters/raylldo/hindpaw.svg"
  35923. }
  35924. },
  35925. genitals: {
  35926. height: math.unit(42, "meters"),
  35927. name: "Genitals",
  35928. image: {
  35929. source: "./media/characters/raylldo/genitals.svg"
  35930. }
  35931. },
  35932. },
  35933. [
  35934. {
  35935. name: "Normal",
  35936. height: math.unit(47.2, "meters"),
  35937. default: true
  35938. },
  35939. ]
  35940. ))
  35941. characterMakers.push(() => makeCharacter(
  35942. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35943. {
  35944. anthroFront: {
  35945. height: math.unit(9, "feet"),
  35946. weight: math.unit(600, "lb"),
  35947. name: "Anthro (Front)",
  35948. image: {
  35949. source: "./media/characters/glint/anthro-front.svg",
  35950. extra: 1097/1018,
  35951. bottom: 28/1125
  35952. }
  35953. },
  35954. anthroBack: {
  35955. height: math.unit(9, "feet"),
  35956. weight: math.unit(600, "lb"),
  35957. name: "Anthro (Back)",
  35958. image: {
  35959. source: "./media/characters/glint/anthro-back.svg",
  35960. extra: 1154/997,
  35961. bottom: 36/1190
  35962. }
  35963. },
  35964. feral: {
  35965. height: math.unit(11, "feet"),
  35966. weight: math.unit(50000, "lb"),
  35967. name: "Feral",
  35968. image: {
  35969. source: "./media/characters/glint/feral.svg",
  35970. extra: 3035/1585,
  35971. bottom: 1169/4204
  35972. }
  35973. },
  35974. dickAnthro: {
  35975. height: math.unit(0.7, "meters"),
  35976. name: "Dick (Anthro)",
  35977. image: {
  35978. source: "./media/characters/glint/dick-anthro.svg"
  35979. }
  35980. },
  35981. dickFeral: {
  35982. height: math.unit(2.65, "meters"),
  35983. name: "Dick (Feral)",
  35984. image: {
  35985. source: "./media/characters/glint/dick-feral.svg"
  35986. }
  35987. },
  35988. slitHidden: {
  35989. height: math.unit(5.85, "meters"),
  35990. name: "Slit (Hidden)",
  35991. image: {
  35992. source: "./media/characters/glint/slit-hidden.svg"
  35993. }
  35994. },
  35995. slitErect: {
  35996. height: math.unit(5.85, "meters"),
  35997. name: "Slit (Erect)",
  35998. image: {
  35999. source: "./media/characters/glint/slit-erect.svg"
  36000. }
  36001. },
  36002. mawAnthro: {
  36003. height: math.unit(0.63, "meters"),
  36004. name: "Maw (Anthro)",
  36005. image: {
  36006. source: "./media/characters/glint/maw.svg"
  36007. }
  36008. },
  36009. mawFeral: {
  36010. height: math.unit(2.89, "meters"),
  36011. name: "Maw (Feral)",
  36012. image: {
  36013. source: "./media/characters/glint/maw.svg"
  36014. }
  36015. },
  36016. },
  36017. [
  36018. {
  36019. name: "Normal",
  36020. height: math.unit(9, "feet"),
  36021. default: true
  36022. },
  36023. ]
  36024. ))
  36025. characterMakers.push(() => makeCharacter(
  36026. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36027. {
  36028. side: {
  36029. height: math.unit(15, "feet"),
  36030. weight: math.unit(5000, "kg"),
  36031. name: "Side",
  36032. image: {
  36033. source: "./media/characters/kairne/side.svg",
  36034. extra: 979/811,
  36035. bottom: 13/992
  36036. }
  36037. },
  36038. front: {
  36039. height: math.unit(15, "feet"),
  36040. weight: math.unit(5000, "kg"),
  36041. name: "Front",
  36042. image: {
  36043. source: "./media/characters/kairne/front.svg",
  36044. extra: 908/814,
  36045. bottom: 26/934
  36046. }
  36047. },
  36048. sideNsfw: {
  36049. height: math.unit(15, "feet"),
  36050. weight: math.unit(5000, "kg"),
  36051. name: "Side (NSFW)",
  36052. image: {
  36053. source: "./media/characters/kairne/side-nsfw.svg",
  36054. extra: 979/811,
  36055. bottom: 13/992
  36056. }
  36057. },
  36058. frontNsfw: {
  36059. height: math.unit(15, "feet"),
  36060. weight: math.unit(5000, "kg"),
  36061. name: "Front (NSFW)",
  36062. image: {
  36063. source: "./media/characters/kairne/front-nsfw.svg",
  36064. extra: 908/814,
  36065. bottom: 26/934
  36066. }
  36067. },
  36068. dickCaged: {
  36069. height: math.unit(0.65, "meters"),
  36070. name: "Dick-caged",
  36071. image: {
  36072. source: "./media/characters/kairne/dick-caged.svg"
  36073. }
  36074. },
  36075. dick: {
  36076. height: math.unit(0.79, "meters"),
  36077. name: "Dick",
  36078. image: {
  36079. source: "./media/characters/kairne/dick.svg"
  36080. }
  36081. },
  36082. genitals: {
  36083. height: math.unit(1.29, "meters"),
  36084. name: "Genitals",
  36085. image: {
  36086. source: "./media/characters/kairne/genitals.svg"
  36087. }
  36088. },
  36089. maw: {
  36090. height: math.unit(1.73, "meters"),
  36091. name: "Maw",
  36092. image: {
  36093. source: "./media/characters/kairne/maw.svg"
  36094. }
  36095. },
  36096. },
  36097. [
  36098. {
  36099. name: "Normal",
  36100. height: math.unit(15, "feet"),
  36101. default: true
  36102. },
  36103. ]
  36104. ))
  36105. characterMakers.push(() => makeCharacter(
  36106. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36107. {
  36108. front: {
  36109. height: math.unit(5 + 8/12, "feet"),
  36110. weight: math.unit(139, "lb"),
  36111. name: "Front",
  36112. image: {
  36113. source: "./media/characters/biscuit-jackal/front.svg",
  36114. extra: 2106/1961,
  36115. bottom: 58/2164
  36116. }
  36117. },
  36118. back: {
  36119. height: math.unit(5 + 8/12, "feet"),
  36120. weight: math.unit(139, "lb"),
  36121. name: "Back",
  36122. image: {
  36123. source: "./media/characters/biscuit-jackal/back.svg",
  36124. extra: 2132/1976,
  36125. bottom: 57/2189
  36126. }
  36127. },
  36128. werejackal: {
  36129. height: math.unit(6 + 3/12, "feet"),
  36130. weight: math.unit(188, "lb"),
  36131. name: "Werejackal",
  36132. image: {
  36133. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36134. extra: 2373/2178,
  36135. bottom: 53/2426
  36136. }
  36137. },
  36138. },
  36139. [
  36140. {
  36141. name: "Normal",
  36142. height: math.unit(5 + 8/12, "feet"),
  36143. default: true
  36144. },
  36145. ]
  36146. ))
  36147. characterMakers.push(() => makeCharacter(
  36148. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36149. {
  36150. front: {
  36151. height: math.unit(140, "cm"),
  36152. weight: math.unit(45, "kg"),
  36153. name: "Front",
  36154. image: {
  36155. source: "./media/characters/tayra-white/front.svg",
  36156. extra: 2229/2192,
  36157. bottom: 75/2304
  36158. }
  36159. },
  36160. },
  36161. [
  36162. {
  36163. name: "Normal",
  36164. height: math.unit(140, "cm"),
  36165. default: true
  36166. },
  36167. ]
  36168. ))
  36169. characterMakers.push(() => makeCharacter(
  36170. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36171. {
  36172. front: {
  36173. height: math.unit(4 + 5/12, "feet"),
  36174. name: "Front",
  36175. image: {
  36176. source: "./media/characters/scoop/front.svg",
  36177. extra: 1257/1136,
  36178. bottom: 69/1326
  36179. }
  36180. },
  36181. back: {
  36182. height: math.unit(4 + 5/12, "feet"),
  36183. name: "Back",
  36184. image: {
  36185. source: "./media/characters/scoop/back.svg",
  36186. extra: 1321/1152,
  36187. bottom: 32/1353
  36188. }
  36189. },
  36190. maw: {
  36191. height: math.unit(0.68, "feet"),
  36192. name: "Maw",
  36193. image: {
  36194. source: "./media/characters/scoop/maw.svg"
  36195. }
  36196. },
  36197. },
  36198. [
  36199. {
  36200. name: "Really Small",
  36201. height: math.unit(1, "mm")
  36202. },
  36203. {
  36204. name: "Micro",
  36205. height: math.unit(1, "inch")
  36206. },
  36207. {
  36208. name: "Normal",
  36209. height: math.unit(4 + 5/12, "feet"),
  36210. default: true
  36211. },
  36212. {
  36213. name: "Macro",
  36214. height: math.unit(200, "feet")
  36215. },
  36216. {
  36217. name: "Megamacro",
  36218. height: math.unit(3240, "feet")
  36219. },
  36220. {
  36221. name: "Teramacro",
  36222. height: math.unit(2500, "miles")
  36223. },
  36224. ]
  36225. ))
  36226. characterMakers.push(() => makeCharacter(
  36227. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36228. {
  36229. front: {
  36230. height: math.unit(15 + 7/12, "feet"),
  36231. weight: math.unit(1150, "tons"),
  36232. name: "Front",
  36233. image: {
  36234. source: "./media/characters/saphinara/front.svg",
  36235. extra: 1837/1643,
  36236. bottom: 84/1921
  36237. },
  36238. form: "normal",
  36239. default: true
  36240. },
  36241. side: {
  36242. height: math.unit(15 + 7/12, "feet"),
  36243. weight: math.unit(1150, "tons"),
  36244. name: "Side",
  36245. image: {
  36246. source: "./media/characters/saphinara/side.svg",
  36247. extra: 605/547,
  36248. bottom: 6/611
  36249. },
  36250. form: "normal"
  36251. },
  36252. back: {
  36253. height: math.unit(15 + 7/12, "feet"),
  36254. weight: math.unit(1150, "tons"),
  36255. name: "Back",
  36256. image: {
  36257. source: "./media/characters/saphinara/back.svg",
  36258. extra: 591/531,
  36259. bottom: 13/604
  36260. },
  36261. form: "normal"
  36262. },
  36263. frontTail: {
  36264. height: math.unit(15 + 7/12, "feet"),
  36265. weight: math.unit(1150, "tons"),
  36266. name: "Front (Full Tail)",
  36267. image: {
  36268. source: "./media/characters/saphinara/front-tail.svg",
  36269. extra: 2256/1630,
  36270. bottom: 261/2517
  36271. },
  36272. form: "normal"
  36273. },
  36274. insides: {
  36275. height: math.unit(11.92, "feet"),
  36276. name: "Insides",
  36277. image: {
  36278. source: "./media/characters/saphinara/insides.svg"
  36279. },
  36280. form: "normal"
  36281. },
  36282. head: {
  36283. height: math.unit(4.17, "feet"),
  36284. name: "Head",
  36285. image: {
  36286. source: "./media/characters/saphinara/head.svg"
  36287. },
  36288. form: "normal"
  36289. },
  36290. tongue: {
  36291. height: math.unit(4.60, "feet"),
  36292. name: "Tongue",
  36293. image: {
  36294. source: "./media/characters/saphinara/tongue.svg"
  36295. },
  36296. form: "normal"
  36297. },
  36298. headEnraged: {
  36299. height: math.unit(5.55, "feet"),
  36300. name: "Head (Enraged)",
  36301. image: {
  36302. source: "./media/characters/saphinara/head-enraged.svg"
  36303. },
  36304. form: "normal"
  36305. },
  36306. wings: {
  36307. height: math.unit(11.95, "feet"),
  36308. name: "Wings",
  36309. image: {
  36310. source: "./media/characters/saphinara/wings.svg"
  36311. },
  36312. form: "normal"
  36313. },
  36314. feathers: {
  36315. height: math.unit(8.92, "feet"),
  36316. name: "Feathers",
  36317. image: {
  36318. source: "./media/characters/saphinara/feathers.svg"
  36319. },
  36320. form: "normal"
  36321. },
  36322. shackles: {
  36323. height: math.unit(2, "feet"),
  36324. name: "Shackles",
  36325. image: {
  36326. source: "./media/characters/saphinara/shackles.svg"
  36327. },
  36328. form: "normal"
  36329. },
  36330. eyes: {
  36331. height: math.unit(1.331, "feet"),
  36332. name: "Eyes",
  36333. image: {
  36334. source: "./media/characters/saphinara/eyes.svg"
  36335. },
  36336. form: "normal"
  36337. },
  36338. eyesEnraged: {
  36339. height: math.unit(1.331, "feet"),
  36340. name: "Eyes (Enraged)",
  36341. image: {
  36342. source: "./media/characters/saphinara/eyes-enraged.svg"
  36343. },
  36344. form: "normal"
  36345. },
  36346. trueFormSide: {
  36347. height: math.unit(200, "feet"),
  36348. weight: math.unit(1e7, "tons"),
  36349. name: "Side",
  36350. image: {
  36351. source: "./media/characters/saphinara/true-form-side.svg",
  36352. extra: 1399/770,
  36353. bottom: 97/1496
  36354. },
  36355. form: "true-form",
  36356. default: true
  36357. },
  36358. trueFormMaw: {
  36359. height: math.unit(71.5, "feet"),
  36360. name: "Maw",
  36361. image: {
  36362. source: "./media/characters/saphinara/true-form-maw.svg",
  36363. extra: 2302/1453,
  36364. bottom: 0/2302
  36365. },
  36366. form: "true-form"
  36367. },
  36368. meowberusSide: {
  36369. height: math.unit(75, "feet"),
  36370. weight: math.unit(180000, "kg"),
  36371. preyCapacity: math.unit(50000, "people"),
  36372. name: "Side",
  36373. image: {
  36374. source: "./media/characters/saphinara/meowberus-side.svg",
  36375. extra: 1400/711,
  36376. bottom: 126/1526
  36377. },
  36378. form: "meowberus",
  36379. extraAttributes: {
  36380. "pawArea": {
  36381. name: "Paw Size",
  36382. power: 2,
  36383. type: "area",
  36384. base: math.unit(35, "m^2")
  36385. }
  36386. }
  36387. },
  36388. },
  36389. [
  36390. {
  36391. name: "Normal",
  36392. height: math.unit(15 + 7/12, "feet"),
  36393. default: true,
  36394. form: "normal"
  36395. },
  36396. {
  36397. name: "Angry",
  36398. height: math.unit(30 + 6/12, "feet"),
  36399. form: "normal"
  36400. },
  36401. {
  36402. name: "Enraged",
  36403. height: math.unit(102 + 1/12, "feet"),
  36404. form: "normal"
  36405. },
  36406. {
  36407. name: "True",
  36408. height: math.unit(200, "feet"),
  36409. default: true,
  36410. form: "true-form"
  36411. },
  36412. {
  36413. name: "Normal",
  36414. height: math.unit(75, "feet"),
  36415. default: true,
  36416. form: "meowberus"
  36417. },
  36418. ],
  36419. {
  36420. "normal": {
  36421. name: "Normal",
  36422. default: true
  36423. },
  36424. "true-form": {
  36425. name: "True Form"
  36426. },
  36427. "meowberus": {
  36428. name: "Meowberus",
  36429. },
  36430. }
  36431. ))
  36432. characterMakers.push(() => makeCharacter(
  36433. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36434. {
  36435. front: {
  36436. height: math.unit(6 + 8/12, "feet"),
  36437. weight: math.unit(300, "lb"),
  36438. name: "Front",
  36439. image: {
  36440. source: "./media/characters/jrain/front.svg",
  36441. extra: 3039/2865,
  36442. bottom: 399/3438
  36443. }
  36444. },
  36445. back: {
  36446. height: math.unit(6 + 8/12, "feet"),
  36447. weight: math.unit(300, "lb"),
  36448. name: "Back",
  36449. image: {
  36450. source: "./media/characters/jrain/back.svg",
  36451. extra: 3089/2938,
  36452. bottom: 172/3261
  36453. }
  36454. },
  36455. head: {
  36456. height: math.unit(2.14, "feet"),
  36457. name: "Head",
  36458. image: {
  36459. source: "./media/characters/jrain/head.svg"
  36460. }
  36461. },
  36462. maw: {
  36463. height: math.unit(1.77, "feet"),
  36464. name: "Maw",
  36465. image: {
  36466. source: "./media/characters/jrain/maw.svg"
  36467. }
  36468. },
  36469. leftHand: {
  36470. height: math.unit(1.1, "feet"),
  36471. name: "Left Hand",
  36472. image: {
  36473. source: "./media/characters/jrain/left-hand.svg"
  36474. }
  36475. },
  36476. rightHand: {
  36477. height: math.unit(1.1, "feet"),
  36478. name: "Right Hand",
  36479. image: {
  36480. source: "./media/characters/jrain/right-hand.svg"
  36481. }
  36482. },
  36483. eye: {
  36484. height: math.unit(0.35, "feet"),
  36485. name: "Eye",
  36486. image: {
  36487. source: "./media/characters/jrain/eye.svg"
  36488. }
  36489. },
  36490. },
  36491. [
  36492. {
  36493. name: "Normal",
  36494. height: math.unit(6 + 8/12, "feet"),
  36495. default: true
  36496. },
  36497. {
  36498. name: "Casually Large",
  36499. height: math.unit(25, "feet")
  36500. },
  36501. {
  36502. name: "Giant",
  36503. height: math.unit(100, "feet")
  36504. },
  36505. {
  36506. name: "Kaiju",
  36507. height: math.unit(300, "feet")
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36513. {
  36514. dragon: {
  36515. height: math.unit(5, "meters"),
  36516. name: "Dragon",
  36517. image: {
  36518. source: "./media/characters/sabrina/dragon.svg",
  36519. extra: 3670 / 2365,
  36520. bottom: 333 / 4003
  36521. }
  36522. },
  36523. gryphon: {
  36524. height: math.unit(3, "meters"),
  36525. name: "Gryphon",
  36526. image: {
  36527. source: "./media/characters/sabrina/gryphon.svg",
  36528. extra: 1576 / 945,
  36529. bottom: 71 / 1647
  36530. }
  36531. },
  36532. snake: {
  36533. height: math.unit(12, "meters"),
  36534. name: "Snake",
  36535. image: {
  36536. source: "./media/characters/sabrina/snake.svg",
  36537. extra: 1758 / 1320,
  36538. bottom: 186 / 1944
  36539. }
  36540. },
  36541. collar: {
  36542. height: math.unit(1.86, "meters"),
  36543. name: "Collar",
  36544. image: {
  36545. source: "./media/characters/sabrina/collar.svg"
  36546. }
  36547. },
  36548. eye: {
  36549. height: math.unit(0.53, "meters"),
  36550. name: "Eye",
  36551. image: {
  36552. source: "./media/characters/sabrina/eye.svg"
  36553. }
  36554. },
  36555. foot: {
  36556. height: math.unit(1.86, "meters"),
  36557. name: "Foot",
  36558. image: {
  36559. source: "./media/characters/sabrina/foot.svg"
  36560. }
  36561. },
  36562. hand: {
  36563. height: math.unit(1.32, "meters"),
  36564. name: "Hand",
  36565. image: {
  36566. source: "./media/characters/sabrina/hand.svg"
  36567. }
  36568. },
  36569. head: {
  36570. height: math.unit(2.44, "meters"),
  36571. name: "Head",
  36572. image: {
  36573. source: "./media/characters/sabrina/head.svg"
  36574. }
  36575. },
  36576. headAngry: {
  36577. height: math.unit(2.44, "meters"),
  36578. name: "Head (Angry))",
  36579. image: {
  36580. source: "./media/characters/sabrina/head-angry.svg"
  36581. }
  36582. },
  36583. maw: {
  36584. height: math.unit(1.65, "meters"),
  36585. name: "Maw",
  36586. image: {
  36587. source: "./media/characters/sabrina/maw.svg"
  36588. }
  36589. },
  36590. spikes: {
  36591. height: math.unit(1.69, "meters"),
  36592. name: "Spikes",
  36593. image: {
  36594. source: "./media/characters/sabrina/spikes.svg"
  36595. }
  36596. },
  36597. stomach: {
  36598. height: math.unit(1.15, "meters"),
  36599. name: "Stomach",
  36600. image: {
  36601. source: "./media/characters/sabrina/stomach.svg"
  36602. }
  36603. },
  36604. tongue: {
  36605. height: math.unit(1.27, "meters"),
  36606. name: "Tongue",
  36607. image: {
  36608. source: "./media/characters/sabrina/tongue.svg"
  36609. }
  36610. },
  36611. wingDorsal: {
  36612. height: math.unit(4.85, "meters"),
  36613. name: "Wing (Dorsal)",
  36614. image: {
  36615. source: "./media/characters/sabrina/wing-dorsal.svg"
  36616. }
  36617. },
  36618. wingVentral: {
  36619. height: math.unit(4.85, "meters"),
  36620. name: "Wing (Ventral)",
  36621. image: {
  36622. source: "./media/characters/sabrina/wing-ventral.svg"
  36623. }
  36624. },
  36625. },
  36626. [
  36627. {
  36628. name: "Normal",
  36629. height: math.unit(5, "meters"),
  36630. default: true
  36631. },
  36632. ]
  36633. ))
  36634. characterMakers.push(() => makeCharacter(
  36635. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36636. {
  36637. frontMaid: {
  36638. height: math.unit(5 + 5/12, "feet"),
  36639. weight: math.unit(130, "lb"),
  36640. name: "Front (Maid)",
  36641. image: {
  36642. source: "./media/characters/midnight-tales/front-maid.svg",
  36643. extra: 489/454,
  36644. bottom: 61/550
  36645. }
  36646. },
  36647. frontFormal: {
  36648. height: math.unit(5 + 5/12, "feet"),
  36649. weight: math.unit(130, "lb"),
  36650. name: "Front (Formal)",
  36651. image: {
  36652. source: "./media/characters/midnight-tales/front-formal.svg",
  36653. extra: 489/454,
  36654. bottom: 61/550
  36655. }
  36656. },
  36657. back: {
  36658. height: math.unit(5 + 5/12, "feet"),
  36659. weight: math.unit(130, "lb"),
  36660. name: "Back",
  36661. image: {
  36662. source: "./media/characters/midnight-tales/back.svg",
  36663. extra: 498/456,
  36664. bottom: 33/531
  36665. }
  36666. },
  36667. frontBeast: {
  36668. height: math.unit(40, "feet"),
  36669. weight: math.unit(64000, "lb"),
  36670. name: "Front (Beast)",
  36671. image: {
  36672. source: "./media/characters/midnight-tales/front-beast.svg",
  36673. extra: 927/860,
  36674. bottom: 53/980
  36675. }
  36676. },
  36677. backBeast: {
  36678. height: math.unit(40, "feet"),
  36679. weight: math.unit(64000, "lb"),
  36680. name: "Back (Beast)",
  36681. image: {
  36682. source: "./media/characters/midnight-tales/back-beast.svg",
  36683. extra: 929/855,
  36684. bottom: 16/945
  36685. }
  36686. },
  36687. footBeast: {
  36688. height: math.unit(6.7, "feet"),
  36689. name: "Foot (Beast)",
  36690. image: {
  36691. source: "./media/characters/midnight-tales/foot-beast.svg"
  36692. }
  36693. },
  36694. headBeast: {
  36695. height: math.unit(8, "feet"),
  36696. name: "Head (Beast)",
  36697. image: {
  36698. source: "./media/characters/midnight-tales/head-beast.svg"
  36699. }
  36700. },
  36701. },
  36702. [
  36703. {
  36704. name: "Normal",
  36705. height: math.unit(5 + 5 / 12, "feet"),
  36706. default: true
  36707. },
  36708. {
  36709. name: "Macro",
  36710. height: math.unit(25, "feet")
  36711. },
  36712. ]
  36713. ))
  36714. characterMakers.push(() => makeCharacter(
  36715. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36716. {
  36717. front: {
  36718. height: math.unit(5 + 10/12, "feet"),
  36719. name: "Front",
  36720. image: {
  36721. source: "./media/characters/argon/front.svg",
  36722. extra: 2009/1935,
  36723. bottom: 118/2127
  36724. }
  36725. },
  36726. back: {
  36727. height: math.unit(5 + 10/12, "feet"),
  36728. name: "Back",
  36729. image: {
  36730. source: "./media/characters/argon/back.svg",
  36731. extra: 2047/1992,
  36732. bottom: 20/2067
  36733. }
  36734. },
  36735. frontDressed: {
  36736. height: math.unit(5 + 10/12, "feet"),
  36737. name: "Front (Dressed)",
  36738. image: {
  36739. source: "./media/characters/argon/front-dressed.svg",
  36740. extra: 2009/1935,
  36741. bottom: 118/2127
  36742. }
  36743. },
  36744. },
  36745. [
  36746. {
  36747. name: "Normal",
  36748. height: math.unit(5 + 10/12, "feet"),
  36749. default: true
  36750. },
  36751. ]
  36752. ))
  36753. characterMakers.push(() => makeCharacter(
  36754. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36755. {
  36756. front: {
  36757. height: math.unit(8 + 6/12, "feet"),
  36758. weight: math.unit(1150, "lb"),
  36759. name: "Front",
  36760. image: {
  36761. source: "./media/characters/kichi/front.svg",
  36762. extra: 1267/1164,
  36763. bottom: 61/1328
  36764. }
  36765. },
  36766. back: {
  36767. height: math.unit(8 + 6/12, "feet"),
  36768. weight: math.unit(1150, "lb"),
  36769. name: "Back",
  36770. image: {
  36771. source: "./media/characters/kichi/back.svg",
  36772. extra: 1273/1166,
  36773. bottom: 33/1306
  36774. }
  36775. },
  36776. },
  36777. [
  36778. {
  36779. name: "Normal",
  36780. height: math.unit(8 + 6/12, "feet"),
  36781. default: true
  36782. },
  36783. ]
  36784. ))
  36785. characterMakers.push(() => makeCharacter(
  36786. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36787. {
  36788. front: {
  36789. height: math.unit(6, "feet"),
  36790. weight: math.unit(210, "lb"),
  36791. name: "Front",
  36792. image: {
  36793. source: "./media/characters/manetel-greyscale/front.svg",
  36794. extra: 350/312,
  36795. bottom: 8/358
  36796. }
  36797. },
  36798. },
  36799. [
  36800. {
  36801. name: "Micro",
  36802. height: math.unit(2, "inches")
  36803. },
  36804. {
  36805. name: "Normal",
  36806. height: math.unit(6, "feet"),
  36807. default: true
  36808. },
  36809. {
  36810. name: "Minimacro",
  36811. height: math.unit(17, "feet")
  36812. },
  36813. {
  36814. name: "Macro",
  36815. height: math.unit(117, "feet")
  36816. },
  36817. ]
  36818. ))
  36819. characterMakers.push(() => makeCharacter(
  36820. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36821. {
  36822. side: {
  36823. height: math.unit(5 + 1/12, "feet"),
  36824. weight: math.unit(418, "lb"),
  36825. name: "Side",
  36826. image: {
  36827. source: "./media/characters/softpurr/side.svg",
  36828. extra: 1993/1945,
  36829. bottom: 134/2127
  36830. }
  36831. },
  36832. front: {
  36833. height: math.unit(5 + 1/12, "feet"),
  36834. weight: math.unit(418, "lb"),
  36835. name: "Front",
  36836. image: {
  36837. source: "./media/characters/softpurr/front.svg",
  36838. extra: 1950/1856,
  36839. bottom: 174/2124
  36840. }
  36841. },
  36842. paw: {
  36843. height: math.unit(1, "feet"),
  36844. name: "Paw",
  36845. image: {
  36846. source: "./media/characters/softpurr/paw.svg"
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "Normal",
  36853. height: math.unit(5 + 1/12, "feet"),
  36854. default: true
  36855. },
  36856. ]
  36857. ))
  36858. characterMakers.push(() => makeCharacter(
  36859. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36860. {
  36861. front: {
  36862. height: math.unit(260, "meters"),
  36863. name: "Front",
  36864. image: {
  36865. source: "./media/characters/anahita/front.svg",
  36866. extra: 665/635,
  36867. bottom: 89/754
  36868. }
  36869. },
  36870. },
  36871. [
  36872. {
  36873. name: "Macro",
  36874. height: math.unit(260, "meters"),
  36875. default: true
  36876. },
  36877. ]
  36878. ))
  36879. characterMakers.push(() => makeCharacter(
  36880. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36881. {
  36882. front: {
  36883. height: math.unit(4 + 10/12, "feet"),
  36884. weight: math.unit(160, "lb"),
  36885. name: "Front",
  36886. image: {
  36887. source: "./media/characters/chip-mouse/front.svg",
  36888. extra: 3528/3408,
  36889. bottom: 0/3528
  36890. }
  36891. },
  36892. frontNsfw: {
  36893. height: math.unit(4 + 10/12, "feet"),
  36894. weight: math.unit(160, "lb"),
  36895. name: "Front (NSFW)",
  36896. image: {
  36897. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36898. extra: 3528/3408,
  36899. bottom: 0/3528
  36900. }
  36901. },
  36902. },
  36903. [
  36904. {
  36905. name: "Normal",
  36906. height: math.unit(4 + 10/12, "feet"),
  36907. default: true
  36908. },
  36909. ]
  36910. ))
  36911. characterMakers.push(() => makeCharacter(
  36912. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36913. {
  36914. side: {
  36915. height: math.unit(10, "feet"),
  36916. weight: math.unit(14000, "lb"),
  36917. name: "Side",
  36918. image: {
  36919. source: "./media/characters/kremm/side.svg",
  36920. extra: 1390/1053,
  36921. bottom: 90/1480
  36922. }
  36923. },
  36924. gut: {
  36925. height: math.unit(5.8, "feet"),
  36926. name: "Gut",
  36927. image: {
  36928. source: "./media/characters/kremm/gut.svg"
  36929. }
  36930. },
  36931. ass: {
  36932. height: math.unit(6.1, "feet"),
  36933. name: "Ass",
  36934. image: {
  36935. source: "./media/characters/kremm/ass.svg"
  36936. }
  36937. },
  36938. jaws: {
  36939. height: math.unit(2.2, "feet"),
  36940. name: "Jaws",
  36941. image: {
  36942. source: "./media/characters/kremm/jaws.svg"
  36943. }
  36944. },
  36945. dick: {
  36946. height: math.unit(4.26, "feet"),
  36947. name: "Dick",
  36948. image: {
  36949. source: "./media/characters/kremm/dick.svg"
  36950. }
  36951. },
  36952. },
  36953. [
  36954. {
  36955. name: "Normal",
  36956. height: math.unit(10, "feet"),
  36957. default: true
  36958. },
  36959. ]
  36960. ))
  36961. characterMakers.push(() => makeCharacter(
  36962. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36963. {
  36964. front: {
  36965. height: math.unit(30, "stories"),
  36966. name: "Front",
  36967. image: {
  36968. source: "./media/characters/kai/front.svg",
  36969. extra: 1892/1718,
  36970. bottom: 162/2054
  36971. }
  36972. },
  36973. },
  36974. [
  36975. {
  36976. name: "Macro",
  36977. height: math.unit(30, "stories"),
  36978. default: true
  36979. },
  36980. ]
  36981. ))
  36982. characterMakers.push(() => makeCharacter(
  36983. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36984. {
  36985. front: {
  36986. height: math.unit(6 + 4/12, "feet"),
  36987. weight: math.unit(145, "lb"),
  36988. name: "Front",
  36989. image: {
  36990. source: "./media/characters/sykes/front.svg",
  36991. extra: 1321 / 1187,
  36992. bottom: 66 / 1387
  36993. }
  36994. },
  36995. back: {
  36996. height: math.unit(6 + 4/12, "feet"),
  36997. weight: math.unit(145, "lb"),
  36998. name: "Back",
  36999. image: {
  37000. source: "./media/characters/sykes/back.svg",
  37001. extra: 1326/1181,
  37002. bottom: 31/1357
  37003. }
  37004. },
  37005. traditionalOutfit: {
  37006. height: math.unit(6 + 4/12, "feet"),
  37007. weight: math.unit(145, "lb"),
  37008. name: "Traditional Outfit",
  37009. image: {
  37010. source: "./media/characters/sykes/traditional-outfit.svg",
  37011. extra: 1321 / 1187,
  37012. bottom: 66 / 1387
  37013. }
  37014. },
  37015. adventureOutfit: {
  37016. height: math.unit(6 + 4/12, "feet"),
  37017. weight: math.unit(145, "lb"),
  37018. name: "Adventure Outfit",
  37019. image: {
  37020. source: "./media/characters/sykes/adventure-outfit.svg",
  37021. extra: 1321 / 1187,
  37022. bottom: 66 / 1387
  37023. }
  37024. },
  37025. handLeft: {
  37026. height: math.unit(0.9, "feet"),
  37027. name: "Hand (Left)",
  37028. image: {
  37029. source: "./media/characters/sykes/hand-left.svg"
  37030. }
  37031. },
  37032. handRight: {
  37033. height: math.unit(0.839, "feet"),
  37034. name: "Hand (Right)",
  37035. image: {
  37036. source: "./media/characters/sykes/hand-right.svg"
  37037. }
  37038. },
  37039. leftFoot: {
  37040. height: math.unit(1.2, "feet"),
  37041. name: "Foot (Left)",
  37042. image: {
  37043. source: "./media/characters/sykes/foot-left.svg"
  37044. }
  37045. },
  37046. rightFoot: {
  37047. height: math.unit(1.2, "feet"),
  37048. name: "Foot (Right)",
  37049. image: {
  37050. source: "./media/characters/sykes/foot-right.svg"
  37051. }
  37052. },
  37053. maw: {
  37054. height: math.unit(1.93, "feet"),
  37055. name: "Maw",
  37056. image: {
  37057. source: "./media/characters/sykes/maw.svg"
  37058. }
  37059. },
  37060. teeth: {
  37061. height: math.unit(0.51, "feet"),
  37062. name: "Teeth",
  37063. image: {
  37064. source: "./media/characters/sykes/teeth.svg"
  37065. }
  37066. },
  37067. tongue: {
  37068. height: math.unit(2.13, "feet"),
  37069. name: "Tongue",
  37070. image: {
  37071. source: "./media/characters/sykes/tongue.svg"
  37072. }
  37073. },
  37074. uvula: {
  37075. height: math.unit(0.16, "feet"),
  37076. name: "Uvula",
  37077. image: {
  37078. source: "./media/characters/sykes/uvula.svg"
  37079. }
  37080. },
  37081. collar: {
  37082. height: math.unit(0.287, "feet"),
  37083. name: "Collar",
  37084. image: {
  37085. source: "./media/characters/sykes/collar.svg"
  37086. }
  37087. },
  37088. tail: {
  37089. height: math.unit(3.8, "feet"),
  37090. name: "Tail",
  37091. image: {
  37092. source: "./media/characters/sykes/tail.svg"
  37093. }
  37094. },
  37095. },
  37096. [
  37097. {
  37098. name: "Shrunken",
  37099. height: math.unit(5, "inches")
  37100. },
  37101. {
  37102. name: "Normal",
  37103. height: math.unit(6 + 4 / 12, "feet"),
  37104. default: true
  37105. },
  37106. {
  37107. name: "Big",
  37108. height: math.unit(15, "feet")
  37109. },
  37110. ]
  37111. ))
  37112. characterMakers.push(() => makeCharacter(
  37113. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37114. {
  37115. front: {
  37116. height: math.unit(5 + 8/12, "feet"),
  37117. weight: math.unit(190, "lb"),
  37118. name: "Front",
  37119. image: {
  37120. source: "./media/characters/oven-otter/front.svg",
  37121. extra: 1809/1740,
  37122. bottom: 181/1990
  37123. }
  37124. },
  37125. back: {
  37126. height: math.unit(5 + 8/12, "feet"),
  37127. weight: math.unit(190, "lb"),
  37128. name: "Back",
  37129. image: {
  37130. source: "./media/characters/oven-otter/back.svg",
  37131. extra: 1709/1635,
  37132. bottom: 118/1827
  37133. }
  37134. },
  37135. hand: {
  37136. height: math.unit(1.07, "feet"),
  37137. name: "Hand",
  37138. image: {
  37139. source: "./media/characters/oven-otter/hand.svg"
  37140. }
  37141. },
  37142. beans: {
  37143. height: math.unit(1.74, "feet"),
  37144. name: "Beans",
  37145. image: {
  37146. source: "./media/characters/oven-otter/beans.svg"
  37147. }
  37148. },
  37149. },
  37150. [
  37151. {
  37152. name: "Micro",
  37153. height: math.unit(0.5, "inches")
  37154. },
  37155. {
  37156. name: "Normal",
  37157. height: math.unit(5 + 8/12, "feet"),
  37158. default: true
  37159. },
  37160. {
  37161. name: "Macro",
  37162. height: math.unit(250, "feet")
  37163. },
  37164. {
  37165. name: "Really High",
  37166. height: math.unit(420, "feet")
  37167. },
  37168. ]
  37169. ))
  37170. characterMakers.push(() => makeCharacter(
  37171. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37172. {
  37173. front: {
  37174. height: math.unit(5, "meters"),
  37175. weight: math.unit(292000000000000, "kg"),
  37176. name: "Front",
  37177. image: {
  37178. source: "./media/characters/devourer/front.svg",
  37179. extra: 1800/1733,
  37180. bottom: 211/2011
  37181. }
  37182. },
  37183. maw: {
  37184. height: math.unit(1.1, "meter"),
  37185. name: "Maw",
  37186. image: {
  37187. source: "./media/characters/devourer/maw.svg"
  37188. }
  37189. },
  37190. },
  37191. [
  37192. {
  37193. name: "Small",
  37194. height: math.unit(3, "meters")
  37195. },
  37196. {
  37197. name: "Large",
  37198. height: math.unit(5, "meters"),
  37199. default: true
  37200. },
  37201. ]
  37202. ))
  37203. characterMakers.push(() => makeCharacter(
  37204. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37205. {
  37206. front: {
  37207. height: math.unit(6, "feet"),
  37208. weight: math.unit(400, "lb"),
  37209. name: "Front",
  37210. image: {
  37211. source: "./media/characters/ellarby/front.svg",
  37212. extra: 1909/1763,
  37213. bottom: 80/1989
  37214. }
  37215. },
  37216. back: {
  37217. height: math.unit(6, "feet"),
  37218. weight: math.unit(400, "lb"),
  37219. name: "Back",
  37220. image: {
  37221. source: "./media/characters/ellarby/back.svg",
  37222. extra: 1914/1784,
  37223. bottom: 172/2086
  37224. }
  37225. },
  37226. },
  37227. [
  37228. {
  37229. name: "Mischief",
  37230. height: math.unit(18, "inches")
  37231. },
  37232. {
  37233. name: "Trouble",
  37234. height: math.unit(12, "feet")
  37235. },
  37236. {
  37237. name: "Havoc",
  37238. height: math.unit(200, "feet"),
  37239. default: true
  37240. },
  37241. {
  37242. name: "Pandemonium",
  37243. height: math.unit(1, "mile")
  37244. },
  37245. {
  37246. name: "Catastrophe",
  37247. height: math.unit(100, "miles")
  37248. },
  37249. ]
  37250. ))
  37251. characterMakers.push(() => makeCharacter(
  37252. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37253. {
  37254. front: {
  37255. height: math.unit(4.7, "meters"),
  37256. weight: math.unit(6500, "kg"),
  37257. name: "Front",
  37258. image: {
  37259. source: "./media/characters/vex/front.svg",
  37260. extra: 1288/1140,
  37261. bottom: 100/1388
  37262. }
  37263. },
  37264. },
  37265. [
  37266. {
  37267. name: "Normal",
  37268. height: math.unit(4.7, "meters"),
  37269. default: true
  37270. },
  37271. ]
  37272. ))
  37273. characterMakers.push(() => makeCharacter(
  37274. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37275. {
  37276. normal: {
  37277. height: math.unit(6, "feet"),
  37278. weight: math.unit(350, "lb"),
  37279. name: "Normal",
  37280. image: {
  37281. source: "./media/characters/teshy/normal.svg",
  37282. extra: 1795/1735,
  37283. bottom: 16/1811
  37284. }
  37285. },
  37286. monsterFront: {
  37287. height: math.unit(12, "feet"),
  37288. weight: math.unit(4700, "lb"),
  37289. name: "Monster (Front)",
  37290. image: {
  37291. source: "./media/characters/teshy/monster-front.svg",
  37292. extra: 2042/2034,
  37293. bottom: 128/2170
  37294. }
  37295. },
  37296. monsterSide: {
  37297. height: math.unit(12, "feet"),
  37298. weight: math.unit(4700, "lb"),
  37299. name: "Monster (Side)",
  37300. image: {
  37301. source: "./media/characters/teshy/monster-side.svg",
  37302. extra: 2067/2056,
  37303. bottom: 70/2137
  37304. }
  37305. },
  37306. monsterBack: {
  37307. height: math.unit(12, "feet"),
  37308. weight: math.unit(4700, "lb"),
  37309. name: "Monster (Back)",
  37310. image: {
  37311. source: "./media/characters/teshy/monster-back.svg",
  37312. extra: 1921/1914,
  37313. bottom: 171/2092
  37314. }
  37315. },
  37316. },
  37317. [
  37318. {
  37319. name: "Normal",
  37320. height: math.unit(6, "feet"),
  37321. default: true
  37322. },
  37323. ]
  37324. ))
  37325. characterMakers.push(() => makeCharacter(
  37326. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37327. {
  37328. front: {
  37329. height: math.unit(6, "feet"),
  37330. name: "Front",
  37331. image: {
  37332. source: "./media/characters/ramey/front.svg",
  37333. extra: 790/787,
  37334. bottom: 27/817
  37335. }
  37336. },
  37337. },
  37338. [
  37339. {
  37340. name: "Normal",
  37341. height: math.unit(6, "feet"),
  37342. default: true
  37343. },
  37344. ]
  37345. ))
  37346. characterMakers.push(() => makeCharacter(
  37347. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37348. {
  37349. front: {
  37350. height: math.unit(5 + 5/12, "feet"),
  37351. weight: math.unit(120, "lb"),
  37352. name: "Front",
  37353. image: {
  37354. source: "./media/characters/phirae/front.svg",
  37355. extra: 2491/2436,
  37356. bottom: 38/2529
  37357. }
  37358. },
  37359. },
  37360. [
  37361. {
  37362. name: "Normal",
  37363. height: math.unit(5 + 5/12, "feet"),
  37364. default: true
  37365. },
  37366. ]
  37367. ))
  37368. characterMakers.push(() => makeCharacter(
  37369. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37370. {
  37371. front: {
  37372. height: math.unit(5 + 3/12, "feet"),
  37373. name: "Front",
  37374. image: {
  37375. source: "./media/characters/stagglas/front.svg",
  37376. extra: 962/882,
  37377. bottom: 53/1015
  37378. }
  37379. },
  37380. feral: {
  37381. height: math.unit(335, "cm"),
  37382. name: "Feral",
  37383. image: {
  37384. source: "./media/characters/stagglas/feral.svg",
  37385. extra: 1732/1090,
  37386. bottom: 48/1780
  37387. }
  37388. },
  37389. },
  37390. [
  37391. {
  37392. name: "Normal",
  37393. height: math.unit(5 + 3/12, "feet"),
  37394. default: true
  37395. },
  37396. ]
  37397. ))
  37398. characterMakers.push(() => makeCharacter(
  37399. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37400. {
  37401. front: {
  37402. height: math.unit(5 + 4/12, "feet"),
  37403. weight: math.unit(145, "lb"),
  37404. name: "Front",
  37405. image: {
  37406. source: "./media/characters/starra/front.svg",
  37407. extra: 1790/1691,
  37408. bottom: 91/1881
  37409. }
  37410. },
  37411. },
  37412. [
  37413. {
  37414. name: "Normal",
  37415. height: math.unit(5 + 4/12, "feet"),
  37416. default: true
  37417. },
  37418. ]
  37419. ))
  37420. characterMakers.push(() => makeCharacter(
  37421. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37422. {
  37423. front: {
  37424. height: math.unit(3.5, "meters"),
  37425. name: "Front",
  37426. image: {
  37427. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37428. extra: 1248/972,
  37429. bottom: 38/1286
  37430. }
  37431. },
  37432. },
  37433. [
  37434. {
  37435. name: "Normal",
  37436. height: math.unit(3.5, "meters"),
  37437. default: true
  37438. },
  37439. ]
  37440. ))
  37441. characterMakers.push(() => makeCharacter(
  37442. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37443. {
  37444. side: {
  37445. height: math.unit(8 + 2/12, "feet"),
  37446. weight: math.unit(1240, "lb"),
  37447. name: "Side",
  37448. image: {
  37449. source: "./media/characters/mika-valentine/side.svg",
  37450. extra: 2670/2501,
  37451. bottom: 250/2920
  37452. }
  37453. },
  37454. },
  37455. [
  37456. {
  37457. name: "Normal",
  37458. height: math.unit(8 + 2/12, "feet"),
  37459. default: true
  37460. },
  37461. ]
  37462. ))
  37463. characterMakers.push(() => makeCharacter(
  37464. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37465. {
  37466. front: {
  37467. height: math.unit(7 + 2/12, "feet"),
  37468. name: "Front",
  37469. image: {
  37470. source: "./media/characters/xoltol/front.svg",
  37471. extra: 2212/2124,
  37472. bottom: 84/2296
  37473. }
  37474. },
  37475. side: {
  37476. height: math.unit(7 + 2/12, "feet"),
  37477. name: "Side",
  37478. image: {
  37479. source: "./media/characters/xoltol/side.svg",
  37480. extra: 2273/2197,
  37481. bottom: 26/2299
  37482. }
  37483. },
  37484. hand: {
  37485. height: math.unit(2.5, "feet"),
  37486. name: "Hand",
  37487. image: {
  37488. source: "./media/characters/xoltol/hand.svg"
  37489. }
  37490. },
  37491. },
  37492. [
  37493. {
  37494. name: "Small-ish",
  37495. height: math.unit(5 + 11/12, "feet")
  37496. },
  37497. {
  37498. name: "Normal",
  37499. height: math.unit(7 + 2/12, "feet")
  37500. },
  37501. {
  37502. name: "\"Macro\"",
  37503. height: math.unit(14 + 9/12, "feet"),
  37504. default: true
  37505. },
  37506. {
  37507. name: "Alternate Height",
  37508. height: math.unit(20, "feet")
  37509. },
  37510. {
  37511. name: "Actually Macro",
  37512. height: math.unit(100, "feet")
  37513. },
  37514. ]
  37515. ))
  37516. characterMakers.push(() => makeCharacter(
  37517. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37518. {
  37519. front: {
  37520. height: math.unit(5 + 2/12, "feet"),
  37521. weight: math.unit(75, "kg"),
  37522. name: "Front",
  37523. image: {
  37524. source: "./media/characters/kotetsu-redwood/front.svg",
  37525. extra: 1053/942,
  37526. bottom: 60/1113
  37527. }
  37528. },
  37529. },
  37530. [
  37531. {
  37532. name: "Normal",
  37533. height: math.unit(5 + 2/12, "feet"),
  37534. default: true
  37535. },
  37536. ]
  37537. ))
  37538. characterMakers.push(() => makeCharacter(
  37539. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37540. {
  37541. front: {
  37542. height: math.unit(2.4, "meters"),
  37543. weight: math.unit(125, "kg"),
  37544. name: "Front",
  37545. image: {
  37546. source: "./media/characters/lilith/front.svg",
  37547. extra: 1590/1513,
  37548. bottom: 203/1793
  37549. }
  37550. },
  37551. },
  37552. [
  37553. {
  37554. name: "Humanoid",
  37555. height: math.unit(2.4, "meters")
  37556. },
  37557. {
  37558. name: "Normal",
  37559. height: math.unit(6, "meters"),
  37560. default: true
  37561. },
  37562. {
  37563. name: "Largest",
  37564. height: math.unit(55, "meters")
  37565. },
  37566. ]
  37567. ))
  37568. characterMakers.push(() => makeCharacter(
  37569. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37570. {
  37571. front: {
  37572. height: math.unit(8 + 4/12, "feet"),
  37573. weight: math.unit(535, "lb"),
  37574. name: "Front",
  37575. image: {
  37576. source: "./media/characters/beh'kah-bolger/front.svg",
  37577. extra: 1660/1603,
  37578. bottom: 37/1697
  37579. }
  37580. },
  37581. },
  37582. [
  37583. {
  37584. name: "Normal",
  37585. height: math.unit(8 + 4/12, "feet"),
  37586. default: true
  37587. },
  37588. {
  37589. name: "Kaiju",
  37590. height: math.unit(250, "feet")
  37591. },
  37592. {
  37593. name: "Still Growing",
  37594. height: math.unit(10, "miles")
  37595. },
  37596. {
  37597. name: "Continental",
  37598. height: math.unit(5000, "miles")
  37599. },
  37600. {
  37601. name: "Final Form",
  37602. height: math.unit(2500000, "miles")
  37603. },
  37604. ]
  37605. ))
  37606. characterMakers.push(() => makeCharacter(
  37607. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37608. {
  37609. front: {
  37610. height: math.unit(7 + 2/12, "feet"),
  37611. weight: math.unit(230, "kg"),
  37612. name: "Front",
  37613. image: {
  37614. source: "./media/characters/tatyana-milewska/front.svg",
  37615. extra: 1199/1150,
  37616. bottom: 86/1285
  37617. }
  37618. },
  37619. },
  37620. [
  37621. {
  37622. name: "Normal",
  37623. height: math.unit(7 + 2/12, "feet"),
  37624. default: true
  37625. },
  37626. {
  37627. name: "Big",
  37628. height: math.unit(12, "feet")
  37629. },
  37630. {
  37631. name: "Minimacro",
  37632. height: math.unit(20, "feet")
  37633. },
  37634. {
  37635. name: "Macro",
  37636. height: math.unit(120, "feet")
  37637. },
  37638. ]
  37639. ))
  37640. characterMakers.push(() => makeCharacter(
  37641. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37642. {
  37643. front: {
  37644. height: math.unit(7 + 8/12, "feet"),
  37645. weight: math.unit(152, "kg"),
  37646. name: "Front",
  37647. image: {
  37648. source: "./media/characters/helen-arri/front.svg",
  37649. extra: 440/423,
  37650. bottom: 14/454
  37651. }
  37652. },
  37653. back: {
  37654. height: math.unit(7 + 8/12, "feet"),
  37655. weight: math.unit(152, "kg"),
  37656. name: "Back",
  37657. image: {
  37658. source: "./media/characters/helen-arri/back.svg",
  37659. extra: 443/426,
  37660. bottom: 8/451
  37661. }
  37662. },
  37663. },
  37664. [
  37665. {
  37666. name: "Normal",
  37667. height: math.unit(7 + 8/12, "feet"),
  37668. default: true
  37669. },
  37670. {
  37671. name: "Big",
  37672. height: math.unit(14, "feet")
  37673. },
  37674. {
  37675. name: "Minimacro",
  37676. height: math.unit(24, "feet")
  37677. },
  37678. {
  37679. name: "Macro",
  37680. height: math.unit(140, "feet")
  37681. },
  37682. ]
  37683. ))
  37684. characterMakers.push(() => makeCharacter(
  37685. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37686. {
  37687. front: {
  37688. height: math.unit(6, "meters"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/ehanu-rehu/front.svg",
  37692. extra: 1800/1800,
  37693. bottom: 59/1859
  37694. }
  37695. },
  37696. },
  37697. [
  37698. {
  37699. name: "Normal",
  37700. height: math.unit(6, "meters"),
  37701. default: true
  37702. },
  37703. ]
  37704. ))
  37705. characterMakers.push(() => makeCharacter(
  37706. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37707. {
  37708. front: {
  37709. height: math.unit(7 + 3/12, "feet"),
  37710. name: "Front",
  37711. image: {
  37712. source: "./media/characters/renholder/front.svg",
  37713. extra: 3096/2960,
  37714. bottom: 250/3346
  37715. }
  37716. },
  37717. },
  37718. [
  37719. {
  37720. name: "Normal Bat",
  37721. height: math.unit(7 + 3/12, "feet"),
  37722. default: true
  37723. },
  37724. {
  37725. name: "Slightly Tall Bat",
  37726. height: math.unit(100, "feet")
  37727. },
  37728. {
  37729. name: "Big Bat",
  37730. height: math.unit(1000, "feet")
  37731. },
  37732. {
  37733. name: "City-Sized Bat",
  37734. height: math.unit(200000, "feet")
  37735. },
  37736. {
  37737. name: "Bigger Bat",
  37738. height: math.unit(10000, "miles")
  37739. },
  37740. {
  37741. name: "Solar Sized Bat",
  37742. height: math.unit(100, "AU")
  37743. },
  37744. {
  37745. name: "Galactic Bat",
  37746. height: math.unit(200000, "lightyears")
  37747. },
  37748. {
  37749. name: "Universally Known Bat",
  37750. height: math.unit(1, "universe")
  37751. },
  37752. ]
  37753. ))
  37754. characterMakers.push(() => makeCharacter(
  37755. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37756. {
  37757. front: {
  37758. height: math.unit(6 + 11/12, "feet"),
  37759. weight: math.unit(250, "lb"),
  37760. name: "Front",
  37761. image: {
  37762. source: "./media/characters/cookiecat/front.svg",
  37763. extra: 893/827,
  37764. bottom: 14/907
  37765. }
  37766. },
  37767. },
  37768. [
  37769. {
  37770. name: "Micro",
  37771. height: math.unit(3, "inches")
  37772. },
  37773. {
  37774. name: "Normal",
  37775. height: math.unit(6 + 11/12, "feet"),
  37776. default: true
  37777. },
  37778. {
  37779. name: "Macro",
  37780. height: math.unit(100, "feet")
  37781. },
  37782. {
  37783. name: "Macro+",
  37784. height: math.unit(404, "feet")
  37785. },
  37786. {
  37787. name: "Megamacro",
  37788. height: math.unit(165, "miles")
  37789. },
  37790. {
  37791. name: "Planetary",
  37792. height: math.unit(4600, "miles")
  37793. },
  37794. ]
  37795. ))
  37796. characterMakers.push(() => makeCharacter(
  37797. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37798. {
  37799. front: {
  37800. height: math.unit(10 + 3/12, "feet"),
  37801. weight: math.unit(1500, "lb"),
  37802. name: "Front",
  37803. image: {
  37804. source: "./media/characters/tux-kusanagi/front.svg",
  37805. extra: 944/840,
  37806. bottom: 39/983
  37807. }
  37808. },
  37809. back: {
  37810. height: math.unit(10 + 3/12, "feet"),
  37811. weight: math.unit(1500, "lb"),
  37812. name: "Back",
  37813. image: {
  37814. source: "./media/characters/tux-kusanagi/back.svg",
  37815. extra: 941/842,
  37816. bottom: 28/969
  37817. }
  37818. },
  37819. rump: {
  37820. height: math.unit(5.25, "feet"),
  37821. name: "Rump",
  37822. image: {
  37823. source: "./media/characters/tux-kusanagi/rump.svg"
  37824. }
  37825. },
  37826. beak: {
  37827. height: math.unit(1.54, "feet"),
  37828. name: "Beak",
  37829. image: {
  37830. source: "./media/characters/tux-kusanagi/beak.svg"
  37831. }
  37832. },
  37833. },
  37834. [
  37835. {
  37836. name: "Normal",
  37837. height: math.unit(10 + 3/12, "feet"),
  37838. default: true
  37839. },
  37840. ]
  37841. ))
  37842. characterMakers.push(() => makeCharacter(
  37843. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37844. {
  37845. front: {
  37846. height: math.unit(58, "feet"),
  37847. weight: math.unit(200, "tons"),
  37848. name: "Front",
  37849. image: {
  37850. source: "./media/characters/uzarmazari/front.svg",
  37851. extra: 1575/1455,
  37852. bottom: 152/1727
  37853. }
  37854. },
  37855. back: {
  37856. height: math.unit(58, "feet"),
  37857. weight: math.unit(200, "tons"),
  37858. name: "Back",
  37859. image: {
  37860. source: "./media/characters/uzarmazari/back.svg",
  37861. extra: 1585/1510,
  37862. bottom: 157/1742
  37863. }
  37864. },
  37865. head: {
  37866. height: math.unit(26, "feet"),
  37867. name: "Head",
  37868. image: {
  37869. source: "./media/characters/uzarmazari/head.svg"
  37870. }
  37871. },
  37872. },
  37873. [
  37874. {
  37875. name: "Normal",
  37876. height: math.unit(58, "feet"),
  37877. default: true
  37878. },
  37879. ]
  37880. ))
  37881. characterMakers.push(() => makeCharacter(
  37882. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37883. {
  37884. side: {
  37885. height: math.unit(15, "feet"),
  37886. name: "Side",
  37887. image: {
  37888. source: "./media/characters/akitu/side.svg",
  37889. extra: 1421/1321,
  37890. bottom: 157/1578
  37891. }
  37892. },
  37893. front: {
  37894. height: math.unit(15, "feet"),
  37895. name: "Front",
  37896. image: {
  37897. source: "./media/characters/akitu/front.svg",
  37898. extra: 1435/1326,
  37899. bottom: 232/1667
  37900. }
  37901. },
  37902. },
  37903. [
  37904. {
  37905. name: "Normal",
  37906. height: math.unit(15, "feet"),
  37907. default: true
  37908. },
  37909. ]
  37910. ))
  37911. characterMakers.push(() => makeCharacter(
  37912. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37913. {
  37914. front: {
  37915. height: math.unit(10 + 8/12, "feet"),
  37916. name: "Front",
  37917. image: {
  37918. source: "./media/characters/azalie-croixland/front.svg",
  37919. extra: 1972/1856,
  37920. bottom: 31/2003
  37921. }
  37922. },
  37923. },
  37924. [
  37925. {
  37926. name: "Original Height",
  37927. height: math.unit(5 + 4/12, "feet")
  37928. },
  37929. {
  37930. name: "Normal Height",
  37931. height: math.unit(10 + 8/12, "feet"),
  37932. default: true
  37933. },
  37934. ]
  37935. ))
  37936. characterMakers.push(() => makeCharacter(
  37937. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37938. {
  37939. side: {
  37940. height: math.unit(7 + 1/12, "feet"),
  37941. weight: math.unit(245, "lb"),
  37942. name: "Side",
  37943. image: {
  37944. source: "./media/characters/kavus-kazian/side.svg",
  37945. extra: 349/342,
  37946. bottom: 15/364
  37947. }
  37948. },
  37949. },
  37950. [
  37951. {
  37952. name: "Normal",
  37953. height: math.unit(7 + 1/12, "feet"),
  37954. default: true
  37955. },
  37956. ]
  37957. ))
  37958. characterMakers.push(() => makeCharacter(
  37959. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37960. {
  37961. normalFront: {
  37962. height: math.unit(5 + 11/12, "feet"),
  37963. name: "Front",
  37964. image: {
  37965. source: "./media/characters/moonlight-rose/normal-front.svg",
  37966. extra: 1980/1825,
  37967. bottom: 18/1998
  37968. },
  37969. form: "normal",
  37970. default: true
  37971. },
  37972. normalBack: {
  37973. height: math.unit(5 + 11/12, "feet"),
  37974. name: "Back",
  37975. image: {
  37976. source: "./media/characters/moonlight-rose/normal-back.svg",
  37977. extra: 2010/1839,
  37978. bottom: 10/2020
  37979. },
  37980. form: "normal"
  37981. },
  37982. demonFront: {
  37983. height: math.unit(1.5, "earths"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/moonlight-rose/demon.svg",
  37987. extra: 1400/1294,
  37988. bottom: 45/1445
  37989. },
  37990. form: "demon",
  37991. default: true
  37992. },
  37993. terraFront: {
  37994. height: math.unit(1.5, "earths"),
  37995. name: "Front",
  37996. image: {
  37997. source: "./media/characters/moonlight-rose/terra.svg"
  37998. },
  37999. form: "terra",
  38000. default: true
  38001. },
  38002. jupiterFront: {
  38003. height: math.unit(69911*2, "km"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38007. extra: 1367/1286,
  38008. bottom: 55/1422
  38009. },
  38010. form: "jupiter",
  38011. default: true
  38012. },
  38013. neptuneFront: {
  38014. height: math.unit(24622*2, "feet"),
  38015. name: "Front",
  38016. image: {
  38017. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38018. extra: 1851/1712,
  38019. bottom: 0/1851
  38020. },
  38021. form: "neptune",
  38022. default: true
  38023. },
  38024. },
  38025. [
  38026. {
  38027. name: "\"Natural\" Height",
  38028. height: math.unit(5 + 11/12, "feet"),
  38029. form: "normal"
  38030. },
  38031. {
  38032. name: "Smallest comfortable size",
  38033. height: math.unit(40, "meters"),
  38034. form: "normal"
  38035. },
  38036. {
  38037. name: "Common size",
  38038. height: math.unit(50, "km"),
  38039. form: "normal",
  38040. default: true
  38041. },
  38042. {
  38043. name: "Normal",
  38044. height: math.unit(1.5, "earths"),
  38045. form: "demon",
  38046. default: true
  38047. },
  38048. {
  38049. name: "Universal",
  38050. height: math.unit(15, "universes"),
  38051. form: "demon"
  38052. },
  38053. {
  38054. name: "Earth",
  38055. height: math.unit(1.5, "earths"),
  38056. form: "terra",
  38057. default: true
  38058. },
  38059. {
  38060. name: "Super Earth",
  38061. height: math.unit(67.5, "earths"),
  38062. form: "terra"
  38063. },
  38064. {
  38065. name: "Doesn't fit in a solar system...",
  38066. height: math.unit(1, "galaxy"),
  38067. form: "terra"
  38068. },
  38069. {
  38070. name: "Saturn",
  38071. height: math.unit(58232*2, "km"),
  38072. form: "jupiter"
  38073. },
  38074. {
  38075. name: "Jupiter",
  38076. height: math.unit(69911*2, "km"),
  38077. form: "jupiter",
  38078. default: true
  38079. },
  38080. {
  38081. name: "HD 100546 b",
  38082. height: math.unit(482938, "km"),
  38083. form: "jupiter"
  38084. },
  38085. {
  38086. name: "Enceladus",
  38087. height: math.unit(513*2, "km"),
  38088. form: "neptune"
  38089. },
  38090. {
  38091. name: "Europe",
  38092. height: math.unit(1560*2, "km"),
  38093. form: "neptune"
  38094. },
  38095. {
  38096. name: "Neptune",
  38097. height: math.unit(24622*2, "km"),
  38098. form: "neptune",
  38099. default: true
  38100. },
  38101. {
  38102. name: "CoRoT-9b",
  38103. height: math.unit(75067*2, "km"),
  38104. form: "neptune"
  38105. },
  38106. ],
  38107. {
  38108. "normal": {
  38109. name: "Normal",
  38110. default: true
  38111. },
  38112. "demon": {
  38113. name: "Demon"
  38114. },
  38115. "terra": {
  38116. name: "Terra"
  38117. },
  38118. "jupiter": {
  38119. name: "Jupiter"
  38120. },
  38121. "neptune": {
  38122. name: "Neptune"
  38123. }
  38124. }
  38125. ))
  38126. characterMakers.push(() => makeCharacter(
  38127. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38128. {
  38129. front: {
  38130. height: math.unit(16, "feet"),
  38131. weight: math.unit(610, "kg"),
  38132. name: "Front",
  38133. image: {
  38134. source: "./media/characters/huckle/front.svg",
  38135. extra: 1731/1625,
  38136. bottom: 33/1764
  38137. }
  38138. },
  38139. back: {
  38140. height: math.unit(16, "feet"),
  38141. weight: math.unit(610, "kg"),
  38142. name: "Back",
  38143. image: {
  38144. source: "./media/characters/huckle/back.svg",
  38145. extra: 1738/1651,
  38146. bottom: 37/1775
  38147. }
  38148. },
  38149. laughing: {
  38150. height: math.unit(3.75, "feet"),
  38151. name: "Laughing",
  38152. image: {
  38153. source: "./media/characters/huckle/laughing.svg"
  38154. }
  38155. },
  38156. angry: {
  38157. height: math.unit(4.15, "feet"),
  38158. name: "Angry",
  38159. image: {
  38160. source: "./media/characters/huckle/angry.svg"
  38161. }
  38162. },
  38163. },
  38164. [
  38165. {
  38166. name: "Normal",
  38167. height: math.unit(16, "feet"),
  38168. default: true
  38169. },
  38170. {
  38171. name: "Mini Macro",
  38172. height: math.unit(463, "feet")
  38173. },
  38174. {
  38175. name: "Macro",
  38176. height: math.unit(1680, "meters")
  38177. },
  38178. {
  38179. name: "Mega Macro",
  38180. height: math.unit(175, "km")
  38181. },
  38182. {
  38183. name: "Terra Macro",
  38184. height: math.unit(32, "gigameters")
  38185. },
  38186. {
  38187. name: "Multiverse+",
  38188. height: math.unit(2.56e23, "yottameters")
  38189. },
  38190. ]
  38191. ))
  38192. characterMakers.push(() => makeCharacter(
  38193. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38194. {
  38195. front: {
  38196. height: math.unit(6 + 9/12, "feet"),
  38197. weight: math.unit(280, "lb"),
  38198. name: "Front",
  38199. image: {
  38200. source: "./media/characters/candy/front.svg",
  38201. extra: 234/217,
  38202. bottom: 11/245
  38203. }
  38204. },
  38205. },
  38206. [
  38207. {
  38208. name: "Really Small",
  38209. height: math.unit(0.1, "nm")
  38210. },
  38211. {
  38212. name: "Micro",
  38213. height: math.unit(2, "inches")
  38214. },
  38215. {
  38216. name: "Normal",
  38217. height: math.unit(6 + 9/12, "feet"),
  38218. default: true
  38219. },
  38220. {
  38221. name: "Small Macro",
  38222. height: math.unit(69, "feet")
  38223. },
  38224. {
  38225. name: "Macro",
  38226. height: math.unit(160, "feet")
  38227. },
  38228. {
  38229. name: "Megamacro",
  38230. height: math.unit(22000, "miles")
  38231. },
  38232. {
  38233. name: "Gigamacro",
  38234. height: math.unit(50000, "miles")
  38235. },
  38236. ]
  38237. ))
  38238. characterMakers.push(() => makeCharacter(
  38239. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38240. {
  38241. front: {
  38242. height: math.unit(4, "feet"),
  38243. weight: math.unit(90, "lb"),
  38244. name: "Front",
  38245. image: {
  38246. source: "./media/characters/joey-mcdonald/front.svg",
  38247. extra: 1059/852,
  38248. bottom: 33/1092
  38249. }
  38250. },
  38251. back: {
  38252. height: math.unit(4, "feet"),
  38253. weight: math.unit(90, "lb"),
  38254. name: "Back",
  38255. image: {
  38256. source: "./media/characters/joey-mcdonald/back.svg",
  38257. extra: 1077/879,
  38258. bottom: 5/1082
  38259. }
  38260. },
  38261. frontKobold: {
  38262. height: math.unit(4, "feet"),
  38263. weight: math.unit(100, "lb"),
  38264. name: "Front-kobold",
  38265. image: {
  38266. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38267. extra: 1480/1367,
  38268. bottom: 0/1480
  38269. }
  38270. },
  38271. backKobold: {
  38272. height: math.unit(4, "feet"),
  38273. weight: math.unit(100, "lb"),
  38274. name: "Back-kobold",
  38275. image: {
  38276. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38277. extra: 1449/1361,
  38278. bottom: 0/1449
  38279. }
  38280. },
  38281. },
  38282. [
  38283. {
  38284. name: "Normal",
  38285. height: math.unit(4, "feet"),
  38286. default: true
  38287. },
  38288. ]
  38289. ))
  38290. characterMakers.push(() => makeCharacter(
  38291. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38292. {
  38293. front: {
  38294. height: math.unit(12 + 6/12, "feet"),
  38295. name: "Front",
  38296. image: {
  38297. source: "./media/characters/kass-lockheed/front.svg",
  38298. extra: 354/343,
  38299. bottom: 9/363
  38300. }
  38301. },
  38302. back: {
  38303. height: math.unit(12 + 6/12, "feet"),
  38304. name: "Back",
  38305. image: {
  38306. source: "./media/characters/kass-lockheed/back.svg",
  38307. extra: 364/352,
  38308. bottom: 3/367
  38309. }
  38310. },
  38311. dick: {
  38312. height: math.unit(3.12, "feet"),
  38313. name: "Dick",
  38314. image: {
  38315. source: "./media/characters/kass-lockheed/dick.svg"
  38316. }
  38317. },
  38318. head: {
  38319. height: math.unit(2.6, "feet"),
  38320. name: "Head",
  38321. image: {
  38322. source: "./media/characters/kass-lockheed/head.svg"
  38323. }
  38324. },
  38325. bleh: {
  38326. height: math.unit(2.85, "feet"),
  38327. name: "Bleh",
  38328. image: {
  38329. source: "./media/characters/kass-lockheed/bleh.svg"
  38330. }
  38331. },
  38332. smug: {
  38333. height: math.unit(2.85, "feet"),
  38334. name: "Smug",
  38335. image: {
  38336. source: "./media/characters/kass-lockheed/smug.svg"
  38337. }
  38338. },
  38339. },
  38340. [
  38341. {
  38342. name: "Normal",
  38343. height: math.unit(12 + 6/12, "feet"),
  38344. default: true
  38345. },
  38346. ]
  38347. ))
  38348. characterMakers.push(() => makeCharacter(
  38349. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38350. {
  38351. front: {
  38352. height: math.unit(6 + 2/12, "feet"),
  38353. name: "Front",
  38354. image: {
  38355. source: "./media/characters/taylor/front.svg",
  38356. extra: 639/495,
  38357. bottom: 12/651
  38358. }
  38359. },
  38360. },
  38361. [
  38362. {
  38363. name: "Normal",
  38364. height: math.unit(6 + 2/12, "feet"),
  38365. default: true
  38366. },
  38367. {
  38368. name: "Big",
  38369. height: math.unit(15, "feet")
  38370. },
  38371. {
  38372. name: "Lorg",
  38373. height: math.unit(80, "feet")
  38374. },
  38375. {
  38376. name: "Too Lorg",
  38377. height: math.unit(120, "feet")
  38378. },
  38379. ]
  38380. ))
  38381. characterMakers.push(() => makeCharacter(
  38382. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38383. {
  38384. front: {
  38385. height: math.unit(15, "feet"),
  38386. name: "Front",
  38387. image: {
  38388. source: "./media/characters/kaizer/front.svg",
  38389. extra: 1612/1436,
  38390. bottom: 43/1655
  38391. }
  38392. },
  38393. },
  38394. [
  38395. {
  38396. name: "Normal",
  38397. height: math.unit(15, "feet"),
  38398. default: true
  38399. },
  38400. ]
  38401. ))
  38402. characterMakers.push(() => makeCharacter(
  38403. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38404. {
  38405. front: {
  38406. height: math.unit(2, "feet"),
  38407. weight: math.unit(30, "lb"),
  38408. name: "Front",
  38409. image: {
  38410. source: "./media/characters/sandy/front.svg",
  38411. extra: 1439/1307,
  38412. bottom: 194/1633
  38413. }
  38414. },
  38415. },
  38416. [
  38417. {
  38418. name: "Normal",
  38419. height: math.unit(2, "feet"),
  38420. default: true
  38421. },
  38422. ]
  38423. ))
  38424. characterMakers.push(() => makeCharacter(
  38425. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38426. {
  38427. front: {
  38428. height: math.unit(3, "feet"),
  38429. name: "Front",
  38430. image: {
  38431. source: "./media/characters/mellvi/front.svg",
  38432. extra: 1831/1630,
  38433. bottom: 58/1889
  38434. }
  38435. },
  38436. },
  38437. [
  38438. {
  38439. name: "Normal",
  38440. height: math.unit(3, "feet"),
  38441. default: true
  38442. },
  38443. ]
  38444. ))
  38445. characterMakers.push(() => makeCharacter(
  38446. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38447. {
  38448. front: {
  38449. height: math.unit(5 + 11/12, "feet"),
  38450. weight: math.unit(200, "lb"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/shirou/front.svg",
  38454. extra: 2491/2383,
  38455. bottom: 189/2680
  38456. }
  38457. },
  38458. back: {
  38459. height: math.unit(5 + 11/12, "feet"),
  38460. weight: math.unit(200, "lb"),
  38461. name: "Back",
  38462. image: {
  38463. source: "./media/characters/shirou/back.svg",
  38464. extra: 2554/2450,
  38465. bottom: 76/2630
  38466. }
  38467. },
  38468. },
  38469. [
  38470. {
  38471. name: "Normal",
  38472. height: math.unit(5 + 11/12, "feet"),
  38473. default: true
  38474. },
  38475. ]
  38476. ))
  38477. characterMakers.push(() => makeCharacter(
  38478. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38479. {
  38480. front: {
  38481. height: math.unit(6 + 3/12, "feet"),
  38482. weight: math.unit(177, "lb"),
  38483. name: "Front",
  38484. image: {
  38485. source: "./media/characters/noryu/front.svg",
  38486. extra: 973/885,
  38487. bottom: 10/983
  38488. }
  38489. },
  38490. },
  38491. [
  38492. {
  38493. name: "Normal",
  38494. height: math.unit(6 + 3/12, "feet"),
  38495. default: true
  38496. },
  38497. ]
  38498. ))
  38499. characterMakers.push(() => makeCharacter(
  38500. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38501. {
  38502. front: {
  38503. height: math.unit(5 + 6/12, "feet"),
  38504. weight: math.unit(170, "lb"),
  38505. name: "Front",
  38506. image: {
  38507. source: "./media/characters/mevolas-rubenido/front.svg",
  38508. extra: 2109/1901,
  38509. bottom: 96/2205
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(5 + 6/12, "feet"),
  38517. default: true
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38523. {
  38524. front: {
  38525. height: math.unit(100, "feet"),
  38526. name: "Front",
  38527. image: {
  38528. source: "./media/characters/dee/front.svg",
  38529. extra: 2153/2036,
  38530. bottom: 59/2212
  38531. }
  38532. },
  38533. back: {
  38534. height: math.unit(100, "feet"),
  38535. name: "Back",
  38536. image: {
  38537. source: "./media/characters/dee/back.svg",
  38538. extra: 2183/2058,
  38539. bottom: 75/2258
  38540. }
  38541. },
  38542. foot: {
  38543. height: math.unit(19.43, "feet"),
  38544. name: "Foot",
  38545. image: {
  38546. source: "./media/characters/dee/foot.svg"
  38547. }
  38548. },
  38549. hoof: {
  38550. height: math.unit(20.6, "feet"),
  38551. name: "Hoof",
  38552. image: {
  38553. source: "./media/characters/dee/hoof.svg"
  38554. }
  38555. },
  38556. },
  38557. [
  38558. {
  38559. name: "Macro",
  38560. height: math.unit(100, "feet"),
  38561. default: true
  38562. },
  38563. ]
  38564. ))
  38565. characterMakers.push(() => makeCharacter(
  38566. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38567. {
  38568. front: {
  38569. height: math.unit(5 + 6/12, "feet"),
  38570. name: "Front",
  38571. image: {
  38572. source: "./media/characters/teh/front.svg",
  38573. extra: 1002/847,
  38574. bottom: 62/1064
  38575. }
  38576. },
  38577. },
  38578. [
  38579. {
  38580. name: "Normal",
  38581. height: math.unit(5 + 6/12, "feet"),
  38582. default: true
  38583. },
  38584. ]
  38585. ))
  38586. characterMakers.push(() => makeCharacter(
  38587. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38588. {
  38589. side: {
  38590. height: math.unit(6 + 1/12, "feet"),
  38591. weight: math.unit(204, "lb"),
  38592. name: "Side",
  38593. image: {
  38594. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38595. extra: 974/775,
  38596. bottom: 169/1143
  38597. }
  38598. },
  38599. sitting: {
  38600. height: math.unit(6 + 2/12, "feet"),
  38601. weight: math.unit(204, "lb"),
  38602. name: "Sitting",
  38603. image: {
  38604. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38605. extra: 1175/964,
  38606. bottom: 378/1553
  38607. }
  38608. },
  38609. },
  38610. [
  38611. {
  38612. name: "Normal",
  38613. height: math.unit(6 + 1/12, "feet"),
  38614. default: true
  38615. },
  38616. ]
  38617. ))
  38618. characterMakers.push(() => makeCharacter(
  38619. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38620. {
  38621. front: {
  38622. height: math.unit(6, "inches"),
  38623. name: "Front",
  38624. image: {
  38625. source: "./media/characters/tululi/front.svg",
  38626. extra: 1997/1876,
  38627. bottom: 20/2017
  38628. }
  38629. },
  38630. },
  38631. [
  38632. {
  38633. name: "Normal",
  38634. height: math.unit(6, "inches"),
  38635. default: true
  38636. },
  38637. ]
  38638. ))
  38639. characterMakers.push(() => makeCharacter(
  38640. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38641. {
  38642. front: {
  38643. height: math.unit(4 + 1/12, "feet"),
  38644. name: "Front",
  38645. image: {
  38646. source: "./media/characters/star/front.svg",
  38647. extra: 1493/1189,
  38648. bottom: 48/1541
  38649. }
  38650. },
  38651. },
  38652. [
  38653. {
  38654. name: "Normal",
  38655. height: math.unit(4 + 1/12, "feet"),
  38656. default: true
  38657. },
  38658. ]
  38659. ))
  38660. characterMakers.push(() => makeCharacter(
  38661. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38662. {
  38663. front: {
  38664. height: math.unit(6 + 3/12, "feet"),
  38665. name: "Front",
  38666. image: {
  38667. source: "./media/characters/comet/front.svg",
  38668. extra: 1681/1462,
  38669. bottom: 26/1707
  38670. }
  38671. },
  38672. },
  38673. [
  38674. {
  38675. name: "Normal",
  38676. height: math.unit(6 + 3/12, "feet"),
  38677. default: true
  38678. },
  38679. ]
  38680. ))
  38681. characterMakers.push(() => makeCharacter(
  38682. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38683. {
  38684. front: {
  38685. height: math.unit(950, "feet"),
  38686. name: "Front",
  38687. image: {
  38688. source: "./media/characters/vortex/front.svg",
  38689. extra: 1497/1434,
  38690. bottom: 56/1553
  38691. }
  38692. },
  38693. maw: {
  38694. height: math.unit(285, "feet"),
  38695. name: "Maw",
  38696. image: {
  38697. source: "./media/characters/vortex/maw.svg"
  38698. }
  38699. },
  38700. },
  38701. [
  38702. {
  38703. name: "Macro",
  38704. height: math.unit(950, "feet"),
  38705. default: true
  38706. },
  38707. ]
  38708. ))
  38709. characterMakers.push(() => makeCharacter(
  38710. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38711. {
  38712. front: {
  38713. height: math.unit(600, "feet"),
  38714. weight: math.unit(0.02, "grams"),
  38715. name: "Front",
  38716. image: {
  38717. source: "./media/characters/doodle/front.svg",
  38718. extra: 1578/1413,
  38719. bottom: 37/1615
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Macro",
  38726. height: math.unit(600, "feet"),
  38727. default: true
  38728. },
  38729. ]
  38730. ))
  38731. characterMakers.push(() => makeCharacter(
  38732. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38733. {
  38734. front: {
  38735. height: math.unit(6 + 6/12, "feet"),
  38736. name: "Front",
  38737. image: {
  38738. source: "./media/characters/jai/front.svg",
  38739. extra: 1645/1534,
  38740. bottom: 115/1760
  38741. }
  38742. },
  38743. },
  38744. [
  38745. {
  38746. name: "Normal",
  38747. height: math.unit(6 + 6/12, "feet"),
  38748. default: true
  38749. },
  38750. ]
  38751. ))
  38752. characterMakers.push(() => makeCharacter(
  38753. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38754. {
  38755. front: {
  38756. height: math.unit(6 + 8/12, "feet"),
  38757. name: "Front",
  38758. image: {
  38759. source: "./media/characters/pixel/front.svg",
  38760. extra: 1900/1735,
  38761. bottom: 63/1963
  38762. }
  38763. },
  38764. },
  38765. [
  38766. {
  38767. name: "Normal",
  38768. height: math.unit(6 + 8/12, "feet"),
  38769. default: true
  38770. },
  38771. ]
  38772. ))
  38773. characterMakers.push(() => makeCharacter(
  38774. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38775. {
  38776. back: {
  38777. height: math.unit(4 + 1/12, "feet"),
  38778. weight: math.unit(75, "lb"),
  38779. name: "Back",
  38780. image: {
  38781. source: "./media/characters/rhett/back.svg",
  38782. extra: 930/878,
  38783. bottom: 25/955
  38784. }
  38785. },
  38786. front: {
  38787. height: math.unit(4 + 1/12, "feet"),
  38788. weight: math.unit(75, "lb"),
  38789. name: "Front",
  38790. image: {
  38791. source: "./media/characters/rhett/front.svg",
  38792. extra: 1682/1586,
  38793. bottom: 92/1774
  38794. }
  38795. },
  38796. },
  38797. [
  38798. {
  38799. name: "Micro",
  38800. height: math.unit(8, "inches")
  38801. },
  38802. {
  38803. name: "Tiny",
  38804. height: math.unit(2, "feet")
  38805. },
  38806. {
  38807. name: "Normal",
  38808. height: math.unit(4 + 1/12, "feet"),
  38809. default: true
  38810. },
  38811. ]
  38812. ))
  38813. characterMakers.push(() => makeCharacter(
  38814. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38815. {
  38816. front: {
  38817. height: math.unit(3 + 3/12, "feet"),
  38818. name: "Front",
  38819. image: {
  38820. source: "./media/characters/penny/front.svg",
  38821. extra: 1406/1311,
  38822. bottom: 26/1432
  38823. }
  38824. },
  38825. },
  38826. [
  38827. {
  38828. name: "Normal",
  38829. height: math.unit(3 + 3/12, "feet"),
  38830. default: true
  38831. },
  38832. ]
  38833. ))
  38834. characterMakers.push(() => makeCharacter(
  38835. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38836. {
  38837. front: {
  38838. height: math.unit(4 + 11/12, "feet"),
  38839. name: "Front",
  38840. image: {
  38841. source: "./media/characters/monty/front.svg",
  38842. extra: 1479/1209,
  38843. bottom: 0/1479
  38844. }
  38845. },
  38846. },
  38847. [
  38848. {
  38849. name: "Normal",
  38850. height: math.unit(4 + 11/12, "feet"),
  38851. default: true
  38852. },
  38853. ]
  38854. ))
  38855. characterMakers.push(() => makeCharacter(
  38856. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38857. {
  38858. front: {
  38859. height: math.unit(8 + 4/12, "feet"),
  38860. name: "Front",
  38861. image: {
  38862. source: "./media/characters/sterling/front.svg",
  38863. extra: 1420/1236,
  38864. bottom: 27/1447
  38865. }
  38866. },
  38867. },
  38868. [
  38869. {
  38870. name: "Normal",
  38871. height: math.unit(8 + 4/12, "feet"),
  38872. default: true
  38873. },
  38874. ]
  38875. ))
  38876. characterMakers.push(() => makeCharacter(
  38877. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38878. {
  38879. front: {
  38880. height: math.unit(15, "feet"),
  38881. name: "Front",
  38882. image: {
  38883. source: "./media/characters/marble/front.svg",
  38884. extra: 973/937,
  38885. bottom: 32/1005
  38886. }
  38887. },
  38888. },
  38889. [
  38890. {
  38891. name: "Normal",
  38892. height: math.unit(15, "feet"),
  38893. default: true
  38894. },
  38895. ]
  38896. ))
  38897. characterMakers.push(() => makeCharacter(
  38898. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38899. {
  38900. front: {
  38901. height: math.unit(3, "inches"),
  38902. name: "Front",
  38903. image: {
  38904. source: "./media/characters/powder/front.svg",
  38905. extra: 1504/1334,
  38906. bottom: 518/2022
  38907. }
  38908. },
  38909. },
  38910. [
  38911. {
  38912. name: "Normal",
  38913. height: math.unit(3, "inches"),
  38914. default: true
  38915. },
  38916. ]
  38917. ))
  38918. characterMakers.push(() => makeCharacter(
  38919. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38920. {
  38921. front: {
  38922. height: math.unit(4 + 5/12, "feet"),
  38923. name: "Front",
  38924. image: {
  38925. source: "./media/characters/joey-raccoon/front.svg",
  38926. extra: 1273/1197,
  38927. bottom: 0/1273
  38928. }
  38929. },
  38930. },
  38931. [
  38932. {
  38933. name: "Normal",
  38934. height: math.unit(4 + 5/12, "feet"),
  38935. default: true
  38936. },
  38937. ]
  38938. ))
  38939. characterMakers.push(() => makeCharacter(
  38940. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38941. {
  38942. front: {
  38943. height: math.unit(8 + 4/12, "feet"),
  38944. name: "Front",
  38945. image: {
  38946. source: "./media/characters/vick/front.svg",
  38947. extra: 2187/2118,
  38948. bottom: 47/2234
  38949. }
  38950. },
  38951. },
  38952. [
  38953. {
  38954. name: "Normal",
  38955. height: math.unit(8 + 4/12, "feet"),
  38956. default: true
  38957. },
  38958. ]
  38959. ))
  38960. characterMakers.push(() => makeCharacter(
  38961. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38962. {
  38963. front: {
  38964. height: math.unit(5 + 5/12, "feet"),
  38965. name: "Front",
  38966. image: {
  38967. source: "./media/characters/mitsy/front.svg",
  38968. extra: 1842/1695,
  38969. bottom: 0/1842
  38970. }
  38971. },
  38972. },
  38973. [
  38974. {
  38975. name: "Normal",
  38976. height: math.unit(5 + 5/12, "feet"),
  38977. default: true
  38978. },
  38979. ]
  38980. ))
  38981. characterMakers.push(() => makeCharacter(
  38982. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38983. {
  38984. front: {
  38985. height: math.unit(6 + 3/12, "feet"),
  38986. name: "Front",
  38987. image: {
  38988. source: "./media/characters/silvy/front.svg",
  38989. extra: 1995/1836,
  38990. bottom: 225/2220
  38991. }
  38992. },
  38993. },
  38994. [
  38995. {
  38996. name: "Normal",
  38997. height: math.unit(6 + 3/12, "feet"),
  38998. default: true
  38999. },
  39000. ]
  39001. ))
  39002. characterMakers.push(() => makeCharacter(
  39003. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39004. {
  39005. front: {
  39006. height: math.unit(3 + 8/12, "feet"),
  39007. name: "Front",
  39008. image: {
  39009. source: "./media/characters/rodney/front.svg",
  39010. extra: 1956/1747,
  39011. bottom: 31/1987
  39012. }
  39013. },
  39014. frontDressed: {
  39015. height: math.unit(2.9, "feet"),
  39016. name: "Front (Dressed)",
  39017. image: {
  39018. source: "./media/characters/rodney/front-dressed.svg",
  39019. extra: 1382/1241,
  39020. bottom: 385/1767
  39021. }
  39022. },
  39023. },
  39024. [
  39025. {
  39026. name: "Normal",
  39027. height: math.unit(3 + 8/12, "feet"),
  39028. default: true
  39029. },
  39030. ]
  39031. ))
  39032. characterMakers.push(() => makeCharacter(
  39033. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39034. {
  39035. front: {
  39036. height: math.unit(5 + 9/12, "feet"),
  39037. weight: math.unit(194, "lbs"),
  39038. name: "Front",
  39039. image: {
  39040. source: "./media/characters/zakail-sudekai/front.svg",
  39041. extra: 2696/2533,
  39042. bottom: 248/2944
  39043. }
  39044. },
  39045. maw: {
  39046. height: math.unit(1.35, "feet"),
  39047. name: "Maw",
  39048. image: {
  39049. source: "./media/characters/zakail-sudekai/maw.svg"
  39050. }
  39051. },
  39052. },
  39053. [
  39054. {
  39055. name: "Normal",
  39056. height: math.unit(5 + 9/12, "feet"),
  39057. default: true
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39063. {
  39064. front: {
  39065. height: math.unit(8 + 4/12, "feet"),
  39066. weight: math.unit(1200, "lb"),
  39067. name: "Front",
  39068. image: {
  39069. source: "./media/characters/eleanor/front.svg",
  39070. extra: 1226/1192,
  39071. bottom: 52/1278
  39072. }
  39073. },
  39074. back: {
  39075. height: math.unit(8 + 4/12, "feet"),
  39076. weight: math.unit(1200, "lb"),
  39077. name: "Back",
  39078. image: {
  39079. source: "./media/characters/eleanor/back.svg",
  39080. extra: 1242/1184,
  39081. bottom: 60/1302
  39082. }
  39083. },
  39084. head: {
  39085. height: math.unit(2.62, "feet"),
  39086. name: "Head",
  39087. image: {
  39088. source: "./media/characters/eleanor/head.svg"
  39089. }
  39090. },
  39091. },
  39092. [
  39093. {
  39094. name: "Normal",
  39095. height: math.unit(8 + 4/12, "feet"),
  39096. default: true
  39097. },
  39098. ]
  39099. ))
  39100. characterMakers.push(() => makeCharacter(
  39101. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39102. {
  39103. front: {
  39104. height: math.unit(8 + 4/12, "feet"),
  39105. weight: math.unit(750, "lb"),
  39106. name: "Front",
  39107. image: {
  39108. source: "./media/characters/tanya/front.svg",
  39109. extra: 1749/1615,
  39110. bottom: 33/1782
  39111. }
  39112. },
  39113. },
  39114. [
  39115. {
  39116. name: "Normal",
  39117. height: math.unit(8 + 4/12, "feet"),
  39118. default: true
  39119. },
  39120. ]
  39121. ))
  39122. characterMakers.push(() => makeCharacter(
  39123. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39124. {
  39125. front: {
  39126. height: math.unit(5, "feet"),
  39127. weight: math.unit(225, "lb"),
  39128. name: "Front",
  39129. image: {
  39130. source: "./media/characters/cindy/front.svg",
  39131. extra: 1320/1250,
  39132. bottom: 42/1362
  39133. }
  39134. },
  39135. frontDressed: {
  39136. height: math.unit(5, "feet"),
  39137. weight: math.unit(225, "lb"),
  39138. name: "Front (Dressed)",
  39139. image: {
  39140. source: "./media/characters/cindy/front-dressed.svg",
  39141. extra: 1320/1250,
  39142. bottom: 42/1362
  39143. }
  39144. },
  39145. back: {
  39146. height: math.unit(5, "feet"),
  39147. weight: math.unit(225, "lb"),
  39148. name: "Back",
  39149. image: {
  39150. source: "./media/characters/cindy/back.svg",
  39151. extra: 1384/1346,
  39152. bottom: 14/1398
  39153. }
  39154. },
  39155. },
  39156. [
  39157. {
  39158. name: "Normal",
  39159. height: math.unit(5, "feet"),
  39160. default: true
  39161. },
  39162. ]
  39163. ))
  39164. characterMakers.push(() => makeCharacter(
  39165. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39166. {
  39167. front: {
  39168. height: math.unit(6 + 9/12, "feet"),
  39169. weight: math.unit(440, "lb"),
  39170. name: "Front",
  39171. image: {
  39172. source: "./media/characters/wilbur-owen/front.svg",
  39173. extra: 1575/1448,
  39174. bottom: 72/1647
  39175. }
  39176. },
  39177. back: {
  39178. height: math.unit(6 + 9/12, "feet"),
  39179. weight: math.unit(440, "lb"),
  39180. name: "Back",
  39181. image: {
  39182. source: "./media/characters/wilbur-owen/back.svg",
  39183. extra: 1578/1445,
  39184. bottom: 36/1614
  39185. }
  39186. },
  39187. },
  39188. [
  39189. {
  39190. name: "Normal",
  39191. height: math.unit(6 + 9/12, "feet"),
  39192. default: true
  39193. },
  39194. ]
  39195. ))
  39196. characterMakers.push(() => makeCharacter(
  39197. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39198. {
  39199. front: {
  39200. height: math.unit(6 + 5/12, "feet"),
  39201. weight: math.unit(650, "lb"),
  39202. name: "Front",
  39203. image: {
  39204. source: "./media/characters/keegan/front.svg",
  39205. extra: 2387/2198,
  39206. bottom: 33/2420
  39207. }
  39208. },
  39209. side: {
  39210. height: math.unit(6 + 5/12, "feet"),
  39211. weight: math.unit(650, "lb"),
  39212. name: "Side",
  39213. image: {
  39214. source: "./media/characters/keegan/side.svg",
  39215. extra: 2390/2202,
  39216. bottom: 47/2437
  39217. }
  39218. },
  39219. back: {
  39220. height: math.unit(6 + 5/12, "feet"),
  39221. weight: math.unit(650, "lb"),
  39222. name: "Back",
  39223. image: {
  39224. source: "./media/characters/keegan/back.svg",
  39225. extra: 2418/2268,
  39226. bottom: 15/2433
  39227. }
  39228. },
  39229. frontSfw: {
  39230. height: math.unit(6 + 5/12, "feet"),
  39231. weight: math.unit(650, "lb"),
  39232. name: "Front (SFW)",
  39233. image: {
  39234. source: "./media/characters/keegan/front-sfw.svg",
  39235. extra: 2387/2198,
  39236. bottom: 33/2420
  39237. }
  39238. },
  39239. beans: {
  39240. height: math.unit(1.85, "feet"),
  39241. name: "Beans",
  39242. image: {
  39243. source: "./media/characters/keegan/beans.svg"
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Normal",
  39250. height: math.unit(6 + 5/12, "feet"),
  39251. default: true
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39257. {
  39258. front: {
  39259. height: math.unit(9, "feet"),
  39260. name: "Front",
  39261. image: {
  39262. source: "./media/characters/colton/front.svg",
  39263. extra: 1589/1326,
  39264. bottom: 139/1728
  39265. }
  39266. },
  39267. },
  39268. [
  39269. {
  39270. name: "Normal",
  39271. height: math.unit(9, "feet"),
  39272. default: true
  39273. },
  39274. ]
  39275. ))
  39276. characterMakers.push(() => makeCharacter(
  39277. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39278. {
  39279. front: {
  39280. height: math.unit(2 + 9/12, "feet"),
  39281. name: "Front",
  39282. image: {
  39283. source: "./media/characters/bora/front.svg",
  39284. extra: 1265/1250,
  39285. bottom: 24/1289
  39286. }
  39287. },
  39288. },
  39289. [
  39290. {
  39291. name: "Normal",
  39292. height: math.unit(2 + 9/12, "feet"),
  39293. default: true
  39294. },
  39295. ]
  39296. ))
  39297. characterMakers.push(() => makeCharacter(
  39298. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39299. {
  39300. front: {
  39301. height: math.unit(8, "feet"),
  39302. name: "Front",
  39303. image: {
  39304. source: "./media/characters/myu-myu/front.svg",
  39305. extra: 1949/1857,
  39306. bottom: 90/2039
  39307. }
  39308. },
  39309. },
  39310. [
  39311. {
  39312. name: "Normal",
  39313. height: math.unit(8, "feet"),
  39314. default: true
  39315. },
  39316. {
  39317. name: "Big",
  39318. height: math.unit(15, "feet")
  39319. },
  39320. {
  39321. name: "BIG",
  39322. height: math.unit(25, "feet")
  39323. },
  39324. ]
  39325. ))
  39326. characterMakers.push(() => makeCharacter(
  39327. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39328. {
  39329. side: {
  39330. height: math.unit(7 + 5/12, "feet"),
  39331. weight: math.unit(2800, "lb"),
  39332. name: "Side",
  39333. image: {
  39334. source: "./media/characters/haloren/side.svg",
  39335. extra: 1793/409,
  39336. bottom: 59/1852
  39337. }
  39338. },
  39339. frontPaw: {
  39340. height: math.unit(2.36, "feet"),
  39341. name: "Front paw",
  39342. image: {
  39343. source: "./media/characters/haloren/front-paw.svg"
  39344. }
  39345. },
  39346. hindPaw: {
  39347. height: math.unit(3.18, "feet"),
  39348. name: "Hind paw",
  39349. image: {
  39350. source: "./media/characters/haloren/hind-paw.svg"
  39351. }
  39352. },
  39353. maw: {
  39354. height: math.unit(5.05, "feet"),
  39355. name: "Maw",
  39356. image: {
  39357. source: "./media/characters/haloren/maw.svg"
  39358. }
  39359. },
  39360. dick: {
  39361. height: math.unit(2.90, "feet"),
  39362. name: "Dick",
  39363. image: {
  39364. source: "./media/characters/haloren/dick.svg"
  39365. }
  39366. },
  39367. },
  39368. [
  39369. {
  39370. name: "Normal",
  39371. height: math.unit(7 + 5/12, "feet"),
  39372. default: true
  39373. },
  39374. {
  39375. name: "Enhanced",
  39376. height: math.unit(14 + 3/12, "feet")
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39382. {
  39383. front: {
  39384. height: math.unit(171, "cm"),
  39385. name: "Front",
  39386. image: {
  39387. source: "./media/characters/kimmy/front.svg",
  39388. extra: 1491/1435,
  39389. bottom: 53/1544
  39390. }
  39391. },
  39392. },
  39393. [
  39394. {
  39395. name: "Small",
  39396. height: math.unit(9, "cm")
  39397. },
  39398. {
  39399. name: "Normal",
  39400. height: math.unit(171, "cm"),
  39401. default: true
  39402. },
  39403. ]
  39404. ))
  39405. characterMakers.push(() => makeCharacter(
  39406. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39407. {
  39408. front: {
  39409. height: math.unit(8, "feet"),
  39410. weight: math.unit(300, "lb"),
  39411. name: "Front",
  39412. image: {
  39413. source: "./media/characters/galeboomer/front.svg",
  39414. extra: 4651/4415,
  39415. bottom: 162/4813
  39416. }
  39417. },
  39418. back: {
  39419. height: math.unit(8, "feet"),
  39420. weight: math.unit(300, "lb"),
  39421. name: "Back",
  39422. image: {
  39423. source: "./media/characters/galeboomer/back.svg",
  39424. extra: 4544/4314,
  39425. bottom: 16/4560
  39426. }
  39427. },
  39428. frontAlt: {
  39429. height: math.unit(8, "feet"),
  39430. weight: math.unit(300, "lb"),
  39431. name: "Front (Alt)",
  39432. image: {
  39433. source: "./media/characters/galeboomer/front-alt.svg",
  39434. extra: 4458/4228,
  39435. bottom: 68/4526
  39436. }
  39437. },
  39438. maw: {
  39439. height: math.unit(1.2, "feet"),
  39440. name: "Maw",
  39441. image: {
  39442. source: "./media/characters/galeboomer/maw.svg"
  39443. }
  39444. },
  39445. },
  39446. [
  39447. {
  39448. name: "Normal",
  39449. height: math.unit(8, "feet"),
  39450. default: true
  39451. },
  39452. ]
  39453. ))
  39454. characterMakers.push(() => makeCharacter(
  39455. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39456. {
  39457. front: {
  39458. height: math.unit(5 + 9/12, "feet"),
  39459. weight: math.unit(120, "lb"),
  39460. name: "Front",
  39461. image: {
  39462. source: "./media/characters/chyr/front.svg",
  39463. extra: 1323/1254,
  39464. bottom: 63/1386
  39465. }
  39466. },
  39467. back: {
  39468. height: math.unit(5 + 9/12, "feet"),
  39469. weight: math.unit(120, "lb"),
  39470. name: "Back",
  39471. image: {
  39472. source: "./media/characters/chyr/back.svg",
  39473. extra: 1323/1252,
  39474. bottom: 48/1371
  39475. }
  39476. },
  39477. },
  39478. [
  39479. {
  39480. name: "Normal",
  39481. height: math.unit(5 + 9/12, "feet"),
  39482. default: true
  39483. },
  39484. ]
  39485. ))
  39486. characterMakers.push(() => makeCharacter(
  39487. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39488. {
  39489. front: {
  39490. height: math.unit(7, "feet"),
  39491. weight: math.unit(310, "lb"),
  39492. name: "Front",
  39493. image: {
  39494. source: "./media/characters/solarus/front.svg",
  39495. extra: 2415/2021,
  39496. bottom: 103/2518
  39497. }
  39498. },
  39499. back: {
  39500. height: math.unit(7, "feet"),
  39501. weight: math.unit(310, "lb"),
  39502. name: "Back",
  39503. image: {
  39504. source: "./media/characters/solarus/back.svg",
  39505. extra: 2463/2089,
  39506. bottom: 79/2542
  39507. }
  39508. },
  39509. },
  39510. [
  39511. {
  39512. name: "Normal",
  39513. height: math.unit(7, "feet"),
  39514. default: true
  39515. },
  39516. ]
  39517. ))
  39518. characterMakers.push(() => makeCharacter(
  39519. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39520. {
  39521. front: {
  39522. height: math.unit(16, "feet"),
  39523. name: "Front",
  39524. image: {
  39525. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39526. extra: 1844/1780,
  39527. bottom: 58/1902
  39528. }
  39529. },
  39530. winterCoat: {
  39531. height: math.unit(16, "feet"),
  39532. name: "Winter Coat",
  39533. image: {
  39534. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39535. extra: 1807/1775,
  39536. bottom: 69/1876
  39537. }
  39538. },
  39539. },
  39540. [
  39541. {
  39542. name: "Normal",
  39543. height: math.unit(16, "feet"),
  39544. default: true
  39545. },
  39546. {
  39547. name: "Chicago Size",
  39548. height: math.unit(560, "feet")
  39549. },
  39550. ]
  39551. ))
  39552. characterMakers.push(() => makeCharacter(
  39553. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39554. {
  39555. front: {
  39556. height: math.unit(11 + 6/12, "feet"),
  39557. weight: math.unit(1366, "lb"),
  39558. name: "Front",
  39559. image: {
  39560. source: "./media/characters/lexor/front.svg",
  39561. extra: 1560/1481,
  39562. bottom: 211/1771
  39563. }
  39564. },
  39565. back: {
  39566. height: math.unit(11 + 6/12, "feet"),
  39567. weight: math.unit(1366, "lb"),
  39568. name: "Back",
  39569. image: {
  39570. source: "./media/characters/lexor/back.svg",
  39571. extra: 1614/1533,
  39572. bottom: 76/1690
  39573. }
  39574. },
  39575. maw: {
  39576. height: math.unit(3, "feet"),
  39577. name: "Maw",
  39578. image: {
  39579. source: "./media/characters/lexor/maw.svg"
  39580. }
  39581. },
  39582. dick: {
  39583. height: math.unit(2.59, "feet"),
  39584. name: "Dick",
  39585. image: {
  39586. source: "./media/characters/lexor/dick.svg"
  39587. }
  39588. },
  39589. },
  39590. [
  39591. {
  39592. name: "Normal",
  39593. height: math.unit(11 + 6/12, "feet"),
  39594. default: true
  39595. },
  39596. ]
  39597. ))
  39598. characterMakers.push(() => makeCharacter(
  39599. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39600. {
  39601. front: {
  39602. height: math.unit(5 + 8/12, "feet"),
  39603. name: "Front",
  39604. image: {
  39605. source: "./media/characters/magnum/front.svg",
  39606. extra: 942/855,
  39607. bottom: 26/968
  39608. }
  39609. },
  39610. },
  39611. [
  39612. {
  39613. name: "Normal",
  39614. height: math.unit(5 + 8/12, "feet"),
  39615. default: true
  39616. },
  39617. ]
  39618. ))
  39619. characterMakers.push(() => makeCharacter(
  39620. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39621. {
  39622. front: {
  39623. height: math.unit(18 + 4/12, "feet"),
  39624. weight: math.unit(1500, "kg"),
  39625. name: "Front",
  39626. image: {
  39627. source: "./media/characters/solas-sharpsman/front.svg",
  39628. extra: 1698/1589,
  39629. bottom: 0/1698
  39630. }
  39631. },
  39632. },
  39633. [
  39634. {
  39635. name: "Normal",
  39636. height: math.unit(18 + 4/12, "feet"),
  39637. default: true
  39638. },
  39639. ]
  39640. ))
  39641. characterMakers.push(() => makeCharacter(
  39642. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39643. {
  39644. front: {
  39645. height: math.unit(5 + 5/12, "feet"),
  39646. weight: math.unit(180, "lb"),
  39647. name: "Front",
  39648. image: {
  39649. source: "./media/characters/october/front.svg",
  39650. extra: 1800/1650,
  39651. bottom: 0/1800
  39652. }
  39653. },
  39654. frontNsfw: {
  39655. height: math.unit(5 + 5/12, "feet"),
  39656. weight: math.unit(180, "lb"),
  39657. name: "Front (NSFW)",
  39658. image: {
  39659. source: "./media/characters/october/front-nsfw.svg",
  39660. extra: 1392/1307,
  39661. bottom: 42/1434
  39662. }
  39663. },
  39664. },
  39665. [
  39666. {
  39667. name: "Normal",
  39668. height: math.unit(5 + 5/12, "feet"),
  39669. default: true
  39670. },
  39671. ]
  39672. ))
  39673. characterMakers.push(() => makeCharacter(
  39674. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39675. {
  39676. front: {
  39677. height: math.unit(8 + 6/12, "feet"),
  39678. name: "Front",
  39679. image: {
  39680. source: "./media/characters/essynkardi/front.svg",
  39681. extra: 1541/1457,
  39682. bottom: 47/1588
  39683. }
  39684. },
  39685. },
  39686. [
  39687. {
  39688. name: "Normal",
  39689. height: math.unit(8 + 6/12, "feet"),
  39690. default: true
  39691. },
  39692. ]
  39693. ))
  39694. characterMakers.push(() => makeCharacter(
  39695. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39696. {
  39697. front: {
  39698. height: math.unit(6 + 6/12, "feet"),
  39699. weight: math.unit(7, "lb"),
  39700. name: "Front",
  39701. image: {
  39702. source: "./media/characters/icky/front.svg",
  39703. extra: 813/782,
  39704. bottom: 66/879
  39705. }
  39706. },
  39707. back: {
  39708. height: math.unit(6 + 6/12, "feet"),
  39709. weight: math.unit(7, "lb"),
  39710. name: "Back",
  39711. image: {
  39712. source: "./media/characters/icky/back.svg",
  39713. extra: 754/735,
  39714. bottom: 56/810
  39715. }
  39716. },
  39717. },
  39718. [
  39719. {
  39720. name: "Normal",
  39721. height: math.unit(6 + 6/12, "feet"),
  39722. default: true
  39723. },
  39724. ]
  39725. ))
  39726. characterMakers.push(() => makeCharacter(
  39727. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39728. {
  39729. front: {
  39730. height: math.unit(15, "feet"),
  39731. name: "Front",
  39732. image: {
  39733. source: "./media/characters/rojas/front.svg",
  39734. extra: 1462/1408,
  39735. bottom: 95/1557
  39736. }
  39737. },
  39738. back: {
  39739. height: math.unit(15, "feet"),
  39740. name: "Back",
  39741. image: {
  39742. source: "./media/characters/rojas/back.svg",
  39743. extra: 1023/954,
  39744. bottom: 28/1051
  39745. }
  39746. },
  39747. },
  39748. [
  39749. {
  39750. name: "Normal",
  39751. height: math.unit(15, "feet"),
  39752. default: true
  39753. },
  39754. ]
  39755. ))
  39756. characterMakers.push(() => makeCharacter(
  39757. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39758. {
  39759. frontHuman: {
  39760. height: math.unit(5 + 7/12, "feet"),
  39761. name: "Front (Human)",
  39762. image: {
  39763. source: "./media/characters/alek-dryagan/front-human.svg",
  39764. extra: 1687/1667,
  39765. bottom: 69/1756
  39766. }
  39767. },
  39768. backHuman: {
  39769. height: math.unit(5 + 7/12, "feet"),
  39770. name: "Back (Human)",
  39771. image: {
  39772. source: "./media/characters/alek-dryagan/back-human.svg",
  39773. extra: 1670/1649,
  39774. bottom: 65/1735
  39775. }
  39776. },
  39777. frontDemi: {
  39778. height: math.unit(65, "feet"),
  39779. name: "Front (Demi)",
  39780. image: {
  39781. source: "./media/characters/alek-dryagan/front-demi.svg",
  39782. extra: 1669/1642,
  39783. bottom: 49/1718
  39784. }
  39785. },
  39786. backDemi: {
  39787. height: math.unit(65, "feet"),
  39788. name: "Back (Demi)",
  39789. image: {
  39790. source: "./media/characters/alek-dryagan/back-demi.svg",
  39791. extra: 1658/1637,
  39792. bottom: 40/1698
  39793. }
  39794. },
  39795. mawHuman: {
  39796. height: math.unit(0.3, "feet"),
  39797. name: "Maw (Human)",
  39798. image: {
  39799. source: "./media/characters/alek-dryagan/maw-human.svg"
  39800. }
  39801. },
  39802. mawDemi: {
  39803. height: math.unit(3.8, "feet"),
  39804. name: "Maw (Demi)",
  39805. image: {
  39806. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39807. }
  39808. },
  39809. },
  39810. [
  39811. {
  39812. name: "Normal",
  39813. height: math.unit(5 + 7/12, "feet"),
  39814. default: true
  39815. },
  39816. ]
  39817. ))
  39818. characterMakers.push(() => makeCharacter(
  39819. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39820. {
  39821. frontHuman: {
  39822. height: math.unit(5 + 2/12, "feet"),
  39823. name: "Front (Human)",
  39824. image: {
  39825. source: "./media/characters/gen/front-human.svg",
  39826. extra: 1627/1538,
  39827. bottom: 71/1698
  39828. }
  39829. },
  39830. backHuman: {
  39831. height: math.unit(5 + 2/12, "feet"),
  39832. name: "Back (Human)",
  39833. image: {
  39834. source: "./media/characters/gen/back-human.svg",
  39835. extra: 1638/1548,
  39836. bottom: 69/1707
  39837. }
  39838. },
  39839. frontDemi: {
  39840. height: math.unit(5 + 2/12, "feet"),
  39841. name: "Front (Demi)",
  39842. image: {
  39843. source: "./media/characters/gen/front-demi.svg",
  39844. extra: 1627/1538,
  39845. bottom: 71/1698
  39846. }
  39847. },
  39848. backDemi: {
  39849. height: math.unit(5 + 2/12, "feet"),
  39850. name: "Back (Demi)",
  39851. image: {
  39852. source: "./media/characters/gen/back-demi.svg",
  39853. extra: 1638/1548,
  39854. bottom: 69/1707
  39855. }
  39856. },
  39857. },
  39858. [
  39859. {
  39860. name: "Normal",
  39861. height: math.unit(5 + 2/12, "feet"),
  39862. default: true
  39863. },
  39864. ]
  39865. ))
  39866. characterMakers.push(() => makeCharacter(
  39867. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39868. {
  39869. frontImp: {
  39870. height: math.unit(1 + 11/12, "feet"),
  39871. name: "Front (Imp)",
  39872. image: {
  39873. source: "./media/characters/max-kobold/front-imp.svg",
  39874. extra: 1238/1134,
  39875. bottom: 81/1319
  39876. }
  39877. },
  39878. backImp: {
  39879. height: math.unit(1 + 11/12, "feet"),
  39880. name: "Back (Imp)",
  39881. image: {
  39882. source: "./media/characters/max-kobold/back-imp.svg",
  39883. extra: 1334/1175,
  39884. bottom: 34/1368
  39885. }
  39886. },
  39887. frontDemi: {
  39888. height: math.unit(5 + 9/12, "feet"),
  39889. name: "Front (Demi)",
  39890. image: {
  39891. source: "./media/characters/max-kobold/front-demi.svg",
  39892. extra: 1715/1685,
  39893. bottom: 54/1769
  39894. }
  39895. },
  39896. backDemi: {
  39897. height: math.unit(5 + 9/12, "feet"),
  39898. name: "Back (Demi)",
  39899. image: {
  39900. source: "./media/characters/max-kobold/back-demi.svg",
  39901. extra: 1752/1729,
  39902. bottom: 41/1793
  39903. }
  39904. },
  39905. handImp: {
  39906. height: math.unit(0.45, "feet"),
  39907. name: "Hand (Imp)",
  39908. image: {
  39909. source: "./media/characters/max-kobold/hand.svg"
  39910. }
  39911. },
  39912. pawImp: {
  39913. height: math.unit(0.46, "feet"),
  39914. name: "Paw (Imp)",
  39915. image: {
  39916. source: "./media/characters/max-kobold/paw.svg"
  39917. }
  39918. },
  39919. handDemi: {
  39920. height: math.unit(0.80, "feet"),
  39921. name: "Hand (Demi)",
  39922. image: {
  39923. source: "./media/characters/max-kobold/hand.svg"
  39924. }
  39925. },
  39926. pawDemi: {
  39927. height: math.unit(1.1, "feet"),
  39928. name: "Paw (Demi)",
  39929. image: {
  39930. source: "./media/characters/max-kobold/paw.svg"
  39931. }
  39932. },
  39933. headImp: {
  39934. height: math.unit(1.33, "feet"),
  39935. name: "Head (Imp)",
  39936. image: {
  39937. source: "./media/characters/max-kobold/head-imp.svg"
  39938. }
  39939. },
  39940. mawImp: {
  39941. height: math.unit(0.75, "feet"),
  39942. name: "Maw (Imp)",
  39943. image: {
  39944. source: "./media/characters/max-kobold/maw-imp.svg"
  39945. }
  39946. },
  39947. mawDemi: {
  39948. height: math.unit(0.42, "feet"),
  39949. name: "Maw (Demi)",
  39950. image: {
  39951. source: "./media/characters/max-kobold/maw-demi.svg"
  39952. }
  39953. },
  39954. },
  39955. [
  39956. {
  39957. name: "Normal",
  39958. height: math.unit(1 + 11/12, "feet"),
  39959. default: true
  39960. },
  39961. ]
  39962. ))
  39963. characterMakers.push(() => makeCharacter(
  39964. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39965. {
  39966. front: {
  39967. height: math.unit(7 + 5/12, "feet"),
  39968. name: "Front",
  39969. image: {
  39970. source: "./media/characters/carbon/front.svg",
  39971. extra: 1754/1689,
  39972. bottom: 65/1819
  39973. }
  39974. },
  39975. back: {
  39976. height: math.unit(7 + 5/12, "feet"),
  39977. name: "Back",
  39978. image: {
  39979. source: "./media/characters/carbon/back.svg",
  39980. extra: 1762/1695,
  39981. bottom: 24/1786
  39982. }
  39983. },
  39984. frontGigantamax: {
  39985. height: math.unit(150, "feet"),
  39986. name: "Front (Gigantamax)",
  39987. image: {
  39988. source: "./media/characters/carbon/front-gigantamax.svg",
  39989. extra: 1826/1669,
  39990. bottom: 59/1885
  39991. }
  39992. },
  39993. backGigantamax: {
  39994. height: math.unit(150, "feet"),
  39995. name: "Back (Gigantamax)",
  39996. image: {
  39997. source: "./media/characters/carbon/back-gigantamax.svg",
  39998. extra: 1796/1653,
  39999. bottom: 53/1849
  40000. }
  40001. },
  40002. maw: {
  40003. height: math.unit(0.48, "feet"),
  40004. name: "Maw",
  40005. image: {
  40006. source: "./media/characters/carbon/maw.svg"
  40007. }
  40008. },
  40009. mawGigantamax: {
  40010. height: math.unit(7.5, "feet"),
  40011. name: "Maw (Gigantamax)",
  40012. image: {
  40013. source: "./media/characters/carbon/maw-gigantamax.svg"
  40014. }
  40015. },
  40016. },
  40017. [
  40018. {
  40019. name: "Normal",
  40020. height: math.unit(7 + 5/12, "feet"),
  40021. default: true
  40022. },
  40023. ]
  40024. ))
  40025. characterMakers.push(() => makeCharacter(
  40026. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40027. {
  40028. front: {
  40029. height: math.unit(6, "feet"),
  40030. name: "Front",
  40031. image: {
  40032. source: "./media/characters/maverick/front.svg",
  40033. extra: 1672/1661,
  40034. bottom: 85/1757
  40035. }
  40036. },
  40037. back: {
  40038. height: math.unit(6, "feet"),
  40039. name: "Back",
  40040. image: {
  40041. source: "./media/characters/maverick/back.svg",
  40042. extra: 1642/1631,
  40043. bottom: 38/1680
  40044. }
  40045. },
  40046. },
  40047. [
  40048. {
  40049. name: "Normal",
  40050. height: math.unit(6, "feet"),
  40051. default: true
  40052. },
  40053. ]
  40054. ))
  40055. characterMakers.push(() => makeCharacter(
  40056. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40057. {
  40058. front: {
  40059. height: math.unit(15, "feet"),
  40060. weight: math.unit(615, "lb"),
  40061. name: "Front",
  40062. image: {
  40063. source: "./media/characters/grockle/front.svg",
  40064. extra: 1535/1427,
  40065. bottom: 56/1591
  40066. }
  40067. },
  40068. },
  40069. [
  40070. {
  40071. name: "Normal",
  40072. height: math.unit(15, "feet"),
  40073. default: true
  40074. },
  40075. {
  40076. name: "Large",
  40077. height: math.unit(150, "feet")
  40078. },
  40079. {
  40080. name: "Macro",
  40081. height: math.unit(1876, "feet")
  40082. },
  40083. {
  40084. name: "Mega Macro",
  40085. height: math.unit(121940, "feet")
  40086. },
  40087. {
  40088. name: "Giga Macro",
  40089. height: math.unit(750, "km")
  40090. },
  40091. {
  40092. name: "Tera Macro",
  40093. height: math.unit(750000, "km")
  40094. },
  40095. {
  40096. name: "Galactic",
  40097. height: math.unit(1.4e5, "km")
  40098. },
  40099. {
  40100. name: "Godlike",
  40101. height: math.unit(9.8e280, "galaxies")
  40102. },
  40103. ]
  40104. ))
  40105. characterMakers.push(() => makeCharacter(
  40106. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40107. {
  40108. front: {
  40109. height: math.unit(11, "meters"),
  40110. weight: math.unit(20, "tonnes"),
  40111. name: "Front",
  40112. image: {
  40113. source: "./media/characters/alistair/front.svg",
  40114. extra: 1265/1009,
  40115. bottom: 93/1358
  40116. }
  40117. },
  40118. },
  40119. [
  40120. {
  40121. name: "Normal",
  40122. height: math.unit(11, "meters"),
  40123. default: true
  40124. },
  40125. ]
  40126. ))
  40127. characterMakers.push(() => makeCharacter(
  40128. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40129. {
  40130. front: {
  40131. height: math.unit(5 + 8/12, "feet"),
  40132. name: "Front",
  40133. image: {
  40134. source: "./media/characters/haruka/front.svg",
  40135. extra: 2012/1952,
  40136. bottom: 0/2012
  40137. }
  40138. },
  40139. },
  40140. [
  40141. {
  40142. name: "Normal",
  40143. height: math.unit(5 + 8/12, "feet"),
  40144. default: true
  40145. },
  40146. ]
  40147. ))
  40148. characterMakers.push(() => makeCharacter(
  40149. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40150. {
  40151. back: {
  40152. height: math.unit(9, "feet"),
  40153. name: "Back",
  40154. image: {
  40155. source: "./media/characters/vivian-sylveon/back.svg",
  40156. extra: 1853/1714,
  40157. bottom: 0/1853
  40158. }
  40159. },
  40160. hyper: {
  40161. height: math.unit(5.58, "feet"),
  40162. name: "Hyper",
  40163. preyCapacity: math.unit(2.80616218797, "m^3"),
  40164. image: {
  40165. source: "./media/characters/vivian-sylveon/hyper.svg",
  40166. extra: 999/676,
  40167. bottom: 697/1696
  40168. },
  40169. },
  40170. paw: {
  40171. height: math.unit(1.8, "feet"),
  40172. name: "Paw",
  40173. image: {
  40174. source: "./media/characters/vivian-sylveon/paw.svg"
  40175. }
  40176. },
  40177. danger: {
  40178. height: math.unit(7.5, "feet"),
  40179. name: "DANGER",
  40180. image: {
  40181. source: "./media/characters/vivian-sylveon/danger.svg"
  40182. }
  40183. },
  40184. },
  40185. [
  40186. {
  40187. name: "Normal",
  40188. height: math.unit(9, "feet"),
  40189. default: true
  40190. },
  40191. {
  40192. name: "Macro",
  40193. height: math.unit(500, "feet")
  40194. },
  40195. {
  40196. name: "Megamacro",
  40197. height: math.unit(600, "miles")
  40198. },
  40199. {
  40200. name: "Gigamacro",
  40201. height: math.unit(30000, "miles")
  40202. },
  40203. ]
  40204. ))
  40205. characterMakers.push(() => makeCharacter(
  40206. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40207. {
  40208. anthro: {
  40209. height: math.unit(5 + 10/12, "feet"),
  40210. weight: math.unit(100, "lb"),
  40211. name: "Anthro",
  40212. image: {
  40213. source: "./media/characters/daiki/anthro.svg",
  40214. extra: 1115/1027,
  40215. bottom: 69/1184
  40216. }
  40217. },
  40218. feral: {
  40219. height: math.unit(200, "feet"),
  40220. name: "Feral",
  40221. image: {
  40222. source: "./media/characters/daiki/feral.svg",
  40223. extra: 1256/313,
  40224. bottom: 39/1295
  40225. }
  40226. },
  40227. feralHead: {
  40228. height: math.unit(171, "feet"),
  40229. name: "Feral Head",
  40230. image: {
  40231. source: "./media/characters/daiki/feral-head.svg"
  40232. }
  40233. },
  40234. manaDragon: {
  40235. height: math.unit(170, "meters"),
  40236. name: "Mana-dragon",
  40237. image: {
  40238. source: "./media/characters/daiki/mana-dragon.svg",
  40239. extra: 763/420,
  40240. bottom: 97/860
  40241. }
  40242. },
  40243. },
  40244. [
  40245. {
  40246. name: "Normal",
  40247. height: math.unit(5 + 10/12, "feet"),
  40248. default: true
  40249. },
  40250. ]
  40251. ))
  40252. characterMakers.push(() => makeCharacter(
  40253. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40254. {
  40255. fullyEquippedFront: {
  40256. height: math.unit(3 + 1/12, "feet"),
  40257. weight: math.unit(24, "lb"),
  40258. name: "Fully Equipped (Front)",
  40259. image: {
  40260. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40261. extra: 687/605,
  40262. bottom: 18/705
  40263. }
  40264. },
  40265. fullyEquippedBack: {
  40266. height: math.unit(3 + 1/12, "feet"),
  40267. weight: math.unit(24, "lb"),
  40268. name: "Fully Equipped (Back)",
  40269. image: {
  40270. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40271. extra: 689/590,
  40272. bottom: 18/707
  40273. }
  40274. },
  40275. dailyWear: {
  40276. height: math.unit(3 + 1/12, "feet"),
  40277. weight: math.unit(24, "lb"),
  40278. name: "Daily Wear",
  40279. image: {
  40280. source: "./media/characters/tea-spot/daily-wear.svg",
  40281. extra: 701/620,
  40282. bottom: 21/722
  40283. }
  40284. },
  40285. maidWork: {
  40286. height: math.unit(3 + 1/12, "feet"),
  40287. weight: math.unit(24, "lb"),
  40288. name: "Maid Work",
  40289. image: {
  40290. source: "./media/characters/tea-spot/maid-work.svg",
  40291. extra: 693/609,
  40292. bottom: 15/708
  40293. }
  40294. },
  40295. },
  40296. [
  40297. {
  40298. name: "Normal",
  40299. height: math.unit(3 + 1/12, "feet"),
  40300. default: true
  40301. },
  40302. ]
  40303. ))
  40304. characterMakers.push(() => makeCharacter(
  40305. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40306. {
  40307. front: {
  40308. height: math.unit(175, "cm"),
  40309. weight: math.unit(75, "kg"),
  40310. name: "Front",
  40311. image: {
  40312. source: "./media/characters/chee/front.svg",
  40313. extra: 1796/1740,
  40314. bottom: 40/1836
  40315. }
  40316. },
  40317. },
  40318. [
  40319. {
  40320. name: "Micro-Micro",
  40321. height: math.unit(1, "nm")
  40322. },
  40323. {
  40324. name: "Micro-erst",
  40325. height: math.unit(1, "micrometer")
  40326. },
  40327. {
  40328. name: "Micro-er",
  40329. height: math.unit(1, "cm")
  40330. },
  40331. {
  40332. name: "Normal",
  40333. height: math.unit(175, "cm"),
  40334. default: true
  40335. },
  40336. {
  40337. name: "Macro",
  40338. height: math.unit(100, "m")
  40339. },
  40340. {
  40341. name: "Macro-er",
  40342. height: math.unit(1, "km")
  40343. },
  40344. {
  40345. name: "Macro-erst",
  40346. height: math.unit(10, "km")
  40347. },
  40348. {
  40349. name: "Macro-Macro",
  40350. height: math.unit(100, "km")
  40351. },
  40352. ]
  40353. ))
  40354. characterMakers.push(() => makeCharacter(
  40355. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40356. {
  40357. front: {
  40358. height: math.unit(11 + 9/12, "feet"),
  40359. weight: math.unit(935, "lb"),
  40360. name: "Front",
  40361. image: {
  40362. source: "./media/characters/kingsley/front.svg",
  40363. extra: 1803/1674,
  40364. bottom: 127/1930
  40365. }
  40366. },
  40367. frontNude: {
  40368. height: math.unit(11 + 9/12, "feet"),
  40369. weight: math.unit(935, "lb"),
  40370. name: "Front (Nude)",
  40371. image: {
  40372. source: "./media/characters/kingsley/front-nude.svg",
  40373. extra: 1803/1674,
  40374. bottom: 127/1930
  40375. }
  40376. },
  40377. },
  40378. [
  40379. {
  40380. name: "Normal",
  40381. height: math.unit(11 + 9/12, "feet"),
  40382. default: true
  40383. },
  40384. ]
  40385. ))
  40386. characterMakers.push(() => makeCharacter(
  40387. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40388. {
  40389. side: {
  40390. height: math.unit(9, "feet"),
  40391. name: "Side",
  40392. image: {
  40393. source: "./media/characters/rymel/side.svg",
  40394. extra: 792/469,
  40395. bottom: 121/913
  40396. }
  40397. },
  40398. maw: {
  40399. height: math.unit(2.4, "meters"),
  40400. name: "Maw",
  40401. image: {
  40402. source: "./media/characters/rymel/maw.svg"
  40403. }
  40404. },
  40405. },
  40406. [
  40407. {
  40408. name: "House Drake",
  40409. height: math.unit(2, "feet")
  40410. },
  40411. {
  40412. name: "Reduced",
  40413. height: math.unit(4.5, "feet")
  40414. },
  40415. {
  40416. name: "Normal",
  40417. height: math.unit(9, "feet"),
  40418. default: true
  40419. },
  40420. ]
  40421. ))
  40422. characterMakers.push(() => makeCharacter(
  40423. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40424. {
  40425. front: {
  40426. height: math.unit(1.74, "meters"),
  40427. weight: math.unit(55, "kg"),
  40428. name: "Front",
  40429. image: {
  40430. source: "./media/characters/rubus/front.svg",
  40431. extra: 1894/1742,
  40432. bottom: 44/1938
  40433. }
  40434. },
  40435. },
  40436. [
  40437. {
  40438. name: "Normal",
  40439. height: math.unit(1.74, "meters"),
  40440. default: true
  40441. },
  40442. ]
  40443. ))
  40444. characterMakers.push(() => makeCharacter(
  40445. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40446. {
  40447. front: {
  40448. height: math.unit(5 + 2/12, "feet"),
  40449. weight: math.unit(112, "lb"),
  40450. name: "Front",
  40451. image: {
  40452. source: "./media/characters/cassie-kingston/front.svg",
  40453. extra: 1438/1390,
  40454. bottom: 47/1485
  40455. }
  40456. },
  40457. },
  40458. [
  40459. {
  40460. name: "Normal",
  40461. height: math.unit(5 + 2/12, "feet"),
  40462. default: true
  40463. },
  40464. {
  40465. name: "Macro",
  40466. height: math.unit(128, "feet")
  40467. },
  40468. {
  40469. name: "Megamacro",
  40470. height: math.unit(2.56, "miles")
  40471. },
  40472. ]
  40473. ))
  40474. characterMakers.push(() => makeCharacter(
  40475. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40476. {
  40477. front: {
  40478. height: math.unit(7, "feet"),
  40479. name: "Front",
  40480. image: {
  40481. source: "./media/characters/fox/front.svg",
  40482. extra: 1798/1703,
  40483. bottom: 55/1853
  40484. }
  40485. },
  40486. back: {
  40487. height: math.unit(7, "feet"),
  40488. name: "Back",
  40489. image: {
  40490. source: "./media/characters/fox/back.svg",
  40491. extra: 1748/1649,
  40492. bottom: 32/1780
  40493. }
  40494. },
  40495. head: {
  40496. height: math.unit(1.95, "feet"),
  40497. name: "Head",
  40498. image: {
  40499. source: "./media/characters/fox/head.svg"
  40500. }
  40501. },
  40502. dick: {
  40503. height: math.unit(1.33, "feet"),
  40504. name: "Dick",
  40505. image: {
  40506. source: "./media/characters/fox/dick.svg"
  40507. }
  40508. },
  40509. foot: {
  40510. height: math.unit(1, "feet"),
  40511. name: "Foot",
  40512. image: {
  40513. source: "./media/characters/fox/foot.svg"
  40514. }
  40515. },
  40516. paw: {
  40517. height: math.unit(0.92, "feet"),
  40518. name: "Paw",
  40519. image: {
  40520. source: "./media/characters/fox/paw.svg"
  40521. }
  40522. },
  40523. },
  40524. [
  40525. {
  40526. name: "Small",
  40527. height: math.unit(3, "inches")
  40528. },
  40529. {
  40530. name: "\"Realistic\"",
  40531. height: math.unit(7, "feet")
  40532. },
  40533. {
  40534. name: "Normal",
  40535. height: math.unit(150, "feet"),
  40536. default: true
  40537. },
  40538. {
  40539. name: "BIG",
  40540. height: math.unit(1200, "feet")
  40541. },
  40542. {
  40543. name: "👀",
  40544. height: math.unit(5, "miles")
  40545. },
  40546. {
  40547. name: "👀👀👀",
  40548. height: math.unit(64, "miles")
  40549. },
  40550. ]
  40551. ))
  40552. characterMakers.push(() => makeCharacter(
  40553. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40554. {
  40555. front: {
  40556. height: math.unit(625, "feet"),
  40557. name: "Front",
  40558. image: {
  40559. source: "./media/characters/asonja-rossa/front.svg",
  40560. extra: 1833/1686,
  40561. bottom: 24/1857
  40562. }
  40563. },
  40564. back: {
  40565. height: math.unit(625, "feet"),
  40566. name: "Back",
  40567. image: {
  40568. source: "./media/characters/asonja-rossa/back.svg",
  40569. extra: 1852/1753,
  40570. bottom: 26/1878
  40571. }
  40572. },
  40573. },
  40574. [
  40575. {
  40576. name: "Macro",
  40577. height: math.unit(625, "feet"),
  40578. default: true
  40579. },
  40580. ]
  40581. ))
  40582. characterMakers.push(() => makeCharacter(
  40583. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40584. {
  40585. side: {
  40586. height: math.unit(8, "feet"),
  40587. name: "Side",
  40588. image: {
  40589. source: "./media/characters/rezukii/side.svg",
  40590. extra: 979/542,
  40591. bottom: 87/1066
  40592. }
  40593. },
  40594. sitting: {
  40595. height: math.unit(14.6, "feet"),
  40596. name: "Sitting",
  40597. image: {
  40598. source: "./media/characters/rezukii/sitting.svg",
  40599. extra: 1023/813,
  40600. bottom: 45/1068
  40601. }
  40602. },
  40603. },
  40604. [
  40605. {
  40606. name: "Tiny",
  40607. height: math.unit(2, "feet")
  40608. },
  40609. {
  40610. name: "Smol",
  40611. height: math.unit(4, "feet")
  40612. },
  40613. {
  40614. name: "Normal",
  40615. height: math.unit(8, "feet"),
  40616. default: true
  40617. },
  40618. {
  40619. name: "Big",
  40620. height: math.unit(12, "feet")
  40621. },
  40622. {
  40623. name: "Macro",
  40624. height: math.unit(30, "feet")
  40625. },
  40626. ]
  40627. ))
  40628. characterMakers.push(() => makeCharacter(
  40629. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40630. {
  40631. front: {
  40632. height: math.unit(14, "feet"),
  40633. weight: math.unit(9.5, "tonnes"),
  40634. name: "Front",
  40635. image: {
  40636. source: "./media/characters/dawnheart/front.svg",
  40637. extra: 2792/2675,
  40638. bottom: 64/2856
  40639. }
  40640. },
  40641. },
  40642. [
  40643. {
  40644. name: "Normal",
  40645. height: math.unit(14, "feet"),
  40646. default: true
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40652. {
  40653. front: {
  40654. height: math.unit(1.7, "m"),
  40655. name: "Front",
  40656. image: {
  40657. source: "./media/characters/gladi/front.svg",
  40658. extra: 1460/1362,
  40659. bottom: 19/1479
  40660. }
  40661. },
  40662. back: {
  40663. height: math.unit(1.7, "m"),
  40664. name: "Back",
  40665. image: {
  40666. source: "./media/characters/gladi/back.svg",
  40667. extra: 1459/1357,
  40668. bottom: 12/1471
  40669. }
  40670. },
  40671. feral: {
  40672. height: math.unit(2.05, "m"),
  40673. name: "Feral",
  40674. image: {
  40675. source: "./media/characters/gladi/feral.svg",
  40676. extra: 821/557,
  40677. bottom: 91/912
  40678. }
  40679. },
  40680. },
  40681. [
  40682. {
  40683. name: "Shortest",
  40684. height: math.unit(70, "cm")
  40685. },
  40686. {
  40687. name: "Normal",
  40688. height: math.unit(1.7, "m")
  40689. },
  40690. {
  40691. name: "Macro",
  40692. height: math.unit(10, "m"),
  40693. default: true
  40694. },
  40695. {
  40696. name: "Tallest",
  40697. height: math.unit(200, "m")
  40698. },
  40699. ]
  40700. ))
  40701. characterMakers.push(() => makeCharacter(
  40702. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40703. {
  40704. front: {
  40705. height: math.unit(5 + 7/12, "feet"),
  40706. weight: math.unit(2, "tons"),
  40707. name: "Front",
  40708. image: {
  40709. source: "./media/characters/erdno/front.svg",
  40710. extra: 1234/1129,
  40711. bottom: 35/1269
  40712. }
  40713. },
  40714. angled: {
  40715. height: math.unit(5 + 7/12, "feet"),
  40716. weight: math.unit(2, "tons"),
  40717. name: "Angled",
  40718. image: {
  40719. source: "./media/characters/erdno/angled.svg",
  40720. extra: 1185/1139,
  40721. bottom: 36/1221
  40722. }
  40723. },
  40724. side: {
  40725. height: math.unit(5 + 7/12, "feet"),
  40726. weight: math.unit(2, "tons"),
  40727. name: "Side",
  40728. image: {
  40729. source: "./media/characters/erdno/side.svg",
  40730. extra: 1191/1144,
  40731. bottom: 40/1231
  40732. }
  40733. },
  40734. back: {
  40735. height: math.unit(5 + 7/12, "feet"),
  40736. weight: math.unit(2, "tons"),
  40737. name: "Back",
  40738. image: {
  40739. source: "./media/characters/erdno/back.svg",
  40740. extra: 1202/1146,
  40741. bottom: 17/1219
  40742. }
  40743. },
  40744. frontNsfw: {
  40745. height: math.unit(5 + 7/12, "feet"),
  40746. weight: math.unit(2, "tons"),
  40747. name: "Front (NSFW)",
  40748. image: {
  40749. source: "./media/characters/erdno/front-nsfw.svg",
  40750. extra: 1234/1129,
  40751. bottom: 35/1269
  40752. }
  40753. },
  40754. angledNsfw: {
  40755. height: math.unit(5 + 7/12, "feet"),
  40756. weight: math.unit(2, "tons"),
  40757. name: "Angled (NSFW)",
  40758. image: {
  40759. source: "./media/characters/erdno/angled-nsfw.svg",
  40760. extra: 1185/1139,
  40761. bottom: 36/1221
  40762. }
  40763. },
  40764. sideNsfw: {
  40765. height: math.unit(5 + 7/12, "feet"),
  40766. weight: math.unit(2, "tons"),
  40767. name: "Side (NSFW)",
  40768. image: {
  40769. source: "./media/characters/erdno/side-nsfw.svg",
  40770. extra: 1191/1144,
  40771. bottom: 40/1231
  40772. }
  40773. },
  40774. backNsfw: {
  40775. height: math.unit(5 + 7/12, "feet"),
  40776. weight: math.unit(2, "tons"),
  40777. name: "Back (NSFW)",
  40778. image: {
  40779. source: "./media/characters/erdno/back-nsfw.svg",
  40780. extra: 1202/1146,
  40781. bottom: 17/1219
  40782. }
  40783. },
  40784. frontHyper: {
  40785. height: math.unit(5 + 7/12, "feet"),
  40786. weight: math.unit(2, "tons"),
  40787. name: "Front (Hyper)",
  40788. image: {
  40789. source: "./media/characters/erdno/front-hyper.svg",
  40790. extra: 1298/1136,
  40791. bottom: 35/1333
  40792. }
  40793. },
  40794. },
  40795. [
  40796. {
  40797. name: "Normal",
  40798. height: math.unit(5 + 7/12, "feet"),
  40799. default: true
  40800. },
  40801. {
  40802. name: "Big",
  40803. height: math.unit(5.7, "meters")
  40804. },
  40805. {
  40806. name: "Macro",
  40807. height: math.unit(5.7, "kilometers")
  40808. },
  40809. {
  40810. name: "Megamacro",
  40811. height: math.unit(5.7, "earths")
  40812. },
  40813. ]
  40814. ))
  40815. characterMakers.push(() => makeCharacter(
  40816. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40817. {
  40818. front: {
  40819. height: math.unit(5 + 10/12, "feet"),
  40820. weight: math.unit(150, "lb"),
  40821. name: "Front",
  40822. image: {
  40823. source: "./media/characters/jamie/front.svg",
  40824. extra: 1908/1768,
  40825. bottom: 19/1927
  40826. }
  40827. },
  40828. },
  40829. [
  40830. {
  40831. name: "Minimum",
  40832. height: math.unit(2, "cm")
  40833. },
  40834. {
  40835. name: "Micro",
  40836. height: math.unit(3, "inches")
  40837. },
  40838. {
  40839. name: "Normal",
  40840. height: math.unit(5 + 10/12, "feet"),
  40841. default: true
  40842. },
  40843. {
  40844. name: "Macro",
  40845. height: math.unit(150, "feet")
  40846. },
  40847. {
  40848. name: "Megamacro",
  40849. height: math.unit(10000, "m")
  40850. },
  40851. ]
  40852. ))
  40853. characterMakers.push(() => makeCharacter(
  40854. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40855. {
  40856. front: {
  40857. height: math.unit(2, "meters"),
  40858. weight: math.unit(100, "kg"),
  40859. name: "Front",
  40860. image: {
  40861. source: "./media/characters/shiron/front.svg",
  40862. extra: 2103/1985,
  40863. bottom: 98/2201
  40864. }
  40865. },
  40866. back: {
  40867. height: math.unit(2, "meters"),
  40868. weight: math.unit(100, "kg"),
  40869. name: "Back",
  40870. image: {
  40871. source: "./media/characters/shiron/back.svg",
  40872. extra: 2110/2015,
  40873. bottom: 89/2199
  40874. }
  40875. },
  40876. hand: {
  40877. height: math.unit(0.96, "feet"),
  40878. name: "Hand",
  40879. image: {
  40880. source: "./media/characters/shiron/hand.svg"
  40881. }
  40882. },
  40883. foot: {
  40884. height: math.unit(1.464, "feet"),
  40885. name: "Foot",
  40886. image: {
  40887. source: "./media/characters/shiron/foot.svg"
  40888. }
  40889. },
  40890. },
  40891. [
  40892. {
  40893. name: "Normal",
  40894. height: math.unit(2, "meters")
  40895. },
  40896. {
  40897. name: "Macro",
  40898. height: math.unit(500, "meters"),
  40899. default: true
  40900. },
  40901. {
  40902. name: "Megamacro",
  40903. height: math.unit(20, "km")
  40904. },
  40905. ]
  40906. ))
  40907. characterMakers.push(() => makeCharacter(
  40908. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40909. {
  40910. front: {
  40911. height: math.unit(6, "feet"),
  40912. name: "Front",
  40913. image: {
  40914. source: "./media/characters/sam/front.svg",
  40915. extra: 849/826,
  40916. bottom: 19/868
  40917. }
  40918. },
  40919. },
  40920. [
  40921. {
  40922. name: "Normal",
  40923. height: math.unit(6, "feet"),
  40924. default: true
  40925. },
  40926. ]
  40927. ))
  40928. characterMakers.push(() => makeCharacter(
  40929. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40930. {
  40931. front: {
  40932. height: math.unit(8 + 4/12, "feet"),
  40933. weight: math.unit(122, "kg"),
  40934. name: "Front",
  40935. image: {
  40936. source: "./media/characters/namori-kurogawa/front.svg",
  40937. extra: 1894/1576,
  40938. bottom: 34/1928
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Normal",
  40945. height: math.unit(8 + 4/12, "feet"),
  40946. default: true
  40947. },
  40948. ]
  40949. ))
  40950. characterMakers.push(() => makeCharacter(
  40951. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40952. {
  40953. front: {
  40954. height: math.unit(9, "feet"),
  40955. weight: math.unit(621, "lb"),
  40956. name: "Front",
  40957. image: {
  40958. source: "./media/characters/unmru/front.svg",
  40959. extra: 1853/1747,
  40960. bottom: 73/1926
  40961. }
  40962. },
  40963. side: {
  40964. height: math.unit(9, "feet"),
  40965. weight: math.unit(621, "lb"),
  40966. name: "Side",
  40967. image: {
  40968. source: "./media/characters/unmru/side.svg",
  40969. extra: 1781/1671,
  40970. bottom: 127/1908
  40971. }
  40972. },
  40973. back: {
  40974. height: math.unit(9, "feet"),
  40975. weight: math.unit(621, "lb"),
  40976. name: "Back",
  40977. image: {
  40978. source: "./media/characters/unmru/back.svg",
  40979. extra: 1894/1765,
  40980. bottom: 75/1969
  40981. }
  40982. },
  40983. dick: {
  40984. height: math.unit(3, "feet"),
  40985. weight: math.unit(35, "lb"),
  40986. name: "Dick",
  40987. image: {
  40988. source: "./media/characters/unmru/dick.svg"
  40989. }
  40990. },
  40991. },
  40992. [
  40993. {
  40994. name: "Normal",
  40995. height: math.unit(9, "feet")
  40996. },
  40997. {
  40998. name: "Natural",
  40999. height: math.unit(27, "feet"),
  41000. default: true
  41001. },
  41002. {
  41003. name: "Giant",
  41004. height: math.unit(90, "feet")
  41005. },
  41006. {
  41007. name: "Kaiju",
  41008. height: math.unit(270, "feet")
  41009. },
  41010. {
  41011. name: "Macro",
  41012. height: math.unit(900, "feet")
  41013. },
  41014. {
  41015. name: "Macro+",
  41016. height: math.unit(2700, "feet")
  41017. },
  41018. {
  41019. name: "Megamacro",
  41020. height: math.unit(9000, "feet")
  41021. },
  41022. {
  41023. name: "City-Crushing",
  41024. height: math.unit(27000, "feet")
  41025. },
  41026. {
  41027. name: "Mountain-Mashing",
  41028. height: math.unit(90000, "feet")
  41029. },
  41030. {
  41031. name: "Earth-Eclipsing",
  41032. height: math.unit(2.7e8, "feet")
  41033. },
  41034. {
  41035. name: "Sol-Swallowing",
  41036. height: math.unit(9e10, "feet")
  41037. },
  41038. {
  41039. name: "Majoris-Munching",
  41040. height: math.unit(2.7e13, "feet")
  41041. },
  41042. ]
  41043. ))
  41044. characterMakers.push(() => makeCharacter(
  41045. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41046. {
  41047. front: {
  41048. height: math.unit(1, "inch"),
  41049. name: "Front",
  41050. image: {
  41051. source: "./media/characters/squeaks-mouse/front.svg",
  41052. extra: 352/308,
  41053. bottom: 25/377
  41054. }
  41055. },
  41056. },
  41057. [
  41058. {
  41059. name: "Micro",
  41060. height: math.unit(1, "inch"),
  41061. default: true
  41062. },
  41063. ]
  41064. ))
  41065. characterMakers.push(() => makeCharacter(
  41066. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41067. {
  41068. side: {
  41069. height: math.unit(35, "feet"),
  41070. name: "Side",
  41071. image: {
  41072. source: "./media/characters/sayko/side.svg",
  41073. extra: 1697/1021,
  41074. bottom: 82/1779
  41075. }
  41076. },
  41077. head: {
  41078. height: math.unit(16, "feet"),
  41079. name: "Head",
  41080. image: {
  41081. source: "./media/characters/sayko/head.svg"
  41082. }
  41083. },
  41084. forepaw: {
  41085. height: math.unit(7.85, "feet"),
  41086. name: "Forepaw",
  41087. image: {
  41088. source: "./media/characters/sayko/forepaw.svg"
  41089. }
  41090. },
  41091. hindpaw: {
  41092. height: math.unit(8.8, "feet"),
  41093. name: "Hindpaw",
  41094. image: {
  41095. source: "./media/characters/sayko/hindpaw.svg"
  41096. }
  41097. },
  41098. },
  41099. [
  41100. {
  41101. name: "Normal",
  41102. height: math.unit(35, "feet"),
  41103. default: true
  41104. },
  41105. {
  41106. name: "Colossus",
  41107. height: math.unit(100, "meters")
  41108. },
  41109. {
  41110. name: "\"Small\" Deity",
  41111. height: math.unit(1, "km")
  41112. },
  41113. {
  41114. name: "\"Large\" Deity",
  41115. height: math.unit(15, "km")
  41116. },
  41117. ]
  41118. ))
  41119. characterMakers.push(() => makeCharacter(
  41120. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41121. {
  41122. front: {
  41123. height: math.unit(6, "feet"),
  41124. weight: math.unit(250, "lb"),
  41125. name: "Front",
  41126. image: {
  41127. source: "./media/characters/mukiro/front.svg",
  41128. extra: 1368/1310,
  41129. bottom: 34/1402
  41130. }
  41131. },
  41132. },
  41133. [
  41134. {
  41135. name: "Normal",
  41136. height: math.unit(6, "feet"),
  41137. default: true
  41138. },
  41139. ]
  41140. ))
  41141. characterMakers.push(() => makeCharacter(
  41142. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41143. {
  41144. front: {
  41145. height: math.unit(12 + 4/12, "feet"),
  41146. name: "Front",
  41147. image: {
  41148. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41149. extra: 1346/1311,
  41150. bottom: 65/1411
  41151. }
  41152. },
  41153. },
  41154. [
  41155. {
  41156. name: "Base",
  41157. height: math.unit(12 + 4/12, "feet"),
  41158. default: true
  41159. },
  41160. {
  41161. name: "Macro",
  41162. height: math.unit(150, "feet")
  41163. },
  41164. {
  41165. name: "Mega",
  41166. height: math.unit(2, "miles")
  41167. },
  41168. {
  41169. name: "Demi God",
  41170. height: math.unit(4, "AU")
  41171. },
  41172. {
  41173. name: "God Size",
  41174. height: math.unit(1, "universe")
  41175. },
  41176. ]
  41177. ))
  41178. characterMakers.push(() => makeCharacter(
  41179. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41180. {
  41181. front: {
  41182. height: math.unit(3 + 3/12, "feet"),
  41183. weight: math.unit(88, "lb"),
  41184. name: "Front",
  41185. image: {
  41186. source: "./media/characters/trey/front.svg",
  41187. extra: 1815/1509,
  41188. bottom: 60/1875
  41189. }
  41190. },
  41191. },
  41192. [
  41193. {
  41194. name: "Normal",
  41195. height: math.unit(3 + 3/12, "feet"),
  41196. default: true
  41197. },
  41198. ]
  41199. ))
  41200. characterMakers.push(() => makeCharacter(
  41201. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41202. {
  41203. front: {
  41204. height: math.unit(4, "meters"),
  41205. name: "Front",
  41206. image: {
  41207. source: "./media/characters/adelonda/front.svg",
  41208. extra: 1077/982,
  41209. bottom: 39/1116
  41210. }
  41211. },
  41212. back: {
  41213. height: math.unit(4, "meters"),
  41214. name: "Back",
  41215. image: {
  41216. source: "./media/characters/adelonda/back.svg",
  41217. extra: 1105/1003,
  41218. bottom: 25/1130
  41219. }
  41220. },
  41221. feral: {
  41222. height: math.unit(40/1.5, "meters"),
  41223. name: "Feral",
  41224. image: {
  41225. source: "./media/characters/adelonda/feral.svg",
  41226. extra: 597/271,
  41227. bottom: 387/984
  41228. }
  41229. },
  41230. },
  41231. [
  41232. {
  41233. name: "Normal",
  41234. height: math.unit(4, "meters"),
  41235. default: true
  41236. },
  41237. ]
  41238. ))
  41239. characterMakers.push(() => makeCharacter(
  41240. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41241. {
  41242. front: {
  41243. height: math.unit(8 + 4/12, "feet"),
  41244. weight: math.unit(670, "lb"),
  41245. name: "Front",
  41246. image: {
  41247. source: "./media/characters/acadiel/front.svg",
  41248. extra: 1901/1595,
  41249. bottom: 142/2043
  41250. }
  41251. },
  41252. },
  41253. [
  41254. {
  41255. name: "Normal",
  41256. height: math.unit(8 + 4/12, "feet"),
  41257. default: true
  41258. },
  41259. {
  41260. name: "Macro",
  41261. height: math.unit(200, "feet")
  41262. },
  41263. ]
  41264. ))
  41265. characterMakers.push(() => makeCharacter(
  41266. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41267. {
  41268. front: {
  41269. height: math.unit(6 + 2/12, "feet"),
  41270. weight: math.unit(185, "lb"),
  41271. name: "Front",
  41272. image: {
  41273. source: "./media/characters/kayne-ein/front.svg",
  41274. extra: 1780/1560,
  41275. bottom: 81/1861
  41276. }
  41277. },
  41278. },
  41279. [
  41280. {
  41281. name: "Normal",
  41282. height: math.unit(6 + 2/12, "feet"),
  41283. default: true
  41284. },
  41285. {
  41286. name: "Transformation Stage",
  41287. height: math.unit(15, "feet")
  41288. },
  41289. {
  41290. name: "Macro",
  41291. height: math.unit(150, "feet")
  41292. },
  41293. {
  41294. name: "Earth's Shadow",
  41295. height: math.unit(6200, "miles")
  41296. },
  41297. {
  41298. name: "Universal Demon",
  41299. height: math.unit(28e9, "parsecs")
  41300. },
  41301. {
  41302. name: "Multiverse God",
  41303. height: math.unit(3, "multiverses")
  41304. },
  41305. ]
  41306. ))
  41307. characterMakers.push(() => makeCharacter(
  41308. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41309. {
  41310. front: {
  41311. height: math.unit(5 + 5/12, "feet"),
  41312. name: "Front",
  41313. image: {
  41314. source: "./media/characters/fawn/front.svg",
  41315. extra: 1873/1731,
  41316. bottom: 95/1968
  41317. }
  41318. },
  41319. back: {
  41320. height: math.unit(5 + 5/12, "feet"),
  41321. name: "Back",
  41322. image: {
  41323. source: "./media/characters/fawn/back.svg",
  41324. extra: 1813/1700,
  41325. bottom: 14/1827
  41326. }
  41327. },
  41328. hoof: {
  41329. height: math.unit(1.45, "feet"),
  41330. name: "Hoof",
  41331. image: {
  41332. source: "./media/characters/fawn/hoof.svg"
  41333. }
  41334. },
  41335. },
  41336. [
  41337. {
  41338. name: "Normal",
  41339. height: math.unit(5 + 5/12, "feet"),
  41340. default: true
  41341. },
  41342. ]
  41343. ))
  41344. characterMakers.push(() => makeCharacter(
  41345. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41346. {
  41347. front: {
  41348. height: math.unit(2 + 5/12, "feet"),
  41349. name: "Front",
  41350. image: {
  41351. source: "./media/characters/orion/front.svg",
  41352. extra: 1366/1304,
  41353. bottom: 43/1409
  41354. }
  41355. },
  41356. paw: {
  41357. height: math.unit(0.52, "feet"),
  41358. name: "Paw",
  41359. image: {
  41360. source: "./media/characters/orion/paw.svg"
  41361. }
  41362. },
  41363. },
  41364. [
  41365. {
  41366. name: "Normal",
  41367. height: math.unit(2 + 5/12, "feet"),
  41368. default: true
  41369. },
  41370. ]
  41371. ))
  41372. characterMakers.push(() => makeCharacter(
  41373. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41374. {
  41375. front: {
  41376. height: math.unit(5 + 10/12, "feet"),
  41377. name: "Front",
  41378. image: {
  41379. source: "./media/characters/vera/front.svg",
  41380. extra: 1680/1575,
  41381. bottom: 49/1729
  41382. }
  41383. },
  41384. back: {
  41385. height: math.unit(5 + 10/12, "feet"),
  41386. name: "Back",
  41387. image: {
  41388. source: "./media/characters/vera/back.svg",
  41389. extra: 1700/1588,
  41390. bottom: 18/1718
  41391. }
  41392. },
  41393. arcanine: {
  41394. height: math.unit(6 + 8/12, "feet"),
  41395. name: "Arcanine",
  41396. image: {
  41397. source: "./media/characters/vera/arcanine.svg",
  41398. extra: 1590/1511,
  41399. bottom: 71/1661
  41400. }
  41401. },
  41402. maw: {
  41403. height: math.unit(0.82, "feet"),
  41404. name: "Maw",
  41405. image: {
  41406. source: "./media/characters/vera/maw.svg"
  41407. }
  41408. },
  41409. mawArcanine: {
  41410. height: math.unit(0.97, "feet"),
  41411. name: "Maw (Arcanine)",
  41412. image: {
  41413. source: "./media/characters/vera/maw-arcanine.svg"
  41414. }
  41415. },
  41416. paw: {
  41417. height: math.unit(0.75, "feet"),
  41418. name: "Paw",
  41419. image: {
  41420. source: "./media/characters/vera/paw.svg"
  41421. }
  41422. },
  41423. pawprint: {
  41424. height: math.unit(0.52, "feet"),
  41425. name: "Pawprint",
  41426. image: {
  41427. source: "./media/characters/vera/pawprint.svg"
  41428. }
  41429. },
  41430. },
  41431. [
  41432. {
  41433. name: "Normal",
  41434. height: math.unit(5 + 10/12, "feet"),
  41435. default: true
  41436. },
  41437. {
  41438. name: "Macro",
  41439. height: math.unit(75, "feet")
  41440. },
  41441. ]
  41442. ))
  41443. characterMakers.push(() => makeCharacter(
  41444. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41445. {
  41446. front: {
  41447. height: math.unit(4, "feet"),
  41448. weight: math.unit(40, "lb"),
  41449. name: "Front",
  41450. image: {
  41451. source: "./media/characters/orvan-rabbit/front.svg",
  41452. extra: 1896/1642,
  41453. bottom: 29/1925
  41454. }
  41455. },
  41456. },
  41457. [
  41458. {
  41459. name: "Normal",
  41460. height: math.unit(4, "feet"),
  41461. default: true
  41462. },
  41463. ]
  41464. ))
  41465. characterMakers.push(() => makeCharacter(
  41466. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41467. {
  41468. front: {
  41469. height: math.unit(6, "feet"),
  41470. weight: math.unit(168, "lb"),
  41471. name: "Front",
  41472. image: {
  41473. source: "./media/characters/lisa/front.svg",
  41474. extra: 2065/1867,
  41475. bottom: 46/2111
  41476. }
  41477. },
  41478. back: {
  41479. height: math.unit(6, "feet"),
  41480. weight: math.unit(168, "lb"),
  41481. name: "Back",
  41482. image: {
  41483. source: "./media/characters/lisa/back.svg",
  41484. extra: 1982/1838,
  41485. bottom: 29/2011
  41486. }
  41487. },
  41488. maw: {
  41489. height: math.unit(0.81, "feet"),
  41490. name: "Maw",
  41491. image: {
  41492. source: "./media/characters/lisa/maw.svg"
  41493. }
  41494. },
  41495. paw: {
  41496. height: math.unit(0.9, "feet"),
  41497. name: "Paw",
  41498. image: {
  41499. source: "./media/characters/lisa/paw.svg"
  41500. }
  41501. },
  41502. caribousune: {
  41503. height: math.unit(7 + 2/12, "feet"),
  41504. weight: math.unit(268, "lb"),
  41505. name: "Caribousune",
  41506. image: {
  41507. source: "./media/characters/lisa/caribousune.svg",
  41508. extra: 1843/1633,
  41509. bottom: 29/1872
  41510. }
  41511. },
  41512. frontCaribousune: {
  41513. height: math.unit(7 + 2/12, "feet"),
  41514. weight: math.unit(268, "lb"),
  41515. name: "Front (Caribousune)",
  41516. image: {
  41517. source: "./media/characters/lisa/front-caribousune.svg",
  41518. extra: 1818/1638,
  41519. bottom: 52/1870
  41520. }
  41521. },
  41522. sideCaribousune: {
  41523. height: math.unit(7 + 2/12, "feet"),
  41524. weight: math.unit(268, "lb"),
  41525. name: "Side (Caribousune)",
  41526. image: {
  41527. source: "./media/characters/lisa/side-caribousune.svg",
  41528. extra: 1851/1635,
  41529. bottom: 16/1867
  41530. }
  41531. },
  41532. backCaribousune: {
  41533. height: math.unit(7 + 2/12, "feet"),
  41534. weight: math.unit(268, "lb"),
  41535. name: "Back (Caribousune)",
  41536. image: {
  41537. source: "./media/characters/lisa/back-caribousune.svg",
  41538. extra: 1801/1604,
  41539. bottom: 44/1845
  41540. }
  41541. },
  41542. caribou: {
  41543. height: math.unit(7 + 2/12, "feet"),
  41544. weight: math.unit(268, "lb"),
  41545. name: "Caribou",
  41546. image: {
  41547. source: "./media/characters/lisa/caribou.svg",
  41548. extra: 1843/1633,
  41549. bottom: 29/1872
  41550. }
  41551. },
  41552. frontCaribou: {
  41553. height: math.unit(7 + 2/12, "feet"),
  41554. weight: math.unit(268, "lb"),
  41555. name: "Front (Caribou)",
  41556. image: {
  41557. source: "./media/characters/lisa/front-caribou.svg",
  41558. extra: 1818/1638,
  41559. bottom: 52/1870
  41560. }
  41561. },
  41562. sideCaribou: {
  41563. height: math.unit(7 + 2/12, "feet"),
  41564. weight: math.unit(268, "lb"),
  41565. name: "Side (Caribou)",
  41566. image: {
  41567. source: "./media/characters/lisa/side-caribou.svg",
  41568. extra: 1851/1635,
  41569. bottom: 16/1867
  41570. }
  41571. },
  41572. backCaribou: {
  41573. height: math.unit(7 + 2/12, "feet"),
  41574. weight: math.unit(268, "lb"),
  41575. name: "Back (Caribou)",
  41576. image: {
  41577. source: "./media/characters/lisa/back-caribou.svg",
  41578. extra: 1801/1604,
  41579. bottom: 44/1845
  41580. }
  41581. },
  41582. mawCaribou: {
  41583. height: math.unit(1.45, "feet"),
  41584. name: "Maw (Caribou)",
  41585. image: {
  41586. source: "./media/characters/lisa/maw-caribou.svg"
  41587. }
  41588. },
  41589. mawCaribousune: {
  41590. height: math.unit(1.45, "feet"),
  41591. name: "Maw (Caribousune)",
  41592. image: {
  41593. source: "./media/characters/lisa/maw-caribousune.svg"
  41594. }
  41595. },
  41596. pawCaribousune: {
  41597. height: math.unit(1.61, "feet"),
  41598. name: "Paw (Caribou)",
  41599. image: {
  41600. source: "./media/characters/lisa/paw-caribousune.svg"
  41601. }
  41602. },
  41603. },
  41604. [
  41605. {
  41606. name: "Normal",
  41607. height: math.unit(6, "feet")
  41608. },
  41609. {
  41610. name: "God Size",
  41611. height: math.unit(72, "feet"),
  41612. default: true
  41613. },
  41614. {
  41615. name: "Towering",
  41616. height: math.unit(288, "feet")
  41617. },
  41618. {
  41619. name: "City Size",
  41620. height: math.unit(48384, "feet")
  41621. },
  41622. {
  41623. name: "Continental",
  41624. height: math.unit(4200, "miles")
  41625. },
  41626. {
  41627. name: "Planet Eater",
  41628. height: math.unit(42, "earths")
  41629. },
  41630. {
  41631. name: "Star Swallower",
  41632. height: math.unit(42, "solarradii")
  41633. },
  41634. {
  41635. name: "System Swallower",
  41636. height: math.unit(84000, "AU")
  41637. },
  41638. {
  41639. name: "Galaxy Gobbler",
  41640. height: math.unit(42, "galaxies")
  41641. },
  41642. {
  41643. name: "Universe Devourer",
  41644. height: math.unit(42, "universes")
  41645. },
  41646. {
  41647. name: "Multiverse Muncher",
  41648. height: math.unit(42, "multiverses")
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41654. {
  41655. front: {
  41656. height: math.unit(36, "feet"),
  41657. name: "Front",
  41658. image: {
  41659. source: "./media/characters/shadow-rat/front.svg",
  41660. extra: 1845/1758,
  41661. bottom: 83/1928
  41662. }
  41663. },
  41664. },
  41665. [
  41666. {
  41667. name: "Macro",
  41668. height: math.unit(36, "feet"),
  41669. default: true
  41670. },
  41671. ]
  41672. ))
  41673. characterMakers.push(() => makeCharacter(
  41674. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41675. {
  41676. side: {
  41677. height: math.unit(8, "feet"),
  41678. weight: math.unit(2630, "lb"),
  41679. name: "Side",
  41680. image: {
  41681. source: "./media/characters/torallia/side.svg",
  41682. extra: 2164/2021,
  41683. bottom: 371/2535
  41684. }
  41685. },
  41686. },
  41687. [
  41688. {
  41689. name: "Mortal Interaction",
  41690. height: math.unit(8, "feet")
  41691. },
  41692. {
  41693. name: "Natural",
  41694. height: math.unit(24, "feet"),
  41695. default: true
  41696. },
  41697. {
  41698. name: "Giant",
  41699. height: math.unit(80, "feet")
  41700. },
  41701. {
  41702. name: "Kaiju",
  41703. height: math.unit(240, "feet")
  41704. },
  41705. {
  41706. name: "Macro",
  41707. height: math.unit(800, "feet")
  41708. },
  41709. {
  41710. name: "Macro+",
  41711. height: math.unit(2400, "feet")
  41712. },
  41713. {
  41714. name: "Macro++",
  41715. height: math.unit(8000, "feet")
  41716. },
  41717. {
  41718. name: "City-Crushing",
  41719. height: math.unit(24000, "feet")
  41720. },
  41721. {
  41722. name: "Mountain-Mashing",
  41723. height: math.unit(80000, "feet")
  41724. },
  41725. {
  41726. name: "District Demolisher",
  41727. height: math.unit(240000, "feet")
  41728. },
  41729. {
  41730. name: "Tri-County Terror",
  41731. height: math.unit(800000, "feet")
  41732. },
  41733. {
  41734. name: "State Smasher",
  41735. height: math.unit(2.4e6, "feet")
  41736. },
  41737. {
  41738. name: "Nation Nemesis",
  41739. height: math.unit(8e6, "feet")
  41740. },
  41741. {
  41742. name: "Continent Cracker",
  41743. height: math.unit(2.4e7, "feet")
  41744. },
  41745. {
  41746. name: "Planet-Pillaging",
  41747. height: math.unit(8e7, "feet")
  41748. },
  41749. {
  41750. name: "Earth-Eclipsing",
  41751. height: math.unit(2.4e8, "feet")
  41752. },
  41753. {
  41754. name: "Jovian-Jostling",
  41755. height: math.unit(8e8, "feet")
  41756. },
  41757. {
  41758. name: "Gas Giant Gulper",
  41759. height: math.unit(2.4e9, "feet")
  41760. },
  41761. {
  41762. name: "Astral Annihilator",
  41763. height: math.unit(8e9, "feet")
  41764. },
  41765. {
  41766. name: "Celestial Conqueror",
  41767. height: math.unit(2.4e10, "feet")
  41768. },
  41769. {
  41770. name: "Sol-Swallowing",
  41771. height: math.unit(8e10, "feet")
  41772. },
  41773. {
  41774. name: "Hunter of the Heavens",
  41775. height: math.unit(2.4e13, "feet")
  41776. },
  41777. ]
  41778. ))
  41779. characterMakers.push(() => makeCharacter(
  41780. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41781. {
  41782. front: {
  41783. height: math.unit(10, "feet"),
  41784. weight: math.unit(844, "kilograms"),
  41785. name: "Front",
  41786. image: {
  41787. source: "./media/characters/rebecca-pawlson/front.svg",
  41788. extra: 1196/1099,
  41789. bottom: 81/1277
  41790. },
  41791. extraAttributes: {
  41792. "pawSize": {
  41793. name: "Paw Size",
  41794. power: 2,
  41795. type: "area",
  41796. base: math.unit(0.2 * 0.375, "meters^2")
  41797. },
  41798. "handSize": {
  41799. name: "Hand Size",
  41800. power: 2,
  41801. type: "area",
  41802. base: math.unit(0.2 * 0.35, "meters^2")
  41803. },
  41804. "breastDiameter": {
  41805. name: "Breast Diameter",
  41806. power: 1,
  41807. type: "length",
  41808. base: math.unit(0.5, "meters")
  41809. },
  41810. "breastVolume": {
  41811. name: "Breast Volume",
  41812. power: 3,
  41813. type: "volume",
  41814. base: math.unit(0.065, "m^3")
  41815. },
  41816. "breastMass": {
  41817. name: "Breast Mass",
  41818. power: 3,
  41819. type: "mass",
  41820. base: math.unit(65, "kg")
  41821. },
  41822. "nippleDiameter": {
  41823. name: "Nipple Diameter",
  41824. power: 1,
  41825. type: "length",
  41826. base: math.unit(0.1, "meters")
  41827. },
  41828. }
  41829. },
  41830. back: {
  41831. height: math.unit(10, "feet"),
  41832. weight: math.unit(844, "kilograms"),
  41833. name: "Back",
  41834. image: {
  41835. source: "./media/characters/rebecca-pawlson/back.svg",
  41836. extra: 879/776,
  41837. bottom: 43/922
  41838. },
  41839. extraAttributes: {
  41840. "pawSize": {
  41841. name: "Paw Size",
  41842. power: 2,
  41843. type: "area",
  41844. base: math.unit(0.2 * 0.375, "meters^2")
  41845. },
  41846. "handSize": {
  41847. name: "Hand Size",
  41848. power: 2,
  41849. type: "area",
  41850. base: math.unit(0.2 * 0.35, "meters^2")
  41851. },
  41852. "breastDiameter": {
  41853. name: "Breast Diameter",
  41854. power: 1,
  41855. type: "length",
  41856. base: math.unit(0.5, "meters")
  41857. },
  41858. "breastVolume": {
  41859. name: "Breast Volume",
  41860. power: 3,
  41861. type: "volume",
  41862. base: math.unit(0.065, "m^3")
  41863. },
  41864. "breastMass": {
  41865. name: "Breast Mass",
  41866. power: 3,
  41867. type: "mass",
  41868. base: math.unit(65, "kg")
  41869. },
  41870. "nippleDiameter": {
  41871. name: "Nipple Diameter",
  41872. power: 1,
  41873. type: "length",
  41874. base: math.unit(0.1, "meters")
  41875. },
  41876. }
  41877. },
  41878. },
  41879. [
  41880. {
  41881. name: "Normal",
  41882. height: math.unit(6 + 8/12, "feet")
  41883. },
  41884. {
  41885. name: "Mini Macro",
  41886. height: math.unit(10, "feet"),
  41887. default: true
  41888. },
  41889. {
  41890. name: "Macro",
  41891. height: math.unit(100, "feet")
  41892. },
  41893. {
  41894. name: "Mega Macro",
  41895. height: math.unit(2500, "feet")
  41896. },
  41897. {
  41898. name: "Giga Macro",
  41899. height: math.unit(50, "miles")
  41900. },
  41901. ]
  41902. ))
  41903. characterMakers.push(() => makeCharacter(
  41904. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41905. {
  41906. front: {
  41907. height: math.unit(7 + 6/12, "feet"),
  41908. weight: math.unit(600, "lb"),
  41909. name: "Front",
  41910. image: {
  41911. source: "./media/characters/moxie-nova/front.svg",
  41912. extra: 1734/1652,
  41913. bottom: 41/1775
  41914. }
  41915. },
  41916. },
  41917. [
  41918. {
  41919. name: "Normal",
  41920. height: math.unit(7 + 6/12, "feet"),
  41921. default: true
  41922. },
  41923. ]
  41924. ))
  41925. characterMakers.push(() => makeCharacter(
  41926. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41927. {
  41928. goat: {
  41929. height: math.unit(4, "feet"),
  41930. weight: math.unit(180, "lb"),
  41931. name: "Goat",
  41932. image: {
  41933. source: "./media/characters/tiffany/goat.svg",
  41934. extra: 1845/1595,
  41935. bottom: 106/1951
  41936. }
  41937. },
  41938. front: {
  41939. height: math.unit(5, "feet"),
  41940. weight: math.unit(150, "lb"),
  41941. name: "Foxcoon",
  41942. image: {
  41943. source: "./media/characters/tiffany/foxcoon.svg",
  41944. extra: 1941/1845,
  41945. bottom: 58/1999
  41946. }
  41947. },
  41948. },
  41949. [
  41950. {
  41951. name: "Normal",
  41952. height: math.unit(5, "feet"),
  41953. default: true
  41954. },
  41955. ]
  41956. ))
  41957. characterMakers.push(() => makeCharacter(
  41958. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41959. {
  41960. front: {
  41961. height: math.unit(8, "feet"),
  41962. weight: math.unit(300, "lb"),
  41963. name: "Front",
  41964. image: {
  41965. source: "./media/characters/raxinath/front.svg",
  41966. extra: 1407/1309,
  41967. bottom: 39/1446
  41968. }
  41969. },
  41970. back: {
  41971. height: math.unit(8, "feet"),
  41972. weight: math.unit(300, "lb"),
  41973. name: "Back",
  41974. image: {
  41975. source: "./media/characters/raxinath/back.svg",
  41976. extra: 1405/1315,
  41977. bottom: 9/1414
  41978. }
  41979. },
  41980. },
  41981. [
  41982. {
  41983. name: "Speck",
  41984. height: math.unit(0.5, "nm")
  41985. },
  41986. {
  41987. name: "Micro",
  41988. height: math.unit(3, "inches")
  41989. },
  41990. {
  41991. name: "Kobold",
  41992. height: math.unit(3, "feet")
  41993. },
  41994. {
  41995. name: "Normal",
  41996. height: math.unit(8, "feet"),
  41997. default: true
  41998. },
  41999. {
  42000. name: "Giant",
  42001. height: math.unit(50, "feet")
  42002. },
  42003. {
  42004. name: "Macro",
  42005. height: math.unit(1000, "feet")
  42006. },
  42007. {
  42008. name: "Megamacro",
  42009. height: math.unit(1, "mile")
  42010. },
  42011. ]
  42012. ))
  42013. characterMakers.push(() => makeCharacter(
  42014. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42015. {
  42016. front: {
  42017. height: math.unit(10, "feet"),
  42018. weight: math.unit(1442, "lb"),
  42019. name: "Front",
  42020. image: {
  42021. source: "./media/characters/mal-dragon/front.svg",
  42022. extra: 1515/1444,
  42023. bottom: 113/1628
  42024. }
  42025. },
  42026. back: {
  42027. height: math.unit(10, "feet"),
  42028. weight: math.unit(1442, "lb"),
  42029. name: "Back",
  42030. image: {
  42031. source: "./media/characters/mal-dragon/back.svg",
  42032. extra: 1527/1434,
  42033. bottom: 25/1552
  42034. }
  42035. },
  42036. },
  42037. [
  42038. {
  42039. name: "Mortal Interaction",
  42040. height: math.unit(10, "feet"),
  42041. default: true
  42042. },
  42043. {
  42044. name: "Large",
  42045. height: math.unit(30, "feet")
  42046. },
  42047. {
  42048. name: "Kaiju",
  42049. height: math.unit(300, "feet")
  42050. },
  42051. {
  42052. name: "Megamacro",
  42053. height: math.unit(10000, "feet")
  42054. },
  42055. {
  42056. name: "Continent Cracker",
  42057. height: math.unit(30000000, "feet")
  42058. },
  42059. {
  42060. name: "Sol-Swallowing",
  42061. height: math.unit(1e11, "feet")
  42062. },
  42063. {
  42064. name: "Light Universal",
  42065. height: math.unit(5, "universes")
  42066. },
  42067. {
  42068. name: "Universe Atoms",
  42069. height: math.unit(1.829e9, "universes")
  42070. },
  42071. {
  42072. name: "Light Multiversal",
  42073. height: math.unit(5, "multiverses")
  42074. },
  42075. {
  42076. name: "Multiverse Atoms",
  42077. height: math.unit(1.829e9, "multiverses")
  42078. },
  42079. {
  42080. name: "Fabric of Time",
  42081. height: math.unit(1e262, "multiverses")
  42082. },
  42083. ]
  42084. ))
  42085. characterMakers.push(() => makeCharacter(
  42086. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42087. {
  42088. front: {
  42089. height: math.unit(9, "feet"),
  42090. weight: math.unit(1050, "lb"),
  42091. name: "Front",
  42092. image: {
  42093. source: "./media/characters/tabitha/front.svg",
  42094. extra: 2083/1994,
  42095. bottom: 68/2151
  42096. }
  42097. },
  42098. },
  42099. [
  42100. {
  42101. name: "Baseline",
  42102. height: math.unit(9, "feet"),
  42103. default: true
  42104. },
  42105. {
  42106. name: "Giant",
  42107. height: math.unit(90, "feet")
  42108. },
  42109. {
  42110. name: "Macro",
  42111. height: math.unit(900, "feet")
  42112. },
  42113. {
  42114. name: "Megamacro",
  42115. height: math.unit(9000, "feet")
  42116. },
  42117. {
  42118. name: "City-Crushing",
  42119. height: math.unit(27000, "feet")
  42120. },
  42121. {
  42122. name: "Mountain-Mashing",
  42123. height: math.unit(90000, "feet")
  42124. },
  42125. {
  42126. name: "Nation Nemesis",
  42127. height: math.unit(9e6, "feet")
  42128. },
  42129. {
  42130. name: "Continent Cracker",
  42131. height: math.unit(27e6, "feet")
  42132. },
  42133. {
  42134. name: "Earth-Eclipsing",
  42135. height: math.unit(2.7e8, "feet")
  42136. },
  42137. {
  42138. name: "Gas Giant Gulper",
  42139. height: math.unit(2.7e9, "feet")
  42140. },
  42141. {
  42142. name: "Sol-Swallowing",
  42143. height: math.unit(9e10, "feet")
  42144. },
  42145. {
  42146. name: "Galaxy Gulper",
  42147. height: math.unit(9, "galaxies")
  42148. },
  42149. {
  42150. name: "Cosmos Churner",
  42151. height: math.unit(9, "universes")
  42152. },
  42153. ]
  42154. ))
  42155. characterMakers.push(() => makeCharacter(
  42156. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42157. {
  42158. front: {
  42159. height: math.unit(160, "cm"),
  42160. weight: math.unit(55, "kg"),
  42161. name: "Front",
  42162. image: {
  42163. source: "./media/characters/tow/front.svg",
  42164. extra: 1751/1722,
  42165. bottom: 74/1825
  42166. }
  42167. },
  42168. },
  42169. [
  42170. {
  42171. name: "Norm",
  42172. height: math.unit(160, "cm")
  42173. },
  42174. {
  42175. name: "Casual",
  42176. height: math.unit(3200, "m"),
  42177. default: true
  42178. },
  42179. {
  42180. name: "Show-Off",
  42181. height: math.unit(160, "km")
  42182. },
  42183. ]
  42184. ))
  42185. characterMakers.push(() => makeCharacter(
  42186. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42187. {
  42188. front: {
  42189. height: math.unit(7 + 11/12, "feet"),
  42190. weight: math.unit(342.8, "lb"),
  42191. name: "Front",
  42192. image: {
  42193. source: "./media/characters/vivian-orca-dragon/front.svg",
  42194. extra: 1890/1865,
  42195. bottom: 28/1918
  42196. }
  42197. },
  42198. },
  42199. [
  42200. {
  42201. name: "Micro",
  42202. height: math.unit(5, "inches")
  42203. },
  42204. {
  42205. name: "Normal",
  42206. height: math.unit(7 + 11/12, "feet"),
  42207. default: true
  42208. },
  42209. {
  42210. name: "Macro",
  42211. height: math.unit(395 + 7/12, "feet")
  42212. },
  42213. ]
  42214. ))
  42215. characterMakers.push(() => makeCharacter(
  42216. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42217. {
  42218. side: {
  42219. height: math.unit(10, "feet"),
  42220. weight: math.unit(1442, "lb"),
  42221. name: "Side",
  42222. image: {
  42223. source: "./media/characters/lotherakon/side.svg",
  42224. extra: 1604/1497,
  42225. bottom: 89/1693
  42226. }
  42227. },
  42228. },
  42229. [
  42230. {
  42231. name: "Mortal Interaction",
  42232. height: math.unit(10, "feet")
  42233. },
  42234. {
  42235. name: "Large",
  42236. height: math.unit(30, "feet"),
  42237. default: true
  42238. },
  42239. {
  42240. name: "Giant",
  42241. height: math.unit(100, "feet")
  42242. },
  42243. {
  42244. name: "Kaiju",
  42245. height: math.unit(300, "feet")
  42246. },
  42247. {
  42248. name: "Macro",
  42249. height: math.unit(1000, "feet")
  42250. },
  42251. {
  42252. name: "Macro+",
  42253. height: math.unit(3000, "feet")
  42254. },
  42255. {
  42256. name: "Megamacro",
  42257. height: math.unit(10000, "feet")
  42258. },
  42259. {
  42260. name: "City-Crushing",
  42261. height: math.unit(30000, "feet")
  42262. },
  42263. {
  42264. name: "Continent Cracker",
  42265. height: math.unit(30e6, "feet")
  42266. },
  42267. {
  42268. name: "Earth Eclipsing",
  42269. height: math.unit(3e8, "feet")
  42270. },
  42271. {
  42272. name: "Gas Giant Gulper",
  42273. height: math.unit(3e9, "feet")
  42274. },
  42275. {
  42276. name: "Sol-Swallowing",
  42277. height: math.unit(1e11, "feet")
  42278. },
  42279. {
  42280. name: "System Swallower",
  42281. height: math.unit(3e14, "feet")
  42282. },
  42283. {
  42284. name: "Galaxy Gulper",
  42285. height: math.unit(10, "galaxies")
  42286. },
  42287. {
  42288. name: "Light Universal",
  42289. height: math.unit(5, "universes")
  42290. },
  42291. {
  42292. name: "Universe Palm",
  42293. height: math.unit(20, "universes")
  42294. },
  42295. {
  42296. name: "Light Multiversal",
  42297. height: math.unit(5, "multiverses")
  42298. },
  42299. {
  42300. name: "Multiverse Palm",
  42301. height: math.unit(20, "multiverses")
  42302. },
  42303. {
  42304. name: "Inferno Incarnate",
  42305. height: math.unit(1e7, "multiverses")
  42306. },
  42307. ]
  42308. ))
  42309. characterMakers.push(() => makeCharacter(
  42310. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42311. {
  42312. front: {
  42313. height: math.unit(8, "feet"),
  42314. weight: math.unit(1200, "lb"),
  42315. name: "Front",
  42316. image: {
  42317. source: "./media/characters/malithee/front.svg",
  42318. extra: 1675/1640,
  42319. bottom: 162/1837
  42320. }
  42321. },
  42322. },
  42323. [
  42324. {
  42325. name: "Mortal Interaction",
  42326. height: math.unit(8, "feet"),
  42327. default: true
  42328. },
  42329. {
  42330. name: "Large",
  42331. height: math.unit(24, "feet")
  42332. },
  42333. {
  42334. name: "Kaiju",
  42335. height: math.unit(240, "feet")
  42336. },
  42337. {
  42338. name: "Megamacro",
  42339. height: math.unit(8000, "feet")
  42340. },
  42341. {
  42342. name: "Continent Cracker",
  42343. height: math.unit(24e6, "feet")
  42344. },
  42345. {
  42346. name: "Earth-Eclipsing",
  42347. height: math.unit(2.4e8, "feet")
  42348. },
  42349. {
  42350. name: "Sol-Swallowing",
  42351. height: math.unit(8e10, "feet")
  42352. },
  42353. {
  42354. name: "Galaxy Gulper",
  42355. height: math.unit(8, "galaxies")
  42356. },
  42357. {
  42358. name: "Light Universal",
  42359. height: math.unit(4, "universes")
  42360. },
  42361. {
  42362. name: "Universe Atoms",
  42363. height: math.unit(1.829e9, "universes")
  42364. },
  42365. {
  42366. name: "Light Multiversal",
  42367. height: math.unit(4, "multiverses")
  42368. },
  42369. {
  42370. name: "Multiverse Atoms",
  42371. height: math.unit(1.829e9, "multiverses")
  42372. },
  42373. {
  42374. name: "Nigh-Omnipresence",
  42375. height: math.unit(8e261, "multiverses")
  42376. },
  42377. ]
  42378. ))
  42379. characterMakers.push(() => makeCharacter(
  42380. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42381. {
  42382. front: {
  42383. height: math.unit(10, "feet"),
  42384. weight: math.unit(1500, "lb"),
  42385. name: "Front",
  42386. image: {
  42387. source: "./media/characters/miles-thestia/front.svg",
  42388. extra: 1812/1727,
  42389. bottom: 86/1898
  42390. }
  42391. },
  42392. back: {
  42393. height: math.unit(10, "feet"),
  42394. weight: math.unit(1500, "lb"),
  42395. name: "Back",
  42396. image: {
  42397. source: "./media/characters/miles-thestia/back.svg",
  42398. extra: 1799/1690,
  42399. bottom: 47/1846
  42400. }
  42401. },
  42402. frontNsfw: {
  42403. height: math.unit(10, "feet"),
  42404. weight: math.unit(1500, "lb"),
  42405. name: "Front (NSFW)",
  42406. image: {
  42407. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42408. extra: 1812/1727,
  42409. bottom: 86/1898
  42410. }
  42411. },
  42412. },
  42413. [
  42414. {
  42415. name: "Mini-Macro",
  42416. height: math.unit(10, "feet"),
  42417. default: true
  42418. },
  42419. ]
  42420. ))
  42421. characterMakers.push(() => makeCharacter(
  42422. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42423. {
  42424. front: {
  42425. height: math.unit(25, "feet"),
  42426. name: "Front",
  42427. image: {
  42428. source: "./media/characters/titan-s-wulf/front.svg",
  42429. extra: 1560/1484,
  42430. bottom: 76/1636
  42431. }
  42432. },
  42433. },
  42434. [
  42435. {
  42436. name: "Smallest",
  42437. height: math.unit(25, "feet"),
  42438. default: true
  42439. },
  42440. {
  42441. name: "Normal",
  42442. height: math.unit(200, "feet")
  42443. },
  42444. {
  42445. name: "Macro",
  42446. height: math.unit(200000, "feet")
  42447. },
  42448. {
  42449. name: "Multiversal Original",
  42450. height: math.unit(10000, "multiverses")
  42451. },
  42452. ]
  42453. ))
  42454. characterMakers.push(() => makeCharacter(
  42455. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42456. {
  42457. front: {
  42458. height: math.unit(8, "feet"),
  42459. weight: math.unit(553, "lb"),
  42460. name: "Front",
  42461. image: {
  42462. source: "./media/characters/tawendeh/front.svg",
  42463. extra: 2365/2268,
  42464. bottom: 83/2448
  42465. }
  42466. },
  42467. frontClothed: {
  42468. height: math.unit(8, "feet"),
  42469. weight: math.unit(553, "lb"),
  42470. name: "Front (Clothed)",
  42471. image: {
  42472. source: "./media/characters/tawendeh/front-clothed.svg",
  42473. extra: 2365/2268,
  42474. bottom: 83/2448
  42475. }
  42476. },
  42477. back: {
  42478. height: math.unit(8, "feet"),
  42479. weight: math.unit(553, "lb"),
  42480. name: "Back",
  42481. image: {
  42482. source: "./media/characters/tawendeh/back.svg",
  42483. extra: 2397/2294,
  42484. bottom: 42/2439
  42485. }
  42486. },
  42487. },
  42488. [
  42489. {
  42490. name: "Mortal Interaction",
  42491. height: math.unit(8, "feet"),
  42492. default: true
  42493. },
  42494. {
  42495. name: "Giant",
  42496. height: math.unit(80, "feet")
  42497. },
  42498. {
  42499. name: "Macro",
  42500. height: math.unit(800, "feet")
  42501. },
  42502. {
  42503. name: "Megamacro",
  42504. height: math.unit(8000, "feet")
  42505. },
  42506. {
  42507. name: "City-Crushing",
  42508. height: math.unit(24000, "feet")
  42509. },
  42510. {
  42511. name: "Mountain-Mashing",
  42512. height: math.unit(80000, "feet")
  42513. },
  42514. {
  42515. name: "Nation Nemesis",
  42516. height: math.unit(8e6, "feet")
  42517. },
  42518. {
  42519. name: "Continent Cracker",
  42520. height: math.unit(24e6, "feet")
  42521. },
  42522. {
  42523. name: "Earth-Eclipsing",
  42524. height: math.unit(2.4e8, "feet")
  42525. },
  42526. {
  42527. name: "Gas Giant Gulper",
  42528. height: math.unit(2.4e9, "feet")
  42529. },
  42530. {
  42531. name: "Sol-Swallowing",
  42532. height: math.unit(8e10, "feet")
  42533. },
  42534. {
  42535. name: "Galaxy Gulper",
  42536. height: math.unit(8, "galaxies")
  42537. },
  42538. {
  42539. name: "Cosmos Churner",
  42540. height: math.unit(8, "universes")
  42541. },
  42542. {
  42543. name: "Omnipotent Otter",
  42544. height: math.unit(80, "universes")
  42545. },
  42546. ]
  42547. ))
  42548. characterMakers.push(() => makeCharacter(
  42549. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42550. {
  42551. front: {
  42552. height: math.unit(2.6, "meters"),
  42553. weight: math.unit(900, "kg"),
  42554. name: "Front",
  42555. image: {
  42556. source: "./media/characters/neesha/front.svg",
  42557. extra: 1803/1653,
  42558. bottom: 128/1931
  42559. }
  42560. },
  42561. },
  42562. [
  42563. {
  42564. name: "Normal",
  42565. height: math.unit(2.6, "meters"),
  42566. default: true
  42567. },
  42568. {
  42569. name: "Macro",
  42570. height: math.unit(50, "meters")
  42571. },
  42572. ]
  42573. ))
  42574. characterMakers.push(() => makeCharacter(
  42575. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42576. {
  42577. front: {
  42578. height: math.unit(5, "feet"),
  42579. weight: math.unit(185, "lb"),
  42580. name: "Front",
  42581. image: {
  42582. source: "./media/characters/kyera/front.svg",
  42583. extra: 1875/1790,
  42584. bottom: 96/1971
  42585. }
  42586. },
  42587. },
  42588. [
  42589. {
  42590. name: "Normal",
  42591. height: math.unit(5, "feet"),
  42592. default: true
  42593. },
  42594. ]
  42595. ))
  42596. characterMakers.push(() => makeCharacter(
  42597. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42598. {
  42599. front: {
  42600. height: math.unit(7 + 6/12, "feet"),
  42601. weight: math.unit(540, "lb"),
  42602. name: "Front",
  42603. image: {
  42604. source: "./media/characters/yuko/front.svg",
  42605. extra: 1282/1222,
  42606. bottom: 101/1383
  42607. }
  42608. },
  42609. frontClothed: {
  42610. height: math.unit(7 + 6/12, "feet"),
  42611. weight: math.unit(540, "lb"),
  42612. name: "Front (Clothed)",
  42613. image: {
  42614. source: "./media/characters/yuko/front-clothed.svg",
  42615. extra: 1282/1222,
  42616. bottom: 101/1383
  42617. }
  42618. },
  42619. },
  42620. [
  42621. {
  42622. name: "Normal",
  42623. height: math.unit(7 + 6/12, "feet"),
  42624. default: true
  42625. },
  42626. {
  42627. name: "Macro",
  42628. height: math.unit(26 + 9/12, "feet")
  42629. },
  42630. {
  42631. name: "Megamacro",
  42632. height: math.unit(300, "feet")
  42633. },
  42634. {
  42635. name: "Gigamacro",
  42636. height: math.unit(5000, "feet")
  42637. },
  42638. {
  42639. name: "Planetary",
  42640. height: math.unit(10000, "miles")
  42641. },
  42642. ]
  42643. ))
  42644. characterMakers.push(() => makeCharacter(
  42645. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42646. {
  42647. front: {
  42648. height: math.unit(8 + 2/12, "feet"),
  42649. weight: math.unit(600, "lb"),
  42650. name: "Front",
  42651. image: {
  42652. source: "./media/characters/deam-nitrel/front.svg",
  42653. extra: 1308/1234,
  42654. bottom: 125/1433
  42655. }
  42656. },
  42657. },
  42658. [
  42659. {
  42660. name: "Normal",
  42661. height: math.unit(8 + 2/12, "feet"),
  42662. default: true
  42663. },
  42664. ]
  42665. ))
  42666. characterMakers.push(() => makeCharacter(
  42667. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42668. {
  42669. front: {
  42670. height: math.unit(6.1, "feet"),
  42671. weight: math.unit(180, "lb"),
  42672. name: "Front",
  42673. image: {
  42674. source: "./media/characters/skyress/front.svg",
  42675. extra: 1045/915,
  42676. bottom: 28/1073
  42677. }
  42678. },
  42679. maw: {
  42680. height: math.unit(1, "feet"),
  42681. name: "Maw",
  42682. image: {
  42683. source: "./media/characters/skyress/maw.svg"
  42684. }
  42685. },
  42686. },
  42687. [
  42688. {
  42689. name: "Normal",
  42690. height: math.unit(6.1, "feet"),
  42691. default: true
  42692. },
  42693. {
  42694. name: "Macro",
  42695. height: math.unit(200, "feet")
  42696. },
  42697. ]
  42698. ))
  42699. characterMakers.push(() => makeCharacter(
  42700. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42701. {
  42702. front: {
  42703. height: math.unit(4 + 2/12, "feet"),
  42704. weight: math.unit(40, "kg"),
  42705. name: "Front",
  42706. image: {
  42707. source: "./media/characters/amethyst-jones/front.svg",
  42708. extra: 1220/1150,
  42709. bottom: 101/1321
  42710. }
  42711. },
  42712. },
  42713. [
  42714. {
  42715. name: "Normal",
  42716. height: math.unit(4 + 2/12, "feet"),
  42717. default: true
  42718. },
  42719. ]
  42720. ))
  42721. characterMakers.push(() => makeCharacter(
  42722. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42723. {
  42724. front: {
  42725. height: math.unit(1.7, "m"),
  42726. weight: math.unit(135, "lb"),
  42727. name: "Front",
  42728. image: {
  42729. source: "./media/characters/jade/front.svg",
  42730. extra: 1818/1767,
  42731. bottom: 32/1850
  42732. }
  42733. },
  42734. back: {
  42735. height: math.unit(1.7, "m"),
  42736. weight: math.unit(135, "lb"),
  42737. name: "Back",
  42738. image: {
  42739. source: "./media/characters/jade/back.svg",
  42740. extra: 1869/1809,
  42741. bottom: 35/1904
  42742. }
  42743. },
  42744. hand: {
  42745. height: math.unit(0.24, "m"),
  42746. name: "Hand",
  42747. image: {
  42748. source: "./media/characters/jade/hand.svg"
  42749. }
  42750. },
  42751. foot: {
  42752. height: math.unit(0.263, "m"),
  42753. name: "Foot",
  42754. image: {
  42755. source: "./media/characters/jade/foot.svg"
  42756. }
  42757. },
  42758. dick: {
  42759. height: math.unit(0.47, "m"),
  42760. name: "Dick",
  42761. image: {
  42762. source: "./media/characters/jade/dick.svg"
  42763. }
  42764. },
  42765. },
  42766. [
  42767. {
  42768. name: "Micro",
  42769. height: math.unit(22, "cm")
  42770. },
  42771. {
  42772. name: "Normal",
  42773. height: math.unit(1.7, "m"),
  42774. default: true
  42775. },
  42776. {
  42777. name: "Macro",
  42778. height: math.unit(152, "m")
  42779. },
  42780. ]
  42781. ))
  42782. characterMakers.push(() => makeCharacter(
  42783. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42784. {
  42785. front: {
  42786. height: math.unit(100, "miles"),
  42787. weight: math.unit(20000, "tons"),
  42788. name: "Front",
  42789. image: {
  42790. source: "./media/characters/cookie/front.svg",
  42791. extra: 1125/1070,
  42792. bottom: 30/1155
  42793. }
  42794. },
  42795. },
  42796. [
  42797. {
  42798. name: "Big",
  42799. height: math.unit(50, "feet")
  42800. },
  42801. {
  42802. name: "Macro",
  42803. height: math.unit(100, "miles"),
  42804. default: true
  42805. },
  42806. {
  42807. name: "Megamacro",
  42808. height: math.unit(90000, "miles")
  42809. },
  42810. ]
  42811. ))
  42812. characterMakers.push(() => makeCharacter(
  42813. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42814. {
  42815. front: {
  42816. height: math.unit(6, "feet"),
  42817. weight: math.unit(145, "lb"),
  42818. name: "Front",
  42819. image: {
  42820. source: "./media/characters/farzian/front.svg",
  42821. extra: 1902/1693,
  42822. bottom: 108/2010
  42823. }
  42824. },
  42825. },
  42826. [
  42827. {
  42828. name: "Macro",
  42829. height: math.unit(500, "feet"),
  42830. default: true
  42831. },
  42832. ]
  42833. ))
  42834. characterMakers.push(() => makeCharacter(
  42835. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42836. {
  42837. front: {
  42838. height: math.unit(3 + 6/12, "feet"),
  42839. weight: math.unit(50, "lb"),
  42840. name: "Front",
  42841. image: {
  42842. source: "./media/characters/kimberly-tilson/front.svg",
  42843. extra: 1400/1322,
  42844. bottom: 36/1436
  42845. }
  42846. },
  42847. back: {
  42848. height: math.unit(3 + 6/12, "feet"),
  42849. weight: math.unit(50, "lb"),
  42850. name: "Back",
  42851. image: {
  42852. source: "./media/characters/kimberly-tilson/back.svg",
  42853. extra: 1370/1307,
  42854. bottom: 20/1390
  42855. }
  42856. },
  42857. },
  42858. [
  42859. {
  42860. name: "Normal",
  42861. height: math.unit(3 + 6/12, "feet"),
  42862. default: true
  42863. },
  42864. ]
  42865. ))
  42866. characterMakers.push(() => makeCharacter(
  42867. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42868. {
  42869. front: {
  42870. height: math.unit(350, "meters"),
  42871. weight: math.unit(7.57059e+8, "lb"),
  42872. name: "Front",
  42873. image: {
  42874. source: "./media/characters/harthos/front.svg",
  42875. extra: 455/446,
  42876. bottom: 15/470
  42877. },
  42878. form: "peacekeeper",
  42879. default: true
  42880. },
  42881. allusus_front: {
  42882. height: math.unit(270, "meters"),
  42883. weight: math.unit(3.47550e+8, "lb"),
  42884. name: "Front",
  42885. image: {
  42886. source: "./media/characters/harthos/allusus-front.svg",
  42887. extra: 455/446,
  42888. bottom: 15/470
  42889. },
  42890. form: "allusus",
  42891. },
  42892. },
  42893. [
  42894. {
  42895. name: "Macro",
  42896. height: math.unit(350, "meters"),
  42897. default: true,
  42898. form: "peacekeeper"
  42899. },
  42900. {
  42901. name: "Macro",
  42902. height: math.unit(270, "meters"),
  42903. default: true,
  42904. form: "allusus"
  42905. },
  42906. ],
  42907. {
  42908. "peacekeeper": {
  42909. name: "Peacekeeper",
  42910. default: true
  42911. },
  42912. "allusus": {
  42913. name: "Allusus",
  42914. },
  42915. }
  42916. ))
  42917. characterMakers.push(() => makeCharacter(
  42918. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42919. {
  42920. front: {
  42921. height: math.unit(15, "feet"),
  42922. name: "Front",
  42923. image: {
  42924. source: "./media/characters/hypatia/front.svg",
  42925. extra: 1653/1591,
  42926. bottom: 79/1732
  42927. }
  42928. },
  42929. },
  42930. [
  42931. {
  42932. name: "Normal",
  42933. height: math.unit(15, "feet")
  42934. },
  42935. {
  42936. name: "Small",
  42937. height: math.unit(300, "feet")
  42938. },
  42939. {
  42940. name: "Macro",
  42941. height: math.unit(2500, "feet"),
  42942. default: true
  42943. },
  42944. {
  42945. name: "Mega Macro",
  42946. height: math.unit(1500, "miles")
  42947. },
  42948. {
  42949. name: "Giga Macro",
  42950. height: math.unit(1.5e6, "miles")
  42951. },
  42952. ]
  42953. ))
  42954. characterMakers.push(() => makeCharacter(
  42955. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42956. {
  42957. front: {
  42958. height: math.unit(6, "feet"),
  42959. weight: math.unit(200, "lb"),
  42960. name: "Front",
  42961. image: {
  42962. source: "./media/characters/wulver/front.svg",
  42963. extra: 1724/1632,
  42964. bottom: 130/1854
  42965. }
  42966. },
  42967. frontNsfw: {
  42968. height: math.unit(6, "feet"),
  42969. weight: math.unit(200, "lb"),
  42970. name: "Front (NSFW)",
  42971. image: {
  42972. source: "./media/characters/wulver/front-nsfw.svg",
  42973. extra: 1724/1632,
  42974. bottom: 130/1854
  42975. }
  42976. },
  42977. },
  42978. [
  42979. {
  42980. name: "Human-Sized",
  42981. height: math.unit(6, "feet")
  42982. },
  42983. {
  42984. name: "Normal",
  42985. height: math.unit(4, "meters"),
  42986. default: true
  42987. },
  42988. {
  42989. name: "Large",
  42990. height: math.unit(6, "m")
  42991. },
  42992. ]
  42993. ))
  42994. characterMakers.push(() => makeCharacter(
  42995. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42996. {
  42997. front: {
  42998. height: math.unit(7, "feet"),
  42999. name: "Front",
  43000. image: {
  43001. source: "./media/characters/maru/front.svg",
  43002. extra: 1595/1570,
  43003. bottom: 0/1595
  43004. }
  43005. },
  43006. },
  43007. [
  43008. {
  43009. name: "Normal",
  43010. height: math.unit(7, "feet"),
  43011. default: true
  43012. },
  43013. {
  43014. name: "Macro",
  43015. height: math.unit(700, "feet")
  43016. },
  43017. {
  43018. name: "Mega Macro",
  43019. height: math.unit(25, "miles")
  43020. },
  43021. ]
  43022. ))
  43023. characterMakers.push(() => makeCharacter(
  43024. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43025. {
  43026. front: {
  43027. height: math.unit(6, "feet"),
  43028. weight: math.unit(170, "lb"),
  43029. name: "Front",
  43030. image: {
  43031. source: "./media/characters/xenon/front.svg",
  43032. extra: 1376/1305,
  43033. bottom: 56/1432
  43034. }
  43035. },
  43036. back: {
  43037. height: math.unit(6, "feet"),
  43038. weight: math.unit(170, "lb"),
  43039. name: "Back",
  43040. image: {
  43041. source: "./media/characters/xenon/back.svg",
  43042. extra: 1328/1259,
  43043. bottom: 95/1423
  43044. }
  43045. },
  43046. maw: {
  43047. height: math.unit(0.52, "feet"),
  43048. name: "Maw",
  43049. image: {
  43050. source: "./media/characters/xenon/maw.svg"
  43051. }
  43052. },
  43053. handLeft: {
  43054. height: math.unit(0.82 * 169 / 153, "feet"),
  43055. name: "Hand (Left)",
  43056. image: {
  43057. source: "./media/characters/xenon/hand-left.svg"
  43058. }
  43059. },
  43060. handRight: {
  43061. height: math.unit(0.82, "feet"),
  43062. name: "Hand (Right)",
  43063. image: {
  43064. source: "./media/characters/xenon/hand-right.svg"
  43065. }
  43066. },
  43067. footLeft: {
  43068. height: math.unit(1.13, "feet"),
  43069. name: "Foot (Left)",
  43070. image: {
  43071. source: "./media/characters/xenon/foot-left.svg"
  43072. }
  43073. },
  43074. footRight: {
  43075. height: math.unit(1.13 * 194 / 196, "feet"),
  43076. name: "Foot (Right)",
  43077. image: {
  43078. source: "./media/characters/xenon/foot-right.svg"
  43079. }
  43080. },
  43081. },
  43082. [
  43083. {
  43084. name: "Micro",
  43085. height: math.unit(0.8, "inches")
  43086. },
  43087. {
  43088. name: "Normal",
  43089. height: math.unit(6, "feet")
  43090. },
  43091. {
  43092. name: "Macro",
  43093. height: math.unit(50, "feet"),
  43094. default: true
  43095. },
  43096. {
  43097. name: "Macro+",
  43098. height: math.unit(250, "feet")
  43099. },
  43100. {
  43101. name: "Megamacro",
  43102. height: math.unit(1500, "feet")
  43103. },
  43104. ]
  43105. ))
  43106. characterMakers.push(() => makeCharacter(
  43107. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43108. {
  43109. front: {
  43110. height: math.unit(7 + 5/12, "feet"),
  43111. name: "Front",
  43112. image: {
  43113. source: "./media/characters/zane/front.svg",
  43114. extra: 1260/1203,
  43115. bottom: 94/1354
  43116. }
  43117. },
  43118. back: {
  43119. height: math.unit(5.05, "feet"),
  43120. name: "Back",
  43121. image: {
  43122. source: "./media/characters/zane/back.svg",
  43123. extra: 893/829,
  43124. bottom: 30/923
  43125. }
  43126. },
  43127. werewolf: {
  43128. height: math.unit(11, "feet"),
  43129. name: "Werewolf",
  43130. image: {
  43131. source: "./media/characters/zane/werewolf.svg",
  43132. extra: 1383/1323,
  43133. bottom: 89/1472
  43134. }
  43135. },
  43136. foot: {
  43137. height: math.unit(1.46, "feet"),
  43138. name: "Foot",
  43139. image: {
  43140. source: "./media/characters/zane/foot.svg"
  43141. }
  43142. },
  43143. footFront: {
  43144. height: math.unit(0.784, "feet"),
  43145. name: "Foot (Front)",
  43146. image: {
  43147. source: "./media/characters/zane/foot-front.svg"
  43148. }
  43149. },
  43150. dick: {
  43151. height: math.unit(1.95, "feet"),
  43152. name: "Dick",
  43153. image: {
  43154. source: "./media/characters/zane/dick.svg"
  43155. }
  43156. },
  43157. dickWerewolf: {
  43158. height: math.unit(3.77, "feet"),
  43159. name: "Dick (Werewolf)",
  43160. image: {
  43161. source: "./media/characters/zane/dick.svg"
  43162. }
  43163. },
  43164. },
  43165. [
  43166. {
  43167. name: "Normal",
  43168. height: math.unit(7 + 5/12, "feet"),
  43169. default: true
  43170. },
  43171. ]
  43172. ))
  43173. characterMakers.push(() => makeCharacter(
  43174. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43175. {
  43176. front: {
  43177. height: math.unit(6 + 2/12, "feet"),
  43178. weight: math.unit(284, "lb"),
  43179. name: "Front",
  43180. image: {
  43181. source: "./media/characters/benni-desparque/front.svg",
  43182. extra: 878/729,
  43183. bottom: 58/936
  43184. }
  43185. },
  43186. back: {
  43187. height: math.unit(6 + 2/12, "feet"),
  43188. weight: math.unit(284, "lb"),
  43189. name: "Back",
  43190. image: {
  43191. source: "./media/characters/benni-desparque/back.svg",
  43192. extra: 901/756,
  43193. bottom: 51/952
  43194. }
  43195. },
  43196. dressed: {
  43197. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43198. weight: math.unit(284, "lb"),
  43199. name: "Dressed",
  43200. image: {
  43201. source: "./media/characters/benni-desparque/dressed.svg",
  43202. extra: 1514/1276,
  43203. bottom: 65/1579
  43204. }
  43205. },
  43206. hand: {
  43207. height: math.unit(1.28, "feet"),
  43208. name: "Hand",
  43209. image: {
  43210. source: "./media/characters/benni-desparque/hand.svg"
  43211. }
  43212. },
  43213. foot: {
  43214. height: math.unit(1.53, "feet"),
  43215. name: "Foot",
  43216. image: {
  43217. source: "./media/characters/benni-desparque/foot.svg"
  43218. }
  43219. },
  43220. aiControlUnit: {
  43221. height: math.unit(0.175, "feet"),
  43222. name: "AI Control Unit",
  43223. image: {
  43224. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43225. }
  43226. },
  43227. },
  43228. [
  43229. {
  43230. name: "Civilian",
  43231. height: math.unit(6 + 2/12, "feet")
  43232. },
  43233. {
  43234. name: "Normal",
  43235. height: math.unit(98, "feet"),
  43236. default: true
  43237. },
  43238. {
  43239. name: "Kaiju Fighter",
  43240. height: math.unit(268, "feet")
  43241. },
  43242. ]
  43243. ))
  43244. characterMakers.push(() => makeCharacter(
  43245. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43246. {
  43247. front: {
  43248. height: math.unit(5, "feet"),
  43249. weight: math.unit(105, "lb"),
  43250. name: "Front",
  43251. image: {
  43252. source: "./media/characters/maxine/front.svg",
  43253. extra: 1386/1250,
  43254. bottom: 71/1457
  43255. }
  43256. },
  43257. },
  43258. [
  43259. {
  43260. name: "Normal",
  43261. height: math.unit(5, "feet"),
  43262. default: true
  43263. },
  43264. ]
  43265. ))
  43266. characterMakers.push(() => makeCharacter(
  43267. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43268. {
  43269. front: {
  43270. height: math.unit(11 + 7/12, "feet"),
  43271. weight: math.unit(9576, "lb"),
  43272. name: "Front",
  43273. image: {
  43274. source: "./media/characters/scaly/front.svg",
  43275. extra: 888/867,
  43276. bottom: 36/924
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Normal",
  43283. height: math.unit(11 + 7/12, "feet"),
  43284. default: true
  43285. },
  43286. ]
  43287. ))
  43288. characterMakers.push(() => makeCharacter(
  43289. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43290. {
  43291. front: {
  43292. height: math.unit(6 + 3/12, "feet"),
  43293. name: "Front",
  43294. image: {
  43295. source: "./media/characters/saelria/front.svg",
  43296. extra: 1243/1138,
  43297. bottom: 46/1289
  43298. }
  43299. },
  43300. },
  43301. [
  43302. {
  43303. name: "Micro",
  43304. height: math.unit(6, "inches"),
  43305. },
  43306. {
  43307. name: "Normal",
  43308. height: math.unit(6 + 3/12, "feet"),
  43309. default: true
  43310. },
  43311. {
  43312. name: "Macro",
  43313. height: math.unit(25, "feet")
  43314. },
  43315. ]
  43316. ))
  43317. characterMakers.push(() => makeCharacter(
  43318. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43319. {
  43320. front: {
  43321. height: math.unit(80, "meters"),
  43322. weight: math.unit(7000, "tonnes"),
  43323. name: "Front",
  43324. image: {
  43325. source: "./media/characters/tef/front.svg",
  43326. extra: 2036/1991,
  43327. bottom: 54/2090
  43328. }
  43329. },
  43330. back: {
  43331. height: math.unit(80, "meters"),
  43332. weight: math.unit(7000, "tonnes"),
  43333. name: "Back",
  43334. image: {
  43335. source: "./media/characters/tef/back.svg",
  43336. extra: 2036/1991,
  43337. bottom: 54/2090
  43338. }
  43339. },
  43340. },
  43341. [
  43342. {
  43343. name: "Macro",
  43344. height: math.unit(80, "meters"),
  43345. default: true
  43346. },
  43347. ]
  43348. ))
  43349. characterMakers.push(() => makeCharacter(
  43350. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43351. {
  43352. front: {
  43353. height: math.unit(13, "feet"),
  43354. weight: math.unit(6, "tons"),
  43355. name: "Front",
  43356. image: {
  43357. source: "./media/characters/rover/front.svg",
  43358. extra: 1233/1156,
  43359. bottom: 50/1283
  43360. }
  43361. },
  43362. back: {
  43363. height: math.unit(13, "feet"),
  43364. weight: math.unit(6, "tons"),
  43365. name: "Back",
  43366. image: {
  43367. source: "./media/characters/rover/back.svg",
  43368. extra: 1327/1258,
  43369. bottom: 39/1366
  43370. }
  43371. },
  43372. },
  43373. [
  43374. {
  43375. name: "Normal",
  43376. height: math.unit(13, "feet"),
  43377. default: true
  43378. },
  43379. {
  43380. name: "Macro",
  43381. height: math.unit(1300, "feet")
  43382. },
  43383. {
  43384. name: "Megamacro",
  43385. height: math.unit(1300, "miles")
  43386. },
  43387. {
  43388. name: "Gigamacro",
  43389. height: math.unit(1300000, "miles")
  43390. },
  43391. ]
  43392. ))
  43393. characterMakers.push(() => makeCharacter(
  43394. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43395. {
  43396. front: {
  43397. height: math.unit(10, "feet"),
  43398. weight: math.unit(500, "lb"),
  43399. name: "Front",
  43400. image: {
  43401. source: "./media/characters/ariz/front.svg",
  43402. extra: 461/450,
  43403. bottom: 16/477
  43404. }
  43405. },
  43406. },
  43407. [
  43408. {
  43409. name: "MiniMacro",
  43410. height: math.unit(10, "feet"),
  43411. default: true
  43412. },
  43413. ]
  43414. ))
  43415. characterMakers.push(() => makeCharacter(
  43416. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43417. {
  43418. front: {
  43419. height: math.unit(6, "feet"),
  43420. weight: math.unit(140, "lb"),
  43421. name: "Front",
  43422. image: {
  43423. source: "./media/characters/sigrun/front.svg",
  43424. extra: 1418/1359,
  43425. bottom: 27/1445
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Macro",
  43432. height: math.unit(35, "feet"),
  43433. default: true
  43434. },
  43435. ]
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43439. {
  43440. front: {
  43441. height: math.unit(6, "feet"),
  43442. weight: math.unit(150, "lb"),
  43443. name: "Front",
  43444. image: {
  43445. source: "./media/characters/numin/front.svg",
  43446. extra: 1433/1388,
  43447. bottom: 12/1445
  43448. }
  43449. },
  43450. },
  43451. [
  43452. {
  43453. name: "Macro",
  43454. height: math.unit(21.5, "km"),
  43455. default: true
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43461. {
  43462. front: {
  43463. height: math.unit(6, "feet"),
  43464. weight: math.unit(463, "lb"),
  43465. name: "Front",
  43466. image: {
  43467. source: "./media/characters/melwa/front.svg",
  43468. extra: 1307/1248,
  43469. bottom: 93/1400
  43470. }
  43471. },
  43472. },
  43473. [
  43474. {
  43475. name: "Macro",
  43476. height: math.unit(50, "meters"),
  43477. default: true
  43478. },
  43479. ]
  43480. ))
  43481. characterMakers.push(() => makeCharacter(
  43482. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43483. {
  43484. front: {
  43485. height: math.unit(325, "feet"),
  43486. name: "Front",
  43487. image: {
  43488. source: "./media/characters/zorkaiju/front.svg",
  43489. extra: 1955/1814,
  43490. bottom: 40/1995
  43491. }
  43492. },
  43493. frontExtended: {
  43494. height: math.unit(325, "feet"),
  43495. name: "Front (Extended)",
  43496. image: {
  43497. source: "./media/characters/zorkaiju/front-extended.svg",
  43498. extra: 1955/1814,
  43499. bottom: 40/1995
  43500. }
  43501. },
  43502. side: {
  43503. height: math.unit(325, "feet"),
  43504. name: "Side",
  43505. image: {
  43506. source: "./media/characters/zorkaiju/side.svg",
  43507. extra: 1495/1396,
  43508. bottom: 17/1512
  43509. }
  43510. },
  43511. sideExtended: {
  43512. height: math.unit(325, "feet"),
  43513. name: "Side (Extended)",
  43514. image: {
  43515. source: "./media/characters/zorkaiju/side-extended.svg",
  43516. extra: 1495/1396,
  43517. bottom: 17/1512
  43518. }
  43519. },
  43520. back: {
  43521. height: math.unit(325, "feet"),
  43522. name: "Back",
  43523. image: {
  43524. source: "./media/characters/zorkaiju/back.svg",
  43525. extra: 1959/1821,
  43526. bottom: 31/1990
  43527. }
  43528. },
  43529. backExtended: {
  43530. height: math.unit(325, "feet"),
  43531. name: "Back (Extended)",
  43532. image: {
  43533. source: "./media/characters/zorkaiju/back-extended.svg",
  43534. extra: 1959/1821,
  43535. bottom: 31/1990
  43536. }
  43537. },
  43538. hand: {
  43539. height: math.unit(58.4, "feet"),
  43540. name: "Hand",
  43541. image: {
  43542. source: "./media/characters/zorkaiju/hand.svg"
  43543. }
  43544. },
  43545. handExtended: {
  43546. height: math.unit(61.4, "feet"),
  43547. name: "Hand (Extended)",
  43548. image: {
  43549. source: "./media/characters/zorkaiju/hand-extended.svg"
  43550. }
  43551. },
  43552. foot: {
  43553. height: math.unit(95, "feet"),
  43554. name: "Foot",
  43555. image: {
  43556. source: "./media/characters/zorkaiju/foot.svg"
  43557. }
  43558. },
  43559. leftArm: {
  43560. height: math.unit(59, "feet"),
  43561. name: "Left Arm",
  43562. image: {
  43563. source: "./media/characters/zorkaiju/left-arm.svg"
  43564. }
  43565. },
  43566. rightArm: {
  43567. height: math.unit(59, "feet"),
  43568. name: "Right Arm",
  43569. image: {
  43570. source: "./media/characters/zorkaiju/right-arm.svg"
  43571. }
  43572. },
  43573. leftArmExtended: {
  43574. height: math.unit(59 * 1.033546, "feet"),
  43575. name: "Left Arm (Extended)",
  43576. image: {
  43577. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43578. }
  43579. },
  43580. rightArmExtended: {
  43581. height: math.unit(59 * 1.0496, "feet"),
  43582. name: "Right Arm (Extended)",
  43583. image: {
  43584. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43585. }
  43586. },
  43587. tail: {
  43588. height: math.unit(104, "feet"),
  43589. name: "Tail",
  43590. image: {
  43591. source: "./media/characters/zorkaiju/tail.svg"
  43592. }
  43593. },
  43594. tailExtended: {
  43595. height: math.unit(104, "feet"),
  43596. name: "Tail (Extended)",
  43597. image: {
  43598. source: "./media/characters/zorkaiju/tail-extended.svg"
  43599. }
  43600. },
  43601. tailBottom: {
  43602. height: math.unit(104, "feet"),
  43603. name: "Tail Bottom",
  43604. image: {
  43605. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43606. }
  43607. },
  43608. crystal: {
  43609. height: math.unit(27.54, "feet"),
  43610. name: "Crystal",
  43611. image: {
  43612. source: "./media/characters/zorkaiju/crystal.svg"
  43613. }
  43614. },
  43615. },
  43616. [
  43617. {
  43618. name: "Kaiju",
  43619. height: math.unit(325, "feet"),
  43620. default: true
  43621. },
  43622. ]
  43623. ))
  43624. characterMakers.push(() => makeCharacter(
  43625. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43626. {
  43627. front: {
  43628. height: math.unit(6 + 1/12, "feet"),
  43629. weight: math.unit(115, "lb"),
  43630. name: "Front",
  43631. image: {
  43632. source: "./media/characters/bailey-belfry/front.svg",
  43633. extra: 1240/1121,
  43634. bottom: 101/1341
  43635. }
  43636. },
  43637. },
  43638. [
  43639. {
  43640. name: "Normal",
  43641. height: math.unit(6 + 1/12, "feet"),
  43642. default: true
  43643. },
  43644. ]
  43645. ))
  43646. characterMakers.push(() => makeCharacter(
  43647. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43648. {
  43649. side: {
  43650. height: math.unit(4, "meters"),
  43651. weight: math.unit(250, "kg"),
  43652. name: "Side",
  43653. image: {
  43654. source: "./media/characters/blacky/side.svg",
  43655. extra: 1027/919,
  43656. bottom: 43/1070
  43657. }
  43658. },
  43659. maw: {
  43660. height: math.unit(1, "meters"),
  43661. name: "Maw",
  43662. image: {
  43663. source: "./media/characters/blacky/maw.svg"
  43664. }
  43665. },
  43666. paw: {
  43667. height: math.unit(1, "meters"),
  43668. name: "Paw",
  43669. image: {
  43670. source: "./media/characters/blacky/paw.svg"
  43671. }
  43672. },
  43673. },
  43674. [
  43675. {
  43676. name: "Normal",
  43677. height: math.unit(4, "meters"),
  43678. default: true
  43679. },
  43680. ]
  43681. ))
  43682. characterMakers.push(() => makeCharacter(
  43683. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43684. {
  43685. front: {
  43686. height: math.unit(170, "cm"),
  43687. weight: math.unit(66, "kg"),
  43688. name: "Front",
  43689. image: {
  43690. source: "./media/characters/thux-ei/front.svg",
  43691. extra: 1109/1011,
  43692. bottom: 8/1117
  43693. }
  43694. },
  43695. },
  43696. [
  43697. {
  43698. name: "Normal",
  43699. height: math.unit(170, "cm"),
  43700. default: true
  43701. },
  43702. ]
  43703. ))
  43704. characterMakers.push(() => makeCharacter(
  43705. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43706. {
  43707. front: {
  43708. height: math.unit(5, "feet"),
  43709. weight: math.unit(120, "lb"),
  43710. name: "Front",
  43711. image: {
  43712. source: "./media/characters/roxanne-voltaire/front.svg",
  43713. extra: 1901/1779,
  43714. bottom: 53/1954
  43715. }
  43716. },
  43717. },
  43718. [
  43719. {
  43720. name: "Normal",
  43721. height: math.unit(5, "feet"),
  43722. default: true
  43723. },
  43724. {
  43725. name: "Giant",
  43726. height: math.unit(50, "feet")
  43727. },
  43728. {
  43729. name: "Titan",
  43730. height: math.unit(500, "feet")
  43731. },
  43732. {
  43733. name: "Macro",
  43734. height: math.unit(5000, "feet")
  43735. },
  43736. {
  43737. name: "Megamacro",
  43738. height: math.unit(50000, "feet")
  43739. },
  43740. {
  43741. name: "Gigamacro",
  43742. height: math.unit(500000, "feet")
  43743. },
  43744. {
  43745. name: "Teramacro",
  43746. height: math.unit(5e6, "feet")
  43747. },
  43748. ]
  43749. ))
  43750. characterMakers.push(() => makeCharacter(
  43751. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43752. {
  43753. front: {
  43754. height: math.unit(6 + 2/12, "feet"),
  43755. name: "Front",
  43756. image: {
  43757. source: "./media/characters/squeaks/front.svg",
  43758. extra: 1823/1768,
  43759. bottom: 138/1961
  43760. }
  43761. },
  43762. },
  43763. [
  43764. {
  43765. name: "Micro",
  43766. height: math.unit(0.5, "inches")
  43767. },
  43768. {
  43769. name: "Normal",
  43770. height: math.unit(6 + 2/12, "feet"),
  43771. default: true
  43772. },
  43773. {
  43774. name: "Macro",
  43775. height: math.unit(600, "feet")
  43776. },
  43777. ]
  43778. ))
  43779. characterMakers.push(() => makeCharacter(
  43780. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43781. {
  43782. front: {
  43783. height: math.unit(1.72, "meters"),
  43784. name: "Front",
  43785. image: {
  43786. source: "./media/characters/archinger/front.svg",
  43787. extra: 1861/1675,
  43788. bottom: 125/1986
  43789. }
  43790. },
  43791. back: {
  43792. height: math.unit(1.72, "meters"),
  43793. name: "Back",
  43794. image: {
  43795. source: "./media/characters/archinger/back.svg",
  43796. extra: 1844/1701,
  43797. bottom: 104/1948
  43798. }
  43799. },
  43800. cock: {
  43801. height: math.unit(0.59, "feet"),
  43802. name: "Cock",
  43803. image: {
  43804. source: "./media/characters/archinger/cock.svg"
  43805. }
  43806. },
  43807. },
  43808. [
  43809. {
  43810. name: "Normal",
  43811. height: math.unit(1.72, "meters"),
  43812. default: true
  43813. },
  43814. {
  43815. name: "Macro",
  43816. height: math.unit(84, "meters")
  43817. },
  43818. {
  43819. name: "Macro+",
  43820. height: math.unit(112, "meters")
  43821. },
  43822. {
  43823. name: "Macro++",
  43824. height: math.unit(960, "meters")
  43825. },
  43826. {
  43827. name: "Macro+++",
  43828. height: math.unit(4, "km")
  43829. },
  43830. {
  43831. name: "Macro++++",
  43832. height: math.unit(48, "km")
  43833. },
  43834. {
  43835. name: "Macro+++++",
  43836. height: math.unit(4500, "km")
  43837. },
  43838. ]
  43839. ))
  43840. characterMakers.push(() => makeCharacter(
  43841. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43842. {
  43843. front: {
  43844. height: math.unit(5 + 5/12, "feet"),
  43845. name: "Front",
  43846. image: {
  43847. source: "./media/characters/alsnapz/front.svg",
  43848. extra: 1157/1065,
  43849. bottom: 42/1199
  43850. }
  43851. },
  43852. },
  43853. [
  43854. {
  43855. name: "Normal",
  43856. height: math.unit(5 + 5/12, "feet"),
  43857. default: true
  43858. },
  43859. ]
  43860. ))
  43861. characterMakers.push(() => makeCharacter(
  43862. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43863. {
  43864. side: {
  43865. height: math.unit(3.2, "earths"),
  43866. name: "Side",
  43867. image: {
  43868. source: "./media/characters/mag/side.svg",
  43869. extra: 1331/1008,
  43870. bottom: 52/1383
  43871. }
  43872. },
  43873. wing: {
  43874. height: math.unit(1.94, "earths"),
  43875. name: "Wing",
  43876. image: {
  43877. source: "./media/characters/mag/wing.svg"
  43878. }
  43879. },
  43880. dick: {
  43881. height: math.unit(1.8, "earths"),
  43882. name: "Dick",
  43883. image: {
  43884. source: "./media/characters/mag/dick.svg"
  43885. }
  43886. },
  43887. ass: {
  43888. height: math.unit(1.33, "earths"),
  43889. name: "Ass",
  43890. image: {
  43891. source: "./media/characters/mag/ass.svg"
  43892. }
  43893. },
  43894. head: {
  43895. height: math.unit(1.1, "earths"),
  43896. name: "Head",
  43897. image: {
  43898. source: "./media/characters/mag/head.svg"
  43899. }
  43900. },
  43901. maw: {
  43902. height: math.unit(1.62, "earths"),
  43903. name: "Maw",
  43904. image: {
  43905. source: "./media/characters/mag/maw.svg"
  43906. }
  43907. },
  43908. },
  43909. [
  43910. {
  43911. name: "Small",
  43912. height: math.unit(162, "feet")
  43913. },
  43914. {
  43915. name: "Normal",
  43916. height: math.unit(3.2, "earths"),
  43917. default: true
  43918. },
  43919. ]
  43920. ))
  43921. characterMakers.push(() => makeCharacter(
  43922. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43923. {
  43924. front: {
  43925. height: math.unit(512, "feet"),
  43926. weight: math.unit(63509, "tonnes"),
  43927. name: "Front",
  43928. image: {
  43929. source: "./media/characters/vorrel-harroc/front.svg",
  43930. extra: 1075/1063,
  43931. bottom: 62/1137
  43932. }
  43933. },
  43934. },
  43935. [
  43936. {
  43937. name: "Normal",
  43938. height: math.unit(10, "feet")
  43939. },
  43940. {
  43941. name: "Macro",
  43942. height: math.unit(512, "feet"),
  43943. default: true
  43944. },
  43945. {
  43946. name: "Megamacro",
  43947. height: math.unit(256, "miles")
  43948. },
  43949. {
  43950. name: "Gigamacro",
  43951. height: math.unit(4096, "miles")
  43952. },
  43953. ]
  43954. ))
  43955. characterMakers.push(() => makeCharacter(
  43956. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43957. {
  43958. side: {
  43959. height: math.unit(50, "feet"),
  43960. name: "Side",
  43961. image: {
  43962. source: "./media/characters/froimar/side.svg",
  43963. extra: 855/638,
  43964. bottom: 99/954
  43965. }
  43966. },
  43967. },
  43968. [
  43969. {
  43970. name: "Macro",
  43971. height: math.unit(50, "feet"),
  43972. default: true
  43973. },
  43974. ]
  43975. ))
  43976. characterMakers.push(() => makeCharacter(
  43977. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43978. {
  43979. front: {
  43980. height: math.unit(210, "miles"),
  43981. name: "Front",
  43982. image: {
  43983. source: "./media/characters/timothy/front.svg",
  43984. extra: 1007/943,
  43985. bottom: 62/1069
  43986. }
  43987. },
  43988. frontSkirt: {
  43989. height: math.unit(210, "miles"),
  43990. name: "Front (Skirt)",
  43991. image: {
  43992. source: "./media/characters/timothy/front-skirt.svg",
  43993. extra: 1007/943,
  43994. bottom: 62/1069
  43995. }
  43996. },
  43997. frontCoat: {
  43998. height: math.unit(210, "miles"),
  43999. name: "Front (Coat)",
  44000. image: {
  44001. source: "./media/characters/timothy/front-coat.svg",
  44002. extra: 1007/943,
  44003. bottom: 62/1069
  44004. }
  44005. },
  44006. },
  44007. [
  44008. {
  44009. name: "Macro",
  44010. height: math.unit(210, "miles"),
  44011. default: true
  44012. },
  44013. {
  44014. name: "Megamacro",
  44015. height: math.unit(210000, "miles")
  44016. },
  44017. ]
  44018. ))
  44019. characterMakers.push(() => makeCharacter(
  44020. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44021. {
  44022. front: {
  44023. height: math.unit(188, "feet"),
  44024. name: "Front",
  44025. image: {
  44026. source: "./media/characters/pyotr/front.svg",
  44027. extra: 1912/1826,
  44028. bottom: 18/1930
  44029. }
  44030. },
  44031. },
  44032. [
  44033. {
  44034. name: "Macro",
  44035. height: math.unit(188, "feet"),
  44036. default: true
  44037. },
  44038. {
  44039. name: "Megamacro",
  44040. height: math.unit(8, "miles")
  44041. },
  44042. ]
  44043. ))
  44044. characterMakers.push(() => makeCharacter(
  44045. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44046. {
  44047. side: {
  44048. height: math.unit(10, "feet"),
  44049. weight: math.unit(4500, "lb"),
  44050. name: "Side",
  44051. image: {
  44052. source: "./media/characters/ackart/side.svg",
  44053. extra: 1776/1668,
  44054. bottom: 116/1892
  44055. }
  44056. },
  44057. },
  44058. [
  44059. {
  44060. name: "Normal",
  44061. height: math.unit(10, "feet"),
  44062. default: true
  44063. },
  44064. ]
  44065. ))
  44066. characterMakers.push(() => makeCharacter(
  44067. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44068. {
  44069. side: {
  44070. height: math.unit(21, "feet"),
  44071. name: "Side",
  44072. image: {
  44073. source: "./media/characters/nolow/side.svg",
  44074. extra: 1484/1434,
  44075. bottom: 85/1569
  44076. }
  44077. },
  44078. sideErect: {
  44079. height: math.unit(21, "feet"),
  44080. name: "Side-erect",
  44081. image: {
  44082. source: "./media/characters/nolow/side-erect.svg",
  44083. extra: 1484/1434,
  44084. bottom: 85/1569
  44085. }
  44086. },
  44087. },
  44088. [
  44089. {
  44090. name: "Regular",
  44091. height: math.unit(12, "feet")
  44092. },
  44093. {
  44094. name: "Big Chee",
  44095. height: math.unit(21, "feet"),
  44096. default: true
  44097. },
  44098. ]
  44099. ))
  44100. characterMakers.push(() => makeCharacter(
  44101. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44102. {
  44103. front: {
  44104. height: math.unit(7, "feet"),
  44105. weight: math.unit(250, "lb"),
  44106. name: "Front",
  44107. image: {
  44108. source: "./media/characters/nines/front.svg",
  44109. extra: 1741/1607,
  44110. bottom: 41/1782
  44111. }
  44112. },
  44113. side: {
  44114. height: math.unit(7, "feet"),
  44115. weight: math.unit(250, "lb"),
  44116. name: "Side",
  44117. image: {
  44118. source: "./media/characters/nines/side.svg",
  44119. extra: 1854/1735,
  44120. bottom: 93/1947
  44121. }
  44122. },
  44123. back: {
  44124. height: math.unit(7, "feet"),
  44125. weight: math.unit(250, "lb"),
  44126. name: "Back",
  44127. image: {
  44128. source: "./media/characters/nines/back.svg",
  44129. extra: 1748/1615,
  44130. bottom: 20/1768
  44131. }
  44132. },
  44133. },
  44134. [
  44135. {
  44136. name: "Megamacro",
  44137. height: math.unit(99, "km"),
  44138. default: true
  44139. },
  44140. ]
  44141. ))
  44142. characterMakers.push(() => makeCharacter(
  44143. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44144. {
  44145. front: {
  44146. height: math.unit(5 + 10/12, "feet"),
  44147. weight: math.unit(210, "lb"),
  44148. name: "Front",
  44149. image: {
  44150. source: "./media/characters/zenith/front.svg",
  44151. extra: 1531/1452,
  44152. bottom: 198/1729
  44153. }
  44154. },
  44155. back: {
  44156. height: math.unit(5 + 10/12, "feet"),
  44157. weight: math.unit(210, "lb"),
  44158. name: "Back",
  44159. image: {
  44160. source: "./media/characters/zenith/back.svg",
  44161. extra: 1571/1487,
  44162. bottom: 75/1646
  44163. }
  44164. },
  44165. },
  44166. [
  44167. {
  44168. name: "Normal",
  44169. height: math.unit(5 + 10/12, "feet"),
  44170. default: true
  44171. }
  44172. ]
  44173. ))
  44174. characterMakers.push(() => makeCharacter(
  44175. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44176. {
  44177. front: {
  44178. height: math.unit(4, "feet"),
  44179. weight: math.unit(60, "lb"),
  44180. name: "Front",
  44181. image: {
  44182. source: "./media/characters/jasper/front.svg",
  44183. extra: 1450/1379,
  44184. bottom: 19/1469
  44185. }
  44186. },
  44187. },
  44188. [
  44189. {
  44190. name: "Normal",
  44191. height: math.unit(4, "feet"),
  44192. default: true
  44193. },
  44194. ]
  44195. ))
  44196. characterMakers.push(() => makeCharacter(
  44197. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44198. {
  44199. front: {
  44200. height: math.unit(6 + 5/12, "feet"),
  44201. weight: math.unit(290, "lb"),
  44202. name: "Front",
  44203. image: {
  44204. source: "./media/characters/tiberius-thyben/front.svg",
  44205. extra: 757/739,
  44206. bottom: 39/796
  44207. }
  44208. },
  44209. },
  44210. [
  44211. {
  44212. name: "Micro",
  44213. height: math.unit(1.5, "inches")
  44214. },
  44215. {
  44216. name: "Normal",
  44217. height: math.unit(6 + 5/12, "feet"),
  44218. default: true
  44219. },
  44220. {
  44221. name: "Macro",
  44222. height: math.unit(300, "feet")
  44223. },
  44224. ]
  44225. ))
  44226. characterMakers.push(() => makeCharacter(
  44227. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44228. {
  44229. front: {
  44230. height: math.unit(5 + 6/12, "feet"),
  44231. weight: math.unit(60, "kg"),
  44232. name: "Front",
  44233. image: {
  44234. source: "./media/characters/sabre/front.svg",
  44235. extra: 738/671,
  44236. bottom: 27/765
  44237. }
  44238. },
  44239. },
  44240. [
  44241. {
  44242. name: "Teeny",
  44243. height: math.unit(2, "inches")
  44244. },
  44245. {
  44246. name: "Smol",
  44247. height: math.unit(8, "inches")
  44248. },
  44249. {
  44250. name: "Normal",
  44251. height: math.unit(5 + 6/12, "feet"),
  44252. default: true
  44253. },
  44254. {
  44255. name: "Mini-Macro",
  44256. height: math.unit(15, "feet")
  44257. },
  44258. {
  44259. name: "Macro",
  44260. height: math.unit(50, "feet")
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44266. {
  44267. front: {
  44268. height: math.unit(6 + 4/12, "feet"),
  44269. weight: math.unit(170, "lb"),
  44270. name: "Front",
  44271. image: {
  44272. source: "./media/characters/charlie/front.svg",
  44273. extra: 1348/1228,
  44274. bottom: 15/1363
  44275. }
  44276. },
  44277. },
  44278. [
  44279. {
  44280. name: "Macro",
  44281. height: math.unit(1700, "meters"),
  44282. default: true
  44283. },
  44284. {
  44285. name: "MegaMacro",
  44286. height: math.unit(20400, "meters")
  44287. },
  44288. ]
  44289. ))
  44290. characterMakers.push(() => makeCharacter(
  44291. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44292. {
  44293. front: {
  44294. height: math.unit(1.96, "meters"),
  44295. weight: math.unit(220, "lb"),
  44296. name: "Front",
  44297. image: {
  44298. source: "./media/characters/susan-grant/front.svg",
  44299. extra: 482/478,
  44300. bottom: 7/489
  44301. }
  44302. },
  44303. },
  44304. [
  44305. {
  44306. name: "Normal",
  44307. height: math.unit(1.96, "meters"),
  44308. default: true
  44309. },
  44310. {
  44311. name: "Macro",
  44312. height: math.unit(76.2, "meters")
  44313. },
  44314. {
  44315. name: "MegaMacro",
  44316. height: math.unit(305, "meters")
  44317. },
  44318. {
  44319. name: "GigaMacro",
  44320. height: math.unit(1220, "meters")
  44321. },
  44322. {
  44323. name: "SuperMacro",
  44324. height: math.unit(4878, "meters")
  44325. },
  44326. ]
  44327. ))
  44328. characterMakers.push(() => makeCharacter(
  44329. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44330. {
  44331. front: {
  44332. height: math.unit(5 + 4/12, "feet"),
  44333. weight: math.unit(110, "lb"),
  44334. name: "Front",
  44335. image: {
  44336. source: "./media/characters/axel-isanov/front.svg",
  44337. extra: 1096/1065,
  44338. bottom: 13/1109
  44339. }
  44340. },
  44341. },
  44342. [
  44343. {
  44344. name: "Normal",
  44345. height: math.unit(5 + 4/12, "feet"),
  44346. default: true
  44347. },
  44348. ]
  44349. ))
  44350. characterMakers.push(() => makeCharacter(
  44351. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44352. {
  44353. front: {
  44354. height: math.unit(9, "feet"),
  44355. weight: math.unit(467, "lb"),
  44356. name: "Front",
  44357. image: {
  44358. source: "./media/characters/necahual/front.svg",
  44359. extra: 920/873,
  44360. bottom: 26/946
  44361. }
  44362. },
  44363. back: {
  44364. height: math.unit(9, "feet"),
  44365. weight: math.unit(467, "lb"),
  44366. name: "Back",
  44367. image: {
  44368. source: "./media/characters/necahual/back.svg",
  44369. extra: 930/884,
  44370. bottom: 16/946
  44371. }
  44372. },
  44373. frontUnderwear: {
  44374. height: math.unit(9, "feet"),
  44375. weight: math.unit(467, "lb"),
  44376. name: "Front (Underwear)",
  44377. image: {
  44378. source: "./media/characters/necahual/front-underwear.svg",
  44379. extra: 920/873,
  44380. bottom: 26/946
  44381. }
  44382. },
  44383. frontDressed: {
  44384. height: math.unit(9, "feet"),
  44385. weight: math.unit(467, "lb"),
  44386. name: "Front (Dressed)",
  44387. image: {
  44388. source: "./media/characters/necahual/front-dressed.svg",
  44389. extra: 920/873,
  44390. bottom: 26/946
  44391. }
  44392. },
  44393. },
  44394. [
  44395. {
  44396. name: "Comprsesed",
  44397. height: math.unit(9, "feet")
  44398. },
  44399. {
  44400. name: "Natural",
  44401. height: math.unit(15, "feet"),
  44402. default: true
  44403. },
  44404. {
  44405. name: "Boosted",
  44406. height: math.unit(50, "feet")
  44407. },
  44408. {
  44409. name: "Boosted+",
  44410. height: math.unit(150, "feet")
  44411. },
  44412. {
  44413. name: "Max",
  44414. height: math.unit(500, "feet")
  44415. },
  44416. ]
  44417. ))
  44418. characterMakers.push(() => makeCharacter(
  44419. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44420. {
  44421. front: {
  44422. height: math.unit(22 + 1/12, "feet"),
  44423. weight: math.unit(3200, "lb"),
  44424. name: "Front",
  44425. image: {
  44426. source: "./media/characters/theo-acacia/front.svg",
  44427. extra: 1796/1741,
  44428. bottom: 83/1879
  44429. }
  44430. },
  44431. frontUnderwear: {
  44432. height: math.unit(22 + 1/12, "feet"),
  44433. weight: math.unit(3200, "lb"),
  44434. name: "Front (Underwear)",
  44435. image: {
  44436. source: "./media/characters/theo-acacia/front-underwear.svg",
  44437. extra: 1796/1741,
  44438. bottom: 83/1879
  44439. }
  44440. },
  44441. frontNude: {
  44442. height: math.unit(22 + 1/12, "feet"),
  44443. weight: math.unit(3200, "lb"),
  44444. name: "Front (Nude)",
  44445. image: {
  44446. source: "./media/characters/theo-acacia/front-nude.svg",
  44447. extra: 1796/1741,
  44448. bottom: 83/1879
  44449. }
  44450. },
  44451. },
  44452. [
  44453. {
  44454. name: "Normal",
  44455. height: math.unit(22 + 1/12, "feet"),
  44456. default: true
  44457. },
  44458. ]
  44459. ))
  44460. characterMakers.push(() => makeCharacter(
  44461. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44462. {
  44463. front: {
  44464. height: math.unit(20, "feet"),
  44465. name: "Front",
  44466. image: {
  44467. source: "./media/characters/astra/front.svg",
  44468. extra: 1850/1714,
  44469. bottom: 106/1956
  44470. }
  44471. },
  44472. frontUndressed: {
  44473. height: math.unit(20, "feet"),
  44474. name: "Front (Undressed)",
  44475. image: {
  44476. source: "./media/characters/astra/front-undressed.svg",
  44477. extra: 1926/1749,
  44478. bottom: 0/1926
  44479. }
  44480. },
  44481. hand: {
  44482. height: math.unit(1.53, "feet"),
  44483. name: "Hand",
  44484. image: {
  44485. source: "./media/characters/astra/hand.svg"
  44486. }
  44487. },
  44488. paw: {
  44489. height: math.unit(1.53, "feet"),
  44490. name: "Paw",
  44491. image: {
  44492. source: "./media/characters/astra/paw.svg"
  44493. }
  44494. },
  44495. },
  44496. [
  44497. {
  44498. name: "Smallest",
  44499. height: math.unit(20, "feet")
  44500. },
  44501. {
  44502. name: "Normal",
  44503. height: math.unit(1e9, "miles"),
  44504. default: true
  44505. },
  44506. {
  44507. name: "Larger",
  44508. height: math.unit(5, "multiverses")
  44509. },
  44510. {
  44511. name: "Largest",
  44512. height: math.unit(1e9, "multiverses")
  44513. },
  44514. ]
  44515. ))
  44516. characterMakers.push(() => makeCharacter(
  44517. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44518. {
  44519. front: {
  44520. height: math.unit(8, "feet"),
  44521. name: "Front",
  44522. image: {
  44523. source: "./media/characters/breanna/front.svg",
  44524. extra: 1912/1632,
  44525. bottom: 33/1945
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Smallest",
  44532. height: math.unit(8, "feet")
  44533. },
  44534. {
  44535. name: "Normal",
  44536. height: math.unit(1, "mile"),
  44537. default: true
  44538. },
  44539. {
  44540. name: "Maximum",
  44541. height: math.unit(1500000000000, "lightyears")
  44542. },
  44543. ]
  44544. ))
  44545. characterMakers.push(() => makeCharacter(
  44546. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44547. {
  44548. front: {
  44549. height: math.unit(5 + 11/12, "feet"),
  44550. weight: math.unit(155, "lb"),
  44551. name: "Front",
  44552. image: {
  44553. source: "./media/characters/cai/front.svg",
  44554. extra: 1823/1702,
  44555. bottom: 32/1855
  44556. }
  44557. },
  44558. back: {
  44559. height: math.unit(5 + 11/12, "feet"),
  44560. weight: math.unit(155, "lb"),
  44561. name: "Back",
  44562. image: {
  44563. source: "./media/characters/cai/back.svg",
  44564. extra: 1809/1708,
  44565. bottom: 31/1840
  44566. }
  44567. },
  44568. },
  44569. [
  44570. {
  44571. name: "Normal",
  44572. height: math.unit(5 + 11/12, "feet"),
  44573. default: true
  44574. },
  44575. {
  44576. name: "Big",
  44577. height: math.unit(15, "feet")
  44578. },
  44579. {
  44580. name: "Macro",
  44581. height: math.unit(200, "feet")
  44582. },
  44583. ]
  44584. ))
  44585. characterMakers.push(() => makeCharacter(
  44586. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44587. {
  44588. front: {
  44589. height: math.unit(5 + 6/12, "feet"),
  44590. weight: math.unit(160, "lb"),
  44591. name: "Front",
  44592. image: {
  44593. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44594. extra: 1227/1174,
  44595. bottom: 37/1264
  44596. }
  44597. },
  44598. },
  44599. [
  44600. {
  44601. name: "Macro",
  44602. height: math.unit(444, "meters"),
  44603. default: true
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44609. {
  44610. front: {
  44611. height: math.unit(18 + 7/12, "feet"),
  44612. name: "Front",
  44613. image: {
  44614. source: "./media/characters/rex/front.svg",
  44615. extra: 1941/1807,
  44616. bottom: 66/2007
  44617. }
  44618. },
  44619. back: {
  44620. height: math.unit(18 + 7/12, "feet"),
  44621. name: "Back",
  44622. image: {
  44623. source: "./media/characters/rex/back.svg",
  44624. extra: 1937/1822,
  44625. bottom: 42/1979
  44626. }
  44627. },
  44628. boot: {
  44629. height: math.unit(3.45, "feet"),
  44630. name: "Boot",
  44631. image: {
  44632. source: "./media/characters/rex/boot.svg"
  44633. }
  44634. },
  44635. paw: {
  44636. height: math.unit(4.17, "feet"),
  44637. name: "Paw",
  44638. image: {
  44639. source: "./media/characters/rex/paw.svg"
  44640. }
  44641. },
  44642. head: {
  44643. height: math.unit(6.728, "feet"),
  44644. name: "Head",
  44645. image: {
  44646. source: "./media/characters/rex/head.svg"
  44647. }
  44648. },
  44649. },
  44650. [
  44651. {
  44652. name: "Nano",
  44653. height: math.unit(18 + 7/12, "feet")
  44654. },
  44655. {
  44656. name: "Micro",
  44657. height: math.unit(1.5, "megameters")
  44658. },
  44659. {
  44660. name: "Normal",
  44661. height: math.unit(440, "megameters"),
  44662. default: true
  44663. },
  44664. {
  44665. name: "Macro",
  44666. height: math.unit(2.5, "gigameters")
  44667. },
  44668. {
  44669. name: "Gigamacro",
  44670. height: math.unit(2, "galaxies")
  44671. },
  44672. ]
  44673. ))
  44674. characterMakers.push(() => makeCharacter(
  44675. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44676. {
  44677. side: {
  44678. height: math.unit(32, "feet"),
  44679. weight: math.unit(250000, "lb"),
  44680. name: "Side",
  44681. image: {
  44682. source: "./media/characters/silverwing/side.svg",
  44683. extra: 1100/1019,
  44684. bottom: 204/1304
  44685. }
  44686. },
  44687. },
  44688. [
  44689. {
  44690. name: "Normal",
  44691. height: math.unit(32, "feet"),
  44692. default: true
  44693. },
  44694. ]
  44695. ))
  44696. characterMakers.push(() => makeCharacter(
  44697. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44698. {
  44699. front: {
  44700. height: math.unit(6 + 6/12, "feet"),
  44701. weight: math.unit(350, "lb"),
  44702. name: "Front",
  44703. image: {
  44704. source: "./media/characters/tristan-hawthorne/front.svg",
  44705. extra: 1159/1124,
  44706. bottom: 37/1196
  44707. },
  44708. form: "labrador",
  44709. default: true
  44710. },
  44711. skunkFront: {
  44712. height: math.unit(4 + 6/12, "feet"),
  44713. weight: math.unit(120, "lb"),
  44714. name: "Front",
  44715. image: {
  44716. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44717. extra: 1609/1551,
  44718. bottom: 169/1778
  44719. },
  44720. form: "skunk",
  44721. default: true
  44722. },
  44723. },
  44724. [
  44725. {
  44726. name: "Normal",
  44727. height: math.unit(6 + 6/12, "feet"),
  44728. form: "labrador",
  44729. default: true
  44730. },
  44731. {
  44732. name: "Normal",
  44733. height: math.unit(4 + 6/12, "feet"),
  44734. form: "skunk",
  44735. default: true
  44736. },
  44737. ],
  44738. {
  44739. "labrador": {
  44740. name: "Labrador",
  44741. default: true
  44742. },
  44743. "skunk": {
  44744. name: "Skunk"
  44745. }
  44746. }
  44747. ))
  44748. characterMakers.push(() => makeCharacter(
  44749. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44750. {
  44751. front: {
  44752. height: math.unit(5 + 11/12, "feet"),
  44753. weight: math.unit(190, "lb"),
  44754. name: "Front",
  44755. image: {
  44756. source: "./media/characters/mizu/front.svg",
  44757. extra: 1988/1788,
  44758. bottom: 14/2002
  44759. }
  44760. },
  44761. },
  44762. [
  44763. {
  44764. name: "Normal",
  44765. height: math.unit(5 + 11/12, "feet"),
  44766. default: true
  44767. },
  44768. ]
  44769. ))
  44770. characterMakers.push(() => makeCharacter(
  44771. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44772. {
  44773. front: {
  44774. height: math.unit(1.7, "feet"),
  44775. weight: math.unit(50, "lb"),
  44776. name: "Front",
  44777. image: {
  44778. source: "./media/characters/dechroma/front.svg",
  44779. extra: 1095/859,
  44780. bottom: 64/1159
  44781. }
  44782. },
  44783. },
  44784. [
  44785. {
  44786. name: "Normal",
  44787. height: math.unit(1.7, "feet"),
  44788. default: true
  44789. },
  44790. ]
  44791. ))
  44792. characterMakers.push(() => makeCharacter(
  44793. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44794. {
  44795. side: {
  44796. height: math.unit(30, "feet"),
  44797. name: "Side",
  44798. image: {
  44799. source: "./media/characters/veluren-thanazel/side.svg",
  44800. extra: 1611/633,
  44801. bottom: 118/1729
  44802. }
  44803. },
  44804. front: {
  44805. height: math.unit(30, "feet"),
  44806. name: "Front",
  44807. image: {
  44808. source: "./media/characters/veluren-thanazel/front.svg",
  44809. extra: 1486/636,
  44810. bottom: 238/1724
  44811. }
  44812. },
  44813. head: {
  44814. height: math.unit(21.4, "feet"),
  44815. name: "Head",
  44816. image: {
  44817. source: "./media/characters/veluren-thanazel/head.svg"
  44818. }
  44819. },
  44820. genitals: {
  44821. height: math.unit(19.4, "feet"),
  44822. name: "Genitals",
  44823. image: {
  44824. source: "./media/characters/veluren-thanazel/genitals.svg"
  44825. }
  44826. },
  44827. },
  44828. [
  44829. {
  44830. name: "Social",
  44831. height: math.unit(6, "feet")
  44832. },
  44833. {
  44834. name: "Play",
  44835. height: math.unit(12, "feet")
  44836. },
  44837. {
  44838. name: "True",
  44839. height: math.unit(30, "feet"),
  44840. default: true
  44841. },
  44842. ]
  44843. ))
  44844. characterMakers.push(() => makeCharacter(
  44845. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44846. {
  44847. front: {
  44848. height: math.unit(7 + 6/12, "feet"),
  44849. weight: math.unit(500, "kg"),
  44850. name: "Front",
  44851. image: {
  44852. source: "./media/characters/arcturas/front.svg",
  44853. extra: 1700/1500,
  44854. bottom: 145/1845
  44855. }
  44856. },
  44857. },
  44858. [
  44859. {
  44860. name: "Normal",
  44861. height: math.unit(7 + 6/12, "feet"),
  44862. default: true
  44863. },
  44864. ]
  44865. ))
  44866. characterMakers.push(() => makeCharacter(
  44867. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44868. {
  44869. side: {
  44870. height: math.unit(6, "feet"),
  44871. weight: math.unit(2, "tons"),
  44872. name: "Side",
  44873. image: {
  44874. source: "./media/characters/vitaen/side.svg",
  44875. extra: 1157/617,
  44876. bottom: 122/1279
  44877. }
  44878. },
  44879. },
  44880. [
  44881. {
  44882. name: "Normal",
  44883. height: math.unit(6, "feet"),
  44884. default: true
  44885. },
  44886. ]
  44887. ))
  44888. characterMakers.push(() => makeCharacter(
  44889. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44890. {
  44891. front: {
  44892. height: math.unit(19, "feet"),
  44893. name: "Front",
  44894. image: {
  44895. source: "./media/characters/fia-dreamweaver/front.svg",
  44896. extra: 1630/1504,
  44897. bottom: 25/1655
  44898. }
  44899. },
  44900. },
  44901. [
  44902. {
  44903. name: "Normal",
  44904. height: math.unit(19, "feet"),
  44905. default: true
  44906. },
  44907. ]
  44908. ))
  44909. characterMakers.push(() => makeCharacter(
  44910. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44911. {
  44912. front: {
  44913. height: math.unit(5 + 4/12, "feet"),
  44914. name: "Front",
  44915. image: {
  44916. source: "./media/characters/artan/front.svg",
  44917. extra: 1618/1535,
  44918. bottom: 46/1664
  44919. }
  44920. },
  44921. back: {
  44922. height: math.unit(5 + 4/12, "feet"),
  44923. name: "Back",
  44924. image: {
  44925. source: "./media/characters/artan/back.svg",
  44926. extra: 1618/1543,
  44927. bottom: 31/1649
  44928. }
  44929. },
  44930. },
  44931. [
  44932. {
  44933. name: "Normal",
  44934. height: math.unit(5 + 4/12, "feet"),
  44935. default: true
  44936. },
  44937. ]
  44938. ))
  44939. characterMakers.push(() => makeCharacter(
  44940. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44941. {
  44942. side: {
  44943. height: math.unit(182, "cm"),
  44944. weight: math.unit(1000, "lb"),
  44945. name: "Side",
  44946. image: {
  44947. source: "./media/characters/silver-dragon/side.svg",
  44948. extra: 710/287,
  44949. bottom: 88/798
  44950. }
  44951. },
  44952. },
  44953. [
  44954. {
  44955. name: "Normal",
  44956. height: math.unit(182, "cm"),
  44957. default: true
  44958. },
  44959. ]
  44960. ))
  44961. characterMakers.push(() => makeCharacter(
  44962. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44963. {
  44964. side: {
  44965. height: math.unit(6 + 6/12, "feet"),
  44966. weight: math.unit(1.5, "tons"),
  44967. name: "Side",
  44968. image: {
  44969. source: "./media/characters/zephyr/side.svg",
  44970. extra: 1433/586,
  44971. bottom: 109/1542
  44972. }
  44973. },
  44974. },
  44975. [
  44976. {
  44977. name: "Normal",
  44978. height: math.unit(6 + 6/12, "feet"),
  44979. default: true
  44980. },
  44981. ]
  44982. ))
  44983. characterMakers.push(() => makeCharacter(
  44984. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44985. {
  44986. side: {
  44987. height: math.unit(1, "feet"),
  44988. name: "Side",
  44989. image: {
  44990. source: "./media/characters/vixye/side.svg",
  44991. extra: 632/541,
  44992. bottom: 0/632
  44993. }
  44994. },
  44995. },
  44996. [
  44997. {
  44998. name: "Normal",
  44999. height: math.unit(1, "feet"),
  45000. default: true
  45001. },
  45002. {
  45003. name: "True",
  45004. height: math.unit(1e15, "multiverses")
  45005. },
  45006. ]
  45007. ))
  45008. characterMakers.push(() => makeCharacter(
  45009. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45010. {
  45011. front: {
  45012. height: math.unit(8 + 2/12, "feet"),
  45013. weight: math.unit(650, "lb"),
  45014. name: "Front",
  45015. image: {
  45016. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45017. extra: 1174/1137,
  45018. bottom: 82/1256
  45019. }
  45020. },
  45021. back: {
  45022. height: math.unit(8 + 2/12, "feet"),
  45023. weight: math.unit(650, "lb"),
  45024. name: "Back",
  45025. image: {
  45026. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45027. extra: 1204/1157,
  45028. bottom: 46/1250
  45029. }
  45030. },
  45031. },
  45032. [
  45033. {
  45034. name: "Wildform",
  45035. height: math.unit(8 + 2/12, "feet"),
  45036. default: true
  45037. },
  45038. ]
  45039. ))
  45040. characterMakers.push(() => makeCharacter(
  45041. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45042. {
  45043. front: {
  45044. height: math.unit(18, "feet"),
  45045. name: "Front",
  45046. image: {
  45047. source: "./media/characters/cyphin/front.svg",
  45048. extra: 970/886,
  45049. bottom: 42/1012
  45050. }
  45051. },
  45052. back: {
  45053. height: math.unit(18, "feet"),
  45054. name: "Back",
  45055. image: {
  45056. source: "./media/characters/cyphin/back.svg",
  45057. extra: 1009/894,
  45058. bottom: 24/1033
  45059. }
  45060. },
  45061. head: {
  45062. height: math.unit(5.05, "feet"),
  45063. name: "Head",
  45064. image: {
  45065. source: "./media/characters/cyphin/head.svg"
  45066. }
  45067. },
  45068. tailbud: {
  45069. height: math.unit(5, "feet"),
  45070. name: "Tailbud",
  45071. image: {
  45072. source: "./media/characters/cyphin/tailbud.svg"
  45073. }
  45074. },
  45075. },
  45076. [
  45077. ]
  45078. ))
  45079. characterMakers.push(() => makeCharacter(
  45080. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45081. {
  45082. side: {
  45083. height: math.unit(10, "feet"),
  45084. weight: math.unit(6, "tons"),
  45085. name: "Side",
  45086. image: {
  45087. source: "./media/characters/raijin/side.svg",
  45088. extra: 1529/613,
  45089. bottom: 337/1866
  45090. }
  45091. },
  45092. },
  45093. [
  45094. {
  45095. name: "Normal",
  45096. height: math.unit(10, "feet"),
  45097. default: true
  45098. },
  45099. ]
  45100. ))
  45101. characterMakers.push(() => makeCharacter(
  45102. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45103. {
  45104. side: {
  45105. height: math.unit(9, "feet"),
  45106. name: "Side",
  45107. image: {
  45108. source: "./media/characters/nilghais/side.svg",
  45109. extra: 1047/744,
  45110. bottom: 91/1138
  45111. }
  45112. },
  45113. head: {
  45114. height: math.unit(3.14, "feet"),
  45115. name: "Head",
  45116. image: {
  45117. source: "./media/characters/nilghais/head.svg"
  45118. }
  45119. },
  45120. mouth: {
  45121. height: math.unit(4.6, "feet"),
  45122. name: "Mouth",
  45123. image: {
  45124. source: "./media/characters/nilghais/mouth.svg"
  45125. }
  45126. },
  45127. wings: {
  45128. height: math.unit(24, "feet"),
  45129. name: "Wings",
  45130. image: {
  45131. source: "./media/characters/nilghais/wings.svg"
  45132. }
  45133. },
  45134. ass: {
  45135. height: math.unit(6.12, "feet"),
  45136. name: "Ass",
  45137. image: {
  45138. source: "./media/characters/nilghais/ass.svg"
  45139. }
  45140. },
  45141. },
  45142. [
  45143. {
  45144. name: "Normal",
  45145. height: math.unit(9, "feet"),
  45146. default: true
  45147. },
  45148. ]
  45149. ))
  45150. characterMakers.push(() => makeCharacter(
  45151. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45152. {
  45153. regular: {
  45154. height: math.unit(16 + 2/12, "feet"),
  45155. weight: math.unit(2300, "lb"),
  45156. name: "Regular",
  45157. image: {
  45158. source: "./media/characters/zolgar/regular.svg",
  45159. extra: 1246/1004,
  45160. bottom: 124/1370
  45161. }
  45162. },
  45163. boxers: {
  45164. height: math.unit(16 + 2/12, "feet"),
  45165. weight: math.unit(2300, "lb"),
  45166. name: "Boxers",
  45167. image: {
  45168. source: "./media/characters/zolgar/boxers.svg",
  45169. extra: 1246/1004,
  45170. bottom: 124/1370
  45171. }
  45172. },
  45173. armored: {
  45174. height: math.unit(16 + 2/12, "feet"),
  45175. weight: math.unit(2300, "lb"),
  45176. name: "Armored",
  45177. image: {
  45178. source: "./media/characters/zolgar/armored.svg",
  45179. extra: 1246/1004,
  45180. bottom: 124/1370
  45181. }
  45182. },
  45183. goth: {
  45184. height: math.unit(16 + 2/12, "feet"),
  45185. weight: math.unit(2300, "lb"),
  45186. name: "Goth",
  45187. image: {
  45188. source: "./media/characters/zolgar/goth.svg",
  45189. extra: 1246/1004,
  45190. bottom: 124/1370
  45191. }
  45192. },
  45193. },
  45194. [
  45195. {
  45196. name: "Shrunken Down",
  45197. height: math.unit(9 + 2/12, "feet")
  45198. },
  45199. {
  45200. name: "Normal",
  45201. height: math.unit(16 + 2/12, "feet"),
  45202. default: true
  45203. },
  45204. ]
  45205. ))
  45206. characterMakers.push(() => makeCharacter(
  45207. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45208. {
  45209. front: {
  45210. height: math.unit(6, "feet"),
  45211. weight: math.unit(168, "lb"),
  45212. name: "Front",
  45213. image: {
  45214. source: "./media/characters/luca/front.svg",
  45215. extra: 841/667,
  45216. bottom: 102/943
  45217. }
  45218. },
  45219. },
  45220. [
  45221. {
  45222. name: "Normal",
  45223. height: math.unit(6, "feet"),
  45224. default: true
  45225. },
  45226. ]
  45227. ))
  45228. characterMakers.push(() => makeCharacter(
  45229. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45230. {
  45231. side: {
  45232. height: math.unit(7 + 3/12, "feet"),
  45233. weight: math.unit(312, "lb"),
  45234. name: "Side",
  45235. image: {
  45236. source: "./media/characters/zezo/side.svg",
  45237. extra: 1192/1067,
  45238. bottom: 63/1255
  45239. }
  45240. },
  45241. },
  45242. [
  45243. {
  45244. name: "Normal",
  45245. height: math.unit(7 + 3/12, "feet"),
  45246. default: true
  45247. },
  45248. ]
  45249. ))
  45250. characterMakers.push(() => makeCharacter(
  45251. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45252. {
  45253. front: {
  45254. height: math.unit(5 + 5/12, "feet"),
  45255. weight: math.unit(170, "lb"),
  45256. name: "Front",
  45257. image: {
  45258. source: "./media/characters/mayso/front.svg",
  45259. extra: 1215/1108,
  45260. bottom: 16/1231
  45261. }
  45262. },
  45263. },
  45264. [
  45265. {
  45266. name: "Normal",
  45267. height: math.unit(5 + 5/12, "feet"),
  45268. default: true
  45269. },
  45270. ]
  45271. ))
  45272. characterMakers.push(() => makeCharacter(
  45273. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45274. {
  45275. front: {
  45276. height: math.unit(4 + 3/12, "feet"),
  45277. weight: math.unit(80, "lb"),
  45278. name: "Front",
  45279. image: {
  45280. source: "./media/characters/hess/front.svg",
  45281. extra: 1200/1123,
  45282. bottom: 16/1216
  45283. }
  45284. },
  45285. },
  45286. [
  45287. {
  45288. name: "Normal",
  45289. height: math.unit(4 + 3/12, "feet"),
  45290. default: true
  45291. },
  45292. ]
  45293. ))
  45294. characterMakers.push(() => makeCharacter(
  45295. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45296. {
  45297. front: {
  45298. height: math.unit(1.9, "meters"),
  45299. name: "Front",
  45300. image: {
  45301. source: "./media/characters/ashgar/front.svg",
  45302. extra: 1177/1146,
  45303. bottom: 99/1276
  45304. }
  45305. },
  45306. back: {
  45307. height: math.unit(1.9, "meters"),
  45308. name: "Back",
  45309. image: {
  45310. source: "./media/characters/ashgar/back.svg",
  45311. extra: 1201/1183,
  45312. bottom: 53/1254
  45313. }
  45314. },
  45315. feral: {
  45316. height: math.unit(1.4, "meters"),
  45317. name: "Feral",
  45318. image: {
  45319. source: "./media/characters/ashgar/feral.svg",
  45320. extra: 370/345,
  45321. bottom: 45/415
  45322. }
  45323. },
  45324. },
  45325. [
  45326. {
  45327. name: "Normal",
  45328. height: math.unit(1.9, "meters"),
  45329. default: true
  45330. },
  45331. ]
  45332. ))
  45333. characterMakers.push(() => makeCharacter(
  45334. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45335. {
  45336. regular: {
  45337. height: math.unit(6, "feet"),
  45338. weight: math.unit(220, "lb"),
  45339. name: "Regular",
  45340. image: {
  45341. source: "./media/characters/phillip/regular.svg",
  45342. extra: 1373/1277,
  45343. bottom: 75/1448
  45344. }
  45345. },
  45346. dressed: {
  45347. height: math.unit(6, "feet"),
  45348. weight: math.unit(220, "lb"),
  45349. name: "Dressed",
  45350. image: {
  45351. source: "./media/characters/phillip/dressed.svg",
  45352. extra: 1373/1277,
  45353. bottom: 75/1448
  45354. }
  45355. },
  45356. paw: {
  45357. height: math.unit(1.44, "feet"),
  45358. name: "Paw",
  45359. image: {
  45360. source: "./media/characters/phillip/paw.svg"
  45361. }
  45362. },
  45363. },
  45364. [
  45365. {
  45366. name: "Normal",
  45367. height: math.unit(6, "feet"),
  45368. default: true
  45369. },
  45370. ]
  45371. ))
  45372. characterMakers.push(() => makeCharacter(
  45373. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45374. {
  45375. side: {
  45376. height: math.unit(42, "feet"),
  45377. name: "Side",
  45378. image: {
  45379. source: "./media/characters/uvula/side.svg",
  45380. extra: 683/586,
  45381. bottom: 60/743
  45382. }
  45383. },
  45384. front: {
  45385. height: math.unit(42, "feet"),
  45386. name: "Front",
  45387. image: {
  45388. source: "./media/characters/uvula/front.svg",
  45389. extra: 705/613,
  45390. bottom: 54/759
  45391. }
  45392. },
  45393. maw: {
  45394. height: math.unit(23.5, "feet"),
  45395. name: "Maw",
  45396. image: {
  45397. source: "./media/characters/uvula/maw.svg"
  45398. }
  45399. },
  45400. },
  45401. [
  45402. {
  45403. name: "Original Size",
  45404. height: math.unit(14, "inches")
  45405. },
  45406. {
  45407. name: "Human Size",
  45408. height: math.unit(6, "feet")
  45409. },
  45410. {
  45411. name: "Big",
  45412. height: math.unit(42, "feet"),
  45413. default: true
  45414. },
  45415. {
  45416. name: "Bigger",
  45417. height: math.unit(100, "feet")
  45418. },
  45419. ]
  45420. ))
  45421. characterMakers.push(() => makeCharacter(
  45422. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45423. {
  45424. front: {
  45425. height: math.unit(5 + 11/12, "feet"),
  45426. name: "Front",
  45427. image: {
  45428. source: "./media/characters/lannah/front.svg",
  45429. extra: 1208/1113,
  45430. bottom: 97/1305
  45431. }
  45432. },
  45433. },
  45434. [
  45435. {
  45436. name: "Normal",
  45437. height: math.unit(5 + 11/12, "feet"),
  45438. default: true
  45439. },
  45440. ]
  45441. ))
  45442. characterMakers.push(() => makeCharacter(
  45443. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45444. {
  45445. front: {
  45446. height: math.unit(6 + 3/12, "feet"),
  45447. weight: math.unit(3.5, "tons"),
  45448. name: "Front",
  45449. image: {
  45450. source: "./media/characters/emberflame/front.svg",
  45451. extra: 1198/672,
  45452. bottom: 82/1280
  45453. }
  45454. },
  45455. side: {
  45456. height: math.unit(6 + 3/12, "feet"),
  45457. weight: math.unit(3.5, "tons"),
  45458. name: "Side",
  45459. image: {
  45460. source: "./media/characters/emberflame/side.svg",
  45461. extra: 938/527,
  45462. bottom: 56/994
  45463. }
  45464. },
  45465. },
  45466. [
  45467. {
  45468. name: "Normal",
  45469. height: math.unit(6 + 3/12, "feet"),
  45470. default: true
  45471. },
  45472. ]
  45473. ))
  45474. characterMakers.push(() => makeCharacter(
  45475. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45476. {
  45477. side: {
  45478. height: math.unit(17.5, "feet"),
  45479. weight: math.unit(35, "tons"),
  45480. name: "Side",
  45481. image: {
  45482. source: "./media/characters/sophie-ambrose/side.svg",
  45483. extra: 1573/1242,
  45484. bottom: 71/1644
  45485. }
  45486. },
  45487. maw: {
  45488. height: math.unit(7.4, "feet"),
  45489. name: "Maw",
  45490. image: {
  45491. source: "./media/characters/sophie-ambrose/maw.svg"
  45492. }
  45493. },
  45494. },
  45495. [
  45496. {
  45497. name: "Normal",
  45498. height: math.unit(17.5, "feet"),
  45499. default: true
  45500. },
  45501. ]
  45502. ))
  45503. characterMakers.push(() => makeCharacter(
  45504. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45505. {
  45506. front: {
  45507. height: math.unit(280, "feet"),
  45508. weight: math.unit(550, "tons"),
  45509. name: "Front",
  45510. image: {
  45511. source: "./media/characters/king-mugi/front.svg",
  45512. extra: 1102/947,
  45513. bottom: 104/1206
  45514. }
  45515. },
  45516. },
  45517. [
  45518. {
  45519. name: "King Mugi",
  45520. height: math.unit(280, "feet"),
  45521. default: true
  45522. },
  45523. ]
  45524. ))
  45525. characterMakers.push(() => makeCharacter(
  45526. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45527. {
  45528. female: {
  45529. height: math.unit(300, "meters"),
  45530. name: "Front",
  45531. image: {
  45532. source: "./media/characters/nova-fox/female.svg",
  45533. extra: 664/632,
  45534. bottom: 51/715
  45535. },
  45536. form: "female",
  45537. default: true
  45538. },
  45539. male: {
  45540. height: math.unit(300, "meters"),
  45541. name: "Front",
  45542. image: {
  45543. source: "./media/characters/nova-fox/male.svg",
  45544. extra: 663/631,
  45545. bottom: 30/693
  45546. },
  45547. form: "male",
  45548. default: true
  45549. },
  45550. },
  45551. [
  45552. {
  45553. name: "Macro",
  45554. height: math.unit(300, "meters"),
  45555. default: true,
  45556. allForms: true
  45557. },
  45558. ],
  45559. {
  45560. "female": {
  45561. name: "Female",
  45562. default: true
  45563. },
  45564. "male": {
  45565. name: "Male",
  45566. },
  45567. }
  45568. ))
  45569. characterMakers.push(() => makeCharacter(
  45570. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45571. {
  45572. front: {
  45573. height: math.unit(6 + 3/12, "feet"),
  45574. weight: math.unit(170, "lb"),
  45575. name: "Front",
  45576. image: {
  45577. source: "./media/characters/sam-bat/front.svg",
  45578. extra: 1601/1411,
  45579. bottom: 125/1726
  45580. }
  45581. },
  45582. back: {
  45583. height: math.unit(6 + 3/12, "feet"),
  45584. weight: math.unit(170, "lb"),
  45585. name: "Back",
  45586. image: {
  45587. source: "./media/characters/sam-bat/back.svg",
  45588. extra: 1577/1405,
  45589. bottom: 58/1635
  45590. }
  45591. },
  45592. },
  45593. [
  45594. {
  45595. name: "Normal",
  45596. height: math.unit(6 + 3/12, "feet"),
  45597. default: true
  45598. },
  45599. ]
  45600. ))
  45601. characterMakers.push(() => makeCharacter(
  45602. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45603. {
  45604. front: {
  45605. height: math.unit(59, "feet"),
  45606. weight: math.unit(40000, "lb"),
  45607. name: "Front",
  45608. image: {
  45609. source: "./media/characters/inari/front.svg",
  45610. extra: 1884/1350,
  45611. bottom: 95/1979
  45612. }
  45613. },
  45614. },
  45615. [
  45616. {
  45617. name: "Gigantamax",
  45618. height: math.unit(59, "feet"),
  45619. default: true
  45620. },
  45621. ]
  45622. ))
  45623. characterMakers.push(() => makeCharacter(
  45624. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45625. {
  45626. front: {
  45627. height: math.unit(5 + 8/12, "feet"),
  45628. name: "Front",
  45629. image: {
  45630. source: "./media/characters/elizabeth/front.svg",
  45631. extra: 1395/1298,
  45632. bottom: 54/1449
  45633. }
  45634. },
  45635. mouth: {
  45636. height: math.unit(1.97, "feet"),
  45637. name: "Mouth",
  45638. image: {
  45639. source: "./media/characters/elizabeth/mouth.svg"
  45640. }
  45641. },
  45642. foot: {
  45643. height: math.unit(1.17, "feet"),
  45644. name: "Foot",
  45645. image: {
  45646. source: "./media/characters/elizabeth/foot.svg"
  45647. }
  45648. },
  45649. },
  45650. [
  45651. {
  45652. name: "Normal",
  45653. height: math.unit(5 + 8/12, "feet"),
  45654. default: true
  45655. },
  45656. {
  45657. name: "Minimacro",
  45658. height: math.unit(18, "feet")
  45659. },
  45660. {
  45661. name: "Macro",
  45662. height: math.unit(180, "feet")
  45663. },
  45664. ]
  45665. ))
  45666. characterMakers.push(() => makeCharacter(
  45667. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45668. {
  45669. front: {
  45670. height: math.unit(5 + 2/12, "feet"),
  45671. name: "Front",
  45672. image: {
  45673. source: "./media/characters/october-gossamer/front.svg",
  45674. extra: 505/454,
  45675. bottom: 7/512
  45676. }
  45677. },
  45678. back: {
  45679. height: math.unit(5 + 2/12, "feet"),
  45680. name: "Back",
  45681. image: {
  45682. source: "./media/characters/october-gossamer/back.svg",
  45683. extra: 501/454,
  45684. bottom: 11/512
  45685. }
  45686. },
  45687. },
  45688. [
  45689. {
  45690. name: "Normal",
  45691. height: math.unit(5 + 2/12, "feet"),
  45692. default: true
  45693. },
  45694. ]
  45695. ))
  45696. characterMakers.push(() => makeCharacter(
  45697. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45698. {
  45699. front: {
  45700. height: math.unit(5, "feet"),
  45701. name: "Front",
  45702. image: {
  45703. source: "./media/characters/epiglottis/front.svg",
  45704. extra: 923/849,
  45705. bottom: 17/940
  45706. }
  45707. },
  45708. },
  45709. [
  45710. {
  45711. name: "Original Size",
  45712. height: math.unit(10, "inches")
  45713. },
  45714. {
  45715. name: "Human Size",
  45716. height: math.unit(5, "feet"),
  45717. default: true
  45718. },
  45719. {
  45720. name: "Big",
  45721. height: math.unit(25, "feet")
  45722. },
  45723. {
  45724. name: "Bigger",
  45725. height: math.unit(50, "feet")
  45726. },
  45727. {
  45728. name: "oh lawd",
  45729. height: math.unit(75, "feet")
  45730. },
  45731. ]
  45732. ))
  45733. characterMakers.push(() => makeCharacter(
  45734. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45735. {
  45736. front: {
  45737. height: math.unit(2 + 4/12, "feet"),
  45738. weight: math.unit(60, "lb"),
  45739. name: "Front",
  45740. image: {
  45741. source: "./media/characters/lerm/front.svg",
  45742. extra: 796/790,
  45743. bottom: 79/875
  45744. }
  45745. },
  45746. },
  45747. [
  45748. {
  45749. name: "Normal",
  45750. height: math.unit(2 + 4/12, "feet"),
  45751. default: true
  45752. },
  45753. ]
  45754. ))
  45755. characterMakers.push(() => makeCharacter(
  45756. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45757. {
  45758. front: {
  45759. height: math.unit(5.5, "feet"),
  45760. weight: math.unit(130, "lb"),
  45761. name: "Front",
  45762. image: {
  45763. source: "./media/characters/xena-nebadon/front.svg",
  45764. extra: 1828/1730,
  45765. bottom: 79/1907
  45766. }
  45767. },
  45768. },
  45769. [
  45770. {
  45771. name: "Tiny Puppy",
  45772. height: math.unit(3, "inches")
  45773. },
  45774. {
  45775. name: "Normal",
  45776. height: math.unit(5.5, "feet"),
  45777. default: true
  45778. },
  45779. {
  45780. name: "Lotta Lady",
  45781. height: math.unit(12, "feet")
  45782. },
  45783. {
  45784. name: "Pretty Big",
  45785. height: math.unit(100, "feet")
  45786. },
  45787. {
  45788. name: "Big",
  45789. height: math.unit(500, "feet")
  45790. },
  45791. {
  45792. name: "Skyscraper Toys",
  45793. height: math.unit(2500, "feet")
  45794. },
  45795. {
  45796. name: "Plane Catcher",
  45797. height: math.unit(8, "miles")
  45798. },
  45799. {
  45800. name: "Planet Toys",
  45801. height: math.unit(15, "earths")
  45802. },
  45803. {
  45804. name: "Stardust",
  45805. height: math.unit(0.25, "galaxies")
  45806. },
  45807. {
  45808. name: "Snacks",
  45809. height: math.unit(70, "universes")
  45810. },
  45811. ]
  45812. ))
  45813. characterMakers.push(() => makeCharacter(
  45814. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45815. {
  45816. front: {
  45817. height: math.unit(1.6, "meters"),
  45818. weight: math.unit(60, "kg"),
  45819. name: "Front",
  45820. image: {
  45821. source: "./media/characters/bounty/front.svg",
  45822. extra: 1426/1308,
  45823. bottom: 15/1441
  45824. }
  45825. },
  45826. back: {
  45827. height: math.unit(1.6, "meters"),
  45828. weight: math.unit(60, "kg"),
  45829. name: "Back",
  45830. image: {
  45831. source: "./media/characters/bounty/back.svg",
  45832. extra: 1417/1307,
  45833. bottom: 8/1425
  45834. }
  45835. },
  45836. },
  45837. [
  45838. {
  45839. name: "Normal",
  45840. height: math.unit(1.6, "meters"),
  45841. default: true
  45842. },
  45843. {
  45844. name: "Macro",
  45845. height: math.unit(300, "meters")
  45846. },
  45847. ]
  45848. ))
  45849. characterMakers.push(() => makeCharacter(
  45850. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45851. {
  45852. front: {
  45853. height: math.unit(2 + 8/12, "feet"),
  45854. weight: math.unit(15, "lb"),
  45855. name: "Front",
  45856. image: {
  45857. source: "./media/characters/mochi/front.svg",
  45858. extra: 1022/852,
  45859. bottom: 435/1457
  45860. }
  45861. },
  45862. back: {
  45863. height: math.unit(2 + 8/12, "feet"),
  45864. weight: math.unit(15, "lb"),
  45865. name: "Back",
  45866. image: {
  45867. source: "./media/characters/mochi/back.svg",
  45868. extra: 1335/1119,
  45869. bottom: 39/1374
  45870. }
  45871. },
  45872. bird: {
  45873. height: math.unit(2 + 8/12, "feet"),
  45874. weight: math.unit(15, "lb"),
  45875. name: "Bird",
  45876. image: {
  45877. source: "./media/characters/mochi/bird.svg",
  45878. extra: 1251/1113,
  45879. bottom: 178/1429
  45880. }
  45881. },
  45882. kaiju: {
  45883. height: math.unit(154, "feet"),
  45884. weight: math.unit(1e7, "lb"),
  45885. name: "Kaiju",
  45886. image: {
  45887. source: "./media/characters/mochi/kaiju.svg",
  45888. extra: 460/324,
  45889. bottom: 40/500
  45890. }
  45891. },
  45892. head: {
  45893. height: math.unit(1.21, "feet"),
  45894. name: "Head",
  45895. image: {
  45896. source: "./media/characters/mochi/head.svg"
  45897. }
  45898. },
  45899. alternateTail: {
  45900. height: math.unit(2 + 8/12, "feet"),
  45901. weight: math.unit(45, "lb"),
  45902. name: "Alternate Tail",
  45903. image: {
  45904. source: "./media/characters/mochi/alternate-tail.svg",
  45905. extra: 139/76,
  45906. bottom: 45/184
  45907. }
  45908. },
  45909. },
  45910. [
  45911. {
  45912. name: "Micro",
  45913. height: math.unit(2, "inches")
  45914. },
  45915. {
  45916. name: "Normal",
  45917. height: math.unit(2 + 8/12, "feet"),
  45918. default: true
  45919. },
  45920. {
  45921. name: "Macro",
  45922. height: math.unit(106, "feet")
  45923. },
  45924. ]
  45925. ))
  45926. characterMakers.push(() => makeCharacter(
  45927. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45928. {
  45929. front: {
  45930. height: math.unit(5.67, "feet"),
  45931. weight: math.unit(135, "lb"),
  45932. name: "Front",
  45933. image: {
  45934. source: "./media/characters/sarel/front.svg",
  45935. extra: 865/788,
  45936. bottom: 97/962
  45937. }
  45938. },
  45939. back: {
  45940. height: math.unit(5.67, "feet"),
  45941. weight: math.unit(135, "lb"),
  45942. name: "Back",
  45943. image: {
  45944. source: "./media/characters/sarel/back.svg",
  45945. extra: 857/777,
  45946. bottom: 32/889
  45947. }
  45948. },
  45949. chozoan: {
  45950. height: math.unit(5.67, "feet"),
  45951. weight: math.unit(135, "lb"),
  45952. name: "Chozoan",
  45953. image: {
  45954. source: "./media/characters/sarel/chozoan.svg",
  45955. extra: 865/788,
  45956. bottom: 97/962
  45957. }
  45958. },
  45959. current: {
  45960. height: math.unit(5.67, "feet"),
  45961. weight: math.unit(135, "lb"),
  45962. name: "Current",
  45963. image: {
  45964. source: "./media/characters/sarel/current.svg",
  45965. extra: 865/788,
  45966. bottom: 97/962
  45967. }
  45968. },
  45969. head: {
  45970. height: math.unit(1.77, "feet"),
  45971. name: "Head",
  45972. image: {
  45973. source: "./media/characters/sarel/head.svg"
  45974. }
  45975. },
  45976. claws: {
  45977. height: math.unit(1.8, "feet"),
  45978. name: "Claws",
  45979. image: {
  45980. source: "./media/characters/sarel/claws.svg"
  45981. }
  45982. },
  45983. clawsAlt: {
  45984. height: math.unit(1.8, "feet"),
  45985. name: "Claws-alt",
  45986. image: {
  45987. source: "./media/characters/sarel/claws-alt.svg"
  45988. }
  45989. },
  45990. },
  45991. [
  45992. {
  45993. name: "Normal",
  45994. height: math.unit(5.67, "feet"),
  45995. default: true
  45996. },
  45997. ]
  45998. ))
  45999. characterMakers.push(() => makeCharacter(
  46000. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46001. {
  46002. front: {
  46003. height: math.unit(5500, "feet"),
  46004. name: "Front",
  46005. image: {
  46006. source: "./media/characters/alyonia/front.svg",
  46007. extra: 1200/1135,
  46008. bottom: 29/1229
  46009. }
  46010. },
  46011. back: {
  46012. height: math.unit(5500, "feet"),
  46013. name: "Back",
  46014. image: {
  46015. source: "./media/characters/alyonia/back.svg",
  46016. extra: 1205/1138,
  46017. bottom: 10/1215
  46018. }
  46019. },
  46020. },
  46021. [
  46022. {
  46023. name: "Small",
  46024. height: math.unit(10, "feet")
  46025. },
  46026. {
  46027. name: "Macro",
  46028. height: math.unit(500, "feet")
  46029. },
  46030. {
  46031. name: "Mega Macro",
  46032. height: math.unit(5500, "feet"),
  46033. default: true
  46034. },
  46035. {
  46036. name: "Mega Macro+",
  46037. height: math.unit(500000, "feet")
  46038. },
  46039. {
  46040. name: "Giga Macro",
  46041. height: math.unit(3000, "miles")
  46042. },
  46043. {
  46044. name: "Tera Macro",
  46045. height: math.unit(2.8e6, "miles")
  46046. },
  46047. {
  46048. name: "Galactic",
  46049. height: math.unit(120000, "lightyears")
  46050. },
  46051. ]
  46052. ))
  46053. characterMakers.push(() => makeCharacter(
  46054. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46055. {
  46056. werewolf: {
  46057. height: math.unit(8, "feet"),
  46058. weight: math.unit(425, "lb"),
  46059. name: "Werewolf",
  46060. image: {
  46061. source: "./media/characters/autumn/werewolf.svg",
  46062. extra: 2154/2031,
  46063. bottom: 160/2314
  46064. }
  46065. },
  46066. human: {
  46067. height: math.unit(5 + 8/12, "feet"),
  46068. weight: math.unit(150, "lb"),
  46069. name: "Human",
  46070. image: {
  46071. source: "./media/characters/autumn/human.svg",
  46072. extra: 1200/1149,
  46073. bottom: 30/1230
  46074. }
  46075. },
  46076. },
  46077. [
  46078. {
  46079. name: "Normal",
  46080. height: math.unit(8, "feet"),
  46081. default: true
  46082. },
  46083. ]
  46084. ))
  46085. characterMakers.push(() => makeCharacter(
  46086. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46087. {
  46088. front: {
  46089. height: math.unit(8 + 5/12, "feet"),
  46090. weight: math.unit(825, "lb"),
  46091. name: "Front",
  46092. image: {
  46093. source: "./media/characters/cobalt-charizard/front.svg",
  46094. extra: 1268/1155,
  46095. bottom: 122/1390
  46096. }
  46097. },
  46098. side: {
  46099. height: math.unit(8 + 5/12, "feet"),
  46100. weight: math.unit(825, "lb"),
  46101. name: "Side",
  46102. image: {
  46103. source: "./media/characters/cobalt-charizard/side.svg",
  46104. extra: 1348/1257,
  46105. bottom: 58/1406
  46106. }
  46107. },
  46108. gMax: {
  46109. height: math.unit(134 + 11/12, "feet"),
  46110. name: "G-Max",
  46111. image: {
  46112. source: "./media/characters/cobalt-charizard/g-max.svg",
  46113. extra: 1835/1541,
  46114. bottom: 151/1986
  46115. }
  46116. },
  46117. },
  46118. [
  46119. {
  46120. name: "Normal",
  46121. height: math.unit(8 + 5/12, "feet"),
  46122. default: true
  46123. },
  46124. ]
  46125. ))
  46126. characterMakers.push(() => makeCharacter(
  46127. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46128. {
  46129. front: {
  46130. height: math.unit(6 + 3/12, "feet"),
  46131. weight: math.unit(210, "lb"),
  46132. name: "Front",
  46133. image: {
  46134. source: "./media/characters/stella/front.svg",
  46135. extra: 3549/3335,
  46136. bottom: 51/3600
  46137. }
  46138. },
  46139. },
  46140. [
  46141. {
  46142. name: "Normal",
  46143. height: math.unit(6 + 3/12, "feet"),
  46144. default: true
  46145. },
  46146. ]
  46147. ))
  46148. characterMakers.push(() => makeCharacter(
  46149. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46150. {
  46151. front: {
  46152. height: math.unit(5, "feet"),
  46153. weight: math.unit(90, "lb"),
  46154. name: "Front",
  46155. image: {
  46156. source: "./media/characters/riley-bishop/front.svg",
  46157. extra: 1450/1428,
  46158. bottom: 152/1602
  46159. }
  46160. },
  46161. },
  46162. [
  46163. {
  46164. name: "Normal",
  46165. height: math.unit(5, "feet"),
  46166. default: true
  46167. },
  46168. ]
  46169. ))
  46170. characterMakers.push(() => makeCharacter(
  46171. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46172. {
  46173. side: {
  46174. height: math.unit(8 + 2/12, "feet"),
  46175. weight: math.unit(500, "kg"),
  46176. name: "Side",
  46177. image: {
  46178. source: "./media/characters/theo-arcanine/side.svg",
  46179. extra: 1342/1074,
  46180. bottom: 111/1453
  46181. }
  46182. },
  46183. },
  46184. [
  46185. {
  46186. name: "Normal",
  46187. height: math.unit(8 + 2/12, "feet"),
  46188. default: true
  46189. },
  46190. ]
  46191. ))
  46192. characterMakers.push(() => makeCharacter(
  46193. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46194. {
  46195. front: {
  46196. height: math.unit(4, "feet"),
  46197. name: "Front",
  46198. image: {
  46199. source: "./media/characters/kali/front.svg",
  46200. extra: 1074/867,
  46201. bottom: 34/1108
  46202. }
  46203. },
  46204. back: {
  46205. height: math.unit(4, "feet"),
  46206. name: "Back",
  46207. image: {
  46208. source: "./media/characters/kali/back.svg",
  46209. extra: 1068/863,
  46210. bottom: 26/1094
  46211. }
  46212. },
  46213. frontAlt: {
  46214. height: math.unit(4, "feet"),
  46215. name: "Front (Alt)",
  46216. image: {
  46217. source: "./media/characters/kali/front-alt.svg",
  46218. extra: 1921/1357,
  46219. bottom: 70/1991
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Normal",
  46226. height: math.unit(4, "feet"),
  46227. default: true
  46228. },
  46229. {
  46230. name: "Big'vali",
  46231. height: math.unit(11, "feet")
  46232. },
  46233. {
  46234. name: "Macro",
  46235. height: math.unit(32, "meters")
  46236. },
  46237. {
  46238. name: "Macro+",
  46239. height: math.unit(150, "meters")
  46240. },
  46241. {
  46242. name: "Megamacro",
  46243. height: math.unit(7500, "meters")
  46244. },
  46245. {
  46246. name: "Megamacro+",
  46247. height: math.unit(80, "kilometers")
  46248. },
  46249. ]
  46250. ))
  46251. characterMakers.push(() => makeCharacter(
  46252. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46253. {
  46254. side: {
  46255. height: math.unit(5 + 11/12, "feet"),
  46256. weight: math.unit(236, "lb"),
  46257. name: "Side",
  46258. image: {
  46259. source: "./media/characters/gapp/side.svg",
  46260. extra: 775/340,
  46261. bottom: 58/833
  46262. }
  46263. },
  46264. mouth: {
  46265. height: math.unit(2.98, "feet"),
  46266. name: "Mouth",
  46267. image: {
  46268. source: "./media/characters/gapp/mouth.svg"
  46269. }
  46270. },
  46271. },
  46272. [
  46273. {
  46274. name: "Normal",
  46275. height: math.unit(5 + 1/12, "feet"),
  46276. default: true
  46277. },
  46278. ]
  46279. ))
  46280. characterMakers.push(() => makeCharacter(
  46281. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46282. {
  46283. front: {
  46284. height: math.unit(6, "feet"),
  46285. name: "Front",
  46286. image: {
  46287. source: "./media/characters/persephone/front.svg",
  46288. extra: 1895/1717,
  46289. bottom: 96/1991
  46290. }
  46291. },
  46292. back: {
  46293. height: math.unit(6, "feet"),
  46294. name: "Back",
  46295. image: {
  46296. source: "./media/characters/persephone/back.svg",
  46297. extra: 1868/1679,
  46298. bottom: 26/1894
  46299. }
  46300. },
  46301. casual: {
  46302. height: math.unit(6, "feet"),
  46303. name: "Casual",
  46304. image: {
  46305. source: "./media/characters/persephone/casual.svg",
  46306. extra: 1713/1541,
  46307. bottom: 76/1789
  46308. }
  46309. },
  46310. gaming: {
  46311. height: math.unit(3.55, "feet"),
  46312. name: "Gaming",
  46313. image: {
  46314. source: "./media/characters/persephone/gaming.svg",
  46315. extra: 1242/1038,
  46316. bottom: 66/1308
  46317. }
  46318. },
  46319. head: {
  46320. height: math.unit(2.15, "feet"),
  46321. name: "😐",
  46322. image: {
  46323. source: "./media/characters/persephone/head.svg"
  46324. }
  46325. },
  46326. talking: {
  46327. height: math.unit(2.5, "feet"),
  46328. name: "💬",
  46329. image: {
  46330. source: "./media/characters/persephone/talking.svg"
  46331. }
  46332. },
  46333. hmm: {
  46334. height: math.unit(2.28, "feet"),
  46335. name: "🤨",
  46336. image: {
  46337. source: "./media/characters/persephone/hmm.svg"
  46338. }
  46339. },
  46340. },
  46341. [
  46342. {
  46343. name: "Human Size",
  46344. height: math.unit(6, "feet")
  46345. },
  46346. {
  46347. name: "Big Steppy",
  46348. height: math.unit(600, "meters"),
  46349. default: true
  46350. },
  46351. {
  46352. name: "Galaxy Brain",
  46353. height: math.unit(1, "zettameter")
  46354. },
  46355. ]
  46356. ))
  46357. characterMakers.push(() => makeCharacter(
  46358. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46359. {
  46360. front: {
  46361. height: math.unit(1.85, "meters"),
  46362. name: "Front",
  46363. image: {
  46364. source: "./media/characters/riley-foxthing/front.svg",
  46365. extra: 1495/1354,
  46366. bottom: 122/1617
  46367. }
  46368. },
  46369. frontAlt: {
  46370. height: math.unit(1.85, "meters"),
  46371. name: "Front (Alt)",
  46372. image: {
  46373. source: "./media/characters/riley-foxthing/front-alt.svg",
  46374. extra: 1572/1389,
  46375. bottom: 116/1688
  46376. }
  46377. },
  46378. },
  46379. [
  46380. {
  46381. name: "Normal Sized",
  46382. height: math.unit(1.85, "meters"),
  46383. default: true
  46384. },
  46385. {
  46386. name: "Quite Sizable",
  46387. height: math.unit(5, "meters")
  46388. },
  46389. {
  46390. name: "Rather Large",
  46391. height: math.unit(20, "meters")
  46392. },
  46393. {
  46394. name: "Macro",
  46395. height: math.unit(450, "meters")
  46396. },
  46397. {
  46398. name: "Giga",
  46399. height: math.unit(5, "km")
  46400. },
  46401. ]
  46402. ))
  46403. characterMakers.push(() => makeCharacter(
  46404. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46405. {
  46406. front: {
  46407. height: math.unit(6, "feet"),
  46408. weight: math.unit(200, "lb"),
  46409. name: "Front",
  46410. image: {
  46411. source: "./media/characters/blizzard/front.svg",
  46412. extra: 1136/990,
  46413. bottom: 136/1272
  46414. }
  46415. },
  46416. back: {
  46417. height: math.unit(6, "feet"),
  46418. weight: math.unit(200, "lb"),
  46419. name: "Back",
  46420. image: {
  46421. source: "./media/characters/blizzard/back.svg",
  46422. extra: 1175/1034,
  46423. bottom: 97/1272
  46424. }
  46425. },
  46426. sitting: {
  46427. height: math.unit(3.725, "feet"),
  46428. weight: math.unit(200, "lb"),
  46429. name: "Sitting",
  46430. image: {
  46431. source: "./media/characters/blizzard/sitting.svg",
  46432. extra: 581/485,
  46433. bottom: 90/671
  46434. }
  46435. },
  46436. frontWizard: {
  46437. height: math.unit(7.9, "feet"),
  46438. weight: math.unit(200, "lb"),
  46439. name: "Front (Wizard)",
  46440. image: {
  46441. source: "./media/characters/blizzard/front-wizard.svg"
  46442. }
  46443. },
  46444. backWizard: {
  46445. height: math.unit(7.9, "feet"),
  46446. weight: math.unit(200, "lb"),
  46447. name: "Back (Wizard)",
  46448. image: {
  46449. source: "./media/characters/blizzard/back-wizard.svg"
  46450. }
  46451. },
  46452. frontNsfw: {
  46453. height: math.unit(6, "feet"),
  46454. weight: math.unit(200, "lb"),
  46455. name: "Front (NSFW)",
  46456. image: {
  46457. source: "./media/characters/blizzard/front-nsfw.svg",
  46458. extra: 1136/990,
  46459. bottom: 136/1272
  46460. }
  46461. },
  46462. backNsfw: {
  46463. height: math.unit(6, "feet"),
  46464. weight: math.unit(200, "lb"),
  46465. name: "Back (NSFW)",
  46466. image: {
  46467. source: "./media/characters/blizzard/back-nsfw.svg",
  46468. extra: 1175/1034,
  46469. bottom: 97/1272
  46470. }
  46471. },
  46472. sittingNsfw: {
  46473. height: math.unit(3.725, "feet"),
  46474. weight: math.unit(200, "lb"),
  46475. name: "Sitting (NSFW)",
  46476. image: {
  46477. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46478. extra: 581/485,
  46479. bottom: 90/671
  46480. }
  46481. },
  46482. wizardFrontNsfw: {
  46483. height: math.unit(7.9, "feet"),
  46484. weight: math.unit(200, "lb"),
  46485. name: "Wizard (Front, NSFW)",
  46486. image: {
  46487. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46488. }
  46489. },
  46490. },
  46491. [
  46492. {
  46493. name: "Normal",
  46494. height: math.unit(6, "feet"),
  46495. default: true
  46496. },
  46497. ]
  46498. ))
  46499. characterMakers.push(() => makeCharacter(
  46500. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46501. {
  46502. front: {
  46503. height: math.unit(5 + 2/12, "feet"),
  46504. name: "Front",
  46505. image: {
  46506. source: "./media/characters/lumi/front.svg",
  46507. extra: 1328/1268,
  46508. bottom: 103/1431
  46509. }
  46510. },
  46511. back: {
  46512. height: math.unit(5 + 2/12, "feet"),
  46513. name: "Back",
  46514. image: {
  46515. source: "./media/characters/lumi/back.svg",
  46516. extra: 1381/1327,
  46517. bottom: 43/1424
  46518. }
  46519. },
  46520. },
  46521. [
  46522. {
  46523. name: "Normal",
  46524. height: math.unit(5 + 2/12, "feet"),
  46525. default: true
  46526. },
  46527. ]
  46528. ))
  46529. characterMakers.push(() => makeCharacter(
  46530. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46531. {
  46532. front: {
  46533. height: math.unit(5 + 9/12, "feet"),
  46534. name: "Front",
  46535. image: {
  46536. source: "./media/characters/aliya-cotton/front.svg",
  46537. extra: 577/564,
  46538. bottom: 29/606
  46539. }
  46540. },
  46541. },
  46542. [
  46543. {
  46544. name: "Normal",
  46545. height: math.unit(5 + 9/12, "feet"),
  46546. default: true
  46547. },
  46548. ]
  46549. ))
  46550. characterMakers.push(() => makeCharacter(
  46551. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46552. {
  46553. front: {
  46554. height: math.unit(2.7, "meters"),
  46555. weight: math.unit(25000, "lb"),
  46556. name: "Front",
  46557. image: {
  46558. source: "./media/characters/noah-luxray/front.svg",
  46559. extra: 1644/825,
  46560. bottom: 339/1983
  46561. }
  46562. },
  46563. side: {
  46564. height: math.unit(2.97, "meters"),
  46565. weight: math.unit(25000, "lb"),
  46566. name: "Side",
  46567. image: {
  46568. source: "./media/characters/noah-luxray/side.svg",
  46569. extra: 1319/650,
  46570. bottom: 163/1482
  46571. }
  46572. },
  46573. dick: {
  46574. height: math.unit(7.4, "feet"),
  46575. weight: math.unit(2500, "lb"),
  46576. name: "Dick",
  46577. image: {
  46578. source: "./media/characters/noah-luxray/dick.svg"
  46579. }
  46580. },
  46581. dickAlt: {
  46582. height: math.unit(10.83, "feet"),
  46583. weight: math.unit(2500, "lb"),
  46584. name: "Dick-alt",
  46585. image: {
  46586. source: "./media/characters/noah-luxray/dick-alt.svg"
  46587. }
  46588. },
  46589. },
  46590. [
  46591. {
  46592. name: "BIG",
  46593. height: math.unit(2.7, "meters"),
  46594. default: true
  46595. },
  46596. ]
  46597. ))
  46598. characterMakers.push(() => makeCharacter(
  46599. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46600. {
  46601. standing: {
  46602. height: math.unit(183, "cm"),
  46603. weight: math.unit(68, "kg"),
  46604. name: "Standing",
  46605. image: {
  46606. source: "./media/characters/arion/standing.svg",
  46607. extra: 1869/1807,
  46608. bottom: 93/1962
  46609. }
  46610. },
  46611. reclining: {
  46612. height: math.unit(70.5, "cm"),
  46613. weight: math.unit(68, "lb"),
  46614. name: "Reclining",
  46615. image: {
  46616. source: "./media/characters/arion/reclining.svg",
  46617. extra: 937/870,
  46618. bottom: 63/1000
  46619. }
  46620. },
  46621. },
  46622. [
  46623. {
  46624. name: "Colossus Size, Low",
  46625. height: math.unit(33, "meters"),
  46626. default: true
  46627. },
  46628. {
  46629. name: "Colossus Size, Mid",
  46630. height: math.unit(52, "meters")
  46631. },
  46632. {
  46633. name: "Colossus Size, High",
  46634. height: math.unit(60, "meters")
  46635. },
  46636. {
  46637. name: "Titan Size, Low",
  46638. height: math.unit(91, "meters"),
  46639. },
  46640. {
  46641. name: "Titan Size, Mid",
  46642. height: math.unit(122, "meters")
  46643. },
  46644. {
  46645. name: "Titan Size, High",
  46646. height: math.unit(162, "meters")
  46647. },
  46648. ]
  46649. ))
  46650. characterMakers.push(() => makeCharacter(
  46651. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46652. {
  46653. front: {
  46654. height: math.unit(53, "meters"),
  46655. name: "Front",
  46656. image: {
  46657. source: "./media/characters/stellar-marbey/front.svg",
  46658. extra: 1913/1805,
  46659. bottom: 92/2005
  46660. }
  46661. },
  46662. back: {
  46663. height: math.unit(53, "meters"),
  46664. name: "Back",
  46665. image: {
  46666. source: "./media/characters/stellar-marbey/back.svg",
  46667. extra: 1960/1851,
  46668. bottom: 28/1988
  46669. }
  46670. },
  46671. mouth: {
  46672. height: math.unit(3.5, "meters"),
  46673. name: "Mouth",
  46674. image: {
  46675. source: "./media/characters/stellar-marbey/mouth.svg"
  46676. }
  46677. },
  46678. },
  46679. [
  46680. {
  46681. name: "Macro",
  46682. height: math.unit(53, "meters"),
  46683. default: true
  46684. },
  46685. ]
  46686. ))
  46687. characterMakers.push(() => makeCharacter(
  46688. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46689. {
  46690. front: {
  46691. height: math.unit(8 + 1/12, "feet"),
  46692. weight: math.unit(233, "lb"),
  46693. name: "Front",
  46694. image: {
  46695. source: "./media/characters/matsu/front.svg",
  46696. extra: 832/772,
  46697. bottom: 40/872
  46698. }
  46699. },
  46700. back: {
  46701. height: math.unit(8 + 1/12, "feet"),
  46702. weight: math.unit(233, "lb"),
  46703. name: "Back",
  46704. image: {
  46705. source: "./media/characters/matsu/back.svg",
  46706. extra: 839/780,
  46707. bottom: 47/886
  46708. }
  46709. },
  46710. },
  46711. [
  46712. {
  46713. name: "Normal",
  46714. height: math.unit(8 + 1/12, "feet"),
  46715. default: true
  46716. },
  46717. ]
  46718. ))
  46719. characterMakers.push(() => makeCharacter(
  46720. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46721. {
  46722. front: {
  46723. height: math.unit(4, "feet"),
  46724. weight: math.unit(148, "lb"),
  46725. name: "Front",
  46726. image: {
  46727. source: "./media/characters/thiz/front.svg",
  46728. extra: 1913/1748,
  46729. bottom: 62/1975
  46730. }
  46731. },
  46732. },
  46733. [
  46734. {
  46735. name: "Normal",
  46736. height: math.unit(4, "feet"),
  46737. default: true
  46738. },
  46739. ]
  46740. ))
  46741. characterMakers.push(() => makeCharacter(
  46742. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46743. {
  46744. front: {
  46745. height: math.unit(7 + 6/12, "feet"),
  46746. weight: math.unit(267, "lb"),
  46747. name: "Front",
  46748. image: {
  46749. source: "./media/characters/marcel/front.svg",
  46750. extra: 1221/1096,
  46751. bottom: 76/1297
  46752. }
  46753. },
  46754. },
  46755. [
  46756. {
  46757. name: "Normal",
  46758. height: math.unit(7 + 6/12, "feet"),
  46759. default: true
  46760. },
  46761. ]
  46762. ))
  46763. characterMakers.push(() => makeCharacter(
  46764. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46765. {
  46766. side: {
  46767. height: math.unit(42, "meters"),
  46768. name: "Side",
  46769. image: {
  46770. source: "./media/characters/flake/side.svg",
  46771. extra: 1525/1306,
  46772. bottom: 209/1734
  46773. }
  46774. },
  46775. },
  46776. [
  46777. {
  46778. name: "Normal",
  46779. height: math.unit(42, "meters"),
  46780. default: true
  46781. },
  46782. ]
  46783. ))
  46784. characterMakers.push(() => makeCharacter(
  46785. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46786. {
  46787. dressed: {
  46788. height: math.unit(6 + 4/12, "feet"),
  46789. weight: math.unit(520, "lb"),
  46790. name: "Dressed",
  46791. image: {
  46792. source: "./media/characters/someonne/dressed.svg",
  46793. extra: 1020/1010,
  46794. bottom: 178/1198
  46795. }
  46796. },
  46797. undressed: {
  46798. height: math.unit(6 + 4/12, "feet"),
  46799. weight: math.unit(520, "lb"),
  46800. name: "Undressed",
  46801. image: {
  46802. source: "./media/characters/someonne/undressed.svg",
  46803. extra: 1019/1014,
  46804. bottom: 169/1188
  46805. }
  46806. },
  46807. },
  46808. [
  46809. {
  46810. name: "Normal",
  46811. height: math.unit(6 + 4/12, "feet"),
  46812. default: true
  46813. },
  46814. ]
  46815. ))
  46816. characterMakers.push(() => makeCharacter(
  46817. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46818. {
  46819. front: {
  46820. height: math.unit(3, "feet"),
  46821. weight: math.unit(30, "lb"),
  46822. name: "Front",
  46823. image: {
  46824. source: "./media/characters/till/front.svg",
  46825. extra: 892/823,
  46826. bottom: 55/947
  46827. }
  46828. },
  46829. },
  46830. [
  46831. {
  46832. name: "Normal",
  46833. height: math.unit(3, "feet"),
  46834. default: true
  46835. },
  46836. ]
  46837. ))
  46838. characterMakers.push(() => makeCharacter(
  46839. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46840. {
  46841. front: {
  46842. height: math.unit(9 + 8/12, "feet"),
  46843. weight: math.unit(800, "lb"),
  46844. name: "Front",
  46845. image: {
  46846. source: "./media/characters/sydney-heki/front.svg",
  46847. extra: 1360/1300,
  46848. bottom: 22/1382
  46849. }
  46850. },
  46851. back: {
  46852. height: math.unit(9 + 8/12, "feet"),
  46853. weight: math.unit(800, "lb"),
  46854. name: "Back",
  46855. image: {
  46856. source: "./media/characters/sydney-heki/back.svg",
  46857. extra: 1356/1293,
  46858. bottom: 12/1368
  46859. }
  46860. },
  46861. frontDressed: {
  46862. height: math.unit(9 + 8/12, "feet"),
  46863. weight: math.unit(800, "lb"),
  46864. name: "Front-dressed",
  46865. image: {
  46866. source: "./media/characters/sydney-heki/front-dressed.svg",
  46867. extra: 1360/1300,
  46868. bottom: 22/1382
  46869. }
  46870. },
  46871. },
  46872. [
  46873. {
  46874. name: "Normal",
  46875. height: math.unit(9 + 8/12, "feet"),
  46876. default: true
  46877. },
  46878. {
  46879. name: "Macro",
  46880. height: math.unit(500, "feet")
  46881. },
  46882. {
  46883. name: "Megamacro",
  46884. height: math.unit(3.6, "miles")
  46885. },
  46886. ]
  46887. ))
  46888. characterMakers.push(() => makeCharacter(
  46889. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46890. {
  46891. front: {
  46892. height: math.unit(200, "cm"),
  46893. weight: math.unit(250, "lb"),
  46894. name: "Front",
  46895. image: {
  46896. source: "./media/characters/fowler-karlsson/front.svg",
  46897. extra: 897/845,
  46898. bottom: 123/1020
  46899. }
  46900. },
  46901. back: {
  46902. height: math.unit(200, "cm"),
  46903. weight: math.unit(250, "lb"),
  46904. name: "Back",
  46905. image: {
  46906. source: "./media/characters/fowler-karlsson/back.svg",
  46907. extra: 999/944,
  46908. bottom: 26/1025
  46909. }
  46910. },
  46911. dick: {
  46912. height: math.unit(1.92, "feet"),
  46913. weight: math.unit(150, "lb"),
  46914. name: "Dick",
  46915. image: {
  46916. source: "./media/characters/fowler-karlsson/dick.svg"
  46917. }
  46918. },
  46919. },
  46920. [
  46921. {
  46922. name: "Normal",
  46923. height: math.unit(200, "cm"),
  46924. default: true
  46925. },
  46926. {
  46927. name: "Smaller Macro",
  46928. height: math.unit(90, "m")
  46929. },
  46930. {
  46931. name: "Macro",
  46932. height: math.unit(150, "m")
  46933. },
  46934. {
  46935. name: "Bigger Macro",
  46936. height: math.unit(300, "m")
  46937. },
  46938. ]
  46939. ))
  46940. characterMakers.push(() => makeCharacter(
  46941. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46942. {
  46943. side: {
  46944. height: math.unit(8 + 2/12, "feet"),
  46945. weight: math.unit(1, "tonne"),
  46946. name: "Side",
  46947. image: {
  46948. source: "./media/characters/rylide/side.svg",
  46949. extra: 1318/1034,
  46950. bottom: 106/1424
  46951. }
  46952. },
  46953. sitting: {
  46954. height: math.unit(303, "cm"),
  46955. weight: math.unit(1, "tonne"),
  46956. name: "Sitting",
  46957. image: {
  46958. source: "./media/characters/rylide/sitting.svg",
  46959. extra: 1303/1103,
  46960. bottom: 36/1339
  46961. }
  46962. },
  46963. },
  46964. [
  46965. {
  46966. name: "Normal",
  46967. height: math.unit(8 + 2/12, "feet"),
  46968. default: true
  46969. },
  46970. ]
  46971. ))
  46972. characterMakers.push(() => makeCharacter(
  46973. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46974. {
  46975. front: {
  46976. height: math.unit(5 + 10/12, "feet"),
  46977. weight: math.unit(160, "lb"),
  46978. name: "Front",
  46979. image: {
  46980. source: "./media/characters/pudask/front.svg",
  46981. extra: 1616/1590,
  46982. bottom: 161/1777
  46983. }
  46984. },
  46985. },
  46986. [
  46987. {
  46988. name: "Ferret Height",
  46989. height: math.unit(2 + 5/12, "feet")
  46990. },
  46991. {
  46992. name: "Canon Height",
  46993. height: math.unit(5 + 10/12, "feet"),
  46994. default: true
  46995. },
  46996. ]
  46997. ))
  46998. characterMakers.push(() => makeCharacter(
  46999. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47000. {
  47001. front: {
  47002. height: math.unit(3 + 6/12, "feet"),
  47003. weight: math.unit(60, "lb"),
  47004. name: "Front",
  47005. image: {
  47006. source: "./media/characters/ramita/front.svg",
  47007. extra: 1402/1232,
  47008. bottom: 62/1464
  47009. }
  47010. },
  47011. dressed: {
  47012. height: math.unit(3 + 6/12, "feet"),
  47013. weight: math.unit(60, "lb"),
  47014. name: "Dressed",
  47015. image: {
  47016. source: "./media/characters/ramita/dressed.svg",
  47017. extra: 1534/1249,
  47018. bottom: 50/1584
  47019. }
  47020. },
  47021. },
  47022. [
  47023. {
  47024. name: "Normal",
  47025. height: math.unit(3 + 6/12, "feet"),
  47026. default: true
  47027. },
  47028. ]
  47029. ))
  47030. characterMakers.push(() => makeCharacter(
  47031. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47032. {
  47033. front: {
  47034. height: math.unit(8, "feet"),
  47035. name: "Front",
  47036. image: {
  47037. source: "./media/characters/ark/front.svg",
  47038. extra: 772/693,
  47039. bottom: 45/817
  47040. }
  47041. },
  47042. },
  47043. [
  47044. {
  47045. name: "Normal",
  47046. height: math.unit(8, "feet"),
  47047. default: true
  47048. },
  47049. ]
  47050. ))
  47051. characterMakers.push(() => makeCharacter(
  47052. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47053. {
  47054. front: {
  47055. height: math.unit(6, "feet"),
  47056. weight: math.unit(250, "lb"),
  47057. volume: math.unit(5/8, "gallons"),
  47058. name: "Front",
  47059. image: {
  47060. source: "./media/characters/ludwig-horn/front.svg",
  47061. extra: 1782/1635,
  47062. bottom: 96/1878
  47063. }
  47064. },
  47065. back: {
  47066. height: math.unit(6, "feet"),
  47067. weight: math.unit(250, "lb"),
  47068. volume: math.unit(5/8, "gallons"),
  47069. name: "Back",
  47070. image: {
  47071. source: "./media/characters/ludwig-horn/back.svg",
  47072. extra: 1874/1729,
  47073. bottom: 27/1901
  47074. }
  47075. },
  47076. dick: {
  47077. height: math.unit(1.05, "feet"),
  47078. weight: math.unit(15, "lb"),
  47079. volume: math.unit(5/8, "gallons"),
  47080. name: "Dick",
  47081. image: {
  47082. source: "./media/characters/ludwig-horn/dick.svg"
  47083. }
  47084. },
  47085. },
  47086. [
  47087. {
  47088. name: "Small",
  47089. height: math.unit(6, "feet")
  47090. },
  47091. {
  47092. name: "Typical",
  47093. height: math.unit(12, "feet"),
  47094. default: true
  47095. },
  47096. {
  47097. name: "Building",
  47098. height: math.unit(80, "feet")
  47099. },
  47100. {
  47101. name: "Town",
  47102. height: math.unit(800, "feet")
  47103. },
  47104. {
  47105. name: "Kingdom",
  47106. height: math.unit(80000, "feet")
  47107. },
  47108. {
  47109. name: "Planet",
  47110. height: math.unit(8000000, "feet")
  47111. },
  47112. {
  47113. name: "Universe",
  47114. height: math.unit(8000000000, "feet")
  47115. },
  47116. {
  47117. name: "Transcended",
  47118. height: math.unit(8e27, "feet")
  47119. },
  47120. ]
  47121. ))
  47122. characterMakers.push(() => makeCharacter(
  47123. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47124. {
  47125. front: {
  47126. height: math.unit(5, "feet"),
  47127. weight: math.unit(50, "kg"),
  47128. name: "Front",
  47129. image: {
  47130. source: "./media/characters/biot-avery/front.svg",
  47131. extra: 1295/1232,
  47132. bottom: 86/1381
  47133. }
  47134. },
  47135. },
  47136. [
  47137. {
  47138. name: "Normal",
  47139. height: math.unit(5, "feet"),
  47140. default: true
  47141. },
  47142. ]
  47143. ))
  47144. characterMakers.push(() => makeCharacter(
  47145. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47146. {
  47147. front: {
  47148. height: math.unit(6, "feet"),
  47149. name: "Front",
  47150. image: {
  47151. source: "./media/characters/kitsune-kiro/front.svg",
  47152. extra: 1270/1158,
  47153. bottom: 42/1312
  47154. }
  47155. },
  47156. frontAlt: {
  47157. height: math.unit(6, "feet"),
  47158. name: "Front-alt",
  47159. image: {
  47160. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47161. extra: 1130/1081,
  47162. bottom: 36/1166
  47163. }
  47164. },
  47165. },
  47166. [
  47167. {
  47168. name: "Smol",
  47169. height: math.unit(3, "feet")
  47170. },
  47171. {
  47172. name: "Normal",
  47173. height: math.unit(6, "feet"),
  47174. default: true
  47175. },
  47176. ]
  47177. ))
  47178. characterMakers.push(() => makeCharacter(
  47179. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47180. {
  47181. front: {
  47182. height: math.unit(6, "feet"),
  47183. weight: math.unit(125, "lb"),
  47184. name: "Front",
  47185. image: {
  47186. source: "./media/characters/jack-thatcher/front.svg",
  47187. extra: 1474/1370,
  47188. bottom: 26/1500
  47189. }
  47190. },
  47191. back: {
  47192. height: math.unit(6, "feet"),
  47193. weight: math.unit(125, "lb"),
  47194. name: "Back",
  47195. image: {
  47196. source: "./media/characters/jack-thatcher/back.svg",
  47197. extra: 1489/1384,
  47198. bottom: 18/1507
  47199. }
  47200. },
  47201. },
  47202. [
  47203. {
  47204. name: "Normal",
  47205. height: math.unit(6, "feet"),
  47206. default: true
  47207. },
  47208. {
  47209. name: "Macro",
  47210. height: math.unit(75, "feet")
  47211. },
  47212. {
  47213. name: "Macro-er",
  47214. height: math.unit(250, "feet")
  47215. },
  47216. ]
  47217. ))
  47218. characterMakers.push(() => makeCharacter(
  47219. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47220. {
  47221. front: {
  47222. height: math.unit(7, "feet"),
  47223. weight: math.unit(110, "kg"),
  47224. name: "Front",
  47225. image: {
  47226. source: "./media/characters/max-hyper/front.svg",
  47227. extra: 1969/1881,
  47228. bottom: 49/2018
  47229. }
  47230. },
  47231. },
  47232. [
  47233. {
  47234. name: "Normal",
  47235. height: math.unit(7, "feet"),
  47236. default: true
  47237. },
  47238. ]
  47239. ))
  47240. characterMakers.push(() => makeCharacter(
  47241. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47242. {
  47243. front: {
  47244. height: math.unit(5 + 5/12, "feet"),
  47245. weight: math.unit(160, "lb"),
  47246. name: "Front",
  47247. image: {
  47248. source: "./media/characters/spook/front.svg",
  47249. extra: 794/791,
  47250. bottom: 54/848
  47251. }
  47252. },
  47253. back: {
  47254. height: math.unit(5 + 5/12, "feet"),
  47255. weight: math.unit(160, "lb"),
  47256. name: "Back",
  47257. image: {
  47258. source: "./media/characters/spook/back.svg",
  47259. extra: 812/798,
  47260. bottom: 32/844
  47261. }
  47262. },
  47263. },
  47264. [
  47265. {
  47266. name: "Normal",
  47267. height: math.unit(5 + 5/12, "feet"),
  47268. default: true
  47269. },
  47270. ]
  47271. ))
  47272. characterMakers.push(() => makeCharacter(
  47273. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47274. {
  47275. front: {
  47276. height: math.unit(18, "feet"),
  47277. name: "Front",
  47278. image: {
  47279. source: "./media/characters/xeaduulix/front.svg",
  47280. extra: 1380/1166,
  47281. bottom: 110/1490
  47282. }
  47283. },
  47284. back: {
  47285. height: math.unit(18, "feet"),
  47286. name: "Back",
  47287. image: {
  47288. source: "./media/characters/xeaduulix/back.svg",
  47289. extra: 1592/1170,
  47290. bottom: 128/1720
  47291. }
  47292. },
  47293. frontNsfw: {
  47294. height: math.unit(18, "feet"),
  47295. name: "Front (NSFW)",
  47296. image: {
  47297. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47298. extra: 1380/1166,
  47299. bottom: 110/1490
  47300. }
  47301. },
  47302. backNsfw: {
  47303. height: math.unit(18, "feet"),
  47304. name: "Back (NSFW)",
  47305. image: {
  47306. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47307. extra: 1592/1170,
  47308. bottom: 128/1720
  47309. }
  47310. },
  47311. },
  47312. [
  47313. {
  47314. name: "Normal",
  47315. height: math.unit(18, "feet"),
  47316. default: true
  47317. },
  47318. ]
  47319. ))
  47320. characterMakers.push(() => makeCharacter(
  47321. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47322. {
  47323. spreadWings: {
  47324. height: math.unit(20, "feet"),
  47325. name: "Spread Wings",
  47326. image: {
  47327. source: "./media/characters/fledge/spread-wings.svg",
  47328. extra: 693/635,
  47329. bottom: 26/719
  47330. }
  47331. },
  47332. front: {
  47333. height: math.unit(20, "feet"),
  47334. name: "Front",
  47335. image: {
  47336. source: "./media/characters/fledge/front.svg",
  47337. extra: 684/637,
  47338. bottom: 18/702
  47339. }
  47340. },
  47341. frontAlt: {
  47342. height: math.unit(20, "feet"),
  47343. name: "Front (Alt)",
  47344. image: {
  47345. source: "./media/characters/fledge/front-alt.svg",
  47346. extra: 708/664,
  47347. bottom: 13/721
  47348. }
  47349. },
  47350. back: {
  47351. height: math.unit(20, "feet"),
  47352. name: "Back",
  47353. image: {
  47354. source: "./media/characters/fledge/back.svg",
  47355. extra: 718/634,
  47356. bottom: 22/740
  47357. }
  47358. },
  47359. head: {
  47360. height: math.unit(5.55, "feet"),
  47361. name: "Head",
  47362. image: {
  47363. source: "./media/characters/fledge/head.svg"
  47364. }
  47365. },
  47366. headAlt: {
  47367. height: math.unit(5.1, "feet"),
  47368. name: "Head (Alt)",
  47369. image: {
  47370. source: "./media/characters/fledge/head-alt.svg"
  47371. }
  47372. },
  47373. },
  47374. [
  47375. {
  47376. name: "Small",
  47377. height: math.unit(6 + 2/12, "feet")
  47378. },
  47379. {
  47380. name: "Big",
  47381. height: math.unit(20, "feet"),
  47382. default: true
  47383. },
  47384. {
  47385. name: "Giant",
  47386. height: math.unit(100, "feet")
  47387. },
  47388. {
  47389. name: "Macro",
  47390. height: math.unit(200, "feet")
  47391. },
  47392. ]
  47393. ))
  47394. characterMakers.push(() => makeCharacter(
  47395. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47396. {
  47397. front: {
  47398. height: math.unit(1, "meter"),
  47399. name: "Front",
  47400. image: {
  47401. source: "./media/characters/atlas-morenai/front.svg",
  47402. extra: 1275/1043,
  47403. bottom: 19/1294
  47404. }
  47405. },
  47406. back: {
  47407. height: math.unit(1, "meter"),
  47408. name: "Back",
  47409. image: {
  47410. source: "./media/characters/atlas-morenai/back.svg",
  47411. extra: 1141/1001,
  47412. bottom: 25/1166
  47413. }
  47414. },
  47415. },
  47416. [
  47417. {
  47418. name: "Normal",
  47419. height: math.unit(1, "meter"),
  47420. default: true
  47421. },
  47422. {
  47423. name: "Magic-Infused",
  47424. height: math.unit(5, "meters")
  47425. },
  47426. ]
  47427. ))
  47428. characterMakers.push(() => makeCharacter(
  47429. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47430. {
  47431. front: {
  47432. height: math.unit(5, "meters"),
  47433. name: "Front",
  47434. image: {
  47435. source: "./media/characters/cintia/front.svg",
  47436. extra: 1312/1228,
  47437. bottom: 38/1350
  47438. }
  47439. },
  47440. back: {
  47441. height: math.unit(5, "meters"),
  47442. name: "Back",
  47443. image: {
  47444. source: "./media/characters/cintia/back.svg",
  47445. extra: 1260/1166,
  47446. bottom: 98/1358
  47447. }
  47448. },
  47449. frontDick: {
  47450. height: math.unit(5, "meters"),
  47451. name: "Front (Dick)",
  47452. image: {
  47453. source: "./media/characters/cintia/front-dick.svg",
  47454. extra: 1312/1228,
  47455. bottom: 38/1350
  47456. }
  47457. },
  47458. backDick: {
  47459. height: math.unit(5, "meters"),
  47460. name: "Back (Dick)",
  47461. image: {
  47462. source: "./media/characters/cintia/back-dick.svg",
  47463. extra: 1260/1166,
  47464. bottom: 98/1358
  47465. }
  47466. },
  47467. bust: {
  47468. height: math.unit(1.97, "meters"),
  47469. name: "Bust",
  47470. image: {
  47471. source: "./media/characters/cintia/bust.svg",
  47472. extra: 617/565,
  47473. bottom: 0/617
  47474. }
  47475. },
  47476. },
  47477. [
  47478. {
  47479. name: "Normal",
  47480. height: math.unit(5, "meters"),
  47481. default: true
  47482. },
  47483. ]
  47484. ))
  47485. characterMakers.push(() => makeCharacter(
  47486. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47487. {
  47488. side: {
  47489. height: math.unit(100, "feet"),
  47490. name: "Side",
  47491. image: {
  47492. source: "./media/characters/denora/side.svg",
  47493. extra: 875/803,
  47494. bottom: 9/884
  47495. }
  47496. },
  47497. },
  47498. [
  47499. {
  47500. name: "Standard",
  47501. height: math.unit(100, "feet"),
  47502. default: true
  47503. },
  47504. {
  47505. name: "Grand",
  47506. height: math.unit(1000, "feet")
  47507. },
  47508. {
  47509. name: "Conquering",
  47510. height: math.unit(10000, "feet")
  47511. },
  47512. ]
  47513. ))
  47514. characterMakers.push(() => makeCharacter(
  47515. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47516. {
  47517. dressed: {
  47518. height: math.unit(8 + 5/12, "feet"),
  47519. weight: math.unit(700, "lb"),
  47520. name: "Dressed",
  47521. image: {
  47522. source: "./media/characters/kiva/dressed.svg",
  47523. extra: 1102/1055,
  47524. bottom: 60/1162
  47525. }
  47526. },
  47527. nude: {
  47528. height: math.unit(8 + 5/12, "feet"),
  47529. weight: math.unit(700, "lb"),
  47530. name: "Nude",
  47531. image: {
  47532. source: "./media/characters/kiva/nude.svg",
  47533. extra: 1102/1055,
  47534. bottom: 60/1162
  47535. }
  47536. },
  47537. },
  47538. [
  47539. {
  47540. name: "Base Height",
  47541. height: math.unit(8 + 5/12, "feet"),
  47542. default: true
  47543. },
  47544. {
  47545. name: "Macro",
  47546. height: math.unit(100, "feet")
  47547. },
  47548. {
  47549. name: "Max",
  47550. height: math.unit(3280, "feet")
  47551. },
  47552. ]
  47553. ))
  47554. characterMakers.push(() => makeCharacter(
  47555. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47556. {
  47557. front: {
  47558. height: math.unit(6 + 8/12, "feet"),
  47559. weight: math.unit(250, "lb"),
  47560. name: "Front",
  47561. image: {
  47562. source: "./media/characters/ztragon/front.svg",
  47563. extra: 1825/1684,
  47564. bottom: 98/1923
  47565. }
  47566. },
  47567. },
  47568. [
  47569. {
  47570. name: "Normal",
  47571. height: math.unit(6 + 8/12, "feet"),
  47572. default: true
  47573. },
  47574. {
  47575. name: "Macro",
  47576. height: math.unit(80, "feet")
  47577. },
  47578. ]
  47579. ))
  47580. characterMakers.push(() => makeCharacter(
  47581. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47582. {
  47583. front: {
  47584. height: math.unit(10.4, "feet"),
  47585. weight: math.unit(2, "tons"),
  47586. name: "Front",
  47587. image: {
  47588. source: "./media/characters/yesenia/front.svg",
  47589. extra: 1479/1474,
  47590. bottom: 233/1712
  47591. }
  47592. },
  47593. },
  47594. [
  47595. {
  47596. name: "Normal",
  47597. height: math.unit(10.4, "feet"),
  47598. default: true
  47599. },
  47600. ]
  47601. ))
  47602. characterMakers.push(() => makeCharacter(
  47603. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47604. {
  47605. normal: {
  47606. height: math.unit(6 + 1/12, "feet"),
  47607. weight: math.unit(180, "lb"),
  47608. name: "Normal",
  47609. image: {
  47610. source: "./media/characters/leanne-lycheborne/normal.svg",
  47611. extra: 1748/1660,
  47612. bottom: 98/1846
  47613. }
  47614. },
  47615. were: {
  47616. height: math.unit(12, "feet"),
  47617. weight: math.unit(1600, "lb"),
  47618. name: "Were",
  47619. image: {
  47620. source: "./media/characters/leanne-lycheborne/were.svg",
  47621. extra: 1485/1432,
  47622. bottom: 66/1551
  47623. }
  47624. },
  47625. },
  47626. [
  47627. {
  47628. name: "Normal",
  47629. height: math.unit(6 + 1/12, "feet"),
  47630. default: true
  47631. },
  47632. ]
  47633. ))
  47634. characterMakers.push(() => makeCharacter(
  47635. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47636. {
  47637. side: {
  47638. height: math.unit(13, "feet"),
  47639. name: "Side",
  47640. image: {
  47641. source: "./media/characters/kira-tyler/side.svg",
  47642. extra: 693/393,
  47643. bottom: 58/751
  47644. }
  47645. },
  47646. },
  47647. [
  47648. {
  47649. name: "Normal",
  47650. height: math.unit(13, "feet"),
  47651. default: true
  47652. },
  47653. ]
  47654. ))
  47655. characterMakers.push(() => makeCharacter(
  47656. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47657. {
  47658. front: {
  47659. height: math.unit(10.3, "feet"),
  47660. weight: math.unit(150, "lb"),
  47661. name: "Front",
  47662. image: {
  47663. source: "./media/characters/blaze/front.svg",
  47664. extra: 1378/1286,
  47665. bottom: 172/1550
  47666. }
  47667. },
  47668. },
  47669. [
  47670. {
  47671. name: "Normal",
  47672. height: math.unit(10.3, "feet"),
  47673. default: true
  47674. },
  47675. ]
  47676. ))
  47677. characterMakers.push(() => makeCharacter(
  47678. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47679. {
  47680. side: {
  47681. height: math.unit(2, "meters"),
  47682. weight: math.unit(400, "kg"),
  47683. name: "Side",
  47684. image: {
  47685. source: "./media/characters/anu/side.svg",
  47686. extra: 506/394,
  47687. bottom: 18/524
  47688. }
  47689. },
  47690. },
  47691. [
  47692. {
  47693. name: "Humanoid",
  47694. height: math.unit(2, "meters")
  47695. },
  47696. {
  47697. name: "Normal",
  47698. height: math.unit(5, "meters"),
  47699. default: true
  47700. },
  47701. ]
  47702. ))
  47703. characterMakers.push(() => makeCharacter(
  47704. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47705. {
  47706. front: {
  47707. height: math.unit(5 + 5/12, "feet"),
  47708. weight: math.unit(170, "lb"),
  47709. name: "Front",
  47710. image: {
  47711. source: "./media/characters/synx-the-lynx/front.svg",
  47712. extra: 1893/1745,
  47713. bottom: 17/1910
  47714. }
  47715. },
  47716. side: {
  47717. height: math.unit(5 + 5/12, "feet"),
  47718. weight: math.unit(170, "lb"),
  47719. name: "Side",
  47720. image: {
  47721. source: "./media/characters/synx-the-lynx/side.svg",
  47722. extra: 1884/1740,
  47723. bottom: 39/1923
  47724. }
  47725. },
  47726. back: {
  47727. height: math.unit(5 + 5/12, "feet"),
  47728. weight: math.unit(170, "lb"),
  47729. name: "Back",
  47730. image: {
  47731. source: "./media/characters/synx-the-lynx/back.svg",
  47732. extra: 1903/1755,
  47733. bottom: 14/1917
  47734. }
  47735. },
  47736. },
  47737. [
  47738. {
  47739. name: "Normal",
  47740. height: math.unit(5 + 5/12, "feet"),
  47741. default: true
  47742. },
  47743. ]
  47744. ))
  47745. characterMakers.push(() => makeCharacter(
  47746. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47747. {
  47748. back: {
  47749. height: math.unit(15, "feet"),
  47750. name: "Back",
  47751. image: {
  47752. source: "./media/characters/nadezda-fex/back.svg",
  47753. extra: 1695/1481,
  47754. bottom: 25/1720
  47755. }
  47756. },
  47757. },
  47758. [
  47759. {
  47760. name: "Normal",
  47761. height: math.unit(15, "feet"),
  47762. default: true
  47763. },
  47764. {
  47765. name: "Macro",
  47766. height: math.unit(2.5, "miles")
  47767. },
  47768. {
  47769. name: "Goddess",
  47770. height: math.unit(2, "multiverses")
  47771. },
  47772. ]
  47773. ))
  47774. characterMakers.push(() => makeCharacter(
  47775. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47776. {
  47777. front: {
  47778. height: math.unit(216, "cm"),
  47779. name: "Front",
  47780. image: {
  47781. source: "./media/characters/lev/front.svg",
  47782. extra: 1728/1670,
  47783. bottom: 82/1810
  47784. }
  47785. },
  47786. back: {
  47787. height: math.unit(216, "cm"),
  47788. name: "Back",
  47789. image: {
  47790. source: "./media/characters/lev/back.svg",
  47791. extra: 1738/1675,
  47792. bottom: 24/1762
  47793. }
  47794. },
  47795. dressed: {
  47796. height: math.unit(216, "cm"),
  47797. name: "Dressed",
  47798. image: {
  47799. source: "./media/characters/lev/dressed.svg",
  47800. extra: 1397/1351,
  47801. bottom: 73/1470
  47802. }
  47803. },
  47804. head: {
  47805. height: math.unit(0.51, "meter"),
  47806. name: "Head",
  47807. image: {
  47808. source: "./media/characters/lev/head.svg"
  47809. }
  47810. },
  47811. },
  47812. [
  47813. {
  47814. name: "Normal",
  47815. height: math.unit(216, "cm"),
  47816. default: true
  47817. },
  47818. {
  47819. name: "Relatively Macro",
  47820. height: math.unit(80, "meters")
  47821. },
  47822. {
  47823. name: "Megamacro",
  47824. height: math.unit(21600, "meters")
  47825. },
  47826. {
  47827. name: "Megamacro+",
  47828. height: math.unit(64800, "meters")
  47829. },
  47830. ]
  47831. ))
  47832. characterMakers.push(() => makeCharacter(
  47833. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47834. {
  47835. front: {
  47836. height: math.unit(2, "meters"),
  47837. weight: math.unit(80, "kg"),
  47838. name: "Front",
  47839. image: {
  47840. source: "./media/characters/moka/front.svg",
  47841. extra: 1337/1255,
  47842. bottom: 58/1395
  47843. }
  47844. },
  47845. },
  47846. [
  47847. {
  47848. name: "Micro",
  47849. height: math.unit(15, "cm")
  47850. },
  47851. {
  47852. name: "Normal",
  47853. height: math.unit(2, "meters"),
  47854. default: true
  47855. },
  47856. {
  47857. name: "Macro",
  47858. height: math.unit(20, "meters"),
  47859. },
  47860. ]
  47861. ))
  47862. characterMakers.push(() => makeCharacter(
  47863. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47864. {
  47865. front: {
  47866. height: math.unit(9, "feet"),
  47867. weight: math.unit(240, "lb"),
  47868. name: "Front",
  47869. image: {
  47870. source: "./media/characters/kuzco/front.svg",
  47871. extra: 1593/1487,
  47872. bottom: 32/1625
  47873. }
  47874. },
  47875. side: {
  47876. height: math.unit(9, "feet"),
  47877. weight: math.unit(240, "lb"),
  47878. name: "Side",
  47879. image: {
  47880. source: "./media/characters/kuzco/side.svg",
  47881. extra: 1575/1485,
  47882. bottom: 30/1605
  47883. }
  47884. },
  47885. back: {
  47886. height: math.unit(9, "feet"),
  47887. weight: math.unit(240, "lb"),
  47888. name: "Back",
  47889. image: {
  47890. source: "./media/characters/kuzco/back.svg",
  47891. extra: 1603/1514,
  47892. bottom: 14/1617
  47893. }
  47894. },
  47895. },
  47896. [
  47897. {
  47898. name: "Normal",
  47899. height: math.unit(9, "feet"),
  47900. default: true
  47901. },
  47902. ]
  47903. ))
  47904. characterMakers.push(() => makeCharacter(
  47905. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47906. {
  47907. side: {
  47908. height: math.unit(2, "meters"),
  47909. weight: math.unit(300, "kg"),
  47910. name: "Side",
  47911. image: {
  47912. source: "./media/characters/ceruleus/side.svg",
  47913. extra: 1068/974,
  47914. bottom: 126/1194
  47915. }
  47916. },
  47917. maw: {
  47918. height: math.unit(0.8125, "meter"),
  47919. name: "Maw",
  47920. image: {
  47921. source: "./media/characters/ceruleus/maw.svg"
  47922. }
  47923. },
  47924. },
  47925. [
  47926. {
  47927. name: "Normal",
  47928. height: math.unit(16, "meters"),
  47929. default: true
  47930. },
  47931. ]
  47932. ))
  47933. characterMakers.push(() => makeCharacter(
  47934. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47935. {
  47936. front: {
  47937. height: math.unit(9, "feet"),
  47938. weight: math.unit(500, "kg"),
  47939. name: "Front",
  47940. image: {
  47941. source: "./media/characters/acouya/front.svg",
  47942. extra: 1660/1473,
  47943. bottom: 28/1688
  47944. }
  47945. },
  47946. },
  47947. [
  47948. {
  47949. name: "Normal",
  47950. height: math.unit(9, "feet"),
  47951. default: true
  47952. },
  47953. ]
  47954. ))
  47955. characterMakers.push(() => makeCharacter(
  47956. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47957. {
  47958. front: {
  47959. height: math.unit(5 + 6/12, "feet"),
  47960. weight: math.unit(195, "lb"),
  47961. name: "Front",
  47962. image: {
  47963. source: "./media/characters/vant/front.svg",
  47964. extra: 1396/1320,
  47965. bottom: 20/1416
  47966. }
  47967. },
  47968. back: {
  47969. height: math.unit(5 + 6/12, "feet"),
  47970. weight: math.unit(195, "lb"),
  47971. name: "Back",
  47972. image: {
  47973. source: "./media/characters/vant/back.svg",
  47974. extra: 1396/1320,
  47975. bottom: 20/1416
  47976. }
  47977. },
  47978. maw: {
  47979. height: math.unit(0.75, "feet"),
  47980. name: "Maw",
  47981. image: {
  47982. source: "./media/characters/vant/maw.svg"
  47983. }
  47984. },
  47985. paw: {
  47986. height: math.unit(1.07, "feet"),
  47987. name: "Paw",
  47988. image: {
  47989. source: "./media/characters/vant/paw.svg"
  47990. }
  47991. },
  47992. },
  47993. [
  47994. {
  47995. name: "Micro",
  47996. height: math.unit(0.25, "inches")
  47997. },
  47998. {
  47999. name: "Normal",
  48000. height: math.unit(5 + 6/12, "feet"),
  48001. default: true
  48002. },
  48003. {
  48004. name: "Macro",
  48005. height: math.unit(75, "feet")
  48006. },
  48007. ]
  48008. ))
  48009. characterMakers.push(() => makeCharacter(
  48010. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48011. {
  48012. front: {
  48013. height: math.unit(30, "meters"),
  48014. weight: math.unit(363, "tons"),
  48015. name: "Front",
  48016. image: {
  48017. source: "./media/characters/ahra/front.svg",
  48018. extra: 1914/1814,
  48019. bottom: 46/1960
  48020. }
  48021. },
  48022. },
  48023. [
  48024. {
  48025. name: "Macro",
  48026. height: math.unit(30, "meters"),
  48027. default: true
  48028. },
  48029. ]
  48030. ))
  48031. characterMakers.push(() => makeCharacter(
  48032. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48033. {
  48034. undressed: {
  48035. height: math.unit(2, "m"),
  48036. weight: math.unit(250, "kg"),
  48037. name: "Undressed",
  48038. image: {
  48039. source: "./media/characters/coriander/undressed.svg",
  48040. extra: 1757/1606,
  48041. bottom: 107/1864
  48042. }
  48043. },
  48044. dressed: {
  48045. height: math.unit(2, "m"),
  48046. weight: math.unit(250, "kg"),
  48047. name: "Dressed",
  48048. image: {
  48049. source: "./media/characters/coriander/dressed.svg",
  48050. extra: 1757/1606,
  48051. bottom: 107/1864
  48052. }
  48053. },
  48054. },
  48055. [
  48056. {
  48057. name: "Normal",
  48058. height: math.unit(4, "meters"),
  48059. default: true
  48060. },
  48061. {
  48062. name: "XL",
  48063. height: math.unit(6, "meters")
  48064. },
  48065. {
  48066. name: "XXL",
  48067. height: math.unit(8, "meters")
  48068. },
  48069. ]
  48070. ))
  48071. characterMakers.push(() => makeCharacter(
  48072. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48073. {
  48074. front: {
  48075. height: math.unit(6, "feet"),
  48076. name: "Front",
  48077. image: {
  48078. source: "./media/characters/syrinx/front.svg",
  48079. extra: 1557/1259,
  48080. bottom: 171/1728
  48081. }
  48082. },
  48083. },
  48084. [
  48085. {
  48086. name: "Normal",
  48087. height: math.unit(6 + 3/12, "feet"),
  48088. default: true
  48089. },
  48090. ]
  48091. ))
  48092. characterMakers.push(() => makeCharacter(
  48093. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48094. {
  48095. front: {
  48096. height: math.unit(11 + 6/12, "feet"),
  48097. weight: math.unit(1.5, "tons"),
  48098. name: "Front",
  48099. image: {
  48100. source: "./media/characters/bor/front.svg",
  48101. extra: 1189/1109,
  48102. bottom: 170/1359
  48103. }
  48104. },
  48105. },
  48106. [
  48107. {
  48108. name: "Normal",
  48109. height: math.unit(11 + 6/12, "feet"),
  48110. default: true
  48111. },
  48112. {
  48113. name: "Macro",
  48114. height: math.unit(32 + 9/12, "feet")
  48115. },
  48116. ]
  48117. ))
  48118. characterMakers.push(() => makeCharacter(
  48119. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48120. {
  48121. anthro: {
  48122. height: math.unit(9, "feet"),
  48123. weight: math.unit(2076, "lb"),
  48124. name: "Anthro",
  48125. image: {
  48126. source: "./media/characters/abacus/anthro.svg",
  48127. extra: 1540/1494,
  48128. bottom: 233/1773
  48129. }
  48130. },
  48131. pigeon: {
  48132. height: math.unit(1, "feet"),
  48133. name: "Pigeon",
  48134. image: {
  48135. source: "./media/characters/abacus/pigeon.svg",
  48136. extra: 528/525,
  48137. bottom: 46/574
  48138. }
  48139. },
  48140. },
  48141. [
  48142. {
  48143. name: "Normal",
  48144. height: math.unit(9, "feet"),
  48145. default: true
  48146. },
  48147. ]
  48148. ))
  48149. characterMakers.push(() => makeCharacter(
  48150. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48151. {
  48152. side: {
  48153. height: math.unit(6, "feet"),
  48154. name: "Side",
  48155. image: {
  48156. source: "./media/characters/delkhan/side.svg",
  48157. extra: 1884/1786,
  48158. bottom: 308/2192
  48159. }
  48160. },
  48161. head: {
  48162. height: math.unit(3.38, "feet"),
  48163. name: "Head",
  48164. image: {
  48165. source: "./media/characters/delkhan/head.svg"
  48166. }
  48167. },
  48168. },
  48169. [
  48170. {
  48171. name: "Normal",
  48172. height: math.unit(72, "feet"),
  48173. default: true
  48174. },
  48175. {
  48176. name: "Giant",
  48177. height: math.unit(172, "feet")
  48178. },
  48179. ]
  48180. ))
  48181. characterMakers.push(() => makeCharacter(
  48182. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48183. {
  48184. standing: {
  48185. height: math.unit(6, "feet"),
  48186. name: "Standing",
  48187. image: {
  48188. source: "./media/characters/euchidat/standing.svg",
  48189. extra: 1612/1553,
  48190. bottom: 116/1728
  48191. }
  48192. },
  48193. leaning: {
  48194. height: math.unit(6, "feet"),
  48195. name: "Leaning",
  48196. image: {
  48197. source: "./media/characters/euchidat/leaning.svg",
  48198. extra: 1719/1674,
  48199. bottom: 27/1746
  48200. }
  48201. },
  48202. },
  48203. [
  48204. {
  48205. name: "Normal",
  48206. height: math.unit(175, "feet"),
  48207. default: true
  48208. },
  48209. {
  48210. name: "Megamacro",
  48211. height: math.unit(190, "miles")
  48212. },
  48213. {
  48214. name: "Gigamacro",
  48215. height: math.unit(190000, "miles")
  48216. },
  48217. ]
  48218. ))
  48219. characterMakers.push(() => makeCharacter(
  48220. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48221. {
  48222. front: {
  48223. height: math.unit(6, "feet"),
  48224. weight: math.unit(150, "lb"),
  48225. name: "Front",
  48226. image: {
  48227. source: "./media/characters/rebecca-stack/front.svg",
  48228. extra: 1256/1201,
  48229. bottom: 18/1274
  48230. }
  48231. },
  48232. },
  48233. [
  48234. {
  48235. name: "Normal",
  48236. height: math.unit(5 + 8/12, "feet"),
  48237. default: true
  48238. },
  48239. {
  48240. name: "Demolitionist",
  48241. height: math.unit(200, "feet")
  48242. },
  48243. {
  48244. name: "Out of Control",
  48245. height: math.unit(2, "miles")
  48246. },
  48247. {
  48248. name: "Giga",
  48249. height: math.unit(7200, "miles")
  48250. },
  48251. ]
  48252. ))
  48253. characterMakers.push(() => makeCharacter(
  48254. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48255. {
  48256. front: {
  48257. height: math.unit(6, "feet"),
  48258. weight: math.unit(150, "lb"),
  48259. name: "Front",
  48260. image: {
  48261. source: "./media/characters/jenny-cartwright/front.svg",
  48262. extra: 1384/1376,
  48263. bottom: 58/1442
  48264. }
  48265. },
  48266. },
  48267. [
  48268. {
  48269. name: "Normal",
  48270. height: math.unit(6 + 7/12, "feet"),
  48271. default: true
  48272. },
  48273. {
  48274. name: "Librarian",
  48275. height: math.unit(55, "feet")
  48276. },
  48277. {
  48278. name: "Sightseer",
  48279. height: math.unit(50, "miles")
  48280. },
  48281. {
  48282. name: "Giga",
  48283. height: math.unit(30000, "miles")
  48284. },
  48285. ]
  48286. ))
  48287. characterMakers.push(() => makeCharacter(
  48288. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48289. {
  48290. nude: {
  48291. height: math.unit(8, "feet"),
  48292. weight: math.unit(225, "lb"),
  48293. name: "Nude",
  48294. image: {
  48295. source: "./media/characters/marvy/nude.svg",
  48296. extra: 1900/1683,
  48297. bottom: 89/1989
  48298. }
  48299. },
  48300. dressed: {
  48301. height: math.unit(8, "feet"),
  48302. weight: math.unit(225, "lb"),
  48303. name: "Dressed",
  48304. image: {
  48305. source: "./media/characters/marvy/dressed.svg",
  48306. extra: 1900/1683,
  48307. bottom: 89/1989
  48308. }
  48309. },
  48310. head: {
  48311. height: math.unit(2.85, "feet"),
  48312. name: "Head",
  48313. image: {
  48314. source: "./media/characters/marvy/head.svg"
  48315. }
  48316. },
  48317. },
  48318. [
  48319. {
  48320. name: "Normal",
  48321. height: math.unit(8, "feet"),
  48322. default: true
  48323. },
  48324. ]
  48325. ))
  48326. characterMakers.push(() => makeCharacter(
  48327. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48328. {
  48329. front: {
  48330. height: math.unit(8, "feet"),
  48331. weight: math.unit(250, "lb"),
  48332. name: "Front",
  48333. image: {
  48334. source: "./media/characters/leah/front.svg",
  48335. extra: 1257/1149,
  48336. bottom: 109/1366
  48337. }
  48338. },
  48339. },
  48340. [
  48341. {
  48342. name: "Normal",
  48343. height: math.unit(8, "feet"),
  48344. default: true
  48345. },
  48346. {
  48347. name: "Minimacro",
  48348. height: math.unit(40, "feet")
  48349. },
  48350. {
  48351. name: "Macro",
  48352. height: math.unit(124, "feet")
  48353. },
  48354. {
  48355. name: "Megamacro",
  48356. height: math.unit(850, "feet")
  48357. },
  48358. ]
  48359. ))
  48360. characterMakers.push(() => makeCharacter(
  48361. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48362. {
  48363. side: {
  48364. height: math.unit(13 + 6/12, "feet"),
  48365. weight: math.unit(3200, "lb"),
  48366. name: "Side",
  48367. image: {
  48368. source: "./media/characters/alvir/side.svg",
  48369. extra: 896/589,
  48370. bottom: 26/922
  48371. }
  48372. },
  48373. },
  48374. [
  48375. {
  48376. name: "Normal",
  48377. height: math.unit(13 + 6/12, "feet"),
  48378. default: true
  48379. },
  48380. ]
  48381. ))
  48382. characterMakers.push(() => makeCharacter(
  48383. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48384. {
  48385. front: {
  48386. height: math.unit(5 + 4/12, "feet"),
  48387. weight: math.unit(236, "lb"),
  48388. name: "Front",
  48389. image: {
  48390. source: "./media/characters/zaina-khalil/front.svg",
  48391. extra: 1533/1485,
  48392. bottom: 94/1627
  48393. }
  48394. },
  48395. side: {
  48396. height: math.unit(5 + 4/12, "feet"),
  48397. weight: math.unit(236, "lb"),
  48398. name: "Side",
  48399. image: {
  48400. source: "./media/characters/zaina-khalil/side.svg",
  48401. extra: 1537/1498,
  48402. bottom: 66/1603
  48403. }
  48404. },
  48405. back: {
  48406. height: math.unit(5 + 4/12, "feet"),
  48407. weight: math.unit(236, "lb"),
  48408. name: "Back",
  48409. image: {
  48410. source: "./media/characters/zaina-khalil/back.svg",
  48411. extra: 1546/1494,
  48412. bottom: 89/1635
  48413. }
  48414. },
  48415. },
  48416. [
  48417. {
  48418. name: "Normal",
  48419. height: math.unit(5 + 4/12, "feet"),
  48420. default: true
  48421. },
  48422. ]
  48423. ))
  48424. characterMakers.push(() => makeCharacter(
  48425. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48426. {
  48427. side: {
  48428. height: math.unit(12, "feet"),
  48429. weight: math.unit(4000, "lb"),
  48430. name: "Side",
  48431. image: {
  48432. source: "./media/characters/terry/side.svg",
  48433. extra: 1518/1439,
  48434. bottom: 149/1667
  48435. }
  48436. },
  48437. },
  48438. [
  48439. {
  48440. name: "Normal",
  48441. height: math.unit(12, "feet"),
  48442. default: true
  48443. },
  48444. ]
  48445. ))
  48446. characterMakers.push(() => makeCharacter(
  48447. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48448. {
  48449. front: {
  48450. height: math.unit(12, "feet"),
  48451. weight: math.unit(1500, "lb"),
  48452. name: "Front",
  48453. image: {
  48454. source: "./media/characters/kahea/front.svg",
  48455. extra: 1722/1617,
  48456. bottom: 179/1901
  48457. }
  48458. },
  48459. },
  48460. [
  48461. {
  48462. name: "Normal",
  48463. height: math.unit(12, "feet"),
  48464. default: true
  48465. },
  48466. ]
  48467. ))
  48468. characterMakers.push(() => makeCharacter(
  48469. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48470. {
  48471. demonFront: {
  48472. height: math.unit(36, "feet"),
  48473. name: "Front",
  48474. image: {
  48475. source: "./media/characters/alex-xuria/demon-front.svg",
  48476. extra: 1705/1673,
  48477. bottom: 198/1903
  48478. },
  48479. form: "demon",
  48480. default: true
  48481. },
  48482. demonBack: {
  48483. height: math.unit(36, "feet"),
  48484. name: "Back",
  48485. image: {
  48486. source: "./media/characters/alex-xuria/demon-back.svg",
  48487. extra: 1725/1693,
  48488. bottom: 70/1795
  48489. },
  48490. form: "demon"
  48491. },
  48492. demonHead: {
  48493. height: math.unit(2.14, "meters"),
  48494. name: "Head",
  48495. image: {
  48496. source: "./media/characters/alex-xuria/demon-head.svg"
  48497. },
  48498. form: "demon"
  48499. },
  48500. demonHand: {
  48501. height: math.unit(1.61, "meters"),
  48502. name: "Hand",
  48503. image: {
  48504. source: "./media/characters/alex-xuria/demon-hand.svg"
  48505. },
  48506. form: "demon"
  48507. },
  48508. demonPaw: {
  48509. height: math.unit(1.35, "meters"),
  48510. name: "Paw",
  48511. image: {
  48512. source: "./media/characters/alex-xuria/demon-paw.svg"
  48513. },
  48514. form: "demon"
  48515. },
  48516. demonFoot: {
  48517. height: math.unit(2.2, "meters"),
  48518. name: "Foot",
  48519. image: {
  48520. source: "./media/characters/alex-xuria/demon-foot.svg"
  48521. },
  48522. form: "demon"
  48523. },
  48524. demonCock: {
  48525. height: math.unit(1.74, "meters"),
  48526. name: "Cock",
  48527. image: {
  48528. source: "./media/characters/alex-xuria/demon-cock.svg"
  48529. },
  48530. form: "demon"
  48531. },
  48532. demonTailClosed: {
  48533. height: math.unit(1.47, "meters"),
  48534. name: "Tail (Closed)",
  48535. image: {
  48536. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48537. },
  48538. form: "demon"
  48539. },
  48540. demonTailOpen: {
  48541. height: math.unit(2.85, "meters"),
  48542. name: "Tail (Open)",
  48543. image: {
  48544. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48545. },
  48546. form: "demon"
  48547. },
  48548. incubusFront: {
  48549. height: math.unit(12, "feet"),
  48550. name: "Front",
  48551. image: {
  48552. source: "./media/characters/alex-xuria/incubus-front.svg",
  48553. extra: 1754/1677,
  48554. bottom: 125/1879
  48555. },
  48556. form: "incubus",
  48557. default: true
  48558. },
  48559. incubusBack: {
  48560. height: math.unit(12, "feet"),
  48561. name: "Back",
  48562. image: {
  48563. source: "./media/characters/alex-xuria/incubus-back.svg",
  48564. extra: 1702/1647,
  48565. bottom: 30/1732
  48566. },
  48567. form: "incubus"
  48568. },
  48569. incubusHead: {
  48570. height: math.unit(3.45, "feet"),
  48571. name: "Head",
  48572. image: {
  48573. source: "./media/characters/alex-xuria/incubus-head.svg"
  48574. },
  48575. form: "incubus"
  48576. },
  48577. rabbitFront: {
  48578. height: math.unit(6, "feet"),
  48579. name: "Front",
  48580. image: {
  48581. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48582. extra: 1369/1349,
  48583. bottom: 45/1414
  48584. },
  48585. form: "rabbit",
  48586. default: true
  48587. },
  48588. rabbitSide: {
  48589. height: math.unit(6, "feet"),
  48590. name: "Side",
  48591. image: {
  48592. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48593. extra: 1370/1356,
  48594. bottom: 37/1407
  48595. },
  48596. form: "rabbit"
  48597. },
  48598. rabbitBack: {
  48599. height: math.unit(6, "feet"),
  48600. name: "Back",
  48601. image: {
  48602. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48603. extra: 1375/1358,
  48604. bottom: 43/1418
  48605. },
  48606. form: "rabbit"
  48607. },
  48608. },
  48609. [
  48610. {
  48611. name: "Normal",
  48612. height: math.unit(6, "feet"),
  48613. default: true,
  48614. form: "rabbit"
  48615. },
  48616. {
  48617. name: "Incubus",
  48618. height: math.unit(12, "feet"),
  48619. default: true,
  48620. form: "incubus"
  48621. },
  48622. {
  48623. name: "Demon",
  48624. height: math.unit(36, "feet"),
  48625. default: true,
  48626. form: "demon"
  48627. }
  48628. ],
  48629. {
  48630. "demon": {
  48631. name: "Demon",
  48632. default: true
  48633. },
  48634. "incubus": {
  48635. name: "Incubus",
  48636. },
  48637. "rabbit": {
  48638. name: "Rabbit"
  48639. }
  48640. }
  48641. ))
  48642. characterMakers.push(() => makeCharacter(
  48643. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48644. {
  48645. front: {
  48646. height: math.unit(7 + 5/12, "feet"),
  48647. weight: math.unit(510, "lb"),
  48648. name: "Front",
  48649. image: {
  48650. source: "./media/characters/syrup/front.svg",
  48651. extra: 932/916,
  48652. bottom: 26/958
  48653. }
  48654. },
  48655. },
  48656. [
  48657. {
  48658. name: "Normal",
  48659. height: math.unit(7 + 5/12, "feet"),
  48660. default: true
  48661. },
  48662. {
  48663. name: "Big",
  48664. height: math.unit(50, "feet")
  48665. },
  48666. {
  48667. name: "Macro",
  48668. height: math.unit(300, "feet")
  48669. },
  48670. {
  48671. name: "Megamacro",
  48672. height: math.unit(1, "mile")
  48673. },
  48674. ]
  48675. ))
  48676. characterMakers.push(() => makeCharacter(
  48677. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48678. {
  48679. front: {
  48680. height: math.unit(6 + 9/12, "feet"),
  48681. name: "Front",
  48682. image: {
  48683. source: "./media/characters/zeimne/front.svg",
  48684. extra: 1969/1806,
  48685. bottom: 53/2022
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Normal",
  48692. height: math.unit(6 + 9/12, "feet"),
  48693. default: true
  48694. },
  48695. {
  48696. name: "Giant",
  48697. height: math.unit(550, "feet")
  48698. },
  48699. {
  48700. name: "Mega",
  48701. height: math.unit(3, "miles")
  48702. },
  48703. {
  48704. name: "Giga",
  48705. height: math.unit(250, "miles")
  48706. },
  48707. {
  48708. name: "Tera",
  48709. height: math.unit(1, "AU")
  48710. },
  48711. ]
  48712. ))
  48713. characterMakers.push(() => makeCharacter(
  48714. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48715. {
  48716. front: {
  48717. height: math.unit(5 + 2/12, "feet"),
  48718. name: "Front",
  48719. image: {
  48720. source: "./media/characters/grar/front.svg",
  48721. extra: 1331/1119,
  48722. bottom: 60/1391
  48723. }
  48724. },
  48725. back: {
  48726. height: math.unit(5 + 2/12, "feet"),
  48727. name: "Back",
  48728. image: {
  48729. source: "./media/characters/grar/back.svg",
  48730. extra: 1385/1169,
  48731. bottom: 23/1408
  48732. }
  48733. },
  48734. },
  48735. [
  48736. {
  48737. name: "Normal",
  48738. height: math.unit(5 + 2/12, "feet"),
  48739. default: true
  48740. },
  48741. ]
  48742. ))
  48743. characterMakers.push(() => makeCharacter(
  48744. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48745. {
  48746. front: {
  48747. height: math.unit(13 + 7/12, "feet"),
  48748. weight: math.unit(2200, "lb"),
  48749. name: "Front",
  48750. image: {
  48751. source: "./media/characters/endraya/front.svg",
  48752. extra: 1289/1215,
  48753. bottom: 50/1339
  48754. }
  48755. },
  48756. nude: {
  48757. height: math.unit(13 + 7/12, "feet"),
  48758. weight: math.unit(2200, "lb"),
  48759. name: "Nude",
  48760. image: {
  48761. source: "./media/characters/endraya/nude.svg",
  48762. extra: 1247/1171,
  48763. bottom: 40/1287
  48764. }
  48765. },
  48766. head: {
  48767. height: math.unit(2.6, "feet"),
  48768. name: "Head",
  48769. image: {
  48770. source: "./media/characters/endraya/head.svg"
  48771. }
  48772. },
  48773. slit: {
  48774. height: math.unit(3.4, "feet"),
  48775. name: "Slit",
  48776. image: {
  48777. source: "./media/characters/endraya/slit.svg"
  48778. }
  48779. },
  48780. },
  48781. [
  48782. {
  48783. name: "Normal",
  48784. height: math.unit(13 + 7/12, "feet"),
  48785. default: true
  48786. },
  48787. {
  48788. name: "Macro",
  48789. height: math.unit(200, "feet")
  48790. },
  48791. ]
  48792. ))
  48793. characterMakers.push(() => makeCharacter(
  48794. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48795. {
  48796. front: {
  48797. height: math.unit(1.81, "meters"),
  48798. weight: math.unit(69, "kg"),
  48799. name: "Front",
  48800. image: {
  48801. source: "./media/characters/rodryana/front.svg",
  48802. extra: 2002/1921,
  48803. bottom: 53/2055
  48804. }
  48805. },
  48806. back: {
  48807. height: math.unit(1.81, "meters"),
  48808. weight: math.unit(69, "kg"),
  48809. name: "Back",
  48810. image: {
  48811. source: "./media/characters/rodryana/back.svg",
  48812. extra: 1993/1926,
  48813. bottom: 48/2041
  48814. }
  48815. },
  48816. maw: {
  48817. height: math.unit(0.19769417475, "meters"),
  48818. name: "Maw",
  48819. image: {
  48820. source: "./media/characters/rodryana/maw.svg"
  48821. }
  48822. },
  48823. slit: {
  48824. height: math.unit(0.31631067961, "meters"),
  48825. name: "Slit",
  48826. image: {
  48827. source: "./media/characters/rodryana/slit.svg"
  48828. }
  48829. },
  48830. },
  48831. [
  48832. {
  48833. name: "Normal",
  48834. height: math.unit(1.81, "meters")
  48835. },
  48836. {
  48837. name: "Mini Macro",
  48838. height: math.unit(181, "meters")
  48839. },
  48840. {
  48841. name: "Macro",
  48842. height: math.unit(452, "meters"),
  48843. default: true
  48844. },
  48845. {
  48846. name: "Mega Macro",
  48847. height: math.unit(1.375, "km")
  48848. },
  48849. {
  48850. name: "Giga Macro",
  48851. height: math.unit(13.575, "km")
  48852. },
  48853. ]
  48854. ))
  48855. characterMakers.push(() => makeCharacter(
  48856. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48857. {
  48858. front: {
  48859. height: math.unit(6, "feet"),
  48860. weight: math.unit(1000, "lb"),
  48861. name: "Front",
  48862. image: {
  48863. source: "./media/characters/asaya/front.svg",
  48864. extra: 1460/1200,
  48865. bottom: 71/1531
  48866. }
  48867. },
  48868. },
  48869. [
  48870. {
  48871. name: "Normal",
  48872. height: math.unit(8, "km"),
  48873. default: true
  48874. },
  48875. ]
  48876. ))
  48877. characterMakers.push(() => makeCharacter(
  48878. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48879. {
  48880. front: {
  48881. height: math.unit(3.5, "meters"),
  48882. name: "Front",
  48883. image: {
  48884. source: "./media/characters/sarzu-and-israz/front.svg",
  48885. extra: 1570/1558,
  48886. bottom: 150/1720
  48887. },
  48888. },
  48889. back: {
  48890. height: math.unit(3.5, "meters"),
  48891. name: "Back",
  48892. image: {
  48893. source: "./media/characters/sarzu-and-israz/back.svg",
  48894. extra: 1523/1509,
  48895. bottom: 132/1655
  48896. },
  48897. },
  48898. frontFemale: {
  48899. height: math.unit(3.5, "meters"),
  48900. name: "Front (Female)",
  48901. image: {
  48902. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48903. extra: 1570/1558,
  48904. bottom: 150/1720
  48905. },
  48906. },
  48907. frontHerm: {
  48908. height: math.unit(3.5, "meters"),
  48909. name: "Front (Herm)",
  48910. image: {
  48911. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48912. extra: 1570/1558,
  48913. bottom: 150/1720
  48914. },
  48915. },
  48916. },
  48917. [
  48918. {
  48919. name: "Normal",
  48920. height: math.unit(3.5, "meters"),
  48921. default: true,
  48922. },
  48923. {
  48924. name: "Macro",
  48925. height: math.unit(65.5, "meters"),
  48926. },
  48927. ],
  48928. ))
  48929. characterMakers.push(() => makeCharacter(
  48930. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48931. {
  48932. front: {
  48933. height: math.unit(6, "feet"),
  48934. weight: math.unit(250, "lb"),
  48935. name: "Front",
  48936. image: {
  48937. source: "./media/characters/zenimma/front.svg",
  48938. extra: 1346/1320,
  48939. bottom: 58/1404
  48940. }
  48941. },
  48942. back: {
  48943. height: math.unit(6, "feet"),
  48944. weight: math.unit(250, "lb"),
  48945. name: "Back",
  48946. image: {
  48947. source: "./media/characters/zenimma/back.svg",
  48948. extra: 1324/1308,
  48949. bottom: 44/1368
  48950. }
  48951. },
  48952. dick: {
  48953. height: math.unit(1.44, "feet"),
  48954. name: "Dick",
  48955. image: {
  48956. source: "./media/characters/zenimma/dick.svg"
  48957. }
  48958. },
  48959. },
  48960. [
  48961. {
  48962. name: "Canon Height",
  48963. height: math.unit(66, "miles"),
  48964. default: true
  48965. },
  48966. ]
  48967. ))
  48968. characterMakers.push(() => makeCharacter(
  48969. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48970. {
  48971. nude: {
  48972. height: math.unit(6, "feet"),
  48973. weight: math.unit(150, "lb"),
  48974. name: "Nude",
  48975. image: {
  48976. source: "./media/characters/shavon/nude.svg",
  48977. extra: 1242/1096,
  48978. bottom: 98/1340
  48979. }
  48980. },
  48981. dressed: {
  48982. height: math.unit(6, "feet"),
  48983. weight: math.unit(150, "lb"),
  48984. name: "Dressed",
  48985. image: {
  48986. source: "./media/characters/shavon/dressed.svg",
  48987. extra: 1242/1096,
  48988. bottom: 98/1340
  48989. }
  48990. },
  48991. },
  48992. [
  48993. {
  48994. name: "Macro",
  48995. height: math.unit(255, "feet"),
  48996. default: true
  48997. },
  48998. ]
  48999. ))
  49000. characterMakers.push(() => makeCharacter(
  49001. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49002. {
  49003. front: {
  49004. height: math.unit(6, "feet"),
  49005. name: "Front",
  49006. image: {
  49007. source: "./media/characters/steph/front.svg",
  49008. extra: 1430/1330,
  49009. bottom: 54/1484
  49010. }
  49011. },
  49012. },
  49013. [
  49014. {
  49015. name: "Normal",
  49016. height: math.unit(6, "feet"),
  49017. default: true
  49018. },
  49019. ]
  49020. ))
  49021. characterMakers.push(() => makeCharacter(
  49022. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49023. {
  49024. front: {
  49025. height: math.unit(9, "feet"),
  49026. weight: math.unit(400, "lb"),
  49027. name: "Front",
  49028. image: {
  49029. source: "./media/characters/kil'aman/front.svg",
  49030. extra: 1210/1159,
  49031. bottom: 109/1319
  49032. }
  49033. },
  49034. head: {
  49035. height: math.unit(2.14, "feet"),
  49036. name: "Head",
  49037. image: {
  49038. source: "./media/characters/kil'aman/head.svg"
  49039. }
  49040. },
  49041. maw: {
  49042. height: math.unit(1.21, "feet"),
  49043. name: "Maw",
  49044. image: {
  49045. source: "./media/characters/kil'aman/maw.svg"
  49046. }
  49047. },
  49048. foot: {
  49049. height: math.unit(1.7, "feet"),
  49050. name: "Foot",
  49051. image: {
  49052. source: "./media/characters/kil'aman/foot.svg"
  49053. }
  49054. },
  49055. dick: {
  49056. height: math.unit(2.1, "feet"),
  49057. name: "Dick",
  49058. image: {
  49059. source: "./media/characters/kil'aman/dick.svg"
  49060. }
  49061. },
  49062. },
  49063. [
  49064. {
  49065. name: "Normal",
  49066. height: math.unit(9, "feet")
  49067. },
  49068. {
  49069. name: "Canon Height",
  49070. height: math.unit(10, "miles"),
  49071. default: true
  49072. },
  49073. {
  49074. name: "Maximum",
  49075. height: math.unit(6e9, "miles")
  49076. },
  49077. ]
  49078. ))
  49079. characterMakers.push(() => makeCharacter(
  49080. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49081. {
  49082. front: {
  49083. height: math.unit(90, "feet"),
  49084. weight: math.unit(675000, "lb"),
  49085. name: "Front",
  49086. image: {
  49087. source: "./media/characters/qadan/front.svg",
  49088. extra: 1012/1004,
  49089. bottom: 78/1090
  49090. }
  49091. },
  49092. back: {
  49093. height: math.unit(90, "feet"),
  49094. weight: math.unit(675000, "lb"),
  49095. name: "Back",
  49096. image: {
  49097. source: "./media/characters/qadan/back.svg",
  49098. extra: 1042/1031,
  49099. bottom: 55/1097
  49100. }
  49101. },
  49102. armored: {
  49103. height: math.unit(90, "feet"),
  49104. weight: math.unit(675000, "lb"),
  49105. name: "Armored",
  49106. image: {
  49107. source: "./media/characters/qadan/armored.svg",
  49108. extra: 1047/1037,
  49109. bottom: 48/1095
  49110. }
  49111. },
  49112. },
  49113. [
  49114. {
  49115. name: "Normal",
  49116. height: math.unit(90, "feet"),
  49117. default: true
  49118. },
  49119. ]
  49120. ))
  49121. characterMakers.push(() => makeCharacter(
  49122. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49123. {
  49124. front: {
  49125. height: math.unit(6, "feet"),
  49126. weight: math.unit(225, "lb"),
  49127. name: "Front",
  49128. image: {
  49129. source: "./media/characters/brooke/front.svg",
  49130. extra: 1050/1010,
  49131. bottom: 66/1116
  49132. }
  49133. },
  49134. back: {
  49135. height: math.unit(6, "feet"),
  49136. weight: math.unit(225, "lb"),
  49137. name: "Back",
  49138. image: {
  49139. source: "./media/characters/brooke/back.svg",
  49140. extra: 1053/1013,
  49141. bottom: 41/1094
  49142. }
  49143. },
  49144. dressed: {
  49145. height: math.unit(6, "feet"),
  49146. weight: math.unit(225, "lb"),
  49147. name: "Dressed",
  49148. image: {
  49149. source: "./media/characters/brooke/dressed.svg",
  49150. extra: 1050/1010,
  49151. bottom: 66/1116
  49152. }
  49153. },
  49154. },
  49155. [
  49156. {
  49157. name: "Canon Height",
  49158. height: math.unit(500, "miles"),
  49159. default: true
  49160. },
  49161. ]
  49162. ))
  49163. characterMakers.push(() => makeCharacter(
  49164. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49165. {
  49166. front: {
  49167. height: math.unit(6 + 2/12, "feet"),
  49168. weight: math.unit(210, "lb"),
  49169. name: "Front",
  49170. image: {
  49171. source: "./media/characters/wubs/front.svg",
  49172. extra: 1345/1325,
  49173. bottom: 70/1415
  49174. }
  49175. },
  49176. back: {
  49177. height: math.unit(6 + 2/12, "feet"),
  49178. weight: math.unit(210, "lb"),
  49179. name: "Back",
  49180. image: {
  49181. source: "./media/characters/wubs/back.svg",
  49182. extra: 1296/1275,
  49183. bottom: 58/1354
  49184. }
  49185. },
  49186. },
  49187. [
  49188. {
  49189. name: "Normal",
  49190. height: math.unit(6 + 2/12, "feet"),
  49191. default: true
  49192. },
  49193. {
  49194. name: "Macro",
  49195. height: math.unit(1000, "feet")
  49196. },
  49197. {
  49198. name: "Megamacro",
  49199. height: math.unit(1, "mile")
  49200. },
  49201. ]
  49202. ))
  49203. characterMakers.push(() => makeCharacter(
  49204. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49205. {
  49206. front: {
  49207. height: math.unit(4, "feet"),
  49208. weight: math.unit(120, "lb"),
  49209. name: "Front",
  49210. image: {
  49211. source: "./media/characters/blue/front.svg",
  49212. extra: 1636/1525,
  49213. bottom: 43/1679
  49214. }
  49215. },
  49216. back: {
  49217. height: math.unit(4, "feet"),
  49218. weight: math.unit(120, "lb"),
  49219. name: "Back",
  49220. image: {
  49221. source: "./media/characters/blue/back.svg",
  49222. extra: 1660/1560,
  49223. bottom: 57/1717
  49224. }
  49225. },
  49226. paws: {
  49227. height: math.unit(0.826, "feet"),
  49228. name: "Paws",
  49229. image: {
  49230. source: "./media/characters/blue/paws.svg"
  49231. }
  49232. },
  49233. },
  49234. [
  49235. {
  49236. name: "Micro",
  49237. height: math.unit(3, "inches")
  49238. },
  49239. {
  49240. name: "Normal",
  49241. height: math.unit(4, "feet"),
  49242. default: true
  49243. },
  49244. {
  49245. name: "Femenine Form",
  49246. height: math.unit(14, "feet")
  49247. },
  49248. {
  49249. name: "Werebat Form",
  49250. height: math.unit(18, "feet")
  49251. },
  49252. ]
  49253. ))
  49254. characterMakers.push(() => makeCharacter(
  49255. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49256. {
  49257. female: {
  49258. height: math.unit(7 + 4/12, "feet"),
  49259. weight: math.unit(243, "lb"),
  49260. name: "Female",
  49261. image: {
  49262. source: "./media/characters/kaya/female.svg",
  49263. extra: 975/898,
  49264. bottom: 34/1009
  49265. }
  49266. },
  49267. herm: {
  49268. height: math.unit(7 + 4/12, "feet"),
  49269. weight: math.unit(243, "lb"),
  49270. name: "Herm",
  49271. image: {
  49272. source: "./media/characters/kaya/herm.svg",
  49273. extra: 975/898,
  49274. bottom: 34/1009
  49275. }
  49276. },
  49277. },
  49278. [
  49279. {
  49280. name: "Normal",
  49281. height: math.unit(7 + 4/12, "feet"),
  49282. default: true
  49283. },
  49284. ]
  49285. ))
  49286. characterMakers.push(() => makeCharacter(
  49287. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49288. {
  49289. female: {
  49290. height: math.unit(9 + 4/12, "feet"),
  49291. weight: math.unit(398, "lb"),
  49292. name: "Female",
  49293. image: {
  49294. source: "./media/characters/kassandra/female.svg",
  49295. extra: 908/839,
  49296. bottom: 61/969
  49297. }
  49298. },
  49299. intersex: {
  49300. height: math.unit(9 + 4/12, "feet"),
  49301. weight: math.unit(398, "lb"),
  49302. name: "Intersex",
  49303. image: {
  49304. source: "./media/characters/kassandra/intersex.svg",
  49305. extra: 908/839,
  49306. bottom: 61/969
  49307. }
  49308. },
  49309. },
  49310. [
  49311. {
  49312. name: "Normal",
  49313. height: math.unit(9 + 4/12, "feet"),
  49314. default: true
  49315. },
  49316. ]
  49317. ))
  49318. characterMakers.push(() => makeCharacter(
  49319. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49320. {
  49321. front: {
  49322. height: math.unit(3, "meters"),
  49323. name: "Front",
  49324. image: {
  49325. source: "./media/characters/amy/front.svg",
  49326. extra: 1380/1343,
  49327. bottom: 70/1450
  49328. }
  49329. },
  49330. back: {
  49331. height: math.unit(3, "meters"),
  49332. name: "Back",
  49333. image: {
  49334. source: "./media/characters/amy/back.svg",
  49335. extra: 1380/1347,
  49336. bottom: 66/1446
  49337. }
  49338. },
  49339. },
  49340. [
  49341. {
  49342. name: "Normal",
  49343. height: math.unit(3, "meters"),
  49344. default: true
  49345. },
  49346. ]
  49347. ))
  49348. characterMakers.push(() => makeCharacter(
  49349. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49350. {
  49351. side: {
  49352. height: math.unit(47, "cm"),
  49353. weight: math.unit(10.8, "kg"),
  49354. name: "Side",
  49355. image: {
  49356. source: "./media/characters/alphaschakal/side.svg",
  49357. extra: 1058/568,
  49358. bottom: 62/1120
  49359. }
  49360. },
  49361. back: {
  49362. height: math.unit(78, "cm"),
  49363. weight: math.unit(10.8, "kg"),
  49364. name: "Back",
  49365. image: {
  49366. source: "./media/characters/alphaschakal/back.svg",
  49367. extra: 1102/942,
  49368. bottom: 185/1287
  49369. }
  49370. },
  49371. head: {
  49372. height: math.unit(28, "cm"),
  49373. name: "Head",
  49374. image: {
  49375. source: "./media/characters/alphaschakal/head.svg",
  49376. extra: 696/508,
  49377. bottom: 0/696
  49378. }
  49379. },
  49380. paw: {
  49381. height: math.unit(16, "cm"),
  49382. name: "Paw",
  49383. image: {
  49384. source: "./media/characters/alphaschakal/paw.svg"
  49385. }
  49386. },
  49387. },
  49388. [
  49389. {
  49390. name: "Normal",
  49391. height: math.unit(47, "cm"),
  49392. default: true
  49393. },
  49394. {
  49395. name: "Macro",
  49396. height: math.unit(340, "cm")
  49397. },
  49398. ]
  49399. ))
  49400. characterMakers.push(() => makeCharacter(
  49401. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49402. {
  49403. front: {
  49404. height: math.unit(36, "earths"),
  49405. name: "Front",
  49406. image: {
  49407. source: "./media/characters/ecobyss/front.svg",
  49408. extra: 1282/1215,
  49409. bottom: 11/1293
  49410. }
  49411. },
  49412. back: {
  49413. height: math.unit(36, "earths"),
  49414. name: "Back",
  49415. image: {
  49416. source: "./media/characters/ecobyss/back.svg",
  49417. extra: 1291/1222,
  49418. bottom: 8/1299
  49419. }
  49420. },
  49421. },
  49422. [
  49423. {
  49424. name: "Normal",
  49425. height: math.unit(36, "earths"),
  49426. default: true
  49427. },
  49428. ]
  49429. ))
  49430. characterMakers.push(() => makeCharacter(
  49431. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49432. {
  49433. front: {
  49434. height: math.unit(12, "feet"),
  49435. name: "Front",
  49436. image: {
  49437. source: "./media/characters/vasuk/front.svg",
  49438. extra: 1326/1207,
  49439. bottom: 64/1390
  49440. }
  49441. },
  49442. },
  49443. [
  49444. {
  49445. name: "Normal",
  49446. height: math.unit(12, "feet"),
  49447. default: true
  49448. },
  49449. ]
  49450. ))
  49451. characterMakers.push(() => makeCharacter(
  49452. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49453. {
  49454. side: {
  49455. height: math.unit(100, "feet"),
  49456. name: "Side",
  49457. image: {
  49458. source: "./media/characters/linneaus/side.svg",
  49459. extra: 987/807,
  49460. bottom: 47/1034
  49461. }
  49462. },
  49463. },
  49464. [
  49465. {
  49466. name: "Macro",
  49467. height: math.unit(100, "feet"),
  49468. default: true
  49469. },
  49470. ]
  49471. ))
  49472. characterMakers.push(() => makeCharacter(
  49473. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49474. {
  49475. front: {
  49476. height: math.unit(8, "feet"),
  49477. weight: math.unit(1200, "lb"),
  49478. name: "Front",
  49479. image: {
  49480. source: "./media/characters/nyterious-daligdig/front.svg",
  49481. extra: 1284/1094,
  49482. bottom: 84/1368
  49483. }
  49484. },
  49485. back: {
  49486. height: math.unit(8, "feet"),
  49487. weight: math.unit(1200, "lb"),
  49488. name: "Back",
  49489. image: {
  49490. source: "./media/characters/nyterious-daligdig/back.svg",
  49491. extra: 1301/1121,
  49492. bottom: 129/1430
  49493. }
  49494. },
  49495. mouth: {
  49496. height: math.unit(1.464, "feet"),
  49497. name: "Mouth",
  49498. image: {
  49499. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49500. }
  49501. },
  49502. },
  49503. [
  49504. {
  49505. name: "Small",
  49506. height: math.unit(8, "feet"),
  49507. default: true
  49508. },
  49509. {
  49510. name: "Normal",
  49511. height: math.unit(15, "feet")
  49512. },
  49513. {
  49514. name: "Macro",
  49515. height: math.unit(90, "feet")
  49516. },
  49517. ]
  49518. ))
  49519. characterMakers.push(() => makeCharacter(
  49520. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49521. {
  49522. front: {
  49523. height: math.unit(7 + 4/12, "feet"),
  49524. weight: math.unit(252, "lb"),
  49525. name: "Front",
  49526. image: {
  49527. source: "./media/characters/bandel/front.svg",
  49528. extra: 1946/1775,
  49529. bottom: 26/1972
  49530. }
  49531. },
  49532. back: {
  49533. height: math.unit(7 + 4/12, "feet"),
  49534. weight: math.unit(252, "lb"),
  49535. name: "Back",
  49536. image: {
  49537. source: "./media/characters/bandel/back.svg",
  49538. extra: 1940/1770,
  49539. bottom: 25/1965
  49540. }
  49541. },
  49542. maw: {
  49543. height: math.unit(2.15, "feet"),
  49544. name: "Maw",
  49545. image: {
  49546. source: "./media/characters/bandel/maw.svg"
  49547. }
  49548. },
  49549. stomach: {
  49550. height: math.unit(1.95, "feet"),
  49551. name: "Stomach",
  49552. image: {
  49553. source: "./media/characters/bandel/stomach.svg"
  49554. }
  49555. },
  49556. },
  49557. [
  49558. {
  49559. name: "Normal",
  49560. height: math.unit(7 + 4/12, "feet"),
  49561. default: true
  49562. },
  49563. ]
  49564. ))
  49565. characterMakers.push(() => makeCharacter(
  49566. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49567. {
  49568. front: {
  49569. height: math.unit(10 + 5/12, "feet"),
  49570. weight: math.unit(773.5, "kg"),
  49571. name: "Front",
  49572. image: {
  49573. source: "./media/characters/zed/front.svg",
  49574. extra: 987/941,
  49575. bottom: 52/1039
  49576. }
  49577. },
  49578. },
  49579. [
  49580. {
  49581. name: "Short",
  49582. height: math.unit(5 + 4/12, "feet")
  49583. },
  49584. {
  49585. name: "Average",
  49586. height: math.unit(10 + 5/12, "feet"),
  49587. default: true
  49588. },
  49589. {
  49590. name: "Mini-Macro",
  49591. height: math.unit(24 + 9/12, "feet")
  49592. },
  49593. {
  49594. name: "Macro",
  49595. height: math.unit(249, "feet")
  49596. },
  49597. {
  49598. name: "Mega-Macro",
  49599. height: math.unit(12490, "feet")
  49600. },
  49601. {
  49602. name: "Giga-Macro",
  49603. height: math.unit(24.9, "miles")
  49604. },
  49605. {
  49606. name: "Tera-Macro",
  49607. height: math.unit(24900, "miles")
  49608. },
  49609. {
  49610. name: "Cosmic Scale",
  49611. height: math.unit(38.9, "lightyears")
  49612. },
  49613. {
  49614. name: "Universal Scale",
  49615. height: math.unit(138e12, "lightyears")
  49616. },
  49617. ]
  49618. ))
  49619. characterMakers.push(() => makeCharacter(
  49620. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49621. {
  49622. front: {
  49623. height: math.unit(1561, "inches"),
  49624. name: "Front",
  49625. image: {
  49626. source: "./media/characters/ivan/front.svg",
  49627. extra: 1126/1071,
  49628. bottom: 26/1152
  49629. }
  49630. },
  49631. back: {
  49632. height: math.unit(1561, "inches"),
  49633. name: "Back",
  49634. image: {
  49635. source: "./media/characters/ivan/back.svg",
  49636. extra: 1134/1079,
  49637. bottom: 30/1164
  49638. }
  49639. },
  49640. },
  49641. [
  49642. {
  49643. name: "Normal",
  49644. height: math.unit(1561, "inches"),
  49645. default: true
  49646. },
  49647. ]
  49648. ))
  49649. characterMakers.push(() => makeCharacter(
  49650. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49651. {
  49652. front: {
  49653. height: math.unit(5 + 7/12, "feet"),
  49654. weight: math.unit(150, "lb"),
  49655. name: "Front",
  49656. image: {
  49657. source: "./media/characters/robin-arctic-hare/front.svg",
  49658. extra: 1148/974,
  49659. bottom: 20/1168
  49660. }
  49661. },
  49662. },
  49663. [
  49664. {
  49665. name: "Normal",
  49666. height: math.unit(5 + 7/12, "feet"),
  49667. default: true
  49668. },
  49669. ]
  49670. ))
  49671. characterMakers.push(() => makeCharacter(
  49672. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49673. {
  49674. side: {
  49675. height: math.unit(5, "feet"),
  49676. name: "Side",
  49677. image: {
  49678. source: "./media/characters/birch/side.svg",
  49679. extra: 985/796,
  49680. bottom: 111/1096
  49681. }
  49682. },
  49683. },
  49684. [
  49685. {
  49686. name: "Normal",
  49687. height: math.unit(5, "feet"),
  49688. default: true
  49689. },
  49690. ]
  49691. ))
  49692. characterMakers.push(() => makeCharacter(
  49693. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49694. {
  49695. front: {
  49696. height: math.unit(4, "feet"),
  49697. name: "Front",
  49698. image: {
  49699. source: "./media/characters/rasp/front.svg",
  49700. extra: 561/478,
  49701. bottom: 74/635
  49702. }
  49703. },
  49704. },
  49705. [
  49706. {
  49707. name: "Normal",
  49708. height: math.unit(4, "feet"),
  49709. default: true
  49710. },
  49711. ]
  49712. ))
  49713. characterMakers.push(() => makeCharacter(
  49714. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49715. {
  49716. front: {
  49717. height: math.unit(4 + 6/12, "feet"),
  49718. name: "Front",
  49719. image: {
  49720. source: "./media/characters/agatha/front.svg",
  49721. extra: 947/933,
  49722. bottom: 42/989
  49723. }
  49724. },
  49725. back: {
  49726. height: math.unit(4 + 6/12, "feet"),
  49727. name: "Back",
  49728. image: {
  49729. source: "./media/characters/agatha/back.svg",
  49730. extra: 935/922,
  49731. bottom: 48/983
  49732. }
  49733. },
  49734. },
  49735. [
  49736. {
  49737. name: "Normal",
  49738. height: math.unit(4 + 6 /12, "feet"),
  49739. default: true
  49740. },
  49741. {
  49742. name: "Max Size",
  49743. height: math.unit(500, "feet")
  49744. },
  49745. ]
  49746. ))
  49747. characterMakers.push(() => makeCharacter(
  49748. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49749. {
  49750. side: {
  49751. height: math.unit(30, "feet"),
  49752. name: "Side",
  49753. image: {
  49754. source: "./media/characters/roggy/side.svg",
  49755. extra: 909/643,
  49756. bottom: 63/972
  49757. }
  49758. },
  49759. lounging: {
  49760. height: math.unit(20, "feet"),
  49761. name: "Lounging",
  49762. image: {
  49763. source: "./media/characters/roggy/lounging.svg",
  49764. extra: 643/479,
  49765. bottom: 145/788
  49766. }
  49767. },
  49768. handpaw: {
  49769. height: math.unit(13.1, "feet"),
  49770. name: "Handpaw",
  49771. image: {
  49772. source: "./media/characters/roggy/handpaw.svg"
  49773. }
  49774. },
  49775. footpaw: {
  49776. height: math.unit(15.8, "feet"),
  49777. name: "Footpaw",
  49778. image: {
  49779. source: "./media/characters/roggy/footpaw.svg"
  49780. }
  49781. },
  49782. },
  49783. [
  49784. {
  49785. name: "Menacing",
  49786. height: math.unit(30, "feet"),
  49787. default: true
  49788. },
  49789. ]
  49790. ))
  49791. characterMakers.push(() => makeCharacter(
  49792. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49793. {
  49794. front: {
  49795. height: math.unit(5 + 7/12, "feet"),
  49796. weight: math.unit(135, "lb"),
  49797. name: "Front",
  49798. image: {
  49799. source: "./media/characters/naomi/front.svg",
  49800. extra: 1209/1154,
  49801. bottom: 129/1338
  49802. }
  49803. },
  49804. back: {
  49805. height: math.unit(5 + 7/12, "feet"),
  49806. weight: math.unit(135, "lb"),
  49807. name: "Back",
  49808. image: {
  49809. source: "./media/characters/naomi/back.svg",
  49810. extra: 1252/1190,
  49811. bottom: 23/1275
  49812. }
  49813. },
  49814. },
  49815. [
  49816. {
  49817. name: "Normal",
  49818. height: math.unit(5 + 7 /12, "feet"),
  49819. default: true
  49820. },
  49821. ]
  49822. ))
  49823. characterMakers.push(() => makeCharacter(
  49824. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49825. {
  49826. side: {
  49827. height: math.unit(35, "meters"),
  49828. name: "Side",
  49829. image: {
  49830. source: "./media/characters/kimpi/side.svg",
  49831. extra: 419/382,
  49832. bottom: 63/482
  49833. }
  49834. },
  49835. hand: {
  49836. height: math.unit(8.96, "meters"),
  49837. name: "Hand",
  49838. image: {
  49839. source: "./media/characters/kimpi/hand.svg"
  49840. }
  49841. },
  49842. },
  49843. [
  49844. {
  49845. name: "Normal",
  49846. height: math.unit(35, "meters"),
  49847. default: true
  49848. },
  49849. ]
  49850. ))
  49851. characterMakers.push(() => makeCharacter(
  49852. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49853. {
  49854. front: {
  49855. height: math.unit(4 + 4/12, "feet"),
  49856. name: "Front",
  49857. image: {
  49858. source: "./media/characters/pepper-purrloin/front.svg",
  49859. extra: 1141/1024,
  49860. bottom: 21/1162
  49861. }
  49862. },
  49863. },
  49864. [
  49865. {
  49866. name: "Normal",
  49867. height: math.unit(4 + 4/12, "feet"),
  49868. default: true
  49869. },
  49870. ]
  49871. ))
  49872. characterMakers.push(() => makeCharacter(
  49873. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49874. {
  49875. front: {
  49876. height: math.unit(6 + 2/12, "feet"),
  49877. name: "Front",
  49878. image: {
  49879. source: "./media/characters/raphael/front.svg",
  49880. extra: 1101/962,
  49881. bottom: 59/1160
  49882. }
  49883. },
  49884. },
  49885. [
  49886. {
  49887. name: "Normal",
  49888. height: math.unit(6 + 2/12, "feet"),
  49889. default: true
  49890. },
  49891. ]
  49892. ))
  49893. characterMakers.push(() => makeCharacter(
  49894. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49895. {
  49896. front: {
  49897. height: math.unit(6, "feet"),
  49898. weight: math.unit(150, "lb"),
  49899. name: "Front",
  49900. image: {
  49901. source: "./media/characters/victor-williams/front.svg",
  49902. extra: 1894/1825,
  49903. bottom: 67/1961
  49904. }
  49905. },
  49906. },
  49907. [
  49908. {
  49909. name: "Normal",
  49910. height: math.unit(6, "feet"),
  49911. default: true
  49912. },
  49913. ]
  49914. ))
  49915. characterMakers.push(() => makeCharacter(
  49916. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49917. {
  49918. front: {
  49919. height: math.unit(5 + 8/12, "feet"),
  49920. weight: math.unit(150, "lb"),
  49921. name: "Front",
  49922. image: {
  49923. source: "./media/characters/rachel/front.svg",
  49924. extra: 1902/1787,
  49925. bottom: 46/1948
  49926. }
  49927. },
  49928. },
  49929. [
  49930. {
  49931. name: "Base Height",
  49932. height: math.unit(5 + 8/12, "feet"),
  49933. default: true
  49934. },
  49935. {
  49936. name: "Macro",
  49937. height: math.unit(200, "feet")
  49938. },
  49939. {
  49940. name: "Mega Macro",
  49941. height: math.unit(1, "mile")
  49942. },
  49943. {
  49944. name: "Giga Macro",
  49945. height: math.unit(1500, "miles")
  49946. },
  49947. {
  49948. name: "Tera Macro",
  49949. height: math.unit(8000, "miles")
  49950. },
  49951. {
  49952. name: "Tera Macro+",
  49953. height: math.unit(2e5, "miles")
  49954. },
  49955. ]
  49956. ))
  49957. characterMakers.push(() => makeCharacter(
  49958. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49959. {
  49960. front: {
  49961. height: math.unit(6.5, "feet"),
  49962. name: "Front",
  49963. image: {
  49964. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49965. extra: 860/819,
  49966. bottom: 307/1167
  49967. }
  49968. },
  49969. back: {
  49970. height: math.unit(6.5, "feet"),
  49971. name: "Back",
  49972. image: {
  49973. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49974. extra: 880/837,
  49975. bottom: 395/1275
  49976. }
  49977. },
  49978. sleeping: {
  49979. height: math.unit(2.79, "feet"),
  49980. name: "Sleeping",
  49981. image: {
  49982. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49983. extra: 465/383,
  49984. bottom: 263/728
  49985. }
  49986. },
  49987. maw: {
  49988. height: math.unit(2.52, "feet"),
  49989. name: "Maw",
  49990. image: {
  49991. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49992. }
  49993. },
  49994. },
  49995. [
  49996. {
  49997. name: "Normal",
  49998. height: math.unit(6.5, "feet"),
  49999. default: true
  50000. },
  50001. ]
  50002. ))
  50003. characterMakers.push(() => makeCharacter(
  50004. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50005. {
  50006. front: {
  50007. height: math.unit(5, "feet"),
  50008. name: "Front",
  50009. image: {
  50010. source: "./media/characters/nova-nerium/front.svg",
  50011. extra: 1548/1392,
  50012. bottom: 374/1922
  50013. }
  50014. },
  50015. back: {
  50016. height: math.unit(5, "feet"),
  50017. name: "Back",
  50018. image: {
  50019. source: "./media/characters/nova-nerium/back.svg",
  50020. extra: 1658/1468,
  50021. bottom: 257/1915
  50022. }
  50023. },
  50024. },
  50025. [
  50026. {
  50027. name: "Normal",
  50028. height: math.unit(5, "feet"),
  50029. default: true
  50030. },
  50031. ]
  50032. ))
  50033. characterMakers.push(() => makeCharacter(
  50034. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50035. {
  50036. front: {
  50037. height: math.unit(5 + 4/12, "feet"),
  50038. name: "Front",
  50039. image: {
  50040. source: "./media/characters/ashe-pyriph/front.svg",
  50041. extra: 1935/1747,
  50042. bottom: 60/1995
  50043. }
  50044. },
  50045. },
  50046. [
  50047. {
  50048. name: "Normal",
  50049. height: math.unit(5 + 4/12, "feet"),
  50050. default: true
  50051. },
  50052. ]
  50053. ))
  50054. characterMakers.push(() => makeCharacter(
  50055. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50056. {
  50057. front: {
  50058. height: math.unit(8.7, "feet"),
  50059. name: "Front",
  50060. image: {
  50061. source: "./media/characters/flicker-wisp/front.svg",
  50062. extra: 1835/1613,
  50063. bottom: 449/2284
  50064. }
  50065. },
  50066. side: {
  50067. height: math.unit(8.7, "feet"),
  50068. name: "Side",
  50069. image: {
  50070. source: "./media/characters/flicker-wisp/side.svg",
  50071. extra: 1841/1642,
  50072. bottom: 336/2177
  50073. },
  50074. default: true
  50075. },
  50076. maw: {
  50077. height: math.unit(3.35, "feet"),
  50078. name: "Maw",
  50079. image: {
  50080. source: "./media/characters/flicker-wisp/maw.svg",
  50081. extra: 2338/1506,
  50082. bottom: 0/2338
  50083. }
  50084. },
  50085. ovipositor: {
  50086. height: math.unit(4.95, "feet"),
  50087. name: "Ovipositor",
  50088. image: {
  50089. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50090. }
  50091. },
  50092. egg: {
  50093. height: math.unit(0.385, "feet"),
  50094. weight: math.unit(2, "lb"),
  50095. name: "Egg",
  50096. image: {
  50097. source: "./media/characters/flicker-wisp/egg.svg"
  50098. }
  50099. },
  50100. },
  50101. [
  50102. {
  50103. name: "Normal",
  50104. height: math.unit(8.7, "feet"),
  50105. default: true
  50106. },
  50107. ]
  50108. ))
  50109. characterMakers.push(() => makeCharacter(
  50110. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50111. {
  50112. side: {
  50113. height: math.unit(11, "feet"),
  50114. name: "Side",
  50115. image: {
  50116. source: "./media/characters/faefnul/side.svg",
  50117. extra: 1100/1007,
  50118. bottom: 0/1100
  50119. }
  50120. },
  50121. },
  50122. [
  50123. {
  50124. name: "Normal",
  50125. height: math.unit(11, "feet"),
  50126. default: true
  50127. },
  50128. ]
  50129. ))
  50130. characterMakers.push(() => makeCharacter(
  50131. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50132. {
  50133. front: {
  50134. height: math.unit(6 + 2/12, "feet"),
  50135. name: "Front",
  50136. image: {
  50137. source: "./media/characters/shady/front.svg",
  50138. extra: 502/461,
  50139. bottom: 9/511
  50140. }
  50141. },
  50142. kneeling: {
  50143. height: math.unit(4.6, "feet"),
  50144. name: "Kneeling",
  50145. image: {
  50146. source: "./media/characters/shady/kneeling.svg",
  50147. extra: 1328/1219,
  50148. bottom: 117/1445
  50149. }
  50150. },
  50151. maw: {
  50152. height: math.unit(2, "feet"),
  50153. name: "Maw",
  50154. image: {
  50155. source: "./media/characters/shady/maw.svg"
  50156. }
  50157. },
  50158. },
  50159. [
  50160. {
  50161. name: "Nano",
  50162. height: math.unit(1, "mm")
  50163. },
  50164. {
  50165. name: "Micro",
  50166. height: math.unit(12, "mm")
  50167. },
  50168. {
  50169. name: "Tiny",
  50170. height: math.unit(3, "inches")
  50171. },
  50172. {
  50173. name: "Normal",
  50174. height: math.unit(6 + 2/12, "feet"),
  50175. default: true
  50176. },
  50177. {
  50178. name: "Big",
  50179. height: math.unit(15, "feet")
  50180. },
  50181. {
  50182. name: "Macro",
  50183. height: math.unit(150, "feet")
  50184. },
  50185. {
  50186. name: "Titanic",
  50187. height: math.unit(500, "feet")
  50188. },
  50189. ]
  50190. ))
  50191. characterMakers.push(() => makeCharacter(
  50192. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50193. {
  50194. front: {
  50195. height: math.unit(12, "feet"),
  50196. name: "Front",
  50197. image: {
  50198. source: "./media/characters/fenrir/front.svg",
  50199. extra: 968/875,
  50200. bottom: 22/990
  50201. }
  50202. },
  50203. },
  50204. [
  50205. {
  50206. name: "Big",
  50207. height: math.unit(12, "feet"),
  50208. default: true
  50209. },
  50210. ]
  50211. ))
  50212. characterMakers.push(() => makeCharacter(
  50213. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50214. {
  50215. front: {
  50216. height: math.unit(5 + 4/12, "feet"),
  50217. name: "Front",
  50218. image: {
  50219. source: "./media/characters/makar/front.svg",
  50220. extra: 1181/1112,
  50221. bottom: 78/1259
  50222. }
  50223. },
  50224. },
  50225. [
  50226. {
  50227. name: "Normal",
  50228. height: math.unit(5 + 4/12, "feet"),
  50229. default: true
  50230. },
  50231. ]
  50232. ))
  50233. characterMakers.push(() => makeCharacter(
  50234. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50235. {
  50236. front: {
  50237. height: math.unit(5 + 7/12, "feet"),
  50238. name: "Front",
  50239. image: {
  50240. source: "./media/characters/callow/front.svg",
  50241. extra: 1482/1304,
  50242. bottom: 23/1505
  50243. }
  50244. },
  50245. back: {
  50246. height: math.unit(5 + 7/12, "feet"),
  50247. name: "Back",
  50248. image: {
  50249. source: "./media/characters/callow/back.svg",
  50250. extra: 1484/1296,
  50251. bottom: 25/1509
  50252. }
  50253. },
  50254. },
  50255. [
  50256. {
  50257. name: "Micro",
  50258. height: math.unit(3, "inches"),
  50259. default: true
  50260. },
  50261. {
  50262. name: "Normal",
  50263. height: math.unit(5 + 7/12, "feet")
  50264. },
  50265. ]
  50266. ))
  50267. characterMakers.push(() => makeCharacter(
  50268. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50269. {
  50270. front: {
  50271. height: math.unit(6 + 2/12, "feet"),
  50272. name: "Front",
  50273. image: {
  50274. source: "./media/characters/natel/front.svg",
  50275. extra: 1833/1692,
  50276. bottom: 166/1999
  50277. }
  50278. },
  50279. },
  50280. [
  50281. {
  50282. name: "Normal",
  50283. height: math.unit(6 + 2/12, "feet"),
  50284. default: true
  50285. },
  50286. ]
  50287. ))
  50288. characterMakers.push(() => makeCharacter(
  50289. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50290. {
  50291. front: {
  50292. height: math.unit(1.75, "meters"),
  50293. name: "Front",
  50294. image: {
  50295. source: "./media/characters/misu/front.svg",
  50296. extra: 1690/1558,
  50297. bottom: 234/1924
  50298. }
  50299. },
  50300. back: {
  50301. height: math.unit(1.75, "meters"),
  50302. name: "Back",
  50303. image: {
  50304. source: "./media/characters/misu/back.svg",
  50305. extra: 1762/1618,
  50306. bottom: 146/1908
  50307. }
  50308. },
  50309. frontNude: {
  50310. height: math.unit(1.75, "meters"),
  50311. name: "Front (Nude)",
  50312. image: {
  50313. source: "./media/characters/misu/front-nude.svg",
  50314. extra: 1690/1558,
  50315. bottom: 234/1924
  50316. }
  50317. },
  50318. backNude: {
  50319. height: math.unit(1.75, "meters"),
  50320. name: "Back (Nude)",
  50321. image: {
  50322. source: "./media/characters/misu/back-nude.svg",
  50323. extra: 1762/1618,
  50324. bottom: 146/1908
  50325. }
  50326. },
  50327. frontErect: {
  50328. height: math.unit(1.75, "meters"),
  50329. name: "Front (Erect)",
  50330. image: {
  50331. source: "./media/characters/misu/front-erect.svg",
  50332. extra: 1690/1558,
  50333. bottom: 234/1924
  50334. }
  50335. },
  50336. maw: {
  50337. height: math.unit(0.47, "meters"),
  50338. name: "Maw",
  50339. image: {
  50340. source: "./media/characters/misu/maw.svg"
  50341. }
  50342. },
  50343. head: {
  50344. height: math.unit(0.35, "meters"),
  50345. name: "Head",
  50346. image: {
  50347. source: "./media/characters/misu/head.svg"
  50348. }
  50349. },
  50350. rear: {
  50351. height: math.unit(0.47, "meters"),
  50352. name: "Rear",
  50353. image: {
  50354. source: "./media/characters/misu/rear.svg"
  50355. }
  50356. },
  50357. },
  50358. [
  50359. {
  50360. name: "Normal",
  50361. height: math.unit(1.75, "meters")
  50362. },
  50363. {
  50364. name: "Not good for the people",
  50365. height: math.unit(42, "meters")
  50366. },
  50367. {
  50368. name: "Not good for the neighborhood",
  50369. height: math.unit(135, "meters")
  50370. },
  50371. {
  50372. name: "Bit bigger problem",
  50373. height: math.unit(380, "meters"),
  50374. default: true
  50375. },
  50376. {
  50377. name: "Not good for the city",
  50378. height: math.unit(1.5, "km")
  50379. },
  50380. {
  50381. name: "Not good for the county",
  50382. height: math.unit(5.5, "km")
  50383. },
  50384. {
  50385. name: "Not good for the state",
  50386. height: math.unit(25, "km")
  50387. },
  50388. {
  50389. name: "Not good for the country",
  50390. height: math.unit(125, "km")
  50391. },
  50392. {
  50393. name: "Not good for the continent",
  50394. height: math.unit(2100, "km")
  50395. },
  50396. {
  50397. name: "Not good for the planet",
  50398. height: math.unit(35000, "km")
  50399. },
  50400. {
  50401. name: "Just no",
  50402. height: math.unit(8.5e18, "km")
  50403. },
  50404. ]
  50405. ))
  50406. characterMakers.push(() => makeCharacter(
  50407. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50408. {
  50409. front: {
  50410. height: math.unit(6.5, "feet"),
  50411. name: "Front",
  50412. image: {
  50413. source: "./media/characters/poppy/front.svg",
  50414. extra: 1878/1812,
  50415. bottom: 43/1921
  50416. }
  50417. },
  50418. feet: {
  50419. height: math.unit(1.06, "feet"),
  50420. name: "Feet",
  50421. image: {
  50422. source: "./media/characters/poppy/feet.svg",
  50423. extra: 1083/1083,
  50424. bottom: 87/1170
  50425. }
  50426. },
  50427. },
  50428. [
  50429. {
  50430. name: "Human",
  50431. height: math.unit(6.5, "feet")
  50432. },
  50433. {
  50434. name: "Default",
  50435. height: math.unit(300, "feet"),
  50436. default: true
  50437. },
  50438. {
  50439. name: "Huge",
  50440. height: math.unit(850, "feet")
  50441. },
  50442. {
  50443. name: "Mega",
  50444. height: math.unit(8000, "feet")
  50445. },
  50446. {
  50447. name: "Giga",
  50448. height: math.unit(300, "miles")
  50449. },
  50450. ]
  50451. ))
  50452. characterMakers.push(() => makeCharacter(
  50453. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50454. {
  50455. bipedal: {
  50456. height: math.unit(7, "feet"),
  50457. name: "Bipedal",
  50458. image: {
  50459. source: "./media/characters/zener/bipedal.svg",
  50460. extra: 874/805,
  50461. bottom: 109/983
  50462. }
  50463. },
  50464. quadrupedal: {
  50465. height: math.unit(4.64, "feet"),
  50466. name: "Quadrupedal",
  50467. image: {
  50468. source: "./media/characters/zener/quadrupedal.svg",
  50469. extra: 638/507,
  50470. bottom: 190/828
  50471. }
  50472. },
  50473. cock: {
  50474. height: math.unit(18, "inches"),
  50475. name: "Cock",
  50476. image: {
  50477. source: "./media/characters/zener/cock.svg"
  50478. }
  50479. },
  50480. },
  50481. [
  50482. {
  50483. name: "Normal",
  50484. height: math.unit(7, "feet"),
  50485. default: true
  50486. },
  50487. ]
  50488. ))
  50489. characterMakers.push(() => makeCharacter(
  50490. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50491. {
  50492. nude: {
  50493. height: math.unit(5 + 6/12, "feet"),
  50494. name: "Nude",
  50495. image: {
  50496. source: "./media/characters/charlie-dog/nude.svg",
  50497. extra: 768/734,
  50498. bottom: 26/794
  50499. }
  50500. },
  50501. dressed: {
  50502. height: math.unit(5 + 6/12, "feet"),
  50503. name: "Dressed",
  50504. image: {
  50505. source: "./media/characters/charlie-dog/dressed.svg",
  50506. extra: 768/734,
  50507. bottom: 26/794
  50508. }
  50509. },
  50510. },
  50511. [
  50512. {
  50513. name: "Normal",
  50514. height: math.unit(5 + 6/12, "feet"),
  50515. default: true
  50516. },
  50517. ]
  50518. ))
  50519. characterMakers.push(() => makeCharacter(
  50520. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50521. {
  50522. front: {
  50523. height: math.unit(6 + 4/12, "feet"),
  50524. name: "Front",
  50525. image: {
  50526. source: "./media/characters/ir'istrasz/front.svg",
  50527. extra: 1014/977,
  50528. bottom: 65/1079
  50529. }
  50530. },
  50531. back: {
  50532. height: math.unit(6 + 4/12, "feet"),
  50533. name: "Back",
  50534. image: {
  50535. source: "./media/characters/ir'istrasz/back.svg",
  50536. extra: 1024/992,
  50537. bottom: 34/1058
  50538. }
  50539. },
  50540. },
  50541. [
  50542. {
  50543. name: "Normal",
  50544. height: math.unit(6 + 4/12, "feet"),
  50545. default: true
  50546. },
  50547. ]
  50548. ))
  50549. characterMakers.push(() => makeCharacter(
  50550. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50551. {
  50552. front: {
  50553. height: math.unit(5 + 8/12, "feet"),
  50554. name: "Front",
  50555. image: {
  50556. source: "./media/characters/dee-ditto/front.svg",
  50557. extra: 1874/1785,
  50558. bottom: 68/1942
  50559. }
  50560. },
  50561. back: {
  50562. height: math.unit(5 + 8/12, "feet"),
  50563. name: "Back",
  50564. image: {
  50565. source: "./media/characters/dee-ditto/back.svg",
  50566. extra: 1870/1783,
  50567. bottom: 77/1947
  50568. }
  50569. },
  50570. },
  50571. [
  50572. {
  50573. name: "Normal",
  50574. height: math.unit(5 + 8/12, "feet"),
  50575. default: true
  50576. },
  50577. ]
  50578. ))
  50579. characterMakers.push(() => makeCharacter(
  50580. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50581. {
  50582. front: {
  50583. height: math.unit(7 + 6/12, "feet"),
  50584. name: "Front",
  50585. image: {
  50586. source: "./media/characters/fey/front.svg",
  50587. extra: 995/979,
  50588. bottom: 30/1025
  50589. }
  50590. },
  50591. back: {
  50592. height: math.unit(7 + 6/12, "feet"),
  50593. name: "Back",
  50594. image: {
  50595. source: "./media/characters/fey/back.svg",
  50596. extra: 1079/1008,
  50597. bottom: 5/1084
  50598. }
  50599. },
  50600. dressed: {
  50601. height: math.unit(7 + 6/12, "feet"),
  50602. name: "Dressed",
  50603. image: {
  50604. source: "./media/characters/fey/dressed.svg",
  50605. extra: 995/979,
  50606. bottom: 30/1025
  50607. }
  50608. },
  50609. },
  50610. [
  50611. {
  50612. name: "Normal",
  50613. height: math.unit(7 + 6/12, "feet"),
  50614. default: true
  50615. },
  50616. ]
  50617. ))
  50618. characterMakers.push(() => makeCharacter(
  50619. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50620. {
  50621. standing: {
  50622. height: math.unit(17, "feet"),
  50623. name: "Standing",
  50624. image: {
  50625. source: "./media/characters/aster/standing.svg",
  50626. extra: 1798/1598,
  50627. bottom: 117/1915
  50628. }
  50629. },
  50630. },
  50631. [
  50632. {
  50633. name: "Normal",
  50634. height: math.unit(17, "feet"),
  50635. default: true
  50636. },
  50637. {
  50638. name: "Homewrecker",
  50639. height: math.unit(95, "feet")
  50640. },
  50641. {
  50642. name: "Planet Devourer",
  50643. height: math.unit(1008000, "miles")
  50644. },
  50645. ]
  50646. ))
  50647. characterMakers.push(() => makeCharacter(
  50648. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50649. {
  50650. front: {
  50651. height: math.unit(6 + 5/12, "feet"),
  50652. weight: math.unit(265, "lb"),
  50653. name: "Front",
  50654. image: {
  50655. source: "./media/characters/devon-childs/front.svg",
  50656. extra: 1795/1721,
  50657. bottom: 41/1836
  50658. }
  50659. },
  50660. side: {
  50661. height: math.unit(6 + 5/12, "feet"),
  50662. weight: math.unit(265, "lb"),
  50663. name: "Side",
  50664. image: {
  50665. source: "./media/characters/devon-childs/side.svg",
  50666. extra: 1812/1738,
  50667. bottom: 30/1842
  50668. }
  50669. },
  50670. back: {
  50671. height: math.unit(6 + 5/12, "feet"),
  50672. weight: math.unit(265, "lb"),
  50673. name: "Back",
  50674. image: {
  50675. source: "./media/characters/devon-childs/back.svg",
  50676. extra: 1808/1735,
  50677. bottom: 23/1831
  50678. }
  50679. },
  50680. hand: {
  50681. height: math.unit(1.464, "feet"),
  50682. name: "Hand",
  50683. image: {
  50684. source: "./media/characters/devon-childs/hand.svg"
  50685. }
  50686. },
  50687. foot: {
  50688. height: math.unit(1.6, "feet"),
  50689. name: "Foot",
  50690. image: {
  50691. source: "./media/characters/devon-childs/foot.svg"
  50692. }
  50693. },
  50694. },
  50695. [
  50696. {
  50697. name: "Micro",
  50698. height: math.unit(7, "cm")
  50699. },
  50700. {
  50701. name: "Normal",
  50702. height: math.unit(6 + 5/12, "feet"),
  50703. default: true
  50704. },
  50705. {
  50706. name: "Macro",
  50707. height: math.unit(154, "feet")
  50708. },
  50709. ]
  50710. ))
  50711. characterMakers.push(() => makeCharacter(
  50712. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50713. {
  50714. front: {
  50715. height: math.unit(6, "feet"),
  50716. weight: math.unit(180, "lb"),
  50717. name: "Front",
  50718. image: {
  50719. source: "./media/characters/lydemox-vir/front.svg",
  50720. extra: 1632/1435,
  50721. bottom: 58/1690
  50722. }
  50723. },
  50724. frontSFW: {
  50725. height: math.unit(6, "feet"),
  50726. weight: math.unit(180, "lb"),
  50727. name: "Front (SFW)",
  50728. image: {
  50729. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50730. extra: 1632/1435,
  50731. bottom: 58/1690
  50732. }
  50733. },
  50734. back: {
  50735. height: math.unit(6, "feet"),
  50736. weight: math.unit(180, "lb"),
  50737. name: "Back",
  50738. image: {
  50739. source: "./media/characters/lydemox-vir/back.svg",
  50740. extra: 1593/1408,
  50741. bottom: 31/1624
  50742. }
  50743. },
  50744. paw: {
  50745. height: math.unit(1.85, "feet"),
  50746. name: "Paw",
  50747. image: {
  50748. source: "./media/characters/lydemox-vir/paw.svg"
  50749. }
  50750. },
  50751. dick: {
  50752. height: math.unit(1.8, "feet"),
  50753. name: "Dick",
  50754. image: {
  50755. source: "./media/characters/lydemox-vir/dick.svg"
  50756. }
  50757. },
  50758. },
  50759. [
  50760. {
  50761. name: "Macro",
  50762. height: math.unit(100, "feet"),
  50763. default: true
  50764. },
  50765. {
  50766. name: "Teramacro",
  50767. height: math.unit(1, "earth")
  50768. },
  50769. {
  50770. name: "Planetary",
  50771. height: math.unit(20, "earths")
  50772. },
  50773. ]
  50774. ))
  50775. characterMakers.push(() => makeCharacter(
  50776. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50777. {
  50778. front: {
  50779. height: math.unit(15 + 8/12, "feet"),
  50780. weight: math.unit(1237, "kg"),
  50781. name: "Front",
  50782. image: {
  50783. source: "./media/characters/mia/front.svg",
  50784. extra: 1573/1446,
  50785. bottom: 58/1631
  50786. }
  50787. },
  50788. },
  50789. [
  50790. {
  50791. name: "Small",
  50792. height: math.unit(9 + 5/12, "feet")
  50793. },
  50794. {
  50795. name: "Normal",
  50796. height: math.unit(15 + 8/12, "feet"),
  50797. default: true
  50798. },
  50799. ]
  50800. ))
  50801. characterMakers.push(() => makeCharacter(
  50802. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50803. {
  50804. front: {
  50805. height: math.unit(10 + 6/12, "feet"),
  50806. weight: math.unit(1.3, "tons"),
  50807. name: "Front",
  50808. image: {
  50809. source: "./media/characters/mr-graves/front.svg",
  50810. extra: 1779/1695,
  50811. bottom: 198/1977
  50812. }
  50813. },
  50814. },
  50815. [
  50816. {
  50817. name: "Normal",
  50818. height: math.unit(10 + 6 /12, "feet"),
  50819. default: true
  50820. },
  50821. ]
  50822. ))
  50823. characterMakers.push(() => makeCharacter(
  50824. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50825. {
  50826. dressedFront: {
  50827. height: math.unit(5 + 8/12, "feet"),
  50828. weight: math.unit(125, "lb"),
  50829. name: "Dressed (Front)",
  50830. image: {
  50831. source: "./media/characters/jess/dressed-front.svg",
  50832. extra: 1176/1152,
  50833. bottom: 42/1218
  50834. }
  50835. },
  50836. dressedSide: {
  50837. height: math.unit(5 + 8/12, "feet"),
  50838. weight: math.unit(125, "lb"),
  50839. name: "Dressed (Side)",
  50840. image: {
  50841. source: "./media/characters/jess/dressed-side.svg",
  50842. extra: 1204/1190,
  50843. bottom: 6/1210
  50844. }
  50845. },
  50846. nudeFront: {
  50847. height: math.unit(5 + 8/12, "feet"),
  50848. weight: math.unit(125, "lb"),
  50849. name: "Nude (Front)",
  50850. image: {
  50851. source: "./media/characters/jess/nude-front.svg",
  50852. extra: 1176/1152,
  50853. bottom: 42/1218
  50854. }
  50855. },
  50856. nudeSide: {
  50857. height: math.unit(5 + 8/12, "feet"),
  50858. weight: math.unit(125, "lb"),
  50859. name: "Nude (Side)",
  50860. image: {
  50861. source: "./media/characters/jess/nude-side.svg",
  50862. extra: 1204/1190,
  50863. bottom: 6/1210
  50864. }
  50865. },
  50866. organsFront: {
  50867. height: math.unit(2.83799342105, "feet"),
  50868. name: "Organs (Front)",
  50869. image: {
  50870. source: "./media/characters/jess/organs-front.svg"
  50871. }
  50872. },
  50873. organsSide: {
  50874. height: math.unit(2.64225290474, "feet"),
  50875. name: "Organs (Side)",
  50876. image: {
  50877. source: "./media/characters/jess/organs-side.svg"
  50878. }
  50879. },
  50880. digestiveTractFront: {
  50881. height: math.unit(2.8106580871, "feet"),
  50882. name: "Digestive Tract (Front)",
  50883. image: {
  50884. source: "./media/characters/jess/digestive-tract-front.svg"
  50885. }
  50886. },
  50887. digestiveTractSide: {
  50888. height: math.unit(2.54365045014, "feet"),
  50889. name: "Digestive Tract (Side)",
  50890. image: {
  50891. source: "./media/characters/jess/digestive-tract-side.svg"
  50892. }
  50893. },
  50894. respiratorySystemFront: {
  50895. height: math.unit(1.11196233456, "feet"),
  50896. name: "Respiratory System (Front)",
  50897. image: {
  50898. source: "./media/characters/jess/respiratory-system-front.svg"
  50899. }
  50900. },
  50901. respiratorySystemSide: {
  50902. height: math.unit(0.89327966297, "feet"),
  50903. name: "Respiratory System (Side)",
  50904. image: {
  50905. source: "./media/characters/jess/respiratory-system-side.svg"
  50906. }
  50907. },
  50908. urinaryTractFront: {
  50909. height: math.unit(1.16126356186, "feet"),
  50910. name: "Urinary Tract (Front)",
  50911. image: {
  50912. source: "./media/characters/jess/urinary-tract-front.svg"
  50913. }
  50914. },
  50915. urinaryTractSide: {
  50916. height: math.unit(1.20910039627, "feet"),
  50917. name: "Urinary Tract (Side)",
  50918. image: {
  50919. source: "./media/characters/jess/urinary-tract-side.svg"
  50920. }
  50921. },
  50922. reproductiveOrgansFront: {
  50923. height: math.unit(0.48422591566, "feet"),
  50924. name: "Reproductive Organs (Front)",
  50925. image: {
  50926. source: "./media/characters/jess/reproductive-organs-front.svg"
  50927. }
  50928. },
  50929. reproductiveOrgansSide: {
  50930. height: math.unit(0.61553314481, "feet"),
  50931. name: "Reproductive Organs (Side)",
  50932. image: {
  50933. source: "./media/characters/jess/reproductive-organs-side.svg"
  50934. }
  50935. },
  50936. breastsFront: {
  50937. height: math.unit(0.47690395121, "feet"),
  50938. name: "Breasts (Front)",
  50939. image: {
  50940. source: "./media/characters/jess/breasts-front.svg"
  50941. }
  50942. },
  50943. breastsSide: {
  50944. height: math.unit(0.30556998307, "feet"),
  50945. name: "Breasts (Side)",
  50946. image: {
  50947. source: "./media/characters/jess/breasts-side.svg"
  50948. }
  50949. },
  50950. heartFront: {
  50951. height: math.unit(0.53011022622, "feet"),
  50952. name: "Heart (Front)",
  50953. image: {
  50954. source: "./media/characters/jess/heart-front.svg"
  50955. }
  50956. },
  50957. heartSide: {
  50958. height: math.unit(0.51790695213, "feet"),
  50959. name: "Heart (Side)",
  50960. image: {
  50961. source: "./media/characters/jess/heart-side.svg"
  50962. }
  50963. },
  50964. earsAndNoseFront: {
  50965. height: math.unit(0.29385483995, "feet"),
  50966. name: "Ears and Nose (Front)",
  50967. image: {
  50968. source: "./media/characters/jess/ears-and-nose-front.svg"
  50969. }
  50970. },
  50971. earsAndNoseSide: {
  50972. height: math.unit(0.18109658741, "feet"),
  50973. name: "Ears and Nose (Side)",
  50974. image: {
  50975. source: "./media/characters/jess/ears-and-nose-side.svg"
  50976. }
  50977. },
  50978. },
  50979. [
  50980. {
  50981. name: "Normal",
  50982. height: math.unit(5 + 8/12, "feet"),
  50983. default: true
  50984. },
  50985. ]
  50986. ))
  50987. characterMakers.push(() => makeCharacter(
  50988. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50989. {
  50990. front: {
  50991. height: math.unit(6, "feet"),
  50992. weight: math.unit(6.64467e-7, "grams"),
  50993. name: "Front",
  50994. image: {
  50995. source: "./media/characters/wimpering/front.svg",
  50996. extra: 597/587,
  50997. bottom: 34/631
  50998. }
  50999. },
  51000. },
  51001. [
  51002. {
  51003. name: "Micro",
  51004. height: math.unit(0.4, "mm"),
  51005. default: true
  51006. },
  51007. ]
  51008. ))
  51009. characterMakers.push(() => makeCharacter(
  51010. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51011. {
  51012. front: {
  51013. height: math.unit(5 + 2/12, "feet"),
  51014. weight: math.unit(110, "lb"),
  51015. name: "Front",
  51016. image: {
  51017. source: "./media/characters/keltre/front.svg",
  51018. extra: 1099/1057,
  51019. bottom: 22/1121
  51020. }
  51021. },
  51022. back: {
  51023. height: math.unit(5 + 2/12, "feet"),
  51024. weight: math.unit(110, "lb"),
  51025. name: "Back",
  51026. image: {
  51027. source: "./media/characters/keltre/back.svg",
  51028. extra: 1095/1053,
  51029. bottom: 17/1112
  51030. }
  51031. },
  51032. dressed: {
  51033. height: math.unit(5 + 2/12, "feet"),
  51034. weight: math.unit(110, "lb"),
  51035. name: "Dressed",
  51036. image: {
  51037. source: "./media/characters/keltre/dressed.svg",
  51038. extra: 1099/1057,
  51039. bottom: 22/1121
  51040. }
  51041. },
  51042. winter: {
  51043. height: math.unit(5 + 2/12, "feet"),
  51044. weight: math.unit(110, "lb"),
  51045. name: "Winter",
  51046. image: {
  51047. source: "./media/characters/keltre/winter.svg",
  51048. extra: 1099/1057,
  51049. bottom: 22/1121
  51050. }
  51051. },
  51052. head: {
  51053. height: math.unit(1.61 * 0.86, "feet"),
  51054. name: "Head",
  51055. image: {
  51056. source: "./media/characters/keltre/head.svg",
  51057. extra: 534/421,
  51058. bottom: 0/534
  51059. }
  51060. },
  51061. hand: {
  51062. height: math.unit(1.3 * 0.86, "feet"),
  51063. name: "Hand",
  51064. image: {
  51065. source: "./media/characters/keltre/hand.svg"
  51066. }
  51067. },
  51068. foot: {
  51069. height: math.unit(1.8 * 0.86, "feet"),
  51070. name: "Foot",
  51071. image: {
  51072. source: "./media/characters/keltre/foot.svg"
  51073. }
  51074. },
  51075. },
  51076. [
  51077. {
  51078. name: "Fine",
  51079. height: math.unit(1, "inch")
  51080. },
  51081. {
  51082. name: "Dimnutive",
  51083. height: math.unit(4, "inches")
  51084. },
  51085. {
  51086. name: "Tiny",
  51087. height: math.unit(1, "foot")
  51088. },
  51089. {
  51090. name: "Small",
  51091. height: math.unit(3, "feet")
  51092. },
  51093. {
  51094. name: "Normal",
  51095. height: math.unit(5 + 2/12, "feet"),
  51096. default: true
  51097. },
  51098. ]
  51099. ))
  51100. characterMakers.push(() => makeCharacter(
  51101. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51102. {
  51103. front: {
  51104. height: math.unit(6 + 2/12, "feet"),
  51105. name: "Front",
  51106. image: {
  51107. source: "./media/characters/nox/front.svg",
  51108. extra: 1917/1830,
  51109. bottom: 74/1991
  51110. }
  51111. },
  51112. back: {
  51113. height: math.unit(6 + 2/12, "feet"),
  51114. name: "Back",
  51115. image: {
  51116. source: "./media/characters/nox/back.svg",
  51117. extra: 1896/1815,
  51118. bottom: 21/1917
  51119. }
  51120. },
  51121. head: {
  51122. height: math.unit(1.1, "feet"),
  51123. name: "Head",
  51124. image: {
  51125. source: "./media/characters/nox/head.svg",
  51126. extra: 874/704,
  51127. bottom: 0/874
  51128. }
  51129. },
  51130. tattoo: {
  51131. height: math.unit(0.729, "feet"),
  51132. name: "Tattoo",
  51133. image: {
  51134. source: "./media/characters/nox/tattoo.svg"
  51135. }
  51136. },
  51137. },
  51138. [
  51139. {
  51140. name: "Normal",
  51141. height: math.unit(6 + 2/12, "feet")
  51142. },
  51143. {
  51144. name: "Gigamacro",
  51145. height: math.unit(2, "earths"),
  51146. default: true
  51147. },
  51148. {
  51149. name: "Cosmic",
  51150. height: math.unit(867, "yottameters")
  51151. },
  51152. ]
  51153. ))
  51154. characterMakers.push(() => makeCharacter(
  51155. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51156. {
  51157. front: {
  51158. height: math.unit(6, "feet"),
  51159. weight: math.unit(150, "lb"),
  51160. name: "Front",
  51161. image: {
  51162. source: "./media/characters/caspian/front.svg",
  51163. extra: 1443/1359,
  51164. bottom: 0/1443
  51165. }
  51166. },
  51167. back: {
  51168. height: math.unit(6, "feet"),
  51169. weight: math.unit(150, "lb"),
  51170. name: "Back",
  51171. image: {
  51172. source: "./media/characters/caspian/back.svg",
  51173. extra: 1379/1309,
  51174. bottom: 0/1379
  51175. }
  51176. },
  51177. head: {
  51178. height: math.unit(0.9, "feet"),
  51179. name: "Head",
  51180. image: {
  51181. source: "./media/characters/caspian/head.svg",
  51182. extra: 692/492,
  51183. bottom: 0/692
  51184. }
  51185. },
  51186. headAlt: {
  51187. height: math.unit(0.95, "feet"),
  51188. name: "Head (Alt)",
  51189. image: {
  51190. source: "./media/characters/caspian/head-alt.svg",
  51191. extra: 668/508,
  51192. bottom: 0/668
  51193. }
  51194. },
  51195. hand: {
  51196. height: math.unit(0.8, "feet"),
  51197. name: "Hand",
  51198. image: {
  51199. source: "./media/characters/caspian/hand.svg"
  51200. }
  51201. },
  51202. paw: {
  51203. height: math.unit(0.95, "feet"),
  51204. name: "Paw",
  51205. image: {
  51206. source: "./media/characters/caspian/paw.svg"
  51207. }
  51208. },
  51209. },
  51210. [
  51211. {
  51212. name: "Normal",
  51213. height: math.unit(162, "feet"),
  51214. default: true
  51215. },
  51216. ]
  51217. ))
  51218. characterMakers.push(() => makeCharacter(
  51219. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51220. {
  51221. front: {
  51222. height: math.unit(6, "feet"),
  51223. name: "Front",
  51224. image: {
  51225. source: "./media/characters/myra-aisling/front.svg",
  51226. extra: 1268/1166,
  51227. bottom: 73/1341
  51228. }
  51229. },
  51230. back: {
  51231. height: math.unit(6, "feet"),
  51232. name: "Back",
  51233. image: {
  51234. source: "./media/characters/myra-aisling/back.svg",
  51235. extra: 1249/1149,
  51236. bottom: 79/1328
  51237. }
  51238. },
  51239. dressed: {
  51240. height: math.unit(6, "feet"),
  51241. name: "Dressed",
  51242. image: {
  51243. source: "./media/characters/myra-aisling/dressed.svg",
  51244. extra: 1290/1189,
  51245. bottom: 47/1337
  51246. }
  51247. },
  51248. hand: {
  51249. height: math.unit(1.1, "feet"),
  51250. name: "Hand",
  51251. image: {
  51252. source: "./media/characters/myra-aisling/hand.svg"
  51253. }
  51254. },
  51255. paw: {
  51256. height: math.unit(1.23, "feet"),
  51257. name: "Paw",
  51258. image: {
  51259. source: "./media/characters/myra-aisling/paw.svg"
  51260. }
  51261. },
  51262. },
  51263. [
  51264. {
  51265. name: "Normal",
  51266. height: math.unit(160, "feet"),
  51267. default: true
  51268. },
  51269. ]
  51270. ))
  51271. characterMakers.push(() => makeCharacter(
  51272. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51273. {
  51274. front: {
  51275. height: math.unit(6, "feet"),
  51276. name: "Front",
  51277. image: {
  51278. source: "./media/characters/tenley-sidero/front.svg",
  51279. extra: 1365/1276,
  51280. bottom: 47/1412
  51281. }
  51282. },
  51283. back: {
  51284. height: math.unit(6, "feet"),
  51285. name: "Back",
  51286. image: {
  51287. source: "./media/characters/tenley-sidero/back.svg",
  51288. extra: 1383/1283,
  51289. bottom: 35/1418
  51290. }
  51291. },
  51292. dressed: {
  51293. height: math.unit(6, "feet"),
  51294. name: "Dressed",
  51295. image: {
  51296. source: "./media/characters/tenley-sidero/dressed.svg",
  51297. extra: 1364/1275,
  51298. bottom: 42/1406
  51299. }
  51300. },
  51301. head: {
  51302. height: math.unit(1.47, "feet"),
  51303. name: "Head",
  51304. image: {
  51305. source: "./media/characters/tenley-sidero/head.svg",
  51306. extra: 610/490,
  51307. bottom: 0/610
  51308. }
  51309. },
  51310. },
  51311. [
  51312. {
  51313. name: "Normal",
  51314. height: math.unit(154, "feet"),
  51315. default: true
  51316. },
  51317. ]
  51318. ))
  51319. characterMakers.push(() => makeCharacter(
  51320. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51321. {
  51322. front: {
  51323. height: math.unit(5, "inches"),
  51324. name: "Front",
  51325. image: {
  51326. source: "./media/characters/mallory/front.svg",
  51327. extra: 1919/1678,
  51328. bottom: 29/1948
  51329. }
  51330. },
  51331. hand: {
  51332. height: math.unit(0.73, "inches"),
  51333. name: "Hand",
  51334. image: {
  51335. source: "./media/characters/mallory/hand.svg"
  51336. }
  51337. },
  51338. paw: {
  51339. height: math.unit(0.68, "inches"),
  51340. name: "Paw",
  51341. image: {
  51342. source: "./media/characters/mallory/paw.svg"
  51343. }
  51344. },
  51345. },
  51346. [
  51347. {
  51348. name: "Small",
  51349. height: math.unit(5, "inches"),
  51350. default: true
  51351. },
  51352. ]
  51353. ))
  51354. characterMakers.push(() => makeCharacter(
  51355. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51356. {
  51357. naked: {
  51358. height: math.unit(6, "feet"),
  51359. name: "Naked",
  51360. image: {
  51361. source: "./media/characters/mab/naked.svg",
  51362. extra: 1855/1757,
  51363. bottom: 208/2063
  51364. }
  51365. },
  51366. outside: {
  51367. height: math.unit(6, "feet"),
  51368. name: "Outside",
  51369. image: {
  51370. source: "./media/characters/mab/outside.svg",
  51371. extra: 1855/1757,
  51372. bottom: 208/2063
  51373. }
  51374. },
  51375. party: {
  51376. height: math.unit(6, "feet"),
  51377. name: "Party",
  51378. image: {
  51379. source: "./media/characters/mab/party.svg",
  51380. extra: 1855/1757,
  51381. bottom: 208/2063
  51382. }
  51383. },
  51384. },
  51385. [
  51386. {
  51387. name: "Normal",
  51388. height: math.unit(165, "feet"),
  51389. default: true
  51390. },
  51391. ]
  51392. ))
  51393. characterMakers.push(() => makeCharacter(
  51394. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51395. {
  51396. feral: {
  51397. height: math.unit(12, "feet"),
  51398. weight: math.unit(20000, "lb"),
  51399. name: "Side",
  51400. image: {
  51401. source: "./media/characters/winter/feral.svg",
  51402. extra: 1286/943,
  51403. bottom: 112/1398
  51404. },
  51405. form: "feral",
  51406. default: true
  51407. },
  51408. feralNsfw: {
  51409. height: math.unit(12, "feet"),
  51410. weight: math.unit(20000, "lb"),
  51411. name: "Side (NSFW)",
  51412. image: {
  51413. source: "./media/characters/winter/feral-nsfw.svg",
  51414. extra: 1286/943,
  51415. bottom: 112/1398
  51416. },
  51417. form: "feral"
  51418. },
  51419. dick: {
  51420. height: math.unit(3.79, "feet"),
  51421. name: "Dick",
  51422. image: {
  51423. source: "./media/characters/winter/dick.svg"
  51424. },
  51425. form: "feral"
  51426. },
  51427. anthro: {
  51428. height: math.unit(12, "feet"),
  51429. weight: math.unit(10, "tons"),
  51430. name: "Anthro",
  51431. image: {
  51432. source: "./media/characters/winter/anthro.svg",
  51433. extra: 1701/1553,
  51434. bottom: 64/1765
  51435. },
  51436. form: "anthro",
  51437. default: true
  51438. },
  51439. },
  51440. [
  51441. {
  51442. name: "Big",
  51443. height: math.unit(12, "feet"),
  51444. default: true,
  51445. form: "feral"
  51446. },
  51447. {
  51448. name: "Big",
  51449. height: math.unit(12, "feet"),
  51450. default: true,
  51451. form: "anthro"
  51452. },
  51453. ],
  51454. {
  51455. "feral": {
  51456. name: "Feral",
  51457. default: true
  51458. },
  51459. "anthro": {
  51460. name: "Anthro"
  51461. }
  51462. }
  51463. ))
  51464. characterMakers.push(() => makeCharacter(
  51465. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51466. {
  51467. front: {
  51468. height: math.unit(4.1, "inches"),
  51469. name: "Front",
  51470. image: {
  51471. source: "./media/characters/alto/front.svg",
  51472. extra: 736/627,
  51473. bottom: 90/826
  51474. }
  51475. },
  51476. },
  51477. [
  51478. {
  51479. name: "Normal",
  51480. height: math.unit(4.1, "inches"),
  51481. default: true
  51482. },
  51483. ]
  51484. ))
  51485. characterMakers.push(() => makeCharacter(
  51486. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51487. {
  51488. sitting: {
  51489. height: math.unit(3, "feet"),
  51490. name: "Sitting",
  51491. image: {
  51492. source: "./media/characters/ratstrid-v/sitting.svg",
  51493. extra: 355/310,
  51494. bottom: 136/491
  51495. }
  51496. },
  51497. },
  51498. [
  51499. {
  51500. name: "Normal",
  51501. height: math.unit(3, "feet"),
  51502. default: true
  51503. },
  51504. ]
  51505. ))
  51506. characterMakers.push(() => makeCharacter(
  51507. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51508. {
  51509. back: {
  51510. height: math.unit(6, "feet"),
  51511. weight: math.unit(450, "lb"),
  51512. name: "Back",
  51513. image: {
  51514. source: "./media/characters/siz/back.svg",
  51515. extra: 1449/1274,
  51516. bottom: 13/1462
  51517. }
  51518. },
  51519. },
  51520. [
  51521. {
  51522. name: "Smallest",
  51523. height: math.unit(18 + 3/12, "feet")
  51524. },
  51525. {
  51526. name: "Modest",
  51527. height: math.unit(56 + 8/12, "feet"),
  51528. default: true
  51529. },
  51530. {
  51531. name: "Largest",
  51532. height: math.unit(3590, "feet")
  51533. },
  51534. ]
  51535. ))
  51536. characterMakers.push(() => makeCharacter(
  51537. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51538. {
  51539. front: {
  51540. height: math.unit(5 + 9/12, "feet"),
  51541. weight: math.unit(150, "lb"),
  51542. name: "Front",
  51543. image: {
  51544. source: "./media/characters/ven/front.svg",
  51545. extra: 1372/1320,
  51546. bottom: 73/1445
  51547. }
  51548. },
  51549. side: {
  51550. height: math.unit(5 + 9/12, "feet"),
  51551. weight: math.unit(1150, "lb"),
  51552. name: "Side",
  51553. image: {
  51554. source: "./media/characters/ven/side.svg",
  51555. extra: 1119/1070,
  51556. bottom: 42/1161
  51557. },
  51558. default: true
  51559. },
  51560. },
  51561. [
  51562. {
  51563. name: "Normal",
  51564. height: math.unit(5 + 9/12, "feet"),
  51565. default: true
  51566. },
  51567. ]
  51568. ))
  51569. characterMakers.push(() => makeCharacter(
  51570. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51571. {
  51572. front: {
  51573. height: math.unit(12, "feet"),
  51574. weight: math.unit(1000, "kg"),
  51575. name: "Front",
  51576. image: {
  51577. source: "./media/characters/maple/front.svg",
  51578. extra: 1193/1081,
  51579. bottom: 22/1215
  51580. }
  51581. },
  51582. },
  51583. [
  51584. {
  51585. name: "Compressed",
  51586. height: math.unit(7, "feet")
  51587. },
  51588. {
  51589. name: "Normal",
  51590. height: math.unit(12, "feet"),
  51591. default: true
  51592. },
  51593. ]
  51594. ))
  51595. characterMakers.push(() => makeCharacter(
  51596. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51597. {
  51598. front: {
  51599. height: math.unit(9, "feet"),
  51600. weight: math.unit(1500, "lb"),
  51601. name: "Front",
  51602. image: {
  51603. source: "./media/characters/nora/front.svg",
  51604. extra: 1348/1286,
  51605. bottom: 218/1566
  51606. }
  51607. },
  51608. erect: {
  51609. height: math.unit(9, "feet"),
  51610. weight: math.unit(11500, "lb"),
  51611. name: "Erect",
  51612. image: {
  51613. source: "./media/characters/nora/erect.svg",
  51614. extra: 1488/1433,
  51615. bottom: 133/1621
  51616. }
  51617. },
  51618. },
  51619. [
  51620. {
  51621. name: "Normal",
  51622. height: math.unit(9, "feet"),
  51623. default: true
  51624. },
  51625. ]
  51626. ))
  51627. characterMakers.push(() => makeCharacter(
  51628. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51629. {
  51630. front: {
  51631. height: math.unit(25, "feet"),
  51632. weight: math.unit(27500, "lb"),
  51633. name: "Front",
  51634. image: {
  51635. source: "./media/characters/north-caudin/front.svg",
  51636. extra: 1184/1082,
  51637. bottom: 23/1207
  51638. }
  51639. },
  51640. },
  51641. [
  51642. {
  51643. name: "Compressed",
  51644. height: math.unit(10, "feet")
  51645. },
  51646. {
  51647. name: "Normal",
  51648. height: math.unit(25, "feet"),
  51649. default: true
  51650. },
  51651. ]
  51652. ))
  51653. characterMakers.push(() => makeCharacter(
  51654. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51655. {
  51656. front: {
  51657. height: math.unit(9, "feet"),
  51658. weight: math.unit(1250, "lb"),
  51659. name: "Front",
  51660. image: {
  51661. source: "./media/characters/merrian/front.svg",
  51662. extra: 2393/2304,
  51663. bottom: 40/2433
  51664. }
  51665. },
  51666. },
  51667. [
  51668. {
  51669. name: "Normal",
  51670. height: math.unit(9, "feet"),
  51671. default: true
  51672. },
  51673. ]
  51674. ))
  51675. characterMakers.push(() => makeCharacter(
  51676. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51677. {
  51678. front: {
  51679. height: math.unit(9, "feet"),
  51680. weight: math.unit(1000, "lb"),
  51681. name: "Front",
  51682. image: {
  51683. source: "./media/characters/hazel/front.svg",
  51684. extra: 2351/2298,
  51685. bottom: 38/2389
  51686. }
  51687. },
  51688. },
  51689. [
  51690. {
  51691. name: "Normal",
  51692. height: math.unit(9, "feet"),
  51693. default: true
  51694. },
  51695. ]
  51696. ))
  51697. characterMakers.push(() => makeCharacter(
  51698. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51699. {
  51700. front: {
  51701. height: math.unit(13, "feet"),
  51702. weight: math.unit(3200, "lb"),
  51703. name: "Front",
  51704. image: {
  51705. source: "./media/characters/emma/front.svg",
  51706. extra: 2263/2029,
  51707. bottom: 68/2331
  51708. }
  51709. },
  51710. },
  51711. [
  51712. {
  51713. name: "Normal",
  51714. height: math.unit(13, "feet"),
  51715. default: true
  51716. },
  51717. ]
  51718. ))
  51719. characterMakers.push(() => makeCharacter(
  51720. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51721. {
  51722. front: {
  51723. height: math.unit(11 + 9/12, "feet"),
  51724. weight: math.unit(2500, "lb"),
  51725. name: "Front",
  51726. image: {
  51727. source: "./media/characters/ilumina/front.svg",
  51728. extra: 2248/2209,
  51729. bottom: 164/2412
  51730. }
  51731. },
  51732. },
  51733. [
  51734. {
  51735. name: "Normal",
  51736. height: math.unit(11 + 9/12, "feet"),
  51737. default: true
  51738. },
  51739. ]
  51740. ))
  51741. characterMakers.push(() => makeCharacter(
  51742. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51743. {
  51744. front: {
  51745. height: math.unit(8 + 10/12, "feet"),
  51746. weight: math.unit(1350, "lb"),
  51747. name: "Front",
  51748. image: {
  51749. source: "./media/characters/moonshine/front.svg",
  51750. extra: 2395/2288,
  51751. bottom: 40/2435
  51752. }
  51753. },
  51754. },
  51755. [
  51756. {
  51757. name: "Normal",
  51758. height: math.unit(8 + 10/12, "feet"),
  51759. default: true
  51760. },
  51761. ]
  51762. ))
  51763. characterMakers.push(() => makeCharacter(
  51764. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51765. {
  51766. front: {
  51767. height: math.unit(14, "feet"),
  51768. weight: math.unit(3400, "lb"),
  51769. name: "Front",
  51770. image: {
  51771. source: "./media/characters/aletia/front.svg",
  51772. extra: 1185/1052,
  51773. bottom: 21/1206
  51774. }
  51775. },
  51776. },
  51777. [
  51778. {
  51779. name: "Compressed",
  51780. height: math.unit(8, "feet")
  51781. },
  51782. {
  51783. name: "Normal",
  51784. height: math.unit(14, "feet"),
  51785. default: true
  51786. },
  51787. ]
  51788. ))
  51789. characterMakers.push(() => makeCharacter(
  51790. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51791. {
  51792. front: {
  51793. height: math.unit(17, "feet"),
  51794. weight: math.unit(6500, "lb"),
  51795. name: "Front",
  51796. image: {
  51797. source: "./media/characters/deidra/front.svg",
  51798. extra: 1201/1081,
  51799. bottom: 16/1217
  51800. }
  51801. },
  51802. },
  51803. [
  51804. {
  51805. name: "Compressed",
  51806. height: math.unit(9 + 6/12, "feet")
  51807. },
  51808. {
  51809. name: "Normal",
  51810. height: math.unit(17, "feet"),
  51811. default: true
  51812. },
  51813. ]
  51814. ))
  51815. characterMakers.push(() => makeCharacter(
  51816. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51817. {
  51818. front: {
  51819. height: math.unit(7 + 4/12, "feet"),
  51820. weight: math.unit(280, "lb"),
  51821. name: "Front",
  51822. image: {
  51823. source: "./media/characters/freki-yrmori/front.svg",
  51824. extra: 1286/1182,
  51825. bottom: 29/1315
  51826. }
  51827. },
  51828. maw: {
  51829. height: math.unit(0.9, "feet"),
  51830. name: "Maw",
  51831. image: {
  51832. source: "./media/characters/freki-yrmori/maw.svg"
  51833. }
  51834. },
  51835. },
  51836. [
  51837. {
  51838. name: "Normal",
  51839. height: math.unit(7 + 4/12, "feet"),
  51840. default: true
  51841. },
  51842. {
  51843. name: "Macro",
  51844. height: math.unit(38.5, "meters")
  51845. },
  51846. ]
  51847. ))
  51848. characterMakers.push(() => makeCharacter(
  51849. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51850. {
  51851. side: {
  51852. height: math.unit(47.2, "meters"),
  51853. weight: math.unit(10000, "tons"),
  51854. name: "Side",
  51855. image: {
  51856. source: "./media/characters/aetherios/side.svg",
  51857. extra: 2363/642,
  51858. bottom: 221/2584
  51859. }
  51860. },
  51861. top: {
  51862. height: math.unit(240, "meters"),
  51863. weight: math.unit(10000, "tons"),
  51864. name: "Top",
  51865. image: {
  51866. source: "./media/characters/aetherios/top.svg"
  51867. }
  51868. },
  51869. bottom: {
  51870. height: math.unit(240, "meters"),
  51871. weight: math.unit(10000, "tons"),
  51872. name: "Bottom",
  51873. image: {
  51874. source: "./media/characters/aetherios/bottom.svg"
  51875. }
  51876. },
  51877. head: {
  51878. height: math.unit(38.6, "meters"),
  51879. name: "Head",
  51880. image: {
  51881. source: "./media/characters/aetherios/head.svg",
  51882. extra: 1335/1112,
  51883. bottom: 0/1335
  51884. }
  51885. },
  51886. front: {
  51887. height: math.unit(29, "meters"),
  51888. name: "Front",
  51889. image: {
  51890. source: "./media/characters/aetherios/front.svg",
  51891. extra: 1266/953,
  51892. bottom: 158/1424
  51893. }
  51894. },
  51895. maw: {
  51896. height: math.unit(16.37, "meters"),
  51897. name: "Maw",
  51898. image: {
  51899. source: "./media/characters/aetherios/maw.svg",
  51900. extra: 748/637,
  51901. bottom: 0/748
  51902. },
  51903. extraAttributes: {
  51904. preyCapacity: {
  51905. name: "Capacity",
  51906. power: 3,
  51907. type: "volume",
  51908. base: math.unit(1000, "people")
  51909. },
  51910. tongueSize: {
  51911. name: "Tongue Size",
  51912. power: 2,
  51913. type: "area",
  51914. base: math.unit(21, "m^2")
  51915. }
  51916. }
  51917. },
  51918. forepaw: {
  51919. height: math.unit(18, "meters"),
  51920. name: "Forepaw",
  51921. image: {
  51922. source: "./media/characters/aetherios/forepaw.svg"
  51923. }
  51924. },
  51925. hindpaw: {
  51926. height: math.unit(23, "meters"),
  51927. name: "Hindpaw",
  51928. image: {
  51929. source: "./media/characters/aetherios/hindpaw.svg"
  51930. }
  51931. },
  51932. genitals: {
  51933. height: math.unit(42, "meters"),
  51934. name: "Genitals",
  51935. image: {
  51936. source: "./media/characters/aetherios/genitals.svg"
  51937. }
  51938. },
  51939. },
  51940. [
  51941. {
  51942. name: "Normal",
  51943. height: math.unit(47.2, "meters"),
  51944. default: true
  51945. },
  51946. {
  51947. name: "Macro",
  51948. height: math.unit(160, "meters")
  51949. },
  51950. {
  51951. name: "Mega",
  51952. height: math.unit(1.87, "km")
  51953. },
  51954. {
  51955. name: "Giga",
  51956. height: math.unit(40000, "km")
  51957. },
  51958. {
  51959. name: "Stellar",
  51960. height: math.unit(158000000, "km")
  51961. },
  51962. {
  51963. name: "Cosmic",
  51964. height: math.unit(9.46e12, "km")
  51965. },
  51966. ]
  51967. ))
  51968. characterMakers.push(() => makeCharacter(
  51969. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51970. {
  51971. front: {
  51972. height: math.unit(5 + 4/12, "feet"),
  51973. weight: math.unit(80, "lb"),
  51974. name: "Front",
  51975. image: {
  51976. source: "./media/characters/mizu-gieeg/front.svg",
  51977. extra: 850/709,
  51978. bottom: 52/902
  51979. }
  51980. },
  51981. back: {
  51982. height: math.unit(5 + 4/12, "feet"),
  51983. weight: math.unit(80, "lb"),
  51984. name: "Back",
  51985. image: {
  51986. source: "./media/characters/mizu-gieeg/back.svg",
  51987. extra: 882/745,
  51988. bottom: 25/907
  51989. }
  51990. },
  51991. },
  51992. [
  51993. {
  51994. name: "Normal",
  51995. height: math.unit(5 + 4/12, "feet"),
  51996. default: true
  51997. },
  51998. ]
  51999. ))
  52000. characterMakers.push(() => makeCharacter(
  52001. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52002. {
  52003. front: {
  52004. height: math.unit(6, "feet"),
  52005. name: "Front",
  52006. image: {
  52007. source: "./media/characters/roselle-st-papier/front.svg",
  52008. extra: 1430/1280,
  52009. bottom: 37/1467
  52010. }
  52011. },
  52012. back: {
  52013. height: math.unit(6, "feet"),
  52014. name: "Back",
  52015. image: {
  52016. source: "./media/characters/roselle-st-papier/back.svg",
  52017. extra: 1491/1296,
  52018. bottom: 23/1514
  52019. }
  52020. },
  52021. ear: {
  52022. height: math.unit(1.26, "feet"),
  52023. name: "Ear",
  52024. image: {
  52025. source: "./media/characters/roselle-st-papier/ear.svg"
  52026. }
  52027. },
  52028. },
  52029. [
  52030. {
  52031. name: "Normal",
  52032. height: math.unit(150, "feet"),
  52033. default: true
  52034. },
  52035. ]
  52036. ))
  52037. characterMakers.push(() => makeCharacter(
  52038. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52039. {
  52040. front: {
  52041. height: math.unit(1, "inches"),
  52042. name: "Front",
  52043. image: {
  52044. source: "./media/characters/valargent/front.svg",
  52045. extra: 1825/1694,
  52046. bottom: 62/1887
  52047. }
  52048. },
  52049. back: {
  52050. height: math.unit(1, "inches"),
  52051. name: "Back",
  52052. image: {
  52053. source: "./media/characters/valargent/back.svg",
  52054. extra: 1775/1682,
  52055. bottom: 88/1863
  52056. }
  52057. },
  52058. },
  52059. [
  52060. {
  52061. name: "Micro",
  52062. height: math.unit(1, "inch"),
  52063. default: true
  52064. },
  52065. ]
  52066. ))
  52067. characterMakers.push(() => makeCharacter(
  52068. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52069. {
  52070. front: {
  52071. height: math.unit(3.4, "meters"),
  52072. name: "Front",
  52073. image: {
  52074. source: "./media/characters/zarina/front.svg",
  52075. extra: 1733/1425,
  52076. bottom: 93/1826
  52077. }
  52078. },
  52079. squatting: {
  52080. height: math.unit(2.14, "meters"),
  52081. name: "Squatting",
  52082. image: {
  52083. source: "./media/characters/zarina/squatting.svg",
  52084. extra: 1073/788,
  52085. bottom: 63/1136
  52086. }
  52087. },
  52088. back: {
  52089. height: math.unit(2.14, "meters"),
  52090. name: "Back",
  52091. image: {
  52092. source: "./media/characters/zarina/back.svg",
  52093. extra: 1128/885,
  52094. bottom: 0/1128
  52095. }
  52096. },
  52097. },
  52098. [
  52099. {
  52100. name: "Normal",
  52101. height: math.unit(3.4, "meters"),
  52102. default: true
  52103. },
  52104. {
  52105. name: "Big",
  52106. height: math.unit(5, "meters")
  52107. },
  52108. {
  52109. name: "Macro",
  52110. height: math.unit(110, "meters")
  52111. },
  52112. ]
  52113. ))
  52114. characterMakers.push(() => makeCharacter(
  52115. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52116. {
  52117. front: {
  52118. height: math.unit(7, "feet"),
  52119. name: "Front",
  52120. image: {
  52121. source: "./media/characters/ventus-astro-fox/front.svg",
  52122. extra: 1792/1623,
  52123. bottom: 28/1820
  52124. }
  52125. },
  52126. back: {
  52127. height: math.unit(7, "feet"),
  52128. name: "Back",
  52129. image: {
  52130. source: "./media/characters/ventus-astro-fox/back.svg",
  52131. extra: 1789/1620,
  52132. bottom: 31/1820
  52133. }
  52134. },
  52135. outfit: {
  52136. height: math.unit(7, "feet"),
  52137. name: "Outfit",
  52138. image: {
  52139. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52140. extra: 1054/925,
  52141. bottom: 15/1069
  52142. }
  52143. },
  52144. head: {
  52145. height: math.unit(1.12, "feet"),
  52146. name: "Head",
  52147. image: {
  52148. source: "./media/characters/ventus-astro-fox/head.svg",
  52149. extra: 866/504,
  52150. bottom: 0/866
  52151. }
  52152. },
  52153. hand: {
  52154. height: math.unit(1, "feet"),
  52155. name: "Hand",
  52156. image: {
  52157. source: "./media/characters/ventus-astro-fox/hand.svg"
  52158. }
  52159. },
  52160. paw: {
  52161. height: math.unit(1.5, "feet"),
  52162. name: "Paw",
  52163. image: {
  52164. source: "./media/characters/ventus-astro-fox/paw.svg"
  52165. }
  52166. },
  52167. },
  52168. [
  52169. {
  52170. name: "Normal",
  52171. height: math.unit(7, "feet"),
  52172. default: true
  52173. },
  52174. {
  52175. name: "Macro",
  52176. height: math.unit(200, "feet")
  52177. },
  52178. {
  52179. name: "Cosmic",
  52180. height: math.unit(3, "universes")
  52181. },
  52182. ]
  52183. ))
  52184. characterMakers.push(() => makeCharacter(
  52185. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52186. {
  52187. front: {
  52188. height: math.unit(3, "meters"),
  52189. weight: math.unit(7000, "lb"),
  52190. name: "Front",
  52191. image: {
  52192. source: "./media/characters/core-t/front.svg",
  52193. extra: 5729/4941,
  52194. bottom: 1129/6858
  52195. }
  52196. },
  52197. },
  52198. [
  52199. {
  52200. name: "Big",
  52201. height: math.unit(3, "meters"),
  52202. default: true
  52203. },
  52204. ]
  52205. ))
  52206. characterMakers.push(() => makeCharacter(
  52207. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52208. {
  52209. normal: {
  52210. height: math.unit(6 + 6/12, "feet"),
  52211. weight: math.unit(275, "lb"),
  52212. name: "Front",
  52213. image: {
  52214. source: "./media/characters/cadbunny/normal.svg",
  52215. extra: 1129/947,
  52216. bottom: 93/1222
  52217. },
  52218. default: true,
  52219. form: "normal"
  52220. },
  52221. gigantamax: {
  52222. height: math.unit(26, "feet"),
  52223. weight: math.unit(16000, "lb"),
  52224. name: "Front",
  52225. image: {
  52226. source: "./media/characters/cadbunny/gigantamax.svg",
  52227. extra: 1133/944,
  52228. bottom: 90/1223
  52229. },
  52230. default: true,
  52231. form: "gigantamax"
  52232. },
  52233. },
  52234. [
  52235. {
  52236. name: "Normal",
  52237. height: math.unit(6 + 6/12, "feet"),
  52238. default: true,
  52239. form: "normal"
  52240. },
  52241. {
  52242. name: "Small",
  52243. height: math.unit(26, "feet"),
  52244. default: true,
  52245. form: "gigantamax"
  52246. },
  52247. {
  52248. name: "Large",
  52249. height: math.unit(78, "feet"),
  52250. form: "gigantamax"
  52251. },
  52252. ],
  52253. {
  52254. "normal": {
  52255. name: "Normal",
  52256. default: true
  52257. },
  52258. "gigantamax": {
  52259. name: "Gigantamax"
  52260. }
  52261. }
  52262. ))
  52263. characterMakers.push(() => makeCharacter(
  52264. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52265. {
  52266. anthroFront: {
  52267. height: math.unit(8, "feet"),
  52268. weight: math.unit(300, "lb"),
  52269. name: "Front",
  52270. image: {
  52271. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52272. extra: 1272/1176,
  52273. bottom: 53/1325
  52274. },
  52275. form: "anthro",
  52276. default: true
  52277. },
  52278. feralSide: {
  52279. height: math.unit(4, "feet"),
  52280. weight: math.unit(250, "lb"),
  52281. name: "Side",
  52282. image: {
  52283. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52284. extra: 731/621,
  52285. bottom: 0/731
  52286. },
  52287. form: "feral",
  52288. default: true
  52289. },
  52290. },
  52291. [
  52292. {
  52293. name: "Regular",
  52294. height: math.unit(8, "feet"),
  52295. form: "anthro"
  52296. },
  52297. {
  52298. name: "Macro",
  52299. height: math.unit(250, "feet"),
  52300. form: "anthro",
  52301. default: true
  52302. },
  52303. {
  52304. name: "Regular",
  52305. height: math.unit(4, "feet"),
  52306. form: "feral"
  52307. },
  52308. {
  52309. name: "Macro",
  52310. height: math.unit(125, "feet"),
  52311. form: "feral",
  52312. default: true
  52313. },
  52314. ],
  52315. {
  52316. "anthro": {
  52317. name: "Anthro",
  52318. default: true
  52319. },
  52320. "feral": {
  52321. name: "Feral",
  52322. },
  52323. }
  52324. ))
  52325. characterMakers.push(() => makeCharacter(
  52326. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52327. {
  52328. front: {
  52329. height: math.unit(11 + 10/12, "feet"),
  52330. weight: math.unit(1587, "kg"),
  52331. name: "Front",
  52332. image: {
  52333. source: "./media/characters/maple-javira-dragon/front.svg",
  52334. extra: 1136/744,
  52335. bottom: 73/1209
  52336. }
  52337. },
  52338. side: {
  52339. height: math.unit(11 + 10/12, "feet"),
  52340. weight: math.unit(1587, "kg"),
  52341. name: "Side",
  52342. image: {
  52343. source: "./media/characters/maple-javira-dragon/side.svg",
  52344. extra: 712/505,
  52345. bottom: 17/729
  52346. }
  52347. },
  52348. head: {
  52349. height: math.unit(8.05, "feet"),
  52350. name: "Head",
  52351. image: {
  52352. source: "./media/characters/maple-javira-dragon/head.svg",
  52353. extra: 1420/1344,
  52354. bottom: 0/1420
  52355. }
  52356. },
  52357. },
  52358. [
  52359. {
  52360. name: "Normal",
  52361. height: math.unit(11 + 10/12, "feet"),
  52362. default: true
  52363. },
  52364. ]
  52365. ))
  52366. characterMakers.push(() => makeCharacter(
  52367. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52368. {
  52369. front: {
  52370. height: math.unit(117, "cm"),
  52371. weight: math.unit(50, "kg"),
  52372. name: "Front",
  52373. image: {
  52374. source: "./media/characters/sonia-wyverntail/front.svg",
  52375. extra: 708/592,
  52376. bottom: 25/733
  52377. }
  52378. },
  52379. },
  52380. [
  52381. {
  52382. name: "Normal",
  52383. height: math.unit(117, "cm"),
  52384. default: true
  52385. },
  52386. ]
  52387. ))
  52388. characterMakers.push(() => makeCharacter(
  52389. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52390. {
  52391. front: {
  52392. height: math.unit(6 + 5/12, "feet"),
  52393. name: "Front",
  52394. image: {
  52395. source: "./media/characters/micah/front.svg",
  52396. extra: 1758/1546,
  52397. bottom: 214/1972
  52398. }
  52399. },
  52400. },
  52401. [
  52402. {
  52403. name: "Normal",
  52404. height: math.unit(6 + 5/12, "feet"),
  52405. default: true
  52406. },
  52407. ]
  52408. ))
  52409. characterMakers.push(() => makeCharacter(
  52410. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52411. {
  52412. front: {
  52413. height: math.unit(1.75, "meters"),
  52414. weight: math.unit(100, "kg"),
  52415. name: "Front",
  52416. image: {
  52417. source: "./media/characters/zarya/front.svg",
  52418. extra: 741/735,
  52419. bottom: 44/785
  52420. },
  52421. extraAttributes: {
  52422. "tailLength": {
  52423. name: "Tail Length",
  52424. power: 1,
  52425. type: "length",
  52426. base: math.unit(180, "cm")
  52427. },
  52428. "pawLength": {
  52429. name: "Paw Length",
  52430. power: 1,
  52431. type: "length",
  52432. base: math.unit(31, "cm")
  52433. },
  52434. }
  52435. },
  52436. side: {
  52437. height: math.unit(1.75, "meters"),
  52438. weight: math.unit(100, "kg"),
  52439. name: "Side",
  52440. image: {
  52441. source: "./media/characters/zarya/side.svg",
  52442. extra: 776/770,
  52443. bottom: 17/793
  52444. },
  52445. extraAttributes: {
  52446. "tailLength": {
  52447. name: "Tail Length",
  52448. power: 1,
  52449. type: "length",
  52450. base: math.unit(180, "cm")
  52451. },
  52452. "pawLength": {
  52453. name: "Paw Length",
  52454. power: 1,
  52455. type: "length",
  52456. base: math.unit(31, "cm")
  52457. },
  52458. }
  52459. },
  52460. back: {
  52461. height: math.unit(1.75, "meters"),
  52462. weight: math.unit(100, "kg"),
  52463. name: "Back",
  52464. image: {
  52465. source: "./media/characters/zarya/back.svg",
  52466. extra: 741/735,
  52467. bottom: 44/785
  52468. },
  52469. extraAttributes: {
  52470. "tailLength": {
  52471. name: "Tail Length",
  52472. power: 1,
  52473. type: "length",
  52474. base: math.unit(180, "cm")
  52475. },
  52476. "pawLength": {
  52477. name: "Paw Length",
  52478. power: 1,
  52479. type: "length",
  52480. base: math.unit(31, "cm")
  52481. },
  52482. }
  52483. },
  52484. frontNoTail: {
  52485. height: math.unit(1.75, "meters"),
  52486. weight: math.unit(100, "kg"),
  52487. name: "Front (No Tail)",
  52488. image: {
  52489. source: "./media/characters/zarya/front-no-tail.svg",
  52490. extra: 741/735,
  52491. bottom: 44/785
  52492. },
  52493. extraAttributes: {
  52494. "tailLength": {
  52495. name: "Tail Length",
  52496. power: 1,
  52497. type: "length",
  52498. base: math.unit(180, "cm")
  52499. },
  52500. "pawLength": {
  52501. name: "Paw Length",
  52502. power: 1,
  52503. type: "length",
  52504. base: math.unit(31, "cm")
  52505. },
  52506. }
  52507. },
  52508. dressed: {
  52509. height: math.unit(1.75, "meters"),
  52510. weight: math.unit(100, "kg"),
  52511. name: "Dressed",
  52512. image: {
  52513. source: "./media/characters/zarya/dressed.svg",
  52514. extra: 683/672,
  52515. bottom: 79/762
  52516. },
  52517. extraAttributes: {
  52518. "tailLength": {
  52519. name: "Tail Length",
  52520. power: 1,
  52521. type: "length",
  52522. base: math.unit(180, "cm")
  52523. },
  52524. "pawLength": {
  52525. name: "Paw Length",
  52526. power: 1,
  52527. type: "length",
  52528. base: math.unit(31, "cm")
  52529. },
  52530. }
  52531. },
  52532. },
  52533. [
  52534. {
  52535. name: "Micro",
  52536. height: math.unit(5, "cm")
  52537. },
  52538. {
  52539. name: "Normal",
  52540. height: math.unit(1.75, "meters"),
  52541. default: true
  52542. },
  52543. {
  52544. name: "Macro",
  52545. height: math.unit(122, "meters")
  52546. },
  52547. ]
  52548. ))
  52549. characterMakers.push(() => makeCharacter(
  52550. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52551. {
  52552. front: {
  52553. height: math.unit(7.5, "feet"),
  52554. name: "Front",
  52555. image: {
  52556. source: "./media/characters/sven-hatisson/front.svg",
  52557. extra: 917/857,
  52558. bottom: 42/959
  52559. }
  52560. },
  52561. back: {
  52562. height: math.unit(7.5, "feet"),
  52563. name: "Back",
  52564. image: {
  52565. source: "./media/characters/sven-hatisson/back.svg",
  52566. extra: 903/856,
  52567. bottom: 15/918
  52568. }
  52569. },
  52570. },
  52571. [
  52572. {
  52573. name: "Base Height",
  52574. height: math.unit(7.5, "feet")
  52575. },
  52576. {
  52577. name: "Usual Height",
  52578. height: math.unit(13.5, "feet"),
  52579. default: true
  52580. },
  52581. {
  52582. name: "Smaller Macro",
  52583. height: math.unit(85, "feet")
  52584. },
  52585. {
  52586. name: "Moderate Macro",
  52587. height: math.unit(320, "feet")
  52588. },
  52589. {
  52590. name: "Large Macro",
  52591. height: math.unit(1000, "feet")
  52592. },
  52593. {
  52594. name: "Largest Size",
  52595. height: math.unit(2, "miles")
  52596. },
  52597. ]
  52598. ))
  52599. characterMakers.push(() => makeCharacter(
  52600. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52601. {
  52602. side: {
  52603. height: math.unit(1.8, "meters"),
  52604. weight: math.unit(275, "kg"),
  52605. name: "Side",
  52606. image: {
  52607. source: "./media/characters/terra/side.svg",
  52608. extra: 1273/1147,
  52609. bottom: 0/1273
  52610. }
  52611. },
  52612. },
  52613. [
  52614. {
  52615. name: "Normal",
  52616. height: math.unit(16.2, "meters"),
  52617. default: true
  52618. },
  52619. ]
  52620. ))
  52621. characterMakers.push(() => makeCharacter(
  52622. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52623. {
  52624. borzoiFront: {
  52625. height: math.unit(6 + 9/12, "feet"),
  52626. name: "Front",
  52627. image: {
  52628. source: "./media/characters/rae/borzoi-front.svg",
  52629. extra: 1161/1098,
  52630. bottom: 31/1192
  52631. },
  52632. form: "borzoi",
  52633. default: true
  52634. },
  52635. werewolfFront: {
  52636. height: math.unit(8 + 7/12, "feet"),
  52637. name: "Front",
  52638. image: {
  52639. source: "./media/characters/rae/werewolf-front.svg",
  52640. extra: 1411/1334,
  52641. bottom: 127/1538
  52642. },
  52643. form: "werewolf",
  52644. default: true
  52645. },
  52646. },
  52647. [
  52648. {
  52649. name: "Normal",
  52650. height: math.unit(6 + 9/12, "feet"),
  52651. default: true,
  52652. form: "borzoi"
  52653. },
  52654. {
  52655. name: "Normal",
  52656. height: math.unit(8 + 7/12, "feet"),
  52657. default: true,
  52658. form: "werewolf"
  52659. },
  52660. ],
  52661. {
  52662. "borzoi": {
  52663. name: "Borzoi",
  52664. default: true
  52665. },
  52666. "werewolf": {
  52667. name: "Werewolf",
  52668. },
  52669. }
  52670. ))
  52671. characterMakers.push(() => makeCharacter(
  52672. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52673. {
  52674. front: {
  52675. height: math.unit(8 + 7/12, "feet"),
  52676. weight: math.unit(482, "lb"),
  52677. name: "Front",
  52678. image: {
  52679. source: "./media/characters/kit/front.svg",
  52680. extra: 1247/1103,
  52681. bottom: 41/1288
  52682. }
  52683. },
  52684. back: {
  52685. height: math.unit(8 + 7/12, "feet"),
  52686. weight: math.unit(482, "lb"),
  52687. name: "Back",
  52688. image: {
  52689. source: "./media/characters/kit/back.svg",
  52690. extra: 1252/1123,
  52691. bottom: 21/1273
  52692. }
  52693. },
  52694. paw: {
  52695. height: math.unit(1.46, "feet"),
  52696. name: "Paw",
  52697. image: {
  52698. source: "./media/characters/kit/paw.svg"
  52699. }
  52700. },
  52701. },
  52702. [
  52703. {
  52704. name: "Normal",
  52705. height: math.unit(2.61, "meters"),
  52706. default: true
  52707. },
  52708. {
  52709. name: "\"Tall\"",
  52710. height: math.unit(8.21, "meters")
  52711. },
  52712. {
  52713. name: "Tall",
  52714. height: math.unit(19.6, "meters")
  52715. },
  52716. {
  52717. name: "Very Tall",
  52718. height: math.unit(57.91, "meters")
  52719. },
  52720. {
  52721. name: "Semi-Macro",
  52722. height: math.unit(138.64, "meters")
  52723. },
  52724. {
  52725. name: "Macro",
  52726. height: math.unit(831.99, "meters")
  52727. },
  52728. {
  52729. name: "EX-Macro",
  52730. height: math.unit(96451121, "meters")
  52731. },
  52732. {
  52733. name: "S1-Omnipotent",
  52734. height: math.unit(4.42074e+9, "meters")
  52735. },
  52736. {
  52737. name: "S2-Omnipotent",
  52738. height: math.unit(9.42074e+17, "meters")
  52739. },
  52740. {
  52741. name: "Omnipotent",
  52742. height: math.unit(4.23112e+24, "meters")
  52743. },
  52744. {
  52745. name: "Hypergod",
  52746. height: math.unit(5.05176e+27, "meters")
  52747. },
  52748. {
  52749. name: "Hypergod-EX",
  52750. height: math.unit(9.45532e+49, "meters")
  52751. },
  52752. {
  52753. name: "Hypergod-SP",
  52754. height: math.unit(9.45532e+195, "meters")
  52755. },
  52756. ]
  52757. ))
  52758. characterMakers.push(() => makeCharacter(
  52759. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52760. {
  52761. side: {
  52762. height: math.unit(0.6, "meters"),
  52763. weight: math.unit(24, "kg"),
  52764. name: "Side",
  52765. image: {
  52766. source: "./media/characters/celeste/side.svg",
  52767. extra: 810/517,
  52768. bottom: 53/863
  52769. }
  52770. },
  52771. },
  52772. [
  52773. {
  52774. name: "Velociraptor",
  52775. height: math.unit(0.6, "meters"),
  52776. default: true
  52777. },
  52778. {
  52779. name: "Utahraptor",
  52780. height: math.unit(1.8, "meters")
  52781. },
  52782. {
  52783. name: "Gallimimus",
  52784. height: math.unit(4.0, "meters")
  52785. },
  52786. {
  52787. name: "Large",
  52788. height: math.unit(20, "meters")
  52789. },
  52790. {
  52791. name: "Planetary",
  52792. height: math.unit(50, "megameters")
  52793. },
  52794. {
  52795. name: "Stellar",
  52796. height: math.unit(1.5, "gigameters")
  52797. },
  52798. {
  52799. name: "Galactic",
  52800. height: math.unit(100, "exameters")
  52801. },
  52802. ]
  52803. ))
  52804. characterMakers.push(() => makeCharacter(
  52805. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52806. {
  52807. front: {
  52808. height: math.unit(6, "feet"),
  52809. weight: math.unit(210, "lb"),
  52810. name: "Front",
  52811. image: {
  52812. source: "./media/characters/glacia/front.svg",
  52813. extra: 958/901,
  52814. bottom: 45/1003
  52815. }
  52816. },
  52817. },
  52818. [
  52819. {
  52820. name: "Macro",
  52821. height: math.unit(1000, "meters"),
  52822. default: true
  52823. },
  52824. ]
  52825. ))
  52826. characterMakers.push(() => makeCharacter(
  52827. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52828. {
  52829. front: {
  52830. height: math.unit(4, "meters"),
  52831. name: "Front",
  52832. image: {
  52833. source: "./media/characters/giri/front.svg",
  52834. extra: 966/894,
  52835. bottom: 21/987
  52836. }
  52837. },
  52838. },
  52839. [
  52840. {
  52841. name: "Normal",
  52842. height: math.unit(4, "meters"),
  52843. default: true
  52844. },
  52845. ]
  52846. ))
  52847. characterMakers.push(() => makeCharacter(
  52848. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52849. {
  52850. back: {
  52851. height: math.unit(4, "feet"),
  52852. weight: math.unit(37, "lb"),
  52853. name: "Back",
  52854. image: {
  52855. source: "./media/characters/tin/back.svg",
  52856. extra: 845/780,
  52857. bottom: 28/873
  52858. }
  52859. },
  52860. },
  52861. [
  52862. {
  52863. name: "Normal",
  52864. height: math.unit(4, "feet"),
  52865. default: true
  52866. },
  52867. ]
  52868. ))
  52869. characterMakers.push(() => makeCharacter(
  52870. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52871. {
  52872. front: {
  52873. height: math.unit(25, "feet"),
  52874. name: "Front",
  52875. image: {
  52876. source: "./media/characters/cadenza-vivace/front.svg",
  52877. extra: 1842/1578,
  52878. bottom: 30/1872
  52879. }
  52880. },
  52881. },
  52882. [
  52883. {
  52884. name: "Macro",
  52885. height: math.unit(25, "feet"),
  52886. default: true
  52887. },
  52888. ]
  52889. ))
  52890. characterMakers.push(() => makeCharacter(
  52891. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52892. {
  52893. front: {
  52894. height: math.unit(10, "feet"),
  52895. weight: math.unit(625, "kg"),
  52896. name: "Front",
  52897. image: {
  52898. source: "./media/characters/zain/front.svg",
  52899. extra: 1682/1498,
  52900. bottom: 223/1905
  52901. }
  52902. },
  52903. back: {
  52904. height: math.unit(10, "feet"),
  52905. weight: math.unit(625, "kg"),
  52906. name: "Back",
  52907. image: {
  52908. source: "./media/characters/zain/back.svg",
  52909. extra: 1814/1657,
  52910. bottom: 152/1966
  52911. }
  52912. },
  52913. head: {
  52914. height: math.unit(10, "feet"),
  52915. weight: math.unit(625, "kg"),
  52916. name: "Head",
  52917. image: {
  52918. source: "./media/characters/zain/head.svg",
  52919. extra: 1059/762,
  52920. bottom: 0/1059
  52921. }
  52922. },
  52923. },
  52924. [
  52925. {
  52926. name: "Normal",
  52927. height: math.unit(10, "feet"),
  52928. default: true
  52929. },
  52930. ]
  52931. ))
  52932. characterMakers.push(() => makeCharacter(
  52933. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52934. {
  52935. front: {
  52936. height: math.unit(6 + 5/12, "feet"),
  52937. weight: math.unit(750, "lb"),
  52938. name: "Front",
  52939. image: {
  52940. source: "./media/characters/ruchex/front.svg",
  52941. extra: 877/820,
  52942. bottom: 17/894
  52943. },
  52944. extraAttributes: {
  52945. "width": {
  52946. name: "Width",
  52947. power: 1,
  52948. type: "length",
  52949. base: math.unit(4.757, "feet")
  52950. },
  52951. }
  52952. },
  52953. },
  52954. [
  52955. {
  52956. name: "Normal",
  52957. height: math.unit(6 + 5/12, "feet"),
  52958. default: true
  52959. },
  52960. ]
  52961. ))
  52962. characterMakers.push(() => makeCharacter(
  52963. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52964. {
  52965. dressedFront: {
  52966. height: math.unit(191, "cm"),
  52967. weight: math.unit(80, "kg"),
  52968. name: "Front",
  52969. image: {
  52970. source: "./media/characters/buster/dressed-front.svg",
  52971. extra: 1022/973,
  52972. bottom: 69/1091
  52973. }
  52974. },
  52975. dressedBack: {
  52976. height: math.unit(191, "cm"),
  52977. weight: math.unit(80, "kg"),
  52978. name: "Back",
  52979. image: {
  52980. source: "./media/characters/buster/dressed-back.svg",
  52981. extra: 1018/970,
  52982. bottom: 55/1073
  52983. }
  52984. },
  52985. nudeFront: {
  52986. height: math.unit(191, "cm"),
  52987. weight: math.unit(80, "kg"),
  52988. name: "Front (Nude)",
  52989. image: {
  52990. source: "./media/characters/buster/nude-front.svg",
  52991. extra: 1022/973,
  52992. bottom: 69/1091
  52993. }
  52994. },
  52995. nudeBack: {
  52996. height: math.unit(191, "cm"),
  52997. weight: math.unit(80, "kg"),
  52998. name: "Back (Nude)",
  52999. image: {
  53000. source: "./media/characters/buster/nude-back.svg",
  53001. extra: 1018/970,
  53002. bottom: 55/1073
  53003. }
  53004. },
  53005. dick: {
  53006. height: math.unit(2.59, "feet"),
  53007. name: "Dick",
  53008. image: {
  53009. source: "./media/characters/buster/dick.svg"
  53010. }
  53011. },
  53012. ass: {
  53013. height: math.unit(1.2, "feet"),
  53014. name: "Ass",
  53015. image: {
  53016. source: "./media/characters/buster/ass.svg"
  53017. }
  53018. },
  53019. },
  53020. [
  53021. {
  53022. name: "Normal",
  53023. height: math.unit(191, "cm"),
  53024. default: true
  53025. },
  53026. ]
  53027. ))
  53028. characterMakers.push(() => makeCharacter(
  53029. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53030. {
  53031. side: {
  53032. height: math.unit(8.1, "feet"),
  53033. weight: math.unit(3500, "lb"),
  53034. name: "Side",
  53035. image: {
  53036. source: "./media/characters/sonya/side.svg",
  53037. extra: 1730/1317,
  53038. bottom: 86/1816
  53039. }
  53040. },
  53041. },
  53042. [
  53043. {
  53044. name: "Normal",
  53045. height: math.unit(8.1, "feet"),
  53046. default: true
  53047. },
  53048. ]
  53049. ))
  53050. characterMakers.push(() => makeCharacter(
  53051. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53052. {
  53053. front: {
  53054. height: math.unit(6, "feet"),
  53055. weight: math.unit(150, "lb"),
  53056. name: "Front",
  53057. image: {
  53058. source: "./media/characters/cadence-andrysiak/front.svg",
  53059. extra: 1164/1121,
  53060. bottom: 60/1224
  53061. }
  53062. },
  53063. back: {
  53064. height: math.unit(6, "feet"),
  53065. weight: math.unit(150, "lb"),
  53066. name: "Back",
  53067. image: {
  53068. source: "./media/characters/cadence-andrysiak/back.svg",
  53069. extra: 1200/1165,
  53070. bottom: 9/1209
  53071. }
  53072. },
  53073. dressed: {
  53074. height: math.unit(6, "feet"),
  53075. weight: math.unit(150, "lb"),
  53076. name: "Dressed",
  53077. image: {
  53078. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53079. extra: 1164/1121,
  53080. bottom: 60/1224
  53081. }
  53082. },
  53083. },
  53084. [
  53085. {
  53086. name: "Micro",
  53087. height: math.unit(1, "mm")
  53088. },
  53089. {
  53090. name: "Normal",
  53091. height: math.unit(6, "feet"),
  53092. default: true
  53093. },
  53094. ]
  53095. ))
  53096. characterMakers.push(() => makeCharacter(
  53097. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53098. {
  53099. front: {
  53100. height: math.unit(60, "inches"),
  53101. weight: math.unit(16, "lb"),
  53102. preyCapacity: math.unit(80, "liters"),
  53103. name: "Front",
  53104. image: {
  53105. source: "./media/characters/penny-lynx/front.svg",
  53106. extra: 1959/1769,
  53107. bottom: 49/2008
  53108. }
  53109. },
  53110. },
  53111. [
  53112. {
  53113. name: "Nokia",
  53114. height: math.unit(2, "inches")
  53115. },
  53116. {
  53117. name: "Desktop",
  53118. height: math.unit(24, "inches")
  53119. },
  53120. {
  53121. name: "TV",
  53122. height: math.unit(60, "inches")
  53123. },
  53124. {
  53125. name: "Jumbotron",
  53126. height: math.unit(12, "feet")
  53127. },
  53128. {
  53129. name: "Billboard",
  53130. height: math.unit(48, "feet"),
  53131. default: true
  53132. },
  53133. {
  53134. name: "IMAX",
  53135. height: math.unit(96, "feet")
  53136. },
  53137. {
  53138. name: "SINGULARITY",
  53139. height: math.unit(864938, "miles")
  53140. },
  53141. ]
  53142. ))
  53143. characterMakers.push(() => makeCharacter(
  53144. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53145. {
  53146. front: {
  53147. height: math.unit(5 + 4/12, "feet"),
  53148. weight: math.unit(230, "lb"),
  53149. name: "Front",
  53150. image: {
  53151. source: "./media/characters/sukebe/front.svg",
  53152. extra: 2130/2038,
  53153. bottom: 90/2220
  53154. }
  53155. },
  53156. back: {
  53157. height: math.unit(3.48, "feet"),
  53158. weight: math.unit(230, "lb"),
  53159. name: "Back",
  53160. image: {
  53161. source: "./media/characters/sukebe/back.svg",
  53162. extra: 1670/1604,
  53163. bottom: 0/1670
  53164. }
  53165. },
  53166. },
  53167. [
  53168. {
  53169. name: "Normal",
  53170. height: math.unit(5 + 4/12, "feet"),
  53171. default: true
  53172. },
  53173. ]
  53174. ))
  53175. characterMakers.push(() => makeCharacter(
  53176. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53177. {
  53178. front: {
  53179. height: math.unit(6, "feet"),
  53180. name: "Front",
  53181. image: {
  53182. source: "./media/characters/nylla/front.svg",
  53183. extra: 1868/1699,
  53184. bottom: 97/1965
  53185. }
  53186. },
  53187. back: {
  53188. height: math.unit(6, "feet"),
  53189. name: "Back",
  53190. image: {
  53191. source: "./media/characters/nylla/back.svg",
  53192. extra: 1889/1712,
  53193. bottom: 93/1982
  53194. }
  53195. },
  53196. frontNsfw: {
  53197. height: math.unit(6, "feet"),
  53198. name: "Front (NSFW)",
  53199. image: {
  53200. source: "./media/characters/nylla/front-nsfw.svg",
  53201. extra: 1868/1699,
  53202. bottom: 97/1965
  53203. },
  53204. extraAttributes: {
  53205. "dickLength": {
  53206. name: "Dick Length",
  53207. power: 1,
  53208. type: "length",
  53209. base: math.unit(1.4, "feet")
  53210. },
  53211. "cumVolume": {
  53212. name: "Cum Volume",
  53213. power: 3,
  53214. type: "volume",
  53215. base: math.unit(100, "mL")
  53216. },
  53217. }
  53218. },
  53219. backNsfw: {
  53220. height: math.unit(6, "feet"),
  53221. name: "Back (NSFW)",
  53222. image: {
  53223. source: "./media/characters/nylla/back-nsfw.svg",
  53224. extra: 1889/1712,
  53225. bottom: 93/1982
  53226. }
  53227. },
  53228. maw: {
  53229. height: math.unit(2.10, "feet"),
  53230. name: "Maw",
  53231. image: {
  53232. source: "./media/characters/nylla/maw.svg"
  53233. }
  53234. },
  53235. paws: {
  53236. height: math.unit(2.06, "feet"),
  53237. name: "Paws",
  53238. image: {
  53239. source: "./media/characters/nylla/paws.svg"
  53240. }
  53241. },
  53242. muzzle: {
  53243. height: math.unit(0.61, "feet"),
  53244. name: "Muzzle",
  53245. image: {
  53246. source: "./media/characters/nylla/muzzle.svg"
  53247. }
  53248. },
  53249. sheath: {
  53250. height: math.unit(1.305, "feet"),
  53251. name: "Sheath",
  53252. image: {
  53253. source: "./media/characters/nylla/sheath.svg"
  53254. }
  53255. },
  53256. },
  53257. [
  53258. {
  53259. name: "Micro",
  53260. height: math.unit(7.5, "inches")
  53261. },
  53262. {
  53263. name: "Normal",
  53264. height: math.unit(7, "feet"),
  53265. default: true
  53266. },
  53267. {
  53268. name: "Macro",
  53269. height: math.unit(60, "feet")
  53270. },
  53271. {
  53272. name: "Mega",
  53273. height: math.unit(200, "feet")
  53274. },
  53275. ]
  53276. ))
  53277. characterMakers.push(() => makeCharacter(
  53278. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53279. {
  53280. front: {
  53281. height: math.unit(10, "feet"),
  53282. weight: math.unit(2300, "lb"),
  53283. name: "Front",
  53284. image: {
  53285. source: "./media/characters/hunt3r/front.svg",
  53286. extra: 1909/1742,
  53287. bottom: 46/1955
  53288. }
  53289. },
  53290. },
  53291. [
  53292. {
  53293. name: "Normal",
  53294. height: math.unit(10, "feet"),
  53295. default: true
  53296. },
  53297. ]
  53298. ))
  53299. characterMakers.push(() => makeCharacter(
  53300. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53301. {
  53302. dressed: {
  53303. height: math.unit(11, "feet"),
  53304. weight: math.unit(18500, "lb"),
  53305. preyCapacity: math.unit(9, "people"),
  53306. name: "Dressed",
  53307. image: {
  53308. source: "./media/characters/cylphis/dressed.svg",
  53309. extra: 1028/1003,
  53310. bottom: 75/1103
  53311. },
  53312. },
  53313. undressed: {
  53314. height: math.unit(11, "feet"),
  53315. weight: math.unit(18500, "lb"),
  53316. preyCapacity: math.unit(9, "people"),
  53317. name: "Undressed",
  53318. image: {
  53319. source: "./media/characters/cylphis/undressed.svg",
  53320. extra: 1028/1003,
  53321. bottom: 75/1103
  53322. }
  53323. },
  53324. full: {
  53325. height: math.unit(11, "feet"),
  53326. weight: math.unit(18500 + 150*9, "lb"),
  53327. preyCapacity: math.unit(9, "people"),
  53328. name: "Full",
  53329. image: {
  53330. source: "./media/characters/cylphis/full.svg",
  53331. extra: 1028/1003,
  53332. bottom: 75/1103
  53333. }
  53334. },
  53335. },
  53336. [
  53337. {
  53338. name: "Small",
  53339. height: math.unit(8, "feet")
  53340. },
  53341. {
  53342. name: "Normal",
  53343. height: math.unit(11, "feet"),
  53344. default: true
  53345. },
  53346. ]
  53347. ))
  53348. characterMakers.push(() => makeCharacter(
  53349. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53350. {
  53351. front: {
  53352. height: math.unit(2 + 7/12, "feet"),
  53353. name: "Front",
  53354. image: {
  53355. source: "./media/characters/orishan/front.svg",
  53356. extra: 1058/1023,
  53357. bottom: 23/1081
  53358. }
  53359. },
  53360. back: {
  53361. height: math.unit(2 + 7/12, "feet"),
  53362. name: "Back",
  53363. image: {
  53364. source: "./media/characters/orishan/back.svg",
  53365. extra: 1058/1023,
  53366. bottom: 23/1081
  53367. }
  53368. },
  53369. },
  53370. [
  53371. {
  53372. name: "Micro",
  53373. height: math.unit(2, "cm")
  53374. },
  53375. {
  53376. name: "Normal",
  53377. height: math.unit(2 + 7/12, "feet"),
  53378. default: true
  53379. },
  53380. ]
  53381. ))
  53382. characterMakers.push(() => makeCharacter(
  53383. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53384. {
  53385. front: {
  53386. height: math.unit(3, "meters"),
  53387. weight: math.unit(508, "kg"),
  53388. name: "Front",
  53389. image: {
  53390. source: "./media/characters/seranis/front.svg",
  53391. extra: 1478/1454,
  53392. bottom: 41/1519
  53393. }
  53394. },
  53395. },
  53396. [
  53397. {
  53398. name: "Normal",
  53399. height: math.unit(3, "meters"),
  53400. default: true
  53401. },
  53402. {
  53403. name: "Macro",
  53404. height: math.unit(108, "meters")
  53405. },
  53406. {
  53407. name: "Megamacro",
  53408. height: math.unit(1250, "meters")
  53409. },
  53410. ]
  53411. ))
  53412. characterMakers.push(() => makeCharacter(
  53413. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53414. {
  53415. undressed: {
  53416. height: math.unit(5 + 3/12, "feet"),
  53417. name: "Undressed",
  53418. image: {
  53419. source: "./media/characters/ankou/undressed.svg",
  53420. extra: 1301/1213,
  53421. bottom: 87/1388
  53422. }
  53423. },
  53424. dressed: {
  53425. height: math.unit(5 + 3/12, "feet"),
  53426. name: "Dressed",
  53427. image: {
  53428. source: "./media/characters/ankou/dressed.svg",
  53429. extra: 1301/1213,
  53430. bottom: 87/1388
  53431. }
  53432. },
  53433. head: {
  53434. height: math.unit(1.61, "feet"),
  53435. name: "Head",
  53436. image: {
  53437. source: "./media/characters/ankou/head.svg"
  53438. }
  53439. },
  53440. },
  53441. [
  53442. {
  53443. name: "Normal",
  53444. height: math.unit(5 + 3/12, "feet"),
  53445. default: true
  53446. },
  53447. ]
  53448. ))
  53449. characterMakers.push(() => makeCharacter(
  53450. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53451. {
  53452. side: {
  53453. height: math.unit(6 + 3/12, "feet"),
  53454. weight: math.unit(200, "kg"),
  53455. name: "Side",
  53456. image: {
  53457. source: "./media/characters/juniper-skunktaur/side.svg",
  53458. extra: 1574/1229,
  53459. bottom: 38/1612
  53460. }
  53461. },
  53462. front: {
  53463. height: math.unit(6 + 3/12, "feet"),
  53464. weight: math.unit(200, "kg"),
  53465. name: "Front",
  53466. image: {
  53467. source: "./media/characters/juniper-skunktaur/front.svg",
  53468. extra: 1337/1278,
  53469. bottom: 22/1359
  53470. }
  53471. },
  53472. back: {
  53473. height: math.unit(6 + 3/12, "feet"),
  53474. weight: math.unit(200, "kg"),
  53475. name: "Back",
  53476. image: {
  53477. source: "./media/characters/juniper-skunktaur/back.svg",
  53478. extra: 1618/1273,
  53479. bottom: 13/1631
  53480. }
  53481. },
  53482. top: {
  53483. height: math.unit(2.62, "feet"),
  53484. weight: math.unit(200, "kg"),
  53485. name: "Top",
  53486. image: {
  53487. source: "./media/characters/juniper-skunktaur/top.svg"
  53488. }
  53489. },
  53490. },
  53491. [
  53492. {
  53493. name: "Normal",
  53494. height: math.unit(6 + 3/12, "feet"),
  53495. default: true
  53496. },
  53497. ]
  53498. ))
  53499. characterMakers.push(() => makeCharacter(
  53500. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53501. {
  53502. front: {
  53503. height: math.unit(20.5, "feet"),
  53504. name: "Front",
  53505. image: {
  53506. source: "./media/characters/rei/front.svg",
  53507. extra: 1349/1195,
  53508. bottom: 31/1380
  53509. }
  53510. },
  53511. back: {
  53512. height: math.unit(20.5, "feet"),
  53513. name: "Back",
  53514. image: {
  53515. source: "./media/characters/rei/back.svg",
  53516. extra: 1358/1204,
  53517. bottom: 22/1380
  53518. }
  53519. },
  53520. pawsDigi: {
  53521. height: math.unit(3.45, "feet"),
  53522. name: "Paws (Digi)",
  53523. image: {
  53524. source: "./media/characters/rei/paws-digi.svg"
  53525. }
  53526. },
  53527. pawsPlanti: {
  53528. height: math.unit(3.45, "feet"),
  53529. name: "Paws (Planti)",
  53530. image: {
  53531. source: "./media/characters/rei/paws-planti.svg"
  53532. }
  53533. },
  53534. },
  53535. [
  53536. {
  53537. name: "Normal",
  53538. height: math.unit(20.5, "feet"),
  53539. default: true
  53540. },
  53541. ]
  53542. ))
  53543. characterMakers.push(() => makeCharacter(
  53544. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53545. {
  53546. front: {
  53547. height: math.unit(5 + 11/12, "feet"),
  53548. name: "Front",
  53549. image: {
  53550. source: "./media/characters/carina/front.svg",
  53551. extra: 1720/1449,
  53552. bottom: 14/1734
  53553. }
  53554. },
  53555. back: {
  53556. height: math.unit(5 + 11/12, "feet"),
  53557. name: "Back",
  53558. image: {
  53559. source: "./media/characters/carina/back.svg",
  53560. extra: 1493/1445,
  53561. bottom: 17/1510
  53562. }
  53563. },
  53564. paw: {
  53565. height: math.unit(0.92, "feet"),
  53566. name: "Paw",
  53567. image: {
  53568. source: "./media/characters/carina/paw.svg"
  53569. }
  53570. },
  53571. },
  53572. [
  53573. {
  53574. name: "Normal",
  53575. height: math.unit(5 + 11/12, "feet"),
  53576. default: true
  53577. },
  53578. ]
  53579. ))
  53580. characterMakers.push(() => makeCharacter(
  53581. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53582. {
  53583. normal_front: {
  53584. height: math.unit(4.88, "meters"),
  53585. name: "Front",
  53586. image: {
  53587. source: "./media/characters/maya/normal-front.svg",
  53588. extra: 1222/1145,
  53589. bottom: 57/1279
  53590. },
  53591. form: "normal",
  53592. default: true
  53593. },
  53594. monstrous_front: {
  53595. height: math.unit(10, "meters"),
  53596. name: "Front",
  53597. image: {
  53598. source: "./media/characters/maya/monstrous-front.svg",
  53599. extra: 1523/1109,
  53600. bottom: 113/1636
  53601. },
  53602. form: "monstrous",
  53603. extraAttributes: {
  53604. "swallowSize": {
  53605. name: "Tailmaw Bite Size",
  53606. power: 3,
  53607. type: "volume",
  53608. base: math.unit(43000, "liters")
  53609. },
  53610. }
  53611. },
  53612. taur_front: {
  53613. height: math.unit(10, "meters"),
  53614. name: "Front",
  53615. image: {
  53616. source: "./media/characters/maya/taur-front.svg",
  53617. extra: 743/506,
  53618. bottom: 101/844
  53619. },
  53620. form: "taur",
  53621. },
  53622. },
  53623. [
  53624. {
  53625. name: "Normal",
  53626. height: math.unit(4.88, "meters"),
  53627. default: true,
  53628. form: "normal"
  53629. },
  53630. {
  53631. name: "Macro",
  53632. height: math.unit(38.1, "meters"),
  53633. form: "normal"
  53634. },
  53635. {
  53636. name: "Macro+",
  53637. height: math.unit(152.4, "meters"),
  53638. form: "normal"
  53639. },
  53640. {
  53641. name: "Macro++",
  53642. height: math.unit(16.09, "km"),
  53643. form: "normal"
  53644. },
  53645. {
  53646. name: "Mega-macro",
  53647. height: math.unit(700, "megameters"),
  53648. form: "normal"
  53649. },
  53650. {
  53651. name: "Satiated",
  53652. height: math.unit(10, "meters"),
  53653. default: true,
  53654. form: "monstrous"
  53655. },
  53656. {
  53657. name: "Hungry",
  53658. height: math.unit(75, "meters"),
  53659. form: "monstrous"
  53660. },
  53661. {
  53662. name: "Ravenous",
  53663. height: math.unit(500, "meters"),
  53664. form: "monstrous"
  53665. },
  53666. {
  53667. name: "\"Normal\"",
  53668. height: math.unit(10, "meters"),
  53669. form: "taur"
  53670. },
  53671. {
  53672. name: "Macro",
  53673. height: math.unit(50, "meters"),
  53674. form: "taur"
  53675. },
  53676. ],
  53677. {
  53678. "normal": {
  53679. name: "Normal",
  53680. default: true
  53681. },
  53682. "monstrous": {
  53683. name: "Monstrous",
  53684. },
  53685. "taur": {
  53686. name: "Taur",
  53687. },
  53688. }
  53689. ))
  53690. characterMakers.push(() => makeCharacter(
  53691. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53692. {
  53693. front: {
  53694. height: math.unit(6 + 2/12, "feet"),
  53695. weight: math.unit(500, "lb"),
  53696. preyCapacity: math.unit(4, "people"),
  53697. name: "Front",
  53698. image: {
  53699. source: "./media/characters/yepir/front.svg"
  53700. }
  53701. },
  53702. side: {
  53703. height: math.unit(6 + 2/12, "feet"),
  53704. weight: math.unit(500, "lb"),
  53705. preyCapacity: math.unit(4, "people"),
  53706. name: "Side",
  53707. image: {
  53708. source: "./media/characters/yepir/side.svg"
  53709. }
  53710. },
  53711. paw: {
  53712. height: math.unit(1.05, "feet"),
  53713. name: "Paw",
  53714. image: {
  53715. source: "./media/characters/yepir/paw.svg"
  53716. }
  53717. },
  53718. },
  53719. [
  53720. {
  53721. name: "Normal",
  53722. height: math.unit(6 + 2/12, "feet"),
  53723. default: true
  53724. },
  53725. ]
  53726. ))
  53727. characterMakers.push(() => makeCharacter(
  53728. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53729. {
  53730. front: {
  53731. height: math.unit(5 + 4/12, "feet"),
  53732. name: "Front",
  53733. image: {
  53734. source: "./media/characters/russec/front.svg",
  53735. extra: 1926/1626,
  53736. bottom: 72/1998
  53737. }
  53738. },
  53739. back: {
  53740. height: math.unit(5 + 4/12, "feet"),
  53741. name: "Back",
  53742. image: {
  53743. source: "./media/characters/russec/back.svg",
  53744. extra: 1910/1591,
  53745. bottom: 48/1958
  53746. }
  53747. },
  53748. },
  53749. [
  53750. {
  53751. name: "Small",
  53752. height: math.unit(5 + 4/12, "feet")
  53753. },
  53754. {
  53755. name: "Normal",
  53756. height: math.unit(72, "feet"),
  53757. default: true
  53758. },
  53759. ]
  53760. ))
  53761. characterMakers.push(() => makeCharacter(
  53762. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53763. {
  53764. side: {
  53765. height: math.unit(12, "feet"),
  53766. name: "Side",
  53767. image: {
  53768. source: "./media/characters/cianus/side.svg",
  53769. extra: 808/526,
  53770. bottom: 61/869
  53771. }
  53772. },
  53773. },
  53774. [
  53775. {
  53776. name: "Normal",
  53777. height: math.unit(12, "feet"),
  53778. default: true
  53779. },
  53780. ]
  53781. ))
  53782. characterMakers.push(() => makeCharacter(
  53783. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53784. {
  53785. front: {
  53786. height: math.unit(9 + 6/12, "feet"),
  53787. weight: math.unit(300, "lb"),
  53788. name: "Front",
  53789. image: {
  53790. source: "./media/characters/ahab/front.svg",
  53791. extra: 1897/1868,
  53792. bottom: 121/2018
  53793. }
  53794. },
  53795. frontNsfw: {
  53796. height: math.unit(9 + 6/12, "feet"),
  53797. weight: math.unit(300, "lb"),
  53798. name: "Front-nsfw",
  53799. image: {
  53800. source: "./media/characters/ahab/front-nsfw.svg",
  53801. extra: 1897/1868,
  53802. bottom: 121/2018
  53803. }
  53804. },
  53805. },
  53806. [
  53807. {
  53808. name: "Normal",
  53809. height: math.unit(9 + 6/12, "feet")
  53810. },
  53811. {
  53812. name: "Macro",
  53813. height: math.unit(657, "feet"),
  53814. default: true
  53815. },
  53816. ]
  53817. ))
  53818. characterMakers.push(() => makeCharacter(
  53819. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53820. {
  53821. front: {
  53822. height: math.unit(2.69, "meters"),
  53823. weight: math.unit(132, "kg"),
  53824. name: "Front",
  53825. image: {
  53826. source: "./media/characters/aarkus/front.svg",
  53827. extra: 1400/1231,
  53828. bottom: 34/1434
  53829. }
  53830. },
  53831. back: {
  53832. height: math.unit(2.69, "meters"),
  53833. weight: math.unit(132, "kg"),
  53834. name: "Back",
  53835. image: {
  53836. source: "./media/characters/aarkus/back.svg",
  53837. extra: 1381/1218,
  53838. bottom: 30/1411
  53839. }
  53840. },
  53841. frontNsfw: {
  53842. height: math.unit(2.69, "meters"),
  53843. weight: math.unit(132, "kg"),
  53844. name: "Front (NSFW)",
  53845. image: {
  53846. source: "./media/characters/aarkus/front-nsfw.svg",
  53847. extra: 1400/1231,
  53848. bottom: 34/1434
  53849. }
  53850. },
  53851. foot: {
  53852. height: math.unit(1.45, "feet"),
  53853. name: "Foot",
  53854. image: {
  53855. source: "./media/characters/aarkus/foot.svg"
  53856. }
  53857. },
  53858. head: {
  53859. height: math.unit(2.85, "feet"),
  53860. name: "Head",
  53861. image: {
  53862. source: "./media/characters/aarkus/head.svg"
  53863. }
  53864. },
  53865. headAlt: {
  53866. height: math.unit(3.07, "feet"),
  53867. name: "Head (Alt)",
  53868. image: {
  53869. source: "./media/characters/aarkus/head-alt.svg"
  53870. }
  53871. },
  53872. mouth: {
  53873. height: math.unit(1.25, "feet"),
  53874. name: "Mouth",
  53875. image: {
  53876. source: "./media/characters/aarkus/mouth.svg"
  53877. }
  53878. },
  53879. dick: {
  53880. height: math.unit(1.77, "feet"),
  53881. name: "Dick",
  53882. image: {
  53883. source: "./media/characters/aarkus/dick.svg"
  53884. }
  53885. },
  53886. },
  53887. [
  53888. {
  53889. name: "Normal",
  53890. height: math.unit(2.69, "meters"),
  53891. default: true
  53892. },
  53893. {
  53894. name: "Macro",
  53895. height: math.unit(269, "meters")
  53896. },
  53897. {
  53898. name: "Macro+",
  53899. height: math.unit(672.5, "meters")
  53900. },
  53901. {
  53902. name: "Megamacro",
  53903. height: math.unit(2.017, "km")
  53904. },
  53905. ]
  53906. ))
  53907. characterMakers.push(() => makeCharacter(
  53908. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53909. {
  53910. front: {
  53911. height: math.unit(23.47, "cm"),
  53912. weight: math.unit(600, "grams"),
  53913. name: "Front",
  53914. image: {
  53915. source: "./media/characters/diode/front.svg",
  53916. extra: 1778/1396,
  53917. bottom: 95/1873
  53918. }
  53919. },
  53920. side: {
  53921. height: math.unit(23.47, "cm"),
  53922. weight: math.unit(600, "grams"),
  53923. name: "Side",
  53924. image: {
  53925. source: "./media/characters/diode/side.svg",
  53926. extra: 1831/1404,
  53927. bottom: 86/1917
  53928. }
  53929. },
  53930. wings: {
  53931. height: math.unit(0.683, "feet"),
  53932. name: "Wings",
  53933. image: {
  53934. source: "./media/characters/diode/wings.svg"
  53935. }
  53936. },
  53937. },
  53938. [
  53939. {
  53940. name: "Normal",
  53941. height: math.unit(23.47, "cm"),
  53942. default: true
  53943. },
  53944. ]
  53945. ))
  53946. characterMakers.push(() => makeCharacter(
  53947. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53948. {
  53949. front: {
  53950. height: math.unit(6 + 3/12, "feet"),
  53951. weight: math.unit(250, "lb"),
  53952. name: "Front",
  53953. image: {
  53954. source: "./media/characters/reika/front.svg",
  53955. extra: 1120/1078,
  53956. bottom: 86/1206
  53957. }
  53958. },
  53959. },
  53960. [
  53961. {
  53962. name: "Normal",
  53963. height: math.unit(6 + 3/12, "feet"),
  53964. default: true
  53965. },
  53966. ]
  53967. ))
  53968. characterMakers.push(() => makeCharacter(
  53969. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53970. {
  53971. front: {
  53972. height: math.unit(16 + 8/12, "feet"),
  53973. weight: math.unit(9000, "lb"),
  53974. name: "Front",
  53975. image: {
  53976. source: "./media/characters/lokuto-takama/front.svg",
  53977. extra: 1774/1632,
  53978. bottom: 147/1921
  53979. },
  53980. extraAttributes: {
  53981. "bustWidth": {
  53982. name: "Bust Width",
  53983. power: 1,
  53984. type: "length",
  53985. base: math.unit(2.4, "meters")
  53986. },
  53987. "breastWeight": {
  53988. name: "Breast Weight",
  53989. power: 3,
  53990. type: "mass",
  53991. base: math.unit(1000, "kg")
  53992. },
  53993. }
  53994. },
  53995. },
  53996. [
  53997. {
  53998. name: "Normal",
  53999. height: math.unit(16 + 8/12, "feet"),
  54000. default: true
  54001. },
  54002. ]
  54003. ))
  54004. characterMakers.push(() => makeCharacter(
  54005. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54006. {
  54007. front: {
  54008. height: math.unit(10, "cm"),
  54009. weight: math.unit(850, "grams"),
  54010. name: "Front",
  54011. image: {
  54012. source: "./media/characters/owak-bone/front.svg",
  54013. extra: 1965/1801,
  54014. bottom: 31/1996
  54015. }
  54016. },
  54017. },
  54018. [
  54019. {
  54020. name: "Normal",
  54021. height: math.unit(10, "cm"),
  54022. default: true
  54023. },
  54024. ]
  54025. ))
  54026. characterMakers.push(() => makeCharacter(
  54027. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54028. {
  54029. front: {
  54030. height: math.unit(2 + 6/12, "feet"),
  54031. weight: math.unit(9, "lb"),
  54032. name: "Front",
  54033. image: {
  54034. source: "./media/characters/muffin/front.svg",
  54035. extra: 1220/1195,
  54036. bottom: 84/1304
  54037. }
  54038. },
  54039. },
  54040. [
  54041. {
  54042. name: "Normal",
  54043. height: math.unit(2 + 6/12, "feet"),
  54044. default: true
  54045. },
  54046. ]
  54047. ))
  54048. characterMakers.push(() => makeCharacter(
  54049. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54050. {
  54051. front: {
  54052. height: math.unit(7, "feet"),
  54053. name: "Front",
  54054. image: {
  54055. source: "./media/characters/chimera/front.svg",
  54056. extra: 1752/1614,
  54057. bottom: 68/1820
  54058. }
  54059. },
  54060. },
  54061. [
  54062. {
  54063. name: "Normal",
  54064. height: math.unit(7, "feet")
  54065. },
  54066. {
  54067. name: "Gigamacro",
  54068. height: math.unit(2.9, "gigameters"),
  54069. default: true
  54070. },
  54071. {
  54072. name: "Universal",
  54073. height: math.unit(1.56e26, "yottameters")
  54074. },
  54075. ]
  54076. ))
  54077. characterMakers.push(() => makeCharacter(
  54078. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54079. {
  54080. front: {
  54081. height: math.unit(3, "feet"),
  54082. weight: math.unit(20, "lb"),
  54083. name: "Front",
  54084. image: {
  54085. source: "./media/characters/kit-fennec-fox/front.svg",
  54086. extra: 1027/932,
  54087. bottom: 16/1043
  54088. }
  54089. },
  54090. back: {
  54091. height: math.unit(3, "feet"),
  54092. weight: math.unit(20, "lb"),
  54093. name: "Back",
  54094. image: {
  54095. source: "./media/characters/kit-fennec-fox/back.svg",
  54096. extra: 1027/932,
  54097. bottom: 16/1043
  54098. }
  54099. },
  54100. },
  54101. [
  54102. {
  54103. name: "Normal",
  54104. height: math.unit(3, "feet"),
  54105. default: true
  54106. },
  54107. ]
  54108. ))
  54109. characterMakers.push(() => makeCharacter(
  54110. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54111. {
  54112. front: {
  54113. height: math.unit(167, "cm"),
  54114. name: "Front",
  54115. image: {
  54116. source: "./media/characters/blue-otter/front.svg",
  54117. extra: 1951/1920,
  54118. bottom: 31/1982
  54119. }
  54120. },
  54121. },
  54122. [
  54123. {
  54124. name: "Otter-Sized",
  54125. height: math.unit(100, "cm")
  54126. },
  54127. {
  54128. name: "Normal",
  54129. height: math.unit(167, "cm"),
  54130. default: true
  54131. },
  54132. ]
  54133. ))
  54134. characterMakers.push(() => makeCharacter(
  54135. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54136. {
  54137. front: {
  54138. height: math.unit(4 + 4/12, "feet"),
  54139. name: "Front",
  54140. image: {
  54141. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54142. extra: 1072/1067,
  54143. bottom: 117/1189
  54144. }
  54145. },
  54146. back: {
  54147. height: math.unit(4 + 4/12, "feet"),
  54148. name: "Back",
  54149. image: {
  54150. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54151. extra: 1135/1129,
  54152. bottom: 57/1192
  54153. }
  54154. },
  54155. head: {
  54156. height: math.unit(1.77, "feet"),
  54157. name: "Head",
  54158. image: {
  54159. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54160. }
  54161. },
  54162. },
  54163. [
  54164. {
  54165. name: "Normal",
  54166. height: math.unit(4 + 4/12, "feet"),
  54167. default: true
  54168. },
  54169. ]
  54170. ))
  54171. characterMakers.push(() => makeCharacter(
  54172. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54173. {
  54174. front: {
  54175. height: math.unit(2, "inches"),
  54176. name: "Front",
  54177. image: {
  54178. source: "./media/characters/carley-hartford/front.svg",
  54179. extra: 1035/988,
  54180. bottom: 23/1058
  54181. }
  54182. },
  54183. back: {
  54184. height: math.unit(2, "inches"),
  54185. name: "Back",
  54186. image: {
  54187. source: "./media/characters/carley-hartford/back.svg",
  54188. extra: 1035/988,
  54189. bottom: 23/1058
  54190. }
  54191. },
  54192. dressed: {
  54193. height: math.unit(2, "inches"),
  54194. name: "Dressed",
  54195. image: {
  54196. source: "./media/characters/carley-hartford/dressed.svg",
  54197. extra: 651/620,
  54198. bottom: 0/651
  54199. }
  54200. },
  54201. },
  54202. [
  54203. {
  54204. name: "Micro",
  54205. height: math.unit(2, "inches"),
  54206. default: true
  54207. },
  54208. {
  54209. name: "Macro",
  54210. height: math.unit(6 + 3/12, "feet")
  54211. },
  54212. ]
  54213. ))
  54214. characterMakers.push(() => makeCharacter(
  54215. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54216. {
  54217. front: {
  54218. height: math.unit(2 + 3/12, "feet"),
  54219. weight: math.unit(15 + 7/16, "lb"),
  54220. name: "Front",
  54221. image: {
  54222. source: "./media/characters/duke/front.svg",
  54223. extra: 910/815,
  54224. bottom: 30/940
  54225. }
  54226. },
  54227. },
  54228. [
  54229. {
  54230. name: "Normal",
  54231. height: math.unit(2 + 3/12, "feet"),
  54232. default: true
  54233. },
  54234. ]
  54235. ))
  54236. characterMakers.push(() => makeCharacter(
  54237. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54238. {
  54239. front: {
  54240. height: math.unit(5 + 4/12, "feet"),
  54241. weight: math.unit(156, "lb"),
  54242. name: "Front",
  54243. image: {
  54244. source: "./media/characters/dein/front.svg",
  54245. extra: 855/815,
  54246. bottom: 48/903
  54247. }
  54248. },
  54249. side: {
  54250. height: math.unit(5 + 4/12, "feet"),
  54251. weight: math.unit(156, "lb"),
  54252. name: "side",
  54253. image: {
  54254. source: "./media/characters/dein/side.svg",
  54255. extra: 846/803,
  54256. bottom: 25/871
  54257. }
  54258. },
  54259. maw: {
  54260. height: math.unit(1.45, "feet"),
  54261. name: "Maw",
  54262. image: {
  54263. source: "./media/characters/dein/maw.svg"
  54264. }
  54265. },
  54266. },
  54267. [
  54268. {
  54269. name: "Ferret Sized",
  54270. height: math.unit(2 + 5/12, "feet")
  54271. },
  54272. {
  54273. name: "Normal",
  54274. height: math.unit(5 + 4/12, "feet"),
  54275. default: true
  54276. },
  54277. ]
  54278. ))
  54279. characterMakers.push(() => makeCharacter(
  54280. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54281. {
  54282. front: {
  54283. height: math.unit(84 + 8/12, "feet"),
  54284. weight: math.unit(942180, "lb"),
  54285. name: "Front",
  54286. image: {
  54287. source: "./media/characters/daurine-arima/front.svg",
  54288. extra: 1989/1782,
  54289. bottom: 37/2026
  54290. }
  54291. },
  54292. side: {
  54293. height: math.unit(84 + 8/12, "feet"),
  54294. weight: math.unit(942180, "lb"),
  54295. name: "Side",
  54296. image: {
  54297. source: "./media/characters/daurine-arima/side.svg",
  54298. extra: 1997/1790,
  54299. bottom: 21/2018
  54300. }
  54301. },
  54302. back: {
  54303. height: math.unit(84 + 8/12, "feet"),
  54304. weight: math.unit(942180, "lb"),
  54305. name: "Back",
  54306. image: {
  54307. source: "./media/characters/daurine-arima/back.svg",
  54308. extra: 1992/1800,
  54309. bottom: 12/2004
  54310. }
  54311. },
  54312. head: {
  54313. height: math.unit(15.5, "feet"),
  54314. name: "Head",
  54315. image: {
  54316. source: "./media/characters/daurine-arima/head.svg"
  54317. }
  54318. },
  54319. headAlt: {
  54320. height: math.unit(19.19, "feet"),
  54321. name: "Head (Alt)",
  54322. image: {
  54323. source: "./media/characters/daurine-arima/head-alt.svg"
  54324. }
  54325. },
  54326. },
  54327. [
  54328. {
  54329. name: "Minimum height",
  54330. height: math.unit(8 + 10/12, "feet")
  54331. },
  54332. {
  54333. name: "Comfort height",
  54334. height: math.unit(19 + 6 /12, "feet")
  54335. },
  54336. {
  54337. name: "\"Normal\" height",
  54338. height: math.unit(28 + 10/12, "feet")
  54339. },
  54340. {
  54341. name: "Base height",
  54342. height: math.unit(84 + 8/12, "feet"),
  54343. default: true
  54344. },
  54345. {
  54346. name: "Mini-macro",
  54347. height: math.unit(2360, "feet")
  54348. },
  54349. {
  54350. name: "Macro",
  54351. height: math.unit(10, "miles")
  54352. },
  54353. {
  54354. name: "Goddess",
  54355. height: math.unit(9.99e40, "yottameters")
  54356. },
  54357. ]
  54358. ))
  54359. characterMakers.push(() => makeCharacter(
  54360. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54361. {
  54362. front: {
  54363. height: math.unit(2.3, "meters"),
  54364. name: "Front",
  54365. image: {
  54366. source: "./media/characters/cilenomon/front.svg",
  54367. extra: 1963/1778,
  54368. bottom: 54/2017
  54369. }
  54370. },
  54371. },
  54372. [
  54373. {
  54374. name: "Normal",
  54375. height: math.unit(2.3, "meters"),
  54376. default: true
  54377. },
  54378. {
  54379. name: "Big",
  54380. height: math.unit(5, "meters")
  54381. },
  54382. {
  54383. name: "Macro",
  54384. height: math.unit(30, "meters")
  54385. },
  54386. {
  54387. name: "True",
  54388. height: math.unit(1, "universe")
  54389. },
  54390. ]
  54391. ))
  54392. characterMakers.push(() => makeCharacter(
  54393. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54394. {
  54395. front: {
  54396. height: math.unit(5, "feet"),
  54397. name: "Front",
  54398. image: {
  54399. source: "./media/characters/sen-mink/front.svg",
  54400. extra: 1727/1675,
  54401. bottom: 35/1762
  54402. }
  54403. },
  54404. },
  54405. [
  54406. {
  54407. name: "Normal",
  54408. height: math.unit(5, "feet"),
  54409. default: true
  54410. },
  54411. ]
  54412. ))
  54413. characterMakers.push(() => makeCharacter(
  54414. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54415. {
  54416. front: {
  54417. height: math.unit(5.42999, "feet"),
  54418. weight: math.unit(100, "lb"),
  54419. name: "Front",
  54420. image: {
  54421. source: "./media/characters/ophois/front.svg",
  54422. extra: 1429/1286,
  54423. bottom: 60/1489
  54424. }
  54425. },
  54426. },
  54427. [
  54428. {
  54429. name: "Normal",
  54430. height: math.unit(5.42999, "feet"),
  54431. default: true
  54432. },
  54433. ]
  54434. ))
  54435. characterMakers.push(() => makeCharacter(
  54436. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54437. {
  54438. front: {
  54439. height: math.unit(2, "meters"),
  54440. name: "Front",
  54441. image: {
  54442. source: "./media/characters/riley/front.svg",
  54443. extra: 1779/1754,
  54444. bottom: 139/1918
  54445. }
  54446. },
  54447. },
  54448. [
  54449. {
  54450. name: "Normal",
  54451. height: math.unit(2, "meters"),
  54452. default: true
  54453. },
  54454. ]
  54455. ))
  54456. characterMakers.push(() => makeCharacter(
  54457. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54458. {
  54459. front: {
  54460. height: math.unit(6 + 2/12, "feet"),
  54461. weight: math.unit(195, "lb"),
  54462. preyCapacity: math.unit(6, "people"),
  54463. name: "Front",
  54464. image: {
  54465. source: "./media/characters/shuken-flash/front.svg",
  54466. extra: 1905/1739,
  54467. bottom: 65/1970
  54468. }
  54469. },
  54470. back: {
  54471. height: math.unit(6 + 2/12, "feet"),
  54472. weight: math.unit(195, "lb"),
  54473. preyCapacity: math.unit(6, "people"),
  54474. name: "Back",
  54475. image: {
  54476. source: "./media/characters/shuken-flash/back.svg",
  54477. extra: 1912/1751,
  54478. bottom: 13/1925
  54479. }
  54480. },
  54481. },
  54482. [
  54483. {
  54484. name: "Normal",
  54485. height: math.unit(6 + 2/12, "feet"),
  54486. default: true
  54487. },
  54488. ]
  54489. ))
  54490. characterMakers.push(() => makeCharacter(
  54491. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54492. {
  54493. front: {
  54494. height: math.unit(5 + 9/12, "feet"),
  54495. weight: math.unit(150, "lb"),
  54496. name: "Front",
  54497. image: {
  54498. source: "./media/characters/plat/front.svg",
  54499. extra: 1816/1703,
  54500. bottom: 43/1859
  54501. }
  54502. },
  54503. side: {
  54504. height: math.unit(5 + 9/12, "feet"),
  54505. weight: math.unit(300, "lb"),
  54506. name: "Side",
  54507. image: {
  54508. source: "./media/characters/plat/side.svg",
  54509. extra: 1824/1699,
  54510. bottom: 18/1842
  54511. }
  54512. },
  54513. },
  54514. [
  54515. {
  54516. name: "Normal",
  54517. height: math.unit(5 + 9/12, "feet"),
  54518. default: true
  54519. },
  54520. ]
  54521. ))
  54522. characterMakers.push(() => makeCharacter(
  54523. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54524. {
  54525. front: {
  54526. height: math.unit(9, "feet"),
  54527. weight: math.unit(1800, "lb"),
  54528. name: "Front",
  54529. image: {
  54530. source: "./media/characters/elaine/front.svg",
  54531. extra: 1833/1354,
  54532. bottom: 25/1858
  54533. }
  54534. },
  54535. back: {
  54536. height: math.unit(8.8, "feet"),
  54537. weight: math.unit(1800, "lb"),
  54538. name: "Back",
  54539. image: {
  54540. source: "./media/characters/elaine/back.svg",
  54541. extra: 1641/1233,
  54542. bottom: 53/1694
  54543. }
  54544. },
  54545. },
  54546. [
  54547. {
  54548. name: "Normal",
  54549. height: math.unit(9, "feet"),
  54550. default: true
  54551. },
  54552. ]
  54553. ))
  54554. characterMakers.push(() => makeCharacter(
  54555. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54556. {
  54557. front: {
  54558. height: math.unit(17 + 9/12, "feet"),
  54559. weight: math.unit(8000, "lb"),
  54560. name: "Front",
  54561. image: {
  54562. source: "./media/characters/vera-raven/front.svg",
  54563. extra: 1457/1412,
  54564. bottom: 121/1578
  54565. }
  54566. },
  54567. side: {
  54568. height: math.unit(17 + 9/12, "feet"),
  54569. weight: math.unit(8000, "lb"),
  54570. name: "Side",
  54571. image: {
  54572. source: "./media/characters/vera-raven/side.svg",
  54573. extra: 1510/1464,
  54574. bottom: 54/1564
  54575. }
  54576. },
  54577. },
  54578. [
  54579. {
  54580. name: "Normal",
  54581. height: math.unit(17 + 9/12, "feet"),
  54582. default: true
  54583. },
  54584. ]
  54585. ))
  54586. characterMakers.push(() => makeCharacter(
  54587. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54588. {
  54589. dressed: {
  54590. height: math.unit(6 + 9/12, "feet"),
  54591. name: "Dressed",
  54592. image: {
  54593. source: "./media/characters/nakisha/dressed.svg",
  54594. extra: 1909/1757,
  54595. bottom: 48/1957
  54596. }
  54597. },
  54598. nude: {
  54599. height: math.unit(6 + 9/12, "feet"),
  54600. name: "Nude",
  54601. image: {
  54602. source: "./media/characters/nakisha/nude.svg",
  54603. extra: 1917/1765,
  54604. bottom: 34/1951
  54605. }
  54606. },
  54607. },
  54608. [
  54609. {
  54610. name: "Normal",
  54611. height: math.unit(6 + 9/12, "feet"),
  54612. default: true
  54613. },
  54614. ]
  54615. ))
  54616. characterMakers.push(() => makeCharacter(
  54617. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54618. {
  54619. front: {
  54620. height: math.unit(87, "meters"),
  54621. name: "Front",
  54622. image: {
  54623. source: "./media/characters/serafin/front.svg",
  54624. extra: 1919/1776,
  54625. bottom: 65/1984
  54626. }
  54627. },
  54628. },
  54629. [
  54630. {
  54631. name: "Normal",
  54632. height: math.unit(87, "meters"),
  54633. default: true
  54634. },
  54635. ]
  54636. ))
  54637. characterMakers.push(() => makeCharacter(
  54638. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54639. {
  54640. front: {
  54641. height: math.unit(6, "feet"),
  54642. weight: math.unit(200, "lb"),
  54643. name: "Front",
  54644. image: {
  54645. source: "./media/characters/poptart/front.svg",
  54646. extra: 615/583,
  54647. bottom: 23/638
  54648. }
  54649. },
  54650. back: {
  54651. height: math.unit(6, "feet"),
  54652. weight: math.unit(200, "lb"),
  54653. name: "Back",
  54654. image: {
  54655. source: "./media/characters/poptart/back.svg",
  54656. extra: 617/584,
  54657. bottom: 22/639
  54658. }
  54659. },
  54660. frontNsfw: {
  54661. height: math.unit(6, "feet"),
  54662. weight: math.unit(200, "lb"),
  54663. name: "Front (NSFW)",
  54664. image: {
  54665. source: "./media/characters/poptart/front-nsfw.svg",
  54666. extra: 615/583,
  54667. bottom: 23/638
  54668. }
  54669. },
  54670. backNsfw: {
  54671. height: math.unit(6, "feet"),
  54672. weight: math.unit(200, "lb"),
  54673. name: "Back (NSFW)",
  54674. image: {
  54675. source: "./media/characters/poptart/back-nsfw.svg",
  54676. extra: 617/584,
  54677. bottom: 22/639
  54678. }
  54679. },
  54680. hand: {
  54681. height: math.unit(1.14, "feet"),
  54682. name: "Hand",
  54683. image: {
  54684. source: "./media/characters/poptart/hand.svg"
  54685. }
  54686. },
  54687. foot: {
  54688. height: math.unit(1.5, "feet"),
  54689. name: "Foot",
  54690. image: {
  54691. source: "./media/characters/poptart/foot.svg"
  54692. }
  54693. },
  54694. },
  54695. [
  54696. {
  54697. name: "Normal",
  54698. height: math.unit(6, "feet"),
  54699. default: true
  54700. },
  54701. {
  54702. name: "Grande",
  54703. height: math.unit(350, "feet")
  54704. },
  54705. {
  54706. name: "Massif",
  54707. height: math.unit(967, "feet")
  54708. },
  54709. ]
  54710. ))
  54711. characterMakers.push(() => makeCharacter(
  54712. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54713. {
  54714. hyenaSide: {
  54715. height: math.unit(120, "cm"),
  54716. weight: math.unit(120, "lb"),
  54717. name: "Side",
  54718. image: {
  54719. source: "./media/characters/trance/hyena-side.svg",
  54720. extra: 998/904,
  54721. bottom: 76/1074
  54722. }
  54723. },
  54724. },
  54725. [
  54726. {
  54727. name: "Normal",
  54728. height: math.unit(120, "cm"),
  54729. default: true
  54730. },
  54731. {
  54732. name: "Dire",
  54733. height: math.unit(230, "cm")
  54734. },
  54735. {
  54736. name: "Macro",
  54737. height: math.unit(37, "feet")
  54738. },
  54739. ]
  54740. ))
  54741. characterMakers.push(() => makeCharacter(
  54742. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54743. {
  54744. front: {
  54745. height: math.unit(6 + 3/12, "feet"),
  54746. name: "Front",
  54747. image: {
  54748. source: "./media/characters/michael-berretta/front.svg",
  54749. extra: 515/494,
  54750. bottom: 20/535
  54751. }
  54752. },
  54753. back: {
  54754. height: math.unit(6 + 3/12, "feet"),
  54755. name: "Back",
  54756. image: {
  54757. source: "./media/characters/michael-berretta/back.svg",
  54758. extra: 520/497,
  54759. bottom: 21/541
  54760. }
  54761. },
  54762. frontNsfw: {
  54763. height: math.unit(6 + 3/12, "feet"),
  54764. name: "Front (NSFW)",
  54765. image: {
  54766. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54767. extra: 515/494,
  54768. bottom: 20/535
  54769. }
  54770. },
  54771. dick: {
  54772. height: math.unit(1, "feet"),
  54773. name: "Dick",
  54774. image: {
  54775. source: "./media/characters/michael-berretta/dick.svg"
  54776. }
  54777. },
  54778. },
  54779. [
  54780. {
  54781. name: "Normal",
  54782. height: math.unit(6 + 3/12, "feet"),
  54783. default: true
  54784. },
  54785. {
  54786. name: "Big",
  54787. height: math.unit(12, "feet")
  54788. },
  54789. {
  54790. name: "Macro",
  54791. height: math.unit(187.5, "feet")
  54792. },
  54793. ]
  54794. ))
  54795. characterMakers.push(() => makeCharacter(
  54796. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54797. {
  54798. front: {
  54799. height: math.unit(9 + 9/12, "feet"),
  54800. weight: math.unit(1244, "lb"),
  54801. name: "Front",
  54802. image: {
  54803. source: "./media/characters/stella-edgecomb/front.svg",
  54804. extra: 1835/1706,
  54805. bottom: 49/1884
  54806. }
  54807. },
  54808. pen: {
  54809. height: math.unit(0.95, "feet"),
  54810. name: "Pen",
  54811. image: {
  54812. source: "./media/characters/stella-edgecomb/pen.svg"
  54813. }
  54814. },
  54815. },
  54816. [
  54817. {
  54818. name: "Cozy Bear",
  54819. height: math.unit(0.5, "inches")
  54820. },
  54821. {
  54822. name: "Normal",
  54823. height: math.unit(9 + 9/12, "feet"),
  54824. default: true
  54825. },
  54826. {
  54827. name: "Giga Bear",
  54828. height: math.unit(1, "mile")
  54829. },
  54830. {
  54831. name: "Great Bear",
  54832. height: math.unit(53, "miles")
  54833. },
  54834. {
  54835. name: "Goddess Bear",
  54836. height: math.unit(40000, "miles")
  54837. },
  54838. {
  54839. name: "Sun Bear",
  54840. height: math.unit(900000, "miles")
  54841. },
  54842. ]
  54843. ))
  54844. characterMakers.push(() => makeCharacter(
  54845. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54846. {
  54847. anthroFront: {
  54848. height: math.unit(556, "cm"),
  54849. weight: math.unit(2650, "kg"),
  54850. preyCapacity: math.unit(3, "people"),
  54851. name: "Front",
  54852. image: {
  54853. source: "./media/characters/ash´iika/front.svg",
  54854. extra: 710/673,
  54855. bottom: 15/725
  54856. },
  54857. form: "anthro",
  54858. default: true
  54859. },
  54860. anthroSide: {
  54861. height: math.unit(556, "cm"),
  54862. weight: math.unit(2650, "kg"),
  54863. preyCapacity: math.unit(3, "people"),
  54864. name: "Side",
  54865. image: {
  54866. source: "./media/characters/ash´iika/side.svg",
  54867. extra: 696/676,
  54868. bottom: 13/709
  54869. },
  54870. form: "anthro"
  54871. },
  54872. anthroDressed: {
  54873. height: math.unit(556, "cm"),
  54874. weight: math.unit(2650, "kg"),
  54875. preyCapacity: math.unit(3, "people"),
  54876. name: "Dressed",
  54877. image: {
  54878. source: "./media/characters/ash´iika/dressed.svg",
  54879. extra: 710/673,
  54880. bottom: 15/725
  54881. },
  54882. form: "anthro"
  54883. },
  54884. anthroHead: {
  54885. height: math.unit(3.5, "feet"),
  54886. name: "Head",
  54887. image: {
  54888. source: "./media/characters/ash´iika/head.svg",
  54889. extra: 348/291,
  54890. bottom: 45/393
  54891. },
  54892. form: "anthro"
  54893. },
  54894. feralSide: {
  54895. height: math.unit(870, "cm"),
  54896. weight: math.unit(17500, "kg"),
  54897. preyCapacity: math.unit(15, "people"),
  54898. name: "Side",
  54899. image: {
  54900. source: "./media/characters/ash´iika/feral.svg",
  54901. extra: 595/199,
  54902. bottom: 7/602
  54903. },
  54904. form: "feral",
  54905. default: true,
  54906. },
  54907. },
  54908. [
  54909. {
  54910. name: "Normal",
  54911. height: math.unit(556, "cm"),
  54912. default: true,
  54913. form: "anthro"
  54914. },
  54915. {
  54916. name: "Macro",
  54917. height: math.unit(88, "meters"),
  54918. form: "anthro"
  54919. },
  54920. {
  54921. name: "Normal",
  54922. height: math.unit(870, "cm"),
  54923. default: true,
  54924. form: "feral"
  54925. },
  54926. {
  54927. name: "Large",
  54928. height: math.unit(25, "meters"),
  54929. form: "feral"
  54930. },
  54931. ],
  54932. {
  54933. "anthro": {
  54934. name: "Anthro",
  54935. default: true
  54936. },
  54937. "feral": {
  54938. name: "Feral",
  54939. },
  54940. }
  54941. ))
  54942. characterMakers.push(() => makeCharacter(
  54943. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54944. {
  54945. front: {
  54946. height: math.unit(10, "feet"),
  54947. weight: math.unit(800, "lb"),
  54948. name: "Front",
  54949. image: {
  54950. source: "./media/characters/yen/front.svg",
  54951. extra: 443/411,
  54952. bottom: 6/449
  54953. }
  54954. },
  54955. sleeping: {
  54956. height: math.unit(10, "feet"),
  54957. weight: math.unit(800, "lb"),
  54958. name: "Sleeping",
  54959. image: {
  54960. source: "./media/characters/yen/sleeping.svg",
  54961. extra: 470/422,
  54962. bottom: 0/470
  54963. }
  54964. },
  54965. head: {
  54966. height: math.unit(2.2, "feet"),
  54967. name: "Head",
  54968. image: {
  54969. source: "./media/characters/yen/head.svg"
  54970. }
  54971. },
  54972. headAlt: {
  54973. height: math.unit(2.1, "feet"),
  54974. name: "Head (Alt)",
  54975. image: {
  54976. source: "./media/characters/yen/head-alt.svg"
  54977. }
  54978. },
  54979. },
  54980. [
  54981. {
  54982. name: "Normal",
  54983. height: math.unit(10, "feet"),
  54984. default: true
  54985. },
  54986. ]
  54987. ))
  54988. characterMakers.push(() => makeCharacter(
  54989. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54990. {
  54991. front: {
  54992. height: math.unit(12, "feet"),
  54993. name: "Front",
  54994. image: {
  54995. source: "./media/characters/citra/front.svg",
  54996. extra: 1950/1710,
  54997. bottom: 47/1997
  54998. }
  54999. },
  55000. },
  55001. [
  55002. {
  55003. name: "Normal",
  55004. height: math.unit(12, "feet"),
  55005. default: true
  55006. },
  55007. ]
  55008. ))
  55009. characterMakers.push(() => makeCharacter(
  55010. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55011. {
  55012. side: {
  55013. height: math.unit(7 + 10/12, "feet"),
  55014. name: "Side",
  55015. image: {
  55016. source: "./media/characters/sholstim/side.svg",
  55017. extra: 786/682,
  55018. bottom: 40/826
  55019. }
  55020. },
  55021. },
  55022. [
  55023. {
  55024. name: "Normal",
  55025. height: math.unit(7 + 10/12, "feet"),
  55026. default: true
  55027. },
  55028. ]
  55029. ))
  55030. characterMakers.push(() => makeCharacter(
  55031. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55032. {
  55033. front: {
  55034. height: math.unit(3.10, "meters"),
  55035. name: "Front",
  55036. image: {
  55037. source: "./media/characters/aggyn/front.svg",
  55038. extra: 1188/963,
  55039. bottom: 24/1212
  55040. }
  55041. },
  55042. },
  55043. [
  55044. {
  55045. name: "Normal",
  55046. height: math.unit(3.10, "meters"),
  55047. default: true
  55048. },
  55049. ]
  55050. ))
  55051. characterMakers.push(() => makeCharacter(
  55052. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55053. {
  55054. front: {
  55055. height: math.unit(7 + 5/12, "feet"),
  55056. weight: math.unit(687, "lb"),
  55057. name: "Front",
  55058. image: {
  55059. source: "./media/characters/alsandair-hergenroether/front.svg",
  55060. extra: 1251/1186,
  55061. bottom: 75/1326
  55062. }
  55063. },
  55064. back: {
  55065. height: math.unit(7 + 5/12, "feet"),
  55066. weight: math.unit(687, "lb"),
  55067. name: "Back",
  55068. image: {
  55069. source: "./media/characters/alsandair-hergenroether/back.svg",
  55070. extra: 1290/1229,
  55071. bottom: 17/1307
  55072. }
  55073. },
  55074. },
  55075. [
  55076. {
  55077. name: "Max Compression",
  55078. height: math.unit(7 + 5/12, "feet"),
  55079. default: true
  55080. },
  55081. {
  55082. name: "\"Normal\"",
  55083. height: math.unit(2, "universes")
  55084. },
  55085. ]
  55086. ))
  55087. characterMakers.push(() => makeCharacter(
  55088. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55089. {
  55090. front: {
  55091. height: math.unit(4 + 1/12, "feet"),
  55092. weight: math.unit(92, "lb"),
  55093. name: "Front",
  55094. image: {
  55095. source: "./media/characters/ie/front.svg",
  55096. extra: 1585/1352,
  55097. bottom: 91/1676
  55098. }
  55099. },
  55100. },
  55101. [
  55102. {
  55103. name: "Normal",
  55104. height: math.unit(4 + 1/12, "feet"),
  55105. default: true
  55106. },
  55107. ]
  55108. ))
  55109. characterMakers.push(() => makeCharacter(
  55110. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55111. {
  55112. anthro: {
  55113. height: math.unit(6, "feet"),
  55114. weight: math.unit(150, "lb"),
  55115. name: "Front",
  55116. image: {
  55117. source: "./media/characters/willow/anthro.svg",
  55118. extra: 1073/986,
  55119. bottom: 34/1107
  55120. },
  55121. form: "anthro",
  55122. default: true
  55123. },
  55124. taur: {
  55125. height: math.unit(6, "feet"),
  55126. weight: math.unit(150, "lb"),
  55127. name: "Side",
  55128. image: {
  55129. source: "./media/characters/willow/taur.svg",
  55130. extra: 647/512,
  55131. bottom: 136/783
  55132. },
  55133. form: "taur",
  55134. default: true
  55135. },
  55136. },
  55137. [
  55138. {
  55139. name: "Humanoid",
  55140. height: math.unit(2.7, "meters"),
  55141. form: "anthro"
  55142. },
  55143. {
  55144. name: "Normal",
  55145. height: math.unit(9, "meters"),
  55146. form: "anthro",
  55147. default: true
  55148. },
  55149. {
  55150. name: "Humanoid",
  55151. height: math.unit(2.1, "meters"),
  55152. form: "taur"
  55153. },
  55154. {
  55155. name: "Normal",
  55156. height: math.unit(7, "meters"),
  55157. form: "taur",
  55158. default: true
  55159. },
  55160. ],
  55161. {
  55162. "anthro": {
  55163. name: "Anthro",
  55164. default: true
  55165. },
  55166. "taur": {
  55167. name: "Taur",
  55168. },
  55169. }
  55170. ))
  55171. characterMakers.push(() => makeCharacter(
  55172. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55173. {
  55174. front: {
  55175. height: math.unit(2 + 5/12, "feet"),
  55176. name: "Front",
  55177. image: {
  55178. source: "./media/characters/kyan/front.svg",
  55179. extra: 460/334,
  55180. bottom: 23/483
  55181. },
  55182. extraAttributes: {
  55183. "toeLength": {
  55184. name: "Toe Length",
  55185. power: 1,
  55186. type: "length",
  55187. base: math.unit(7, "cm")
  55188. },
  55189. "toeclawLength": {
  55190. name: "Toeclaw Length",
  55191. power: 1,
  55192. type: "length",
  55193. base: math.unit(4.7, "cm")
  55194. },
  55195. "earHeight": {
  55196. name: "Ear Height",
  55197. power: 1,
  55198. type: "length",
  55199. base: math.unit(14.1, "cm")
  55200. },
  55201. }
  55202. },
  55203. paws: {
  55204. height: math.unit(0.45, "feet"),
  55205. name: "Paws",
  55206. image: {
  55207. source: "./media/characters/kyan/paws.svg",
  55208. extra: 581/581,
  55209. bottom: 114/695
  55210. }
  55211. },
  55212. },
  55213. [
  55214. {
  55215. name: "Normal",
  55216. height: math.unit(2 + 5/12, "feet"),
  55217. default: true
  55218. },
  55219. ]
  55220. ))
  55221. characterMakers.push(() => makeCharacter(
  55222. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55223. {
  55224. front: {
  55225. height: math.unit(2 + 2/3, "feet"),
  55226. name: "Front",
  55227. image: {
  55228. source: "./media/characters/xazzon/front.svg",
  55229. extra: 1109/984,
  55230. bottom: 42/1151
  55231. }
  55232. },
  55233. back: {
  55234. height: math.unit(2 + 2/3, "feet"),
  55235. name: "Back",
  55236. image: {
  55237. source: "./media/characters/xazzon/back.svg",
  55238. extra: 1095/971,
  55239. bottom: 23/1118
  55240. }
  55241. },
  55242. },
  55243. [
  55244. {
  55245. name: "Normal",
  55246. height: math.unit(2 + 2/3, "feet"),
  55247. default: true
  55248. },
  55249. ]
  55250. ))
  55251. characterMakers.push(() => makeCharacter(
  55252. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55253. {
  55254. front: {
  55255. height: math.unit(8, "feet"),
  55256. weight: math.unit(300, "lb"),
  55257. name: "Front",
  55258. image: {
  55259. source: "./media/characters/khyla-shadowsong/front.svg",
  55260. extra: 861/798,
  55261. bottom: 32/893
  55262. }
  55263. },
  55264. side: {
  55265. height: math.unit(8, "feet"),
  55266. weight: math.unit(300, "lb"),
  55267. name: "Side",
  55268. image: {
  55269. source: "./media/characters/khyla-shadowsong/side.svg",
  55270. extra: 790/750,
  55271. bottom: 87/877
  55272. }
  55273. },
  55274. back: {
  55275. height: math.unit(8, "feet"),
  55276. weight: math.unit(300, "lb"),
  55277. name: "Back",
  55278. image: {
  55279. source: "./media/characters/khyla-shadowsong/back.svg",
  55280. extra: 855/808,
  55281. bottom: 14/869
  55282. }
  55283. },
  55284. head: {
  55285. height: math.unit(2.7, "feet"),
  55286. name: "Head",
  55287. image: {
  55288. source: "./media/characters/khyla-shadowsong/head.svg"
  55289. }
  55290. },
  55291. },
  55292. [
  55293. {
  55294. name: "Micro",
  55295. height: math.unit(6, "inches")
  55296. },
  55297. {
  55298. name: "Normal",
  55299. height: math.unit(8, "feet"),
  55300. default: true
  55301. },
  55302. ]
  55303. ))
  55304. characterMakers.push(() => makeCharacter(
  55305. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55306. {
  55307. hyperFront: {
  55308. height: math.unit(9 + 4/12, "feet"),
  55309. weight: math.unit(2000, "lb"),
  55310. name: "Front",
  55311. image: {
  55312. source: "./media/characters/tiden/hyper-front.svg",
  55313. extra: 400/382,
  55314. bottom: 6/406
  55315. },
  55316. form: "hyper",
  55317. },
  55318. regularFront: {
  55319. height: math.unit(7 + 10/12, "feet"),
  55320. weight: math.unit(470, "lb"),
  55321. name: "Front",
  55322. image: {
  55323. source: "./media/characters/tiden/regular-front.svg",
  55324. extra: 468/442,
  55325. bottom: 6/474
  55326. },
  55327. form: "regular",
  55328. },
  55329. },
  55330. [
  55331. {
  55332. name: "Normal",
  55333. height: math.unit(9 + 4/12, "feet"),
  55334. default: true,
  55335. form: "hyper"
  55336. },
  55337. {
  55338. name: "Normal",
  55339. height: math.unit(7 + 10/12, "feet"),
  55340. default: true,
  55341. form: "regular"
  55342. },
  55343. ],
  55344. {
  55345. "hyper": {
  55346. name: "Hyper",
  55347. default: true
  55348. },
  55349. "regular": {
  55350. name: "Regular",
  55351. },
  55352. }
  55353. ))
  55354. characterMakers.push(() => makeCharacter(
  55355. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55356. {
  55357. side: {
  55358. height: math.unit(6, "feet"),
  55359. weight: math.unit(150, "lb"),
  55360. name: "Side",
  55361. image: {
  55362. source: "./media/characters/jason-crowe/side.svg",
  55363. extra: 1771/766,
  55364. bottom: 219/1990
  55365. }
  55366. },
  55367. },
  55368. [
  55369. {
  55370. name: "Pocket Gryphon",
  55371. height: math.unit(6, "cm")
  55372. },
  55373. {
  55374. name: "Raven",
  55375. height: math.unit(60, "cm")
  55376. },
  55377. {
  55378. name: "Normal",
  55379. height: math.unit(1, "meter"),
  55380. default: true
  55381. },
  55382. ]
  55383. ))
  55384. characterMakers.push(() => makeCharacter(
  55385. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55386. {
  55387. front: {
  55388. height: math.unit(9 + 6/12, "feet"),
  55389. weight: math.unit(1100, "lb"),
  55390. name: "Front",
  55391. image: {
  55392. source: "./media/characters/django/front.svg",
  55393. extra: 1231/1136,
  55394. bottom: 34/1265
  55395. }
  55396. },
  55397. side: {
  55398. height: math.unit(9 + 6/12, "feet"),
  55399. weight: math.unit(1100, "lb"),
  55400. name: "Side",
  55401. image: {
  55402. source: "./media/characters/django/side.svg",
  55403. extra: 1267/1174,
  55404. bottom: 9/1276
  55405. }
  55406. },
  55407. },
  55408. [
  55409. {
  55410. name: "Normal",
  55411. height: math.unit(9 + 6/12, "feet"),
  55412. default: true
  55413. },
  55414. {
  55415. name: "Macro 1",
  55416. height: math.unit(50, "feet")
  55417. },
  55418. {
  55419. name: "Macro 2",
  55420. height: math.unit(500, "feet")
  55421. },
  55422. {
  55423. name: "Mega Macro",
  55424. height: math.unit(5300, "feet")
  55425. },
  55426. ]
  55427. ))
  55428. characterMakers.push(() => makeCharacter(
  55429. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55430. {
  55431. frontSfw: {
  55432. height: math.unit(120, "cm"),
  55433. weight: math.unit(15, "kg"),
  55434. name: "Front (SFW)",
  55435. image: {
  55436. source: "./media/characters/eri/front-sfw.svg",
  55437. extra: 1014/939,
  55438. bottom: 37/1051
  55439. },
  55440. form: "moth",
  55441. },
  55442. frontNsfw: {
  55443. height: math.unit(120, "cm"),
  55444. weight: math.unit(15, "kg"),
  55445. name: "Front (NSFW)",
  55446. image: {
  55447. source: "./media/characters/eri/front-nsfw.svg",
  55448. extra: 1014/939,
  55449. bottom: 37/1051
  55450. },
  55451. form: "moth",
  55452. default: true
  55453. },
  55454. egg: {
  55455. height: math.unit(10, "cm"),
  55456. name: "Egg",
  55457. image: {
  55458. source: "./media/characters/eri/egg.svg"
  55459. },
  55460. form: "egg",
  55461. default: true
  55462. },
  55463. },
  55464. [
  55465. {
  55466. name: "Normal",
  55467. height: math.unit(120, "cm"),
  55468. default: true,
  55469. form: "moth"
  55470. },
  55471. {
  55472. name: "Normal",
  55473. height: math.unit(10, "cm"),
  55474. default: true,
  55475. form: "egg"
  55476. },
  55477. ],
  55478. {
  55479. "moth": {
  55480. name: "Moth",
  55481. default: true
  55482. },
  55483. "egg": {
  55484. name: "Egg",
  55485. },
  55486. }
  55487. ))
  55488. characterMakers.push(() => makeCharacter(
  55489. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55490. {
  55491. front: {
  55492. height: math.unit(200, "feet"),
  55493. name: "Front",
  55494. image: {
  55495. source: "./media/characters/bishop-dowser/front.svg",
  55496. extra: 933/868,
  55497. bottom: 106/1039
  55498. }
  55499. },
  55500. },
  55501. [
  55502. {
  55503. name: "Giant",
  55504. height: math.unit(200, "feet"),
  55505. default: true
  55506. },
  55507. ]
  55508. ))
  55509. characterMakers.push(() => makeCharacter(
  55510. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55511. {
  55512. front: {
  55513. height: math.unit(2, "meters"),
  55514. preyCapacity: math.unit(3, "people"),
  55515. name: "Front",
  55516. image: {
  55517. source: "./media/characters/fryra/front.svg",
  55518. extra: 1025/948,
  55519. bottom: 30/1055
  55520. },
  55521. extraAttributes: {
  55522. "breastVolume": {
  55523. name: "Breast Volume",
  55524. power: 3,
  55525. type: "volume",
  55526. base: math.unit(8, "liters")
  55527. },
  55528. }
  55529. },
  55530. back: {
  55531. height: math.unit(2, "meters"),
  55532. preyCapacity: math.unit(3, "people"),
  55533. name: "Back",
  55534. image: {
  55535. source: "./media/characters/fryra/back.svg",
  55536. extra: 993/938,
  55537. bottom: 38/1031
  55538. },
  55539. extraAttributes: {
  55540. "breastVolume": {
  55541. name: "Breast Volume",
  55542. power: 3,
  55543. type: "volume",
  55544. base: math.unit(8, "liters")
  55545. },
  55546. }
  55547. },
  55548. head: {
  55549. height: math.unit(1.33, "feet"),
  55550. name: "Head",
  55551. image: {
  55552. source: "./media/characters/fryra/head.svg"
  55553. }
  55554. },
  55555. maw: {
  55556. height: math.unit(0.56, "feet"),
  55557. name: "Maw",
  55558. image: {
  55559. source: "./media/characters/fryra/maw.svg"
  55560. }
  55561. },
  55562. },
  55563. [
  55564. {
  55565. name: "Micro",
  55566. height: math.unit(5, "cm")
  55567. },
  55568. {
  55569. name: "Normal",
  55570. height: math.unit(2, "meters"),
  55571. default: true
  55572. },
  55573. {
  55574. name: "Small Macro",
  55575. height: math.unit(8, "meters")
  55576. },
  55577. {
  55578. name: "Macro",
  55579. height: math.unit(50, "meters")
  55580. },
  55581. {
  55582. name: "Megamacro",
  55583. height: math.unit(1, "km")
  55584. },
  55585. {
  55586. name: "Planetary",
  55587. height: math.unit(300000, "km")
  55588. },
  55589. {
  55590. name: "Universal",
  55591. height: math.unit(250, "lightyears")
  55592. },
  55593. {
  55594. name: "Fabric of Reality",
  55595. height: math.unit(1000, "multiverses")
  55596. },
  55597. ]
  55598. ))
  55599. characterMakers.push(() => makeCharacter(
  55600. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55601. {
  55602. frontDressed: {
  55603. height: math.unit(6 + 2/12, "feet"),
  55604. name: "Front (Dressed)",
  55605. image: {
  55606. source: "./media/characters/fiera/front-dressed.svg",
  55607. extra: 1883/1793,
  55608. bottom: 70/1953
  55609. }
  55610. },
  55611. backDressed: {
  55612. height: math.unit(6 + 2/12, "feet"),
  55613. name: "Back (Dressed)",
  55614. image: {
  55615. source: "./media/characters/fiera/back-dressed.svg",
  55616. extra: 1847/1780,
  55617. bottom: 70/1917
  55618. }
  55619. },
  55620. frontNude: {
  55621. height: math.unit(6 + 2/12, "feet"),
  55622. name: "Front (Nude)",
  55623. image: {
  55624. source: "./media/characters/fiera/front-nude.svg",
  55625. extra: 1875/1785,
  55626. bottom: 66/1941
  55627. }
  55628. },
  55629. backNude: {
  55630. height: math.unit(6 + 2/12, "feet"),
  55631. name: "Back (Nude)",
  55632. image: {
  55633. source: "./media/characters/fiera/back-nude.svg",
  55634. extra: 1855/1788,
  55635. bottom: 44/1899
  55636. }
  55637. },
  55638. maw: {
  55639. height: math.unit(1.3, "feet"),
  55640. name: "Maw",
  55641. image: {
  55642. source: "./media/characters/fiera/maw.svg"
  55643. }
  55644. },
  55645. paw: {
  55646. height: math.unit(1, "feet"),
  55647. name: "Paw",
  55648. image: {
  55649. source: "./media/characters/fiera/paw.svg"
  55650. }
  55651. },
  55652. shoe: {
  55653. height: math.unit(1.05, "feet"),
  55654. name: "Shoe",
  55655. image: {
  55656. source: "./media/characters/fiera/shoe.svg"
  55657. }
  55658. },
  55659. },
  55660. [
  55661. {
  55662. name: "Normal",
  55663. height: math.unit(6 + 2/12, "feet"),
  55664. default: true
  55665. },
  55666. {
  55667. name: "Size Difference",
  55668. height: math.unit(13, "feet")
  55669. },
  55670. {
  55671. name: "Macro",
  55672. height: math.unit(60, "feet")
  55673. },
  55674. {
  55675. name: "Mega Macro",
  55676. height: math.unit(200, "feet")
  55677. },
  55678. ]
  55679. ))
  55680. characterMakers.push(() => makeCharacter(
  55681. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55682. {
  55683. back: {
  55684. height: math.unit(6, "feet"),
  55685. name: "Back",
  55686. image: {
  55687. source: "./media/characters/flare/back.svg",
  55688. extra: 1883/1765,
  55689. bottom: 32/1915
  55690. }
  55691. },
  55692. },
  55693. [
  55694. {
  55695. name: "Normal",
  55696. height: math.unit(6 + 2/12, "feet"),
  55697. default: true
  55698. },
  55699. {
  55700. name: "Size Difference",
  55701. height: math.unit(13, "feet")
  55702. },
  55703. {
  55704. name: "Macro",
  55705. height: math.unit(60, "feet")
  55706. },
  55707. {
  55708. name: "Macro 2",
  55709. height: math.unit(100, "feet")
  55710. },
  55711. {
  55712. name: "Mega Macro",
  55713. height: math.unit(200, "feet")
  55714. },
  55715. ]
  55716. ))
  55717. characterMakers.push(() => makeCharacter(
  55718. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55719. {
  55720. front: {
  55721. height: math.unit(2.2, "m"),
  55722. weight: math.unit(300, "kg"),
  55723. name: "Front",
  55724. image: {
  55725. source: "./media/characters/hanna/front.svg",
  55726. extra: 1696/1502,
  55727. bottom: 206/1902
  55728. }
  55729. },
  55730. },
  55731. [
  55732. {
  55733. name: "Humanoid",
  55734. height: math.unit(2.2, "meters")
  55735. },
  55736. {
  55737. name: "Normal",
  55738. height: math.unit(4.8, "meters"),
  55739. default: true
  55740. },
  55741. ]
  55742. ))
  55743. characterMakers.push(() => makeCharacter(
  55744. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55745. {
  55746. front: {
  55747. height: math.unit(2.8, "meters"),
  55748. name: "Front",
  55749. image: {
  55750. source: "./media/characters/argo/front.svg",
  55751. extra: 731/518,
  55752. bottom: 84/815
  55753. }
  55754. },
  55755. },
  55756. [
  55757. {
  55758. name: "Normal",
  55759. height: math.unit(3, "meters"),
  55760. default: true
  55761. },
  55762. ]
  55763. ))
  55764. characterMakers.push(() => makeCharacter(
  55765. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55766. {
  55767. side: {
  55768. height: math.unit(3.8, "meters"),
  55769. name: "Side",
  55770. image: {
  55771. source: "./media/characters/sybil/side.svg",
  55772. extra: 382/361,
  55773. bottom: 25/407
  55774. }
  55775. },
  55776. },
  55777. [
  55778. {
  55779. name: "Normal",
  55780. height: math.unit(3.8, "meters"),
  55781. default: true
  55782. },
  55783. ]
  55784. ))
  55785. characterMakers.push(() => makeCharacter(
  55786. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55787. {
  55788. side: {
  55789. height: math.unit(6, "meters"),
  55790. name: "Side",
  55791. image: {
  55792. source: "./media/characters/plum/side.svg",
  55793. extra: 858/755,
  55794. bottom: 45/903
  55795. },
  55796. form: "taur",
  55797. default: true
  55798. },
  55799. back: {
  55800. height: math.unit(6.3, "meters"),
  55801. name: "Back",
  55802. image: {
  55803. source: "./media/characters/plum/back.svg",
  55804. extra: 887/813,
  55805. bottom: 32/919
  55806. },
  55807. form: "taur",
  55808. },
  55809. feral: {
  55810. height: math.unit(5.5, "meter"),
  55811. name: "Front",
  55812. image: {
  55813. source: "./media/characters/plum/feral.svg",
  55814. extra: 568/403,
  55815. bottom: 51/619
  55816. },
  55817. form: "feral",
  55818. default: true
  55819. },
  55820. head: {
  55821. height: math.unit(1.46, "meter"),
  55822. name: "Head",
  55823. image: {
  55824. source: "./media/characters/plum/head.svg"
  55825. },
  55826. form: "taur"
  55827. },
  55828. tailTop: {
  55829. height: math.unit(5.6, "meter"),
  55830. name: "Tail (Top)",
  55831. image: {
  55832. source: "./media/characters/plum/tail-top.svg"
  55833. },
  55834. form: "taur",
  55835. },
  55836. tailBottom: {
  55837. height: math.unit(5.6, "meter"),
  55838. name: "Tail (Bottom)",
  55839. image: {
  55840. source: "./media/characters/plum/tail-bottom.svg"
  55841. },
  55842. form: "taur",
  55843. },
  55844. feralHead: {
  55845. height: math.unit(2.56549521, "meter"),
  55846. name: "Head",
  55847. image: {
  55848. source: "./media/characters/plum/head.svg"
  55849. },
  55850. form: "feral"
  55851. },
  55852. feralTailTop: {
  55853. height: math.unit(5.44728435, "meter"),
  55854. name: "Tail (Top)",
  55855. image: {
  55856. source: "./media/characters/plum/tail-top.svg"
  55857. },
  55858. form: "feral",
  55859. },
  55860. feralTailBottom: {
  55861. height: math.unit(5.44728435, "meter"),
  55862. name: "Tail (Bottom)",
  55863. image: {
  55864. source: "./media/characters/plum/tail-bottom.svg"
  55865. },
  55866. form: "feral",
  55867. },
  55868. },
  55869. [
  55870. {
  55871. name: "Normal",
  55872. height: math.unit(6, "meters"),
  55873. default: true,
  55874. form: "taur"
  55875. },
  55876. {
  55877. name: "Normal",
  55878. height: math.unit(5.5, "meters"),
  55879. default: true,
  55880. form: "feral"
  55881. },
  55882. ],
  55883. {
  55884. "taur": {
  55885. name: "Taur",
  55886. default: true
  55887. },
  55888. "feral": {
  55889. name: "Feral",
  55890. },
  55891. }
  55892. ))
  55893. characterMakers.push(() => makeCharacter(
  55894. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55895. {
  55896. front: {
  55897. height: math.unit(6, "feet"),
  55898. weight: math.unit(115, "lb"),
  55899. name: "Front",
  55900. image: {
  55901. source: "./media/characters/celeste-kitsune/front.svg",
  55902. extra: 393/366,
  55903. bottom: 7/400
  55904. }
  55905. },
  55906. side: {
  55907. height: math.unit(6, "feet"),
  55908. weight: math.unit(115, "lb"),
  55909. name: "Side",
  55910. image: {
  55911. source: "./media/characters/celeste-kitsune/side.svg",
  55912. extra: 818/765,
  55913. bottom: 40/858
  55914. }
  55915. },
  55916. },
  55917. [
  55918. {
  55919. name: "Megamacro",
  55920. height: math.unit(1500, "miles"),
  55921. default: true
  55922. },
  55923. ]
  55924. ))
  55925. characterMakers.push(() => makeCharacter(
  55926. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55927. {
  55928. front: {
  55929. height: math.unit(8, "meters"),
  55930. name: "Front",
  55931. image: {
  55932. source: "./media/characters/io/front.svg",
  55933. extra: 865/722,
  55934. bottom: 58/923
  55935. }
  55936. },
  55937. back: {
  55938. height: math.unit(8, "meters"),
  55939. name: "Back",
  55940. image: {
  55941. source: "./media/characters/io/back.svg",
  55942. extra: 920/776,
  55943. bottom: 42/962
  55944. }
  55945. },
  55946. head: {
  55947. height: math.unit(5.09, "meters"),
  55948. name: "Head",
  55949. image: {
  55950. source: "./media/characters/io/head.svg"
  55951. }
  55952. },
  55953. hand: {
  55954. height: math.unit(1.6, "meters"),
  55955. name: "Hand",
  55956. image: {
  55957. source: "./media/characters/io/hand.svg"
  55958. }
  55959. },
  55960. foot: {
  55961. height: math.unit(2.4, "meters"),
  55962. name: "Foot",
  55963. image: {
  55964. source: "./media/characters/io/foot.svg"
  55965. }
  55966. },
  55967. },
  55968. [
  55969. {
  55970. name: "Normal",
  55971. height: math.unit(8, "meters"),
  55972. default: true
  55973. },
  55974. ]
  55975. ))
  55976. characterMakers.push(() => makeCharacter(
  55977. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55978. {
  55979. side: {
  55980. height: math.unit(6 + 3/12, "feet"),
  55981. weight: math.unit(225, "lb"),
  55982. name: "Side",
  55983. image: {
  55984. source: "./media/characters/silas/side.svg",
  55985. extra: 703/653,
  55986. bottom: 23/726
  55987. },
  55988. extraAttributes: {
  55989. "pawLength": {
  55990. name: "Paw Length",
  55991. power: 1,
  55992. type: "length",
  55993. base: math.unit(12, "inches")
  55994. },
  55995. "pawWidth": {
  55996. name: "Paw Width",
  55997. power: 1,
  55998. type: "length",
  55999. base: math.unit(4.5, "inches")
  56000. },
  56001. "pawArea": {
  56002. name: "Paw Area",
  56003. power: 2,
  56004. type: "area",
  56005. base: math.unit(12 * 4.5, "inches^2")
  56006. },
  56007. }
  56008. },
  56009. },
  56010. [
  56011. {
  56012. name: "Normal",
  56013. height: math.unit(6 + 3/12, "feet"),
  56014. default: true
  56015. },
  56016. ]
  56017. ))
  56018. characterMakers.push(() => makeCharacter(
  56019. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56020. {
  56021. back: {
  56022. height: math.unit(1.6, "meters"),
  56023. weight: math.unit(150, "lb"),
  56024. name: "Back",
  56025. image: {
  56026. source: "./media/characters/zari/back.svg",
  56027. extra: 424/411,
  56028. bottom: 32/456
  56029. },
  56030. extraAttributes: {
  56031. "bladderCapacity": {
  56032. name: "Bladder Size",
  56033. power: 3,
  56034. type: "volume",
  56035. base: math.unit(500, "mL")
  56036. },
  56037. "bladderFlow": {
  56038. name: "Flow Rate",
  56039. power: 3,
  56040. type: "volume",
  56041. base: math.unit(25, "mL")
  56042. },
  56043. }
  56044. },
  56045. },
  56046. [
  56047. {
  56048. name: "Normal",
  56049. height: math.unit(1.6, "meters"),
  56050. default: true
  56051. },
  56052. ]
  56053. ))
  56054. characterMakers.push(() => makeCharacter(
  56055. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56056. {
  56057. front: {
  56058. height: math.unit(25, "feet"),
  56059. weight: math.unit(5, "tons"),
  56060. name: "Front",
  56061. image: {
  56062. source: "./media/characters/charlie-human/front.svg",
  56063. extra: 1870/1740,
  56064. bottom: 102/1972
  56065. },
  56066. extraAttributes: {
  56067. "dickLength": {
  56068. name: "Dick Length",
  56069. power: 1,
  56070. type: "length",
  56071. base: math.unit(9, "feet")
  56072. },
  56073. }
  56074. },
  56075. back: {
  56076. height: math.unit(25, "feet"),
  56077. weight: math.unit(5, "tons"),
  56078. name: "Back",
  56079. image: {
  56080. source: "./media/characters/charlie-human/back.svg",
  56081. extra: 1858/1733,
  56082. bottom: 105/1963
  56083. },
  56084. extraAttributes: {
  56085. "dickLength": {
  56086. name: "Dick Length",
  56087. power: 1,
  56088. type: "length",
  56089. base: math.unit(9, "feet")
  56090. },
  56091. }
  56092. },
  56093. },
  56094. [
  56095. {
  56096. name: "\"Normal\"",
  56097. height: math.unit(6 + 4/12, "feet")
  56098. },
  56099. {
  56100. name: "Big",
  56101. height: math.unit(25, "feet"),
  56102. default: true
  56103. },
  56104. ]
  56105. ))
  56106. characterMakers.push(() => makeCharacter(
  56107. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56108. {
  56109. front: {
  56110. height: math.unit(6 + 4/12, "feet"),
  56111. weight: math.unit(320, "lb"),
  56112. name: "Front",
  56113. image: {
  56114. source: "./media/characters/ookitsu/front.svg",
  56115. extra: 1160/976,
  56116. bottom: 38/1198
  56117. }
  56118. },
  56119. frontNsfw: {
  56120. height: math.unit(6 + 4/12, "feet"),
  56121. weight: math.unit(320, "lb"),
  56122. name: "Front (NSFW)",
  56123. image: {
  56124. source: "./media/characters/ookitsu/front-nsfw.svg",
  56125. extra: 1160/976,
  56126. bottom: 38/1198
  56127. }
  56128. },
  56129. back: {
  56130. height: math.unit(6 + 4/12, "feet"),
  56131. weight: math.unit(320, "lb"),
  56132. name: "Back",
  56133. image: {
  56134. source: "./media/characters/ookitsu/back.svg",
  56135. extra: 1030/975,
  56136. bottom: 70/1100
  56137. }
  56138. },
  56139. head: {
  56140. height: math.unit(1.79, "feet"),
  56141. name: "Head",
  56142. image: {
  56143. source: "./media/characters/ookitsu/head.svg"
  56144. }
  56145. },
  56146. hand: {
  56147. height: math.unit(0.92, "feet"),
  56148. name: "Hand",
  56149. image: {
  56150. source: "./media/characters/ookitsu/hand.svg"
  56151. }
  56152. },
  56153. tails: {
  56154. height: math.unit(3.3, "feet"),
  56155. name: "Tails",
  56156. image: {
  56157. source: "./media/characters/ookitsu/tails.svg"
  56158. }
  56159. },
  56160. dick: {
  56161. height: math.unit(1.10833, "feet"),
  56162. name: "Dick",
  56163. image: {
  56164. source: "./media/characters/ookitsu/dick.svg"
  56165. }
  56166. },
  56167. },
  56168. [
  56169. {
  56170. name: "Normal",
  56171. height: math.unit(6 + 4/12, "feet"),
  56172. default: true
  56173. },
  56174. {
  56175. name: "Macro",
  56176. height: math.unit(30, "feet")
  56177. },
  56178. ]
  56179. ))
  56180. characterMakers.push(() => makeCharacter(
  56181. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56182. {
  56183. anthroFront: {
  56184. height: math.unit(6, "feet"),
  56185. weight: math.unit(250, "lb"),
  56186. name: "Front",
  56187. image: {
  56188. source: "./media/characters/jhusky/anthro-front.svg",
  56189. extra: 474/439,
  56190. bottom: 7/481
  56191. },
  56192. form: "anthro",
  56193. default: true
  56194. },
  56195. taurSideSfw: {
  56196. height: math.unit(6 + 4/12, "feet"),
  56197. weight: math.unit(500, "lb"),
  56198. name: "Side (SFW)",
  56199. image: {
  56200. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56201. extra: 1741/1629,
  56202. bottom: 196/1937
  56203. },
  56204. form: "taur",
  56205. default: true
  56206. },
  56207. taurSideNsfw: {
  56208. height: math.unit(6 + 4/12, "feet"),
  56209. weight: math.unit(500, "lb"),
  56210. name: "Taur (NSFW)",
  56211. image: {
  56212. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56213. extra: 1741/1629,
  56214. bottom: 196/1937
  56215. },
  56216. form: "taur",
  56217. },
  56218. },
  56219. [
  56220. {
  56221. name: "Huge",
  56222. height: math.unit(500, "feet"),
  56223. form: "anthro"
  56224. },
  56225. {
  56226. name: "Macro",
  56227. height: math.unit(1000, "feet"),
  56228. default: true,
  56229. form: "anthro"
  56230. },
  56231. {
  56232. name: "Megamacro",
  56233. height: math.unit(10000, "feet"),
  56234. form: "anthro"
  56235. },
  56236. {
  56237. name: "Huge",
  56238. height: math.unit(528, "feet"),
  56239. form: "taur"
  56240. },
  56241. {
  56242. name: "Macro",
  56243. height: math.unit(1056, "feet"),
  56244. default: true,
  56245. form: "taur"
  56246. },
  56247. {
  56248. name: "Megamacro",
  56249. height: math.unit(10556, "feet"),
  56250. form: "taur"
  56251. },
  56252. ],
  56253. {
  56254. "anthro": {
  56255. name: "Anthro",
  56256. default: true
  56257. },
  56258. "taur": {
  56259. name: "Taur",
  56260. },
  56261. }
  56262. ))
  56263. characterMakers.push(() => makeCharacter(
  56264. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56265. {
  56266. front: {
  56267. height: math.unit(8, "feet"),
  56268. weight: math.unit(500, "lb"),
  56269. name: "Front",
  56270. image: {
  56271. source: "./media/characters/armail/front.svg",
  56272. extra: 1753/1669,
  56273. bottom: 155/1908
  56274. }
  56275. },
  56276. back: {
  56277. height: math.unit(8, "feet"),
  56278. weight: math.unit(500, "lb"),
  56279. name: "Back",
  56280. image: {
  56281. source: "./media/characters/armail/back.svg",
  56282. extra: 1872/1803,
  56283. bottom: 63/1935
  56284. }
  56285. },
  56286. },
  56287. [
  56288. {
  56289. name: "Micro",
  56290. height: math.unit(0.25, "feet")
  56291. },
  56292. {
  56293. name: "Normal",
  56294. height: math.unit(8, "feet"),
  56295. default: true
  56296. },
  56297. {
  56298. name: "Mini-macro",
  56299. height: math.unit(30, "feet")
  56300. },
  56301. {
  56302. name: "Macro",
  56303. height: math.unit(400, "feet")
  56304. },
  56305. {
  56306. name: "Mega-macro",
  56307. height: math.unit(6000, "feet")
  56308. },
  56309. ]
  56310. ))
  56311. characterMakers.push(() => makeCharacter(
  56312. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56313. {
  56314. front: {
  56315. height: math.unit(6 + 7/12, "feet"),
  56316. weight: math.unit(210, "lb"),
  56317. name: "Front",
  56318. image: {
  56319. source: "./media/characters/wilfred-t-buxton/front.svg",
  56320. extra: 1068/882,
  56321. bottom: 28/1096
  56322. }
  56323. },
  56324. },
  56325. [
  56326. {
  56327. name: "Normal",
  56328. height: math.unit(6 + 7/12, "feet"),
  56329. default: true
  56330. },
  56331. ]
  56332. ))
  56333. characterMakers.push(() => makeCharacter(
  56334. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56335. {
  56336. front: {
  56337. height: math.unit(5 + 2/12, "feet"),
  56338. weight: math.unit(120, "lb"),
  56339. name: "Front",
  56340. image: {
  56341. source: "./media/characters/leighton-marrow/front.svg",
  56342. extra: 441/409,
  56343. bottom: 37/478
  56344. }
  56345. },
  56346. },
  56347. [
  56348. {
  56349. name: "Normal",
  56350. height: math.unit(5 + 2/12, "feet"),
  56351. default: true
  56352. },
  56353. ]
  56354. ))
  56355. characterMakers.push(() => makeCharacter(
  56356. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56357. {
  56358. front: {
  56359. height: math.unit(4, "meters"),
  56360. weight: math.unit(1200, "kg"),
  56361. name: "Front",
  56362. image: {
  56363. source: "./media/characters/licos/front.svg",
  56364. extra: 1727/1604,
  56365. bottom: 101/1828
  56366. },
  56367. form: "anthro",
  56368. default: true
  56369. },
  56370. taur_side: {
  56371. height: math.unit(20, "meters"),
  56372. weight: math.unit(1100000, "kg"),
  56373. name: "Side",
  56374. image: {
  56375. source: "./media/characters/licos/taur.svg",
  56376. extra: 1158/1091,
  56377. bottom: 80/1238
  56378. },
  56379. form: "taur",
  56380. default: true
  56381. },
  56382. },
  56383. [
  56384. {
  56385. name: "Normal",
  56386. height: math.unit(4, "meters"),
  56387. default: true,
  56388. form: "anthro"
  56389. },
  56390. {
  56391. name: "Normal",
  56392. height: math.unit(20, "meters"),
  56393. default: true,
  56394. form: "taur"
  56395. },
  56396. ],
  56397. {
  56398. "anthro": {
  56399. name: "Anthro",
  56400. default: true
  56401. },
  56402. "taur": {
  56403. name: "Taur",
  56404. },
  56405. }
  56406. ))
  56407. characterMakers.push(() => makeCharacter(
  56408. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56409. {
  56410. front: {
  56411. height: math.unit(10 + 3/12, "feet"),
  56412. name: "Front",
  56413. image: {
  56414. source: "./media/characters/theo-monkey/front.svg",
  56415. extra: 1735/1658,
  56416. bottom: 73/1808
  56417. }
  56418. },
  56419. back: {
  56420. height: math.unit(10 + 3/12, "feet"),
  56421. name: "Back",
  56422. image: {
  56423. source: "./media/characters/theo-monkey/back.svg",
  56424. extra: 1742/1664,
  56425. bottom: 33/1775
  56426. }
  56427. },
  56428. head: {
  56429. height: math.unit(2.29, "feet"),
  56430. name: "Head",
  56431. image: {
  56432. source: "./media/characters/theo-monkey/head.svg"
  56433. }
  56434. },
  56435. handPalm: {
  56436. height: math.unit(1.73, "feet"),
  56437. name: "Hand (Palm)",
  56438. image: {
  56439. source: "./media/characters/theo-monkey/hand-palm.svg"
  56440. }
  56441. },
  56442. handBack: {
  56443. height: math.unit(1.63, "feet"),
  56444. name: "Hand (Back)",
  56445. image: {
  56446. source: "./media/characters/theo-monkey/hand-back.svg"
  56447. }
  56448. },
  56449. footSole: {
  56450. height: math.unit(2.15, "feet"),
  56451. name: "Foot (Sole)",
  56452. image: {
  56453. source: "./media/characters/theo-monkey/foot-sole.svg"
  56454. }
  56455. },
  56456. footSide: {
  56457. height: math.unit(1.6, "feet"),
  56458. name: "Foot (Side)",
  56459. image: {
  56460. source: "./media/characters/theo-monkey/foot-side.svg"
  56461. }
  56462. },
  56463. },
  56464. [
  56465. {
  56466. name: "Normal",
  56467. height: math.unit(10 + 3/12, "feet"),
  56468. default: true
  56469. },
  56470. ]
  56471. ))
  56472. characterMakers.push(() => makeCharacter(
  56473. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56474. {
  56475. front: {
  56476. height: math.unit(11, "feet"),
  56477. weight: math.unit(3000, "lb"),
  56478. preyCapacity: math.unit(10, "people"),
  56479. name: "Front",
  56480. image: {
  56481. source: "./media/characters/brook/front.svg",
  56482. extra: 909/835,
  56483. bottom: 108/1017
  56484. }
  56485. },
  56486. back: {
  56487. height: math.unit(11, "feet"),
  56488. weight: math.unit(3000, "lb"),
  56489. preyCapacity: math.unit(10, "people"),
  56490. name: "Back",
  56491. image: {
  56492. source: "./media/characters/brook/back.svg",
  56493. extra: 976/916,
  56494. bottom: 34/1010
  56495. }
  56496. },
  56497. backAlt: {
  56498. height: math.unit(11, "feet"),
  56499. weight: math.unit(3000, "lb"),
  56500. preyCapacity: math.unit(10, "people"),
  56501. name: "Back (Alt)",
  56502. image: {
  56503. source: "./media/characters/brook/back-alt.svg",
  56504. extra: 1283/1213,
  56505. bottom: 35/1318
  56506. }
  56507. },
  56508. bust: {
  56509. height: math.unit(9.0859030837, "feet"),
  56510. weight: math.unit(3000, "lb"),
  56511. preyCapacity: math.unit(10, "people"),
  56512. name: "Bust",
  56513. image: {
  56514. source: "./media/characters/brook/bust.svg",
  56515. extra: 2043/1923,
  56516. bottom: 0/2043
  56517. }
  56518. },
  56519. },
  56520. [
  56521. {
  56522. name: "Small",
  56523. height: math.unit(11, "feet"),
  56524. default: true
  56525. },
  56526. {
  56527. name: "Towering",
  56528. height: math.unit(5, "km")
  56529. },
  56530. {
  56531. name: "Enormous",
  56532. height: math.unit(25, "earths")
  56533. },
  56534. ]
  56535. ))
  56536. characterMakers.push(() => makeCharacter(
  56537. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56538. {
  56539. front: {
  56540. height: math.unit(4, "feet"),
  56541. weight: math.unit(150, "lb"),
  56542. name: "Front",
  56543. image: {
  56544. source: "./media/characters/squishi/front.svg",
  56545. extra: 1428/1271,
  56546. bottom: 30/1458
  56547. },
  56548. extraAttributes: {
  56549. "pawSize": {
  56550. name: "Paw Size",
  56551. power: 1,
  56552. type: "length",
  56553. base: math.unit(14, "ShoeSizeMensUS"),
  56554. defaultUnit: "ShoeSizeMensUS"
  56555. },
  56556. }
  56557. },
  56558. side: {
  56559. height: math.unit(4, "feet"),
  56560. weight: math.unit(150, "lb"),
  56561. name: "Side",
  56562. image: {
  56563. source: "./media/characters/squishi/side.svg",
  56564. extra: 1428/1271,
  56565. bottom: 30/1458
  56566. },
  56567. extraAttributes: {
  56568. "pawSize": {
  56569. name: "Paw Size",
  56570. power: 1,
  56571. type: "length",
  56572. base: math.unit(14, "ShoeSizeMensUS"),
  56573. defaultUnit: "ShoeSizeMensUS"
  56574. },
  56575. }
  56576. },
  56577. back: {
  56578. height: math.unit(4, "feet"),
  56579. weight: math.unit(150, "lb"),
  56580. name: "Back",
  56581. image: {
  56582. source: "./media/characters/squishi/back.svg",
  56583. extra: 1428/1271,
  56584. bottom: 30/1458
  56585. },
  56586. extraAttributes: {
  56587. "pawSize": {
  56588. name: "Paw Size",
  56589. power: 1,
  56590. type: "length",
  56591. base: math.unit(14, "ShoeSizeMensUS"),
  56592. defaultUnit: "ShoeSizeMensUS"
  56593. },
  56594. }
  56595. },
  56596. },
  56597. [
  56598. {
  56599. name: "Normal",
  56600. height: math.unit(4, "feet"),
  56601. default: true
  56602. },
  56603. ]
  56604. ))
  56605. characterMakers.push(() => makeCharacter(
  56606. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56607. {
  56608. front: {
  56609. height: math.unit(7 + 8/12, "feet"),
  56610. weight: math.unit(333, "lb"),
  56611. name: "Front",
  56612. image: {
  56613. source: "./media/characters/vincent-vasroc/front.svg",
  56614. extra: 1962/1860,
  56615. bottom: 41/2003
  56616. }
  56617. },
  56618. back: {
  56619. height: math.unit(7 + 8/12, "feet"),
  56620. weight: math.unit(333, "lb"),
  56621. name: "Back",
  56622. image: {
  56623. source: "./media/characters/vincent-vasroc/back.svg",
  56624. extra: 1952/1815,
  56625. bottom: 33/1985
  56626. }
  56627. },
  56628. paw: {
  56629. height: math.unit(1.24, "feet"),
  56630. name: "Paw",
  56631. image: {
  56632. source: "./media/characters/vincent-vasroc/paw.svg"
  56633. }
  56634. },
  56635. ear: {
  56636. height: math.unit(0.75, "feet"),
  56637. name: "Ear",
  56638. image: {
  56639. source: "./media/characters/vincent-vasroc/ear.svg"
  56640. }
  56641. },
  56642. },
  56643. [
  56644. {
  56645. name: "Nano",
  56646. height: math.unit(92, "micrometers")
  56647. },
  56648. {
  56649. name: "Normal",
  56650. height: math.unit(7 + 8/12, "feet"),
  56651. default: true
  56652. },
  56653. ]
  56654. ))
  56655. characterMakers.push(() => makeCharacter(
  56656. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56657. {
  56658. frontNsfw: {
  56659. height: math.unit(40, "feet"),
  56660. weight: math.unit(58, "tons"),
  56661. name: "Front (NSFW)",
  56662. image: {
  56663. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56664. extra: 1265/965,
  56665. bottom: 155/1420
  56666. }
  56667. },
  56668. frontSfw: {
  56669. height: math.unit(40, "feet"),
  56670. weight: math.unit(58, "tons"),
  56671. name: "Front (SFW)",
  56672. image: {
  56673. source: "./media/characters/ru-kahn/front-sfw.svg",
  56674. extra: 1265/965,
  56675. bottom: 80/1345
  56676. }
  56677. },
  56678. },
  56679. [
  56680. {
  56681. name: "Small",
  56682. height: math.unit(4, "feet")
  56683. },
  56684. {
  56685. name: "Normal",
  56686. height: math.unit(40, "feet"),
  56687. default: true
  56688. },
  56689. {
  56690. name: "Macro",
  56691. height: math.unit(400, "feet")
  56692. },
  56693. ]
  56694. ))
  56695. characterMakers.push(() => makeCharacter(
  56696. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56697. {
  56698. frontNude: {
  56699. height: math.unit(6 + 5/12, "feet"),
  56700. name: "Front (Nude)",
  56701. image: {
  56702. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56703. extra: 1369/1366,
  56704. bottom: 68/1437
  56705. }
  56706. },
  56707. frontDressed: {
  56708. height: math.unit(6 + 5/12, "feet"),
  56709. name: "Front (Dressed)",
  56710. image: {
  56711. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56712. extra: 1369/1366,
  56713. bottom: 68/1437
  56714. }
  56715. },
  56716. },
  56717. [
  56718. {
  56719. name: "Normal",
  56720. height: math.unit(6 + 5/12, "feet"),
  56721. default: true
  56722. },
  56723. {
  56724. name: "Maximum",
  56725. height: math.unit(1930, "feet")
  56726. },
  56727. ]
  56728. ))
  56729. characterMakers.push(() => makeCharacter(
  56730. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56731. {
  56732. front: {
  56733. height: math.unit(5 + 6/12, "feet"),
  56734. name: "Front",
  56735. image: {
  56736. source: "./media/characters/kaja/front.svg",
  56737. extra: 1874/1514,
  56738. bottom: 117/1991
  56739. }
  56740. },
  56741. },
  56742. [
  56743. {
  56744. name: "Normal",
  56745. height: math.unit(5 + 6/12, "feet"),
  56746. default: true
  56747. },
  56748. ]
  56749. ))
  56750. characterMakers.push(() => makeCharacter(
  56751. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56752. {
  56753. front: {
  56754. height: math.unit(5 + 9/12, "feet"),
  56755. weight: math.unit(200, "lb"),
  56756. name: "Front",
  56757. image: {
  56758. source: "./media/characters/mark-smith/front.svg",
  56759. extra: 1004/943,
  56760. bottom: 58/1062
  56761. }
  56762. },
  56763. back: {
  56764. height: math.unit(5 + 9/12, "feet"),
  56765. weight: math.unit(200, "lb"),
  56766. name: "Back",
  56767. image: {
  56768. source: "./media/characters/mark-smith/back.svg",
  56769. extra: 1023/953,
  56770. bottom: 24/1047
  56771. }
  56772. },
  56773. head: {
  56774. height: math.unit(1.82, "feet"),
  56775. name: "Head",
  56776. image: {
  56777. source: "./media/characters/mark-smith/head.svg"
  56778. }
  56779. },
  56780. hand: {
  56781. height: math.unit(1.4, "feet"),
  56782. name: "Hand",
  56783. image: {
  56784. source: "./media/characters/mark-smith/hand.svg"
  56785. }
  56786. },
  56787. paw: {
  56788. height: math.unit(1.69, "feet"),
  56789. name: "Paw",
  56790. image: {
  56791. source: "./media/characters/mark-smith/paw.svg"
  56792. }
  56793. },
  56794. },
  56795. [
  56796. {
  56797. name: "Micro",
  56798. height: math.unit(0.25, "inches")
  56799. },
  56800. {
  56801. name: "Normal",
  56802. height: math.unit(5 + 9/12, "feet"),
  56803. default: true
  56804. },
  56805. {
  56806. name: "Macro",
  56807. height: math.unit(500, "feet")
  56808. },
  56809. ]
  56810. ))
  56811. characterMakers.push(() => makeCharacter(
  56812. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56813. {
  56814. frontNude: {
  56815. height: math.unit(6, "feet"),
  56816. name: "Front (Nude)",
  56817. image: {
  56818. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56819. extra: 1384/1321,
  56820. bottom: 57/1441
  56821. }
  56822. },
  56823. frontDressed: {
  56824. height: math.unit(6, "feet"),
  56825. name: "Front (Dressed)",
  56826. image: {
  56827. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56828. extra: 1384/1321,
  56829. bottom: 57/1441
  56830. }
  56831. },
  56832. },
  56833. [
  56834. {
  56835. name: "Normal",
  56836. height: math.unit(6, "feet"),
  56837. default: true
  56838. },
  56839. {
  56840. name: "Maximum",
  56841. height: math.unit(1776, "feet")
  56842. },
  56843. ]
  56844. ))
  56845. characterMakers.push(() => makeCharacter(
  56846. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56847. {
  56848. front: {
  56849. height: math.unit(2 + 4/12, "feet"),
  56850. weight: math.unit(350, "lb"),
  56851. name: "Front",
  56852. image: {
  56853. source: "./media/characters/devos/front.svg",
  56854. extra: 958/852,
  56855. bottom: 143/1101
  56856. }
  56857. },
  56858. },
  56859. [
  56860. {
  56861. name: "Base",
  56862. height: math.unit(2 + 4/12, "feet"),
  56863. default: true
  56864. },
  56865. ]
  56866. ))
  56867. characterMakers.push(() => makeCharacter(
  56868. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56869. {
  56870. front: {
  56871. height: math.unit(9 + 2/12, "feet"),
  56872. name: "Front",
  56873. image: {
  56874. source: "./media/characters/hiveheart/front.svg",
  56875. extra: 394/364,
  56876. bottom: 65/459
  56877. }
  56878. },
  56879. back: {
  56880. height: math.unit(9 + 2/12, "feet"),
  56881. name: "Back",
  56882. image: {
  56883. source: "./media/characters/hiveheart/back.svg",
  56884. extra: 374/357,
  56885. bottom: 63/437
  56886. }
  56887. },
  56888. },
  56889. [
  56890. {
  56891. name: "Base",
  56892. height: math.unit(9 + 2/12, "feet"),
  56893. default: true
  56894. },
  56895. ]
  56896. ))
  56897. characterMakers.push(() => makeCharacter(
  56898. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56899. {
  56900. front: {
  56901. height: math.unit(2.5, "inches"),
  56902. weight: math.unit(0.6, "oz"),
  56903. name: "Front",
  56904. image: {
  56905. source: "./media/characters/bryn/front.svg",
  56906. extra: 1484/1119,
  56907. bottom: 66/1550
  56908. }
  56909. },
  56910. back: {
  56911. height: math.unit(2.5, "inches"),
  56912. weight: math.unit(0.6, "oz"),
  56913. name: "Back",
  56914. image: {
  56915. source: "./media/characters/bryn/back.svg",
  56916. extra: 1472/1170,
  56917. bottom: 32/1504
  56918. }
  56919. },
  56920. wings: {
  56921. height: math.unit(2.5, "inches"),
  56922. weight: math.unit(0.6, "oz"),
  56923. name: "Wings",
  56924. image: {
  56925. source: "./media/characters/bryn/wings.svg",
  56926. extra: 567/448,
  56927. bottom: 10/577
  56928. }
  56929. },
  56930. dressed: {
  56931. height: math.unit(2.5, "inches"),
  56932. weight: math.unit(0.6, "oz"),
  56933. name: "Dressed",
  56934. image: {
  56935. source: "./media/characters/bryn/dressed.svg",
  56936. extra: 719/589,
  56937. bottom: 54/773
  56938. }
  56939. },
  56940. head: {
  56941. height: math.unit(1.75, "inches"),
  56942. name: "Head",
  56943. image: {
  56944. source: "./media/characters/bryn/head.svg"
  56945. }
  56946. },
  56947. foot: {
  56948. height: math.unit(0.4, "inches"),
  56949. name: "Foot",
  56950. image: {
  56951. source: "./media/characters/bryn/foot.svg"
  56952. }
  56953. },
  56954. },
  56955. [
  56956. {
  56957. name: "Normal",
  56958. height: math.unit(2.5, "inches"),
  56959. default: true
  56960. },
  56961. ]
  56962. ))
  56963. characterMakers.push(() => makeCharacter(
  56964. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56965. {
  56966. side: {
  56967. height: math.unit(7, "feet"),
  56968. weight: math.unit(657, "kg"),
  56969. name: "Side",
  56970. image: {
  56971. source: "./media/characters/delta/side.svg",
  56972. extra: 781/212,
  56973. bottom: 7/788
  56974. },
  56975. extraAttributes: {
  56976. "wingspan": {
  56977. name: "Wingspan",
  56978. power: 1,
  56979. type: "length",
  56980. base: math.unit(48, "feet")
  56981. },
  56982. "length": {
  56983. name: "Length",
  56984. power: 1,
  56985. type: "length",
  56986. base: math.unit(21, "feet")
  56987. },
  56988. "pawSize": {
  56989. name: "Paw Size",
  56990. power: 2,
  56991. type: "area",
  56992. base: math.unit(1.5*1.4, "feet^2")
  56993. },
  56994. }
  56995. },
  56996. },
  56997. [
  56998. {
  56999. name: "Normal",
  57000. height: math.unit(6, "feet"),
  57001. default: true
  57002. },
  57003. ]
  57004. ))
  57005. characterMakers.push(() => makeCharacter(
  57006. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57007. {
  57008. front: {
  57009. height: math.unit(6, "feet"),
  57010. name: "Front",
  57011. image: {
  57012. source: "./media/characters/pyrow/front.svg",
  57013. extra: 513/486,
  57014. bottom: 14/527
  57015. }
  57016. },
  57017. frontWing: {
  57018. height: math.unit(6, "feet"),
  57019. name: "Front (Wing)",
  57020. image: {
  57021. source: "./media/characters/pyrow/front-wing.svg",
  57022. extra: 539/383,
  57023. bottom: 20/559
  57024. }
  57025. },
  57026. back: {
  57027. height: math.unit(6, "feet"),
  57028. name: "Back",
  57029. image: {
  57030. source: "./media/characters/pyrow/back.svg",
  57031. extra: 500/473,
  57032. bottom: 9/509
  57033. }
  57034. },
  57035. },
  57036. [
  57037. {
  57038. name: "Normal",
  57039. height: math.unit(6, "feet"),
  57040. default: true
  57041. },
  57042. ]
  57043. ))
  57044. characterMakers.push(() => makeCharacter(
  57045. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57046. {
  57047. front: {
  57048. height: math.unit(5, "meters"),
  57049. weight: math.unit(3, "tonnes"),
  57050. name: "Front",
  57051. image: {
  57052. source: "./media/characters/velikan/front.svg",
  57053. extra: 867/744,
  57054. bottom: 71/938
  57055. },
  57056. extraAttributes: {
  57057. "shoeSize": {
  57058. name: "Shoe Size",
  57059. power: 1,
  57060. type: "length",
  57061. base: math.unit(135, "ShoeSizeUK"),
  57062. defaultUnit: "ShoeSizeUK"
  57063. },
  57064. }
  57065. },
  57066. },
  57067. [
  57068. {
  57069. name: "Normal",
  57070. height: math.unit(5, "meters"),
  57071. default: true
  57072. },
  57073. {
  57074. name: "Macro",
  57075. height: math.unit(1, "km")
  57076. },
  57077. {
  57078. name: "Mega Macro",
  57079. height: math.unit(100, "km")
  57080. },
  57081. {
  57082. name: "Giga Macro",
  57083. height: math.unit(2, "megameters")
  57084. },
  57085. {
  57086. name: "Planetary",
  57087. height: math.unit(22, "megameters")
  57088. },
  57089. {
  57090. name: "Solar",
  57091. height: math.unit(8, "gigameters")
  57092. },
  57093. {
  57094. name: "Cosmic",
  57095. height: math.unit(10, "zettameters")
  57096. },
  57097. {
  57098. name: "Omni",
  57099. height: math.unit(9e260, "multiverses")
  57100. },
  57101. ]
  57102. ))
  57103. characterMakers.push(() => makeCharacter(
  57104. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57105. {
  57106. front: {
  57107. height: math.unit(4 + 3/12, "feet"),
  57108. weight: math.unit(90, "lb"),
  57109. name: "Front",
  57110. image: {
  57111. source: "./media/characters/sabiki/front.svg",
  57112. extra: 1662/1423,
  57113. bottom: 65/1727
  57114. }
  57115. },
  57116. },
  57117. [
  57118. {
  57119. name: "Normal",
  57120. height: math.unit(4 + 3/12, "feet"),
  57121. default: true
  57122. },
  57123. ]
  57124. ))
  57125. characterMakers.push(() => makeCharacter(
  57126. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57127. {
  57128. frontSfw: {
  57129. height: math.unit(2, "mm"),
  57130. name: "Front (SFW)",
  57131. image: {
  57132. source: "./media/characters/carmel/front-sfw.svg",
  57133. extra: 1131/1006,
  57134. bottom: 66/1197
  57135. }
  57136. },
  57137. frontNsfw: {
  57138. height: math.unit(2, "mm"),
  57139. name: "Front (NSFW)",
  57140. image: {
  57141. source: "./media/characters/carmel/front-nsfw.svg",
  57142. extra: 1131/1006,
  57143. bottom: 66/1197
  57144. }
  57145. },
  57146. foot: {
  57147. height: math.unit(0.3, "mm"),
  57148. name: "Foot",
  57149. image: {
  57150. source: "./media/characters/carmel/foot.svg"
  57151. }
  57152. },
  57153. tongue: {
  57154. height: math.unit(0.71, "mm"),
  57155. name: "Tongue",
  57156. image: {
  57157. source: "./media/characters/carmel/tongue.svg"
  57158. }
  57159. },
  57160. dick: {
  57161. height: math.unit(0.085, "mm"),
  57162. name: "Dick",
  57163. image: {
  57164. source: "./media/characters/carmel/dick.svg"
  57165. }
  57166. },
  57167. },
  57168. [
  57169. {
  57170. name: "Micro",
  57171. height: math.unit(2, "mm"),
  57172. default: true
  57173. },
  57174. {
  57175. name: "Normal",
  57176. height: math.unit(4 + 8/12, "feet")
  57177. },
  57178. {
  57179. name: "Mega Macro",
  57180. height: math.unit(250, "feet")
  57181. },
  57182. {
  57183. name: "BIGGER",
  57184. height: math.unit(1000, "feet")
  57185. },
  57186. {
  57187. name: "BIGGEST",
  57188. height: math.unit(2, "miles")
  57189. },
  57190. ]
  57191. ))
  57192. characterMakers.push(() => makeCharacter(
  57193. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57194. {
  57195. front: {
  57196. height: math.unit(6.5, "feet"),
  57197. weight: math.unit(198, "lb"),
  57198. name: "Front",
  57199. image: {
  57200. source: "./media/characters/tamani/anthro.svg",
  57201. extra: 930/890,
  57202. bottom: 34/964
  57203. },
  57204. form: "anthro",
  57205. default: true
  57206. },
  57207. side: {
  57208. height: math.unit(6, "feet"),
  57209. weight: math.unit(198*2, "lb"),
  57210. name: "Side",
  57211. image: {
  57212. source: "./media/characters/tamani/feral.svg",
  57213. extra: 559/519,
  57214. bottom: 43/602
  57215. },
  57216. form: "feral"
  57217. },
  57218. },
  57219. [
  57220. {
  57221. name: "Normal",
  57222. height: math.unit(6.5, "feet"),
  57223. default: true,
  57224. form: "anthro"
  57225. },
  57226. {
  57227. name: "Normal",
  57228. height: math.unit(6, "feet"),
  57229. default: true,
  57230. form: "feral"
  57231. },
  57232. ],
  57233. {
  57234. "anthro": {
  57235. name: "Anthro",
  57236. default: true
  57237. },
  57238. "feral": {
  57239. name: "Feral",
  57240. },
  57241. }
  57242. ))
  57243. characterMakers.push(() => makeCharacter(
  57244. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57245. {
  57246. front: {
  57247. height: math.unit(4 + 1/12, "feet"),
  57248. weight: math.unit(114, "lb"),
  57249. name: "Front",
  57250. image: {
  57251. source: "./media/characters/dex/front.svg",
  57252. extra: 787/680,
  57253. bottom: 18/805
  57254. }
  57255. },
  57256. side: {
  57257. height: math.unit(4 + 1/12, "feet"),
  57258. weight: math.unit(114, "lb"),
  57259. name: "Side",
  57260. image: {
  57261. source: "./media/characters/dex/side.svg",
  57262. extra: 785/680,
  57263. bottom: 12/797
  57264. }
  57265. },
  57266. back: {
  57267. height: math.unit(4 + 1/12, "feet"),
  57268. weight: math.unit(114, "lb"),
  57269. name: "Back",
  57270. image: {
  57271. source: "./media/characters/dex/back.svg",
  57272. extra: 785/681,
  57273. bottom: 17/802
  57274. }
  57275. },
  57276. loungewear: {
  57277. height: math.unit(4 + 1/12, "feet"),
  57278. weight: math.unit(114, "lb"),
  57279. name: "Loungewear",
  57280. image: {
  57281. source: "./media/characters/dex/loungewear.svg",
  57282. extra: 787/680,
  57283. bottom: 18/805
  57284. }
  57285. },
  57286. workout: {
  57287. height: math.unit(4 + 1/12, "feet"),
  57288. weight: math.unit(114, "lb"),
  57289. name: "Workout",
  57290. image: {
  57291. source: "./media/characters/dex/workout.svg",
  57292. extra: 787/680,
  57293. bottom: 18/805
  57294. }
  57295. },
  57296. schoolUniform: {
  57297. height: math.unit(4 + 1/12, "feet"),
  57298. weight: math.unit(114, "lb"),
  57299. name: "School-uniform",
  57300. image: {
  57301. source: "./media/characters/dex/school-uniform.svg",
  57302. extra: 787/680,
  57303. bottom: 18/805
  57304. }
  57305. },
  57306. maw: {
  57307. height: math.unit(0.55, "feet"),
  57308. name: "Maw",
  57309. image: {
  57310. source: "./media/characters/dex/maw.svg"
  57311. }
  57312. },
  57313. paw: {
  57314. height: math.unit(0.87, "feet"),
  57315. name: "Paw",
  57316. image: {
  57317. source: "./media/characters/dex/paw.svg"
  57318. }
  57319. },
  57320. bust: {
  57321. height: math.unit(1.67, "feet"),
  57322. name: "Bust",
  57323. image: {
  57324. source: "./media/characters/dex/bust.svg"
  57325. }
  57326. },
  57327. },
  57328. [
  57329. {
  57330. name: "Normal",
  57331. height: math.unit(4 + 1/12, "feet"),
  57332. default: true
  57333. },
  57334. ]
  57335. ))
  57336. characterMakers.push(() => makeCharacter(
  57337. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57338. {
  57339. front: {
  57340. height: math.unit(4 + 3/12, "feet"),
  57341. weight: math.unit(60, "lb"),
  57342. name: "Front",
  57343. image: {
  57344. source: "./media/characters/silke/front.svg",
  57345. extra: 1334/1122,
  57346. bottom: 21/1355
  57347. }
  57348. },
  57349. back: {
  57350. height: math.unit(4 + 3/12, "feet"),
  57351. weight: math.unit(60, "lb"),
  57352. name: "Back",
  57353. image: {
  57354. source: "./media/characters/silke/back.svg",
  57355. extra: 1328/1092,
  57356. bottom: 16/1344
  57357. }
  57358. },
  57359. dressed: {
  57360. height: math.unit(4 + 3/12, "feet"),
  57361. weight: math.unit(60, "lb"),
  57362. name: "Dressed",
  57363. image: {
  57364. source: "./media/characters/silke/dressed.svg",
  57365. extra: 1334/1122,
  57366. bottom: 43/1377
  57367. }
  57368. },
  57369. },
  57370. [
  57371. {
  57372. name: "Normal",
  57373. height: math.unit(4 + 3/12, "feet"),
  57374. default: true
  57375. },
  57376. ]
  57377. ))
  57378. characterMakers.push(() => makeCharacter(
  57379. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57380. {
  57381. front: {
  57382. height: math.unit(1.58, "meters"),
  57383. weight: math.unit(47, "kg"),
  57384. name: "Front",
  57385. image: {
  57386. source: "./media/characters/wireshark/front.svg",
  57387. extra: 883/838,
  57388. bottom: 66/949
  57389. }
  57390. },
  57391. },
  57392. [
  57393. {
  57394. name: "Normal",
  57395. height: math.unit(1.58, "meters"),
  57396. default: true
  57397. },
  57398. ]
  57399. ))
  57400. characterMakers.push(() => makeCharacter(
  57401. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57402. {
  57403. front: {
  57404. height: math.unit(6, "meters"),
  57405. weight: math.unit(15000, "kg"),
  57406. name: "Front",
  57407. image: {
  57408. source: "./media/characters/gallagher/front.svg",
  57409. extra: 532/493,
  57410. bottom: 0/532
  57411. }
  57412. },
  57413. },
  57414. [
  57415. {
  57416. name: "Normal",
  57417. height: math.unit(6, "meters"),
  57418. default: true
  57419. },
  57420. ]
  57421. ))
  57422. characterMakers.push(() => makeCharacter(
  57423. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57424. {
  57425. front: {
  57426. height: math.unit(2.4, "meters"),
  57427. weight: math.unit(270, "kg"),
  57428. name: "Front",
  57429. image: {
  57430. source: "./media/characters/alice/front.svg",
  57431. extra: 950/900,
  57432. bottom: 36/986
  57433. }
  57434. },
  57435. side: {
  57436. height: math.unit(2.4, "meters"),
  57437. weight: math.unit(270, "kg"),
  57438. name: "Side",
  57439. image: {
  57440. source: "./media/characters/alice/side.svg",
  57441. extra: 921/876,
  57442. bottom: 19/940
  57443. }
  57444. },
  57445. dressed: {
  57446. height: math.unit(2.4, "meters"),
  57447. weight: math.unit(270, "kg"),
  57448. name: "Dressed",
  57449. image: {
  57450. source: "./media/characters/alice/dressed.svg",
  57451. extra: 905/850,
  57452. bottom: 81/986
  57453. }
  57454. },
  57455. fishnet: {
  57456. height: math.unit(2.4, "meters"),
  57457. weight: math.unit(270, "kg"),
  57458. name: "Fishnet",
  57459. image: {
  57460. source: "./media/characters/alice/fishnet.svg",
  57461. extra: 905/850,
  57462. bottom: 81/986
  57463. }
  57464. },
  57465. },
  57466. [
  57467. {
  57468. name: "Normal",
  57469. height: math.unit(2.4, "meters"),
  57470. default: true
  57471. },
  57472. ]
  57473. ))
  57474. characterMakers.push(() => makeCharacter(
  57475. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57476. {
  57477. front: {
  57478. height: math.unit(175.25, "feet"),
  57479. name: "Front",
  57480. image: {
  57481. source: "./media/characters/fio/front.svg",
  57482. extra: 1883/1591,
  57483. bottom: 34/1917
  57484. }
  57485. },
  57486. },
  57487. [
  57488. {
  57489. name: "Normal",
  57490. height: math.unit(175.25, "cm"),
  57491. default: true
  57492. },
  57493. ]
  57494. ))
  57495. characterMakers.push(() => makeCharacter(
  57496. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57497. {
  57498. side: {
  57499. height: math.unit(6, "meters"),
  57500. weight: math.unit(3400, "kg"),
  57501. preyCapacity: math.unit(1700, "liters"),
  57502. name: "Side",
  57503. image: {
  57504. source: "./media/characters/hass/side.svg",
  57505. extra: 1058/997,
  57506. bottom: 177/1235
  57507. }
  57508. },
  57509. feeding: {
  57510. height: math.unit(6*0.63, "meters"),
  57511. weight: math.unit(3400, "kg"),
  57512. preyCapacity: math.unit(1700, "liters"),
  57513. name: "Feeding",
  57514. image: {
  57515. source: "./media/characters/hass/feeding.svg",
  57516. extra: 689/579,
  57517. bottom: 146/835
  57518. }
  57519. },
  57520. guts: {
  57521. height: math.unit(6, "meters"),
  57522. weight: math.unit(3400, "kg"),
  57523. name: "Guts",
  57524. image: {
  57525. source: "./media/characters/hass/guts.svg",
  57526. extra: 1223/1198,
  57527. bottom: 182/1405
  57528. }
  57529. },
  57530. dickFront: {
  57531. height: math.unit(1.4, "meters"),
  57532. name: "Dick (Front)",
  57533. image: {
  57534. source: "./media/characters/hass/dick-front.svg"
  57535. }
  57536. },
  57537. dickSide: {
  57538. height: math.unit(1.3, "meters"),
  57539. name: "Dick (Side)",
  57540. image: {
  57541. source: "./media/characters/hass/dick-side.svg"
  57542. }
  57543. },
  57544. dickBack: {
  57545. height: math.unit(1.4, "meters"),
  57546. name: "Dick (Back)",
  57547. image: {
  57548. source: "./media/characters/hass/dick-back.svg"
  57549. }
  57550. },
  57551. },
  57552. [
  57553. {
  57554. name: "Normal",
  57555. height: math.unit(6, "meters"),
  57556. default: true
  57557. },
  57558. ]
  57559. ))
  57560. characterMakers.push(() => makeCharacter(
  57561. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57562. {
  57563. front: {
  57564. height: math.unit(4, "feet"),
  57565. weight: math.unit(60, "lb"),
  57566. name: "Front",
  57567. image: {
  57568. source: "./media/characters/hickory-finnegan/front.svg",
  57569. extra: 444/411,
  57570. bottom: 10/454
  57571. }
  57572. },
  57573. side: {
  57574. height: math.unit(4, "feet"),
  57575. weight: math.unit(60, "lb"),
  57576. name: "Side",
  57577. image: {
  57578. source: "./media/characters/hickory-finnegan/side.svg",
  57579. extra: 444/411,
  57580. bottom: 10/454
  57581. }
  57582. },
  57583. back: {
  57584. height: math.unit(4, "feet"),
  57585. weight: math.unit(60, "lb"),
  57586. name: "Back",
  57587. image: {
  57588. source: "./media/characters/hickory-finnegan/back.svg",
  57589. extra: 444/411,
  57590. bottom: 10/454
  57591. }
  57592. },
  57593. },
  57594. [
  57595. {
  57596. name: "Normal",
  57597. height: math.unit(4, "feet"),
  57598. default: true
  57599. },
  57600. ]
  57601. ))
  57602. characterMakers.push(() => makeCharacter(
  57603. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57604. {
  57605. snivy_front: {
  57606. height: math.unit(2, "feet"),
  57607. weight: math.unit(17.9, "lb"),
  57608. name: "Front",
  57609. image: {
  57610. source: "./media/characters/robin-phox/snivy-front.svg",
  57611. extra: 569/504,
  57612. bottom: 33/602
  57613. },
  57614. form: "snivy",
  57615. default: true
  57616. },
  57617. snivy_frontNsfw: {
  57618. height: math.unit(2, "feet"),
  57619. weight: math.unit(17.9, "lb"),
  57620. name: "Front (NSFW)",
  57621. image: {
  57622. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57623. extra: 569/504,
  57624. bottom: 33/602
  57625. },
  57626. form: "snivy",
  57627. },
  57628. snivy_back: {
  57629. height: math.unit(2, "feet"),
  57630. weight: math.unit(17.9, "lb"),
  57631. name: "Back",
  57632. image: {
  57633. source: "./media/characters/robin-phox/snivy-back.svg",
  57634. extra: 577/508,
  57635. bottom: 21/598
  57636. },
  57637. form: "snivy",
  57638. },
  57639. snivy_foot: {
  57640. height: math.unit(0.68, "feet"),
  57641. name: "Foot",
  57642. image: {
  57643. source: "./media/characters/robin-phox/snivy-foot.svg"
  57644. },
  57645. form: "snivy",
  57646. },
  57647. snivy_sole: {
  57648. height: math.unit(0.68, "feet"),
  57649. name: "Sole",
  57650. image: {
  57651. source: "./media/characters/robin-phox/snivy-sole.svg"
  57652. },
  57653. form: "snivy",
  57654. },
  57655. yoshi_front: {
  57656. height: math.unit(6, "feet"),
  57657. weight: math.unit(150, "lb"),
  57658. name: "Front",
  57659. image: {
  57660. source: "./media/characters/robin-phox/yoshi-front.svg",
  57661. extra: 890/792,
  57662. bottom: 29/919
  57663. },
  57664. form: "yoshi",
  57665. default: true
  57666. },
  57667. yoshi_frontNsfw: {
  57668. height: math.unit(6, "feet"),
  57669. weight: math.unit(150, "lb"),
  57670. name: "Front (NSFW)",
  57671. image: {
  57672. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57673. extra: 890/792,
  57674. bottom: 29/919
  57675. },
  57676. form: "yoshi",
  57677. },
  57678. yoshi_back: {
  57679. height: math.unit(6, "feet"),
  57680. weight: math.unit(150, "lb"),
  57681. name: "Back",
  57682. image: {
  57683. source: "./media/characters/robin-phox/yoshi-back.svg",
  57684. extra: 890/792,
  57685. bottom: 29/919
  57686. },
  57687. form: "yoshi",
  57688. },
  57689. yoshi_foot: {
  57690. height: math.unit(1.5, "feet"),
  57691. name: "Foot",
  57692. image: {
  57693. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57694. },
  57695. form: "yoshi",
  57696. },
  57697. delphox_front: {
  57698. height: math.unit(4 + 11/12, "feet"),
  57699. weight: math.unit(86, "lb"),
  57700. name: "Front",
  57701. image: {
  57702. source: "./media/characters/robin-phox/delphox-front.svg",
  57703. extra: 1266/1069,
  57704. bottom: 32/1298
  57705. },
  57706. form: "delphox",
  57707. default: true
  57708. },
  57709. delphox_frontNsfw: {
  57710. height: math.unit(4 + 11/12, "feet"),
  57711. weight: math.unit(86, "lb"),
  57712. name: "Front (NSFW)",
  57713. image: {
  57714. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57715. extra: 1266/1069,
  57716. bottom: 32/1298
  57717. },
  57718. form: "delphox",
  57719. },
  57720. delphox_back: {
  57721. height: math.unit(4 + 11/12, "feet"),
  57722. weight: math.unit(86, "lb"),
  57723. name: "Back",
  57724. image: {
  57725. source: "./media/characters/robin-phox/delphox-back.svg",
  57726. extra: 1269/1083,
  57727. bottom: 15/1284
  57728. },
  57729. form: "delphox",
  57730. },
  57731. mienshao_front: {
  57732. height: math.unit(4 + 7/12, "feet"),
  57733. weight: math.unit(78.3, "lb"),
  57734. name: "Front",
  57735. image: {
  57736. source: "./media/characters/robin-phox/mienshao-front.svg",
  57737. extra: 1052/970,
  57738. bottom: 108/1160
  57739. },
  57740. form: "mienshao",
  57741. default: true
  57742. },
  57743. mienshao_frontNsfw: {
  57744. height: math.unit(4 + 7/12, "feet"),
  57745. weight: math.unit(78.3, "lb"),
  57746. name: "Front (NSFW)",
  57747. image: {
  57748. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57749. extra: 1052/970,
  57750. bottom: 108/1160
  57751. },
  57752. form: "mienshao",
  57753. },
  57754. mienshao_back: {
  57755. height: math.unit(4 + 7/12, "feet"),
  57756. weight: math.unit(78.3, "lb"),
  57757. name: "Back",
  57758. image: {
  57759. source: "./media/characters/robin-phox/mienshao-back.svg",
  57760. extra: 1102/982,
  57761. bottom: 32/1134
  57762. },
  57763. form: "mienshao",
  57764. },
  57765. inteleon_front: {
  57766. height: math.unit(6 + 3/12, "feet"),
  57767. weight: math.unit(99.6, "lb"),
  57768. name: "Front",
  57769. image: {
  57770. source: "./media/characters/robin-phox/inteleon-front.svg",
  57771. extra: 910/799,
  57772. bottom: 76/986
  57773. },
  57774. form: "inteleon",
  57775. default: true
  57776. },
  57777. inteleon_frontNsfw: {
  57778. height: math.unit(6 + 3/12, "feet"),
  57779. weight: math.unit(99.6, "lb"),
  57780. name: "Front (NSFW)",
  57781. image: {
  57782. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57783. extra: 910/799,
  57784. bottom: 76/986
  57785. },
  57786. form: "inteleon",
  57787. },
  57788. inteleon_back: {
  57789. height: math.unit(6 + 3/12, "feet"),
  57790. weight: math.unit(99.6, "lb"),
  57791. name: "Back",
  57792. image: {
  57793. source: "./media/characters/robin-phox/inteleon-back.svg",
  57794. extra: 907/796,
  57795. bottom: 25/932
  57796. },
  57797. form: "inteleon",
  57798. },
  57799. reshiram_front: {
  57800. height: math.unit(10 + 6/12, "feet"),
  57801. weight: math.unit(727.5, "lb"),
  57802. name: "Front",
  57803. image: {
  57804. source: "./media/characters/robin-phox/reshiram-front.svg",
  57805. extra: 1198/940,
  57806. bottom: 123/1321
  57807. },
  57808. form: "reshiram",
  57809. },
  57810. reshiram_frontNsfw: {
  57811. height: math.unit(10 + 6/12, "feet"),
  57812. weight: math.unit(727.5, "lb"),
  57813. name: "Front-nsfw",
  57814. image: {
  57815. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57816. extra: 1198/940,
  57817. bottom: 123/1321
  57818. },
  57819. form: "reshiram",
  57820. },
  57821. reshiram_back: {
  57822. height: math.unit(10 + 6/12, "feet"),
  57823. weight: math.unit(727.5, "lb"),
  57824. name: "Back",
  57825. image: {
  57826. source: "./media/characters/robin-phox/reshiram-back.svg",
  57827. extra: 1024/904,
  57828. bottom: 85/1109
  57829. },
  57830. form: "reshiram",
  57831. },
  57832. samurott_front: {
  57833. height: math.unit(8, "feet"),
  57834. weight: math.unit(208.6, "lb"),
  57835. name: "Front",
  57836. image: {
  57837. source: "./media/characters/robin-phox/samurott-front.svg",
  57838. extra: 1048/984,
  57839. bottom: 100/1148
  57840. },
  57841. form: "samurott",
  57842. },
  57843. samurott_frontNsfw: {
  57844. height: math.unit(8, "feet"),
  57845. weight: math.unit(208.6, "lb"),
  57846. name: "Front-nsfw",
  57847. image: {
  57848. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57849. extra: 1048/984,
  57850. bottom: 100/1148
  57851. },
  57852. form: "samurott",
  57853. },
  57854. samurott_back: {
  57855. height: math.unit(8, "feet"),
  57856. weight: math.unit(208.6, "lb"),
  57857. name: "Back",
  57858. image: {
  57859. source: "./media/characters/robin-phox/samurott-back.svg",
  57860. extra: 1110/1042,
  57861. bottom: 12/1122
  57862. },
  57863. form: "samurott",
  57864. },
  57865. samurott_feral: {
  57866. height: math.unit(4 + 11/12, "feet"),
  57867. weight: math.unit(208.6, "lb"),
  57868. name: "Feral",
  57869. image: {
  57870. source: "./media/characters/robin-phox/samurott-feral.svg",
  57871. extra: 766/681,
  57872. bottom: 108/874
  57873. },
  57874. form: "samurott",
  57875. },
  57876. },
  57877. [
  57878. {
  57879. name: "Normal",
  57880. height: math.unit(2, "feet"),
  57881. default: true,
  57882. form: "snivy"
  57883. },
  57884. {
  57885. name: "Normal",
  57886. height: math.unit(6, "feet"),
  57887. default: true,
  57888. form: "yoshi"
  57889. },
  57890. {
  57891. name: "Normal",
  57892. height: math.unit(4 + 11/12, "feet"),
  57893. default: true,
  57894. form: "delphox"
  57895. },
  57896. {
  57897. name: "Normal",
  57898. height: math.unit(4 + 7/12, "feet"),
  57899. default: true,
  57900. form: "mienshao"
  57901. },
  57902. {
  57903. name: "Normal",
  57904. height: math.unit(6 + 3/12, "feet"),
  57905. default: true,
  57906. form: "inteleon"
  57907. },
  57908. {
  57909. name: "Normal",
  57910. height: math.unit(10 + 6/12, "feet"),
  57911. default: true,
  57912. form: "reshiram"
  57913. },
  57914. {
  57915. name: "Normal",
  57916. height: math.unit(8, "feet"),
  57917. default: true,
  57918. form: "samurott"
  57919. },
  57920. {
  57921. name: "Macro",
  57922. height: math.unit(500, "feet"),
  57923. allForms: true
  57924. },
  57925. {
  57926. name: "Mega Macro",
  57927. height: math.unit(10, "earths"),
  57928. allForms: true
  57929. },
  57930. {
  57931. name: "Giga Macro",
  57932. height: math.unit(1, "galaxy"),
  57933. allForms: true
  57934. },
  57935. {
  57936. name: "Godly Macro",
  57937. height: math.unit(1e10, "multiverses"),
  57938. allForms: true
  57939. },
  57940. ],
  57941. {
  57942. "snivy": {
  57943. name: "Snivy",
  57944. default: true
  57945. },
  57946. "yoshi": {
  57947. name: "Yoshi",
  57948. },
  57949. "delphox": {
  57950. name: "Delphox",
  57951. },
  57952. "mienshao": {
  57953. name: "Mienshao",
  57954. },
  57955. "inteleon": {
  57956. name: "Inteleon",
  57957. },
  57958. "reshiram": {
  57959. name: "Reshiram",
  57960. },
  57961. "samurott": {
  57962. name: "Samurott",
  57963. },
  57964. }
  57965. ))
  57966. characterMakers.push(() => makeCharacter(
  57967. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57968. {
  57969. front: {
  57970. height: math.unit(4, "feet"),
  57971. name: "Front",
  57972. image: {
  57973. source: "./media/characters/ash-leung/front.svg",
  57974. extra: 1916/1792,
  57975. bottom: 50/1966
  57976. }
  57977. },
  57978. },
  57979. [
  57980. {
  57981. name: "Atomic",
  57982. height: math.unit(1, "angstrom")
  57983. },
  57984. {
  57985. name: "Microscopic",
  57986. height: math.unit(4000, "angstroms")
  57987. },
  57988. {
  57989. name: "Speck",
  57990. height: math.unit(1, "mm")
  57991. },
  57992. {
  57993. name: "Small",
  57994. height: math.unit(1, "inch")
  57995. },
  57996. {
  57997. name: "Normal",
  57998. height: math.unit(4, "feet"),
  57999. default: true
  58000. },
  58001. ]
  58002. ))
  58003. characterMakers.push(() => makeCharacter(
  58004. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58005. {
  58006. frontDressed: {
  58007. height: math.unit(2.08, "meters"),
  58008. weight: math.unit(175, "lb"),
  58009. name: "Front (Dressed)",
  58010. image: {
  58011. source: "./media/characters/carie/front-dressed.svg",
  58012. extra: 456/417,
  58013. bottom: 7/463
  58014. }
  58015. },
  58016. backDressed: {
  58017. height: math.unit(2.08, "meters"),
  58018. weight: math.unit(175, "lb"),
  58019. name: "Back (Dressed)",
  58020. image: {
  58021. source: "./media/characters/carie/back-dressed.svg",
  58022. extra: 455/414,
  58023. bottom: 11/466
  58024. }
  58025. },
  58026. front: {
  58027. height: math.unit(2, "meters"),
  58028. weight: math.unit(175, "lb"),
  58029. name: "Front",
  58030. image: {
  58031. source: "./media/characters/carie/front.svg",
  58032. extra: 438/399,
  58033. bottom: 12/450
  58034. }
  58035. },
  58036. back: {
  58037. height: math.unit(2, "meters"),
  58038. weight: math.unit(175, "lb"),
  58039. name: "Back",
  58040. image: {
  58041. source: "./media/characters/carie/back.svg",
  58042. extra: 438/397,
  58043. bottom: 7/445
  58044. }
  58045. },
  58046. },
  58047. [
  58048. {
  58049. name: "Normal",
  58050. height: math.unit(2.08, "meters"),
  58051. default: true
  58052. },
  58053. {
  58054. name: "Macro",
  58055. height: math.unit(2.08e3, "meters")
  58056. },
  58057. {
  58058. name: "Mega Macro",
  58059. height: math.unit(2.08e6, "meters")
  58060. },
  58061. {
  58062. name: "Giga Macro",
  58063. height: math.unit(2.08e9, "meters")
  58064. },
  58065. {
  58066. name: "Tera Macro",
  58067. height: math.unit(2.08e12, "meters")
  58068. },
  58069. {
  58070. name: "Peta Macro",
  58071. height: math.unit(2.08e15, "meters")
  58072. },
  58073. {
  58074. name: "Exa Macro",
  58075. height: math.unit(2.08e18, "meters")
  58076. },
  58077. {
  58078. name: "Zetta Macro",
  58079. height: math.unit(2.08e21, "meters")
  58080. },
  58081. {
  58082. name: "Yotta Macro",
  58083. height: math.unit(2.08e24, "meters")
  58084. },
  58085. ]
  58086. ))
  58087. characterMakers.push(() => makeCharacter(
  58088. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58089. {
  58090. front: {
  58091. height: math.unit(5 + 2/12, "feet"),
  58092. weight: math.unit(120, "lb"),
  58093. name: "Front",
  58094. image: {
  58095. source: "./media/characters/sai-bree/front.svg",
  58096. extra: 1843/1702,
  58097. bottom: 91/1934
  58098. }
  58099. },
  58100. back: {
  58101. height: math.unit(5 + 2/12, "feet"),
  58102. weight: math.unit(120, "lb"),
  58103. name: "Back",
  58104. image: {
  58105. source: "./media/characters/sai-bree/back.svg",
  58106. extra: 1809/1637,
  58107. bottom: 56/1865
  58108. }
  58109. },
  58110. },
  58111. [
  58112. {
  58113. name: "Normal",
  58114. height: math.unit(5 + 2/12, "feet"),
  58115. default: true
  58116. },
  58117. {
  58118. name: "Macro",
  58119. height: math.unit(500, "feet")
  58120. },
  58121. ]
  58122. ))
  58123. characterMakers.push(() => makeCharacter(
  58124. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58125. {
  58126. side: {
  58127. height: math.unit(0.77, "meters"),
  58128. weight: math.unit(120, "lb"),
  58129. name: "Side",
  58130. image: {
  58131. source: "./media/characters/davwyn/side.svg",
  58132. extra: 1557/1225,
  58133. bottom: 131/1688
  58134. }
  58135. },
  58136. front: {
  58137. height: math.unit(0.835410, "meters"),
  58138. weight: math.unit(120, "lb"),
  58139. name: "Front",
  58140. image: {
  58141. source: "./media/characters/davwyn/front.svg",
  58142. extra: 870/843,
  58143. bottom: 175/1045
  58144. }
  58145. },
  58146. },
  58147. [
  58148. {
  58149. name: "Minidrake",
  58150. height: math.unit(0.77/4, "meters")
  58151. },
  58152. {
  58153. name: "Normal",
  58154. height: math.unit(0.77, "meters"),
  58155. default: true
  58156. },
  58157. ]
  58158. ))
  58159. characterMakers.push(() => makeCharacter(
  58160. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58161. {
  58162. front: {
  58163. height: math.unit(10 + 3/12, "feet"),
  58164. weight: math.unit(2857, "lb"),
  58165. name: "Front",
  58166. image: {
  58167. source: "./media/characters/balans/front.svg",
  58168. extra: 427/402,
  58169. bottom: 26/453
  58170. }
  58171. },
  58172. side: {
  58173. height: math.unit(10 + 3/12, "feet"),
  58174. weight: math.unit(2857, "lb"),
  58175. name: "Side",
  58176. image: {
  58177. source: "./media/characters/balans/side.svg",
  58178. extra: 397/371,
  58179. bottom: 17/414
  58180. }
  58181. },
  58182. back: {
  58183. height: math.unit(10 + 3/12, "feet"),
  58184. weight: math.unit(2857, "lb"),
  58185. name: "Back",
  58186. image: {
  58187. source: "./media/characters/balans/back.svg",
  58188. extra: 408/381,
  58189. bottom: 14/422
  58190. }
  58191. },
  58192. hand: {
  58193. height: math.unit(1.15, "feet"),
  58194. name: "Hand",
  58195. image: {
  58196. source: "./media/characters/balans/hand.svg"
  58197. }
  58198. },
  58199. footRest: {
  58200. height: math.unit(3.1, "feet"),
  58201. name: "Foot (Rest)",
  58202. image: {
  58203. source: "./media/characters/balans/foot-rest.svg"
  58204. }
  58205. },
  58206. footActive: {
  58207. height: math.unit(3.5, "feet"),
  58208. name: "Foot (Active)",
  58209. image: {
  58210. source: "./media/characters/balans/foot-active.svg"
  58211. }
  58212. },
  58213. },
  58214. [
  58215. {
  58216. name: "Normal",
  58217. height: math.unit(10 + 3/12, "feet"),
  58218. default: true
  58219. },
  58220. ]
  58221. ))
  58222. characterMakers.push(() => makeCharacter(
  58223. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58224. {
  58225. side: {
  58226. height: math.unit(9, "meters"),
  58227. weight: math.unit(114, "tonnes"),
  58228. name: "Side",
  58229. image: {
  58230. source: "./media/characters/eldkveikir/side.svg",
  58231. extra: 1927/338,
  58232. bottom: 42/1969
  58233. }
  58234. },
  58235. sitting: {
  58236. height: math.unit(13.4, "meters"),
  58237. weight: math.unit(114, "tonnes"),
  58238. name: "Sitting",
  58239. image: {
  58240. source: "./media/characters/eldkveikir/sitting.svg",
  58241. extra: 1108/963,
  58242. bottom: 610/1718
  58243. }
  58244. },
  58245. maw: {
  58246. height: math.unit(8.36, "meters"),
  58247. name: "Maw",
  58248. image: {
  58249. source: "./media/characters/eldkveikir/maw.svg"
  58250. }
  58251. },
  58252. hand: {
  58253. height: math.unit(4.84, "meters"),
  58254. name: "Hand",
  58255. image: {
  58256. source: "./media/characters/eldkveikir/hand.svg"
  58257. }
  58258. },
  58259. foot: {
  58260. height: math.unit(6.9, "meters"),
  58261. name: "Foot",
  58262. image: {
  58263. source: "./media/characters/eldkveikir/foot.svg"
  58264. }
  58265. },
  58266. genitals: {
  58267. height: math.unit(9.6, "meters"),
  58268. name: "Genitals",
  58269. image: {
  58270. source: "./media/characters/eldkveikir/genitals.svg"
  58271. }
  58272. },
  58273. },
  58274. [
  58275. {
  58276. name: "Normal",
  58277. height: math.unit(9, "meters"),
  58278. default: true
  58279. },
  58280. ]
  58281. ))
  58282. characterMakers.push(() => makeCharacter(
  58283. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58284. {
  58285. front: {
  58286. height: math.unit(14, "feet"),
  58287. weight: math.unit(4100, "lb"),
  58288. name: "Front",
  58289. image: {
  58290. source: "./media/characters/arrow/front.svg",
  58291. extra: 330/318,
  58292. bottom: 56/386
  58293. }
  58294. },
  58295. },
  58296. [
  58297. {
  58298. name: "Normal",
  58299. height: math.unit(14, "feet"),
  58300. default: true
  58301. },
  58302. {
  58303. name: "Minimacro",
  58304. height: math.unit(63, "feet")
  58305. },
  58306. {
  58307. name: "Macro",
  58308. height: math.unit(630, "feet")
  58309. },
  58310. {
  58311. name: "Megamacro",
  58312. height: math.unit(12600, "feet")
  58313. },
  58314. {
  58315. name: "Gigamacro",
  58316. height: math.unit(18000, "miles")
  58317. },
  58318. ]
  58319. ))
  58320. characterMakers.push(() => makeCharacter(
  58321. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58322. {
  58323. front: {
  58324. height: math.unit(10, "feet"),
  58325. weight: math.unit(2.4, "tons"),
  58326. name: "Front",
  58327. image: {
  58328. source: "./media/characters/3yk-k0-unit/front.svg",
  58329. extra: 573/561,
  58330. bottom: 33/606
  58331. }
  58332. },
  58333. back: {
  58334. height: math.unit(10, "feet"),
  58335. weight: math.unit(2.4, "tons"),
  58336. name: "Back",
  58337. image: {
  58338. source: "./media/characters/3yk-k0-unit/back.svg",
  58339. extra: 614/573,
  58340. bottom: 32/646
  58341. }
  58342. },
  58343. maw: {
  58344. height: math.unit(2.15, "feet"),
  58345. name: "Maw",
  58346. image: {
  58347. source: "./media/characters/3yk-k0-unit/maw.svg"
  58348. }
  58349. },
  58350. },
  58351. [
  58352. {
  58353. name: "Normal",
  58354. height: math.unit(10, "feet"),
  58355. default: true
  58356. },
  58357. ]
  58358. ))
  58359. characterMakers.push(() => makeCharacter(
  58360. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58361. {
  58362. front: {
  58363. height: math.unit(8 + 8/12, "feet"),
  58364. name: "Front",
  58365. image: {
  58366. source: "./media/characters/nemo/front.svg",
  58367. extra: 1308/1217,
  58368. bottom: 57/1365
  58369. }
  58370. },
  58371. },
  58372. [
  58373. {
  58374. name: "Normal",
  58375. height: math.unit(8 + 8/12, "feet"),
  58376. default: true
  58377. },
  58378. ]
  58379. ))
  58380. characterMakers.push(() => makeCharacter(
  58381. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58382. {
  58383. front: {
  58384. height: math.unit(8, "feet"),
  58385. weight: math.unit(760, "lb"),
  58386. name: "Front",
  58387. image: {
  58388. source: "./media/characters/rexx/front.svg",
  58389. extra: 786/750,
  58390. bottom: 17/803
  58391. },
  58392. extraAttributes: {
  58393. "pawLength": {
  58394. name: "Paw Length",
  58395. power: 1,
  58396. type: "length",
  58397. base: math.unit(27, "inches")
  58398. },
  58399. }
  58400. },
  58401. },
  58402. [
  58403. {
  58404. name: "Micro",
  58405. height: math.unit(2, "inches")
  58406. },
  58407. {
  58408. name: "Normal",
  58409. height: math.unit(8, "feet"),
  58410. default: true
  58411. },
  58412. {
  58413. name: "Macro",
  58414. height: math.unit(150, "feet")
  58415. },
  58416. ]
  58417. ))
  58418. characterMakers.push(() => makeCharacter(
  58419. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58420. {
  58421. front: {
  58422. height: math.unit(18, "feet"),
  58423. weight: math.unit(1975, "lb"),
  58424. name: "Front",
  58425. image: {
  58426. source: "./media/characters/draco/front.svg",
  58427. extra: 1325/1241,
  58428. bottom: 83/1408
  58429. }
  58430. },
  58431. back: {
  58432. height: math.unit(18, "feet"),
  58433. weight: math.unit(1975, "lb"),
  58434. name: "Back",
  58435. image: {
  58436. source: "./media/characters/draco/back.svg",
  58437. extra: 1332/1250,
  58438. bottom: 43/1375
  58439. }
  58440. },
  58441. dick: {
  58442. height: math.unit(7.5, "feet"),
  58443. name: "Dick",
  58444. image: {
  58445. source: "./media/characters/draco/dick.svg"
  58446. }
  58447. },
  58448. },
  58449. [
  58450. {
  58451. name: "Normal",
  58452. height: math.unit(18, "feet"),
  58453. default: true
  58454. },
  58455. ]
  58456. ))
  58457. characterMakers.push(() => makeCharacter(
  58458. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58459. {
  58460. front: {
  58461. height: math.unit(3.2, "meters"),
  58462. name: "Front",
  58463. image: {
  58464. source: "./media/characters/harriett/front.svg",
  58465. extra: 1966/1915,
  58466. bottom: 9/1975
  58467. }
  58468. },
  58469. },
  58470. [
  58471. {
  58472. name: "Normal",
  58473. height: math.unit(3.2, "meters"),
  58474. default: true
  58475. },
  58476. ]
  58477. ))
  58478. characterMakers.push(() => makeCharacter(
  58479. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58480. {
  58481. sitting: {
  58482. height: math.unit(0.8, "meter"),
  58483. name: "Sitting",
  58484. image: {
  58485. source: "./media/characters/serpentus/sitting.svg",
  58486. extra: 293/290,
  58487. bottom: 140/433
  58488. }
  58489. },
  58490. },
  58491. [
  58492. {
  58493. name: "Normal",
  58494. height: math.unit(0.8, "meter"),
  58495. default: true
  58496. },
  58497. ]
  58498. ))
  58499. characterMakers.push(() => makeCharacter(
  58500. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58501. {
  58502. front: {
  58503. height: math.unit(5.7174385736, "feet"),
  58504. name: "Front",
  58505. image: {
  58506. source: "./media/characters/nova-polecat/front.svg",
  58507. extra: 1317/1216,
  58508. bottom: 92/1409
  58509. }
  58510. },
  58511. },
  58512. [
  58513. {
  58514. name: "Normal",
  58515. height: math.unit(5.7174385736, "feet"),
  58516. default: true
  58517. },
  58518. ]
  58519. ))
  58520. characterMakers.push(() => makeCharacter(
  58521. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58522. {
  58523. front: {
  58524. height: math.unit(5 + 4/12, "feet"),
  58525. weight: math.unit(250, "lb"),
  58526. name: "Front",
  58527. image: {
  58528. source: "./media/characters/mook/front.svg",
  58529. extra: 1088/1037,
  58530. bottom: 132/1220
  58531. }
  58532. },
  58533. back: {
  58534. height: math.unit(5 + 1/12, "feet"),
  58535. weight: math.unit(250, "lb"),
  58536. name: "Back",
  58537. image: {
  58538. source: "./media/characters/mook/back.svg",
  58539. extra: 1184/905,
  58540. bottom: 96/1280
  58541. }
  58542. },
  58543. head: {
  58544. height: math.unit(1.85, "feet"),
  58545. name: "Head",
  58546. image: {
  58547. source: "./media/characters/mook/head.svg"
  58548. }
  58549. },
  58550. hand: {
  58551. height: math.unit(1.9, "feet"),
  58552. name: "Hand",
  58553. image: {
  58554. source: "./media/characters/mook/hand.svg"
  58555. }
  58556. },
  58557. palm: {
  58558. height: math.unit(1.84, "feet"),
  58559. name: "Palm",
  58560. image: {
  58561. source: "./media/characters/mook/palm.svg"
  58562. }
  58563. },
  58564. foot: {
  58565. height: math.unit(1.44, "feet"),
  58566. name: "Foot",
  58567. image: {
  58568. source: "./media/characters/mook/foot.svg"
  58569. }
  58570. },
  58571. sole: {
  58572. height: math.unit(1.44, "feet"),
  58573. name: "Sole",
  58574. image: {
  58575. source: "./media/characters/mook/sole.svg"
  58576. }
  58577. },
  58578. },
  58579. [
  58580. {
  58581. name: "Normal",
  58582. height: math.unit(5 + 4/12, "feet"),
  58583. default: true
  58584. },
  58585. {
  58586. name: "Big",
  58587. height: math.unit(12, "feet")
  58588. },
  58589. ]
  58590. ))
  58591. characterMakers.push(() => makeCharacter(
  58592. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58593. {
  58594. front: {
  58595. height: math.unit(6 + 10/12, "feet"),
  58596. weight: math.unit(233, "lb"),
  58597. name: "Front",
  58598. image: {
  58599. source: "./media/characters/kayla/front.svg",
  58600. extra: 1850/1775,
  58601. bottom: 65/1915
  58602. }
  58603. },
  58604. },
  58605. [
  58606. {
  58607. name: "Normal",
  58608. height: math.unit(6 + 10/12, "feet"),
  58609. default: true
  58610. },
  58611. {
  58612. name: "Amazonian",
  58613. height: math.unit(12 + 5/12, "feet")
  58614. },
  58615. {
  58616. name: "Mini Giantess",
  58617. height: math.unit(26, "feet")
  58618. },
  58619. {
  58620. name: "Giantess",
  58621. height: math.unit(200, "feet")
  58622. },
  58623. {
  58624. name: "Mega Giantess",
  58625. height: math.unit(2500, "feet")
  58626. },
  58627. {
  58628. name: "City Sized",
  58629. height: math.unit(50, "miles")
  58630. },
  58631. {
  58632. name: "Country Sized",
  58633. height: math.unit(500, "miles")
  58634. },
  58635. {
  58636. name: "Continent Sized",
  58637. height: math.unit(2500, "miles")
  58638. },
  58639. {
  58640. name: "Planet Sized",
  58641. height: math.unit(10000, "miles")
  58642. },
  58643. {
  58644. name: "Star Sized",
  58645. height: math.unit(5e6, "miles")
  58646. },
  58647. {
  58648. name: "Solar System Sized",
  58649. height: math.unit(125, "AU")
  58650. },
  58651. {
  58652. name: "Galaxy Sized",
  58653. height: math.unit(300e3, "lightyears")
  58654. },
  58655. {
  58656. name: "Universe Sized",
  58657. height: math.unit(200e9, "lightyears")
  58658. },
  58659. {
  58660. name: "Multiverse Sized",
  58661. height: math.unit(20, "exauniverses")
  58662. },
  58663. {
  58664. name: "Mother of Existence",
  58665. height: math.unit(1e6, "yottauniverses")
  58666. },
  58667. ]
  58668. ))
  58669. characterMakers.push(() => makeCharacter(
  58670. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58671. {
  58672. side: {
  58673. height: math.unit(9.5, "meters"),
  58674. name: "Side",
  58675. image: {
  58676. source: "./media/characters/kulve-ragnarok/side.svg",
  58677. extra: 364/326,
  58678. bottom: 50/414
  58679. }
  58680. },
  58681. },
  58682. [
  58683. {
  58684. name: "Normal",
  58685. height: math.unit(9.5, "meters"),
  58686. default: true
  58687. },
  58688. ]
  58689. ))
  58690. characterMakers.push(() => makeCharacter(
  58691. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58692. {
  58693. front: {
  58694. height: math.unit(8 + 9/12, "feet"),
  58695. name: "Front",
  58696. image: {
  58697. source: "./media/characters/atlas-goat/front.svg",
  58698. extra: 1462/1323,
  58699. bottom: 12/1474
  58700. }
  58701. },
  58702. },
  58703. [
  58704. {
  58705. name: "Normal",
  58706. height: math.unit(8 + 9/12, "feet"),
  58707. default: true
  58708. },
  58709. {
  58710. name: "Skyline",
  58711. height: math.unit(845, "feet")
  58712. },
  58713. {
  58714. name: "Orbital",
  58715. height: math.unit(93000, "miles")
  58716. },
  58717. {
  58718. name: "Constellation",
  58719. height: math.unit(27000, "lightyears")
  58720. },
  58721. ]
  58722. ))
  58723. characterMakers.push(() => makeCharacter(
  58724. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58725. {
  58726. side: {
  58727. height: math.unit(1.8, "meters"),
  58728. weight: math.unit(120, "kg"),
  58729. name: "Side",
  58730. image: {
  58731. source: "./media/characters/xie-ling/side.svg",
  58732. extra: 646/574,
  58733. bottom: 44/690
  58734. }
  58735. },
  58736. },
  58737. [
  58738. {
  58739. name: "Tiny",
  58740. height: math.unit(1.80, "meters")
  58741. },
  58742. {
  58743. name: "Small",
  58744. height: math.unit(6, "meters")
  58745. },
  58746. {
  58747. name: "Medium",
  58748. height: math.unit(15, "meters")
  58749. },
  58750. {
  58751. name: "Normal",
  58752. height: math.unit(30, "meters"),
  58753. default: true
  58754. },
  58755. {
  58756. name: "Above Normal",
  58757. height: math.unit(60, "meters")
  58758. },
  58759. {
  58760. name: "Big",
  58761. height: math.unit(220, "meters")
  58762. },
  58763. {
  58764. name: "Giant",
  58765. height: math.unit(2.2, "km")
  58766. },
  58767. {
  58768. name: "Macro",
  58769. height: math.unit(25, "km")
  58770. },
  58771. {
  58772. name: "Mega Macro",
  58773. height: math.unit(350, "km")
  58774. },
  58775. {
  58776. name: "Mega Macro+",
  58777. height: math.unit(5000, "km")
  58778. },
  58779. {
  58780. name: "Goddess",
  58781. height: math.unit(3, "multiverses")
  58782. },
  58783. ]
  58784. ))
  58785. characterMakers.push(() => makeCharacter(
  58786. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58787. {
  58788. frontSfw: {
  58789. height: math.unit(5 + 11/12, "feet"),
  58790. weight: math.unit(210, "lb"),
  58791. name: "Front",
  58792. image: {
  58793. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58794. extra: 1928/1821,
  58795. bottom: 45/1973
  58796. }
  58797. },
  58798. backSfw: {
  58799. height: math.unit(5 + 11/12, "feet"),
  58800. weight: math.unit(210, "lb"),
  58801. name: "Back",
  58802. image: {
  58803. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58804. extra: 1920/1813,
  58805. bottom: 34/1954
  58806. }
  58807. },
  58808. frontNsfw: {
  58809. height: math.unit(5 + 11/12, "feet"),
  58810. weight: math.unit(210, "lb"),
  58811. name: "Front (NSFW)",
  58812. image: {
  58813. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58814. extra: 1928/1821,
  58815. bottom: 45/1973
  58816. }
  58817. },
  58818. backNsfw: {
  58819. height: math.unit(5 + 11/12, "feet"),
  58820. weight: math.unit(210, "lb"),
  58821. name: "Back (NSFW)",
  58822. image: {
  58823. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58824. extra: 1920/1813,
  58825. bottom: 34/1954
  58826. }
  58827. },
  58828. },
  58829. [
  58830. {
  58831. name: "Normal",
  58832. height: math.unit(5 + 11/12, "feet"),
  58833. default: true
  58834. },
  58835. {
  58836. name: "Goddess",
  58837. height: math.unit(20 + 3/12, "feet")
  58838. },
  58839. {
  58840. name: "Breaker of Man",
  58841. height: math.unit(329 + 9/12, "feet")
  58842. },
  58843. {
  58844. name: "Solar Justice",
  58845. height: math.unit(0.6, "solarradii")
  58846. },
  58847. {
  58848. name: "She Who Judges",
  58849. height: math.unit(1, "universe")
  58850. },
  58851. ]
  58852. ))
  58853. characterMakers.push(() => makeCharacter(
  58854. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58855. {
  58856. casual_front: {
  58857. height: math.unit(6 + 1/12, "feet"),
  58858. weight: math.unit(190, "lb"),
  58859. preyCapacity: math.unit(1, "people"),
  58860. name: "Front",
  58861. image: {
  58862. source: "./media/characters/managarmr/casual-front.svg",
  58863. extra: 411/381,
  58864. bottom: 15/426
  58865. },
  58866. extraAttributes: {
  58867. "pawSize": {
  58868. name: "Paw Size",
  58869. power: 1,
  58870. type: "length",
  58871. base: math.unit(0.2, "meters")
  58872. },
  58873. },
  58874. form: "casual",
  58875. },
  58876. casual_back: {
  58877. height: math.unit(6 + 1/12, "feet"),
  58878. weight: math.unit(190, "lb"),
  58879. preyCapacity: math.unit(1, "people"),
  58880. name: "Back",
  58881. image: {
  58882. source: "./media/characters/managarmr/casual-back.svg",
  58883. extra: 413/383,
  58884. bottom: 13/426
  58885. },
  58886. extraAttributes: {
  58887. "pawSize": {
  58888. name: "Paw Size",
  58889. power: 1,
  58890. type: "length",
  58891. base: math.unit(0.2, "meters")
  58892. },
  58893. },
  58894. form: "casual",
  58895. },
  58896. base_front: {
  58897. height: math.unit(7, "feet"),
  58898. weight: math.unit(210, "lb"),
  58899. preyCapacity: math.unit(2, "people"),
  58900. name: "Front",
  58901. image: {
  58902. source: "./media/characters/managarmr/base-front.svg",
  58903. extra: 580/485,
  58904. bottom: 32/612
  58905. },
  58906. extraAttributes: {
  58907. "wingspan": {
  58908. name: "Wingspan",
  58909. power: 1,
  58910. type: "length",
  58911. base: math.unit(4, "meters")
  58912. },
  58913. "pawSize": {
  58914. name: "Paw Size",
  58915. power: 1,
  58916. type: "length",
  58917. base: math.unit(0.2, "meters")
  58918. },
  58919. },
  58920. form: "base",
  58921. },
  58922. "true-divine_front": {
  58923. height: math.unit(40, "feet"),
  58924. weight: math.unit(39000, "lb"),
  58925. preyCapacity: math.unit(375, "people"),
  58926. name: "Front",
  58927. image: {
  58928. source: "./media/characters/managarmr/true-divine-front.svg",
  58929. extra: 725/573,
  58930. bottom: 120/845
  58931. },
  58932. extraAttributes: {
  58933. "wingspan": {
  58934. name: "Wingspan",
  58935. power: 1,
  58936. type: "length",
  58937. base: math.unit(20, "meters")
  58938. },
  58939. "pawSize": {
  58940. name: "Paw Size",
  58941. power: 1,
  58942. type: "length",
  58943. base: math.unit(1.5, "meters")
  58944. },
  58945. },
  58946. form: "true-divine",
  58947. },
  58948. },
  58949. [
  58950. {
  58951. name: "Normal",
  58952. height: math.unit(6 + 1/12, "feet"),
  58953. form: "casual",
  58954. default: true
  58955. },
  58956. {
  58957. name: "Normal",
  58958. height: math.unit(7, "feet"),
  58959. form: "base",
  58960. default: true
  58961. },
  58962. ],
  58963. {
  58964. "casual": {
  58965. name: "Casual",
  58966. default: true
  58967. },
  58968. "base": {
  58969. name: "Base",
  58970. },
  58971. "true-divine": {
  58972. name: "True Divine",
  58973. },
  58974. }
  58975. ))
  58976. characterMakers.push(() => makeCharacter(
  58977. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58978. {
  58979. front: {
  58980. height: math.unit(1.8, "meters"),
  58981. weight: math.unit(110, "kg"),
  58982. name: "Front",
  58983. image: {
  58984. source: "./media/characters/mystra/front.svg",
  58985. extra: 529/442,
  58986. bottom: 31/560
  58987. }
  58988. },
  58989. frontLewd: {
  58990. height: math.unit(1.8, "meters"),
  58991. weight: math.unit(110, "kg"),
  58992. name: "Front (Lewd)",
  58993. image: {
  58994. source: "./media/characters/mystra/front-lewd.svg",
  58995. extra: 529/442,
  58996. bottom: 31/560
  58997. }
  58998. },
  58999. head: {
  59000. height: math.unit(1.63, "feet"),
  59001. name: "Head",
  59002. image: {
  59003. source: "./media/characters/mystra/head.svg"
  59004. }
  59005. },
  59006. paw: {
  59007. height: math.unit(1.9, "feet"),
  59008. name: "Paw",
  59009. image: {
  59010. source: "./media/characters/mystra/paw.svg"
  59011. }
  59012. },
  59013. },
  59014. [
  59015. {
  59016. name: "Incognito",
  59017. height: math.unit(2.3, "meters")
  59018. },
  59019. {
  59020. name: "Small Macro",
  59021. height: math.unit(300, "meters")
  59022. },
  59023. {
  59024. name: "Small Mega",
  59025. height: math.unit(2, "km")
  59026. },
  59027. {
  59028. name: "Mega",
  59029. height: math.unit(30, "km")
  59030. },
  59031. {
  59032. name: "Small Giga",
  59033. height: math.unit(100, "km")
  59034. },
  59035. {
  59036. name: "Giga",
  59037. height: math.unit(1000, "km"),
  59038. default: true
  59039. },
  59040. {
  59041. name: "Continental",
  59042. height: math.unit(5000, "km")
  59043. },
  59044. {
  59045. name: "Terra",
  59046. height: math.unit(20000, "km")
  59047. },
  59048. {
  59049. name: "Solar",
  59050. height: math.unit(2e6, "km")
  59051. },
  59052. {
  59053. name: "Galactic",
  59054. height: math.unit(528502, "lightyears")
  59055. },
  59056. {
  59057. name: "Universal",
  59058. height: math.unit(20, "universes")
  59059. },
  59060. ]
  59061. ))
  59062. characterMakers.push(() => makeCharacter(
  59063. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59064. {
  59065. front: {
  59066. height: math.unit(2, "meters"),
  59067. weight: math.unit(140, "kg"),
  59068. name: "Front",
  59069. image: {
  59070. source: "./media/characters/caleb/front.svg",
  59071. extra: 873/817,
  59072. bottom: 47/920
  59073. }
  59074. },
  59075. back: {
  59076. height: math.unit(2, "meters"),
  59077. weight: math.unit(140, "kg"),
  59078. name: "Back",
  59079. image: {
  59080. source: "./media/characters/caleb/back.svg",
  59081. extra: 877/828,
  59082. bottom: 24/901
  59083. }
  59084. },
  59085. snakeTail: {
  59086. height: math.unit(1.44, "feet"),
  59087. name: "Snake Tail",
  59088. image: {
  59089. source: "./media/characters/caleb/snake-tail.svg"
  59090. }
  59091. },
  59092. dick: {
  59093. height: math.unit(2.6, "feet"),
  59094. name: "Dick",
  59095. image: {
  59096. source: "./media/characters/caleb/dick.svg"
  59097. }
  59098. },
  59099. },
  59100. [
  59101. {
  59102. name: "Incognito",
  59103. height: math.unit(3, "meters")
  59104. },
  59105. {
  59106. name: "Home Size",
  59107. height: math.unit(200, "meters"),
  59108. default: true
  59109. },
  59110. {
  59111. name: "Macro",
  59112. height: math.unit(500, "meters")
  59113. },
  59114. {
  59115. name: "Big Macro",
  59116. height: math.unit(5, "km")
  59117. },
  59118. {
  59119. name: "Giga",
  59120. height: math.unit(250, "km")
  59121. },
  59122. {
  59123. name: "Giga+",
  59124. height: math.unit(5000, "km")
  59125. },
  59126. {
  59127. name: "Small Terra",
  59128. height: math.unit(35e3, "km")
  59129. },
  59130. {
  59131. name: "Terra",
  59132. height: math.unit(2e6, "km")
  59133. },
  59134. {
  59135. name: "Terra+",
  59136. height: math.unit(1.5e6, "km")
  59137. },
  59138. ]
  59139. ))
  59140. characterMakers.push(() => makeCharacter(
  59141. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59142. {
  59143. front: {
  59144. height: math.unit(2, "meters"),
  59145. weight: math.unit(120, "kg"),
  59146. name: "Front",
  59147. image: {
  59148. source: "./media/characters/gilirian/front.svg",
  59149. extra: 805/737,
  59150. bottom: 13/818
  59151. }
  59152. },
  59153. side: {
  59154. height: math.unit(2, "meters"),
  59155. weight: math.unit(120, "kg"),
  59156. name: "Side",
  59157. image: {
  59158. source: "./media/characters/gilirian/side.svg",
  59159. extra: 810/746,
  59160. bottom: 6/816
  59161. }
  59162. },
  59163. back: {
  59164. height: math.unit(2, "meters"),
  59165. weight: math.unit(120, "kg"),
  59166. name: "Back",
  59167. image: {
  59168. source: "./media/characters/gilirian/back.svg",
  59169. extra: 815/745,
  59170. bottom: 15/830
  59171. }
  59172. },
  59173. frontNsfw: {
  59174. height: math.unit(2, "meters"),
  59175. weight: math.unit(120, "kg"),
  59176. name: "Front (NSFW)",
  59177. image: {
  59178. source: "./media/characters/gilirian/front-nsfw.svg",
  59179. extra: 805/737,
  59180. bottom: 13/818
  59181. }
  59182. },
  59183. sideNsfw: {
  59184. height: math.unit(2, "meters"),
  59185. weight: math.unit(120, "kg"),
  59186. name: "Side (NSFW)",
  59187. image: {
  59188. source: "./media/characters/gilirian/side-nsfw.svg",
  59189. extra: 810/746,
  59190. bottom: 6/816
  59191. }
  59192. },
  59193. },
  59194. [
  59195. {
  59196. name: "Incognito",
  59197. height: math.unit(2, "meters"),
  59198. default: true
  59199. },
  59200. {
  59201. name: "Macro",
  59202. height: math.unit(250, "meters")
  59203. },
  59204. {
  59205. name: "Big Macro",
  59206. height: math.unit(1500, "meters")
  59207. },
  59208. {
  59209. name: "Mega",
  59210. height: math.unit(40, "km")
  59211. },
  59212. {
  59213. name: "Giga",
  59214. height: math.unit(300, "km")
  59215. },
  59216. {
  59217. name: "Extra Giga",
  59218. height: math.unit(5000, "km")
  59219. },
  59220. {
  59221. name: "Small Terra",
  59222. height: math.unit(10e3, "km")
  59223. },
  59224. {
  59225. name: "Terra",
  59226. height: math.unit(3e5, "km")
  59227. },
  59228. {
  59229. name: "Galactic",
  59230. height: math.unit(369950, "lightyears")
  59231. },
  59232. ]
  59233. ))
  59234. characterMakers.push(() => makeCharacter(
  59235. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59236. {
  59237. front: {
  59238. height: math.unit(2.5, "meters"),
  59239. weight: math.unit(230, "lb"),
  59240. name: "Front",
  59241. image: {
  59242. source: "./media/characters/tarken/front.svg",
  59243. extra: 764/720,
  59244. bottom: 49/813
  59245. }
  59246. },
  59247. back: {
  59248. height: math.unit(2.5, "meters"),
  59249. weight: math.unit(230, "lb"),
  59250. name: "Back",
  59251. image: {
  59252. source: "./media/characters/tarken/back.svg",
  59253. extra: 756/720,
  59254. bottom: 35/791
  59255. }
  59256. },
  59257. frontNsfw: {
  59258. height: math.unit(2.5, "meters"),
  59259. weight: math.unit(230, "lb"),
  59260. name: "Front (NSFW)",
  59261. image: {
  59262. source: "./media/characters/tarken/front-nsfw.svg",
  59263. extra: 764/720,
  59264. bottom: 49/813
  59265. }
  59266. },
  59267. backNsfw: {
  59268. height: math.unit(2.5, "meters"),
  59269. weight: math.unit(230, "lb"),
  59270. name: "Back (NSFW)",
  59271. image: {
  59272. source: "./media/characters/tarken/back-nsfw.svg",
  59273. extra: 756/720,
  59274. bottom: 35/791
  59275. }
  59276. },
  59277. head: {
  59278. height: math.unit(2.22, "feet"),
  59279. name: "Head",
  59280. image: {
  59281. source: "./media/characters/tarken/head.svg"
  59282. }
  59283. },
  59284. tail: {
  59285. height: math.unit(5.25, "feet"),
  59286. name: "Tail",
  59287. image: {
  59288. source: "./media/characters/tarken/tail.svg"
  59289. }
  59290. },
  59291. dick: {
  59292. height: math.unit(1.95, "feet"),
  59293. name: "Dick",
  59294. image: {
  59295. source: "./media/characters/tarken/dick.svg"
  59296. }
  59297. },
  59298. hand: {
  59299. height: math.unit(1.78, "feet"),
  59300. name: "Hand",
  59301. image: {
  59302. source: "./media/characters/tarken/hand.svg"
  59303. }
  59304. },
  59305. beam: {
  59306. height: math.unit(1.5, "feet"),
  59307. name: "Beam",
  59308. image: {
  59309. source: "./media/characters/tarken/beam.svg"
  59310. }
  59311. },
  59312. },
  59313. [
  59314. {
  59315. name: "Original Size",
  59316. height: math.unit(2.5, "meters")
  59317. },
  59318. {
  59319. name: "Macro",
  59320. height: math.unit(150, "meters"),
  59321. default: true
  59322. },
  59323. {
  59324. name: "Macro+",
  59325. height: math.unit(300, "meters")
  59326. },
  59327. {
  59328. name: "Mega",
  59329. height: math.unit(2, "km")
  59330. },
  59331. {
  59332. name: "Mega+",
  59333. height: math.unit(35, "km")
  59334. },
  59335.  {
  59336. name: "Mega++",
  59337. height: math.unit(60, "km")
  59338. },
  59339. {
  59340. name: "Giga",
  59341. height: math.unit(200, "km")
  59342. },
  59343. {
  59344. name: "Giga+",
  59345. height: math.unit(2500, "km")
  59346. },
  59347. {
  59348. name: "Giga++",
  59349. height: math.unit(6600, "km")
  59350. },
  59351. {
  59352. name: "Terra",
  59353. height: math.unit(20000, "km")
  59354. },
  59355. {
  59356. name: "Terra+",
  59357. height: math.unit(300000, "km")
  59358. },
  59359. ]
  59360. ))
  59361. characterMakers.push(() => makeCharacter(
  59362. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59363. {
  59364. magpie_dressed: {
  59365. height: math.unit(1.7, "meters"),
  59366. weight: math.unit(70, "kg"),
  59367. name: "Dressed",
  59368. image: {
  59369. source: "./media/characters/otreus/magpie-dressed.svg",
  59370. extra: 691/672,
  59371. bottom: 116/807
  59372. },
  59373. form: "magpie",
  59374. default: true
  59375. },
  59376. magpie_nude: {
  59377. height: math.unit(1.7, "meters"),
  59378. weight: math.unit(70, "kg"),
  59379. name: "Nude",
  59380. image: {
  59381. source: "./media/characters/otreus/magpie-nude.svg",
  59382. extra: 691/672,
  59383. bottom: 116/807
  59384. },
  59385. form: "magpie",
  59386. },
  59387. magpie_dressedLewd: {
  59388. height: math.unit(1.7, "meters"),
  59389. weight: math.unit(70, "kg"),
  59390. name: "Dressed (Lewd)",
  59391. image: {
  59392. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59393. extra: 691/672,
  59394. bottom: 116/807
  59395. },
  59396. form: "magpie",
  59397. },
  59398. magpie_nudeLewd: {
  59399. height: math.unit(1.7, "meters"),
  59400. weight: math.unit(70, "kg"),
  59401. name: "Nude (Lewd)",
  59402. image: {
  59403. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59404. extra: 691/672,
  59405. bottom: 116/807
  59406. },
  59407. form: "magpie",
  59408. },
  59409. magpie_leftFoot: {
  59410. height: math.unit(1.58, "feet"),
  59411. name: "Left Foot",
  59412. image: {
  59413. source: "./media/characters/otreus/magpie-left-foot.svg"
  59414. },
  59415. form: "magpie",
  59416. },
  59417. magpie_rightFoot: {
  59418. height: math.unit(1.58, "feet"),
  59419. name: "Right Foot",
  59420. image: {
  59421. source: "./media/characters/otreus/magpie-right-foot.svg"
  59422. },
  59423. form: "magpie",
  59424. },
  59425. magpie_wingspan: {
  59426. height: math.unit(2, "meters"),
  59427. weight: math.unit(70, "kg"),
  59428. name: "Wingspan",
  59429. image: {
  59430. source: "./media/characters/otreus/magpie-wingspan.svg"
  59431. },
  59432. extraAttributes: {
  59433. "wingspan": {
  59434. name: "Wingspan",
  59435. power: 1,
  59436. type: "length",
  59437. base: math.unit(3.35, "meters")
  59438. },
  59439. },
  59440. form: "magpie",
  59441. },
  59442. hippogriff_dressed: {
  59443. height: math.unit(1.7, "meters"),
  59444. weight: math.unit(70, "kg"),
  59445. name: "Dressed",
  59446. image: {
  59447. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59448. extra: 710/689,
  59449. bottom: 67/777
  59450. },
  59451. form: "hippogriff",
  59452. default: true
  59453. },
  59454. hippogriff_nude: {
  59455. height: math.unit(1.7, "meters"),
  59456. weight: math.unit(70, "kg"),
  59457. name: "Nude",
  59458. image: {
  59459. source: "./media/characters/otreus/hippogriff-nude.svg",
  59460. extra: 710/689,
  59461. bottom: 67/777
  59462. },
  59463. form: "hippogriff",
  59464. },
  59465. hippogriff_dressedLewd: {
  59466. height: math.unit(1.7, "meters"),
  59467. weight: math.unit(70, "kg"),
  59468. name: "Dressed (Lewd)",
  59469. image: {
  59470. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59471. extra: 710/689,
  59472. bottom: 67/777
  59473. },
  59474. form: "hippogriff",
  59475. },
  59476. hippogriff_nudeLewd: {
  59477. height: math.unit(1.7, "meters"),
  59478. weight: math.unit(70, "kg"),
  59479. name: "Nude (Lewd)",
  59480. image: {
  59481. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59482. extra: 710/689,
  59483. bottom: 67/777
  59484. },
  59485. form: "hippogriff",
  59486. },
  59487. },
  59488. [
  59489. {
  59490. name: "Original Size",
  59491. height: math.unit(1.7, "meters"),
  59492. allForms: true
  59493. },
  59494. {
  59495. name: "Incognito Size",
  59496. height: math.unit(2, "meters"),
  59497. allForms: true
  59498. },
  59499. {
  59500. name: "Mega",
  59501. height: math.unit(2, "km"),
  59502. allForms: true
  59503. },
  59504. {
  59505. name: "Mega+",
  59506. height: math.unit(40, "km"),
  59507. allForms: true
  59508. },
  59509. {
  59510. name: "Giga",
  59511. height: math.unit(250, "km"),
  59512. allForms: true
  59513. },
  59514. {
  59515. name: "Giga+",
  59516. height: math.unit(3000, "km"),
  59517. allForms: true
  59518. },
  59519. {
  59520. name: "Terra",
  59521. height: math.unit(20000, "km"),
  59522. allForms: true
  59523. },
  59524. {
  59525. name: "Solar (Home Size)",
  59526. height: math.unit(3e6, "km"),
  59527. allForms: true,
  59528. default: true
  59529. },
  59530. ],
  59531. {
  59532. "magpie": {
  59533. name: "Magpie",
  59534. default: true
  59535. },
  59536. "hippogriff": {
  59537. name: "Hippogriff",
  59538. },
  59539. }
  59540. ))
  59541. characterMakers.push(() => makeCharacter(
  59542. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59543. {
  59544. frontDressed: {
  59545. height: math.unit(1.8, "meters"),
  59546. weight: math.unit(90, "kg"),
  59547. name: "Front (Dressed)",
  59548. image: {
  59549. source: "./media/characters/thalia/front-dressed.svg",
  59550. extra: 478/402,
  59551. bottom: 55/533
  59552. }
  59553. },
  59554. backDressed: {
  59555. height: math.unit(1.8, "meters"),
  59556. weight: math.unit(90, "kg"),
  59557. name: "Back (Dressed)",
  59558. image: {
  59559. source: "./media/characters/thalia/back-dressed.svg",
  59560. extra: 500/424,
  59561. bottom: 15/515
  59562. }
  59563. },
  59564. frontNude: {
  59565. height: math.unit(1.8, "meters"),
  59566. weight: math.unit(90, "kg"),
  59567. name: "Front (Nude)",
  59568. image: {
  59569. source: "./media/characters/thalia/front-nude.svg",
  59570. extra: 478/402,
  59571. bottom: 55/533
  59572. }
  59573. },
  59574. backNude: {
  59575. height: math.unit(1.8, "meters"),
  59576. weight: math.unit(90, "kg"),
  59577. name: "Back (Nude)",
  59578. image: {
  59579. source: "./media/characters/thalia/back-nude.svg",
  59580. extra: 500/424,
  59581. bottom: 15/515
  59582. }
  59583. },
  59584. },
  59585. [
  59586. {
  59587. name: "Incognito",
  59588. height: math.unit(3, "meters")
  59589. },
  59590. {
  59591. name: "Macro",
  59592. height: math.unit(500, "meters")
  59593. },
  59594. {
  59595. name: "Mega",
  59596. height: math.unit(5, "km")
  59597. },
  59598. {
  59599. name: "Mega+",
  59600. height: math.unit(30, "km")
  59601. },
  59602. {
  59603. name: "Giga",
  59604. height: math.unit(350, "km")
  59605. },
  59606. {
  59607. name: "Giga+",
  59608. height: math.unit(4000, "km")
  59609. },
  59610. {
  59611. name: "Terra",
  59612. height: math.unit(35000, "km")
  59613. },
  59614. {
  59615. name: "Original Size",
  59616. height: math.unit(130000, "km")
  59617. },
  59618. {
  59619. name: "Solar (Home Size)",
  59620. height: math.unit(4e6, "km"),
  59621. default: true
  59622. },
  59623. ]
  59624. ))
  59625. characterMakers.push(() => makeCharacter(
  59626. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59627. {
  59628. front: {
  59629. height: math.unit(1.8, "meters"),
  59630. weight: math.unit(95, "kg"),
  59631. name: "Front",
  59632. image: {
  59633. source: "./media/characters/shango/front.svg",
  59634. extra: 1925/1774,
  59635. bottom: 67/1992
  59636. }
  59637. },
  59638. back: {
  59639. height: math.unit(1.8, "meters"),
  59640. weight: math.unit(95, "kg"),
  59641. name: "Back",
  59642. image: {
  59643. source: "./media/characters/shango/back.svg",
  59644. extra: 1915/1766,
  59645. bottom: 52/1967
  59646. }
  59647. },
  59648. frontLewd: {
  59649. height: math.unit(1.8, "meters"),
  59650. weight: math.unit(95, "kg"),
  59651. name: "Front (Lewd)",
  59652. image: {
  59653. source: "./media/characters/shango/front-lewd.svg",
  59654. extra: 1925/1774,
  59655. bottom: 67/1992
  59656. }
  59657. },
  59658. backLewd: {
  59659. height: math.unit(1.8, "meters"),
  59660. weight: math.unit(95, "kg"),
  59661. name: "Back (Lewd)",
  59662. image: {
  59663. source: "./media/characters/shango/back-lewd.svg",
  59664. extra: 1915/1766,
  59665. bottom: 52/1967
  59666. }
  59667. },
  59668. maw: {
  59669. height: math.unit(1.64, "feet"),
  59670. name: "Maw",
  59671. image: {
  59672. source: "./media/characters/shango/maw.svg"
  59673. }
  59674. },
  59675. dick: {
  59676. height: math.unit(2.14, "feet"),
  59677. name: "Dick",
  59678. image: {
  59679. source: "./media/characters/shango/dick.svg"
  59680. }
  59681. },
  59682. },
  59683. [
  59684. {
  59685. name: "Incognito",
  59686. height: math.unit(1.8, "meters")
  59687. },
  59688. {
  59689. name: "Home Size",
  59690. height: math.unit(60, "meters"),
  59691. default: true
  59692. },
  59693. {
  59694. name: "Macro",
  59695. height: math.unit(450, "meters")
  59696. },
  59697. {
  59698. name: "Mega",
  59699. height: math.unit(6, "km")
  59700. },
  59701. {
  59702. name: "Mega+",
  59703. height: math.unit(35, "km")
  59704. },
  59705. {
  59706. name: "Giga",
  59707. height: math.unit(500, "km")
  59708. },
  59709. {
  59710. name: "Giga+",
  59711. height: math.unit(5000, "km")
  59712. },
  59713. {
  59714. name: "Terra",
  59715. height: math.unit(60000, "km")
  59716. },
  59717. {
  59718. name: "Terra+",
  59719. height: math.unit(400000, "km")
  59720. },
  59721. ]
  59722. ))
  59723. characterMakers.push(() => makeCharacter(
  59724. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59725. {
  59726. front: {
  59727. height: math.unit(2, "meters"),
  59728. weight: math.unit(95, "kg"),
  59729. name: "Front",
  59730. image: {
  59731. source: "./media/characters/osiris-gryphon/front.svg",
  59732. extra: 1508/1313,
  59733. bottom: 87/1595
  59734. }
  59735. },
  59736. back: {
  59737. height: math.unit(2, "meters"),
  59738. weight: math.unit(95, "kg"),
  59739. name: "Back",
  59740. image: {
  59741. source: "./media/characters/osiris-gryphon/back.svg",
  59742. extra: 1436/1309,
  59743. bottom: 64/1500
  59744. }
  59745. },
  59746. frontLewd: {
  59747. height: math.unit(2, "meters"),
  59748. weight: math.unit(95, "kg"),
  59749. name: "Front-lewd",
  59750. image: {
  59751. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59752. extra: 1508/1313,
  59753. bottom: 87/1595
  59754. }
  59755. },
  59756. wing: {
  59757. height: math.unit(6.3333, "feet"),
  59758. name: "Wing",
  59759. image: {
  59760. source: "./media/characters/osiris-gryphon/wing.svg"
  59761. }
  59762. },
  59763. },
  59764. [
  59765. {
  59766. name: "Incognito",
  59767. height: math.unit(2, "meters")
  59768. },
  59769. {
  59770. name: "Home Size",
  59771. height: math.unit(30, "meters"),
  59772. default: true
  59773. },
  59774. {
  59775. name: "Macro",
  59776. height: math.unit(100, "meters")
  59777. },
  59778. {
  59779. name: "Macro+",
  59780. height: math.unit(350, "meters")
  59781. },
  59782. {
  59783. name: "Mega",
  59784. height: math.unit(40, "km")
  59785. },
  59786. {
  59787. name: "Giga",
  59788. height: math.unit(300, "km")
  59789. },
  59790. {
  59791. name: "Giga+",
  59792. height: math.unit(2000, "km")
  59793. },
  59794. {
  59795. name: "Terra",
  59796. height: math.unit(30000, "km")
  59797. },
  59798. ]
  59799. ))
  59800. characterMakers.push(() => makeCharacter(
  59801. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59802. {
  59803. front: {
  59804. height: math.unit(2.5, "meters"),
  59805. weight: math.unit(200, "kg"),
  59806. name: "Front",
  59807. image: {
  59808. source: "./media/characters/atlas-dragon/front.svg",
  59809. extra: 745/462,
  59810. bottom: 36/781
  59811. }
  59812. },
  59813. back: {
  59814. height: math.unit(2.5, "meters"),
  59815. weight: math.unit(200, "kg"),
  59816. name: "Back",
  59817. image: {
  59818. source: "./media/characters/atlas-dragon/back.svg",
  59819. extra: 848/822,
  59820. bottom: 57/905
  59821. }
  59822. },
  59823. frontLewd: {
  59824. height: math.unit(2.5, "meters"),
  59825. weight: math.unit(200, "kg"),
  59826. name: "Front (Lewd)",
  59827. image: {
  59828. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59829. extra: 745/462,
  59830. bottom: 36/781
  59831. }
  59832. },
  59833. backLewd: {
  59834. height: math.unit(2.5, "meters"),
  59835. weight: math.unit(200, "kg"),
  59836. name: "Back (Lewd)",
  59837. image: {
  59838. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59839. extra: 848/822,
  59840. bottom: 57/905
  59841. }
  59842. },
  59843. },
  59844. [
  59845. {
  59846. name: "Incognito",
  59847. height: math.unit(2.5, "meters")
  59848. },
  59849. {
  59850. name: "Small Macro",
  59851. height: math.unit(50, "meters")
  59852. },
  59853. {
  59854. name: "Macro",
  59855. height: math.unit(350, "meters")
  59856. },
  59857. {
  59858. name: "Mega",
  59859. height: math.unit(5.5, "kilometers")
  59860. },
  59861. {
  59862. name: "Mega+",
  59863. height: math.unit(50, "km")
  59864. },
  59865. {
  59866. name: "Giga",
  59867. height: math.unit(350, "km")
  59868. },
  59869. {
  59870. name: "Giga+",
  59871. height: math.unit(2000, "km")
  59872. },
  59873. {
  59874. name: "Giga++",
  59875. height: math.unit(6500, "km")
  59876. },
  59877. {
  59878. name: "Terra",
  59879. height: math.unit(30000, "km")
  59880. },
  59881. {
  59882. name: "Terra+",
  59883. height: math.unit(250000, "km")
  59884. },
  59885. {
  59886. name: "True Size",
  59887. height: math.unit(100, "multiverses"),
  59888. default: true
  59889. },
  59890. ]
  59891. ))
  59892. characterMakers.push(() => makeCharacter(
  59893. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59894. {
  59895. front: {
  59896. height: math.unit(1.8, "m"),
  59897. weight: math.unit(120, "kg"),
  59898. name: "Front",
  59899. image: {
  59900. source: "./media/characters/chey/front.svg",
  59901. extra: 1359/1270,
  59902. bottom: 18/1377
  59903. }
  59904. },
  59905. arm: {
  59906. height: math.unit(2.05, "feet"),
  59907. name: "Arm",
  59908. image: {
  59909. source: "./media/characters/chey/arm.svg"
  59910. }
  59911. },
  59912. head: {
  59913. height: math.unit(1.89, "feet"),
  59914. name: "Head",
  59915. image: {
  59916. source: "./media/characters/chey/head.svg"
  59917. }
  59918. },
  59919. },
  59920. [
  59921. {
  59922. name: "Original Size",
  59923. height: math.unit(5, "cm")
  59924. },
  59925. {
  59926. name: "Incognito Size",
  59927. height: math.unit(2.4, "m")
  59928. },
  59929. {
  59930. name: "Home Size",
  59931. height: math.unit(200, "meters"),
  59932. default: true
  59933. },
  59934. {
  59935. name: "Mega",
  59936. height: math.unit(2, "km")
  59937. },
  59938. {
  59939. name: "Giga (Preferred Size)",
  59940. height: math.unit(2000, "km")
  59941. },
  59942. {
  59943. name: "Giga+",
  59944. height: math.unit(6000, "km")
  59945. },
  59946. {
  59947. name: "Terra",
  59948. height: math.unit(17000, "km")
  59949. },
  59950. {
  59951. name: "Terra+",
  59952. height: math.unit(75000, "km")
  59953. },
  59954. {
  59955. name: "Terra++",
  59956. height: math.unit(225000, "km")
  59957. },
  59958. ]
  59959. ))
  59960. characterMakers.push(() => makeCharacter(
  59961. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59962. {
  59963. side: {
  59964. height: math.unit(7.8, "meters"),
  59965. name: "Side",
  59966. image: {
  59967. source: "./media/characters/ragnarok/side.svg",
  59968. extra: 725/621,
  59969. bottom: 72/797
  59970. }
  59971. },
  59972. },
  59973. [
  59974. {
  59975. name: "Normal",
  59976. height: math.unit(7.8, "meters"),
  59977. default: true
  59978. },
  59979. ]
  59980. ))
  59981. characterMakers.push(() => makeCharacter(
  59982. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59983. {
  59984. hyena_front: {
  59985. height: math.unit(2.1, "meters"),
  59986. weight: math.unit(110, "kg"),
  59987. name: "Front",
  59988. image: {
  59989. source: "./media/characters/nima/hyena-front.svg",
  59990. extra: 1904/1796,
  59991. bottom: 67/1971
  59992. },
  59993. form: "hyena",
  59994. },
  59995. hyena_back: {
  59996. height: math.unit(2.1, "meters"),
  59997. weight: math.unit(110, "kg"),
  59998. name: "Back",
  59999. image: {
  60000. source: "./media/characters/nima/hyena-back.svg",
  60001. extra: 1964/1884,
  60002. bottom: 35/1999
  60003. },
  60004. form: "hyena",
  60005. },
  60006. shark_front: {
  60007. height: math.unit(1.95, "meters"),
  60008. weight: math.unit(110, "kg"),
  60009. name: "Front",
  60010. image: {
  60011. source: "./media/characters/nima/shark-front.svg",
  60012. extra: 2238/2013,
  60013. bottom: 0/223
  60014. },
  60015. form: "shark",
  60016. },
  60017. paw: {
  60018. height: math.unit(1, "feet"),
  60019. name: "Paw",
  60020. image: {
  60021. source: "./media/characters/nima/paw.svg"
  60022. }
  60023. },
  60024. circlet: {
  60025. height: math.unit(0.3, "feet"),
  60026. name: "Circlet",
  60027. image: {
  60028. source: "./media/characters/nima/circlet.svg"
  60029. }
  60030. },
  60031. necklace: {
  60032. height: math.unit(1.2, "feet"),
  60033. name: "Necklace",
  60034. image: {
  60035. source: "./media/characters/nima/necklace.svg"
  60036. }
  60037. },
  60038. bracelet: {
  60039. height: math.unit(0.51, "feet"),
  60040. name: "Bracelet",
  60041. image: {
  60042. source: "./media/characters/nima/bracelet.svg"
  60043. }
  60044. },
  60045. armband: {
  60046. height: math.unit(1.3, "feet"),
  60047. name: "Armband",
  60048. image: {
  60049. source: "./media/characters/nima/armband.svg"
  60050. }
  60051. },
  60052. },
  60053. [
  60054. {
  60055. name: "Incognito",
  60056. height: math.unit(2.1, "meters"),
  60057. allForms: true
  60058. },
  60059. {
  60060. name: "Small Macro",
  60061. height: math.unit(50, "meters"),
  60062. allForms: true
  60063. },
  60064. {
  60065. name: "Macro",
  60066. height: math.unit(200, "meters"),
  60067. allForms: true
  60068. },
  60069. {
  60070. name: "Mega",
  60071. height: math.unit(2.5, "km"),
  60072. allForms: true
  60073. },
  60074. {
  60075. name: "Mega+",
  60076. height: math.unit(30, "km"),
  60077. allForms: true
  60078. },
  60079. {
  60080. name: "Giga (Home Size)",
  60081. height: math.unit(400, "km"),
  60082. allForms: true,
  60083. default: true
  60084. },
  60085. {
  60086. name: "Giga+",
  60087. height: math.unit(2500, "km"),
  60088. allForms: true
  60089. },
  60090. {
  60091. name: "Giga++",
  60092. height: math.unit(8000, "km"),
  60093. allForms: true
  60094. },
  60095. {
  60096. name: "Terra",
  60097. height: math.unit(20000, "km"),
  60098. allForms: true
  60099. },
  60100. {
  60101. name: "Terra+",
  60102. height: math.unit(70000, "km"),
  60103. allForms: true
  60104. },
  60105. {
  60106. name: "Terra++",
  60107. height: math.unit(600000, "km"),
  60108. allForms: true
  60109. },
  60110. {
  60111. name: "Galactic",
  60112. height: math.unit(40, "galaxies"),
  60113. allForms: true
  60114. },
  60115. {
  60116. name: "Universal",
  60117. height: math.unit(40, "universes"),
  60118. allForms: true
  60119. },
  60120. ],
  60121. {
  60122. "hyena": {
  60123. name: "Hyena",
  60124. default: true
  60125. },
  60126. "shark": {
  60127. name: "Shark",
  60128. },
  60129. }
  60130. ))
  60131. characterMakers.push(() => makeCharacter(
  60132. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60133. {
  60134. anthro_front: {
  60135. height: math.unit(1.5, "meters"),
  60136. name: "Front",
  60137. image: {
  60138. source: "./media/characters/adelaide/anthro-front.svg",
  60139. extra: 860/783,
  60140. bottom: 60/920
  60141. },
  60142. form: "anthro",
  60143. default: true
  60144. },
  60145. hand: {
  60146. height: math.unit(0.65, "feet"),
  60147. name: "Hand",
  60148. image: {
  60149. source: "./media/characters/adelaide/hand.svg"
  60150. },
  60151. form: "anthro"
  60152. },
  60153. foot: {
  60154. height: math.unit(1.38 * 259 / 314, "feet"),
  60155. name: "Foot",
  60156. image: {
  60157. source: "./media/characters/adelaide/foot.svg",
  60158. extra: 259/259,
  60159. bottom: 55/314
  60160. },
  60161. form: "anthro"
  60162. },
  60163. feather: {
  60164. height: math.unit(0.85, "feet"),
  60165. name: "Feather",
  60166. image: {
  60167. source: "./media/characters/adelaide/feather.svg"
  60168. },
  60169. form: "anthro"
  60170. },
  60171. feral_side: {
  60172. height: math.unit(1, "meters"),
  60173. name: "Side",
  60174. image: {
  60175. source: "./media/characters/adelaide/feral-side.svg",
  60176. extra: 550/467,
  60177. bottom: 37/587
  60178. },
  60179. form: "feral",
  60180. default: true
  60181. },
  60182. feral_hand: {
  60183. height: math.unit(0.58, "feet"),
  60184. name: "Hand",
  60185. image: {
  60186. source: "./media/characters/adelaide/hand.svg"
  60187. },
  60188. form: "feral"
  60189. },
  60190. feral_foot: {
  60191. height: math.unit(1.2 * 259 / 314, "feet"),
  60192. name: "Foot",
  60193. image: {
  60194. source: "./media/characters/adelaide/foot.svg",
  60195. extra: 259/259,
  60196. bottom: 55/314
  60197. },
  60198. form: "feral"
  60199. },
  60200. feral_feather: {
  60201. height: math.unit(0.63, "feet"),
  60202. name: "Feather",
  60203. image: {
  60204. source: "./media/characters/adelaide/feather.svg"
  60205. },
  60206. form: "feral"
  60207. },
  60208. },
  60209. [
  60210. {
  60211. name: "Normal",
  60212. height: math.unit(1.5, "meters"),
  60213. form: "anthro",
  60214. default: true
  60215. },
  60216. {
  60217. name: "Normal",
  60218. height: math.unit(1, "meters"),
  60219. form: "feral",
  60220. default: true
  60221. },
  60222. ],
  60223. {
  60224. "anthro": {
  60225. name: "Anthro",
  60226. default: true
  60227. },
  60228. "feral": {
  60229. name: "Feral",
  60230. },
  60231. }
  60232. ))
  60233. characterMakers.push(() => makeCharacter(
  60234. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60235. {
  60236. front: {
  60237. height: math.unit(2.5, "meters"),
  60238. name: "Front",
  60239. image: {
  60240. source: "./media/characters/goa/front.svg",
  60241. extra: 1109/1013,
  60242. bottom: 150/1259
  60243. }
  60244. },
  60245. },
  60246. [
  60247. {
  60248. name: "Normal",
  60249. height: math.unit(2.5, "meters"),
  60250. default: true
  60251. },
  60252. ]
  60253. ))
  60254. characterMakers.push(() => makeCharacter(
  60255. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60256. {
  60257. front: {
  60258. height: math.unit(2, "meters"),
  60259. weight: math.unit(100, "kg"),
  60260. name: "Front",
  60261. image: {
  60262. source: "./media/characters/kiki-weavile/front.svg",
  60263. extra: 357/332,
  60264. bottom: 60/417
  60265. }
  60266. },
  60267. },
  60268. [
  60269. {
  60270. name: "Normal",
  60271. height: math.unit(2, "meters"),
  60272. default: true
  60273. },
  60274. ]
  60275. ))
  60276. characterMakers.push(() => makeCharacter(
  60277. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60278. {
  60279. side: {
  60280. height: math.unit(1.6, "meters"),
  60281. name: "Side",
  60282. image: {
  60283. source: "./media/characters/liza/side.svg",
  60284. extra: 943/915,
  60285. bottom: 72/1015
  60286. }
  60287. },
  60288. },
  60289. [
  60290. {
  60291. name: "Normal",
  60292. height: math.unit(1.6, "meters"),
  60293. default: true
  60294. },
  60295. ]
  60296. ))
  60297. characterMakers.push(() => makeCharacter(
  60298. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60299. {
  60300. side: {
  60301. height: math.unit(2.5, "meters"),
  60302. preyCapacity: math.unit(1, "people"),
  60303. name: "Side",
  60304. image: {
  60305. source: "./media/characters/persephone-sweetbreath/side.svg",
  60306. extra: 796/700,
  60307. bottom: 44/840
  60308. }
  60309. },
  60310. sideVore: {
  60311. height: math.unit(2.5, "meters"),
  60312. preyCapacity: math.unit(1, "people"),
  60313. name: "Side (Full)",
  60314. image: {
  60315. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60316. extra: 796/700,
  60317. bottom: 44/840
  60318. }
  60319. },
  60320. },
  60321. [
  60322. {
  60323. name: "Normal",
  60324. height: math.unit(2.5, "meters"),
  60325. default: true
  60326. },
  60327. ]
  60328. ))
  60329. characterMakers.push(() => makeCharacter(
  60330. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60331. {
  60332. front: {
  60333. height: math.unit(32, "meters"),
  60334. name: "Front",
  60335. image: {
  60336. source: "./media/characters/pierce/front.svg",
  60337. extra: 1695/1475,
  60338. bottom: 185/1880
  60339. }
  60340. },
  60341. side: {
  60342. height: math.unit(32, "meters"),
  60343. name: "Side",
  60344. image: {
  60345. source: "./media/characters/pierce/side.svg",
  60346. extra: 974/859,
  60347. bottom: 43/1017
  60348. }
  60349. },
  60350. frontWingless: {
  60351. height: math.unit(32, "meters"),
  60352. name: "Front (Wingless)",
  60353. image: {
  60354. source: "./media/characters/pierce/front-wingless.svg",
  60355. extra: 1695/1475,
  60356. bottom: 185/1880
  60357. }
  60358. },
  60359. sideWingless: {
  60360. height: math.unit(32, "meters"),
  60361. name: "Side (Wingless)",
  60362. image: {
  60363. source: "./media/characters/pierce/side-wingless.svg",
  60364. extra: 974/859,
  60365. bottom: 43/1017
  60366. }
  60367. },
  60368. maw: {
  60369. height: math.unit(19.3, "meters"),
  60370. name: "Maw",
  60371. image: {
  60372. source: "./media/characters/pierce/maw.svg"
  60373. }
  60374. },
  60375. },
  60376. [
  60377. {
  60378. name: "Small",
  60379. height: math.unit(8.5, "meters")
  60380. },
  60381. {
  60382. name: "Normal",
  60383. height: math.unit(32, "meters"),
  60384. default: true
  60385. },
  60386. ]
  60387. ))
  60388. characterMakers.push(() => makeCharacter(
  60389. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60390. {
  60391. front: {
  60392. height: math.unit(2.3, "meters"),
  60393. weight: math.unit(165, "kg"),
  60394. name: "Front",
  60395. image: {
  60396. source: "./media/characters/shira/front.svg",
  60397. extra: 924/919,
  60398. bottom: 17/941
  60399. },
  60400. form: "cobra",
  60401. default: true
  60402. },
  60403. back: {
  60404. height: math.unit(2.3, "meters"),
  60405. weight: math.unit(165, "kg"),
  60406. name: "Back",
  60407. image: {
  60408. source: "./media/characters/shira/back.svg",
  60409. extra: 928/922,
  60410. bottom: 18/946
  60411. },
  60412. form: "cobra"
  60413. },
  60414. frontLewd: {
  60415. height: math.unit(2.3, "meters"),
  60416. weight: math.unit(165, "kg"),
  60417. name: "Front (Lewd)",
  60418. image: {
  60419. source: "./media/characters/shira/front-lewd.svg",
  60420. extra: 924/919,
  60421. bottom: 17/941
  60422. },
  60423. form: "cobra"
  60424. },
  60425. backLewd: {
  60426. height: math.unit(2.3, "meters"),
  60427. weight: math.unit(165, "kg"),
  60428. name: "Back (Lewd)",
  60429. image: {
  60430. source: "./media/characters/shira/back-lewd.svg",
  60431. extra: 928/922,
  60432. bottom: 18/946
  60433. },
  60434. form: "cobra"
  60435. },
  60436. maw: {
  60437. height: math.unit(1.14, "feet"),
  60438. name: "Maw",
  60439. image: {
  60440. source: "./media/characters/shira/maw.svg"
  60441. },
  60442. form: "cobra"
  60443. },
  60444. magma_front: {
  60445. height: math.unit(2.3, "meters"),
  60446. weight: math.unit(165, "kg"),
  60447. name: "Front",
  60448. image: {
  60449. source: "./media/characters/shira/magma-front.svg",
  60450. extra: 1870/1693,
  60451. bottom: 24/1894
  60452. },
  60453. form: "magma",
  60454. },
  60455. magma_back: {
  60456. height: math.unit(2.3, "meters"),
  60457. weight: math.unit(165, "kg"),
  60458. name: "Back",
  60459. image: {
  60460. source: "./media/characters/shira/magma-back.svg",
  60461. extra: 1918/1756,
  60462. bottom: 46/1964
  60463. },
  60464. form: "magma",
  60465. },
  60466. },
  60467. [
  60468. {
  60469. name: "Incognito",
  60470. height: math.unit(2.3, "meters"),
  60471. allForms: true
  60472. },
  60473. {
  60474. name: "Home Size",
  60475. height: math.unit(150, "meters"),
  60476. default: true,
  60477. allForms: true
  60478. },
  60479. {
  60480. name: "Macro",
  60481. height: math.unit(2, "km"),
  60482. allForms: true
  60483. },
  60484. {
  60485. name: "Mega",
  60486. height: math.unit(30, "km"),
  60487. allForms: true
  60488. },
  60489. {
  60490. name: "Giga",
  60491. height: math.unit(450, "km"),
  60492. allForms: true
  60493. },
  60494. {
  60495. name: "Giga+",
  60496. height: math.unit(3000, "km"),
  60497. allForms: true
  60498. },
  60499. {
  60500. name: "Giga++",
  60501. height: math.unit(6000, "km"),
  60502. allForms: true
  60503. },
  60504. {
  60505. name: "Terra",
  60506. height: math.unit(80000, "km"),
  60507. allForms: true
  60508. },
  60509. {
  60510. name: "Terra+",
  60511. height: math.unit(350000, "km"),
  60512. allForms: true
  60513. },
  60514. {
  60515. name: "Solar",
  60516. height: math.unit(1e6, "km"),
  60517. allForms: true
  60518. },
  60519. ],
  60520. {
  60521. "cobra": {
  60522. name: "Cobra",
  60523. default: true
  60524. },
  60525. "magma": {
  60526. name: "Magma Dragon",
  60527. },
  60528. }
  60529. ))
  60530. characterMakers.push(() => makeCharacter(
  60531. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60532. {
  60533. front: {
  60534. height: math.unit(2, "meters"),
  60535. weight: math.unit(160, "kg"),
  60536. name: "Front",
  60537. image: {
  60538. source: "./media/characters/daxerios/front.svg",
  60539. extra: 1334/1277,
  60540. bottom: 45/1379
  60541. }
  60542. },
  60543. frontLewd: {
  60544. height: math.unit(2, "meters"),
  60545. weight: math.unit(160, "kg"),
  60546. name: "Front (Lewd)",
  60547. image: {
  60548. source: "./media/characters/daxerios/front-lewd.svg",
  60549. extra: 1334/1277,
  60550. bottom: 45/1379
  60551. }
  60552. },
  60553. dick: {
  60554. height: math.unit(2.35, "feet"),
  60555. name: "Dick",
  60556. image: {
  60557. source: "./media/characters/daxerios/dick.svg"
  60558. }
  60559. },
  60560. },
  60561. [
  60562. {
  60563. name: "\"Small\"",
  60564. height: math.unit(5, "meters")
  60565. },
  60566. {
  60567. name: "Original Size",
  60568. height: math.unit(500, "meters"),
  60569. default: true
  60570. },
  60571. {
  60572. name: "Mega",
  60573. height: math.unit(2, "km")
  60574. },
  60575. {
  60576. name: "Mega+",
  60577. height: math.unit(35, "km")
  60578. },
  60579. {
  60580. name: "Giga",
  60581. height: math.unit(250, "km")
  60582. },
  60583. {
  60584. name: "Giga+",
  60585. height: math.unit(3000, "km")
  60586. },
  60587. {
  60588. name: "Terra",
  60589. height: math.unit(25000, "km")
  60590. },
  60591. {
  60592. name: "Terra+",
  60593. height: math.unit(300000, "km")
  60594. },
  60595. {
  60596. name: "Solar",
  60597. height: math.unit(1e6, "km")
  60598. },
  60599. ]
  60600. ))
  60601. characterMakers.push(() => makeCharacter(
  60602. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60603. {
  60604. front: {
  60605. height: math.unit(8 + 4/12, "feet"),
  60606. weight: math.unit(464, "lb"),
  60607. name: "Front",
  60608. image: {
  60609. source: "./media/characters/caveat/front.svg",
  60610. extra: 1861/1678,
  60611. bottom: 40/1901
  60612. }
  60613. },
  60614. },
  60615. [
  60616. {
  60617. name: "Normal",
  60618. height: math.unit(8 + 4/12, "feet"),
  60619. default: true
  60620. },
  60621. ]
  60622. ))
  60623. characterMakers.push(() => makeCharacter(
  60624. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60625. {
  60626. front: {
  60627. height: math.unit(12, "feet"),
  60628. weight: math.unit(1800, "lb"),
  60629. name: "Front",
  60630. image: {
  60631. source: "./media/characters/centbair/front.svg",
  60632. extra: 781/663,
  60633. bottom: 25/806
  60634. }
  60635. },
  60636. frontNsfw: {
  60637. height: math.unit(12, "feet"),
  60638. weight: math.unit(1800, "lb"),
  60639. name: "Front (NSFW)",
  60640. image: {
  60641. source: "./media/characters/centbair/front-nsfw.svg",
  60642. extra: 781/663,
  60643. bottom: 25/806
  60644. }
  60645. },
  60646. back: {
  60647. height: math.unit(12, "feet"),
  60648. weight: math.unit(1800, "lb"),
  60649. name: "Back",
  60650. image: {
  60651. source: "./media/characters/centbair/back.svg",
  60652. extra: 808/761,
  60653. bottom: 19/827
  60654. }
  60655. },
  60656. dick: {
  60657. height: math.unit(6.5, "feet"),
  60658. name: "Dick",
  60659. image: {
  60660. source: "./media/characters/centbair/dick.svg"
  60661. }
  60662. },
  60663. slit: {
  60664. height: math.unit(3.25, "feet"),
  60665. name: "Slit",
  60666. image: {
  60667. source: "./media/characters/centbair/slit.svg"
  60668. }
  60669. },
  60670. },
  60671. [
  60672. {
  60673. name: "Normal",
  60674. height: math.unit(12, "feet"),
  60675. default: true
  60676. },
  60677. ]
  60678. ))
  60679. characterMakers.push(() => makeCharacter(
  60680. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60681. {
  60682. front: {
  60683. height: math.unit(5 + 7/12, "feet"),
  60684. name: "Front",
  60685. image: {
  60686. source: "./media/characters/andy/front.svg",
  60687. extra: 634/588,
  60688. bottom: 36/670
  60689. },
  60690. extraAttributes: {
  60691. "pawLength": {
  60692. name: "Paw Length",
  60693. power: 1,
  60694. type: "length",
  60695. base: math.unit(1, "feet")
  60696. },
  60697. }
  60698. },
  60699. side: {
  60700. height: math.unit(5 + 7/12, "feet"),
  60701. name: "Side",
  60702. image: {
  60703. source: "./media/characters/andy/side.svg",
  60704. extra: 641/596,
  60705. bottom: 34/675
  60706. },
  60707. extraAttributes: {
  60708. "pawLength": {
  60709. name: "Paw Length",
  60710. power: 1,
  60711. type: "length",
  60712. base: math.unit(1, "feet")
  60713. },
  60714. }
  60715. },
  60716. back: {
  60717. height: math.unit(5 + 7/12, "feet"),
  60718. name: "Back",
  60719. image: {
  60720. source: "./media/characters/andy/back.svg",
  60721. extra: 618/583,
  60722. bottom: 39/657
  60723. },
  60724. extraAttributes: {
  60725. "pawLength": {
  60726. name: "Paw Length",
  60727. power: 1,
  60728. type: "length",
  60729. base: math.unit(1, "feet")
  60730. },
  60731. }
  60732. },
  60733. paw: {
  60734. height: math.unit(1.13, "feet"),
  60735. name: "Paw",
  60736. image: {
  60737. source: "./media/characters/andy/paw.svg"
  60738. }
  60739. },
  60740. },
  60741. [
  60742. {
  60743. name: "Micro",
  60744. height: math.unit(4, "inches")
  60745. },
  60746. {
  60747. name: "Normal",
  60748. height: math.unit(5 + 7/12, "feet"),
  60749. default: true
  60750. },
  60751. {
  60752. name: "Macro",
  60753. height: math.unit(390.42, "feet")
  60754. },
  60755. ]
  60756. ))
  60757. characterMakers.push(() => makeCharacter(
  60758. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60759. {
  60760. front: {
  60761. height: math.unit(7, "feet"),
  60762. weight: math.unit(250, "lb"),
  60763. name: "Front",
  60764. image: {
  60765. source: "./media/characters/vix-titan/front.svg",
  60766. extra: 460/428,
  60767. bottom: 15/475
  60768. },
  60769. extraAttributes: {
  60770. "pawWidth": {
  60771. name: "Paw Width",
  60772. power: 1,
  60773. type: "length",
  60774. base: math.unit(0.75, "feet")
  60775. },
  60776. }
  60777. },
  60778. },
  60779. [
  60780. {
  60781. name: "Normal",
  60782. height: math.unit(7, "feet"),
  60783. default: true
  60784. },
  60785. {
  60786. name: "Giant",
  60787. height: math.unit(1500, "feet")
  60788. },
  60789. {
  60790. name: "Mega",
  60791. height: math.unit(10, "miles")
  60792. },
  60793. {
  60794. name: "Giga",
  60795. height: math.unit(150, "miles")
  60796. },
  60797. {
  60798. name: "Tera",
  60799. height: math.unit(144000, "miles")
  60800. },
  60801. ]
  60802. ))
  60803. characterMakers.push(() => makeCharacter(
  60804. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60805. {
  60806. front: {
  60807. height: math.unit(6 + 2/12, "feet"),
  60808. name: "Front",
  60809. image: {
  60810. source: "./media/characters/reiku/front.svg",
  60811. extra: 1910/1757,
  60812. bottom: 103/2013
  60813. },
  60814. extraAttributes: {
  60815. "thighThickness": {
  60816. name: "Thigh Thickness",
  60817. power: 1,
  60818. type: "length",
  60819. base: math.unit(1.12, "feet")
  60820. },
  60821. "assThickness": {
  60822. name: "Ass Thickness",
  60823. power: 1,
  60824. type: "length",
  60825. base: math.unit(1.12*2, "feet")
  60826. },
  60827. }
  60828. },
  60829. side: {
  60830. height: math.unit(6 + 2/12, "feet"),
  60831. name: "Side",
  60832. image: {
  60833. source: "./media/characters/reiku/side.svg",
  60834. extra: 1846/1748,
  60835. bottom: 99/1945
  60836. },
  60837. extraAttributes: {
  60838. "thighThickness": {
  60839. name: "Thigh Thickness",
  60840. power: 1,
  60841. type: "length",
  60842. base: math.unit(1.12, "feet")
  60843. },
  60844. "assThickness": {
  60845. name: "Ass Thickness",
  60846. power: 1,
  60847. type: "length",
  60848. base: math.unit(1.12*2, "feet")
  60849. },
  60850. }
  60851. },
  60852. back: {
  60853. height: math.unit(6 + 2/12, "feet"),
  60854. name: "Back",
  60855. image: {
  60856. source: "./media/characters/reiku/back.svg",
  60857. extra: 1941/1786,
  60858. bottom: 34/1975
  60859. },
  60860. extraAttributes: {
  60861. "thighThickness": {
  60862. name: "Thigh Thickness",
  60863. power: 1,
  60864. type: "length",
  60865. base: math.unit(1.12, "feet")
  60866. },
  60867. "assThickness": {
  60868. name: "Ass Thickness",
  60869. power: 1,
  60870. type: "length",
  60871. base: math.unit(1.12*2, "feet")
  60872. },
  60873. }
  60874. },
  60875. head: {
  60876. height: math.unit(1.8, "feet"),
  60877. name: "Head",
  60878. image: {
  60879. source: "./media/characters/reiku/head.svg"
  60880. }
  60881. },
  60882. tailTop: {
  60883. height: math.unit(8.4, "feet"),
  60884. name: "Tail (Top)",
  60885. image: {
  60886. source: "./media/characters/reiku/tail-top.svg"
  60887. }
  60888. },
  60889. tailBottom: {
  60890. height: math.unit(8.4, "feet"),
  60891. name: "Tail (Bottom)",
  60892. image: {
  60893. source: "./media/characters/reiku/tail-bottom.svg"
  60894. }
  60895. },
  60896. foot: {
  60897. height: math.unit(2.6, "feet"),
  60898. name: "Foot",
  60899. image: {
  60900. source: "./media/characters/reiku/foot.svg"
  60901. }
  60902. },
  60903. footCurled: {
  60904. height: math.unit(2.3, "feet"),
  60905. name: "Foot (Curled)",
  60906. image: {
  60907. source: "./media/characters/reiku/foot-curled.svg"
  60908. }
  60909. },
  60910. footSide: {
  60911. height: math.unit(1.26, "feet"),
  60912. name: "Foot (Side)",
  60913. image: {
  60914. source: "./media/characters/reiku/foot-side.svg"
  60915. }
  60916. },
  60917. },
  60918. [
  60919. {
  60920. name: "Normal",
  60921. height: math.unit(6 + 2/12, "feet"),
  60922. default: true
  60923. },
  60924. ]
  60925. ))
  60926. characterMakers.push(() => makeCharacter(
  60927. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60928. {
  60929. front: {
  60930. height: math.unit(7, "feet"),
  60931. weight: math.unit(500, "kg"),
  60932. name: "Front",
  60933. image: {
  60934. source: "./media/characters/cialda/front.svg",
  60935. extra: 912/745,
  60936. bottom: 55/967
  60937. }
  60938. },
  60939. },
  60940. [
  60941. {
  60942. name: "Normal",
  60943. height: math.unit(7, "feet"),
  60944. default: true
  60945. },
  60946. ]
  60947. ))
  60948. characterMakers.push(() => makeCharacter(
  60949. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60950. {
  60951. side: {
  60952. height: math.unit(6, "feet"),
  60953. weight: math.unit(600, "lb"),
  60954. preyCapacity: math.unit(25, "liters"),
  60955. name: "Side",
  60956. image: {
  60957. source: "./media/characters/darkkin/side.svg",
  60958. extra: 1597/1447,
  60959. bottom: 101/1698
  60960. }
  60961. },
  60962. },
  60963. [
  60964. {
  60965. name: "Canon Height",
  60966. height: math.unit(568, "feet"),
  60967. default: true
  60968. },
  60969. ]
  60970. ))
  60971. characterMakers.push(() => makeCharacter(
  60972. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60973. {
  60974. front: {
  60975. height: math.unit(6, "feet"),
  60976. weight: math.unit(1500, "lb"),
  60977. preyCapacity: math.unit(3, "people"),
  60978. name: "Front",
  60979. image: {
  60980. source: "./media/characters/livnia/front.svg",
  60981. extra: 934/932,
  60982. bottom: 83/1017
  60983. }
  60984. },
  60985. back: {
  60986. height: math.unit(6, "feet"),
  60987. weight: math.unit(1500, "lb"),
  60988. preyCapacity: math.unit(3, "people"),
  60989. name: "Back",
  60990. image: {
  60991. source: "./media/characters/livnia/back.svg",
  60992. extra: 916/915,
  60993. bottom: 58/974
  60994. }
  60995. },
  60996. head: {
  60997. height: math.unit(1.53, "feet"),
  60998. name: "Head",
  60999. image: {
  61000. source: "./media/characters/livnia/head.svg"
  61001. }
  61002. },
  61003. maw: {
  61004. height: math.unit(0.78, "feet"),
  61005. name: "Maw",
  61006. image: {
  61007. source: "./media/characters/livnia/maw.svg"
  61008. }
  61009. },
  61010. genitals: {
  61011. height: math.unit(0.35, "feet"),
  61012. name: "Genitals",
  61013. image: {
  61014. source: "./media/characters/livnia/genitals.svg"
  61015. }
  61016. },
  61017. },
  61018. [
  61019. {
  61020. name: "Normal",
  61021. height: math.unit(1000, "feet"),
  61022. default: true
  61023. },
  61024. ]
  61025. ))
  61026. characterMakers.push(() => makeCharacter(
  61027. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61028. {
  61029. front: {
  61030. height: math.unit(4, "feet"),
  61031. weight: math.unit(73, "lb"),
  61032. name: "Front",
  61033. image: {
  61034. source: "./media/characters/hayaku/front.svg",
  61035. extra: 1011/888,
  61036. bottom: 33/1044
  61037. }
  61038. },
  61039. back: {
  61040. height: math.unit(4, "feet"),
  61041. weight: math.unit(73, "lb"),
  61042. name: "Back",
  61043. image: {
  61044. source: "./media/characters/hayaku/back.svg",
  61045. extra: 1040/930,
  61046. bottom: 20/1060
  61047. }
  61048. },
  61049. },
  61050. [
  61051. {
  61052. name: "Normal",
  61053. height: math.unit(4, "feet"),
  61054. default: true
  61055. },
  61056. ]
  61057. ))
  61058. characterMakers.push(() => makeCharacter(
  61059. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61060. {
  61061. front: {
  61062. height: math.unit(6 + 7/12, "feet"),
  61063. weight: math.unit(300, "lb"),
  61064. name: "Front",
  61065. image: {
  61066. source: "./media/characters/athena-bryzant/front.svg",
  61067. extra: 870/835,
  61068. bottom: 33/903
  61069. }
  61070. },
  61071. back: {
  61072. height: math.unit(6 + 7/12, "feet"),
  61073. weight: math.unit(300, "lb"),
  61074. name: "Back",
  61075. image: {
  61076. source: "./media/characters/athena-bryzant/back.svg",
  61077. extra: 858/823,
  61078. bottom: 30/888
  61079. }
  61080. },
  61081. head: {
  61082. height: math.unit(2.38, "feet"),
  61083. name: "Head",
  61084. image: {
  61085. source: "./media/characters/athena-bryzant/head.svg"
  61086. }
  61087. },
  61088. wings: {
  61089. height: math.unit(2.85, "feet"),
  61090. name: "Wings",
  61091. image: {
  61092. source: "./media/characters/athena-bryzant/wings.svg"
  61093. }
  61094. },
  61095. },
  61096. [
  61097. {
  61098. name: "Normal",
  61099. height: math.unit(6 + 7/12, "feet"),
  61100. default: true
  61101. },
  61102. {
  61103. name: "Big",
  61104. height: math.unit(8, "feet")
  61105. },
  61106. {
  61107. name: "Very Big",
  61108. height: math.unit(11, "feet")
  61109. },
  61110. ]
  61111. ))
  61112. characterMakers.push(() => makeCharacter(
  61113. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61114. {
  61115. side: {
  61116. height: math.unit(3, "meters"),
  61117. weight: math.unit(7500, "kg"),
  61118. preyCapacity: math.unit(1e12, "people"),
  61119. name: "Side",
  61120. image: {
  61121. source: "./media/characters/zel-kesh/side.svg",
  61122. extra: 910/407,
  61123. bottom: 147/1057
  61124. }
  61125. },
  61126. },
  61127. [
  61128. {
  61129. name: "Normal",
  61130. height: math.unit(3, "meters"),
  61131. default: true
  61132. },
  61133. ]
  61134. ))
  61135. characterMakers.push(() => makeCharacter(
  61136. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61137. {
  61138. front: {
  61139. height: math.unit(2, "meters"),
  61140. weight: math.unit(95, "kg"),
  61141. name: "Front",
  61142. image: {
  61143. source: "./media/characters/kane-fox/front.svg",
  61144. extra: 945/888,
  61145. bottom: 27/972
  61146. }
  61147. },
  61148. back: {
  61149. height: math.unit(2, "meters"),
  61150. weight: math.unit(95, "kg"),
  61151. name: "Back",
  61152. image: {
  61153. source: "./media/characters/kane-fox/back.svg",
  61154. extra: 959/914,
  61155. bottom: 15/974
  61156. }
  61157. },
  61158. frontLewd: {
  61159. height: math.unit(2, "meters"),
  61160. weight: math.unit(95, "kg"),
  61161. name: "Front (Lewd)",
  61162. image: {
  61163. source: "./media/characters/kane-fox/front-lewd.svg",
  61164. extra: 945/888,
  61165. bottom: 27/972
  61166. }
  61167. },
  61168. },
  61169. [
  61170. {
  61171. name: "Home Size",
  61172. height: math.unit(2, "meters"),
  61173. default: true
  61174. },
  61175. {
  61176. name: "Macro",
  61177. height: math.unit(200, "meters")
  61178. },
  61179. {
  61180. name: "Small Mega",
  61181. height: math.unit(3, "km")
  61182. },
  61183. {
  61184. name: "Mega",
  61185. height: math.unit(50, "km")
  61186. },
  61187. {
  61188. name: "Giga",
  61189. height: math.unit(200, "km")
  61190. },
  61191. {
  61192. name: "Giga+",
  61193. height: math.unit(2500, "km")
  61194. },
  61195. {
  61196. name: "Terra",
  61197. height: math.unit(70000, "km")
  61198. },
  61199. {
  61200. name: "Terra+",
  61201. height: math.unit(150000, "km")
  61202. },
  61203. {
  61204. name: "Terra++",
  61205. height: math.unit(400000, "km")
  61206. },
  61207. ]
  61208. ))
  61209. characterMakers.push(() => makeCharacter(
  61210. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61211. {
  61212. otter_front: {
  61213. height: math.unit(1.8, "meters"),
  61214. weight: math.unit(90, "kg"),
  61215. name: "Front",
  61216. image: {
  61217. source: "./media/characters/ayranus/otter-front.svg",
  61218. extra: 468/452,
  61219. bottom: 43/511
  61220. },
  61221. form: "otter",
  61222. },
  61223. otter_frontLewd: {
  61224. height: math.unit(1.8, "meters"),
  61225. weight: math.unit(90, "kg"),
  61226. name: "Front (Lewd)",
  61227. image: {
  61228. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61229. extra: 468/452,
  61230. bottom: 43/511
  61231. },
  61232. form: "otter",
  61233. },
  61234. lionbat_front: {
  61235. height: math.unit(1.8, "meters"),
  61236. weight: math.unit(90, "kg"),
  61237. name: "Front (Lewd)",
  61238. image: {
  61239. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61240. extra: 797/740,
  61241. bottom: 78/875
  61242. },
  61243. form: "lionbat",
  61244. },
  61245. paw: {
  61246. height: math.unit(1.5, "feet"),
  61247. name: "Paw",
  61248. image: {
  61249. source: "./media/characters/ayranus/paw.svg"
  61250. },
  61251. },
  61252. },
  61253. [
  61254. {
  61255. name: "Incognito",
  61256. height: math.unit(1.8, "meters"),
  61257. allForms: true
  61258. },
  61259. {
  61260. name: "Macro",
  61261. height: math.unit(60, "meters"),
  61262. allForms: true
  61263. },
  61264. {
  61265. name: "Macro+",
  61266. height: math.unit(200, "meters"),
  61267. allForms: true
  61268. },
  61269. {
  61270. name: "Mega",
  61271. height: math.unit(35, "km"),
  61272. allForms: true
  61273. },
  61274. {
  61275. name: "Giga",
  61276. height: math.unit(220, "km"),
  61277. allForms: true
  61278. },
  61279. {
  61280. name: "Giga+",
  61281. height: math.unit(1500, "km"),
  61282. allForms: true
  61283. },
  61284. {
  61285. name: "Terra",
  61286. height: math.unit(13000, "km"),
  61287. allForms: true
  61288. },
  61289. {
  61290. name: "Terra+",
  61291. height: math.unit(500000, "km"),
  61292. allForms: true
  61293. },
  61294. {
  61295. name: "Galactic",
  61296. height: math.unit(486080, "parsecs"),
  61297. default: true,
  61298. allForms: true
  61299. },
  61300. ],
  61301. {
  61302. "otter": {
  61303. name: "Otter",
  61304. default: true
  61305. },
  61306. "lionbat": {
  61307. name: "Lionbat",
  61308. },
  61309. }
  61310. ))
  61311. characterMakers.push(() => makeCharacter(
  61312. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61313. {
  61314. front: {
  61315. height: math.unit(7 + 4/12, "feet"),
  61316. weight: math.unit(400, "lb"),
  61317. name: "Front",
  61318. image: {
  61319. source: "./media/characters/proxy/front.svg",
  61320. extra: 1605/1542,
  61321. bottom: 55/1660
  61322. }
  61323. },
  61324. side: {
  61325. height: math.unit(7 + 4/12, "feet"),
  61326. weight: math.unit(400, "lb"),
  61327. name: "Side",
  61328. image: {
  61329. source: "./media/characters/proxy/side.svg",
  61330. extra: 794/759,
  61331. bottom: 6/800
  61332. }
  61333. },
  61334. hand: {
  61335. height: math.unit(1.54, "feet"),
  61336. name: "Hand",
  61337. image: {
  61338. source: "./media/characters/proxy/hand.svg"
  61339. }
  61340. },
  61341. paw: {
  61342. height: math.unit(1.53, "feet"),
  61343. name: "Paw",
  61344. image: {
  61345. source: "./media/characters/proxy/paw.svg"
  61346. }
  61347. },
  61348. maw: {
  61349. height: math.unit(1.9, "feet"),
  61350. name: "Maw",
  61351. image: {
  61352. source: "./media/characters/proxy/maw.svg"
  61353. }
  61354. },
  61355. },
  61356. [
  61357. {
  61358. name: "Normal",
  61359. height: math.unit(7 + 4/12, "feet"),
  61360. default: true
  61361. },
  61362. ]
  61363. ))
  61364. characterMakers.push(() => makeCharacter(
  61365. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61366. {
  61367. front: {
  61368. height: math.unit(4, "meters"),
  61369. name: "Front",
  61370. image: {
  61371. source: "./media/characters/crocozilla/front.svg",
  61372. extra: 1790/1742,
  61373. bottom: 78/1868
  61374. }
  61375. },
  61376. },
  61377. [
  61378. {
  61379. name: "Normal",
  61380. height: math.unit(4, "meters"),
  61381. default: true
  61382. },
  61383. ]
  61384. ))
  61385. characterMakers.push(() => makeCharacter(
  61386. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61387. {
  61388. front: {
  61389. height: math.unit(1.8, "meters"),
  61390. weight: math.unit(120, "kg"),
  61391. name: "Front",
  61392. image: {
  61393. source: "./media/characters/kurz/front.svg",
  61394. extra: 1960/1824,
  61395. bottom: 41/2001
  61396. }
  61397. },
  61398. back: {
  61399. height: math.unit(1.8, "meters"),
  61400. weight: math.unit(120, "kg"),
  61401. name: "Back",
  61402. image: {
  61403. source: "./media/characters/kurz/back.svg",
  61404. extra: 1906/1787,
  61405. bottom: 60/1966
  61406. }
  61407. },
  61408. frontLewd: {
  61409. height: math.unit(1.8, "meters"),
  61410. weight: math.unit(120, "kg"),
  61411. name: "Front (Lewd)",
  61412. image: {
  61413. source: "./media/characters/kurz/front-lewd.svg",
  61414. extra: 1960/1824,
  61415. bottom: 41/2001
  61416. }
  61417. },
  61418. maw: {
  61419. height: math.unit(0.69, "meters"),
  61420. name: "Maw",
  61421. image: {
  61422. source: "./media/characters/kurz/maw.svg"
  61423. }
  61424. },
  61425. },
  61426. [
  61427. {
  61428. name: "Original Size",
  61429. height: math.unit(1.8, "meters")
  61430. },
  61431. {
  61432. name: "Incognito Size",
  61433. height: math.unit(2.4, "meters"),
  61434. default: true
  61435. },
  61436. {
  61437. name: "Macro",
  61438. height: math.unit(30, "meters")
  61439. },
  61440. {
  61441. name: "Macro+",
  61442. height: math.unit(250, "meters")
  61443. },
  61444. {
  61445. name: "Mega",
  61446. height: math.unit(2, "km")
  61447. },
  61448. {
  61449. name: "Mega+",
  61450. height: math.unit(35, "km")
  61451. },
  61452. {
  61453. name: "Mega++",
  61454. height: math.unit(75, "km")
  61455. },
  61456. {
  61457. name: "Giga",
  61458. height: math.unit(250, "km")
  61459. },
  61460. {
  61461. name: "Terra",
  61462. height: math.unit(15000, "km")
  61463. },
  61464. {
  61465. name: "Terra+",
  61466. height: math.unit(2250000, "km")
  61467. },
  61468. ]
  61469. ))
  61470. characterMakers.push(() => makeCharacter(
  61471. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61472. {
  61473. front: {
  61474. height: math.unit(16 + 3/12, "feet"),
  61475. weight: math.unit(3575, "lb"),
  61476. name: "Front",
  61477. image: {
  61478. source: "./media/characters/nikita/front.svg",
  61479. extra: 1064/955,
  61480. bottom: 47/1111
  61481. }
  61482. },
  61483. },
  61484. [
  61485. {
  61486. name: "Normal",
  61487. height: math.unit(16 + 3/12, "feet"),
  61488. default: true
  61489. },
  61490. {
  61491. name: "Big",
  61492. height: math.unit(21, "feet")
  61493. },
  61494. {
  61495. name: "Biggest",
  61496. height: math.unit(50, "feet")
  61497. },
  61498. ]
  61499. ))
  61500. characterMakers.push(() => makeCharacter(
  61501. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61502. {
  61503. front: {
  61504. height: math.unit(1.92, "m"),
  61505. weight: math.unit(76, "kg"),
  61506. name: "Front",
  61507. image: {
  61508. source: "./media/characters/kyara/front.svg",
  61509. extra: 1550/1438,
  61510. bottom: 139/1689
  61511. }
  61512. },
  61513. back: {
  61514. height: math.unit(1.92, "m"),
  61515. weight: math.unit(76, "kg"),
  61516. name: "Back",
  61517. image: {
  61518. source: "./media/characters/kyara/back.svg",
  61519. extra: 1523/1427,
  61520. bottom: 83/1606
  61521. }
  61522. },
  61523. head: {
  61524. height: math.unit(1.22, "feet"),
  61525. name: "Head",
  61526. image: {
  61527. source: "./media/characters/kyara/head.svg"
  61528. }
  61529. },
  61530. maw: {
  61531. height: math.unit(0.73, "feet"),
  61532. name: "Maw",
  61533. image: {
  61534. source: "./media/characters/kyara/maw.svg"
  61535. }
  61536. },
  61537. paws: {
  61538. height: math.unit(0.95, "feet"),
  61539. name: "Paws",
  61540. image: {
  61541. source: "./media/characters/kyara/paws.svg"
  61542. }
  61543. },
  61544. },
  61545. [
  61546. {
  61547. name: "Normal",
  61548. height: math.unit(1.92, "meters"),
  61549. default: true
  61550. },
  61551. {
  61552. name: "Mini Macro",
  61553. height: math.unit(192, "meters")
  61554. },
  61555. {
  61556. name: "Macro",
  61557. height: math.unit(480, "meters")
  61558. },
  61559. {
  61560. name: "Mega Macro",
  61561. height: math.unit(1440, "meters")
  61562. },
  61563. ]
  61564. ))
  61565. characterMakers.push(() => makeCharacter(
  61566. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61567. {
  61568. front: {
  61569. height: math.unit(6, "feet"),
  61570. weight: math.unit(160, "lbs"),
  61571. preyCapacity: math.unit(0.05, "people"),
  61572. name: "Front",
  61573. image: {
  61574. source: "./media/characters/layla-amari/front.svg",
  61575. extra: 1922/1723,
  61576. bottom: 90/2012
  61577. }
  61578. },
  61579. back: {
  61580. height: math.unit(6, "feet"),
  61581. weight: math.unit(160, "lbs"),
  61582. preyCapacity: math.unit(0.05, "people"),
  61583. name: "Back",
  61584. image: {
  61585. source: "./media/characters/layla-amari/back.svg",
  61586. extra: 1917/1718,
  61587. bottom: 50/1967
  61588. }
  61589. },
  61590. frontDressed: {
  61591. height: math.unit(6, "feet"),
  61592. weight: math.unit(160, "lbs"),
  61593. preyCapacity: math.unit(0.05, "people"),
  61594. name: "Front (Dressed)",
  61595. image: {
  61596. source: "./media/characters/layla-amari/front-dressed.svg",
  61597. extra: 1922/1723,
  61598. bottom: 90/2012
  61599. }
  61600. },
  61601. face: {
  61602. height: math.unit(0.93, "feet"),
  61603. name: "Face",
  61604. image: {
  61605. source: "./media/characters/layla-amari/face.svg"
  61606. }
  61607. },
  61608. hand: {
  61609. height: math.unit(0.66 , "feet"),
  61610. name: "Hand",
  61611. image: {
  61612. source: "./media/characters/layla-amari/hand.svg"
  61613. }
  61614. },
  61615. foot: {
  61616. height: math.unit(1, "feet"),
  61617. name: "Foot",
  61618. image: {
  61619. source: "./media/characters/layla-amari/foot.svg"
  61620. }
  61621. },
  61622. necklace: {
  61623. height: math.unit(0.32, "feet"),
  61624. name: "Necklace",
  61625. image: {
  61626. source: "./media/characters/layla-amari/necklace.svg"
  61627. }
  61628. },
  61629. nipple: {
  61630. height: math.unit(0.2, "feet"),
  61631. name: "Nipple",
  61632. image: {
  61633. source: "./media/characters/layla-amari/nipple.svg"
  61634. }
  61635. },
  61636. slit: {
  61637. height: math.unit(0.26, "feet"),
  61638. name: "Slit",
  61639. image: {
  61640. source: "./media/characters/layla-amari/slit.svg"
  61641. }
  61642. },
  61643. },
  61644. [
  61645. {
  61646. name: "Natural",
  61647. height: math.unit(825, "feet"),
  61648. default: true
  61649. },
  61650. {
  61651. name: "Enhanced",
  61652. height: math.unit(8250, "feet")
  61653. },
  61654. {
  61655. name: "Apparent Size",
  61656. height: math.unit(9.04363e+8, "meters")
  61657. },
  61658. ]
  61659. ))
  61660. characterMakers.push(() => makeCharacter(
  61661. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61662. {
  61663. front: {
  61664. height: math.unit(1.3, "meters"),
  61665. name: "Front",
  61666. image: {
  61667. source: "./media/characters/percy/front.svg",
  61668. extra: 1444/1289,
  61669. bottom: 54/1498
  61670. }
  61671. },
  61672. },
  61673. [
  61674. {
  61675. name: "Normal",
  61676. height: math.unit(1.3, "meters"),
  61677. default: true
  61678. },
  61679. ]
  61680. ))
  61681. characterMakers.push(() => makeCharacter(
  61682. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61683. {
  61684. side: {
  61685. height: math.unit(10, "meters"),
  61686. name: "Side",
  61687. image: {
  61688. source: "./media/characters/grev/side.svg",
  61689. extra: 653/266,
  61690. bottom: 77/730
  61691. }
  61692. },
  61693. head: {
  61694. height: math.unit(16.2, "m"),
  61695. name: "Head",
  61696. image: {
  61697. source: "./media/characters/grev/head.svg"
  61698. }
  61699. },
  61700. dick: {
  61701. height: math.unit(2.8135932034, "m"),
  61702. name: "Dick",
  61703. image: {
  61704. source: "./media/characters/grev/dick.svg"
  61705. }
  61706. },
  61707. },
  61708. [
  61709. {
  61710. name: "Friend-Sized",
  61711. height: math.unit(80, "cm")
  61712. },
  61713. {
  61714. name: "Normal",
  61715. height: math.unit(10, "meters"),
  61716. default: true
  61717. },
  61718. {
  61719. name: "Macro",
  61720. height: math.unit(200, "meters")
  61721. },
  61722. ]
  61723. ))
  61724. characterMakers.push(() => makeCharacter(
  61725. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61726. {
  61727. front: {
  61728. height: math.unit(19.75, "feet"),
  61729. weight: math.unit(20000, "lb"),
  61730. name: "Front",
  61731. image: {
  61732. source: "./media/characters/azuuca/front.svg",
  61733. extra: 1593/1511,
  61734. bottom: 55/1648
  61735. }
  61736. },
  61737. },
  61738. [
  61739. {
  61740. name: "Normal",
  61741. height: math.unit(19.75, "feet"),
  61742. default: true
  61743. },
  61744. ]
  61745. ))
  61746. characterMakers.push(() => makeCharacter(
  61747. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61748. {
  61749. front: {
  61750. height: math.unit(15, "feet"),
  61751. weight: math.unit(1500, "lb"),
  61752. name: "Front",
  61753. image: {
  61754. source: "./media/characters/valuria/front.svg",
  61755. extra: 1588/1486,
  61756. bottom: 31/1619
  61757. }
  61758. },
  61759. },
  61760. [
  61761. {
  61762. name: "Normal",
  61763. height: math.unit(15, "feet"),
  61764. default: true
  61765. },
  61766. {
  61767. name: "Small",
  61768. height: math.unit(500, "feet")
  61769. },
  61770. {
  61771. name: "Macro",
  61772. height: math.unit(4000, "feet")
  61773. },
  61774. {
  61775. name: "Mega Macro",
  61776. height: math.unit(2000, "miles")
  61777. },
  61778. {
  61779. name: "Giga Macro",
  61780. height: math.unit(3e6, "miles")
  61781. },
  61782. ]
  61783. ))
  61784. characterMakers.push(() => makeCharacter(
  61785. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61786. {
  61787. front: {
  61788. height: math.unit(3500, "solarradii"),
  61789. name: "Front",
  61790. image: {
  61791. source: "./media/characters/terigaia/front.svg",
  61792. extra: 1531/1451,
  61793. bottom: 98/1629
  61794. }
  61795. },
  61796. },
  61797. [
  61798. {
  61799. name: "Normal",
  61800. height: math.unit(3500, "solarradii"),
  61801. default: true
  61802. },
  61803. ]
  61804. ))
  61805. characterMakers.push(() => makeCharacter(
  61806. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61807. {
  61808. front: {
  61809. height: math.unit(9.34, "feet"),
  61810. weight: math.unit(600, "lb"),
  61811. name: "Front",
  61812. image: {
  61813. source: "./media/characters/blair-blaziken/front.svg",
  61814. extra: 1557/1462,
  61815. bottom: 55/1612
  61816. }
  61817. },
  61818. },
  61819. [
  61820. {
  61821. name: "Normal",
  61822. height: math.unit(9.34, "feet"),
  61823. default: true
  61824. },
  61825. ]
  61826. ))
  61827. characterMakers.push(() => makeCharacter(
  61828. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61829. {
  61830. pistrogre_front: {
  61831. height: math.unit(10, "feet"),
  61832. weight: math.unit(10, "tons"),
  61833. name: "Front",
  61834. image: {
  61835. source: "./media/characters/braxia/pistrogre-front.svg",
  61836. extra: 1531/1334,
  61837. bottom: 114/1645
  61838. },
  61839. form: "pistrogre",
  61840. default: true
  61841. },
  61842. human_front: {
  61843. height: math.unit(10, "feet"),
  61844. weight: math.unit(10, "tons"),
  61845. name: "Front",
  61846. image: {
  61847. source: "./media/characters/braxia/human-front.svg",
  61848. extra: 1574/1501,
  61849. bottom: 37/1611
  61850. },
  61851. form: "human",
  61852. default: true
  61853. },
  61854. },
  61855. [
  61856. {
  61857. name: "Normal",
  61858. height: math.unit(10, "feet"),
  61859. default: true,
  61860. allForms: true
  61861. },
  61862. {
  61863. name: "Macro",
  61864. height: math.unit(1000, "feet"),
  61865. allForms: true
  61866. },
  61867. {
  61868. name: "Mega Macro",
  61869. height: math.unit(100, "miles"),
  61870. allForms: true
  61871. },
  61872. {
  61873. name: "Cosmic",
  61874. height: math.unit(1000000, "lightyears"),
  61875. allForms: true
  61876. },
  61877. {
  61878. name: "ϐѮԆԬӁꭍϞԢ",
  61879. height: math.unit(1000, "multiverses"),
  61880. allForms: true
  61881. },
  61882. ],
  61883. {
  61884. "pistrogre": {
  61885. name: "Pistrogre",
  61886. default: true
  61887. },
  61888. "human": {
  61889. name: "Human",
  61890. },
  61891. }
  61892. ))
  61893. characterMakers.push(() => makeCharacter(
  61894. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61895. {
  61896. front: {
  61897. height: math.unit(6 + 1/12, "feet"),
  61898. weight: math.unit(280, "lb"),
  61899. name: "Front",
  61900. image: {
  61901. source: "./media/characters/kiriga-yato/front.svg",
  61902. extra: 445/394,
  61903. bottom: 11/456
  61904. }
  61905. },
  61906. },
  61907. [
  61908. {
  61909. name: "Descended",
  61910. height: math.unit(3, "feet")
  61911. },
  61912. {
  61913. name: "Average",
  61914. height: math.unit(6 + 1/12, "feet"),
  61915. default: true
  61916. },
  61917. {
  61918. name: "Ascended",
  61919. height: math.unit(9 + 2/12, "feet")
  61920. },
  61921. ]
  61922. ))
  61923. characterMakers.push(() => makeCharacter(
  61924. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61925. {
  61926. front: {
  61927. height: math.unit(6, "feet"),
  61928. weight: math.unit(150, "lb"),
  61929. name: "Front",
  61930. image: {
  61931. source: "./media/characters/kylie/front.svg",
  61932. extra: 1114/1046,
  61933. bottom: 65/1179
  61934. },
  61935. extraAttributes: {
  61936. "hoofSize": {
  61937. name: "Hoof Size",
  61938. power: 2,
  61939. type: "area",
  61940. base: math.unit(0.034, "m^2")
  61941. },
  61942. "footSize": {
  61943. name: "Foot Size",
  61944. power: 2,
  61945. type: "area",
  61946. base: math.unit(0.75, "m^2")
  61947. },
  61948. }
  61949. },
  61950. side: {
  61951. height: math.unit(6, "feet"),
  61952. weight: math.unit(150, "lb"),
  61953. name: "Side",
  61954. image: {
  61955. source: "./media/characters/kylie/side.svg",
  61956. extra: 1178/1110,
  61957. bottom: 21/1199
  61958. },
  61959. extraAttributes: {
  61960. "hoofSize": {
  61961. name: "Hoof Size",
  61962. power: 2,
  61963. type: "area",
  61964. base: math.unit(0.034, "m^2")
  61965. },
  61966. "footSize": {
  61967. name: "Foot Size",
  61968. power: 2,
  61969. type: "area",
  61970. base: math.unit(0.75, "m^2")
  61971. },
  61972. }
  61973. },
  61974. back: {
  61975. height: math.unit(6, "feet"),
  61976. weight: math.unit(150, "lb"),
  61977. name: "Back",
  61978. image: {
  61979. source: "./media/characters/kylie/back.svg",
  61980. extra: 1115/1047,
  61981. bottom: 66/1181
  61982. },
  61983. extraAttributes: {
  61984. "hoofSize": {
  61985. name: "Hoof Size",
  61986. power: 2,
  61987. type: "area",
  61988. base: math.unit(0.034, "m^2")
  61989. },
  61990. "footSize": {
  61991. name: "Foot Size",
  61992. power: 2,
  61993. type: "area",
  61994. base: math.unit(0.75, "m^2")
  61995. },
  61996. }
  61997. },
  61998. head: {
  61999. height: math.unit(1.85, "feet"),
  62000. name: "Head",
  62001. image: {
  62002. source: "./media/characters/kylie/head.svg"
  62003. }
  62004. },
  62005. },
  62006. [
  62007. {
  62008. name: "Normal",
  62009. height: math.unit(90, "meters"),
  62010. default: true
  62011. },
  62012. ]
  62013. ))
  62014. characterMakers.push(() => makeCharacter(
  62015. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62016. {
  62017. front: {
  62018. height: math.unit(245, "feet"),
  62019. weight: math.unit(400000, "lb"),
  62020. name: "Front",
  62021. image: {
  62022. source: "./media/characters/sabado/front.svg",
  62023. extra: 1309/1164,
  62024. bottom: 29/1338
  62025. }
  62026. },
  62027. },
  62028. [
  62029. {
  62030. name: "Normal",
  62031. height: math.unit(245, "feet"),
  62032. default: true
  62033. },
  62034. ]
  62035. ))
  62036. characterMakers.push(() => makeCharacter(
  62037. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62038. {
  62039. shark_front: {
  62040. height: math.unit(2, "meters"),
  62041. weight: math.unit(200, "kg"),
  62042. name: "Front",
  62043. image: {
  62044. source: "./media/characters/zechal/shark-front.svg",
  62045. extra: 969/925,
  62046. bottom: 74/1043
  62047. },
  62048. form: "shark",
  62049. },
  62050. shark_back: {
  62051. height: math.unit(2, "meters"),
  62052. weight: math.unit(200, "kg"),
  62053. name: "Back",
  62054. image: {
  62055. source: "./media/characters/zechal/shark-back.svg",
  62056. extra: 994/949,
  62057. bottom: 176/1170
  62058. },
  62059. form: "shark",
  62060. },
  62061. shark_frontLewd: {
  62062. height: math.unit(2, "meters"),
  62063. weight: math.unit(200, "kg"),
  62064. name: "Front (Lewd)",
  62065. image: {
  62066. source: "./media/characters/zechal/shark-front-lewd.svg",
  62067. extra: 969/925,
  62068. bottom: 74/1043
  62069. },
  62070. form: "shark",
  62071. },
  62072. shark_side: {
  62073. height: math.unit(1.56, "meters"),
  62074. weight: math.unit(200, "kg"),
  62075. name: "Side",
  62076. image: {
  62077. source: "./media/characters/zechal/shark-side.svg"
  62078. },
  62079. form: "shark",
  62080. },
  62081. dragon_front: {
  62082. height: math.unit(2, "meters"),
  62083. weight: math.unit(200, "kg"),
  62084. name: "Front",
  62085. image: {
  62086. source: "./media/characters/zechal/dragon-front.svg",
  62087. extra: 1041/925,
  62088. bottom: 74/1115
  62089. },
  62090. form: "dragon",
  62091. },
  62092. dragon_back: {
  62093. height: math.unit(2, "meters"),
  62094. weight: math.unit(200, "kg"),
  62095. name: "Back",
  62096. image: {
  62097. source: "./media/characters/zechal/dragon-back.svg",
  62098. extra: 1061/949,
  62099. bottom: 176/1237
  62100. },
  62101. form: "dragon",
  62102. },
  62103. dragon_frontLewd: {
  62104. height: math.unit(2, "meters"),
  62105. weight: math.unit(200, "kg"),
  62106. name: "Front (Lewd)",
  62107. image: {
  62108. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62109. extra: 1041/925,
  62110. bottom: 74/1115
  62111. },
  62112. form: "dragon",
  62113. },
  62114. dragon_side: {
  62115. height: math.unit(1.56, "meters"),
  62116. weight: math.unit(200, "kg"),
  62117. name: "Side",
  62118. image: {
  62119. source: "./media/characters/zechal/dragon-side.svg"
  62120. },
  62121. form: "dragon",
  62122. },
  62123. foot: {
  62124. height: math.unit(0.5, "meters"),
  62125. name: "Foot",
  62126. image: {
  62127. source: "./media/characters/zechal/foot.svg"
  62128. }
  62129. },
  62130. sheathFront: {
  62131. height: math.unit(0.45, "meters"),
  62132. name: "Sheath (Front)",
  62133. image: {
  62134. source: "./media/characters/zechal/sheath-front.svg"
  62135. }
  62136. },
  62137. sheathSide: {
  62138. height: math.unit(0.45, "meters"),
  62139. name: "Sheath (Side)",
  62140. image: {
  62141. source: "./media/characters/zechal/sheath-side.svg"
  62142. }
  62143. },
  62144. },
  62145. [
  62146. {
  62147. name: "Incognito",
  62148. height: math.unit(2, "meters"),
  62149. allForms: true
  62150. },
  62151. {
  62152. name: "Small Rampage",
  62153. height: math.unit(25, "meters"),
  62154. allForms: true
  62155. },
  62156. {
  62157. name: "Home Size",
  62158. height: math.unit(250, "meters"),
  62159. allForms: true,
  62160. default: true
  62161. },
  62162. {
  62163. name: "Macro+",
  62164. height: math.unit(700, "meters"),
  62165. allForms: true
  62166. },
  62167. {
  62168. name: "Small Mega",
  62169. height: math.unit(3, "km"),
  62170. allForms: true
  62171. },
  62172. {
  62173. name: "Mega",
  62174. height: math.unit(15, "km"),
  62175. allForms: true
  62176. },
  62177. {
  62178. name: "Giga",
  62179. height: math.unit(300, "km"),
  62180. allForms: true
  62181. },
  62182. {
  62183. name: "Giga+",
  62184. height: math.unit(1750, "km"),
  62185. allForms: true
  62186. },
  62187. {
  62188. name: "Continental",
  62189. height: math.unit(5000, "km"),
  62190. allForms: true
  62191. },
  62192. {
  62193. name: "Terra",
  62194. height: math.unit(20000, "km"),
  62195. allForms: true
  62196. },
  62197. {
  62198. name: "Terra+",
  62199. height: math.unit(300000, "km"),
  62200. allForms: true
  62201. },
  62202. {
  62203. name: "Solar",
  62204. height: math.unit(40000000, "km"),
  62205. allForms: true
  62206. },
  62207. {
  62208. name: "Galactic",
  62209. height: math.unit(810133, "parsecs"),
  62210. allForms: true
  62211. },
  62212. {
  62213. name: "Universal",
  62214. height: math.unit(25, "universes"),
  62215. allForms: true
  62216. },
  62217. ],
  62218. {
  62219. "shark": {
  62220. name: "Shark",
  62221. default: true
  62222. },
  62223. "dragon": {
  62224. name: "Dragon",
  62225. },
  62226. }
  62227. ))
  62228. characterMakers.push(() => makeCharacter(
  62229. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62230. {
  62231. front: {
  62232. height: math.unit(2.2, "meters"),
  62233. weight: math.unit(150, "kg"),
  62234. name: "Front",
  62235. image: {
  62236. source: "./media/characters/sergis/front.svg",
  62237. extra: 1314/1312,
  62238. bottom: 112/1426
  62239. }
  62240. },
  62241. back: {
  62242. height: math.unit(2.2, "meters"),
  62243. weight: math.unit(150, "kg"),
  62244. name: "Back",
  62245. image: {
  62246. source: "./media/characters/sergis/back.svg",
  62247. extra: 1335/1333,
  62248. bottom: 19/1354
  62249. }
  62250. },
  62251. frontLewd: {
  62252. height: math.unit(2.2, "meters"),
  62253. weight: math.unit(150, "kg"),
  62254. name: "Front (Lewd)",
  62255. image: {
  62256. source: "./media/characters/sergis/front-lewd.svg",
  62257. extra: 1314/1312,
  62258. bottom: 112/1426
  62259. }
  62260. },
  62261. frontDressed: {
  62262. height: math.unit(2.2, "meters"),
  62263. weight: math.unit(150, "kg"),
  62264. name: "Front (Dressed)",
  62265. image: {
  62266. source: "./media/characters/sergis/front-dressed.svg",
  62267. extra: 1330/1328,
  62268. bottom: 95/1425
  62269. }
  62270. },
  62271. frontDressedLewd: {
  62272. height: math.unit(2.2, "meters"),
  62273. weight: math.unit(150, "kg"),
  62274. name: "Front (Dressed, Lewd)",
  62275. image: {
  62276. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62277. extra: 1330/1328,
  62278. bottom: 95/1425
  62279. }
  62280. },
  62281. maw: {
  62282. height: math.unit(0.48, "meters"),
  62283. name: "Maw",
  62284. image: {
  62285. source: "./media/characters/sergis/maw.svg"
  62286. }
  62287. },
  62288. sheath: {
  62289. height: math.unit(0.38, "meters"),
  62290. name: "Sheath",
  62291. image: {
  62292. source: "./media/characters/sergis/sheath.svg"
  62293. }
  62294. },
  62295. },
  62296. [
  62297. {
  62298. name: "Incognito Size",
  62299. height: math.unit(2.2, "meters")
  62300. },
  62301. {
  62302. name: "Small Macro",
  62303. height: math.unit(40, "meters")
  62304. },
  62305. {
  62306. name: "Macro",
  62307. height: math.unit(150, "meters")
  62308. },
  62309. {
  62310. name: "Macro+",
  62311. height: math.unit(300, "meters")
  62312. },
  62313. {
  62314. name: "Mega",
  62315. height: math.unit(2.5, "km")
  62316. },
  62317. {
  62318. name: "Mega+",
  62319. height: math.unit(30, "km")
  62320. },
  62321. {
  62322. name: "Home Size",
  62323. height: math.unit(300, "km"),
  62324. default: true
  62325. },
  62326. {
  62327. name: "Giga+",
  62328. height: math.unit(1000, "km")
  62329. },
  62330. {
  62331. name: "Giga++",
  62332. height: math.unit(6000, "km")
  62333. },
  62334. {
  62335. name: "Terra",
  62336. height: math.unit(70000, "km")
  62337. },
  62338. {
  62339. name: "Terra+",
  62340. height: math.unit(200000, "km")
  62341. },
  62342. {
  62343. name: "Galactic",
  62344. height: math.unit(634200, "lightyears")
  62345. },
  62346. ]
  62347. ))
  62348. characterMakers.push(() => makeCharacter(
  62349. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62350. {
  62351. standard: {
  62352. height: math.unit(1 + 5/12, "feet"),
  62353. name: "Standard",
  62354. image: {
  62355. source: "./media/characters/spade/standard.svg",
  62356. extra: 1794/1703,
  62357. bottom: 115/1909
  62358. }
  62359. },
  62360. disguised: {
  62361. height: math.unit(1 + 5/12, "feet"),
  62362. name: "Disguised",
  62363. image: {
  62364. source: "./media/characters/spade/disguised.svg",
  62365. extra: 1794/1700,
  62366. bottom: 98/1892
  62367. }
  62368. },
  62369. },
  62370. [
  62371. {
  62372. name: "Normal",
  62373. height: math.unit(1 + 5/12, "feet"),
  62374. default: true
  62375. },
  62376. ]
  62377. ))
  62378. characterMakers.push(() => makeCharacter(
  62379. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62380. {
  62381. frontNsfw: {
  62382. height: math.unit(5, "meters"),
  62383. weight: math.unit(2000, "kg"),
  62384. preyCapacity: math.unit(5, "people"),
  62385. name: "Front (NSFW)",
  62386. image: {
  62387. source: "./media/characters/zeanlain/front-nsfw.svg",
  62388. extra: 1087/938,
  62389. bottom: 93/1180
  62390. },
  62391. extraAttributes: {
  62392. "wingspan": {
  62393. name: "Wingspan",
  62394. power: 1,
  62395. type: "length",
  62396. base: math.unit(10, "meters")
  62397. },
  62398. "footSize": {
  62399. name: "Foot Size",
  62400. power: 1,
  62401. type: "length",
  62402. base: math.unit(0.68, "meters")
  62403. },
  62404. "cockLength": {
  62405. name: "Cock Length",
  62406. power: 1,
  62407. type: "length",
  62408. base: math.unit(1.69, "meters")
  62409. },
  62410. "ballVolume": {
  62411. name: "Ball Volume",
  62412. power: 3,
  62413. type: "volume",
  62414. base: math.unit(0.028, "m^3")
  62415. },
  62416. }
  62417. },
  62418. front: {
  62419. height: math.unit(5, "meters"),
  62420. weight: math.unit(2000, "kg"),
  62421. preyCapacity: math.unit(3, "people"),
  62422. name: "Front",
  62423. image: {
  62424. source: "./media/characters/zeanlain/front.svg",
  62425. extra: 1087/938,
  62426. bottom: 93/1180
  62427. },
  62428. extraAttributes: {
  62429. "wingspan": {
  62430. name: "Wingspan",
  62431. power: 1,
  62432. type: "length",
  62433. base: math.unit(10, "meters")
  62434. },
  62435. "footSize": {
  62436. name: "Foot Size",
  62437. power: 1,
  62438. type: "length",
  62439. base: math.unit(0.68, "meters")
  62440. },
  62441. }
  62442. },
  62443. },
  62444. [
  62445. {
  62446. name: "Normal",
  62447. height: math.unit(5, "meters"),
  62448. default: true
  62449. },
  62450. ]
  62451. ))
  62452. characterMakers.push(() => makeCharacter(
  62453. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62454. {
  62455. front: {
  62456. height: math.unit(10, "meters"),
  62457. weight: math.unit(250000, "kg"),
  62458. name: "Front",
  62459. image: {
  62460. source: "./media/characters/airamis/front.svg",
  62461. extra: 865/835,
  62462. bottom: 13/878
  62463. }
  62464. },
  62465. },
  62466. [
  62467. {
  62468. name: "Normal",
  62469. height: math.unit(10, "meters"),
  62470. default: true
  62471. },
  62472. ]
  62473. ))
  62474. characterMakers.push(() => makeCharacter(
  62475. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62476. {
  62477. front: {
  62478. height: math.unit(3 + 3/12, "feet"),
  62479. weight: math.unit(75, "lb"),
  62480. name: "Front",
  62481. image: {
  62482. source: "./media/characters/corra-tourmaline/front.svg",
  62483. extra: 1037/864,
  62484. bottom: 39/1076
  62485. }
  62486. },
  62487. back: {
  62488. height: math.unit(3 + 3/12, "feet"),
  62489. weight: math.unit(75, "lb"),
  62490. name: "Back",
  62491. image: {
  62492. source: "./media/characters/corra-tourmaline/back.svg",
  62493. extra: 1022/849,
  62494. bottom: 26/1048
  62495. }
  62496. },
  62497. dressed: {
  62498. height: math.unit(3 + 3/12, "feet"),
  62499. weight: math.unit(75, "lb"),
  62500. name: "Dressed",
  62501. image: {
  62502. source: "./media/characters/corra-tourmaline/dressed.svg",
  62503. extra: 1037/864,
  62504. bottom: 39/1076
  62505. }
  62506. },
  62507. beans: {
  62508. height: math.unit(0.37, "feet"),
  62509. name: "Beans",
  62510. image: {
  62511. source: "./media/characters/corra-tourmaline/beans.svg"
  62512. }
  62513. },
  62514. },
  62515. [
  62516. {
  62517. name: "Normal",
  62518. height: math.unit(3 + 3/12, "feet"),
  62519. default: true
  62520. },
  62521. {
  62522. name: "Macro",
  62523. height: math.unit(32, "feet")
  62524. },
  62525. ]
  62526. ))
  62527. characterMakers.push(() => makeCharacter(
  62528. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62529. {
  62530. front: {
  62531. height: math.unit(6 + 2/12, "feet"),
  62532. weight: math.unit(203, "lb"),
  62533. name: "Front",
  62534. image: {
  62535. source: "./media/characters/maki-kawa/front.svg",
  62536. extra: 950/890,
  62537. bottom: 62/1012
  62538. }
  62539. },
  62540. back: {
  62541. height: math.unit(6 + 2/12, "feet"),
  62542. weight: math.unit(203, "lb"),
  62543. name: "Back",
  62544. image: {
  62545. source: "./media/characters/maki-kawa/back.svg",
  62546. extra: 953/878,
  62547. bottom: 49/1002
  62548. }
  62549. },
  62550. frontBarista: {
  62551. height: math.unit(6 + 2/12, "feet"),
  62552. weight: math.unit(203, "lb"),
  62553. name: "Front (Barista)",
  62554. image: {
  62555. source: "./media/characters/maki-kawa/front-barista.svg",
  62556. extra: 943/883,
  62557. bottom: 69/1012
  62558. }
  62559. },
  62560. backBarista: {
  62561. height: math.unit(6 + 2/12, "feet"),
  62562. weight: math.unit(203, "lb"),
  62563. name: "Back (Barista)",
  62564. image: {
  62565. source: "./media/characters/maki-kawa/back-barista.svg",
  62566. extra: 953/878,
  62567. bottom: 49/1002
  62568. }
  62569. },
  62570. frontWrestler: {
  62571. height: math.unit(6 + 2/12, "feet"),
  62572. weight: math.unit(203, "lb"),
  62573. name: "Front (Wrestler)",
  62574. image: {
  62575. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62576. extra: 950/890,
  62577. bottom: 62/1012
  62578. }
  62579. },
  62580. backWrestler: {
  62581. height: math.unit(6 + 2/12, "feet"),
  62582. weight: math.unit(203, "lb"),
  62583. name: "Back (Wrestler)",
  62584. image: {
  62585. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62586. extra: 953/878,
  62587. bottom: 49/1002
  62588. }
  62589. },
  62590. headFront: {
  62591. height: math.unit(1.64, "feet"),
  62592. name: "Head (Front)",
  62593. image: {
  62594. source: "./media/characters/maki-kawa/head-front.svg"
  62595. }
  62596. },
  62597. headSide: {
  62598. height: math.unit(1.59, "feet"),
  62599. name: "Head (Side)",
  62600. image: {
  62601. source: "./media/characters/maki-kawa/head-side.svg"
  62602. }
  62603. },
  62604. paw: {
  62605. height: math.unit(0.9, "feet"),
  62606. name: "Paw",
  62607. image: {
  62608. source: "./media/characters/maki-kawa/paw.svg"
  62609. }
  62610. },
  62611. },
  62612. [
  62613. {
  62614. name: "Normal",
  62615. height: math.unit(6 + 2/12, "feet"),
  62616. default: true
  62617. },
  62618. {
  62619. name: "Macro",
  62620. height: math.unit(617, "feet")
  62621. },
  62622. ]
  62623. ))
  62624. characterMakers.push(() => makeCharacter(
  62625. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62626. {
  62627. front: {
  62628. height: math.unit(10, "feet"),
  62629. weight: math.unit(1500, "lb"),
  62630. name: "Front",
  62631. image: {
  62632. source: "./media/characters/lennox/front.svg",
  62633. extra: 1623/1496,
  62634. bottom: 18/1641
  62635. }
  62636. },
  62637. back: {
  62638. height: math.unit(10, "feet"),
  62639. weight: math.unit(1500, "lb"),
  62640. name: "Back",
  62641. image: {
  62642. source: "./media/characters/lennox/back.svg",
  62643. extra: 1641/1481,
  62644. bottom: 13/1654
  62645. }
  62646. },
  62647. maw: {
  62648. height: math.unit(2.94, "feet"),
  62649. name: "Maw",
  62650. image: {
  62651. source: "./media/characters/lennox/maw.svg"
  62652. }
  62653. },
  62654. },
  62655. [
  62656. {
  62657. name: "Micro",
  62658. height: math.unit(1, "inch")
  62659. },
  62660. {
  62661. name: "Normal",
  62662. height: math.unit(10, "feet"),
  62663. default: true
  62664. },
  62665. {
  62666. name: "Macro",
  62667. height: math.unit(200, "feet")
  62668. },
  62669. ]
  62670. ))
  62671. characterMakers.push(() => makeCharacter(
  62672. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62673. {
  62674. frontDressed: {
  62675. height: math.unit(15 + 7/12, "feet"),
  62676. weight: math.unit(5000, "lb"),
  62677. name: "Front (Dressed)",
  62678. image: {
  62679. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62680. extra: 1136/1023,
  62681. bottom: 51/1187
  62682. }
  62683. },
  62684. backDressed: {
  62685. height: math.unit(15 + 7/12, "feet"),
  62686. weight: math.unit(5000, "lb"),
  62687. name: "Back (Dressed)",
  62688. image: {
  62689. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62690. extra: 2359/2143,
  62691. bottom: 103/2462
  62692. }
  62693. },
  62694. front: {
  62695. height: math.unit(15 + 7/12, "feet"),
  62696. weight: math.unit(5000, "lb"),
  62697. name: "Front",
  62698. image: {
  62699. source: "./media/characters/vyse-iron-thunder/front.svg",
  62700. extra: 1136/1023,
  62701. bottom: 51/1187
  62702. }
  62703. },
  62704. hand: {
  62705. height: math.unit(2.36, "feet"),
  62706. name: "Hand",
  62707. image: {
  62708. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62709. }
  62710. },
  62711. foot: {
  62712. height: math.unit(1.72, "feet"),
  62713. name: "Foot",
  62714. image: {
  62715. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62716. }
  62717. },
  62718. mouth: {
  62719. height: math.unit(2, "feet"),
  62720. name: "Mouth",
  62721. image: {
  62722. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62723. }
  62724. },
  62725. eye: {
  62726. height: math.unit(0.58, "feet"),
  62727. name: "Eye",
  62728. image: {
  62729. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62730. }
  62731. },
  62732. },
  62733. [
  62734. {
  62735. name: "Normal",
  62736. height: math.unit(15 + 7/12, "feet"),
  62737. default: true
  62738. },
  62739. {
  62740. name: "Macro",
  62741. height: math.unit(157, "feet")
  62742. },
  62743. {
  62744. name: "Macro+",
  62745. height: math.unit(1570, "feet")
  62746. },
  62747. {
  62748. name: "Macro++",
  62749. height: math.unit(15700, "feet")
  62750. },
  62751. {
  62752. name: "Macro+++",
  62753. height: math.unit(157000, "feet")
  62754. },
  62755. {
  62756. name: "Macro++++",
  62757. height: math.unit(1570000, "feet")
  62758. },
  62759. ]
  62760. ))
  62761. characterMakers.push(() => makeCharacter(
  62762. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62763. {
  62764. side: {
  62765. height: math.unit(6, "feet"),
  62766. weight: math.unit(115, "lb"),
  62767. name: "Side",
  62768. image: {
  62769. source: "./media/characters/moonbeam/side.svg",
  62770. extra: 839/485,
  62771. bottom: 60/899
  62772. }
  62773. },
  62774. },
  62775. [
  62776. {
  62777. name: "Normal",
  62778. height: math.unit(6, "feet"),
  62779. default: true
  62780. },
  62781. ]
  62782. ))
  62783. characterMakers.push(() => makeCharacter(
  62784. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62785. {
  62786. front: {
  62787. height: math.unit(3500, "miles"),
  62788. weight: math.unit(1659, "petatonnes"),
  62789. name: "Front",
  62790. image: {
  62791. source: "./media/characters/baltica/front.svg",
  62792. extra: 429/428,
  62793. bottom: 41/470
  62794. }
  62795. },
  62796. back: {
  62797. height: math.unit(3500, "miles"),
  62798. weight: math.unit(1659, "petatonnes"),
  62799. name: "Back",
  62800. image: {
  62801. source: "./media/characters/baltica/back.svg",
  62802. extra: 452/451,
  62803. bottom: 8/460
  62804. }
  62805. },
  62806. },
  62807. [
  62808. {
  62809. name: "Gigamacro",
  62810. height: math.unit(3500, "miles"),
  62811. default: true
  62812. },
  62813. ]
  62814. ))
  62815. characterMakers.push(() => makeCharacter(
  62816. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62817. {
  62818. front: {
  62819. height: math.unit(6 + 10/12, "feet"),
  62820. weight: math.unit(200, "lb"),
  62821. name: "Front",
  62822. image: {
  62823. source: "./media/characters/shadow-wolf/front.svg",
  62824. extra: 1931/1760,
  62825. bottom: 88/2019
  62826. }
  62827. },
  62828. },
  62829. [
  62830. {
  62831. name: "Normal",
  62832. height: math.unit(6 + 10/12, "feet"),
  62833. default: true
  62834. },
  62835. ]
  62836. ))
  62837. characterMakers.push(() => makeCharacter(
  62838. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62839. {
  62840. front: {
  62841. height: math.unit(5 + 10/12, "feet"),
  62842. name: "Front",
  62843. image: {
  62844. source: "./media/characters/quincy-praying-mantis/front.svg",
  62845. extra: 1055/891,
  62846. bottom: 92/1147
  62847. }
  62848. },
  62849. soles: {
  62850. height: math.unit(0.85, "feet"),
  62851. name: "Soles",
  62852. image: {
  62853. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62854. extra: 429/324,
  62855. bottom: 89/518
  62856. },
  62857. extraAttributes: {
  62858. "shoeSize": {
  62859. name: "Shoe Size",
  62860. power: 1,
  62861. type: "length",
  62862. base: math.unit(23, "ShoeSizeMensUS"),
  62863. defaultUnit: "ShoeSizeMensUS"
  62864. },
  62865. }
  62866. },
  62867. foot: {
  62868. height: math.unit(0.72, "feet"),
  62869. name: "Foot",
  62870. image: {
  62871. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62872. extra: 349/349,
  62873. bottom: 76/425
  62874. }
  62875. },
  62876. },
  62877. [
  62878. {
  62879. name: "Normal",
  62880. height: math.unit(5 + 10/12, "feet"),
  62881. default: true
  62882. },
  62883. ]
  62884. ))
  62885. characterMakers.push(() => makeCharacter(
  62886. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62887. {
  62888. front: {
  62889. height: math.unit(6, "feet"),
  62890. name: "Front",
  62891. image: {
  62892. source: "./media/characters/christopher-redwood/front.svg",
  62893. extra: 1402/1341,
  62894. bottom: 23/1425
  62895. }
  62896. },
  62897. back: {
  62898. height: math.unit(6, "feet"),
  62899. name: "Back",
  62900. image: {
  62901. source: "./media/characters/christopher-redwood/back.svg",
  62902. extra: 1406/1345,
  62903. bottom: 36/1442
  62904. }
  62905. },
  62906. head: {
  62907. height: math.unit(1.685, "feet"),
  62908. name: "Head",
  62909. image: {
  62910. source: "./media/characters/christopher-redwood/head.svg"
  62911. }
  62912. },
  62913. },
  62914. [
  62915. {
  62916. name: "Normal",
  62917. height: math.unit(6, "feet"),
  62918. default: true
  62919. },
  62920. ]
  62921. ))
  62922. characterMakers.push(() => makeCharacter(
  62923. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62924. {
  62925. front: {
  62926. height: math.unit(1.9, "meters"),
  62927. weight: math.unit(140, "lb"),
  62928. name: "Front",
  62929. image: {
  62930. source: "./media/characters/kara-fox/front.svg",
  62931. extra: 766/711,
  62932. bottom: 41/807
  62933. }
  62934. },
  62935. back: {
  62936. height: math.unit(1.9, "meters"),
  62937. weight: math.unit(140, "lb"),
  62938. name: "Back",
  62939. image: {
  62940. source: "./media/characters/kara-fox/back.svg",
  62941. extra: 766/596,
  62942. bottom: 29/795
  62943. }
  62944. },
  62945. maw: {
  62946. height: math.unit(0.78, "feet"),
  62947. name: "Maw",
  62948. image: {
  62949. source: "./media/characters/kara-fox/maw.svg"
  62950. }
  62951. },
  62952. pawpads: {
  62953. height: math.unit(0.96, "feet"),
  62954. name: "Pawpads",
  62955. image: {
  62956. source: "./media/characters/kara-fox/pawpads.svg"
  62957. }
  62958. },
  62959. },
  62960. [
  62961. {
  62962. name: "Normal",
  62963. height: math.unit(1.9, "meters"),
  62964. default: true
  62965. },
  62966. {
  62967. name: "Giantess",
  62968. height: math.unit(80, "meters")
  62969. },
  62970. ]
  62971. ))
  62972. characterMakers.push(() => makeCharacter(
  62973. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62974. {
  62975. front: {
  62976. height: math.unit(12, "feet"),
  62977. name: "Front",
  62978. image: {
  62979. source: "./media/characters/naomi-espeon/front.svg",
  62980. extra: 892/797,
  62981. bottom: 5/897
  62982. }
  62983. },
  62984. back: {
  62985. height: math.unit(12, "feet"),
  62986. name: "Back",
  62987. image: {
  62988. source: "./media/characters/naomi-espeon/back.svg",
  62989. extra: 890/785,
  62990. bottom: 12/902
  62991. }
  62992. },
  62993. },
  62994. [
  62995. {
  62996. name: "Normal",
  62997. height: math.unit(12, "feet"),
  62998. default: true
  62999. },
  63000. ]
  63001. ))
  63002. characterMakers.push(() => makeCharacter(
  63003. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63004. {
  63005. anthro_front: {
  63006. height: math.unit(8, "feet"),
  63007. weight: math.unit(625, "lb"),
  63008. name: "Front",
  63009. image: {
  63010. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63011. extra: 638/574,
  63012. bottom: 73/711
  63013. },
  63014. form: "anthro",
  63015. default: true
  63016. },
  63017. anthro_back: {
  63018. height: math.unit(8, "feet"),
  63019. weight: math.unit(625, "lb"),
  63020. name: "Back",
  63021. image: {
  63022. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63023. extra: 674/614,
  63024. bottom: 7/681
  63025. },
  63026. form: "anthro",
  63027. },
  63028. taur_side: {
  63029. height: math.unit(16, "feet"),
  63030. weight: math.unit(4.5, "tons"),
  63031. name: "Side",
  63032. image: {
  63033. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63034. extra: 704/646,
  63035. bottom: 132/836
  63036. },
  63037. form: "taur",
  63038. default: true
  63039. },
  63040. },
  63041. [
  63042. {
  63043. name: "Normal",
  63044. height: math.unit(8, "feet"),
  63045. default: true,
  63046. form: "anthro"
  63047. },
  63048. {
  63049. name: "Normal",
  63050. height: math.unit(16, "feet"),
  63051. default: true,
  63052. form: "taur"
  63053. },
  63054. ],
  63055. {
  63056. "anthro": {
  63057. name: "Anthro",
  63058. default: true
  63059. },
  63060. "taur": {
  63061. name: "Taur",
  63062. },
  63063. }
  63064. ))
  63065. characterMakers.push(() => makeCharacter(
  63066. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63067. {
  63068. front: {
  63069. height: math.unit(190, "cm"),
  63070. weight: math.unit(110, "kg"),
  63071. name: "Front",
  63072. image: {
  63073. source: "./media/characters/amelie/front.svg",
  63074. extra: 530/442,
  63075. bottom: 35/565
  63076. }
  63077. },
  63078. },
  63079. [
  63080. {
  63081. name: "Normal",
  63082. height: math.unit(190, "cm"),
  63083. default: true
  63084. },
  63085. ]
  63086. ))
  63087. characterMakers.push(() => makeCharacter(
  63088. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63089. {
  63090. front: {
  63091. height: math.unit(21, "feet"),
  63092. weight: math.unit(30000, "lb"),
  63093. name: "Front",
  63094. image: {
  63095. source: "./media/characters/valence/front.svg",
  63096. extra: 1430/1306,
  63097. bottom: 51/1481
  63098. }
  63099. },
  63100. },
  63101. [
  63102. {
  63103. name: "Normal",
  63104. height: math.unit(21, "feet"),
  63105. default: true
  63106. },
  63107. ]
  63108. ))
  63109. characterMakers.push(() => makeCharacter(
  63110. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63111. {
  63112. front: {
  63113. height: math.unit(5 + 9/12, "feet"),
  63114. weight: math.unit(170, "lb"),
  63115. name: "Front",
  63116. image: {
  63117. source: "./media/characters/aurora-adkins/front.svg",
  63118. extra: 1141/1089,
  63119. bottom: 41/1182
  63120. }
  63121. },
  63122. },
  63123. [
  63124. {
  63125. name: "Tiny",
  63126. height: math.unit(7, "mm")
  63127. },
  63128. {
  63129. name: "Small",
  63130. height: math.unit(3.4, "inches")
  63131. },
  63132. {
  63133. name: "Normal",
  63134. height: math.unit(5 + 9/12, "feet"),
  63135. default: true
  63136. },
  63137. {
  63138. name: "Big",
  63139. height: math.unit(31, "feet")
  63140. },
  63141. {
  63142. name: "Giant",
  63143. height: math.unit(300, "feet")
  63144. },
  63145. ]
  63146. ))
  63147. characterMakers.push(() => makeCharacter(
  63148. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63149. {
  63150. front: {
  63151. height: math.unit(5 + 6/12, "feet"),
  63152. weight: math.unit(210, "lb"),
  63153. name: "Front",
  63154. image: {
  63155. source: "./media/characters/cyber/front.svg",
  63156. extra: 1968/1798,
  63157. bottom: 10/1978
  63158. },
  63159. extraAttributes: {
  63160. "shoeSize": {
  63161. name: "Shoe Size",
  63162. power: 1,
  63163. type: "length",
  63164. base: math.unit(30, "ShoeSizeMensUS")
  63165. },
  63166. }
  63167. },
  63168. },
  63169. [
  63170. {
  63171. name: "Normal",
  63172. height: math.unit(5 + 6/12, "feet"),
  63173. default: true
  63174. },
  63175. ]
  63176. ))
  63177. characterMakers.push(() => makeCharacter(
  63178. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63179. {
  63180. front: {
  63181. height: math.unit(6 + 6/12, "feet"),
  63182. weight: math.unit(140, "lb"),
  63183. name: "Front",
  63184. image: {
  63185. source: "./media/characters/sapphire-wairimea/front.svg",
  63186. extra: 475/458,
  63187. bottom: 14/489
  63188. }
  63189. },
  63190. },
  63191. [
  63192. {
  63193. name: "Normal",
  63194. height: math.unit(6 + 6/12, "feet")
  63195. },
  63196. {
  63197. name: "Macro",
  63198. height: math.unit(132, "feet"),
  63199. default: true
  63200. },
  63201. ]
  63202. ))
  63203. characterMakers.push(() => makeCharacter(
  63204. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63205. {
  63206. front: {
  63207. height: math.unit(1.6, "meters"),
  63208. weight: math.unit(100, "lb"),
  63209. name: "Front",
  63210. image: {
  63211. source: "./media/characters/cirkazi/front.svg",
  63212. extra: 489/477,
  63213. bottom: 0/489
  63214. }
  63215. },
  63216. },
  63217. [
  63218. {
  63219. name: "Normal",
  63220. height: math.unit(1.6, "meters")
  63221. },
  63222. {
  63223. name: "Macro",
  63224. height: math.unit(800, "feet"),
  63225. default: true
  63226. },
  63227. ]
  63228. ))
  63229. characterMakers.push(() => makeCharacter(
  63230. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63231. {
  63232. front: {
  63233. height: math.unit(5 + 10/12, "feet"),
  63234. weight: math.unit(145, "lb"),
  63235. name: "Front",
  63236. image: {
  63237. source: "./media/characters/corrin-cavelli/front.svg",
  63238. extra: 483/464,
  63239. bottom: 6/489
  63240. }
  63241. },
  63242. },
  63243. [
  63244. {
  63245. name: "Human",
  63246. height: math.unit(5 + 10/12, "feet")
  63247. },
  63248. {
  63249. name: "Giant",
  63250. height: math.unit(210, "feet"),
  63251. default: true
  63252. },
  63253. ]
  63254. ))
  63255. characterMakers.push(() => makeCharacter(
  63256. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63257. {
  63258. back: {
  63259. height: math.unit(5 + 6/12, "feet"),
  63260. weight: math.unit(115, "lb"),
  63261. name: "Back",
  63262. image: {
  63263. source: "./media/characters/lori-lopez/back.svg",
  63264. extra: 483/474,
  63265. bottom: 6/489
  63266. }
  63267. },
  63268. },
  63269. [
  63270. {
  63271. name: "Human",
  63272. height: math.unit(5 + 6/12, "feet")
  63273. },
  63274. {
  63275. name: "Macro",
  63276. height: math.unit(198, "feet"),
  63277. default: true
  63278. },
  63279. ]
  63280. ))
  63281. characterMakers.push(() => makeCharacter(
  63282. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63283. {
  63284. front: {
  63285. height: math.unit(6, "feet"),
  63286. weight: math.unit(220, "lb"),
  63287. name: "Front",
  63288. image: {
  63289. source: "./media/characters/sylvia-beauregard/front.svg",
  63290. extra: 483/479,
  63291. bottom: 6/489
  63292. }
  63293. },
  63294. },
  63295. [
  63296. {
  63297. name: "Macro",
  63298. height: math.unit(2071, "feet"),
  63299. default: true
  63300. },
  63301. ]
  63302. ))
  63303. characterMakers.push(() => makeCharacter(
  63304. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63305. {
  63306. back: {
  63307. height: math.unit(5 + 6/12, "feet"),
  63308. weight: math.unit(160, "lb"),
  63309. name: "Back",
  63310. image: {
  63311. source: "./media/characters/akiko-takahashi/back.svg",
  63312. extra: 459/454,
  63313. bottom: 27/486
  63314. }
  63315. },
  63316. },
  63317. [
  63318. {
  63319. name: "Human",
  63320. height: math.unit(5 + 6/12, "feet")
  63321. },
  63322. {
  63323. name: "Macro",
  63324. height: math.unit(198, "feet"),
  63325. default: true
  63326. },
  63327. {
  63328. name: "Megamacro",
  63329. height: math.unit(7128, "feet")
  63330. },
  63331. ]
  63332. ))
  63333. characterMakers.push(() => makeCharacter(
  63334. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63335. {
  63336. front: {
  63337. height: math.unit(6, "feet"),
  63338. weight: math.unit(140, "lb"),
  63339. name: "Front",
  63340. image: {
  63341. source: "./media/characters/velvet-garza/front.svg",
  63342. extra: 480/462,
  63343. bottom: 7/487
  63344. }
  63345. },
  63346. },
  63347. [
  63348. {
  63349. name: "Macro",
  63350. height: math.unit(37, "feet"),
  63351. default: true
  63352. },
  63353. ]
  63354. ))
  63355. characterMakers.push(() => makeCharacter(
  63356. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63357. {
  63358. front: {
  63359. height: math.unit(7 + 6/12, "feet"),
  63360. weight: math.unit(400, "lb"),
  63361. name: "Front",
  63362. image: {
  63363. source: "./media/characters/gaia/front.svg",
  63364. extra: 474/463,
  63365. bottom: 13/487
  63366. }
  63367. },
  63368. },
  63369. [
  63370. {
  63371. name: "MiniMacro",
  63372. height: math.unit(7 + 6/12, "feet")
  63373. },
  63374. {
  63375. name: "GigaMacro",
  63376. height: math.unit(14500, "feet"),
  63377. default: true
  63378. },
  63379. ]
  63380. ))
  63381. characterMakers.push(() => makeCharacter(
  63382. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63383. {
  63384. front: {
  63385. height: math.unit(6, "feet"),
  63386. weight: math.unit(150, "lb"),
  63387. name: "Front",
  63388. image: {
  63389. source: "./media/characters/tim/front.svg",
  63390. extra: 1878/1743,
  63391. bottom: 9/1887
  63392. }
  63393. },
  63394. frontDressed: {
  63395. height: math.unit(6, "feet"),
  63396. weight: math.unit(150, "lb"),
  63397. name: "Front (Dressed)",
  63398. image: {
  63399. source: "./media/characters/tim/front-dressed.svg",
  63400. extra: 1765/1485,
  63401. bottom: 48/1813
  63402. }
  63403. },
  63404. backDressed: {
  63405. height: math.unit(6, "feet"),
  63406. weight: math.unit(150, "lb"),
  63407. name: "Back (Dressed)",
  63408. image: {
  63409. source: "./media/characters/tim/back-dressed.svg",
  63410. extra: 1750/1465,
  63411. bottom: 25/1775
  63412. }
  63413. },
  63414. dick: {
  63415. height: math.unit(1.5, "feet"),
  63416. weight: math.unit(6, "lb"),
  63417. name: "Dick",
  63418. image: {
  63419. source: "./media/characters/tim/dick.svg"
  63420. }
  63421. },
  63422. hand: {
  63423. height: math.unit(0.522, "feet"),
  63424. name: "Hand",
  63425. image: {
  63426. source: "./media/characters/tim/hand.svg"
  63427. }
  63428. },
  63429. palm: {
  63430. height: math.unit(0.48, "feet"),
  63431. name: "Palm",
  63432. image: {
  63433. source: "./media/characters/tim/palm.svg"
  63434. }
  63435. },
  63436. paw: {
  63437. height: math.unit(0.9, "feet"),
  63438. name: "Paw",
  63439. image: {
  63440. source: "./media/characters/tim/paw.svg"
  63441. }
  63442. },
  63443. sole: {
  63444. height: math.unit(0.88, "feet"),
  63445. name: "Sole",
  63446. image: {
  63447. source: "./media/characters/tim/sole.svg"
  63448. }
  63449. },
  63450. },
  63451. [
  63452. {
  63453. name: "Macro",
  63454. height: math.unit(1000, "feet")
  63455. },
  63456. {
  63457. name: "Megamacro",
  63458. height: math.unit(10000, "feet"),
  63459. default: true
  63460. },
  63461. {
  63462. name: "Megamacro+",
  63463. height: math.unit(50000, "feet")
  63464. },
  63465. {
  63466. name: "Gigamacro",
  63467. height: math.unit(150000, "km")
  63468. },
  63469. ]
  63470. ))
  63471. characterMakers.push(() => makeCharacter(
  63472. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63473. {
  63474. front: {
  63475. height: math.unit(5 + 8/12, "feet"),
  63476. weight: math.unit(170, "lb"),
  63477. name: "Front",
  63478. image: {
  63479. source: "./media/characters/abel-delreoux/front.svg",
  63480. extra: 1615/1500,
  63481. bottom: 82/1697
  63482. }
  63483. },
  63484. back: {
  63485. height: math.unit(5 + 8/12, "feet"),
  63486. weight: math.unit(170, "lb"),
  63487. name: "Back",
  63488. image: {
  63489. source: "./media/characters/abel-delreoux/back.svg",
  63490. extra: 1644/1534,
  63491. bottom: 24/1668
  63492. }
  63493. },
  63494. casual: {
  63495. height: math.unit(5 + 8/12, "feet"),
  63496. weight: math.unit(170, "lb"),
  63497. name: "Casual",
  63498. image: {
  63499. source: "./media/characters/abel-delreoux/casual.svg",
  63500. extra: 1716/1598,
  63501. bottom: 29/1745
  63502. }
  63503. },
  63504. sleepy: {
  63505. height: math.unit(5 + 8/12, "feet"),
  63506. weight: math.unit(170, "lb"),
  63507. name: "Sleepy",
  63508. image: {
  63509. source: "./media/characters/abel-delreoux/sleepy.svg",
  63510. extra: 1649/1573,
  63511. bottom: 22/1671
  63512. }
  63513. },
  63514. fem: {
  63515. height: math.unit(5 + 8/12, "feet"),
  63516. weight: math.unit(170, "lb"),
  63517. name: "Fem",
  63518. image: {
  63519. source: "./media/characters/abel-delreoux/fem.svg",
  63520. extra: 1680/1564,
  63521. bottom: 17/1697
  63522. }
  63523. },
  63524. hand: {
  63525. height: math.unit(0.78, "feet"),
  63526. name: "Hand",
  63527. image: {
  63528. source: "./media/characters/abel-delreoux/hand.svg"
  63529. }
  63530. },
  63531. paw: {
  63532. height: math.unit(0.78, "feet"),
  63533. name: "Paw",
  63534. image: {
  63535. source: "./media/characters/abel-delreoux/paw.svg"
  63536. }
  63537. },
  63538. },
  63539. [
  63540. {
  63541. name: "Normal",
  63542. height: math.unit(5 + 8/12, "feet"),
  63543. default: true
  63544. },
  63545. ]
  63546. ))
  63547. characterMakers.push(() => makeCharacter(
  63548. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63549. {
  63550. front: {
  63551. height: math.unit(6, "feet"),
  63552. weight: math.unit(159, "lb"),
  63553. name: "Front",
  63554. image: {
  63555. source: "./media/characters/meus/front.svg",
  63556. extra: 938/843,
  63557. bottom: 37/975
  63558. }
  63559. },
  63560. back: {
  63561. height: math.unit(6, "feet"),
  63562. weight: math.unit(159, "lb"),
  63563. name: "Back",
  63564. image: {
  63565. source: "./media/characters/meus/back.svg",
  63566. extra: 967/873,
  63567. bottom: 12/979
  63568. }
  63569. },
  63570. },
  63571. [
  63572. {
  63573. name: "Micro",
  63574. height: math.unit(2, "inches")
  63575. },
  63576. {
  63577. name: "Mini",
  63578. height: math.unit(6, "inches")
  63579. },
  63580. {
  63581. name: "Normal",
  63582. height: math.unit(6, "feet"),
  63583. default: true
  63584. },
  63585. {
  63586. name: "Macro",
  63587. height: math.unit(84, "feet")
  63588. },
  63589. ]
  63590. ))
  63591. characterMakers.push(() => makeCharacter(
  63592. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63593. {
  63594. front: {
  63595. height: math.unit(60, "cm"),
  63596. weight: math.unit(18, "kg"),
  63597. name: "Front",
  63598. image: {
  63599. source: "./media/characters/yamato/front.svg",
  63600. extra: 733/688,
  63601. bottom: 29/762
  63602. }
  63603. },
  63604. },
  63605. [
  63606. {
  63607. name: "Micro",
  63608. height: math.unit(6, "cm")
  63609. },
  63610. {
  63611. name: "Normal",
  63612. height: math.unit(60, "cm"),
  63613. default: true
  63614. },
  63615. ]
  63616. ))
  63617. characterMakers.push(() => makeCharacter(
  63618. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63619. {
  63620. front: {
  63621. height: math.unit(9, "feet"),
  63622. weight: math.unit(518, "lb"),
  63623. name: "Front",
  63624. image: {
  63625. source: "./media/characters/barus/front.svg",
  63626. extra: 1877/1795,
  63627. bottom: 55/1932
  63628. }
  63629. },
  63630. },
  63631. [
  63632. {
  63633. name: "Base Height",
  63634. height: math.unit(9, "feet"),
  63635. default: true
  63636. },
  63637. {
  63638. name: "Large",
  63639. height: math.unit(18, "feet")
  63640. },
  63641. {
  63642. name: "Giant",
  63643. height: math.unit(100, "feet")
  63644. },
  63645. {
  63646. name: "Huge",
  63647. height: math.unit(500, "feet")
  63648. },
  63649. {
  63650. name: "Enormous",
  63651. height: math.unit(300, "meters")
  63652. },
  63653. {
  63654. name: "Deity Among Man",
  63655. height: math.unit(3000, "meters")
  63656. },
  63657. ]
  63658. ))
  63659. characterMakers.push(() => makeCharacter(
  63660. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63661. {
  63662. front: {
  63663. height: math.unit(1.7, "meters"),
  63664. name: "Front",
  63665. image: {
  63666. source: "./media/characters/yari/front.svg",
  63667. extra: 1210/1125,
  63668. bottom: 283/1493
  63669. }
  63670. },
  63671. back: {
  63672. height: math.unit(1.7, "meters"),
  63673. name: "Back",
  63674. image: {
  63675. source: "./media/characters/yari/back.svg",
  63676. extra: 1240/1195,
  63677. bottom: 180/1420
  63678. }
  63679. },
  63680. head: {
  63681. height: math.unit(1.26, "feet"),
  63682. name: "Head",
  63683. image: {
  63684. source: "./media/characters/yari/head.svg"
  63685. }
  63686. },
  63687. },
  63688. [
  63689. {
  63690. name: "Nano",
  63691. height: math.unit(0.5, "mm")
  63692. },
  63693. {
  63694. name: "Micro",
  63695. height: math.unit(3, "inches")
  63696. },
  63697. {
  63698. name: "Short",
  63699. height: math.unit(1.5, "meters")
  63700. },
  63701. {
  63702. name: "Norm",
  63703. height: math.unit(1.7, "meters"),
  63704. default: true
  63705. },
  63706. ]
  63707. ))
  63708. characterMakers.push(() => makeCharacter(
  63709. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63710. {
  63711. front: {
  63712. height: math.unit(5 + 2/12, "feet"),
  63713. weight: math.unit(110, "lb"),
  63714. name: "Front",
  63715. image: {
  63716. source: "./media/characters/salem/front.svg",
  63717. extra: 1895/1800,
  63718. bottom: 23/1918
  63719. }
  63720. },
  63721. back: {
  63722. height: math.unit(5 + 2/12, "feet"),
  63723. weight: math.unit(110, "lb"),
  63724. name: "Back",
  63725. image: {
  63726. source: "./media/characters/salem/back.svg",
  63727. extra: 1875/1802,
  63728. bottom: 20/1895
  63729. }
  63730. },
  63731. head: {
  63732. height: math.unit(1, "feet"),
  63733. name: "Head",
  63734. image: {
  63735. source: "./media/characters/salem/head.svg"
  63736. }
  63737. },
  63738. paw: {
  63739. height: math.unit(0.59, "feet"),
  63740. name: "Paw",
  63741. image: {
  63742. source: "./media/characters/salem/paw.svg"
  63743. }
  63744. },
  63745. beans: {
  63746. height: math.unit(0.66, "feet"),
  63747. name: "Beans",
  63748. image: {
  63749. source: "./media/characters/salem/beans.svg"
  63750. }
  63751. },
  63752. eye: {
  63753. height: math.unit(0.224, "feet"),
  63754. name: "Eye",
  63755. image: {
  63756. source: "./media/characters/salem/eye.svg"
  63757. }
  63758. },
  63759. semiferal: {
  63760. height: math.unit(2.3, "feet"),
  63761. name: "Semiferal",
  63762. image: {
  63763. source: "./media/characters/salem/semiferal.svg",
  63764. extra: 914/839,
  63765. bottom: 32/946
  63766. }
  63767. },
  63768. },
  63769. [
  63770. {
  63771. name: "Micro",
  63772. height: math.unit(4, "inches")
  63773. },
  63774. {
  63775. name: "Normal",
  63776. height: math.unit(5 + 2/12, "feet"),
  63777. default: true
  63778. },
  63779. {
  63780. name: "Macro",
  63781. height: math.unit(108, "feet")
  63782. },
  63783. {
  63784. name: "Macro+",
  63785. height: math.unit(1500, "feet")
  63786. },
  63787. ]
  63788. ))
  63789. characterMakers.push(() => makeCharacter(
  63790. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63791. {
  63792. front: {
  63793. height: math.unit(7 + 6/12, "feet"),
  63794. weight: math.unit(600, "kg"),
  63795. preyCapacity: math.unit(10, "people"),
  63796. name: "Front",
  63797. image: {
  63798. source: "./media/characters/kii/front.svg",
  63799. extra: 3296/3087,
  63800. bottom: 130/3426
  63801. }
  63802. },
  63803. },
  63804. [
  63805. {
  63806. name: "Normal",
  63807. height: math.unit(7 + 6/12, "feet"),
  63808. default: true
  63809. },
  63810. ]
  63811. ))
  63812. characterMakers.push(() => makeCharacter(
  63813. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63814. {
  63815. front: {
  63816. height: math.unit(2, "meters"),
  63817. weight: math.unit(200, "lb"),
  63818. name: "Front",
  63819. image: {
  63820. source: "./media/characters/taffy/front.svg",
  63821. extra: 1666/1618,
  63822. bottom: 157/1823
  63823. }
  63824. },
  63825. back: {
  63826. height: math.unit(2, "meters"),
  63827. weight: math.unit(200, "lb"),
  63828. name: "Back",
  63829. image: {
  63830. source: "./media/characters/taffy/back.svg",
  63831. extra: 1635/1583,
  63832. bottom: 153/1788
  63833. }
  63834. },
  63835. },
  63836. [
  63837. {
  63838. name: "Normal",
  63839. height: math.unit(2, "meters"),
  63840. default: true
  63841. },
  63842. ]
  63843. ))
  63844. characterMakers.push(() => makeCharacter(
  63845. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63846. {
  63847. front: {
  63848. height: math.unit(1.55, "meters"),
  63849. weight: math.unit(60, "kg"),
  63850. name: "Front",
  63851. image: {
  63852. source: "./media/characters/barley/front.svg",
  63853. extra: 1520/1340,
  63854. bottom: 47/1567
  63855. }
  63856. },
  63857. back: {
  63858. height: math.unit(1.55, "meters"),
  63859. weight: math.unit(60, "kg"),
  63860. name: "Back",
  63861. image: {
  63862. source: "./media/characters/barley/back.svg",
  63863. extra: 1543/1341,
  63864. bottom: 12/1555
  63865. }
  63866. },
  63867. feet: {
  63868. height: math.unit(2.18, "feet"),
  63869. name: "Feet",
  63870. image: {
  63871. source: "./media/characters/barley/feet.svg"
  63872. }
  63873. },
  63874. },
  63875. [
  63876. {
  63877. name: "Normal",
  63878. height: math.unit(1.55, "meters"),
  63879. default: true
  63880. },
  63881. ]
  63882. ))
  63883. characterMakers.push(() => makeCharacter(
  63884. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63885. {
  63886. dressed: {
  63887. height: math.unit(6, "feet"),
  63888. name: "Dressed",
  63889. image: {
  63890. source: "./media/characters/lydia-lopez/dressed.svg",
  63891. extra: 1319/1277,
  63892. bottom: 90/1409
  63893. }
  63894. },
  63895. nude: {
  63896. height: math.unit(6, "feet"),
  63897. name: "Nude",
  63898. image: {
  63899. source: "./media/characters/lydia-lopez/nude.svg",
  63900. extra: 1319/1277,
  63901. bottom: 90/1409
  63902. }
  63903. },
  63904. },
  63905. [
  63906. {
  63907. name: "Normal",
  63908. height: math.unit(6, "feet"),
  63909. default: true
  63910. },
  63911. {
  63912. name: "Maximum",
  63913. height: math.unit(2101, "feet")
  63914. },
  63915. ]
  63916. ))
  63917. characterMakers.push(() => makeCharacter(
  63918. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63919. {
  63920. front: {
  63921. height: math.unit(5 + 4/12, "feet"),
  63922. weight: math.unit(250, "lb"),
  63923. volume: math.unit(20, "gallons"),
  63924. name: "Front",
  63925. image: {
  63926. source: "./media/characters/kira-slime/front.svg",
  63927. extra: 442/403,
  63928. bottom: 18/460
  63929. }
  63930. },
  63931. frontNsfw: {
  63932. height: math.unit(5 + 4/12, "feet"),
  63933. weight: math.unit(250, "lb"),
  63934. volume: math.unit(20, "gallons"),
  63935. name: "Front (NSFW)",
  63936. image: {
  63937. source: "./media/characters/kira-slime/front-nsfw.svg",
  63938. extra: 442/403,
  63939. bottom: 18/460
  63940. }
  63941. },
  63942. },
  63943. [
  63944. {
  63945. name: "Droplet",
  63946. height: math.unit(0.0464452, "feet")
  63947. },
  63948. {
  63949. name: "Pint",
  63950. height: math.unit(0.9824, "feet")
  63951. },
  63952. {
  63953. name: "Bucket",
  63954. height: math.unit(2.83, "feet")
  63955. },
  63956. {
  63957. name: "Normal",
  63958. height: math.unit(5 + 4/12, "feet"),
  63959. default: true
  63960. },
  63961. {
  63962. name: "Tub",
  63963. height: math.unit(8.46614, "feet")
  63964. },
  63965. {
  63966. name: "Pool",
  63967. height: math.unit(31.1895, "feet")
  63968. },
  63969. {
  63970. name: "Pond",
  63971. height: math.unit(170.349, "feet")
  63972. },
  63973. {
  63974. name: "Lake",
  63975. height: math.unit(289334, "feet")
  63976. },
  63977. {
  63978. name: "Ocean",
  63979. height: math.unit(1.11940e+7, "feet")
  63980. },
  63981. ]
  63982. ))
  63983. characterMakers.push(() => makeCharacter(
  63984. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63985. {
  63986. front: {
  63987. height: math.unit(5 + 6/12, "feet"),
  63988. weight: math.unit(120, "lb"),
  63989. name: "Front",
  63990. image: {
  63991. source: "./media/characters/holiday/front.svg",
  63992. extra: 456/403,
  63993. bottom: 4/460
  63994. }
  63995. },
  63996. back: {
  63997. height: math.unit(5 + 6/12, "feet"),
  63998. weight: math.unit(120, "lb"),
  63999. name: "Back",
  64000. image: {
  64001. source: "./media/characters/holiday/back.svg",
  64002. extra: 450/404,
  64003. bottom: 12/462
  64004. }
  64005. },
  64006. head: {
  64007. height: math.unit(2.3, "feet"),
  64008. name: "Head",
  64009. image: {
  64010. source: "./media/characters/holiday/head.svg"
  64011. }
  64012. },
  64013. },
  64014. [
  64015. {
  64016. name: "Normal",
  64017. height: math.unit(5 + 6/12, "feet"),
  64018. default: true
  64019. },
  64020. {
  64021. name: "Macro",
  64022. height: math.unit(6574.25, "feet")
  64023. },
  64024. ]
  64025. ))
  64026. characterMakers.push(() => makeCharacter(
  64027. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64028. {
  64029. front: {
  64030. height: math.unit(6 + 2/12, "feet"),
  64031. weight: math.unit(200, "lb"),
  64032. name: "Front",
  64033. image: {
  64034. source: "./media/characters/camina/front.svg",
  64035. extra: 1048/985,
  64036. bottom: 30/1078
  64037. }
  64038. },
  64039. },
  64040. [
  64041. {
  64042. name: "Normal",
  64043. height: math.unit(6 + 2/12, "feet"),
  64044. default: true
  64045. },
  64046. ]
  64047. ))
  64048. characterMakers.push(() => makeCharacter(
  64049. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64050. {
  64051. front: {
  64052. height: math.unit(30, "cm"),
  64053. weight: math.unit(420, "grams"),
  64054. name: "Front",
  64055. image: {
  64056. source: "./media/characters/smuck/front.svg",
  64057. extra: 379/345,
  64058. bottom: 36/415
  64059. }
  64060. },
  64061. },
  64062. [
  64063. {
  64064. name: "Smuck-Sized",
  64065. height: math.unit(30, "cm"),
  64066. default: true
  64067. },
  64068. ]
  64069. ))
  64070. characterMakers.push(() => makeCharacter(
  64071. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64072. {
  64073. frontSfw: {
  64074. height: math.unit(10, "feet"),
  64075. weight: math.unit(1000, "kg"),
  64076. preyCapacity: math.unit(2, "people"),
  64077. name: "Front (SFW)",
  64078. image: {
  64079. source: "./media/characters/bylur/front-sfw.svg",
  64080. extra: 419/343,
  64081. bottom: 3/422
  64082. },
  64083. default: true
  64084. },
  64085. frontSheath: {
  64086. height: math.unit(10, "feet"),
  64087. weight: math.unit(1000, "kg"),
  64088. preyCapacity: math.unit(2, "people"),
  64089. name: "Front (Sheath)",
  64090. image: {
  64091. source: "./media/characters/bylur/front-sheath.svg",
  64092. extra: 419/343,
  64093. bottom: 3/422
  64094. }
  64095. },
  64096. frontErect: {
  64097. height: math.unit(10, "feet"),
  64098. weight: math.unit(1000, "kg"),
  64099. preyCapacity: math.unit(2, "people"),
  64100. name: "Front (Erect)",
  64101. image: {
  64102. source: "./media/characters/bylur/front-erect.svg",
  64103. extra: 419/343,
  64104. bottom: 3/422
  64105. }
  64106. },
  64107. back: {
  64108. height: math.unit(10, "feet"),
  64109. weight: math.unit(1000, "kg"),
  64110. preyCapacity: math.unit(2, "people"),
  64111. name: "Back",
  64112. image: {
  64113. source: "./media/characters/bylur/back.svg",
  64114. extra: 392/315,
  64115. bottom: 3/395
  64116. }
  64117. },
  64118. maw: {
  64119. height: math.unit(3.65, "feet"),
  64120. name: "Maw",
  64121. image: {
  64122. source: "./media/characters/bylur/maw.svg"
  64123. }
  64124. },
  64125. },
  64126. [
  64127. {
  64128. name: "Slightly Human Sized",
  64129. height: math.unit(10, "feet")
  64130. },
  64131. {
  64132. name: "Normal",
  64133. height: math.unit(35, "feet"),
  64134. default: true
  64135. },
  64136. {
  64137. name: "Macro",
  64138. height: math.unit(130, "feet")
  64139. },
  64140. ]
  64141. ))
  64142. characterMakers.push(() => makeCharacter(
  64143. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64144. {
  64145. frontNsfw: {
  64146. height: math.unit(6, "feet"),
  64147. weight: math.unit(250, "lb"),
  64148. preyCapacity: math.unit(0.05, "people"),
  64149. name: "Front (NSFW)",
  64150. image: {
  64151. source: "./media/characters/oarven/front-nsfw.svg",
  64152. extra: 1795/1783,
  64153. bottom: 142/1937
  64154. }
  64155. },
  64156. frontSfw: {
  64157. height: math.unit(6, "feet"),
  64158. weight: math.unit(250, "lb"),
  64159. preyCapacity: math.unit(0.05, "people"),
  64160. name: "Front (SFW)",
  64161. image: {
  64162. source: "./media/characters/oarven/front-sfw.svg",
  64163. extra: 1795/1783,
  64164. bottom: 142/1937
  64165. }
  64166. },
  64167. },
  64168. [
  64169. {
  64170. name: "Megamacro",
  64171. height: math.unit(5, "miles"),
  64172. default: true
  64173. },
  64174. {
  64175. name: "Maximum Height",
  64176. height: math.unit(5, "AUs")
  64177. },
  64178. ]
  64179. ))
  64180. characterMakers.push(() => makeCharacter(
  64181. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64182. {
  64183. side: {
  64184. height: math.unit(1065, "meters"),
  64185. weight: math.unit(1e12, "kg"),
  64186. volume: math.unit(3265000000, "m^3"),
  64187. name: "Side",
  64188. image: {
  64189. source: "./media/characters/solidarity/side.svg"
  64190. }
  64191. },
  64192. front: {
  64193. height: math.unit(1065, "meters"),
  64194. weight: math.unit(3265000000000, "kg"),
  64195. volume: math.unit(3265000000, "m^3"),
  64196. name: "Front",
  64197. image: {
  64198. source: "./media/characters/solidarity/front.svg"
  64199. }
  64200. },
  64201. top: {
  64202. height: math.unit(5823, "meters"),
  64203. weight: math.unit(3265000000000, "kg"),
  64204. volume: math.unit(3265000000, "m^3"),
  64205. name: "Top",
  64206. image: {
  64207. source: "./media/characters/solidarity/top.svg"
  64208. }
  64209. },
  64210. },
  64211. [
  64212. {
  64213. name: "Normal",
  64214. height: math.unit(1065, "meters"),
  64215. default: true
  64216. },
  64217. ]
  64218. ))
  64219. characterMakers.push(() => makeCharacter(
  64220. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64221. {
  64222. side: {
  64223. height: math.unit(18 + 4/12, "feet"),
  64224. weight: math.unit(13000, "kg"),
  64225. name: "Side",
  64226. image: {
  64227. source: "./media/characters/ani'szi/side.svg",
  64228. extra: 468/459,
  64229. bottom: 60/528
  64230. }
  64231. },
  64232. head: {
  64233. height: math.unit(4.8, "feet"),
  64234. name: "Head",
  64235. image: {
  64236. source: "./media/characters/ani'szi/head.svg"
  64237. }
  64238. },
  64239. jaws: {
  64240. height: math.unit(2.25, "feet"),
  64241. name: "Jaws",
  64242. image: {
  64243. source: "./media/characters/ani'szi/jaws.svg"
  64244. }
  64245. },
  64246. bust: {
  64247. height: math.unit(8.9, "feet"),
  64248. name: "Bust",
  64249. image: {
  64250. source: "./media/characters/ani'szi/bust.svg"
  64251. }
  64252. },
  64253. back: {
  64254. height: math.unit(13.53, "feet"),
  64255. name: "Back",
  64256. image: {
  64257. source: "./media/characters/ani'szi/back.svg"
  64258. }
  64259. },
  64260. eye: {
  64261. height: math.unit(0.44, "feet"),
  64262. name: "Eye",
  64263. image: {
  64264. source: "./media/characters/ani'szi/eye.svg"
  64265. }
  64266. },
  64267. },
  64268. [
  64269. {
  64270. name: "Normal",
  64271. height: math.unit(18 + 4/12, "feet"),
  64272. default: true
  64273. },
  64274. ]
  64275. ))
  64276. characterMakers.push(() => makeCharacter(
  64277. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64278. {
  64279. front: {
  64280. height: math.unit(7 + 6/12, "feet"),
  64281. weight: math.unit(300, "lb"),
  64282. name: "Front",
  64283. image: {
  64284. source: "./media/characters/rain/front.svg",
  64285. extra: 2955/2698,
  64286. bottom: 235/3190
  64287. }
  64288. },
  64289. dressed: {
  64290. height: math.unit(7 + 6/12, "feet"),
  64291. weight: math.unit(300, "lb"),
  64292. name: "Dressed",
  64293. image: {
  64294. source: "./media/characters/rain/dressed.svg",
  64295. extra: 2783/2572,
  64296. bottom: 430/3213
  64297. }
  64298. },
  64299. },
  64300. [
  64301. {
  64302. name: "Normal",
  64303. height: math.unit(7 + 6/12, "feet"),
  64304. default: true
  64305. },
  64306. {
  64307. name: "Macro",
  64308. height: math.unit(200, "feet")
  64309. },
  64310. {
  64311. name: "Macro+",
  64312. height: math.unit(500, "feet")
  64313. },
  64314. {
  64315. name: "Megamacro",
  64316. height: math.unit(5, "miles")
  64317. },
  64318. ]
  64319. ))
  64320. characterMakers.push(() => makeCharacter(
  64321. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64322. {
  64323. taur_side: {
  64324. height: math.unit(3, "meters"),
  64325. name: "Side",
  64326. image: {
  64327. source: "./media/characters/anise/taur-side.svg",
  64328. extra: 1833/926,
  64329. bottom: 134/1967
  64330. },
  64331. form: "taur",
  64332. default: true
  64333. },
  64334. feral_side: {
  64335. height: math.unit(3, "meters"),
  64336. name: "Side",
  64337. image: {
  64338. source: "./media/characters/anise/feral-side.svg",
  64339. extra: 681/349,
  64340. bottom: 26/707
  64341. },
  64342. form: "feral"
  64343. },
  64344. },
  64345. [
  64346. {
  64347. name: "Normal",
  64348. height: math.unit(3, "meters"),
  64349. default: true,
  64350. allForms: true
  64351. },
  64352. ],
  64353. {
  64354. "taur": {
  64355. name: "Taur",
  64356. default: true
  64357. },
  64358. "feral": {
  64359. name: "Feral",
  64360. },
  64361. }
  64362. ))
  64363. characterMakers.push(() => makeCharacter(
  64364. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64365. {
  64366. front: {
  64367. height: math.unit(1.9, "meters"),
  64368. weight: math.unit(75, "kg"),
  64369. name: "Front",
  64370. image: {
  64371. source: "./media/characters/sarina/front.svg",
  64372. extra: 1275/1200,
  64373. bottom: 49/1324
  64374. }
  64375. },
  64376. back: {
  64377. height: math.unit(1.9, "meters"),
  64378. weight: math.unit(75, "kg"),
  64379. name: "Back",
  64380. image: {
  64381. source: "./media/characters/sarina/back.svg",
  64382. extra: 1279/1209,
  64383. bottom: 14/1293
  64384. }
  64385. },
  64386. dressed: {
  64387. height: math.unit(1.9, "meters"),
  64388. weight: math.unit(75, "kg"),
  64389. name: "Dressed",
  64390. image: {
  64391. source: "./media/characters/sarina/dressed.svg",
  64392. extra: 1256/1187,
  64393. bottom: 56/1312
  64394. }
  64395. },
  64396. paw: {
  64397. height: math.unit(0.57, "feet"),
  64398. name: "Paw",
  64399. image: {
  64400. source: "./media/characters/sarina/paw.svg"
  64401. }
  64402. },
  64403. toering: {
  64404. height: math.unit(0.27, "feet"),
  64405. name: "Toering",
  64406. image: {
  64407. source: "./media/characters/sarina/toering.svg"
  64408. }
  64409. },
  64410. },
  64411. [
  64412. {
  64413. name: "Incognito",
  64414. height: math.unit(1.9, "meters")
  64415. },
  64416. {
  64417. name: "Home Size",
  64418. height: math.unit(160, "meters"),
  64419. default: true
  64420. },
  64421. {
  64422. name: "Mega",
  64423. height: math.unit(50, "km")
  64424. },
  64425. {
  64426. name: "Small Giga",
  64427. height: math.unit(250, "km")
  64428. },
  64429. {
  64430. name: "Giga (Preferred Size)",
  64431. height: math.unit(3000, "km")
  64432. },
  64433. {
  64434. name: "Terra",
  64435. height: math.unit(40000, "km")
  64436. },
  64437. {
  64438. name: "Terra+",
  64439. height: math.unit(400000, "km")
  64440. },
  64441. {
  64442. name: "Solar",
  64443. height: math.unit(35e6, "km")
  64444. },
  64445. {
  64446. name: "Galactic",
  64447. height: math.unit(648106, "parsecs")
  64448. },
  64449. {
  64450. name: "Universal",
  64451. height: math.unit(7, "universes")
  64452. },
  64453. {
  64454. name: "Universal+",
  64455. height: math.unit(30, "universes")
  64456. },
  64457. ]
  64458. ))
  64459. characterMakers.push(() => makeCharacter(
  64460. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64461. {
  64462. front: {
  64463. height: math.unit(5 + 6/12, "feet"),
  64464. name: "Front",
  64465. image: {
  64466. source: "./media/characters/sifray/front.svg",
  64467. extra: 722/691,
  64468. bottom: 64/786
  64469. }
  64470. },
  64471. },
  64472. [
  64473. {
  64474. name: "Normal",
  64475. height: math.unit(5 + 6/12, "feet"),
  64476. default: true
  64477. },
  64478. ]
  64479. ))
  64480. characterMakers.push(() => makeCharacter(
  64481. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64482. {
  64483. side: {
  64484. height: math.unit(2.64, "feet"),
  64485. weight: math.unit(100, "lb"),
  64486. preyCapacity: math.unit(3, "people"),
  64487. name: "Side",
  64488. image: {
  64489. source: "./media/characters/spots/side.svg",
  64490. extra: 1859/977,
  64491. bottom: 19/1878
  64492. },
  64493. extraAttributes: {
  64494. "preyPerMinute": {
  64495. name: "Prey Per Minute",
  64496. power: 3,
  64497. type: "volume",
  64498. base: math.unit(6, "people"),
  64499. defaultUnit: "people"
  64500. },
  64501. "preyPerDay": {
  64502. name: "Prey Per Day",
  64503. power: 3,
  64504. type: "volume",
  64505. base: math.unit(6 * 60 * 24, "people"),
  64506. defaultUnit: "people"
  64507. },
  64508. }
  64509. },
  64510. },
  64511. [
  64512. {
  64513. name: "Normal",
  64514. height: math.unit(2.64, "feet"),
  64515. default: true
  64516. },
  64517. ]
  64518. ))
  64519. characterMakers.push(() => makeCharacter(
  64520. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64521. {
  64522. front: {
  64523. height: math.unit(29 + 11/12, "feet"),
  64524. weight: math.unit(40, "tons"),
  64525. name: "Front",
  64526. image: {
  64527. source: "./media/characters/mona/front.svg",
  64528. extra: 1257/1116,
  64529. bottom: 34/1291
  64530. }
  64531. },
  64532. },
  64533. [
  64534. {
  64535. name: "Normal",
  64536. height: math.unit(29 + 11/12, "feet"),
  64537. default: true
  64538. },
  64539. ]
  64540. ))
  64541. characterMakers.push(() => makeCharacter(
  64542. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64543. {
  64544. front: {
  64545. height: math.unit(15, "feet"),
  64546. weight: math.unit(3000, "kg"),
  64547. preyCapacity: math.unit(5, "people"),
  64548. name: "Front",
  64549. image: {
  64550. source: "./media/characters/frostfire/front.svg",
  64551. extra: 675/558,
  64552. bottom: 73/748
  64553. }
  64554. },
  64555. side: {
  64556. height: math.unit(15, "feet"),
  64557. weight: math.unit(3000, "kg"),
  64558. preyCapacity: math.unit(5, "people"),
  64559. name: "Side",
  64560. image: {
  64561. source: "./media/characters/frostfire/side.svg",
  64562. extra: 687/585,
  64563. bottom: 50/737
  64564. }
  64565. },
  64566. back: {
  64567. height: math.unit(15, "feet"),
  64568. weight: math.unit(3000, "kg"),
  64569. preyCapacity: math.unit(5, "people"),
  64570. name: "Back",
  64571. image: {
  64572. source: "./media/characters/frostfire/back.svg",
  64573. extra: 707/607,
  64574. bottom: 16/723
  64575. }
  64576. },
  64577. head: {
  64578. height: math.unit(9.35, "feet"),
  64579. name: "Head",
  64580. image: {
  64581. source: "./media/characters/frostfire/head.svg"
  64582. }
  64583. },
  64584. maw: {
  64585. height: math.unit(3.32, "feet"),
  64586. name: "Maw",
  64587. image: {
  64588. source: "./media/characters/frostfire/maw.svg"
  64589. }
  64590. },
  64591. hand: {
  64592. height: math.unit(3.7, "feet"),
  64593. name: "Hand",
  64594. image: {
  64595. source: "./media/characters/frostfire/hand.svg"
  64596. }
  64597. },
  64598. paw: {
  64599. height: math.unit(5.8, "feet"),
  64600. name: "Paw",
  64601. image: {
  64602. source: "./media/characters/frostfire/paw.svg"
  64603. }
  64604. },
  64605. },
  64606. [
  64607. {
  64608. name: "Normal",
  64609. height: math.unit(15, "feet"),
  64610. default: true
  64611. },
  64612. ]
  64613. ))
  64614. characterMakers.push(() => makeCharacter(
  64615. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64616. {
  64617. front: {
  64618. height: math.unit(5 + 2/12, "feet"),
  64619. weight: math.unit(122, "lb"),
  64620. name: "Front",
  64621. image: {
  64622. source: "./media/characters/valeroo/front.svg",
  64623. extra: 1789/1534,
  64624. bottom: 66/1855
  64625. }
  64626. },
  64627. back: {
  64628. height: math.unit(5 + 2/12, "feet"),
  64629. weight: math.unit(122, "lb"),
  64630. name: "Back",
  64631. image: {
  64632. source: "./media/characters/valeroo/back.svg",
  64633. extra: 1848/1588,
  64634. bottom: 68/1916
  64635. }
  64636. },
  64637. head: {
  64638. height: math.unit(1.87, "feet"),
  64639. name: "Head",
  64640. image: {
  64641. source: "./media/characters/valeroo/head.svg"
  64642. }
  64643. },
  64644. hand: {
  64645. height: math.unit(0.82, "feet"),
  64646. name: "Hand",
  64647. image: {
  64648. source: "./media/characters/valeroo/hand.svg"
  64649. }
  64650. },
  64651. foot: {
  64652. height: math.unit(2.42, "feet"),
  64653. name: "Foot",
  64654. image: {
  64655. source: "./media/characters/valeroo/foot.svg"
  64656. }
  64657. },
  64658. },
  64659. [
  64660. {
  64661. name: "Normal",
  64662. height: math.unit(5 + 2/12, "feet"),
  64663. default: true
  64664. },
  64665. ]
  64666. ))
  64667. characterMakers.push(() => makeCharacter(
  64668. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64669. {
  64670. front: {
  64671. height: math.unit(11 + 3/12, "feet"),
  64672. name: "Front",
  64673. image: {
  64674. source: "./media/characters/corrin/front.svg",
  64675. extra: 665/597,
  64676. bottom: 74/739
  64677. }
  64678. },
  64679. },
  64680. [
  64681. {
  64682. name: "Standard",
  64683. height: math.unit(11 + 3/12, "feet"),
  64684. default: true
  64685. },
  64686. {
  64687. name: "The Boss",
  64688. height: math.unit(110, "feet")
  64689. },
  64690. {
  64691. name: "Shipbreaker",
  64692. height: math.unit(38, "km")
  64693. },
  64694. ]
  64695. ))
  64696. characterMakers.push(() => makeCharacter(
  64697. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64698. {
  64699. front: {
  64700. height: math.unit(10, "feet"),
  64701. weight: math.unit(1750, "lb"),
  64702. name: "Front",
  64703. image: {
  64704. source: "./media/characters/kiba-ulrich/front.svg",
  64705. extra: 1037/973,
  64706. bottom: 36/1073
  64707. }
  64708. },
  64709. },
  64710. [
  64711. {
  64712. name: "Normal",
  64713. height: math.unit(10, "feet"),
  64714. default: true
  64715. },
  64716. {
  64717. name: "Minimacro",
  64718. height: math.unit(20, "feet")
  64719. },
  64720. {
  64721. name: "Macro",
  64722. height: math.unit(200, "feet")
  64723. },
  64724. {
  64725. name: "Megamacro",
  64726. height: math.unit(22500, "feet")
  64727. },
  64728. {
  64729. name: "Gigamacro",
  64730. height: math.unit(2700, "miles")
  64731. },
  64732. {
  64733. name: "Teramacro",
  64734. height: math.unit(10000, "miles")
  64735. },
  64736. ]
  64737. ))
  64738. characterMakers.push(() => makeCharacter(
  64739. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64740. {
  64741. gryphon_front: {
  64742. height: math.unit(220, "cm"),
  64743. weight: math.unit(160, "kg"),
  64744. name: "Front",
  64745. image: {
  64746. source: "./media/characters/ceanoth/gryphon-front.svg",
  64747. extra: 616/552,
  64748. bottom: 33/649
  64749. },
  64750. form: "gryphon",
  64751. default: true
  64752. },
  64753. },
  64754. [
  64755. {
  64756. name: "Normal",
  64757. height: math.unit(220, "cm"),
  64758. form: "gryphon",
  64759. default: true
  64760. },
  64761. ],
  64762. {
  64763. "gryphon": {
  64764. name: "Grpyhon",
  64765. default: true
  64766. },
  64767. }
  64768. ))
  64769. characterMakers.push(() => makeCharacter(
  64770. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64771. {
  64772. dressed: {
  64773. height: math.unit(2.2 * 0.79, "meters"),
  64774. weight: math.unit(0.5, "tonnes"),
  64775. name: "Dressed",
  64776. image: {
  64777. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64778. extra: 665/315,
  64779. bottom: 106/771
  64780. },
  64781. extraAttributes: {
  64782. "bodyLength": {
  64783. name: "Body Length",
  64784. power: 1,
  64785. type: "length",
  64786. base: math.unit(2.5, "meters")
  64787. },
  64788. "tailLength": {
  64789. name: "Tail Length",
  64790. power: 1,
  64791. type: "length",
  64792. base: math.unit(4.5, "meters")
  64793. },
  64794. "wingspan": {
  64795. name: "Wingspan",
  64796. power: 1,
  64797. type: "length",
  64798. base: math.unit(6, "meters")
  64799. },
  64800. "taurStomachCapacity": {
  64801. name: "Taur Stomach Capacity",
  64802. power: 3,
  64803. type: "volume",
  64804. base: math.unit(4, "people"),
  64805. defaultUnit: "people"
  64806. },
  64807. "anthroStomachCapacity": {
  64808. name: "Anthro Stomach Capacity",
  64809. power: 3,
  64810. type: "volume",
  64811. base: math.unit(1, "people"),
  64812. defaultUnit: "people"
  64813. },
  64814. }
  64815. },
  64816. nude: {
  64817. height: math.unit(2.2 * 0.79, "meters"),
  64818. weight: math.unit(0.5, "tonnes"),
  64819. name: "Nude",
  64820. image: {
  64821. source: "./media/characters/vanadiya-athelya/nude.svg",
  64822. extra: 665/315,
  64823. bottom: 106/771
  64824. },
  64825. extraAttributes: {
  64826. "bodyLength": {
  64827. name: "Body Length",
  64828. power: 1,
  64829. type: "length",
  64830. base: math.unit(2.5, "meters")
  64831. },
  64832. "tailLength": {
  64833. name: "Tail Length",
  64834. power: 1,
  64835. type: "length",
  64836. base: math.unit(4.5, "meters")
  64837. },
  64838. "wingspan": {
  64839. name: "Wingspan",
  64840. power: 1,
  64841. type: "length",
  64842. base: math.unit(6, "meters")
  64843. },
  64844. "taurStomachCapacity": {
  64845. name: "Taur Stomach Capacity",
  64846. power: 3,
  64847. type: "volume",
  64848. base: math.unit(4, "people"),
  64849. defaultUnit: "people"
  64850. },
  64851. "anthroStomachCapacity": {
  64852. name: "Anthro Stomach Capacity",
  64853. power: 3,
  64854. type: "volume",
  64855. base: math.unit(1, "people"),
  64856. defaultUnit: "people"
  64857. },
  64858. }
  64859. },
  64860. },
  64861. [
  64862. {
  64863. name: "Handheld",
  64864. height: math.unit(0.79 * 0.06, "meters")
  64865. },
  64866. {
  64867. name: "Mini",
  64868. height: math.unit(0.79 * 0.7, "meters")
  64869. },
  64870. {
  64871. name: "Short",
  64872. height: math.unit(0.79 * 1.4, "meters")
  64873. },
  64874. {
  64875. name: "Imposing",
  64876. height: math.unit(0.79 * 2.2, "meters"),
  64877. default: true
  64878. },
  64879. {
  64880. name: "Big",
  64881. height: math.unit(0.79 * 3.8, "meters")
  64882. },
  64883. {
  64884. name: "Giant",
  64885. height: math.unit(0.79 * 6.7, "meters")
  64886. },
  64887. {
  64888. name: "Airliner",
  64889. height: math.unit(0.79 * 64, "meters")
  64890. },
  64891. {
  64892. name: "Skyscraper",
  64893. height: math.unit(0.79 * 220, "meters")
  64894. },
  64895. {
  64896. name: "Mountain",
  64897. height: math.unit(0.79 * 3.6, "km")
  64898. },
  64899. {
  64900. name: "Spacescraper",
  64901. height: math.unit(0.79 * 70, "km")
  64902. },
  64903. {
  64904. name: "Continental",
  64905. height: math.unit(0.79 * 1290, "km")
  64906. },
  64907. {
  64908. name: "Moon",
  64909. height: math.unit(0.79 * 32200, "km")
  64910. },
  64911. {
  64912. name: "Planetary",
  64913. height: math.unit(0.79 * 145000, "km")
  64914. },
  64915. {
  64916. name: "Stellar",
  64917. height: math.unit(0.79 * 19e6, "km")
  64918. },
  64919. {
  64920. name: "Solar",
  64921. height: math.unit(0.79 * 40, "AU")
  64922. },
  64923. {
  64924. name: "Intersteller",
  64925. height: math.unit(0.79 * 3, "lightyears")
  64926. },
  64927. {
  64928. name: "Star Cluster",
  64929. height: math.unit(0.79 * 80, "lightyears")
  64930. },
  64931. {
  64932. name: "Ecumenical",
  64933. height: math.unit(0.79 * 2e3, "lightyears")
  64934. },
  64935. {
  64936. name: "Galactic",
  64937. height: math.unit(0.79 * 175000, "lightyears")
  64938. },
  64939. {
  64940. name: "Galaxy Cluster",
  64941. height: math.unit(0.79 * 25e6, "lightyears")
  64942. },
  64943. ]
  64944. ))
  64945. characterMakers.push(() => makeCharacter(
  64946. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  64947. {
  64948. front: {
  64949. height: math.unit(6 + 2/12, "feet"),
  64950. weight: math.unit(160, "lb"),
  64951. name: "Front",
  64952. image: {
  64953. source: "./media/characters/yana-amelin/front.svg",
  64954. extra: 1413/1295,
  64955. bottom: 42/1455
  64956. }
  64957. },
  64958. back: {
  64959. height: math.unit(6 + 2/12, "feet"),
  64960. weight: math.unit(160, "lb"),
  64961. name: "Back",
  64962. image: {
  64963. source: "./media/characters/yana-amelin/back.svg",
  64964. extra: 1424/1310,
  64965. bottom: 24/1448
  64966. }
  64967. },
  64968. paws: {
  64969. height: math.unit(1.48, "feet"),
  64970. name: "Paws",
  64971. image: {
  64972. source: "./media/characters/yana-amelin/paws.svg",
  64973. extra: 304/304,
  64974. bottom: 49/353
  64975. }
  64976. },
  64977. },
  64978. [
  64979. {
  64980. name: "Micro",
  64981. height: math.unit(4, "inches")
  64982. },
  64983. {
  64984. name: "Normal",
  64985. height: math.unit(6 + 2/12, "feet"),
  64986. default: true
  64987. },
  64988. {
  64989. name: "Minimacro",
  64990. height: math.unit(20, "feet")
  64991. },
  64992. {
  64993. name: "Macro",
  64994. height: math.unit(70, "feet")
  64995. },
  64996. ]
  64997. ))
  64998. characterMakers.push(() => makeCharacter(
  64999. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65000. {
  65001. frontNsfw: {
  65002. height: math.unit(2.48, "meters"),
  65003. weight: math.unit(112, "kg"),
  65004. name: "Front (NSFW)",
  65005. image: {
  65006. source: "./media/characters/titania/front-nsfw.svg",
  65007. extra: 1302/1232,
  65008. bottom: 90/1392
  65009. }
  65010. },
  65011. backNsfw: {
  65012. height: math.unit(2.48, "meters"),
  65013. weight: math.unit(112, "kg"),
  65014. name: "Back (NSFW)",
  65015. image: {
  65016. source: "./media/characters/titania/back-nsfw.svg",
  65017. extra: 1355/1288,
  65018. bottom: 18/1373
  65019. }
  65020. },
  65021. frontSfw: {
  65022. height: math.unit(2.48, "meters"),
  65023. weight: math.unit(112, "kg"),
  65024. name: "Front (SFW)",
  65025. image: {
  65026. source: "./media/characters/titania/front-sfw.svg",
  65027. extra: 1302/1232,
  65028. bottom: 90/1392
  65029. }
  65030. },
  65031. backSfw: {
  65032. height: math.unit(2.48, "meters"),
  65033. weight: math.unit(112, "kg"),
  65034. name: "Back (SFW)",
  65035. image: {
  65036. source: "./media/characters/titania/back-sfw.svg",
  65037. extra: 1355/1288,
  65038. bottom: 18/1373
  65039. }
  65040. },
  65041. head: {
  65042. height: math.unit(2.06, "feet"),
  65043. name: "Head",
  65044. image: {
  65045. source: "./media/characters/titania/head.svg"
  65046. }
  65047. },
  65048. maw: {
  65049. height: math.unit(0.8, "feet"),
  65050. name: "Maw",
  65051. image: {
  65052. source: "./media/characters/titania/maw.svg"
  65053. }
  65054. },
  65055. foot: {
  65056. height: math.unit(1.65, "feet"),
  65057. name: "Foot",
  65058. image: {
  65059. source: "./media/characters/titania/foot.svg"
  65060. }
  65061. },
  65062. nethers: {
  65063. height: math.unit(1.7, "feet"),
  65064. name: "Nethers",
  65065. image: {
  65066. source: "./media/characters/titania/nethers.svg"
  65067. }
  65068. },
  65069. },
  65070. [
  65071. {
  65072. name: "Normal",
  65073. height: math.unit(2.48, "meters"),
  65074. default: true
  65075. },
  65076. {
  65077. name: "Mini Macro",
  65078. height: math.unit(248, "meters")
  65079. },
  65080. {
  65081. name: "Macro",
  65082. height: math.unit(620, "meters")
  65083. },
  65084. {
  65085. name: "Mega Macro",
  65086. height: math.unit(1860, "meters")
  65087. },
  65088. ]
  65089. ))
  65090. //characters
  65091. function makeCharacters() {
  65092. const results = [];
  65093. characterMakers.forEach(character => {
  65094. results.push(character());
  65095. });
  65096. return results;
  65097. }